diff --git a/results/CCGrid2021_paper_250.pdf b/results/CCGrid2021_paper_250.pdf new file mode 100644 index 0000000..2a8cf80 Binary files /dev/null and b/results/CCGrid2021_paper_250.pdf differ diff --git a/results/analysis.R b/results/analysis.R index 2a946fb..7f8cf26 100644 --- a/results/analysis.R +++ b/results/analysis.R @@ -21,8 +21,8 @@ finalStats=data%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%su #finalStats=finalStats%>%left_join(hintAdded,by=c("simkey","wireless","wakeupfor")) # Sender energy -senderEnergy=data%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(senderEnergy=mean(energy)) -receiverEnergy=data%>%filter(isSender==0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(receiverEnergy=mean(energy)) +senderEnergy=data%>%filter(isSender!=0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(senderEnergy=mean(energy),senderEnergy_sd=sd(energy)) +receiverEnergy=data%>%filter(isSender==0)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(receiverEnergy=mean(energy),receiverEnergy_sd=sd(energy)) finalStats=finalStats%>%left_join(senderEnergy,by=c("simkey","wireless","wakeupfor")) finalStats=finalStats%>%left_join(receiverEnergy,by=c("simkey","wireless","wakeupfor")) @@ -32,6 +32,25 @@ receiverUptime=data%>%filter(isSender==0)%>%group_by(simkey,wireless,wakeupfor)% finalStats=finalStats%>%left_join(senderUptime,by=c("simkey","wireless","wakeupfor")) finalStats=finalStats%>%left_join(receiverUptime,by=c("simkey","wireless","wakeupfor")) +# avgTimedataRcv +avgTimeDataRcvData=data%>%filter(timeDataRcv!=-1)%>%group_by(simkey,wireless,wakeupfor)%>%summarise(avgTimeDataRcv=mean(timeDataRcv)) +finalStats=finalStats%>%left_join(avgTimeDataRcvData,by=c("simkey","wireless","wakeupfor")) + +# Uptime Overhead compare to baseline +baseline=finalStats%>%filter(simkey=="baseline")%>%select(senderUptime,receiverUptime,simkey,wireless,wakeupfor) +keys=unique(finalStats$simkey) +baseline=baseline%>%uncount(length(keys),.id="id")%>%mutate(simkey=keys[id]) +finalStats=finalStats%>%left_join(baseline,by=c("simkey","wireless","wakeupfor"),suffix = c("","_baseline")) +finalStats=finalStats%>%mutate(senderUptimeOverhead=senderUptime-senderUptime_baseline) +finalStats=finalStats%>%mutate(receiverUptimeOverhead=receiverUptime-receiverUptime_baseline) + +# Energy Overhead (percent) compare to baseline +baseline=finalStats%>%filter(simkey=="baseline")%>%select(senderEnergy,receiverEnergy,simkey,wireless,wakeupfor) +baseline=baseline%>%uncount(length(keys),.id="id")%>%mutate(simkey=keys[id]) +finalStats=finalStats%>%left_join(baseline,by=c("simkey","wireless","wakeupfor"),suffix = c("","_baseline")) +finalStats=finalStats%>%mutate(senderEnergyOverheadPercent=r_((senderEnergy-senderEnergy_baseline)/senderEnergy*100)) +finalStats=finalStats%>%mutate(receiverEnergyOverheadPercent=r_((receiverEnergy-receiverEnergy_baseline)/receiverEnergy*100)) + # Comparison finalStats=finalStats%>%left_join(ccgrid,by=c("simkey","wireless","wakeupfor"),suffix = c("","_ccgrid")) finalStats=finalStats%>%mutate(senderEnergy_err=abs(r_((senderEnergy-senderEnergy_ccgrid)/senderEnergy)*100)) @@ -43,6 +62,12 @@ finalStats=finalStats%>%mutate(receiverUptime_err=abs(r_((receiverUptime-receive sendFail=data%>%filter(node=="on0")%>%group_by(simkey,wireless,wakeupfor)%>%summarise(nSendFail=mean(nSendFail)) finalStats=finalStats%>%left_join(sendFail,by=c("simkey","wireless","wakeupfor")) +# Add nWakeUp to stats +nWakeUpRcv=data%>%filter(node!="on0")%>%group_by(simkey,wireless,wakeupfor)%>%summarise(nWakeUpRcv=mean(nWakeUp)) +finalStats=finalStats%>%left_join(nWakeUpRcv,by=c("simkey","wireless","wakeupfor")) +nWakeUpSend=data%>%filter(node=="on0")%>%group_by(simkey,wireless,wakeupfor)%>%summarise(nWakeUpSender=mean(nWakeUp)) +finalStats=finalStats%>%left_join(nWakeUpSend,by=c("simkey","wireless","wakeupfor")) + ggplot(finalStats,aes(x=simkey,senderEnergy_err,color=wireless,group=wireless))+geom_point()+geom_line()+facet_wrap(~wakeupfor)+xlab("Scenarios") + ylab("Sender Energy Relative Error (%)") + expand_limits(x = 0, y = 0) ggsave("err_sender_energy.png",width=7,height = 5) @@ -57,7 +82,6 @@ ggplot(finalStats,aes(x=simkey,receiverUptime_err,color=wireless,group=wireless) ggsave("err_rcv_accuptime.png",width=7,height = 5) -stopifnot(1) # Generate plots ggplot(finalEnergy,aes(x=simkey,y=energy,fill=wireless))+ geom_bar(stat="identity",position=position_dodge())+ @@ -67,12 +91,11 @@ ggplot(finalEnergy,aes(x=simkey,y=energy,fill=wireless))+ geom_text(aes(label = r_(energy+sd), y= energy+sd),vjust=-0.4,position=position_dodge(0.9))+ geom_text(aes(label = r_(energy-sd), y= energy-sd),vjust=+1.5,position=position_dodge(0.9))+ geom_text(aes(label = r_(energy), y= energy/2),fontface="bold",colour="white",position=position_dodge(0.9)) -ggsave("energy.png") - +ggsave("energy.png",width=13,height = 6) ggplot(finalStats,aes(x=simkey,y=success,fill=wireless))+ geom_bar(stat="identity",position=position_dodge())+ - xlab("Scenarios")+ylab("Energy (J)")+ + xlab("Scenarios")+ylab("Number of Transmission Success")+ geom_errorbar(position=position_dodge(0.9),aes(ymin=success-sd_success, ymax=success+sd_success),width=0.5,size=1.5,) + geom_text(aes(label = r_(success+sd_success), y= success+sd_success),vjust=-0.4,position=position_dodge(0.9))+ geom_text(aes(label = r_(success-sd_success), y= success-sd_success),vjust=+1.5,position=position_dodge(0.9))+ @@ -80,6 +103,26 @@ ggplot(finalStats,aes(x=simkey,y=success,fill=wireless))+ facet_wrap(~ wakeupfor) + ggsave("success.png") +ggplot(finalStats,aes(x=simkey,y=avgTimeDataRcv,fill=wireless))+ + geom_bar(stat="identity",position=position_dodge())+ + xlab("Scenarios")+ylab("Average Data Received Time")+ + facet_wrap(~ wakeupfor) + +ggsave("avgDataTimeRcv.png") + +ggplot(finalStats,aes(x=simkey,y=nWakeUpRcv,fill=wireless))+ + geom_bar(stat="identity",position=position_dodge())+ + xlab("Scenarios")+ylab("Average Number of receiver Wake up")+ + facet_wrap(~ wakeupfor) + +ggsave("nWakeUpRcv.png") + +ggplot(finalStats,aes(x=simkey,y=nWakeUpSender,fill=wireless))+ + geom_bar(stat="identity",position=position_dodge())+ + xlab("Scenarios")+ylab("Average Number of sender Wake up")+ + facet_wrap(~ wakeupfor) + +ggsave("nWakeUpSender.png") + + + ##### Save tables ##### tf="tables-energy.org" write("",file=tf) diff --git a/results/avgDataTimeRcv.png b/results/avgDataTimeRcv.png new file mode 100644 index 0000000..163283e Binary files /dev/null and b/results/avgDataTimeRcv.png differ diff --git a/results/energy.png b/results/energy.png index 7dfe834..5160d48 100644 Binary files a/results/energy.png and b/results/energy.png differ diff --git a/results/err_rcv_accuptime.png b/results/err_rcv_accuptime.png index 35a95c1..aa356fa 100644 Binary files a/results/err_rcv_accuptime.png and b/results/err_rcv_accuptime.png differ diff --git a/results/err_receiver_energy.png b/results/err_receiver_energy.png index 7649448..e7c61d1 100644 Binary files a/results/err_receiver_energy.png and b/results/err_receiver_energy.png differ diff --git a/results/err_sender_accuptime.png b/results/err_sender_accuptime.png index 93259d1..fd00a57 100644 Binary files a/results/err_sender_accuptime.png and b/results/err_sender_accuptime.png differ diff --git a/results/err_sender_energy.png b/results/err_sender_energy.png index b0f2a65..efcb706 100644 Binary files a/results/err_sender_energy.png and b/results/err_sender_energy.png differ diff --git a/results/nWakeUpRcv.png b/results/nWakeUpRcv.png new file mode 100644 index 0000000..9506200 Binary files /dev/null and b/results/nWakeUpRcv.png differ diff --git a/results/nWakeUpSender.png b/results/nWakeUpSender.png new file mode 100644 index 0000000..087c9d5 Binary files /dev/null and b/results/nWakeUpSender.png differ diff --git a/results/paper.sh b/results/paper.sh index 588cd64..a6ad2a2 100755 --- a/results/paper.sh +++ b/results/paper.sh @@ -46,7 +46,7 @@ seed=0 simtime=86400 # One day wakeupevery=3600 wakeupfor=60 -n_nodes=12 +n_nodes=13 extended="false" hint="false" poff=0 diff --git a/results/paper_.sh b/results/paper_.sh index c87543a..d7c8630 100755 --- a/results/paper_.sh +++ b/results/paper_.sh @@ -20,25 +20,7 @@ run-simulation () { # Init logs [ $gen_log -eq 1 ] && echo -e "* seed=$seed simtime=$simtime wakeupevery=$wakeupevery wakeupfor=$wakeupfor n_nodes=$n_nodes extended=$extended hint=$hint poff=$poff pon=$pon prx=$prx ptx=$ptx datasize=$datasize bitrate=$bitrate \n" >> "${log_file}" - # Run simulations - if [ -e "$results" ] - then - # Create new result file - if [ $gen_log -eq 1 ] - then - $simulator 2>&1 | tee -a "${log_file}" | $parser | sed 1d | sed "s/$/,${avalues}/" >> "$results" - else - $simulator 2>&1 | $parser | sed 1d | sed "s/$/,${avalues}/" >> "$results" - fi - else - # Use existing result file - if [ $gen_log -eq 1 ] - then - $simulator 2>&1 | tee -a "${log_file}" | $parser | sed "1 s/$/,${aheaders}/g" | sed "2,\$s/$/,${avalues}/" > "$results" - else - $simulator 2>&1 | $parser | sed "1 s/$/,${aheaders}/g" | sed "2,\$s/$/,${avalues}/" > "$results" - fi - fi + $simulator 2>&1 } # Default Parameters @@ -64,14 +46,6 @@ run-scenarios() { # Configure number of seed per scenarios nseed=1 - # Baseline - avalues="baseline,$wireless,$wakeupfor" - for seed in $(seq 1 $nseed) - do - printf "\rBaseline...${seed}" - #run-simulation - done - echo # Hint hint="true" @@ -84,29 +58,7 @@ run-scenarios() { hint="false" echo - # Extended - extended="true" - avalues="extended,$wireless,$wakeupfor" - for seed in $(seq 1 $nseed) - do - printf "\rExtended...${seed}" - #run-simulation - done - extended="false" - echo - # Hint+Extended - extended="true" - hint="true" - avalues="hintandextended,$wireless,$wakeupfor" - for seed in $(seq 1 $nseed) - do - printf "\rHint + Extended...${seed}" - #run-simulation - done - extended="false" - hint="false" - echo } # Clean previous runs @@ -123,7 +75,7 @@ do prx=0.16 ptx=0.16 latency=0 - #run-scenarios + run-scenarios # NbIot echo "----- Run NbIoT (wakeupfor=$wakeupfor) -----" @@ -133,7 +85,7 @@ do prx=0.65 ptx=0.65 latency=0.01 - run-scenarios + #run-scenarios done echo "Logs: $log_file" \ No newline at end of file diff --git a/results/results.csv b/results/results.csv index bd5c15b..14d6db0 100644 --- a/results/results.csv +++ b/results/results.csv @@ -1,38401 +1,41601 @@ -node,isSender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,seed,hint_added,energy,simkey,wireless,wakeupfor -on6,0,0,24,0,0,1428,1440.000000,1,0,578.080000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1420,1440.000000,1,0,579.360000,baseline,lora,60 -on8,0,0,24,0,0,1392,1440.000000,1,0,592.160000,baseline,lora,60 -on2,0,0,24,0,0,1384,1440.000000,1,0,585.120000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1431,1440.000000,1,0,577.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1377,1440.000000,1,0,598.240000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,1,0,632.960000,baseline,lora,60 -on10,0,0,24,0,0,1411,1440.000000,2,0,580.800000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1390,1440.000000,2,0,589.920000,baseline,lora,60 -on7,0,0,24,0,0,1414,1440.000000,2,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1412,1440.000000,2,0,580.640000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,2,0,649.760000,baseline,lora,60 -on6,0,0,24,0,0,1412,1440.000000,2,0,580.640000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1348,1440.000000,2,0,602.560000,baseline,lora,60 -on5,0,0,24,0,0,1393,1440.000000,2,0,583.680000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,3,0,641.120000,baseline,lora,60 -on4,0,0,24,0,0,1334,1440.000000,3,0,603.520000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1392,1440.000000,3,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1382,1440.000000,3,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1373,1440.000000,3,0,587.200000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1397,1440.000000,3,0,583.040000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1402,1440.000000,4,0,582.240000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,4,0,616.320000,baseline,lora,60 -on2,0,0,24,0,0,1420,1440.000000,4,0,581.120000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,4,0,576.160000,baseline,lora,60 -on3,0,0,24,0,0,1381,1440.000000,4,0,585.760000,baseline,lora,60 -on11,0,0,24,0,0,1434,1440.000000,4,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1436,1440.000000,4,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1433,1440.000000,5,0,577.280000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,5,0,623.680000,baseline,lora,60 -on5,0,0,24,0,0,1419,1440.000000,5,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1404,1440.000000,5,0,581.920000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1428,1440.000000,5,0,578.080000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1370,1440.000000,5,0,591.360000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1438,1440.000000,6,0,576.480000,baseline,lora,60 -on7,0,0,24,0,0,1399,1440.000000,6,0,582.720000,baseline,lora,60 -on9,0,0,24,0,0,1394,1440.000000,6,0,583.520000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,6,0,612.480000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1402,1440.000000,6,0,582.240000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1393,1440.000000,6,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,7,0,591.200000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1403,1440.000000,7,0,591.520000,baseline,lora,60 -on8,0,0,24,0,0,1408,1440.000000,7,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,8,0,609.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1403,1440.000000,8,0,595.200000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1390,1440.000000,8,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1420,1440.000000,8,0,579.360000,baseline,lora,60 -on4,0,0,24,0,0,1407,1440.000000,8,0,581.440000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1365,1440.000000,9,0,588.480000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,9,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,9,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1408,1440.000000,9,0,582.240000,baseline,lora,60 -on9,0,0,24,0,0,1418,1440.000000,9,0,579.680000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,9,0,648.480000,baseline,lora,60 -on10,0,0,24,0,0,1428,1440.000000,9,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1389,1440.000000,9,0,584.480000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,9,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1373,1440.000000,9,0,590.880000,baseline,lora,60 -on3,0,0,24,0,0,1393,1440.000000,9,0,591.840000,baseline,lora,60 -on8,0,0,24,0,0,1387,1440.000000,9,0,592.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1414,1440.000000,10,0,580.320000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,10,0,645.760000,baseline,lora,60 -on4,0,0,24,0,0,1405,1440.000000,10,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1418,1440.000000,10,0,579.680000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1369,1440.000000,10,0,590.880000,baseline,lora,60 -on3,0,0,24,0,0,1405,1440.000000,10,0,581.760000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1378,1440.000000,10,0,586.240000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1421,1440.000000,11,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1392,1440.000000,11,0,598.720000,baseline,lora,60 -on6,0,0,24,0,0,1438,1440.000000,11,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1407,1440.000000,11,0,581.440000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,11,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1435,1440.000000,11,0,576.960000,baseline,lora,60 -on1,0,0,24,0,0,1368,1440.000000,11,0,587.840000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,11,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1429,1440.000000,11,0,584.320000,baseline,lora,60 -on7,0,0,24,0,0,1388,1440.000000,11,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,11,0,657.760000,baseline,lora,60 -on4,0,0,24,0,0,1344,1440.000000,11,0,593.440000,baseline,lora,60 -on3,0,0,24,0,0,1421,1440.000000,12,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1387,1440.000000,12,0,584.640000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1422,1440.000000,12,0,579.040000,baseline,lora,60 -on9,0,0,24,0,0,1438,1440.000000,12,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1343,1440.000000,12,0,595.200000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1404,1440.000000,12,0,582.080000,baseline,lora,60 -on8,0,0,24,0,0,1372,1440.000000,12,0,588.800000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,12,0,643.040000,baseline,lora,60 -on7,0,0,24,0,0,1406,1440.000000,13,0,586.720000,baseline,lora,60 -on3,0,0,24,0,0,1414,1440.000000,13,0,580.320000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1433,1440.000000,13,0,592.480000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1360,1440.000000,13,0,604.320000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,13,0,629.120000,baseline,lora,60 -on1,0,0,24,0,0,1363,1440.000000,13,0,588.640000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1426,1440.000000,14,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,14,0,635.520000,baseline,lora,60 -on3,0,0,24,0,0,1408,1440.000000,14,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1401,1440.000000,14,0,590.240000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,14,0,576.160000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1372,1440.000000,14,0,592.960000,baseline,lora,60 -on10,0,0,24,0,0,1393,1440.000000,14,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1424,1440.000000,14,0,578.720000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1384,1440.000000,15,0,585.120000,baseline,lora,60 -on5,0,0,24,0,0,1389,1440.000000,15,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1410,1440.000000,15,0,580.960000,baseline,lora,60 -on11,0,0,24,0,0,1381,1440.000000,15,0,595.200000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,15,0,655.840000,baseline,lora,60 -on8,0,0,24,0,0,1412,1440.000000,15,0,594.080000,baseline,lora,60 -on2,0,0,24,0,0,1384,1440.000000,15,0,585.120000,baseline,lora,60 -on10,0,0,24,0,0,1400,1440.000000,15,0,582.720000,baseline,lora,60 -on7,0,0,24,0,0,1367,1440.000000,16,0,591.200000,baseline,lora,60 -on3,0,0,24,0,0,1374,1440.000000,16,0,593.920000,baseline,lora,60 -on8,0,0,24,0,0,1423,1440.000000,16,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,16,0,623.360000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1409,1440.000000,16,0,581.120000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1384,1440.000000,16,0,585.120000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,17,0,621.600000,baseline,lora,60 -on6,0,0,24,0,0,1437,1440.000000,17,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1413,1440.000000,17,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1383,1440.000000,17,0,585.280000,baseline,lora,60 -on2,0,0,23,0,0,1430,1430.000000,17,0,572.000000,baseline,lora,60 -on10,0,0,24,0,0,1424,1440.000000,17,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1351,1440.000000,17,0,610.720000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1431,1440.000000,17,0,577.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1420,1440.000000,18,0,579.360000,baseline,lora,60 -on5,0,0,24,0,0,1368,1440.000000,18,0,592.480000,baseline,lora,60 -on8,0,0,24,0,0,1382,1440.000000,18,0,585.440000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1330,1440.000000,18,0,594.080000,baseline,lora,60 -on2,0,0,24,0,0,1391,1440.000000,18,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,18,0,669.600000,baseline,lora,60 -on6,0,0,24,0,0,1338,1440.000000,18,0,593.440000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1427,1440.000000,18,0,578.240000,baseline,lora,60 -on7,0,0,24,0,0,1434,1440.000000,19,0,577.120000,baseline,lora,60 -on3,0,0,24,0,0,1437,1440.000000,19,0,576.640000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1425,1440.000000,19,0,586.080000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,19,0,624.320000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1396,1440.000000,19,0,583.200000,baseline,lora,60 -on2,0,0,24,0,0,1393,1440.000000,19,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,20,0,635.520000,baseline,lora,60 -on2,0,0,24,0,0,1382,1440.000000,20,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1396,1440.000000,20,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1404,1440.000000,20,0,587.200000,baseline,lora,60 -on4,0,0,24,0,0,1416,1440.000000,20,0,580.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1397,1440.000000,20,0,583.200000,baseline,lora,60 -on3,0,0,24,0,0,1405,1440.000000,21,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,21,0,626.240000,baseline,lora,60 -on7,0,0,24,0,0,1401,1440.000000,21,0,582.400000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1417,1440.000000,21,0,579.840000,baseline,lora,60 -on2,0,0,24,0,0,1403,1440.000000,21,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1414,1440.000000,21,0,580.480000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1416,1440.000000,22,0,580.000000,baseline,lora,60 -on4,0,0,24,0,0,1388,1440.000000,22,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1405,1440.000000,22,0,581.760000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,22,0,615.360000,baseline,lora,60 -on9,0,0,24,0,0,1428,1440.000000,22,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1434,1440.000000,22,0,577.120000,baseline,lora,60 -on9,0,0,24,0,0,1425,1440.000000,23,0,578.560000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1392,1440.000000,23,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1436,1440.000000,23,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1365,1440.000000,23,0,595.200000,baseline,lora,60 -on11,0,0,24,0,0,1403,1440.000000,23,0,588.800000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,23,0,634.720000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1396,1440.000000,23,0,583.200000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,23,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1400,1440.000000,23,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1362,1440.000000,23,0,594.080000,baseline,lora,60 -on2,0,0,24,0,0,1400,1440.000000,24,0,582.560000,baseline,lora,60 -on10,0,0,24,0,0,1422,1440.000000,24,0,583.040000,baseline,lora,60 -on6,0,0,24,0,0,1375,1440.000000,24,0,595.200000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1358,1440.000000,24,0,591.520000,baseline,lora,60 -on8,0,0,24,0,0,1391,1440.000000,24,0,584.000000,baseline,lora,60 -on5,0,0,24,0,0,1418,1440.000000,24,0,584.800000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,24,0,633.440000,baseline,lora,60 -on7,0,0,24,0,0,1382,1440.000000,24,0,594.400000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1381,1440.000000,25,0,585.760000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1436,1440.000000,25,0,576.800000,baseline,lora,60 -on11,0,0,24,0,0,1432,1440.000000,25,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1420,1440.000000,25,0,582.880000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,25,0,629.760000,baseline,lora,60 -on5,0,0,24,0,0,1315,1440.000000,25,0,620.640000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1370,1440.000000,26,0,591.040000,baseline,lora,60 -on7,0,0,24,0,0,1431,1440.000000,26,0,577.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,26,0,660.320000,baseline,lora,60 -on10,0,0,24,0,0,1427,1440.000000,26,0,578.240000,baseline,lora,60 -on6,0,0,24,0,0,1430,1440.000000,26,0,584.800000,baseline,lora,60 -on8,0,0,24,0,0,1400,1440.000000,26,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1409,1440.000000,26,0,586.400000,baseline,lora,60 -on1,0,0,24,0,0,1392,1440.000000,26,0,583.840000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,26,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1397,1440.000000,26,0,583.200000,baseline,lora,60 -on5,0,0,24,0,0,1390,1440.000000,27,0,584.320000,baseline,lora,60 -on1,0,0,24,0,0,1415,1440.000000,27,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,27,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1383,1440.000000,27,0,585.440000,baseline,lora,60 -on2,0,0,24,0,0,1328,1440.000000,27,0,600.000000,baseline,lora,60 -on10,0,0,24,0,0,1368,1440.000000,27,0,587.840000,baseline,lora,60 -on4,0,0,24,0,0,1331,1440.000000,27,0,593.760000,baseline,lora,60 -on6,0,0,24,0,0,1375,1440.000000,27,0,590.400000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,27,0,705.920000,baseline,lora,60 -on3,0,0,24,0,0,1383,1440.000000,27,0,585.280000,baseline,lora,60 -on9,0,0,24,0,0,1420,1440.000000,27,0,588.480000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,27,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1387,1440.000000,28,0,586.080000,baseline,lora,60 -on8,0,0,24,0,0,1412,1440.000000,28,0,580.800000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1415,1440.000000,28,0,580.160000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,28,0,634.400000,baseline,lora,60 -on10,0,0,24,0,0,1436,1440.000000,28,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1394,1440.000000,28,0,583.680000,baseline,lora,60 -on11,0,0,24,0,0,1415,1440.000000,29,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1388,1440.000000,29,0,584.480000,baseline,lora,60 -on8,0,0,24,0,0,1438,1440.000000,29,0,576.480000,baseline,lora,60 -on7,0,0,24,0,0,1433,1440.000000,29,0,577.280000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1302,1440.000000,29,0,600.640000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,29,0,626.080000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1437,1440.000000,30,0,576.640000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,30,0,611.840000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1366,1440.000000,30,0,590.240000,baseline,lora,60 -on5,0,0,24,0,0,1384,1440.000000,30,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1409,1440.000000,31,0,585.760000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,31,0,618.400000,baseline,lora,60 -on10,0,0,24,0,0,1435,1440.000000,31,0,576.960000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1404,1440.000000,31,0,581.920000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1426,1440.000000,31,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1403,1440.000000,31,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1387,1440.000000,31,0,584.800000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1414,1440.000000,32,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1414,1440.000000,32,0,580.320000,baseline,lora,60 -on5,0,0,24,0,0,1423,1440.000000,32,0,578.880000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1429,1440.000000,32,0,577.920000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1410,1440.000000,32,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,32,0,623.360000,baseline,lora,60 -on6,0,0,24,0,0,1416,1440.000000,32,0,585.760000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1384,1440.000000,33,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1398,1440.000000,33,0,595.200000,baseline,lora,60 -on5,0,0,24,0,0,1413,1440.000000,33,0,580.480000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1394,1440.000000,33,0,583.520000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1402,1440.000000,33,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,33,0,617.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1416,1440.000000,34,0,580.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,34,0,607.360000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1403,1440.000000,34,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1414,1440.000000,34,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1427,1440.000000,34,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1384,1440.000000,34,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1411,1440.000000,35,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1368,1440.000000,35,0,593.920000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1422,1440.000000,35,0,579.040000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1398,1440.000000,35,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1385,1440.000000,35,0,584.960000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,35,0,612.160000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,36,0,653.120000,baseline,lora,60 -on11,0,0,24,0,0,1389,1440.000000,36,0,584.480000,baseline,lora,60 -on1,0,0,24,0,0,1385,1440.000000,36,0,584.960000,baseline,lora,60 -on9,0,0,24,0,0,1427,1440.000000,36,0,578.240000,baseline,lora,60 -on4,0,0,24,0,0,1387,1440.000000,36,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1391,1440.000000,36,0,584.000000,baseline,lora,60 -on2,0,0,24,0,0,1403,1440.000000,36,0,595.200000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1356,1440.000000,36,0,594.720000,baseline,lora,60 -on6,0,0,24,0,0,1434,1440.000000,37,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1430,1440.000000,37,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1395,1440.000000,37,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1431,1440.000000,37,0,577.600000,baseline,lora,60 -on10,0,0,24,0,0,1395,1440.000000,37,0,592.800000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,37,0,644.160000,baseline,lora,60 -on5,0,0,24,0,0,1426,1440.000000,37,0,583.360000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1333,1440.000000,37,0,604.480000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1375,1440.000000,37,0,595.200000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1428,1440.000000,38,0,578.080000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1385,1440.000000,38,0,585.280000,baseline,lora,60 -on9,0,0,24,0,0,1414,1440.000000,38,0,580.320000,baseline,lora,60 -on6,0,0,24,0,0,1438,1440.000000,38,0,576.480000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1397,1440.000000,38,0,592.160000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,38,0,634.240000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1404,1440.000000,39,0,581.920000,baseline,lora,60 -on4,0,0,24,0,0,1360,1440.000000,39,0,589.120000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,39,0,633.600000,baseline,lora,60 -on5,0,0,23,0,0,1418,1438.000000,39,0,585.280000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1400,1440.000000,39,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1388,1440.000000,39,0,584.640000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1401,1440.000000,40,0,582.400000,baseline,lora,60 -on7,0,0,24,0,0,1429,1440.000000,40,0,577.920000,baseline,lora,60 -on10,0,0,24,0,0,1359,1440.000000,40,0,601.760000,baseline,lora,60 -on11,0,0,24,0,0,1393,1440.000000,40,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1405,1440.000000,40,0,581.760000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,40,0,643.840000,baseline,lora,60 -on1,0,0,24,0,0,1408,1440.000000,40,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1418,1440.000000,40,0,579.680000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1347,1440.000000,41,0,597.440000,baseline,lora,60 -on9,0,0,24,0,0,1428,1440.000000,41,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,41,0,615.360000,baseline,lora,60 -on4,0,0,24,0,0,1410,1440.000000,41,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1406,1440.000000,41,0,581.600000,baseline,lora,60 -on6,0,0,24,0,0,1391,1440.000000,42,0,589.120000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,42,0,631.840000,baseline,lora,60 -on11,0,0,24,0,0,1406,1440.000000,42,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1312,1440.000000,42,0,599.360000,baseline,lora,60 -on2,0,0,24,0,0,1362,1440.000000,42,0,588.960000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1383,1440.000000,43,0,585.280000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1379,1440.000000,43,0,586.240000,baseline,lora,60 -on7,0,0,24,0,0,1419,1440.000000,43,0,579.520000,baseline,lora,60 -on6,0,0,24,0,0,1409,1440.000000,43,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1386,1440.000000,43,0,584.800000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1433,1440.000000,43,0,577.280000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,43,0,638.560000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,44,0,642.080000,baseline,lora,60 -on10,0,0,24,0,0,1343,1440.000000,44,0,604.800000,baseline,lora,60 -on2,0,0,24,0,0,1406,1440.000000,44,0,587.840000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1391,1440.000000,44,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1419,1440.000000,44,0,579.520000,baseline,lora,60 -on9,0,0,24,0,0,1384,1440.000000,44,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1431,1440.000000,44,0,586.720000,baseline,lora,60 -on4,0,0,24,0,0,1397,1440.000000,45,0,583.040000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,45,0,677.600000,baseline,lora,60 -on2,0,0,24,0,0,1312,1440.000000,45,0,604.800000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1332,1440.000000,45,0,602.080000,baseline,lora,60 -on9,0,0,24,0,0,1394,1440.000000,45,0,583.680000,baseline,lora,60 -on8,0,0,24,0,0,1425,1440.000000,45,0,582.560000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1426,1440.000000,45,0,578.400000,baseline,lora,60 -on3,0,0,24,0,0,1386,1440.000000,45,0,585.120000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,46,0,650.080000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1349,1440.000000,46,0,590.880000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1419,1440.000000,46,0,585.280000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1439,1440.000000,46,0,576.320000,baseline,lora,60 -on3,0,0,24,0,0,1358,1440.000000,46,0,589.440000,baseline,lora,60 -on9,0,0,24,0,0,1398,1440.000000,46,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1349,1440.000000,46,0,590.880000,baseline,lora,60 -on7,0,0,24,0,0,1425,1440.000000,46,0,581.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1438,1440.000000,47,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1423,1440.000000,47,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1392,1440.000000,47,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,47,0,613.120000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1430,1440.000000,47,0,577.760000,baseline,lora,60 -on10,0,0,24,0,0,1392,1440.000000,47,0,584.000000,baseline,lora,60 -on7,0,0,24,0,0,1403,1440.000000,47,0,582.080000,baseline,lora,60 -on2,0,0,24,0,0,1426,1440.000000,48,0,578.400000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,48,0,612.320000,baseline,lora,60 -on6,0,0,24,0,0,1421,1440.000000,48,0,579.200000,baseline,lora,60 -on4,0,0,24,0,0,1394,1440.000000,48,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1389,1440.000000,48,0,584.320000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1398,1440.000000,49,0,582.880000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1407,1440.000000,49,0,581.440000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,49,0,627.680000,baseline,lora,60 -on5,0,0,24,0,0,1384,1440.000000,49,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1421,1440.000000,49,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1377,1440.000000,49,0,586.400000,baseline,lora,60 -on2,0,0,24,0,0,1435,1440.000000,49,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1421,1440.000000,50,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,50,0,652.320000,baseline,lora,60 -on2,0,0,24,0,0,1377,1440.000000,50,0,591.360000,baseline,lora,60 -on3,0,0,24,0,0,1383,1440.000000,50,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1386,1440.000000,50,0,584.800000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1394,1440.000000,50,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1426,1440.000000,50,0,578.400000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1414,1440.000000,50,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1367,1440.000000,50,0,588.640000,baseline,lora,60 -on7,0,0,24,0,0,1399,1440.000000,51,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1377,1440.000000,51,0,588.320000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,51,0,628.800000,baseline,lora,60 -on6,0,0,24,0,0,1438,1440.000000,51,0,576.480000,baseline,lora,60 -on9,0,0,24,0,0,1429,1440.000000,51,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1416,1440.000000,51,0,580.000000,baseline,lora,60 -on11,0,0,24,0,0,1382,1440.000000,51,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1435,1440.000000,51,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1334,1440.000000,52,0,595.200000,baseline,lora,60 -on9,0,0,24,0,0,1412,1440.000000,52,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1341,1440.000000,52,0,596.320000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,52,0,661.120000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1421,1440.000000,52,0,579.200000,baseline,lora,60 -on11,0,0,24,0,0,1438,1440.000000,52,0,576.480000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1348,1440.000000,52,0,591.040000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1408,1440.000000,53,0,590.400000,baseline,lora,60 -on11,0,0,24,0,0,1390,1440.000000,53,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1400,1440.000000,53,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1405,1440.000000,53,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1429,1440.000000,53,0,577.920000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,53,0,625.920000,baseline,lora,60 -on1,0,0,24,0,0,1404,1440.000000,53,0,581.920000,baseline,lora,60 -on6,0,0,24,0,0,1415,1440.000000,54,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1418,1440.000000,54,0,579.680000,baseline,lora,60 -on3,0,0,24,0,0,1359,1440.000000,54,0,591.520000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1388,1440.000000,54,0,585.440000,baseline,lora,60 -on9,0,0,24,0,0,1434,1440.000000,54,0,577.120000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,54,0,632.160000,baseline,lora,60 -on1,0,0,24,0,0,1343,1440.000000,54,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1375,1440.000000,55,0,595.200000,baseline,lora,60 -on11,0,0,24,0,0,1437,1440.000000,55,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1413,1440.000000,55,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1422,1440.000000,55,0,579.040000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1381,1440.000000,55,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,55,0,611.040000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1410,1440.000000,56,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,56,0,580.960000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1384,1440.000000,57,0,588.160000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,57,0,617.120000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1406,1440.000000,57,0,581.600000,baseline,lora,60 -on7,0,0,24,0,0,1406,1440.000000,57,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1411,1440.000000,57,0,580.800000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1410,1440.000000,58,0,580.960000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1337,1440.000000,58,0,593.760000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1393,1440.000000,58,0,587.680000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,58,0,648.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1429,1440.000000,58,0,577.920000,baseline,lora,60 -on6,0,0,24,0,0,1380,1440.000000,58,0,585.920000,baseline,lora,60 -on8,0,0,24,0,0,1402,1440.000000,59,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1414,1440.000000,59,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1429,1440.000000,59,0,577.920000,baseline,lora,60 -on10,0,0,24,0,0,1389,1440.000000,59,0,595.200000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,59,0,624.800000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1383,1440.000000,59,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1398,1440.000000,59,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1416,1440.000000,59,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1379,1440.000000,60,0,595.200000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1439,1440.000000,60,0,576.320000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1325,1440.000000,60,0,604.800000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1426,1440.000000,60,0,578.400000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,60,0,618.240000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1437,1440.000000,61,0,581.760000,baseline,lora,60 -on1,0,0,24,0,0,1396,1440.000000,61,0,583.200000,baseline,lora,60 -on10,0,0,24,0,0,1389,1440.000000,61,0,584.320000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1420,1440.000000,61,0,585.920000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1304,1440.000000,61,0,611.840000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,61,0,632.960000,baseline,lora,60 -on2,0,0,24,0,0,1415,1440.000000,61,0,581.920000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1432,1440.000000,62,0,577.440000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1345,1440.000000,62,0,591.520000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,62,0,614.400000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1396,1440.000000,62,0,583.200000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1408,1440.000000,63,0,581.280000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,63,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1364,1440.000000,63,0,588.640000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,63,0,636.800000,baseline,lora,60 -on6,0,0,24,0,0,1426,1440.000000,63,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1417,1440.000000,63,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1379,1440.000000,63,0,591.200000,baseline,lora,60 -on1,0,0,24,0,0,1427,1440.000000,63,0,578.240000,baseline,lora,60 -on9,0,0,24,0,0,1403,1440.000000,63,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1419,1440.000000,63,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,64,0,617.440000,baseline,lora,60 -on8,0,0,24,0,0,1383,1440.000000,64,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1426,1440.000000,64,0,587.840000,baseline,lora,60 -on9,0,0,24,0,0,1405,1440.000000,64,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1384,1440.000000,64,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1350,1440.000000,64,0,594.720000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1410,1440.000000,65,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1401,1440.000000,65,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1384,1440.000000,65,0,585.120000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,65,0,630.560000,baseline,lora,60 -on11,0,0,24,0,0,1383,1440.000000,65,0,588.640000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1379,1440.000000,65,0,590.080000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1426,1440.000000,65,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1414,1440.000000,66,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1424,1440.000000,66,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,66,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1382,1440.000000,66,0,585.440000,baseline,lora,60 -on5,0,0,24,0,0,1386,1440.000000,66,0,584.800000,baseline,lora,60 -on3,0,0,24,0,0,1436,1440.000000,66,0,576.800000,baseline,lora,60 -on4,0,0,24,0,0,1389,1440.000000,66,0,591.840000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,66,0,634.720000,baseline,lora,60 -on8,0,0,24,0,0,1406,1440.000000,66,0,581.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,66,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1418,1440.000000,66,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1394,1440.000000,67,0,583.520000,baseline,lora,60 -on3,0,0,24,0,0,1424,1440.000000,67,0,578.720000,baseline,lora,60 -on5,0,0,24,0,0,1427,1440.000000,67,0,579.360000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,67,0,631.520000,baseline,lora,60 -on6,0,0,24,0,0,1404,1440.000000,67,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1398,1440.000000,67,0,584.160000,baseline,lora,60 -on4,0,0,24,0,0,1389,1440.000000,67,0,592.640000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1395,1440.000000,67,0,592.960000,baseline,lora,60 -on2,0,0,24,0,0,1428,1440.000000,67,0,578.080000,baseline,lora,60 -on7,0,0,24,0,0,1370,1440.000000,68,0,589.920000,baseline,lora,60 -on9,0,0,24,0,0,1401,1440.000000,68,0,582.400000,baseline,lora,60 -on10,0,0,24,0,0,1411,1440.000000,68,0,580.800000,baseline,lora,60 -on1,0,0,24,0,0,1410,1440.000000,68,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1382,1440.000000,68,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,68,0,663.200000,baseline,lora,60 -on11,0,0,24,0,0,1304,1440.000000,68,0,609.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1401,1440.000000,68,0,582.400000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1400,1440.000000,69,0,582.560000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,69,0,601.280000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1403,1440.000000,69,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1432,1440.000000,69,0,577.440000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1395,1440.000000,70,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1391,1440.000000,70,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1411,1440.000000,70,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1417,1440.000000,70,0,579.840000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,70,0,624.960000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1388,1440.000000,70,0,584.480000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1416,1440.000000,70,0,580.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1332,1440.000000,71,0,596.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1403,1440.000000,71,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1438,1440.000000,71,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,71,0,627.200000,baseline,lora,60 -on3,0,0,24,0,0,1329,1440.000000,71,0,595.200000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1346,1440.000000,72,0,591.360000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1349,1440.000000,72,0,594.880000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1339,1440.000000,72,0,596.640000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,72,0,635.200000,baseline,lora,60 -on5,0,0,24,0,0,1351,1440.000000,73,0,603.200000,baseline,lora,60 -on6,0,0,24,0,0,1420,1440.000000,73,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1413,1440.000000,73,0,586.560000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,73,0,611.680000,baseline,lora,60 -on9,0,0,24,0,0,1414,1440.000000,73,0,580.320000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1401,1440.000000,74,0,582.560000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,74,0,625.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,74,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1404,1440.000000,74,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1371,1440.000000,74,0,588.800000,baseline,lora,60 -on8,0,0,24,0,0,1400,1440.000000,74,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1428,1440.000000,75,0,587.840000,baseline,lora,60 -on10,0,0,24,0,0,1401,1440.000000,75,0,582.400000,baseline,lora,60 -on4,0,0,24,0,0,1377,1440.000000,75,0,589.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,75,0,576.160000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1391,1440.000000,75,0,584.000000,baseline,lora,60 -on9,0,0,24,0,0,1424,1440.000000,75,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1411,1440.000000,75,0,587.360000,baseline,lora,60 -on11,0,0,24,0,0,1393,1440.000000,75,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,75,0,644.640000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1406,1440.000000,76,0,581.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,76,0,576.160000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1414,1440.000000,76,0,580.320000,baseline,lora,60 -on1,0,0,24,0,0,1436,1440.000000,76,0,576.800000,baseline,lora,60 -on9,0,0,24,0,0,1377,1440.000000,76,0,586.400000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,76,0,643.200000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1382,1440.000000,76,0,585.440000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1381,1440.000000,77,0,593.920000,baseline,lora,60 -on10,0,0,24,0,0,1426,1440.000000,77,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1386,1440.000000,77,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1386,1440.000000,77,0,584.800000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,77,0,607.840000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1394,1440.000000,78,0,583.520000,baseline,lora,60 -on5,0,0,24,0,0,1418,1440.000000,78,0,579.680000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1411,1440.000000,78,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1354,1440.000000,78,0,590.880000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1425,1440.000000,78,0,578.560000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,78,0,628.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1367,1440.000000,79,0,597.280000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1384,1440.000000,79,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1385,1440.000000,79,0,584.960000,baseline,lora,60 -on1,0,0,24,0,0,1392,1440.000000,79,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,79,0,622.240000,baseline,lora,60 -on9,0,0,24,0,0,1332,1440.000000,80,0,599.840000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,80,0,630.240000,baseline,lora,60 -on2,0,0,24,0,0,1375,1440.000000,80,0,590.560000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1436,1440.000000,80,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1413,1440.000000,80,0,580.480000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1388,1440.000000,80,0,593.920000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,80,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1411,1440.000000,81,0,580.800000,baseline,lora,60 -on8,0,0,24,0,0,1364,1440.000000,81,0,592.160000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,lora,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,baseline,lora,60 -on9,0,0,24,0,0,1298,1440.000000,81,0,600.640000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,81,0,647.840000,baseline,lora,60 -on2,0,0,24,0,0,1412,1440.000000,81,0,580.640000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1407,1440.000000,82,0,581.440000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1383,1440.000000,82,0,588.000000,baseline,lora,60 -on4,0,0,24,0,0,1386,1440.000000,82,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1381,1440.000000,82,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,82,0,630.240000,baseline,lora,60 -on2,0,0,24,0,0,1416,1440.000000,82,0,580.000000,baseline,lora,60 -on6,0,0,24,0,0,1405,1440.000000,83,0,581.760000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,83,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1381,1440.000000,83,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1407,1440.000000,83,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1399,1440.000000,83,0,582.720000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1363,1440.000000,83,0,595.840000,baseline,lora,60 -on4,0,0,24,0,0,1428,1440.000000,83,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,83,0,639.680000,baseline,lora,60 -on2,0,0,24,0,0,1437,1440.000000,83,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1410,1440.000000,83,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,84,0,576.160000,baseline,lora,60 -on2,0,0,24,0,0,1378,1440.000000,84,0,588.800000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1403,1440.000000,84,0,582.080000,baseline,lora,60 -on4,0,0,24,0,0,1406,1440.000000,84,0,587.840000,baseline,lora,60 -on7,0,0,24,0,0,1414,1440.000000,84,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,84,0,619.680000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1406,1440.000000,85,0,586.240000,baseline,lora,60 -on8,0,0,24,0,0,1340,1440.000000,85,0,593.760000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1417,1440.000000,85,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1432,1440.000000,85,0,577.440000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,85,0,619.680000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1431,1440.000000,85,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,86,0,646.880000,baseline,lora,60 -on2,0,0,24,0,0,1439,1440.000000,86,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1344,1440.000000,86,0,591.680000,baseline,lora,60 -on8,0,0,24,0,0,1432,1440.000000,86,0,577.440000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1420,1440.000000,86,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,86,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1429,1440.000000,86,0,577.920000,baseline,lora,60 -on5,0,0,24,0,0,1403,1440.000000,86,0,582.080000,baseline,lora,60 -on3,0,0,24,0,0,1418,1440.000000,86,0,579.680000,baseline,lora,60 -on11,0,0,24,0,0,1389,1440.000000,86,0,584.320000,baseline,lora,60 -on10,0,0,24,0,0,1402,1440.000000,87,0,582.240000,baseline,lora,60 -on1,0,0,24,0,0,1413,1440.000000,87,0,580.480000,baseline,lora,60 -on4,0,0,24,0,0,1398,1440.000000,87,0,582.880000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,87,0,646.880000,baseline,lora,60 -on8,0,0,24,0,0,1439,1440.000000,87,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1400,1440.000000,87,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,87,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1403,1440.000000,87,0,582.080000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1418,1440.000000,87,0,583.680000,baseline,lora,60 -on9,0,0,24,0,0,1405,1440.000000,87,0,581.760000,baseline,lora,60 -on5,0,0,24,0,0,1402,1440.000000,87,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1384,1440.000000,88,0,589.120000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,88,0,652.320000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1400,1440.000000,88,0,582.560000,baseline,lora,60 -on2,0,0,24,0,0,1369,1440.000000,88,0,587.680000,baseline,lora,60 -on6,0,0,24,0,0,1438,1440.000000,88,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1320,1440.000000,88,0,601.280000,baseline,lora,60 -on7,0,0,24,0,0,1385,1440.000000,88,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1393,1440.000000,89,0,595.200000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1405,1440.000000,89,0,581.760000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1346,1440.000000,89,0,597.440000,baseline,lora,60 -on1,0,0,24,0,0,1369,1440.000000,89,0,595.200000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,89,0,628.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1387,1440.000000,90,0,590.400000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,90,0,576.160000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1385,1440.000000,90,0,584.960000,baseline,lora,60 -on4,0,0,24,0,0,1398,1440.000000,90,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,90,0,615.680000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1408,1440.000000,91,0,584.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,91,0,620.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1378,1440.000000,91,0,592.640000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1423,1440.000000,91,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1435,1440.000000,91,0,576.960000,baseline,lora,60 -on8,0,0,24,0,0,1385,1440.000000,91,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1390,1440.000000,92,0,598.560000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,92,0,616.160000,baseline,lora,60 -on11,0,0,24,0,0,1377,1440.000000,92,0,589.760000,baseline,lora,60 -on1,0,0,24,0,0,1387,1440.000000,92,0,584.640000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1426,1440.000000,93,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1405,1440.000000,93,0,581.920000,baseline,lora,60 -on7,0,0,24,0,0,1310,1440.000000,93,0,604.800000,baseline,lora,60 -on4,0,0,24,0,0,1385,1440.000000,93,0,584.960000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1398,1440.000000,93,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1391,1440.000000,93,0,604.640000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,93,0,652.640000,baseline,lora,60 -on8,0,0,24,0,0,1422,1440.000000,93,0,579.040000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1407,1440.000000,94,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1430,1440.000000,94,0,577.760000,baseline,lora,60 -on2,0,0,24,0,0,1373,1440.000000,94,0,587.040000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1415,1440.000000,94,0,588.800000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,94,0,619.840000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1406,1440.000000,95,0,591.040000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1425,1440.000000,95,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1433,1440.000000,95,0,577.280000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,95,0,646.240000,baseline,lora,60 -on4,0,0,24,0,0,1367,1440.000000,95,0,589.920000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1407,1440.000000,95,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1386,1440.000000,95,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1398,1440.000000,95,0,583.040000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1400,1440.000000,96,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1384,1440.000000,96,0,585.120000,baseline,lora,60 -on4,0,0,24,0,0,1396,1440.000000,96,0,583.200000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,96,0,576.160000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1397,1440.000000,96,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,96,0,618.400000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1437,1440.000000,97,0,576.640000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,97,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1382,1440.000000,97,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1439,1440.000000,97,0,576.320000,baseline,lora,60 -on8,0,0,24,0,0,1389,1440.000000,97,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1407,1440.000000,97,0,581.440000,baseline,lora,60 -on9,0,0,24,0,0,1439,1440.000000,97,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,97,0,632.480000,baseline,lora,60 -on7,0,0,24,0,0,1437,1440.000000,97,0,576.640000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1414,1440.000000,97,0,580.320000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1436,1440.000000,98,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1387,1440.000000,98,0,584.640000,baseline,lora,60 -on11,0,0,24,0,0,1411,1440.000000,98,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1383,1440.000000,98,0,585.280000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,98,0,621.120000,baseline,lora,60 -on1,0,0,24,0,0,1404,1440.000000,98,0,581.920000,baseline,lora,60 -on3,0,0,24,0,0,1375,1440.000000,98,0,595.200000,baseline,lora,60 -on1,0,0,24,0,0,1381,1440.000000,99,0,585.760000,baseline,lora,60 -on8,0,0,24,0,0,1390,1440.000000,99,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1404,1440.000000,99,0,581.920000,baseline,lora,60 -on2,0,0,24,0,0,1408,1440.000000,99,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1394,1440.000000,99,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1404,1440.000000,99,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1433,1440.000000,99,0,584.320000,baseline,lora,60 -on10,0,0,24,0,0,1390,1440.000000,99,0,584.160000,baseline,lora,60 -on3,0,0,24,0,0,1436,1440.000000,99,0,586.240000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,99,0,651.200000,baseline,lora,60 -on9,0,0,24,0,0,1428,1440.000000,99,0,578.080000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1401,1440.000000,100,0,582.400000,baseline,lora,60 -on2,0,0,24,0,0,1349,1440.000000,100,0,592.000000,baseline,lora,60 -on8,0,0,24,0,0,1364,1440.000000,100,0,594.720000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,100,0,635.840000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1396,1440.000000,100,0,583.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1390,1440.000000,100,0,584.160000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,101,0,619.520000,baseline,lora,60 -on7,0,0,24,0,0,1423,1440.000000,101,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1416,1440.000000,101,0,588.320000,baseline,lora,60 -on9,0,0,24,0,0,1322,1440.000000,101,0,597.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1423,1440.000000,101,0,595.200000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1399,1440.000000,102,0,589.760000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1398,1440.000000,102,0,582.880000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,102,0,607.520000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1403,1440.000000,102,0,582.080000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1291,1440.000000,103,0,603.520000,baseline,lora,60 -on5,0,0,24,0,0,1403,1440.000000,103,0,582.080000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,103,0,638.240000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1422,1440.000000,103,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1415,1440.000000,103,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1385,1440.000000,103,0,587.680000,baseline,lora,60 -on11,0,0,24,0,0,1428,1440.000000,103,0,578.080000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1425,1440.000000,104,0,584.960000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,104,0,640.640000,baseline,lora,60 -on8,0,0,24,0,0,1403,1440.000000,104,0,582.080000,baseline,lora,60 -on7,0,0,24,0,0,1397,1440.000000,104,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1385,1440.000000,104,0,584.960000,baseline,lora,60 -on10,0,0,24,0,0,1400,1440.000000,104,0,582.560000,baseline,lora,60 -on2,0,0,24,0,0,1432,1440.000000,104,0,577.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1434,1440.000000,104,0,577.120000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1395,1440.000000,105,0,595.200000,baseline,lora,60 -on9,0,0,24,0,0,1422,1440.000000,105,0,585.760000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,105,0,608.320000,baseline,lora,60 -on10,0,0,24,0,0,1425,1440.000000,105,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1422,1440.000000,105,0,579.040000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1381,1440.000000,106,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1417,1440.000000,106,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1430,1440.000000,106,0,577.760000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1416,1440.000000,106,0,580.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,106,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1407,1440.000000,106,0,581.440000,baseline,lora,60 -on10,0,0,24,0,0,1422,1440.000000,106,0,579.040000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,106,0,628.000000,baseline,lora,60 -on1,0,0,24,0,0,1414,1440.000000,107,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,107,0,609.120000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1395,1440.000000,107,0,583.360000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1412,1440.000000,107,0,580.640000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1416,1440.000000,107,0,580.000000,baseline,lora,60 -on7,0,0,24,0,0,1426,1440.000000,108,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1435,1440.000000,108,0,581.120000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,108,0,607.840000,baseline,lora,60 -on10,0,0,24,0,0,1405,1440.000000,108,0,581.760000,baseline,lora,60 -on9,0,0,24,0,0,1433,1440.000000,108,0,577.280000,baseline,lora,60 -on8,0,0,24,0,0,1384,1440.000000,108,0,594.240000,baseline,lora,60 -on7,0,0,24,0,0,1416,1440.000000,109,0,580.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,109,0,604.800000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1388,1440.000000,109,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1406,1440.000000,109,0,581.600000,baseline,lora,60 -on3,0,0,24,0,0,1434,1440.000000,109,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,110,0,630.080000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1437,1440.000000,110,0,576.640000,baseline,lora,60 -on3,0,0,24,0,0,1408,1440.000000,110,0,581.280000,baseline,lora,60 -on10,0,0,24,0,0,1410,1440.000000,110,0,595.200000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1391,1440.000000,110,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1425,1440.000000,110,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1376,1440.000000,110,0,586.560000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,111,0,634.080000,baseline,lora,60 -on4,0,0,24,0,0,1399,1440.000000,111,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1413,1440.000000,111,0,588.800000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1399,1440.000000,111,0,582.720000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1413,1440.000000,111,0,580.480000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1370,1440.000000,111,0,595.200000,baseline,lora,60 -on6,0,0,24,0,0,1387,1440.000000,111,0,584.640000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1398,1440.000000,112,0,582.880000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,112,0,637.920000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1369,1440.000000,112,0,587.680000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1417,1440.000000,112,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1404,1440.000000,112,0,581.920000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1416,1440.000000,112,0,580.000000,baseline,lora,60 -on5,0,0,24,0,0,1410,1440.000000,112,0,580.960000,baseline,lora,60 -on7,0,0,24,0,0,1428,1440.000000,112,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1376,1440.000000,113,0,595.200000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1409,1440.000000,113,0,595.200000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,113,0,601.440000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1389,1440.000000,113,0,584.320000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1401,1440.000000,114,0,582.400000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1412,1440.000000,114,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1384,1440.000000,114,0,595.200000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1401,1440.000000,114,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1385,1440.000000,114,0,584.960000,baseline,lora,60 -on1,0,0,24,0,0,1386,1440.000000,114,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,114,0,624.320000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,115,0,631.040000,baseline,lora,60 -on10,0,0,24,0,0,1432,1440.000000,115,0,577.440000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1416,1440.000000,115,0,580.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1386,1440.000000,115,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1399,1440.000000,115,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1375,1440.000000,115,0,595.200000,baseline,lora,60 -on9,0,0,24,0,0,1388,1440.000000,115,0,584.480000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1421,1440.000000,116,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,116,0,615.680000,baseline,lora,60 -on2,0,0,24,0,0,1428,1440.000000,116,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1418,1440.000000,116,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1388,1440.000000,116,0,584.480000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1370,1440.000000,116,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1415,1440.000000,116,0,580.160000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1398,1440.000000,117,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1406,1440.000000,117,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,117,0,595.680000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1427,1440.000000,117,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1410,1440.000000,117,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1393,1440.000000,118,0,583.680000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1388,1440.000000,118,0,584.480000,baseline,lora,60 -on11,0,0,24,0,0,1405,1440.000000,118,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1333,1440.000000,118,0,593.760000,baseline,lora,60 -on7,0,0,24,0,0,1415,1440.000000,118,0,580.160000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,118,0,638.240000,baseline,lora,60 -on5,0,0,24,0,0,1386,1440.000000,118,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1399,1440.000000,119,0,582.720000,baseline,lora,60 -on8,0,0,24,0,0,1437,1440.000000,119,0,578.080000,baseline,lora,60 -on2,0,0,24,0,0,1394,1440.000000,119,0,595.200000,baseline,lora,60 -on9,0,0,24,0,0,1388,1440.000000,119,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1338,1440.000000,119,0,600.320000,baseline,lora,60 -on6,0,0,24,0,0,1420,1440.000000,119,0,579.360000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,119,0,576.160000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,119,0,654.080000,baseline,lora,60 -on11,0,0,24,0,0,1424,1440.000000,119,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,119,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1425,1440.000000,119,0,578.560000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1388,1440.000000,120,0,584.480000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1375,1440.000000,120,0,591.360000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1420,1440.000000,120,0,585.760000,baseline,lora,60 -on1,0,0,24,0,0,1392,1440.000000,120,0,583.840000,baseline,lora,60 -on6,0,0,24,0,0,1357,1440.000000,120,0,591.840000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,120,0,634.720000,baseline,lora,60 -on8,0,0,24,0,0,1416,1440.000000,121,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1390,1440.000000,121,0,584.160000,baseline,lora,60 -on3,0,0,24,0,0,1372,1440.000000,121,0,597.760000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1335,1440.000000,121,0,594.720000,baseline,lora,60 -on9,0,0,24,0,0,1439,1440.000000,121,0,576.320000,baseline,lora,60 -on5,0,0,24,0,0,1399,1440.000000,121,0,582.720000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,121,0,637.280000,baseline,lora,60 -on4,0,0,24,0,0,1386,1440.000000,121,0,584.800000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1404,1440.000000,122,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,122,0,630.720000,baseline,lora,60 -on7,0,0,24,0,0,1433,1440.000000,122,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1397,1440.000000,122,0,583.200000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1434,1440.000000,122,0,577.120000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1336,1440.000000,122,0,593.440000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1364,1440.000000,123,0,592.320000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1416,1440.000000,123,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1396,1440.000000,123,0,583.200000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1354,1440.000000,123,0,590.240000,baseline,lora,60 -on10,0,0,24,0,0,1328,1440.000000,123,0,600.320000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,123,0,657.440000,baseline,lora,60 -on1,0,0,24,0,0,1415,1440.000000,124,0,580.320000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,124,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1325,1440.000000,124,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,124,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1315,1440.000000,124,0,610.240000,baseline,lora,60 -on6,0,0,24,0,0,1404,1440.000000,124,0,581.920000,baseline,lora,60 -on8,0,0,24,0,0,1388,1440.000000,124,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1367,1440.000000,124,0,595.200000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,124,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,124,0,660.480000,baseline,lora,60 -on4,0,0,24,0,0,1431,1440.000000,124,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1363,1440.000000,125,0,588.640000,baseline,lora,60 -on2,0,0,24,0,0,1376,1440.000000,125,0,590.080000,baseline,lora,60 -on8,0,0,24,0,0,1398,1440.000000,125,0,583.040000,baseline,lora,60 -on3,0,0,24,0,0,1439,1440.000000,125,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1355,1440.000000,125,0,592.160000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,125,0,647.360000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,126,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1329,1440.000000,126,0,595.680000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,126,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1401,1440.000000,126,0,586.560000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,126,0,663.840000,baseline,lora,60 -on6,0,0,24,0,0,1388,1440.000000,126,0,584.480000,baseline,lora,60 -on3,0,0,24,0,0,1322,1440.000000,126,0,602.720000,baseline,lora,60 -on2,0,0,24,0,0,1408,1440.000000,126,0,581.280000,baseline,lora,60 -on5,0,0,24,0,0,1412,1440.000000,126,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1407,1440.000000,126,0,581.440000,baseline,lora,60 -on4,0,0,24,0,0,1387,1440.000000,127,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,127,0,639.200000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1375,1440.000000,127,0,587.040000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1363,1440.000000,127,0,594.080000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1395,1440.000000,127,0,583.360000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1378,1440.000000,127,0,589.120000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1395,1440.000000,128,0,583.360000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1385,1440.000000,128,0,584.960000,baseline,lora,60 -on4,0,0,24,0,0,1391,1440.000000,128,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1410,1440.000000,128,0,580.960000,baseline,lora,60 -on2,0,0,24,0,0,1384,1440.000000,128,0,585.120000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,128,0,622.400000,baseline,lora,60 -on1,0,0,24,0,0,1380,1440.000000,129,0,594.080000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,129,0,647.040000,baseline,lora,60 -on4,0,0,24,0,0,1420,1440.000000,129,0,586.880000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,129,0,576.160000,baseline,lora,60 -on3,0,0,24,0,0,1426,1440.000000,129,0,578.400000,baseline,lora,60 -on10,0,0,24,0,0,1397,1440.000000,129,0,583.040000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,129,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1385,1440.000000,129,0,589.600000,baseline,lora,60 -on8,0,0,24,0,0,1394,1440.000000,130,0,590.720000,baseline,lora,60 -on3,0,0,24,0,0,1417,1440.000000,130,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1403,1440.000000,130,0,582.080000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,130,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1383,1440.000000,130,0,592.960000,baseline,lora,60 -on4,0,0,24,0,0,1435,1440.000000,130,0,576.960000,baseline,lora,60 -on5,0,0,24,0,0,1418,1440.000000,130,0,579.840000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,130,0,648.480000,baseline,lora,60 -on1,0,0,24,0,0,1403,1440.000000,130,0,582.080000,baseline,lora,60 -on2,0,0,24,0,0,1432,1440.000000,130,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1408,1440.000000,131,0,581.280000,baseline,lora,60 -on7,0,0,24,0,0,1417,1440.000000,131,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1426,1440.000000,131,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1412,1440.000000,131,0,589.120000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1405,1440.000000,131,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,131,0,608.480000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,132,0,635.040000,baseline,lora,60 -on4,0,0,24,0,0,1411,1440.000000,132,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1409,1440.000000,132,0,581.280000,baseline,lora,60 -on11,0,0,24,0,0,1415,1440.000000,132,0,580.160000,baseline,lora,60 -on7,0,0,24,0,0,1402,1440.000000,132,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1430,1440.000000,132,0,580.000000,baseline,lora,60 -on6,0,0,24,0,0,1392,1440.000000,132,0,583.840000,baseline,lora,60 -on10,0,0,24,0,0,1420,1440.000000,132,0,579.360000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1439,1440.000000,133,0,576.320000,baseline,lora,60 -on10,0,0,24,0,0,1400,1440.000000,133,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1377,1440.000000,133,0,592.480000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1388,1440.000000,133,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1400,1440.000000,133,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1410,1440.000000,133,0,588.960000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,133,0,666.720000,baseline,lora,60 -on9,0,0,24,0,0,1349,1440.000000,133,0,590.880000,baseline,lora,60 -on2,0,0,24,0,0,1415,1440.000000,133,0,580.160000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,134,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,134,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1402,1440.000000,134,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1401,1440.000000,134,0,588.320000,baseline,lora,60 -on6,0,0,24,0,0,1391,1440.000000,134,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1364,1440.000000,134,0,588.640000,baseline,lora,60 -on5,0,0,24,0,0,1404,1440.000000,134,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1410,1440.000000,134,0,580.960000,baseline,lora,60 -on8,0,0,24,0,0,1439,1440.000000,134,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1382,1440.000000,134,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,134,0,657.760000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,135,0,637.600000,baseline,lora,60 -on6,0,0,24,0,0,1394,1440.000000,135,0,583.520000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1401,1440.000000,135,0,595.200000,baseline,lora,60 -on5,0,0,24,0,0,1409,1440.000000,135,0,581.120000,baseline,lora,60 -on7,0,0,24,0,0,1383,1440.000000,135,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1354,1440.000000,135,0,595.200000,baseline,lora,60 -on1,0,0,24,0,0,1432,1440.000000,135,0,577.440000,baseline,lora,60 -on8,0,0,24,0,0,1424,1440.000000,135,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,135,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1373,1440.000000,136,0,595.200000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1430,1440.000000,136,0,577.760000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1423,1440.000000,136,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1407,1440.000000,136,0,581.440000,baseline,lora,60 -on4,0,0,24,0,0,1355,1440.000000,136,0,589.920000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,136,0,628.320000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1403,1440.000000,137,0,588.000000,baseline,lora,60 -on8,0,0,24,0,0,1421,1440.000000,137,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1439,1440.000000,137,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1385,1440.000000,137,0,593.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1403,1440.000000,137,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1429,1440.000000,137,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,137,0,645.120000,baseline,lora,60 -on11,0,0,24,0,0,1400,1440.000000,137,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1295,1440.000000,137,0,601.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1385,1440.000000,138,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1392,1440.000000,138,0,583.840000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1400,1440.000000,138,0,591.360000,baseline,lora,60 -on4,0,0,24,0,0,1360,1440.000000,138,0,593.280000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,138,0,620.160000,baseline,lora,60 -on11,0,0,24,0,0,1430,1440.000000,138,0,578.720000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,139,0,650.080000,baseline,lora,60 -on3,0,0,24,0,0,1400,1440.000000,139,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1418,1440.000000,139,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1383,1440.000000,139,0,589.280000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1314,1440.000000,139,0,596.640000,baseline,lora,60 -on5,0,0,24,0,0,1393,1440.000000,139,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1420,1440.000000,139,0,579.520000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1427,1440.000000,139,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1406,1440.000000,140,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1364,1440.000000,140,0,588.640000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1428,1440.000000,140,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1388,1440.000000,140,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1333,1440.000000,140,0,593.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,140,0,663.360000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1432,1440.000000,140,0,577.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1423,1440.000000,141,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,141,0,576.160000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,141,0,606.400000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1395,1440.000000,141,0,583.360000,baseline,lora,60 -on11,0,0,24,0,0,1389,1440.000000,141,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1417,1440.000000,142,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1405,1440.000000,142,0,581.760000,baseline,lora,60 -on3,0,0,24,0,0,1416,1440.000000,142,0,580.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1385,1440.000000,142,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1374,1440.000000,142,0,595.200000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,142,0,618.880000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1410,1440.000000,143,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1396,1440.000000,143,0,595.200000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,143,0,631.200000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1303,1440.000000,143,0,600.800000,baseline,lora,60 -on6,0,0,24,0,0,1407,1440.000000,143,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1432,1440.000000,143,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1391,1440.000000,143,0,584.160000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1403,1440.000000,144,0,590.400000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,144,0,628.320000,baseline,lora,60 -on10,0,0,24,0,0,1431,1440.000000,144,0,577.600000,baseline,lora,60 -on7,0,0,24,0,0,1388,1440.000000,144,0,587.040000,baseline,lora,60 -on5,0,0,24,0,0,1409,1440.000000,144,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1388,1440.000000,145,0,595.200000,baseline,lora,60 -on3,0,0,24,0,0,1413,1440.000000,145,0,580.480000,baseline,lora,60 -on8,0,0,24,0,0,1409,1440.000000,145,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,145,0,666.240000,baseline,lora,60 -on5,0,0,24,0,0,1374,1440.000000,145,0,586.880000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,145,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,145,0,576.160000,baseline,lora,60 -on4,0,0,24,0,0,1419,1440.000000,145,0,580.320000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1394,1440.000000,145,0,583.520000,baseline,lora,60 -on9,0,0,24,0,0,1383,1440.000000,145,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1426,1440.000000,145,0,578.400000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,146,0,628.960000,baseline,lora,60 -on5,0,0,24,0,0,1432,1440.000000,146,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1400,1440.000000,146,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1412,1440.000000,146,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1402,1440.000000,146,0,582.240000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1400,1440.000000,146,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1418,1440.000000,146,0,588.800000,baseline,lora,60 -on3,0,0,24,0,0,1413,1440.000000,146,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1427,1440.000000,146,0,578.400000,baseline,lora,60 -on4,0,0,24,0,0,1390,1440.000000,147,0,584.160000,baseline,lora,60 -on5,0,0,24,0,0,1416,1440.000000,147,0,580.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1423,1440.000000,147,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1380,1440.000000,147,0,585.920000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,147,0,614.400000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1392,1440.000000,148,0,583.840000,baseline,lora,60 -on10,0,0,24,0,0,1426,1440.000000,148,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1383,1440.000000,148,0,585.280000,baseline,lora,60 -on3,0,0,24,0,0,1439,1440.000000,148,0,578.560000,baseline,lora,60 -on6,0,0,24,0,0,1381,1440.000000,148,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1380,1440.000000,148,0,591.040000,baseline,lora,60 -on7,0,0,24,0,0,1384,1440.000000,148,0,585.280000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,148,0,650.080000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1404,1440.000000,148,0,581.920000,baseline,lora,60 -on4,0,0,24,0,0,1410,1440.000000,149,0,580.960000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,149,0,576.160000,baseline,lora,60 -on6,0,0,24,0,0,1439,1440.000000,149,0,576.320000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,149,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1437,1440.000000,149,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,149,0,644.160000,baseline,lora,60 -on10,0,0,24,0,0,1384,1440.000000,149,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1365,1440.000000,149,0,588.320000,baseline,lora,60 -on9,0,0,24,0,0,1424,1440.000000,149,0,587.680000,baseline,lora,60 -on5,0,0,24,0,0,1435,1440.000000,149,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1419,1440.000000,150,0,579.520000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1400,1440.000000,150,0,582.560000,baseline,lora,60 -on2,0,0,24,0,0,1400,1440.000000,150,0,589.600000,baseline,lora,60 -on6,0,0,24,0,0,1417,1440.000000,150,0,579.840000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,150,0,634.240000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1392,1440.000000,150,0,583.840000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1394,1440.000000,150,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1384,1440.000000,151,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1424,1440.000000,151,0,578.720000,baseline,lora,60 -on11,0,0,24,0,0,1415,1440.000000,151,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1388,1440.000000,151,0,584.640000,baseline,lora,60 -on2,0,0,24,0,0,1397,1440.000000,151,0,584.000000,baseline,lora,60 -on10,0,0,24,0,0,1413,1440.000000,151,0,587.680000,baseline,lora,60 -on9,0,0,24,0,0,1434,1440.000000,151,0,595.200000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,151,0,635.200000,baseline,lora,60 -on1,0,0,24,0,0,1418,1440.000000,151,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1360,1440.000000,152,0,595.200000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1401,1440.000000,152,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1401,1440.000000,152,0,582.400000,baseline,lora,60 -on5,0,0,24,0,0,1416,1440.000000,152,0,580.000000,baseline,lora,60 -on3,0,0,24,0,0,1431,1440.000000,152,0,577.600000,baseline,lora,60 -on4,0,0,24,0,0,1423,1440.000000,152,0,578.880000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,152,0,633.920000,baseline,lora,60 -on1,0,0,24,0,0,1434,1440.000000,153,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1385,1440.000000,153,0,592.960000,baseline,lora,60 -on7,0,0,24,0,0,1392,1440.000000,153,0,583.840000,baseline,lora,60 -on4,0,0,24,0,0,1352,1440.000000,153,0,600.480000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,153,0,635.200000,baseline,lora,60 -on6,0,0,24,0,0,1384,1440.000000,153,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1393,1440.000000,153,0,590.240000,baseline,lora,60 -on5,0,0,24,0,0,1411,1440.000000,153,0,580.800000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1388,1440.000000,154,0,590.240000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1370,1440.000000,154,0,587.680000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,154,0,608.800000,baseline,lora,60 -on6,0,0,24,0,0,1427,1440.000000,154,0,578.240000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,155,0,614.080000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1430,1440.000000,155,0,577.760000,baseline,lora,60 -on7,0,0,24,0,0,1403,1440.000000,155,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1402,1440.000000,155,0,582.240000,baseline,lora,60 -on11,0,0,24,0,0,1398,1440.000000,155,0,582.880000,baseline,lora,60 -on8,0,0,24,0,0,1421,1440.000000,155,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1381,1440.000000,156,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,156,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1395,1440.000000,156,0,583.360000,baseline,lora,60 -on9,0,0,24,0,0,1392,1440.000000,156,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1365,1440.000000,156,0,588.320000,baseline,lora,60 -on10,0,0,24,0,0,1428,1440.000000,156,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1401,1440.000000,156,0,582.400000,baseline,lora,60 -on5,0,0,24,0,0,1398,1440.000000,156,0,582.880000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,156,0,642.560000,baseline,lora,60 -on6,0,0,24,0,0,1387,1440.000000,156,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1421,1440.000000,157,0,579.200000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1428,1440.000000,157,0,578.080000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1437,1440.000000,157,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1421,1440.000000,157,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1422,1440.000000,157,0,579.040000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,157,0,608.640000,baseline,lora,60 -on10,0,0,24,0,0,1425,1440.000000,158,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1416,1440.000000,158,0,580.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1420,1440.000000,158,0,579.360000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1398,1440.000000,158,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,158,0,621.440000,baseline,lora,60 -on9,0,0,24,0,0,1396,1440.000000,158,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1401,1440.000000,158,0,582.560000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1408,1440.000000,159,0,581.280000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,159,0,643.200000,baseline,lora,60 -on6,0,0,24,0,0,1435,1440.000000,159,0,576.960000,baseline,lora,60 -on8,0,0,24,0,0,1427,1440.000000,159,0,578.240000,baseline,lora,60 -on7,0,0,24,0,0,1406,1440.000000,159,0,582.240000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1394,1440.000000,159,0,583.680000,baseline,lora,60 -on5,0,0,24,0,0,1403,1440.000000,159,0,582.080000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1398,1440.000000,159,0,582.880000,baseline,lora,60 -on4,0,0,24,0,0,1391,1440.000000,159,0,584.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1345,1440.000000,160,0,594.560000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1391,1440.000000,160,0,584.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1408,1440.000000,160,0,586.400000,baseline,lora,60 -on5,0,0,24,0,0,1413,1440.000000,160,0,580.480000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,160,0,644.480000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1387,1440.000000,160,0,595.200000,baseline,lora,60 -on7,0,0,24,0,0,1371,1440.000000,160,0,591.840000,baseline,lora,60 -on11,0,0,24,0,0,1430,1440.000000,161,0,595.200000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1341,1440.000000,161,0,592.160000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,161,0,601.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1422,1440.000000,161,0,585.600000,baseline,lora,60 -on4,0,0,23,0,0,1430,1432.000000,161,0,582.400000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1435,1440.000000,161,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1412,1440.000000,162,0,580.640000,baseline,lora,60 -on5,0,0,24,0,0,1432,1440.000000,162,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1333,1440.000000,162,0,604.800000,baseline,lora,60 -on2,0,0,24,0,0,1425,1440.000000,162,0,578.560000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1352,1440.000000,162,0,595.200000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,162,0,640.480000,baseline,lora,60 -on10,0,0,24,0,0,1368,1440.000000,162,0,595.200000,baseline,lora,60 -on1,0,0,24,0,0,1424,1440.000000,163,0,578.720000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1373,1440.000000,163,0,591.200000,baseline,lora,60 -on4,0,0,24,0,0,1410,1440.000000,163,0,581.120000,baseline,lora,60 -on3,0,0,24,0,0,1414,1440.000000,163,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,163,0,652.960000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1424,1440.000000,163,0,578.720000,baseline,lora,60 -on9,0,0,24,0,0,1413,1440.000000,163,0,580.480000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1387,1440.000000,163,0,584.640000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1363,1440.000000,164,0,588.960000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,164,0,660.800000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,164,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1284,1440.000000,164,0,608.320000,baseline,lora,60 -on2,0,0,24,0,0,1390,1440.000000,164,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1385,1440.000000,164,0,584.960000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1420,1440.000000,164,0,582.400000,baseline,lora,60 -on5,0,0,24,0,0,1398,1440.000000,164,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1412,1440.000000,164,0,580.640000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,165,0,620.320000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1414,1440.000000,165,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1439,1440.000000,165,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1372,1440.000000,165,0,595.200000,baseline,lora,60 -on11,0,0,24,0,0,1347,1440.000000,165,0,591.360000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1313,1440.000000,166,0,599.200000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,166,0,683.520000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1331,1440.000000,166,0,597.920000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1438,1440.000000,166,0,585.440000,baseline,lora,60 -on7,0,0,24,0,0,1424,1440.000000,166,0,578.720000,baseline,lora,60 -on10,0,0,24,0,0,1369,1440.000000,166,0,598.720000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1355,1440.000000,166,0,589.920000,baseline,lora,60 -on5,0,0,24,0,0,1397,1440.000000,166,0,583.040000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1389,1440.000000,167,0,589.760000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,167,0,576.160000,baseline,lora,60 -on4,0,0,24,0,0,1434,1440.000000,167,0,577.120000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,167,0,614.400000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1432,1440.000000,167,0,577.440000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,168,0,633.760000,baseline,lora,60 -on5,0,0,24,0,0,1385,1440.000000,168,0,595.200000,baseline,lora,60 -on1,0,0,24,0,0,1437,1440.000000,168,0,576.640000,baseline,lora,60 -on9,0,0,24,0,0,1398,1440.000000,168,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1398,1440.000000,168,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1431,1440.000000,168,0,577.760000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1437,1440.000000,168,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1365,1440.000000,168,0,595.200000,baseline,lora,60 -on4,0,0,24,0,0,1433,1440.000000,169,0,577.280000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1402,1440.000000,169,0,582.400000,baseline,lora,60 -on5,0,0,24,0,0,1406,1440.000000,169,0,581.600000,baseline,lora,60 -on6,0,0,24,0,0,1428,1440.000000,169,0,586.720000,baseline,lora,60 -on11,0,0,24,0,0,1400,1440.000000,169,0,582.560000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,169,0,655.520000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1348,1440.000000,169,0,593.920000,baseline,lora,60 -on3,0,0,24,0,0,1406,1440.000000,169,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1417,1440.000000,170,0,584.800000,baseline,lora,60 -on10,0,0,24,0,0,1364,1440.000000,170,0,594.400000,baseline,lora,60 -on3,0,0,24,0,0,1418,1440.000000,170,0,579.840000,baseline,lora,60 -on6,0,0,24,0,0,1415,1440.000000,170,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,170,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1333,1440.000000,170,0,593.440000,baseline,lora,60 -on1,0,0,24,0,0,1371,1440.000000,170,0,591.360000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,170,0,665.760000,baseline,lora,60 -on7,0,0,24,0,0,1384,1440.000000,170,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1436,1440.000000,170,0,582.880000,baseline,lora,60 -on6,0,0,24,0,0,1390,1440.000000,171,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1419,1440.000000,171,0,579.520000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1396,1440.000000,171,0,583.360000,baseline,lora,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1431,1440.000000,171,0,577.600000,baseline,lora,60 -on11,0,0,24,0,0,1426,1440.000000,171,0,578.400000,baseline,lora,60 -on9,0,0,24,0,0,1353,1440.000000,171,0,590.400000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,171,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,171,0,660.960000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1433,1440.000000,172,0,577.280000,baseline,lora,60 -on9,0,0,24,0,0,1387,1440.000000,172,0,584.800000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,172,0,630.400000,baseline,lora,60 -on1,0,0,24,0,0,1395,1440.000000,172,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1416,1440.000000,172,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1387,1440.000000,172,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1406,1440.000000,172,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1416,1440.000000,172,0,583.520000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1407,1440.000000,173,0,581.440000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,173,0,636.800000,baseline,lora,60 -on5,0,0,24,0,0,1402,1440.000000,173,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1431,1440.000000,173,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1383,1440.000000,173,0,585.760000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1368,1440.000000,173,0,592.160000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1427,1440.000000,173,0,578.240000,baseline,lora,60 -on11,0,0,24,0,0,1388,1440.000000,174,0,588.800000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,174,0,640.160000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,174,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1394,1440.000000,174,0,592.320000,baseline,lora,60 -on4,0,0,24,0,0,1415,1440.000000,174,0,580.160000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1429,1440.000000,174,0,577.920000,baseline,lora,60 -on9,0,0,24,0,0,1381,1440.000000,174,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1401,1440.000000,175,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1369,1440.000000,175,0,587.680000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,175,0,638.400000,baseline,lora,60 -on5,0,0,24,0,0,1382,1440.000000,175,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1383,1440.000000,175,0,585.280000,baseline,lora,60 -on6,0,0,24,0,0,1430,1440.000000,175,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1386,1440.000000,175,0,588.160000,baseline,lora,60 -on3,0,0,24,0,0,1376,1440.000000,176,0,586.560000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,176,0,623.360000,baseline,lora,60 -on11,0,0,24,0,0,1425,1440.000000,176,0,582.560000,baseline,lora,60 -on10,0,0,24,0,0,1415,1440.000000,176,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1390,1440.000000,176,0,584.160000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1431,1440.000000,176,0,577.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1411,1440.000000,176,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1375,1440.000000,177,0,595.040000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,177,0,653.440000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,177,0,579.200000,baseline,lora,60 -on9,0,0,24,0,0,1377,1440.000000,177,0,587.040000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1424,1440.000000,177,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1346,1440.000000,177,0,594.080000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1392,1440.000000,177,0,584.160000,baseline,lora,60 -on2,0,0,24,0,0,1393,1440.000000,177,0,583.680000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1427,1440.000000,178,0,578.240000,baseline,lora,60 -on5,0,0,24,0,0,1411,1440.000000,178,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1419,1440.000000,178,0,579.520000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1397,1440.000000,178,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,178,0,621.280000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1403,1440.000000,178,0,591.040000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1412,1440.000000,178,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1413,1440.000000,179,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1405,1440.000000,179,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1429,1440.000000,179,0,577.920000,baseline,lora,60 -on4,0,0,24,0,0,1407,1440.000000,179,0,581.440000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1390,1440.000000,179,0,584.160000,baseline,lora,60 -on5,0,0,24,0,0,1412,1440.000000,179,0,580.640000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,179,0,634.080000,baseline,lora,60 -on9,0,0,24,0,0,1382,1440.000000,179,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1434,1440.000000,180,0,577.120000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,180,0,626.880000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1429,1440.000000,180,0,595.200000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1348,1440.000000,180,0,592.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1376,1440.000000,180,0,594.560000,baseline,lora,60 -on11,0,0,24,0,0,1398,1440.000000,181,0,582.880000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1427,1440.000000,181,0,580.800000,baseline,lora,60 -on3,0,0,24,0,0,1413,1440.000000,181,0,581.440000,baseline,lora,60 -on8,0,0,24,0,0,1418,1440.000000,181,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1395,1440.000000,181,0,583.360000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1426,1440.000000,181,0,578.400000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,181,0,627.680000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1390,1440.000000,182,0,590.880000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1385,1440.000000,182,0,584.960000,baseline,lora,60 -on6,0,0,24,0,0,1421,1440.000000,182,0,584.960000,baseline,lora,60 -on7,0,0,24,0,0,1411,1440.000000,182,0,580.800000,baseline,lora,60 -on11,0,0,24,0,0,1398,1440.000000,182,0,582.880000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,182,0,654.880000,baseline,lora,60 -on8,0,0,24,0,0,1387,1440.000000,182,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1427,1440.000000,182,0,578.240000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,182,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1407,1440.000000,182,0,581.440000,baseline,lora,60 -on10,0,0,24,0,0,1417,1440.000000,183,0,585.760000,baseline,lora,60 -on1,0,0,24,0,0,1328,1440.000000,183,0,595.840000,baseline,lora,60 -on8,0,0,24,0,0,1401,1440.000000,183,0,582.400000,baseline,lora,60 -on4,0,0,24,0,0,1407,1440.000000,183,0,581.440000,baseline,lora,60 -on3,0,0,24,0,0,1401,1440.000000,183,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,183,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,183,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1421,1440.000000,183,0,585.600000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,183,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,183,0,664.960000,baseline,lora,60 -on5,0,0,24,0,0,1389,1440.000000,183,0,595.200000,baseline,lora,60 -on2,0,0,24,0,0,1323,1440.000000,183,0,603.200000,baseline,lora,60 -on9,0,0,24,0,0,1400,1440.000000,184,0,582.560000,baseline,lora,60 -on8,0,0,24,0,0,1382,1440.000000,184,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1393,1440.000000,184,0,590.880000,baseline,lora,60 -on6,0,0,24,0,0,1413,1440.000000,184,0,580.640000,baseline,lora,60 -on2,0,0,24,0,0,1413,1440.000000,184,0,580.480000,baseline,lora,60 -on5,0,0,24,0,0,1401,1440.000000,184,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,184,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,184,0,653.280000,baseline,lora,60 -on11,0,0,24,0,0,1387,1440.000000,184,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1427,1440.000000,184,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1382,1440.000000,185,0,585.440000,baseline,lora,60 -on2,0,0,24,0,0,1399,1440.000000,185,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,185,0,621.760000,baseline,lora,60 -on4,0,0,24,0,0,1410,1440.000000,185,0,580.960000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1396,1440.000000,185,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1389,1440.000000,185,0,595.200000,baseline,lora,60 -on3,0,0,24,0,0,1415,1440.000000,185,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1414,1440.000000,186,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,186,0,591.200000,baseline,lora,60 -on4,0,0,24,0,0,1400,1440.000000,186,0,604.800000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1417,1440.000000,186,0,595.200000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,187,0,620.000000,baseline,lora,60 -on10,0,0,24,0,0,1434,1440.000000,187,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1393,1440.000000,187,0,583.680000,baseline,lora,60 -on11,0,0,24,0,0,1393,1440.000000,187,0,585.600000,baseline,lora,60 -on2,0,0,24,0,0,1408,1440.000000,187,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1384,1440.000000,187,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1426,1440.000000,187,0,586.560000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1410,1440.000000,188,0,585.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,188,0,647.200000,baseline,lora,60 -on2,0,0,24,0,0,1412,1440.000000,188,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1431,1440.000000,188,0,577.600000,baseline,lora,60 -on3,0,0,24,0,0,1361,1440.000000,188,0,591.840000,baseline,lora,60 -on8,0,0,24,0,0,1426,1440.000000,188,0,578.400000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,188,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1427,1440.000000,188,0,578.400000,baseline,lora,60 -on1,0,0,24,0,0,1398,1440.000000,188,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,188,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1387,1440.000000,189,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1390,1440.000000,189,0,585.600000,baseline,lora,60 -on5,0,0,24,0,0,1382,1440.000000,189,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,189,0,616.960000,baseline,lora,60 -on10,0,0,24,0,0,1409,1440.000000,189,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1434,1440.000000,189,0,577.120000,baseline,lora,60 -on5,0,0,24,0,0,1327,1440.000000,190,0,594.400000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,190,0,636.640000,baseline,lora,60 -on9,0,0,24,0,0,1376,1440.000000,190,0,596.160000,baseline,lora,60 -on11,0,0,24,0,0,1394,1440.000000,190,0,587.360000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1416,1440.000000,190,0,580.000000,baseline,lora,60 -on2,0,0,24,0,0,1381,1440.000000,190,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1391,1440.000000,191,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1385,1440.000000,191,0,584.960000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1388,1440.000000,191,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,191,0,620.480000,baseline,lora,60 -on4,0,0,24,0,0,1387,1440.000000,191,0,595.200000,baseline,lora,60 -on8,0,0,24,0,0,1396,1440.000000,191,0,583.200000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1402,1440.000000,192,0,582.240000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1429,1440.000000,192,0,577.920000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,192,0,624.640000,baseline,lora,60 -on10,0,0,24,0,0,1427,1440.000000,192,0,578.240000,baseline,lora,60 -on1,0,0,24,0,0,1378,1440.000000,192,0,595.200000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1430,1440.000000,192,0,577.760000,baseline,lora,60 -on9,0,0,24,0,0,1434,1440.000000,192,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1400,1440.000000,193,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1416,1440.000000,193,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1395,1440.000000,193,0,583.360000,baseline,lora,60 -on7,0,0,24,0,0,1380,1440.000000,193,0,592.160000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,193,0,630.880000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1387,1440.000000,193,0,591.200000,baseline,lora,60 -on2,0,0,24,0,0,1411,1440.000000,193,0,587.840000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1433,1440.000000,193,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1405,1440.000000,194,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,194,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1426,1440.000000,194,0,578.560000,baseline,lora,60 -on1,0,0,24,0,0,1415,1440.000000,194,0,580.160000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,194,0,629.760000,baseline,lora,60 -on6,0,0,24,0,0,1420,1440.000000,194,0,579.360000,baseline,lora,60 -on4,0,0,24,0,0,1437,1440.000000,194,0,576.640000,baseline,lora,60 -on5,0,0,24,0,0,1400,1440.000000,194,0,582.560000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1394,1440.000000,194,0,585.600000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,baseline,lora,60 -on2,0,0,23,0,0,1438,1438.000000,194,0,575.200000,baseline,lora,60 -on6,0,0,24,0,0,1425,1440.000000,195,0,578.560000,baseline,lora,60 -on8,0,0,24,0,0,1416,1440.000000,195,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1308,1440.000000,195,0,597.600000,baseline,lora,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1399,1440.000000,195,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1410,1440.000000,195,0,580.960000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,195,0,635.040000,baseline,lora,60 -on7,0,0,24,0,0,1439,1440.000000,195,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1429,1440.000000,196,0,585.600000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1435,1440.000000,196,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1428,1440.000000,196,0,583.680000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,196,0,602.080000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1312,1440.000000,196,0,612.320000,baseline,lora,60 -on3,0,0,24,0,0,1437,1440.000000,197,0,576.640000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,197,0,635.680000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,197,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,197,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,197,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1428,1440.000000,197,0,585.600000,baseline,lora,60 -on10,0,0,24,0,0,1431,1440.000000,197,0,577.600000,baseline,lora,60 -on11,0,0,24,0,0,1421,1440.000000,197,0,585.920000,baseline,lora,60 -on6,0,0,24,0,0,1387,1440.000000,197,0,584.800000,baseline,lora,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,baseline,lora,60 -on9,0,0,24,0,0,1340,1440.000000,197,0,601.600000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,198,0,606.720000,baseline,lora,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1402,1440.000000,198,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1397,1440.000000,198,0,583.040000,baseline,lora,60 -on6,0,0,24,0,0,1408,1440.000000,198,0,585.600000,baseline,lora,60 -on9,0,0,24,0,0,1433,1440.000000,198,0,577.280000,baseline,lora,60 -on11,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,lora,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,lora,60 -on5,0,0,24,0,0,1421,1440.000000,199,0,579.200000,baseline,lora,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,lora,60 -on8,0,0,24,0,0,1393,1440.000000,199,0,583.680000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,199,0,624.480000,baseline,lora,60 -on4,0,0,24,0,0,1336,1440.000000,199,0,595.200000,baseline,lora,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,lora,60 -on1,0,0,24,0,0,1431,1440.000000,199,0,577.600000,baseline,lora,60 -on2,0,0,24,0,0,1424,1440.000000,199,0,585.600000,baseline,lora,60 -on7,0,0,24,0,0,1429,1440.000000,199,0,585.280000,baseline,lora,60 -on3,0,0,24,0,0,1386,1440.000000,200,0,584.800000,baseline,lora,60 -on10,0,0,24,0,0,1386,1440.000000,200,0,585.600000,baseline,lora,60 -on11,0,0,24,0,0,1436,1440.000000,200,0,585.600000,baseline,lora,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,lora,60 -on0,1,0,24,0,0,0,1440.000000,200,0,621.280000,baseline,lora,60 -on5,0,0,24,0,0,1414,1440.000000,200,0,585.600000,baseline,lora,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,lora,60 -on2,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,lora,60 -on7,0,0,24,0,0,1374,1440.000000,200,0,593.920000,baseline,lora,60 -on9,0,0,24,0,0,1390,1440.000000,200,0,584.160000,baseline,lora,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,lora,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,lora,60 -on6,0,0,24,0,0,1428,1440.000000,1,0,578.080000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1420,1440.000000,1,0,579.360000,hint,lora,60 -on8,0,0,24,0,0,1392,1440.000000,1,0,592.160000,hint,lora,60 -on2,0,0,24,0,0,1384,1440.000000,1,0,585.120000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1431,1440.000000,1,0,577.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1377,1493.000000,1,1,627.872000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,1,0,641.440000,hint,lora,60 -on10,0,0,24,0,0,1411,1440.000000,2,0,580.800000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1386,1500.000000,2,1,613.695795,hint,lora,60 -on7,0,0,24,0,0,1414,1440.000000,2,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1412,1440.000000,2,0,580.640000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,2,0,659.360000,hint,lora,60 -on6,0,0,24,0,0,1412,1440.000000,2,0,580.640000,hint,lora,60 -on2,0,0,27,0,0,1477,1620.300000,2,3,663.688205,hint,lora,60 -on9,0,0,24,0,0,1348,1440.000000,2,0,602.560000,hint,lora,60 -on5,0,0,26,0,0,1451,1560.000000,2,2,636.688000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,3,0,641.280000,hint,lora,60 -on4,0,0,25,0,0,1313,1500.000000,3,1,636.960000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1392,1440.000000,3,0,595.200000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1373,1440.000000,3,0,587.200000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1397,1440.000000,3,0,583.040000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1402,1440.000000,4,0,582.240000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,4,0,625.920000,hint,lora,60 -on2,0,0,24,0,0,1420,1440.000000,4,0,581.120000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,4,0,576.160000,hint,lora,60 -on3,0,0,24,0,0,1381,1440.000000,4,0,585.760000,hint,lora,60 -on11,0,0,25,0,0,1393,1500.200000,4,1,610.800000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1436,1440.000000,4,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1433,1440.000000,5,0,577.280000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,5,0,623.680000,hint,lora,60 -on5,0,0,24,0,0,1419,1440.000000,5,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1404,1440.000000,5,0,581.920000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1428,1440.000000,5,0,578.080000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1370,1440.000000,5,0,591.360000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1438,1440.000000,6,0,576.480000,hint,lora,60 -on7,0,0,24,0,0,1399,1440.000000,6,0,582.720000,hint,lora,60 -on9,0,0,25,0,0,1395,1500.000000,6,1,617.072000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,6,0,622.080000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1402,1440.000000,6,0,582.240000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1393,1440.000000,6,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,7,0,600.800000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1403,1440.000000,7,0,591.520000,hint,lora,60 -on8,0,0,25,0,0,1377,1500.000000,7,1,614.880000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,8,0,619.200000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1403,1440.000000,8,0,595.200000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1388,1500.000000,8,1,617.760000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1420,1440.000000,8,0,579.360000,hint,lora,60 -on4,0,0,24,0,0,1407,1440.000000,8,0,581.440000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1365,1440.000000,9,0,588.480000,hint,lora,60 -on6,0,0,27,0,0,1460,1620.001280,9,3,661.920717,hint,lora,60 -on2,0,0,25,0,0,1478,1500.000000,9,1,600.000000,hint,lora,60 -on7,0,0,25,0,0,1385,1500.200000,9,1,615.168000,hint,lora,60 -on9,0,0,24,0,0,1418,1440.000000,9,0,579.680000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,9,0,674.880000,hint,lora,60 -on10,0,0,24,0,0,1428,1440.000000,9,0,585.600000,hint,lora,60 -on1,0,0,25,0,0,1445,1500.201280,9,1,607.648512,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,9,0,576.000000,hint,lora,60 -on5,0,0,25,0,0,1352,1500.000000,9,1,624.432000,hint,lora,60 -on3,0,0,26,0,0,1389,1560.000000,9,2,640.895795,hint,lora,60 -on8,0,0,24,0,0,1401,1440.000000,9,0,582.400000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1414,1440.000000,10,0,580.320000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,10,0,645.760000,hint,lora,60 -on4,0,0,24,0,0,1405,1440.000000,10,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1418,1440.000000,10,0,579.680000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1369,1440.000000,10,0,590.880000,hint,lora,60 -on3,0,0,24,0,0,1405,1440.000000,10,0,581.760000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1378,1440.000000,10,0,586.240000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1385,1500.000000,11,1,612.800000,hint,lora,60 -on11,0,0,24,0,0,1419,1440.000000,11,0,579.520000,hint,lora,60 -on6,0,0,24,0,0,1438,1440.000000,11,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1407,1440.000000,11,0,581.440000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,11,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1435,1440.000000,11,0,576.960000,hint,lora,60 -on1,0,0,24,0,0,1368,1440.000000,11,0,587.840000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,11,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1415,1500.000000,11,1,611.520000,hint,lora,60 -on7,0,0,24,0,0,1388,1440.000000,11,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,11,0,672.320000,hint,lora,60 -on4,0,0,24,0,0,1344,1440.000000,11,0,593.440000,hint,lora,60 -on3,0,0,25,0,0,1407,1500.000000,12,1,612.800000,hint,lora,60 -on10,0,0,24,0,0,1387,1440.000000,12,0,584.640000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1422,1440.000000,12,0,579.040000,hint,lora,60 -on9,0,0,24,0,0,1438,1440.000000,12,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1343,1440.000000,12,0,595.200000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1404,1440.000000,12,0,582.080000,hint,lora,60 -on8,0,0,25,0,0,1347,1500.200000,12,1,620.880000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,12,0,662.240000,hint,lora,60 -on7,0,0,26,0,0,1375,1560.000000,13,2,648.960000,hint,lora,60 -on3,0,0,24,0,0,1414,1440.000000,13,0,580.320000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1418,1494.000000,13,1,616.320000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1377,1500.200000,13,1,619.488000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,13,0,656.960000,hint,lora,60 -on1,0,0,24,0,0,1363,1440.000000,13,0,588.640000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1426,1440.000000,14,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,14,0,643.200000,hint,lora,60 -on3,0,0,25,0,0,1377,1500.000000,14,1,614.880000,hint,lora,60 -on1,0,0,24,0,0,1412,1440.000000,14,0,580.640000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,14,0,576.160000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1372,1440.000000,14,0,592.960000,hint,lora,60 -on10,0,0,24,0,0,1393,1440.000000,14,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1424,1440.000000,14,0,578.720000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1384,1440.000000,15,0,585.120000,hint,lora,60 -on5,0,0,24,0,0,1389,1440.000000,15,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1410,1440.000000,15,0,580.960000,hint,lora,60 -on11,0,0,24,0,0,1381,1440.000000,15,0,595.200000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,15,0,665.440000,hint,lora,60 -on8,0,0,25,0,0,1395,1500.000000,15,1,620.000000,hint,lora,60 -on2,0,0,24,0,0,1384,1440.000000,15,0,585.120000,hint,lora,60 -on10,0,0,24,0,0,1400,1440.000000,15,0,582.720000,hint,lora,60 -on7,0,0,24,0,0,1367,1440.000000,16,0,591.200000,hint,lora,60 -on3,0,0,25,0,0,1359,1500.000000,16,1,620.480000,hint,lora,60 -on8,0,0,24,0,0,1423,1440.000000,16,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,16,0,632.960000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1409,1440.000000,16,0,581.120000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1384,1440.000000,16,0,585.120000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,17,0,621.600000,hint,lora,60 -on6,0,0,24,0,0,1437,1440.000000,17,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1413,1440.000000,17,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1383,1440.000000,17,0,585.280000,hint,lora,60 -on2,0,0,23,0,0,1430,1430.000000,17,0,572.000000,hint,lora,60 -on10,0,0,24,0,0,1424,1440.000000,17,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1324,1463.300000,17,1,616.248000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1431,1440.000000,17,0,577.600000,hint,lora,60 -on9,0,0,25,0,0,1434,1500.000000,17,1,609.600000,hint,lora,60 -on3,0,0,24,0,0,1420,1440.000000,18,0,579.360000,hint,lora,60 -on5,0,0,25,0,0,1358,1500.200000,18,1,621.520000,hint,lora,60 -on8,0,0,24,0,0,1382,1440.000000,18,0,585.440000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1330,1440.000000,18,0,594.080000,hint,lora,60 -on2,0,0,24,0,0,1391,1440.000000,18,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,18,0,679.200000,hint,lora,60 -on6,0,0,24,0,0,1338,1440.000000,18,0,593.440000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1427,1440.000000,18,0,578.240000,hint,lora,60 -on7,0,0,24,0,0,1434,1440.000000,19,0,577.120000,hint,lora,60 -on3,0,0,24,0,0,1437,1440.000000,19,0,576.640000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1425,1440.000000,19,0,586.080000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,19,0,624.320000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1396,1440.000000,19,0,583.200000,hint,lora,60 -on2,0,0,24,0,0,1393,1440.000000,19,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,20,0,635.520000,hint,lora,60 -on2,0,0,24,0,0,1382,1440.000000,20,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1396,1440.000000,20,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1404,1440.000000,20,0,587.200000,hint,lora,60 -on4,0,0,24,0,0,1416,1440.000000,20,0,580.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1397,1440.000000,20,0,583.200000,hint,lora,60 -on3,0,0,24,0,0,1405,1440.000000,21,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,21,0,635.840000,hint,lora,60 -on7,0,0,24,0,0,1401,1440.000000,21,0,582.400000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1417,1440.000000,21,0,579.840000,hint,lora,60 -on2,0,0,25,0,0,1396,1500.000000,21,1,615.680000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1414,1440.000000,21,0,580.480000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1416,1440.000000,22,0,580.000000,hint,lora,60 -on4,0,0,24,0,0,1388,1440.000000,22,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1405,1440.000000,22,0,581.760000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,22,0,615.360000,hint,lora,60 -on9,0,0,24,0,0,1428,1440.000000,22,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1434,1440.000000,22,0,577.120000,hint,lora,60 -on9,0,0,25,0,0,1463,1500.000000,23,1,602.560000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1392,1440.000000,23,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1436,1440.000000,23,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1365,1440.000000,23,0,595.200000,hint,lora,60 -on11,0,0,25,0,0,1382,1500.000000,23,1,622.352000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,23,0,644.320000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1396,1440.000000,23,0,583.200000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1400,1440.000000,23,0,585.600000,hint,lora,60 -on5,0,0,25,0,0,1389,1500.400000,23,1,613.808000,hint,lora,60 -on2,0,0,24,0,0,1400,1440.000000,24,0,582.560000,hint,lora,60 -on10,0,0,25,0,0,1392,1500.000000,24,1,612.640000,hint,lora,60 -on6,0,0,24,0,0,1400,1440.000000,24,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1358,1440.000000,24,0,591.520000,hint,lora,60 -on8,0,0,24,0,0,1391,1440.000000,24,0,584.000000,hint,lora,60 -on5,0,0,25,0,0,1385,1500.200000,24,1,613.568000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,24,0,647.680000,hint,lora,60 -on7,0,0,25,0,0,1424,1500.000000,24,1,608.800000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1381,1440.000000,25,0,585.760000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1436,1440.000000,25,0,576.800000,hint,lora,60 -on11,0,0,24,0,0,1432,1440.000000,25,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,25,0,629.760000,hint,lora,60 -on5,0,0,24,0,0,1286,1461.000000,25,1,623.440000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1363,1500.000000,26,1,621.120000,hint,lora,60 -on7,0,0,24,0,0,1431,1440.000000,26,0,577.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,26,0,679.520000,hint,lora,60 -on10,0,0,24,0,0,1427,1440.000000,26,0,578.240000,hint,lora,60 -on6,0,0,25,0,0,1393,1500.000000,26,1,611.360000,hint,lora,60 -on8,0,0,24,0,0,1400,1440.000000,26,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1409,1440.000000,26,0,586.400000,hint,lora,60 -on1,0,0,24,0,0,1392,1440.000000,26,0,583.840000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1397,1440.000000,26,0,583.200000,hint,lora,60 -on1,0,0,25,0,0,1463,1500.000000,27,1,610.719795,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,27,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1383,1440.000000,27,0,585.440000,hint,lora,60 -on2,0,0,25,0,0,1294,1500.000000,27,1,628.000000,hint,lora,60 -on10,0,0,24,0,0,1368,1440.000000,27,0,587.840000,hint,lora,60 -on4,0,0,24,0,0,1331,1440.000000,27,0,593.760000,hint,lora,60 -on6,0,0,24,0,0,1411,1440.000000,27,0,580.800000,hint,lora,60 -on5,0,0,28,0,0,1495,1680.201280,27,4,688.032717,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,27,0,709.600000,hint,lora,60 -on3,0,0,24,0,0,1383,1440.000000,27,0,585.280000,hint,lora,60 -on9,0,0,24,0,0,1420,1440.000000,27,0,588.480000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,27,0,576.000000,hint,lora,60 -on1,0,0,27,0,0,1376,1620.300000,28,3,684.024000,hint,lora,60 -on8,0,0,25,0,0,1396,1500.200000,28,1,614.480000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1479,1500.000000,28,1,600.208000,hint,lora,60 -on9,0,0,24,0,0,1415,1440.000000,28,0,580.160000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,28,0,653.600000,hint,lora,60 -on10,0,0,24,0,0,1436,1440.000000,28,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1394,1440.000000,28,0,583.680000,hint,lora,60 -on11,0,0,24,0,0,1415,1440.000000,29,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1388,1440.000000,29,0,584.480000,hint,lora,60 -on8,0,0,24,0,0,1438,1440.000000,29,0,576.480000,hint,lora,60 -on7,0,0,24,0,0,1433,1440.000000,29,0,577.280000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1430,1440.000000,29,0,577.759795,hint,lora,60 -on5,0,0,25,0,0,1287,1500.000000,29,2,632.480205,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,29,0,635.680000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1437,1440.000000,30,0,576.640000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,30,0,611.840000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1366,1440.000000,30,0,590.240000,hint,lora,60 -on5,0,0,24,0,0,1384,1440.000000,30,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1443,1500.200000,31,1,609.840000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,31,0,637.600000,hint,lora,60 -on10,0,0,24,0,0,1435,1440.000000,31,0,576.960000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hint,lora,60 -on5,0,0,26,0,0,1501,1560.401280,31,2,624.368512,hint,lora,60 -on8,0,0,24,0,0,1404,1440.000000,31,0,581.920000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hint,lora,60 -on2,0,0,26,0,0,1443,1560.201280,31,2,643.488717,hint,lora,60 -on6,0,0,25,0,0,1397,1500.200000,31,1,615.759795,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1366,1500.000000,31,1,618.352000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1414,1440.000000,32,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1414,1440.000000,32,0,580.320000,hint,lora,60 -on5,0,0,24,0,0,1423,1440.000000,32,0,578.880000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1429,1440.000000,32,0,577.920000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1410,1440.000000,32,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,32,0,623.360000,hint,lora,60 -on6,0,0,24,0,0,1416,1440.000000,32,0,585.760000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1400,1500.000000,33,1,609.600000,hint,lora,60 -on7,0,0,25,0,0,1389,1500.200000,33,1,624.768000,hint,lora,60 -on5,0,0,24,0,0,1413,1440.000000,33,0,580.480000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1394,1440.000000,33,0,583.520000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1402,1440.000000,33,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,33,0,627.200000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1416,1440.000000,34,0,580.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,34,0,616.960000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1396,1500.000000,34,1,615.680000,hint,lora,60 -on8,0,0,24,0,0,1414,1440.000000,34,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1427,1440.000000,34,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1384,1440.000000,34,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1411,1440.000000,35,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,lora,60 -on8,0,0,26,0,0,1371,1560.200000,35,2,645.728000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1401,1500.200000,35,1,612.720000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1398,1440.000000,35,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1385,1440.000000,35,0,584.960000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,35,0,631.360000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,36,0,672.320000,hint,lora,60 -on11,0,0,24,0,0,1389,1440.000000,36,0,584.480000,hint,lora,60 -on1,0,0,24,0,0,1385,1440.000000,36,0,584.960000,hint,lora,60 -on9,0,0,24,0,0,1427,1440.000000,36,0,578.240000,hint,lora,60 -on4,0,0,24,0,0,1387,1440.000000,36,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1391,1440.000000,36,0,584.000000,hint,lora,60 -on2,0,0,26,0,0,1402,1560.000000,36,2,646.992000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,lora,60 -on6,0,0,25,0,0,1323,1500.000000,36,1,623.360000,hint,lora,60 -on6,0,0,25,0,0,1393,1500.200000,37,1,610.800000,hint,lora,60 -on7,0,0,24,0,0,1430,1440.000000,37,0,585.600000,hint,lora,60 -on8,0,0,25,0,0,1369,1500.000000,37,1,616.960000,hint,lora,60 -on2,0,0,24,0,0,1431,1440.000000,37,0,577.600000,hint,lora,60 -on10,0,0,24,0,0,1395,1440.000000,37,0,592.800000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,37,0,672.960000,hint,lora,60 -on5,0,0,24,0,0,1426,1440.000000,37,0,583.360000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1333,1440.000000,37,0,604.480000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1366,1500.000000,37,1,624.480000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1428,1440.000000,38,0,578.080000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1385,1440.000000,38,0,585.280000,hint,lora,60 -on9,0,0,24,0,0,1414,1440.000000,38,0,580.320000,hint,lora,60 -on6,0,0,25,0,0,1417,1500.000000,38,1,610.032000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1397,1440.000000,38,0,592.160000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,38,0,643.840000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1404,1440.000000,39,0,581.920000,hint,lora,60 -on4,0,0,24,0,0,1360,1440.000000,39,0,589.120000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,39,0,633.600000,hint,lora,60 -on5,0,0,23,0,0,1418,1438.000000,39,0,585.280000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1400,1440.000000,39,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1388,1440.000000,39,0,584.640000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1401,1440.000000,40,0,582.400000,hint,lora,60 -on7,0,0,24,0,0,1429,1440.000000,40,0,577.920000,hint,lora,60 -on10,0,0,25,0,0,1333,1519.000000,40,2,633.120000,hint,lora,60 -on11,0,0,24,0,0,1393,1440.000000,40,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1405,1440.000000,40,0,581.760000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,40,0,643.808000,hint,lora,60 -on1,0,0,24,0,0,1408,1440.000000,40,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1418,1440.000000,40,0,579.680000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1347,1440.000000,41,0,597.440000,hint,lora,60 -on9,0,0,24,0,0,1428,1440.000000,41,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,41,0,615.360000,hint,lora,60 -on4,0,0,24,0,0,1410,1440.000000,41,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1406,1440.000000,41,0,581.600000,hint,lora,60 -on6,0,0,25,0,0,1359,1500.000000,42,1,617.760000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,42,0,660.640000,hint,lora,60 -on11,0,0,24,0,0,1406,1440.000000,42,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1466,1500.000000,42,1,600.000000,hint,lora,60 -on9,0,0,25,0,0,1287,1501.000000,42,2,630.960000,hint,lora,60 -on2,0,0,25,0,0,1341,1500.000000,42,1,622.512000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1383,1440.000000,43,0,585.280000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,lora,60 -on2,0,0,26,0,0,1395,1560.000000,43,2,643.952000,hint,lora,60 -on7,0,0,24,0,0,1419,1440.000000,43,0,579.520000,hint,lora,60 -on6,0,0,24,0,0,1409,1440.000000,43,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1386,1440.000000,43,0,584.800000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1433,1440.000000,43,0,577.280000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,43,0,648.160000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,44,0,642.080000,hint,lora,60 -on10,0,0,24,0,0,1343,1440.000000,44,0,604.800000,hint,lora,60 -on2,0,0,24,0,0,1406,1440.000000,44,0,587.840000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1391,1440.000000,44,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1419,1440.000000,44,0,579.520000,hint,lora,60 -on9,0,0,24,0,0,1384,1440.000000,44,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1431,1440.000000,44,0,586.720000,hint,lora,60 -on4,0,0,24,0,0,1397,1440.000000,45,0,583.040000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,45,0,700.800000,hint,lora,60 -on2,0,0,24,0,0,1346,1440.000000,45,0,595.200000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1311,1500.000000,45,1,635.632000,hint,lora,60 -on9,0,0,25,0,0,1431,1500.000000,45,1,607.680000,hint,lora,60 -on8,0,0,26,0,0,1431,1560.200000,45,2,640.560000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1426,1440.000000,45,0,578.400000,hint,lora,60 -on3,0,0,25,0,0,1387,1500.000000,45,1,618.672000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,46,0,669.280000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1349,1440.000000,46,0,590.880000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1444,1500.200000,46,1,603.808000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1425,1500.000000,46,1,609.920000,hint,lora,60 -on3,0,0,24,0,0,1358,1440.000000,46,0,589.440000,hint,lora,60 -on9,0,0,24,0,0,1398,1440.000000,46,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1349,1440.000000,46,0,590.880000,hint,lora,60 -on7,0,0,25,0,0,1419,1500.000000,46,1,612.160000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1418,1500.000000,47,1,610.080000,hint,lora,60 -on5,0,0,24,0,0,1423,1440.000000,47,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1392,1440.000000,47,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,47,0,632.320000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1430,1440.000000,47,0,577.760000,hint,lora,60 -on10,0,0,25,0,0,1393,1500.000000,47,1,617.552000,hint,lora,60 -on7,0,0,24,0,0,1403,1440.000000,47,0,582.080000,hint,lora,60 -on2,0,0,24,0,0,1426,1440.000000,48,0,578.400000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,48,0,612.320000,hint,lora,60 -on6,0,0,24,0,0,1421,1440.000000,48,0,579.200000,hint,lora,60 -on4,0,0,24,0,0,1394,1440.000000,48,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1389,1440.000000,48,0,584.320000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1398,1440.000000,49,0,582.880000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1482,1500.000000,49,1,600.000000,hint,lora,60 -on1,0,0,24,0,0,1407,1440.000000,49,0,581.440000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,49,0,637.280000,hint,lora,60 -on5,0,0,24,0,0,1384,1440.000000,49,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1407,1500.000000,49,1,612.960000,hint,lora,60 -on9,0,0,24,0,0,1377,1440.000000,49,0,586.400000,hint,lora,60 -on2,0,0,24,0,0,1435,1440.000000,49,0,585.600000,hint,lora,60 -on4,0,0,25,0,0,1444,1500.000000,50,1,603.408000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,50,0,671.520000,hint,lora,60 -on2,0,0,27,0,0,1400,1620.398720,50,3,674.927693,hint,lora,60 -on3,0,0,24,0,0,1383,1440.000000,50,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1386,1440.000000,50,0,584.800000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1440,1500.000000,50,1,610.399795,hint,lora,60 -on9,0,0,25,0,0,1405,1500.000000,50,1,612.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1414,1440.000000,50,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1367,1440.000000,50,0,588.640000,hint,lora,60 -on7,0,0,25,0,0,1393,1500.200000,51,1,616.400000,hint,lora,60 -on4,0,0,25,0,0,1378,1500.000000,51,1,621.872000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,51,0,648.000000,hint,lora,60 -on6,0,0,24,0,0,1438,1440.000000,51,0,576.480000,hint,lora,60 -on9,0,0,24,0,0,1429,1440.000000,51,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1416,1440.000000,51,0,580.000000,hint,lora,60 -on11,0,0,24,0,0,1382,1440.000000,51,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1475,1500.000000,51,1,600.960000,hint,lora,60 -on8,0,0,25,0,0,1332,1500.000000,52,1,627.360000,hint,lora,60 -on9,0,0,25,0,0,1402,1500.000000,52,1,614.240000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1341,1440.000000,52,0,596.320000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,52,0,680.320000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1421,1440.000000,52,0,579.200000,hint,lora,60 -on11,0,0,24,0,0,1438,1440.000000,52,0,576.480000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1348,1440.000000,52,0,591.040000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1408,1440.000000,53,0,590.400000,hint,lora,60 -on11,0,0,25,0,0,1388,1500.000000,53,1,617.760000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1400,1440.000000,53,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1405,1440.000000,53,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1429,1440.000000,53,0,577.920000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,53,0,635.520000,hint,lora,60 -on1,0,0,24,0,0,1404,1440.000000,53,0,581.920000,hint,lora,60 -on6,0,0,24,0,0,1415,1440.000000,54,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1418,1440.000000,54,0,579.680000,hint,lora,60 -on3,0,0,25,0,0,1333,1500.000000,54,1,622.880000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1387,1500.000000,54,1,618.080000,hint,lora,60 -on9,0,0,24,0,0,1434,1440.000000,54,0,577.120000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,54,0,642.400000,hint,lora,60 -on1,0,0,24,0,0,1398,1440.000000,54,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1375,1440.000000,55,0,595.200000,hint,lora,60 -on11,0,0,24,0,0,1437,1440.000000,55,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1413,1440.000000,55,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1422,1440.000000,55,0,579.040000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1381,1440.000000,55,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,55,0,611.040000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1410,1440.000000,56,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,56,0,580.960000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1416,1500.200000,57,1,609.776000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,57,0,626.720000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1406,1440.000000,57,0,581.600000,hint,lora,60 -on7,0,0,24,0,0,1406,1440.000000,57,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1478,1500.000000,57,1,600.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1411,1440.000000,57,0,580.800000,hint,lora,60 -on2,0,0,25,0,0,1419,1500.000000,57,1,609.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1410,1440.000000,58,0,580.960000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1337,1440.000000,58,0,593.760000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1393,1440.000000,58,0,587.680000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,58,0,648.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1429,1440.000000,58,0,577.920000,hint,lora,60 -on6,0,0,24,0,0,1380,1440.000000,58,0,585.920000,hint,lora,60 -on8,0,0,24,0,0,1402,1440.000000,59,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1414,1440.000000,59,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1429,1440.000000,59,0,577.920000,hint,lora,60 -on10,0,0,24,0,0,1389,1440.000000,59,0,595.200000,hint,lora,60 -on4,0,0,25,0,0,1485,1500.000000,59,1,600.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,59,0,634.400000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1383,1440.000000,59,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1398,1440.000000,59,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hint,lora,60 -on6,0,0,25,0,0,1404,1500.200000,59,1,613.840000,hint,lora,60 -on1,0,0,25,0,0,1349,1500.000000,60,1,625.120000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1439,1440.000000,60,0,576.320000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1291,1500.000000,60,1,632.800000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1426,1440.000000,60,0,578.400000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,60,0,637.440000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,lora,60 -on6,0,0,25,0,0,1463,1500.000000,61,1,600.640000,hint,lora,60 -on1,0,0,25,0,0,1397,1500.000000,61,1,616.752000,hint,lora,60 -on10,0,0,24,0,0,1389,1440.000000,61,0,584.320000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1406,1500.000000,61,1,613.120000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1302,1500.000000,61,1,644.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,61,0,671.360000,hint,lora,60 -on2,0,0,25,0,0,1412,1500.200000,61,1,614.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1432,1440.000000,62,0,577.440000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1345,1440.000000,62,0,591.520000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,62,0,614.400000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1396,1440.000000,62,0,583.200000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1408,1440.000000,63,0,581.280000,hint,lora,60 -on7,0,0,25,0,0,1422,1500.200000,63,1,609.680000,hint,lora,60 -on8,0,0,25,0,0,1343,1500.000000,63,1,622.192000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,63,0,675.200000,hint,lora,60 -on6,0,0,24,0,0,1426,1440.000000,63,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1417,1440.000000,63,0,585.600000,hint,lora,60 -on4,0,0,25,0,0,1354,1500.000000,63,1,622.880000,hint,lora,60 -on1,0,0,25,0,0,1465,1500.200000,63,1,602.480000,hint,lora,60 -on9,0,0,25,0,0,1396,1500.000000,63,1,615.680000,hint,lora,60 -on5,0,0,24,0,0,1419,1440.000000,63,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,64,0,627.040000,hint,lora,60 -on8,0,0,24,0,0,1383,1440.000000,64,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1478,1500.001280,64,1,600.512512,hint,lora,60 -on4,0,0,25,0,0,1424,1500.198720,64,1,619.535693,hint,lora,60 -on9,0,0,24,0,0,1405,1440.000000,64,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1384,1440.000000,64,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1350,1440.000000,64,0,594.720000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1410,1440.000000,65,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1401,1440.000000,65,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1384,1440.000000,65,0,585.120000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,65,0,630.560000,hint,lora,60 -on11,0,0,24,0,0,1383,1440.000000,65,0,588.640000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1379,1440.000000,65,0,590.080000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1426,1440.000000,65,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1414,1440.000000,66,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1424,1440.000000,66,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1382,1440.000000,66,0,585.440000,hint,lora,60 -on5,0,0,24,0,0,1386,1440.000000,66,0,584.800000,hint,lora,60 -on3,0,0,24,0,0,1436,1440.000000,66,0,576.800000,hint,lora,60 -on4,0,0,25,0,0,1351,1500.200000,66,1,618.368000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,66,0,644.320000,hint,lora,60 -on8,0,0,24,0,0,1406,1440.000000,66,0,581.600000,hint,lora,60 -on9,0,0,25,0,0,1478,1500.000000,66,1,600.000000,hint,lora,60 -on6,0,0,24,0,0,1418,1440.000000,66,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1394,1440.000000,67,0,583.520000,hint,lora,60 -on3,0,0,24,0,0,1424,1440.000000,67,0,578.720000,hint,lora,60 -on5,0,0,25,0,0,1425,1500.000000,67,1,611.840000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,67,0,649.280000,hint,lora,60 -on6,0,0,24,0,0,1404,1440.000000,67,0,585.600000,hint,lora,60 -on1,0,0,25,0,0,1374,1500.000000,67,1,616.480000,hint,lora,60 -on4,0,0,24,0,0,1397,1440.000000,67,0,583.040000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1395,1440.000000,67,0,592.960000,hint,lora,60 -on2,0,0,24,0,0,1428,1440.000000,67,0,578.080000,hint,lora,60 -on7,0,0,24,0,0,1370,1440.000000,68,0,589.920000,hint,lora,60 -on9,0,0,24,0,0,1401,1440.000000,68,0,582.400000,hint,lora,60 -on10,0,0,24,0,0,1411,1440.000000,68,0,580.800000,hint,lora,60 -on1,0,0,24,0,0,1410,1440.000000,68,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,lora,60 -on3,0,0,26,0,0,1380,1560.000000,68,2,646.192000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,68,0,663.520000,hint,lora,60 -on11,0,0,24,0,0,1361,1440.000000,68,0,600.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1401,1440.000000,68,0,582.400000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1400,1440.000000,69,0,582.560000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,69,0,610.880000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on1,0,0,26,0,0,1394,1560.000000,69,2,642.672000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1432,1440.000000,69,0,577.440000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1369,1500.000000,70,1,616.960000,hint,lora,60 -on9,0,0,24,0,0,1391,1440.000000,70,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1411,1440.000000,70,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1417,1440.000000,70,0,579.840000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,70,0,634.560000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1388,1440.000000,70,0,584.480000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1416,1440.000000,70,0,580.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1365,1500.200000,71,1,618.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1440,1500.000000,71,1,609.600000,hint,lora,60 -on5,0,0,25,0,0,1396,1500.000000,71,1,615.680000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1396,1500.000000,71,1,610.080000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,71,0,656.320000,hint,lora,60 -on3,0,0,26,0,0,1374,1560.700000,71,2,652.120000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1489,1500.200000,71,1,600.288000,hint,lora,60 -on8,0,0,24,0,0,1346,1440.000000,72,0,591.360000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1349,1440.000000,72,0,594.880000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1339,1440.000000,72,0,596.640000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,72,0,635.200000,hint,lora,60 -on6,0,0,24,0,0,1420,1440.000000,73,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1413,1440.000000,73,0,586.560000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,lora,60 -on5,0,0,26,0,0,1304,1560.000000,73,2,658.560000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,73,0,630.880000,hint,lora,60 -on9,0,0,24,0,0,1414,1440.000000,73,0,580.320000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1401,1440.000000,74,0,582.560000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,74,0,629.280000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,74,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1347,1500.000000,74,1,620.960000,hint,lora,60 -on8,0,0,24,0,0,1400,1440.000000,74,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hint,lora,60 -on7,0,0,26,0,0,1396,1560.000000,75,2,652.592000,hint,lora,60 -on10,0,0,24,0,0,1401,1440.000000,75,0,582.400000,hint,lora,60 -on4,0,0,24,0,0,1377,1440.000000,75,0,589.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,75,0,576.160000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1391,1440.000000,75,0,584.000000,hint,lora,60 -on9,0,0,24,0,0,1424,1440.000000,75,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1375,1500.000000,75,1,614.560000,hint,lora,60 -on11,0,0,24,0,0,1393,1440.000000,75,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,75,0,663.840000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1406,1440.000000,76,0,581.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,76,0,576.160000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1414,1440.000000,76,0,580.320000,hint,lora,60 -on1,0,0,24,0,0,1436,1440.000000,76,0,576.800000,hint,lora,60 -on9,0,0,24,0,0,1377,1440.000000,76,0,586.400000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,76,0,643.200000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1382,1440.000000,76,0,585.440000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1426,1440.000000,77,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1386,1440.000000,77,0,584.800000,hint,lora,60 -on6,0,0,25,0,0,1419,1500.000000,77,1,609.760000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,77,0,607.840000,hint,lora,60 -on7,0,0,25,0,0,1400,1500.200000,77,1,618.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1394,1440.000000,78,0,583.520000,hint,lora,60 -on5,0,0,24,0,0,1418,1440.000000,78,0,579.680000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1425,1440.000000,78,0,578.560000,hint,lora,60 -on11,0,0,25,0,0,1409,1500.000000,78,1,616.640000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,78,0,628.000000,hint,lora,60 -on3,0,0,25,0,0,1390,1500.400000,78,1,614.448000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1325,1500.000000,79,1,621.968000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1384,1440.000000,79,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1385,1440.000000,79,0,584.960000,hint,lora,60 -on1,0,0,24,0,0,1392,1440.000000,79,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1456,1500.200000,79,1,600.080000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,79,0,631.840000,hint,lora,60 -on9,0,0,24,0,0,1332,1440.000000,80,0,599.840000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,80,0,639.840000,hint,lora,60 -on2,0,0,24,0,0,1375,1440.000000,80,0,590.560000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1436,1440.000000,80,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1413,1440.000000,80,0,580.480000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1377,1500.000000,80,1,622.240000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,80,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1411,1440.000000,81,0,580.800000,hint,lora,60 -on8,0,0,25,0,0,1394,1500.200000,81,1,612.928000,hint,lora,60 -on5,0,0,25,0,0,1429,1500.000000,81,1,609.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,lora,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,hint,lora,60 -on9,0,0,25,0,0,1296,1500.000000,81,1,632.800000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,81,0,667.040000,hint,lora,60 -on2,0,0,24,0,0,1412,1440.000000,81,0,580.640000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1407,1440.000000,82,0,581.440000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1383,1440.000000,82,0,588.000000,hint,lora,60 -on4,0,0,25,0,0,1363,1500.200000,82,1,618.480000,hint,lora,60 -on3,0,0,24,0,0,1381,1440.000000,82,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,82,0,639.840000,hint,lora,60 -on2,0,0,24,0,0,1416,1440.000000,82,0,580.000000,hint,lora,60 -on6,0,0,24,0,0,1405,1440.000000,83,0,581.760000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1381,1440.000000,83,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1407,1440.000000,83,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1399,1440.000000,83,0,582.720000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1348,1500.000000,83,1,622.400000,hint,lora,60 -on4,0,0,24,0,0,1428,1440.000000,83,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,83,0,649.280000,hint,lora,60 -on2,0,0,24,0,0,1437,1440.000000,83,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1410,1440.000000,83,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,84,0,576.160000,hint,lora,60 -on2,0,0,24,0,0,1378,1440.000000,84,0,588.800000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1403,1440.000000,84,0,582.080000,hint,lora,60 -on4,0,0,25,0,0,1385,1500.000000,84,1,621.392000,hint,lora,60 -on7,0,0,24,0,0,1414,1440.000000,84,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,84,0,629.280000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1406,1440.000000,85,0,586.240000,hint,lora,60 -on8,0,0,25,0,0,1316,1500.000000,85,1,625.920000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1417,1440.000000,85,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1432,1440.000000,85,0,577.440000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,85,0,627.680000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,86,0,646.880000,hint,lora,60 -on2,0,0,24,0,0,1439,1440.000000,86,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1344,1440.000000,86,0,591.680000,hint,lora,60 -on8,0,0,24,0,0,1432,1440.000000,86,0,577.440000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1420,1440.000000,86,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1429,1440.000000,86,0,577.920000,hint,lora,60 -on5,0,0,24,0,0,1403,1440.000000,86,0,582.080000,hint,lora,60 -on3,0,0,24,0,0,1418,1440.000000,86,0,579.680000,hint,lora,60 -on11,0,0,24,0,0,1389,1440.000000,86,0,584.320000,hint,lora,60 -on10,0,0,24,0,0,1402,1440.000000,87,0,582.240000,hint,lora,60 -on1,0,0,24,0,0,1413,1440.000000,87,0,580.480000,hint,lora,60 -on4,0,0,24,0,0,1398,1440.000000,87,0,582.880000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,87,0,656.480000,hint,lora,60 -on8,0,0,24,0,0,1439,1440.000000,87,0,585.600000,hint,lora,60 -on2,0,0,26,0,0,1447,1560.200000,87,2,633.936205,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,87,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1403,1440.000000,87,0,582.080000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,hint,lora,60 -on6,0,0,26,0,0,1416,1560.000000,87,2,641.439795,hint,lora,60 -on9,0,0,24,0,0,1405,1440.000000,87,0,581.760000,hint,lora,60 -on5,0,0,24,0,0,1402,1440.000000,87,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1384,1440.000000,88,0,589.120000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,88,0,652.960000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1400,1440.000000,88,0,582.560000,hint,lora,60 -on2,0,0,24,0,0,1369,1440.000000,88,0,587.680000,hint,lora,60 -on6,0,0,24,0,0,1438,1440.000000,88,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1292,1500.200000,88,1,632.080000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1393,1440.000000,89,0,595.200000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1405,1440.000000,89,0,581.760000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1345,1500.000000,89,1,631.040000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,89,0,637.600000,hint,lora,60 -on1,0,0,25,0,0,1391,1500.200000,89,1,612.448000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,90,0,576.160000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1385,1440.000000,90,0,584.960000,hint,lora,60 -on4,0,0,24,0,0,1398,1440.000000,90,0,585.600000,hint,lora,60 -on9,0,0,25,0,0,1375,1500.200000,90,1,618.640000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,90,0,625.280000,hint,lora,60 -on8,0,0,25,0,0,1485,1500.000000,90,1,600.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1381,1500.000000,91,1,614.880000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,91,0,629.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1378,1440.000000,91,0,592.640000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1423,1440.000000,91,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1435,1440.000000,91,0,576.960000,hint,lora,60 -on8,0,0,24,0,0,1385,1440.000000,91,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on2,0,0,26,0,0,1396,1560.000000,92,2,642.240000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,92,0,629.120000,hint,lora,60 -on11,0,0,24,0,0,1415,1440.000000,92,0,580.160000,hint,lora,60 -on1,0,0,25,0,0,1351,1500.000000,92,1,618.240000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1405,1440.000000,93,0,581.920000,hint,lora,60 -on7,0,0,26,0,0,1256,1560.200000,93,2,666.960000,hint,lora,60 -on4,0,0,24,0,0,1385,1440.000000,93,0,584.960000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1398,1440.000000,93,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1372,1500.000000,93,1,629.440000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,93,0,679.040000,hint,lora,60 -on8,0,0,24,0,0,1422,1440.000000,93,0,579.040000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1407,1440.000000,94,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1430,1440.000000,94,0,577.760000,hint,lora,60 -on2,0,0,24,0,0,1373,1440.000000,94,0,587.040000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1415,1440.000000,94,0,588.800000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,94,0,619.840000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1407,1440.000000,95,0,581.440000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hint,lora,60 -on5,0,0,25,0,0,1447,1500.200000,95,1,602.848000,hint,lora,60 -on9,0,0,24,0,0,1433,1440.000000,95,0,577.280000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,95,0,665.120000,hint,lora,60 -on4,0,0,24,0,0,1367,1440.000000,95,0,589.920000,hint,lora,60 -on3,0,0,25,0,0,1439,1500.000000,95,1,609.600000,hint,lora,60 -on2,0,0,24,0,0,1407,1440.000000,95,0,585.600000,hint,lora,60 -on8,0,0,25,0,0,1385,1500.200000,95,1,618.480000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1398,1440.000000,95,0,583.040000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1400,1440.000000,96,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1384,1440.000000,96,0,585.120000,hint,lora,60 -on4,0,0,24,0,0,1396,1440.000000,96,0,583.200000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,96,0,576.160000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1397,1440.000000,96,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,96,0,618.400000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1437,1440.000000,97,0,576.640000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1383,1500.000000,97,1,619.040000,hint,lora,60 -on5,0,0,24,0,0,1439,1440.000000,97,0,576.320000,hint,lora,60 -on8,0,0,24,0,0,1389,1440.000000,97,0,585.600000,hint,lora,60 -on2,0,0,25,0,0,1408,1500.000000,97,1,614.992000,hint,lora,60 -on9,0,0,24,0,0,1439,1440.000000,97,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,97,0,651.680000,hint,lora,60 -on7,0,0,24,0,0,1437,1440.000000,97,0,576.640000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1414,1440.000000,97,0,580.320000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1436,1440.000000,98,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1387,1440.000000,98,0,584.640000,hint,lora,60 -on11,0,0,24,0,0,1411,1440.000000,98,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1383,1440.000000,98,0,585.280000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,98,0,621.120000,hint,lora,60 -on1,0,0,24,0,0,1404,1440.000000,98,0,581.920000,hint,lora,60 -on3,0,0,24,0,0,1375,1440.000000,98,0,595.200000,hint,lora,60 -on1,0,0,25,0,0,1412,1508.000000,99,2,617.871795,hint,lora,60 -on8,0,0,26,0,0,1417,1560.001280,99,2,641.968717,hint,lora,60 -on11,0,0,24,0,0,1404,1440.000000,99,0,581.920000,hint,lora,60 -on2,0,0,25,0,0,1377,1500.200000,99,1,615.168000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1394,1440.000000,99,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1404,1440.000000,99,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,99,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1428,1500.000000,99,1,608.160000,hint,lora,60 -on3,0,0,24,0,0,1436,1440.000000,99,0,586.240000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,99,0,670.400000,hint,lora,60 -on9,0,0,24,0,0,1428,1440.000000,99,0,578.080000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1401,1440.000000,100,0,582.400000,hint,lora,60 -on2,0,0,24,0,0,1349,1440.000000,100,0,592.000000,hint,lora,60 -on8,0,0,24,0,0,1364,1440.000000,100,0,594.720000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,100,0,635.840000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1396,1440.000000,100,0,583.200000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1390,1440.000000,100,0,584.160000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,101,0,629.120000,hint,lora,60 -on7,0,0,24,0,0,1423,1440.000000,101,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1416,1440.000000,101,0,588.320000,hint,lora,60 -on9,0,0,25,0,0,1318,1500.000000,101,1,628.960000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1423,1440.000000,101,0,595.200000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1399,1440.000000,102,0,589.760000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1398,1440.000000,102,0,582.880000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,102,0,607.520000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1403,1440.000000,102,0,582.080000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1291,1440.000000,103,0,603.520000,hint,lora,60 -on5,0,0,24,0,0,1403,1440.000000,103,0,582.080000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,103,0,638.240000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1422,1440.000000,103,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1415,1440.000000,103,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1385,1440.000000,103,0,587.680000,hint,lora,60 -on11,0,0,24,0,0,1428,1440.000000,103,0,578.080000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1389,1500.000000,104,1,612.320000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,104,0,659.840000,hint,lora,60 -on8,0,0,24,0,0,1403,1440.000000,104,0,582.080000,hint,lora,60 -on7,0,0,24,0,0,1397,1440.000000,104,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1385,1440.000000,104,0,584.960000,hint,lora,60 -on10,0,0,25,0,0,1401,1500.000000,104,1,616.112000,hint,lora,60 -on2,0,0,24,0,0,1432,1440.000000,104,0,577.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1434,1440.000000,104,0,577.120000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,lora,60 -on6,0,0,25,0,0,1391,1500.000000,105,1,626.560000,hint,lora,60 -on9,0,0,24,0,0,1422,1440.000000,105,0,585.760000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,105,0,617.920000,hint,lora,60 -on10,0,0,24,0,0,1425,1440.000000,105,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1422,1440.000000,105,0,579.040000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1381,1440.000000,106,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1417,1440.000000,106,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1430,1440.000000,106,0,577.760000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1416,1440.000000,106,0,580.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,106,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1407,1440.000000,106,0,581.440000,hint,lora,60 -on10,0,0,24,0,0,1422,1440.000000,106,0,579.040000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,106,0,628.000000,hint,lora,60 -on1,0,0,24,0,0,1414,1440.000000,107,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,107,0,609.120000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1395,1440.000000,107,0,583.360000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1412,1440.000000,107,0,580.640000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1416,1440.000000,107,0,580.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1426,1500.200000,108,1,610.640000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,108,0,615.040000,hint,lora,60 -on10,0,0,24,0,0,1405,1440.000000,108,0,581.760000,hint,lora,60 -on9,0,0,24,0,0,1433,1440.000000,108,0,577.280000,hint,lora,60 -on8,0,0,24,0,0,1384,1440.000000,108,0,594.240000,hint,lora,60 -on7,0,0,24,0,0,1416,1440.000000,109,0,580.000000,hint,lora,60 -on11,0,0,25,0,0,1478,1500.200000,109,1,600.080000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,109,0,614.400000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1388,1440.000000,109,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1406,1440.000000,109,0,581.600000,hint,lora,60 -on3,0,0,25,0,0,1393,1500.400000,109,1,611.088000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,110,0,646.720000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1437,1440.000000,110,0,576.640000,hint,lora,60 -on3,0,0,24,0,0,1408,1440.000000,110,0,581.280000,hint,lora,60 -on10,0,0,26,0,0,1358,1560.000000,110,2,648.320000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1391,1440.000000,110,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1376,1440.000000,110,0,586.560000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,111,0,643.680000,hint,lora,60 -on4,0,0,25,0,0,1430,1500.400000,111,1,607.088000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1413,1440.000000,111,0,588.800000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1399,1440.000000,111,0,582.720000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1413,1440.000000,111,0,580.480000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,lora,60 -on2,0,0,25,0,0,1367,1500.000000,111,1,628.800000,hint,lora,60 -on6,0,0,24,0,0,1387,1440.000000,111,0,584.640000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1398,1440.000000,112,0,582.880000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,112,0,647.520000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1369,1440.000000,112,0,587.680000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1417,1440.000000,112,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1404,1440.000000,112,0,581.920000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1416,1440.000000,112,0,580.000000,hint,lora,60 -on5,0,0,24,0,0,1410,1440.000000,112,0,580.960000,hint,lora,60 -on7,0,0,25,0,0,1408,1500.000000,112,1,619.680000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1376,1440.000000,113,0,595.200000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1409,1440.000000,113,0,595.200000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,113,0,601.440000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1389,1440.000000,113,0,584.320000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1401,1440.000000,114,0,582.400000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1401,1500.000000,114,1,614.240000,hint,lora,60 -on6,0,0,26,0,0,1443,1560.000000,114,2,652.848205,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1401,1440.000000,114,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1385,1440.000000,114,0,584.960000,hint,lora,60 -on1,0,0,25,0,0,1419,1500.400000,114,1,609.807795,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,114,0,643.520000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,115,0,644.480000,hint,lora,60 -on10,0,0,24,0,0,1432,1440.000000,115,0,577.440000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1416,1440.000000,115,0,580.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1422,1500.400000,115,1,609.168000,hint,lora,60 -on6,0,0,25,0,0,1394,1500.000000,115,1,616.480000,hint,lora,60 -on3,0,0,25,0,0,1404,1500.000000,115,1,619.200000,hint,lora,60 -on9,0,0,25,0,0,1413,1500.000000,115,1,608.480000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,lora,60 -on5,0,0,25,0,0,1385,1500.000000,116,1,612.800000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,116,0,627.360000,hint,lora,60 -on2,0,0,24,0,0,1428,1440.000000,116,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1418,1440.000000,116,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1388,1440.000000,116,0,584.480000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1357,1453.000000,116,1,596.880000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1415,1440.000000,116,0,580.160000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1398,1440.000000,117,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1406,1440.000000,117,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,117,0,595.680000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1427,1440.000000,117,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1410,1440.000000,117,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1393,1440.000000,118,0,583.680000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1388,1440.000000,118,0,584.480000,hint,lora,60 -on11,0,0,24,0,0,1405,1440.000000,118,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1333,1440.000000,118,0,593.760000,hint,lora,60 -on7,0,0,24,0,0,1415,1440.000000,118,0,580.160000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,118,0,647.840000,hint,lora,60 -on5,0,0,25,0,0,1363,1500.200000,118,1,618.480000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1399,1440.000000,119,0,582.720000,hint,lora,60 -on8,0,0,25,0,0,1452,1500.300000,119,1,606.152000,hint,lora,60 -on2,0,0,24,0,0,1394,1440.000000,119,0,595.200000,hint,lora,60 -on9,0,0,24,0,0,1388,1440.000000,119,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1338,1440.000000,119,0,600.320000,hint,lora,60 -on6,0,0,24,0,0,1420,1440.000000,119,0,579.360000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,119,0,576.160000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,119,0,663.680000,hint,lora,60 -on11,0,0,24,0,0,1424,1440.000000,119,0,595.200000,hint,lora,60 -on10,0,0,25,0,0,1421,1500.000000,119,1,609.808000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1463,1500.000000,119,1,602.560000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,lora,60 -on10,0,0,27,0,0,1424,1620.200000,120,3,669.520205,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1343,1500.200000,120,1,620.400000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1420,1440.000000,120,0,585.760000,hint,lora,60 -on1,0,0,24,0,0,1392,1440.000000,120,0,583.840000,hint,lora,60 -on6,0,0,25,0,0,1387,1500.200000,120,1,614.527795,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,120,0,653.920000,hint,lora,60 -on8,0,0,25,0,0,1404,1500.000000,121,1,613.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1390,1440.000000,121,0,584.160000,hint,lora,60 -on3,0,0,25,0,0,1370,1500.200000,121,1,629.039795,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1335,1440.000000,121,0,594.720000,hint,lora,60 -on9,0,0,24,0,0,1439,1440.000000,121,0,576.320000,hint,lora,60 -on5,0,0,25,0,0,1425,1500.201280,121,1,609.728717,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,121,0,656.480000,hint,lora,60 -on4,0,0,24,0,0,1386,1440.000000,121,0,584.800000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1404,1440.000000,122,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,122,0,630.720000,hint,lora,60 -on7,0,0,24,0,0,1433,1440.000000,122,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1397,1440.000000,122,0,583.200000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1434,1440.000000,122,0,577.120000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1336,1440.000000,122,0,593.440000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1364,1440.000000,123,0,592.320000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,lora,60 -on9,0,0,26,0,0,1425,1560.000000,123,2,640.432000,hint,lora,60 -on5,0,0,24,0,0,1396,1440.000000,123,0,583.200000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1354,1440.000000,123,0,590.240000,hint,lora,60 -on10,0,0,25,0,0,1328,1500.000000,123,1,633.280000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,123,0,676.640000,hint,lora,60 -on1,0,0,24,0,0,1415,1440.000000,124,0,580.320000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1325,1440.000000,124,0,595.200000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1294,1500.000000,124,1,643.792000,hint,lora,60 -on6,0,0,24,0,0,1404,1440.000000,124,0,581.920000,hint,lora,60 -on8,0,0,24,0,0,1388,1440.000000,124,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1417,1440.000000,124,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,124,0,661.920000,hint,lora,60 -on4,0,0,24,0,0,1431,1440.000000,124,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1363,1440.000000,125,0,588.640000,hint,lora,60 -on2,0,0,25,0,0,1347,1500.000000,125,1,620.160000,hint,lora,60 -on8,0,0,24,0,0,1398,1440.000000,125,0,583.040000,hint,lora,60 -on3,0,0,24,0,0,1439,1440.000000,125,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1400,1440.000000,125,0,582.560000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,125,0,649.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hint,lora,60 -on11,0,0,25,0,0,1327,1500.000000,126,1,627.840000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1434,1500.000000,126,1,609.600000,hint,lora,60 -on7,0,0,26,0,0,1451,1560.200000,126,2,639.072000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,126,0,692.640000,hint,lora,60 -on6,0,0,24,0,0,1388,1440.000000,126,0,584.480000,hint,lora,60 -on3,0,0,25,0,0,1342,1500.200000,126,1,627.008000,hint,lora,60 -on2,0,0,24,0,0,1408,1440.000000,126,0,581.280000,hint,lora,60 -on5,0,0,25,0,0,1379,1500.000000,126,1,614.240000,hint,lora,60 -on4,0,0,24,0,0,1407,1440.000000,126,0,581.440000,hint,lora,60 -on4,0,0,24,0,0,1387,1440.000000,127,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,127,0,648.800000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1375,1440.000000,127,0,587.040000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,lora,60 -on2,0,0,25,0,0,1361,1500.000000,127,1,626.240000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1395,1440.000000,127,0,583.360000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1378,1440.000000,127,0,589.120000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1395,1440.000000,128,0,583.360000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1385,1440.000000,128,0,584.960000,hint,lora,60 -on4,0,0,24,0,0,1391,1440.000000,128,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1410,1440.000000,128,0,580.960000,hint,lora,60 -on2,0,0,24,0,0,1384,1440.000000,128,0,585.120000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,128,0,622.400000,hint,lora,60 -on1,0,0,24,0,0,1380,1440.000000,129,0,594.080000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,129,0,647.040000,hint,lora,60 -on4,0,0,24,0,0,1420,1440.000000,129,0,586.880000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,129,0,576.160000,hint,lora,60 -on3,0,0,24,0,0,1426,1440.000000,129,0,578.400000,hint,lora,60 -on10,0,0,24,0,0,1397,1440.000000,129,0,583.040000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,129,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1385,1440.000000,129,0,589.600000,hint,lora,60 -on8,0,0,26,0,0,1433,1560.200000,130,2,635.440000,hint,lora,60 -on3,0,0,24,0,0,1417,1440.000000,130,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1385,1500.200000,130,1,615.760000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1367,1500.000000,130,1,619.248000,hint,lora,60 -on4,0,0,25,0,0,1473,1500.000000,130,1,600.960000,hint,lora,60 -on5,0,0,24,0,0,1418,1440.000000,130,0,579.840000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,130,0,667.680000,hint,lora,60 -on1,0,0,24,0,0,1403,1440.000000,130,0,582.080000,hint,lora,60 -on2,0,0,24,0,0,1432,1440.000000,130,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1408,1440.000000,131,0,581.280000,hint,lora,60 -on7,0,0,24,0,0,1417,1440.000000,131,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1426,1440.000000,131,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1412,1440.000000,131,0,589.120000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1405,1440.000000,131,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,131,0,608.480000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,132,0,644.640000,hint,lora,60 -on4,0,0,24,0,0,1411,1440.000000,132,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1409,1440.000000,132,0,581.280000,hint,lora,60 -on11,0,0,24,0,0,1415,1440.000000,132,0,580.160000,hint,lora,60 -on7,0,0,24,0,0,1402,1440.000000,132,0,585.600000,hint,lora,60 -on2,0,0,25,0,0,1426,1500.000000,132,1,611.360000,hint,lora,60 -on6,0,0,24,0,0,1392,1440.000000,132,0,583.840000,hint,lora,60 -on10,0,0,24,0,0,1420,1440.000000,132,0,579.360000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1439,1440.000000,133,0,576.320000,hint,lora,60 -on10,0,0,24,0,0,1400,1440.000000,133,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1377,1440.000000,133,0,592.480000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1437,1459.000000,133,1,583.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hint,lora,60 -on6,0,0,26,0,0,1395,1560.000000,133,2,648.640000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,133,0,670.880000,hint,lora,60 -on9,0,0,24,0,0,1349,1440.000000,133,0,590.880000,hint,lora,60 -on2,0,0,24,0,0,1415,1440.000000,133,0,580.160000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1402,1440.000000,134,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1401,1440.000000,134,0,588.320000,hint,lora,60 -on6,0,0,24,0,0,1391,1440.000000,134,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1364,1440.000000,134,0,588.640000,hint,lora,60 -on5,0,0,24,0,0,1404,1440.000000,134,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1410,1440.000000,134,0,580.960000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hint,lora,60 -on4,0,0,26,0,0,1372,1560.000000,134,2,650.992000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,134,0,667.040000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,135,0,637.600000,hint,lora,60 -on6,0,0,24,0,0,1394,1440.000000,135,0,583.520000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1401,1440.000000,135,0,595.200000,hint,lora,60 -on5,0,0,24,0,0,1409,1440.000000,135,0,581.120000,hint,lora,60 -on7,0,0,24,0,0,1383,1440.000000,135,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1354,1440.000000,135,0,595.200000,hint,lora,60 -on1,0,0,24,0,0,1432,1440.000000,135,0,577.440000,hint,lora,60 -on8,0,0,24,0,0,1424,1440.000000,135,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,135,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hint,lora,60 -on5,0,0,25,0,0,1342,1500.000000,136,1,624.480000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1430,1440.000000,136,0,577.760000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1423,1440.000000,136,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1407,1440.000000,136,0,581.440000,hint,lora,60 -on4,0,0,24,0,0,1355,1440.000000,136,0,589.920000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,136,0,637.920000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1403,1440.000000,137,0,588.000000,hint,lora,60 -on8,0,0,25,0,0,1407,1500.000000,137,1,612.800000,hint,lora,60 -on6,0,0,26,0,0,1514,1560.400000,137,2,633.968000,hint,lora,60 -on7,0,0,25,0,0,1403,1500.400000,137,1,609.488000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hint,lora,60 -on5,0,0,25,0,0,1374,1500.200000,137,1,615.968000,hint,lora,60 -on10,0,0,26,0,0,1450,1560.200000,137,2,635.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,137,0,666.240000,hint,lora,60 -on11,0,0,24,0,0,1400,1440.000000,137,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1342,1440.000000,137,0,592.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1385,1440.000000,138,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1392,1440.000000,138,0,583.840000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1400,1440.000000,138,0,591.360000,hint,lora,60 -on4,0,0,24,0,0,1360,1440.000000,138,0,593.280000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1478,1500.200000,138,1,600.080000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,138,0,629.760000,hint,lora,60 -on11,0,0,26,0,0,1456,1560.200000,138,2,637.520000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,139,0,659.040000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1383,1440.000000,139,0,589.280000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1314,1440.000000,139,0,596.640000,hint,lora,60 -on5,0,0,25,0,0,1376,1500.000000,139,1,621.120000,hint,lora,60 -on10,0,0,25,0,0,1421,1500.000000,139,1,613.072000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1427,1440.000000,139,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1406,1440.000000,140,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1364,1440.000000,140,0,588.640000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1428,1440.000000,140,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1388,1440.000000,140,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1333,1440.000000,140,0,593.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,140,0,663.360000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1432,1440.000000,140,0,577.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1423,1440.000000,141,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,141,0,576.160000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,141,0,606.400000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1395,1440.000000,141,0,583.360000,hint,lora,60 -on11,0,0,24,0,0,1389,1440.000000,141,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,lora,60 -on6,0,0,25,0,0,1455,1500.000000,142,1,609.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1405,1440.000000,142,0,581.760000,hint,lora,60 -on3,0,0,24,0,0,1416,1440.000000,142,0,580.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1385,1440.000000,142,0,585.600000,hint,lora,60 -on5,0,0,26,0,0,1374,1560.200000,142,2,649.840000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,142,0,628.480000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1410,1440.000000,143,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1396,1440.000000,143,0,595.200000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,143,0,640.800000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1303,1440.000000,143,0,600.800000,hint,lora,60 -on6,0,0,24,0,0,1407,1440.000000,143,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1432,1440.000000,143,0,585.600000,hint,lora,60 -on5,0,0,25,0,0,1392,1500.000000,143,1,617.712000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1403,1440.000000,144,0,590.400000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,144,0,628.320000,hint,lora,60 -on10,0,0,24,0,0,1431,1440.000000,144,0,577.600000,hint,lora,60 -on7,0,0,24,0,0,1388,1440.000000,144,0,587.040000,hint,lora,60 -on5,0,0,24,0,0,1409,1440.000000,144,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1388,1440.000000,145,0,595.200000,hint,lora,60 -on3,0,0,24,0,0,1413,1440.000000,145,0,580.480000,hint,lora,60 -on8,0,0,24,0,0,1409,1440.000000,145,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,145,0,666.560000,hint,lora,60 -on5,0,0,24,0,0,1374,1440.000000,145,0,586.880000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,145,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,145,0,576.160000,hint,lora,60 -on4,0,0,26,0,0,1414,1560.000000,145,2,644.272000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1394,1440.000000,145,0,583.520000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,145,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1426,1440.000000,145,0,578.400000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,146,0,638.560000,hint,lora,60 -on5,0,0,24,0,0,1432,1440.000000,146,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1400,1440.000000,146,0,585.600000,hint,lora,60 -on6,0,0,25,0,0,1456,1500.000000,146,1,600.208000,hint,lora,60 -on7,0,0,26,0,0,1401,1560.000000,146,2,640.096205,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1400,1440.000000,146,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1423,1557.200000,146,2,634.976000,hint,lora,60 -on3,0,0,24,0,0,1413,1440.000000,146,0,585.600000,hint,lora,60 -on2,0,0,25,0,0,1465,1500.000000,146,1,602.400000,hint,lora,60 -on4,0,0,24,0,0,1390,1440.000000,147,0,584.160000,hint,lora,60 -on5,0,0,24,0,0,1416,1440.000000,147,0,580.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1423,1440.000000,147,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1380,1440.000000,147,0,585.920000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,147,0,614.400000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1392,1440.000000,148,0,583.840000,hint,lora,60 -on10,0,0,24,0,0,1426,1440.000000,148,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1383,1440.000000,148,0,585.280000,hint,lora,60 -on3,0,0,25,0,0,1435,1500.000000,148,1,609.920000,hint,lora,60 -on6,0,0,24,0,0,1381,1440.000000,148,0,585.600000,hint,lora,60 -on5,0,0,24,0,0,1380,1440.000000,148,0,591.040000,hint,lora,60 -on7,0,0,24,0,0,1384,1440.000000,148,0,585.280000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,148,0,659.680000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1404,1440.000000,148,0,581.920000,hint,lora,60 -on4,0,0,24,0,0,1410,1440.000000,149,0,580.960000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,149,0,576.160000,hint,lora,60 -on6,0,0,24,0,0,1439,1440.000000,149,0,576.320000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1437,1440.000000,149,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,149,0,644.160000,hint,lora,60 -on10,0,0,24,0,0,1384,1440.000000,149,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1365,1440.000000,149,0,588.320000,hint,lora,60 -on9,0,0,24,0,0,1424,1440.000000,149,0,587.680000,hint,lora,60 -on5,0,0,24,0,0,1435,1440.000000,149,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1419,1440.000000,150,0,579.520000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1400,1440.000000,150,0,582.560000,hint,lora,60 -on2,0,0,24,0,0,1400,1440.000000,150,0,589.600000,hint,lora,60 -on6,0,0,24,0,0,1417,1440.000000,150,0,579.840000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,150,0,634.240000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1392,1440.000000,150,0,583.840000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1394,1440.000000,150,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1384,1440.000000,151,0,585.600000,hint,lora,60 -on8,0,0,25,0,0,1419,1500.000000,151,1,609.759795,hint,lora,60 -on11,0,0,24,0,0,1415,1440.000000,151,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1388,1440.000000,151,0,584.640000,hint,lora,60 -on2,0,0,25,0,0,1458,1500.300000,151,1,600.535795,hint,lora,60 -on10,0,0,24,0,0,1428,1440.000000,151,0,578.080000,hint,lora,60 -on9,0,0,26,0,0,1414,1560.000000,151,2,644.096205,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,151,0,642.240000,hint,lora,60 -on1,0,0,24,0,0,1418,1440.000000,151,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1360,1440.000000,152,0,595.200000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1401,1440.000000,152,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1401,1440.000000,152,0,582.400000,hint,lora,60 -on5,0,0,24,0,0,1416,1440.000000,152,0,580.000000,hint,lora,60 -on3,0,0,24,0,0,1431,1440.000000,152,0,577.600000,hint,lora,60 -on4,0,0,24,0,0,1423,1440.000000,152,0,578.880000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,152,0,633.920000,hint,lora,60 -on1,0,0,25,0,0,1415,1500.200000,153,1,610.800000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1379,1474.000000,153,1,609.600000,hint,lora,60 -on7,0,0,24,0,0,1392,1440.000000,153,0,583.840000,hint,lora,60 -on4,0,0,26,0,0,1336,1560.000000,153,2,659.840000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,153,0,679.040000,hint,lora,60 -on6,0,0,24,0,0,1384,1440.000000,153,0,585.600000,hint,lora,60 -on2,0,0,25,0,0,1357,1500.000000,153,1,617.440000,hint,lora,60 -on5,0,0,24,0,0,1411,1440.000000,153,0,580.800000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on5,0,0,25,0,0,1354,1500.000000,154,1,618.240000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1349,1500.000000,154,1,621.120000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,154,0,628.000000,hint,lora,60 -on6,0,0,24,0,0,1427,1440.000000,154,0,578.240000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,155,0,633.280000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1430,1440.000000,155,0,577.760000,hint,lora,60 -on7,0,0,25,0,0,1396,1500.000000,155,1,615.680000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1402,1440.000000,155,0,582.240000,hint,lora,60 -on11,0,0,24,0,0,1398,1440.000000,155,0,582.880000,hint,lora,60 -on8,0,0,25,0,0,1407,1500.000000,155,1,612.800000,hint,lora,60 -on11,0,0,24,0,0,1381,1440.000000,156,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1395,1440.000000,156,0,583.360000,hint,lora,60 -on9,0,0,24,0,0,1392,1440.000000,156,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1366,1500.000000,156,1,621.872000,hint,lora,60 -on10,0,0,24,0,0,1428,1440.000000,156,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1401,1440.000000,156,0,582.400000,hint,lora,60 -on5,0,0,24,0,0,1398,1440.000000,156,0,582.880000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,156,0,652.160000,hint,lora,60 -on6,0,0,24,0,0,1387,1440.000000,156,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1421,1440.000000,157,0,579.200000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1428,1440.000000,157,0,578.080000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1437,1440.000000,157,0,585.600000,hint,lora,60 -on7,0,0,25,0,0,1444,1500.000000,157,1,603.408000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1401,1500.000000,157,1,612.640000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,157,0,618.240000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,lora,60 -on5,0,0,25,0,0,1417,1500.000000,158,1,613.552000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1420,1440.000000,158,0,579.360000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1398,1440.000000,158,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,158,0,628.480000,hint,lora,60 -on9,0,0,24,0,0,1396,1440.000000,158,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1401,1440.000000,158,0,582.560000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1408,1440.000000,159,0,581.280000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,159,0,662.400000,hint,lora,60 -on6,0,0,25,0,0,1473,1500.200000,159,1,601.200000,hint,lora,60 -on8,0,0,24,0,0,1427,1440.000000,159,0,578.240000,hint,lora,60 -on7,0,0,25,0,0,1406,1500.000000,159,1,615.200000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hint,lora,60 -on1,0,0,25,0,0,1388,1500.200000,159,1,617.360000,hint,lora,60 -on5,0,0,24,0,0,1403,1440.000000,159,0,582.080000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1398,1440.000000,159,0,582.880000,hint,lora,60 -on4,0,0,24,0,0,1391,1440.000000,159,0,584.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1345,1440.000000,160,0,594.560000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1391,1440.000000,160,0,584.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1376,1500.000000,160,1,615.040000,hint,lora,60 -on5,0,0,24,0,0,1413,1440.000000,160,0,580.480000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,160,0,648.960000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1387,1440.000000,160,0,595.200000,hint,lora,60 -on7,0,0,24,0,0,1402,1440.000000,160,0,582.240000,hint,lora,60 -on11,0,0,24,0,0,1430,1440.000000,161,0,595.200000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1341,1440.000000,161,0,592.160000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,161,0,611.200000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1422,1440.000000,161,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1410,1492.000000,161,1,606.880000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1435,1440.000000,161,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1412,1440.000000,162,0,580.640000,hint,lora,60 -on5,0,0,24,0,0,1432,1440.000000,162,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,lora,60 -on4,0,0,25,0,0,1327,1500.200000,162,1,635.600000,hint,lora,60 -on2,0,0,24,0,0,1425,1440.000000,162,0,578.560000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1352,1440.000000,162,0,595.200000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,162,0,650.080000,hint,lora,60 -on10,0,0,24,0,0,1368,1440.000000,162,0,595.200000,hint,lora,60 -on1,0,0,24,0,0,1424,1440.000000,163,0,578.720000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1373,1440.000000,163,0,591.200000,hint,lora,60 -on4,0,0,24,0,0,1410,1440.000000,163,0,581.120000,hint,lora,60 -on3,0,0,24,0,0,1414,1440.000000,163,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,163,0,652.960000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1424,1440.000000,163,0,578.720000,hint,lora,60 -on9,0,0,24,0,0,1413,1440.000000,163,0,580.480000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1387,1440.000000,163,0,584.640000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1420,1440.000000,164,0,579.360000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,164,0,670.720000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1284,1440.000000,164,0,608.320000,hint,lora,60 -on2,0,0,25,0,0,1366,1500.000000,164,1,617.760000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1385,1440.000000,164,0,584.960000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1414,1500.000000,164,1,612.960000,hint,lora,60 -on5,0,0,24,0,0,1398,1440.000000,164,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1412,1440.000000,164,0,580.640000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,165,0,621.760000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1414,1440.000000,165,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,lora,60 -on2,0,0,25,0,0,1396,1500.200000,165,1,610.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1422,1440.000000,165,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1347,1440.000000,165,0,591.360000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1313,1440.000000,166,0,599.200000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,166,0,701.760000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1331,1440.000000,166,0,597.920000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,lora,60 -on6,0,0,25,0,0,1418,1500.000000,166,1,610.288000,hint,lora,60 -on7,0,0,24,0,0,1424,1440.000000,166,0,578.720000,hint,lora,60 -on10,0,0,24,0,0,1364,1494.000000,166,1,626.720000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1355,1440.000000,166,0,589.920000,hint,lora,60 -on5,0,0,25,0,0,1413,1500.200000,166,1,607.120000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1389,1440.000000,167,0,589.760000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,167,0,576.160000,hint,lora,60 -on4,0,0,24,0,0,1434,1440.000000,167,0,577.120000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,167,0,614.400000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1432,1440.000000,167,0,577.440000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,168,0,633.760000,hint,lora,60 -on5,0,0,24,0,0,1385,1440.000000,168,0,595.200000,hint,lora,60 -on1,0,0,24,0,0,1437,1440.000000,168,0,576.640000,hint,lora,60 -on9,0,0,24,0,0,1398,1440.000000,168,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1398,1440.000000,168,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1431,1440.000000,168,0,577.760000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1437,1440.000000,168,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1365,1440.000000,168,0,595.200000,hint,lora,60 -on4,0,0,24,0,0,1433,1440.000000,169,0,577.280000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1402,1440.000000,169,0,582.400000,hint,lora,60 -on5,0,0,24,0,0,1406,1440.000000,169,0,581.600000,hint,lora,60 -on6,0,0,24,0,0,1428,1440.000000,169,0,586.720000,hint,lora,60 -on11,0,0,24,0,0,1400,1440.000000,169,0,582.560000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,169,0,665.120000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1320,1500.200000,169,1,624.720000,hint,lora,60 -on3,0,0,24,0,0,1406,1440.000000,169,0,585.600000,hint,lora,60 -on2,0,0,25,0,0,1407,1500.000000,170,1,613.600000,hint,lora,60 -on10,0,0,24,0,0,1364,1440.000000,170,0,594.400000,hint,lora,60 -on3,0,0,24,0,0,1418,1440.000000,170,0,579.840000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1333,1440.000000,170,0,593.440000,hint,lora,60 -on1,0,0,24,0,0,1371,1440.000000,170,0,591.360000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,170,0,680.800000,hint,lora,60 -on7,0,0,24,0,0,1384,1440.000000,170,0,585.600000,hint,lora,60 -on8,0,0,26,0,0,1457,1560.000000,170,2,635.152000,hint,lora,60 -on6,0,0,25,0,0,1388,1500.000000,171,1,617.920000,hint,lora,60 -on4,0,0,24,0,0,1419,1440.000000,171,0,579.520000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1396,1440.000000,171,0,583.360000,hint,lora,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1431,1440.000000,171,0,577.600000,hint,lora,60 -on11,0,0,24,0,0,1426,1440.000000,171,0,578.400000,hint,lora,60 -on9,0,0,24,0,0,1353,1440.000000,171,0,590.400000,hint,lora,60 -on5,0,0,25,0,0,1465,1500.200000,171,1,600.080000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,171,0,670.560000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1433,1440.000000,172,0,577.280000,hint,lora,60 -on9,0,0,24,0,0,1387,1440.000000,172,0,584.800000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,172,0,649.600000,hint,lora,60 -on1,0,0,25,0,0,1411,1500.000000,172,1,613.760000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1382,1500.000000,172,1,613.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1387,1440.000000,172,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1406,1440.000000,172,0,585.600000,hint,lora,60 -on5,0,0,25,0,0,1409,1500.000000,172,1,613.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1407,1440.000000,173,0,581.440000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,173,0,640.160000,hint,lora,60 -on10,0,0,25,0,0,1463,1500.000000,173,1,600.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1431,1440.000000,173,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1383,1440.000000,173,0,585.760000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,lora,60 -on6,0,0,25,0,0,1359,1500.200000,173,1,621.680000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1427,1440.000000,173,0,578.240000,hint,lora,60 -on11,0,0,24,0,0,1388,1440.000000,174,0,588.800000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,174,0,640.160000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,174,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1394,1440.000000,174,0,592.320000,hint,lora,60 -on4,0,0,24,0,0,1415,1440.000000,174,0,580.160000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1429,1440.000000,174,0,577.920000,hint,lora,60 -on9,0,0,24,0,0,1381,1440.000000,174,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1401,1440.000000,175,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1369,1440.000000,175,0,587.680000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,175,0,638.400000,hint,lora,60 -on5,0,0,24,0,0,1382,1440.000000,175,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1383,1440.000000,175,0,585.280000,hint,lora,60 -on6,0,0,24,0,0,1430,1440.000000,175,0,585.600000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1386,1440.000000,175,0,588.160000,hint,lora,60 -on3,0,0,24,0,0,1376,1440.000000,176,0,586.560000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,176,0,623.360000,hint,lora,60 -on11,0,0,24,0,0,1425,1440.000000,176,0,582.560000,hint,lora,60 -on10,0,0,24,0,0,1415,1440.000000,176,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1390,1440.000000,176,0,584.160000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1431,1440.000000,176,0,577.600000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1411,1440.000000,176,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1382,1440.000000,177,0,585.440000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,177,0,661.760000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,177,0,579.200000,hint,lora,60 -on9,0,0,24,0,0,1377,1440.000000,177,0,587.040000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1424,1440.000000,177,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1383,1500.000000,177,1,618.080000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hint,lora,60 -on8,0,0,25,0,0,1371,1500.200000,177,1,618.000000,hint,lora,60 -on2,0,0,24,0,0,1393,1440.000000,177,0,583.680000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1427,1440.000000,178,0,578.240000,hint,lora,60 -on5,0,0,24,0,0,1411,1440.000000,178,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1419,1440.000000,178,0,579.520000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1397,1440.000000,178,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,178,0,630.880000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1403,1440.000000,178,0,591.040000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,lora,60 -on7,0,0,25,0,0,1402,1500.000000,178,1,614.240000,hint,lora,60 -on10,0,0,24,0,0,1413,1440.000000,179,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1405,1440.000000,179,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1429,1440.000000,179,0,577.920000,hint,lora,60 -on4,0,0,24,0,0,1407,1440.000000,179,0,581.440000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1390,1440.000000,179,0,584.160000,hint,lora,60 -on5,0,0,24,0,0,1412,1440.000000,179,0,580.640000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,179,0,634.080000,hint,lora,60 -on9,0,0,24,0,0,1382,1440.000000,179,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1434,1440.000000,180,0,577.120000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,180,0,626.880000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1429,1440.000000,180,0,595.200000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1348,1440.000000,180,0,592.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1376,1440.000000,180,0,594.560000,hint,lora,60 -on11,0,0,24,0,0,1398,1440.000000,181,0,582.880000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1400,1500.000000,181,1,611.840000,hint,lora,60 -on3,0,0,25,0,0,1391,1500.000000,181,1,614.400000,hint,lora,60 -on8,0,0,24,0,0,1418,1440.000000,181,0,585.600000,hint,lora,60 -on6,0,0,24,0,0,1395,1440.000000,181,0,583.360000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1426,1440.000000,181,0,578.400000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,181,0,646.880000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1390,1440.000000,182,0,590.880000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1385,1440.000000,182,0,584.960000,hint,lora,60 -on6,0,0,25,0,0,1387,1500.000000,182,1,612.960000,hint,lora,60 -on7,0,0,24,0,0,1411,1440.000000,182,0,580.800000,hint,lora,60 -on11,0,0,24,0,0,1398,1440.000000,182,0,582.880000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,182,0,664.480000,hint,lora,60 -on8,0,0,24,0,0,1387,1440.000000,182,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1427,1440.000000,182,0,578.240000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1407,1440.000000,182,0,581.440000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,183,0,576.160000,hint,lora,60 -on1,0,0,26,0,0,1305,1560.000000,183,2,661.552000,hint,lora,60 -on8,0,0,24,0,0,1401,1440.000000,183,0,582.400000,hint,lora,60 -on4,0,0,24,0,0,1407,1440.000000,183,0,581.440000,hint,lora,60 -on3,0,0,24,0,0,1401,1440.000000,183,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,183,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,183,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,183,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,183,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,183,0,693.120000,hint,lora,60 -on5,0,0,25,0,0,1378,1500.000000,183,1,615.200000,hint,lora,60 -on2,0,0,25,0,0,1294,1500.000000,183,1,633.280000,hint,lora,60 -on9,0,0,24,0,0,1400,1440.000000,184,0,582.560000,hint,lora,60 -on8,0,0,25,0,0,1383,1500.000000,184,1,619.040000,hint,lora,60 -on7,0,0,24,0,0,1408,1440.000000,184,0,581.280000,hint,lora,60 -on6,0,0,24,0,0,1413,1440.000000,184,0,580.640000,hint,lora,60 -on2,0,0,24,0,0,1413,1440.000000,184,0,580.480000,hint,lora,60 -on5,0,0,24,0,0,1401,1440.000000,184,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,184,0,660.320000,hint,lora,60 -on11,0,0,24,0,0,1387,1440.000000,184,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1427,1440.000000,184,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1382,1440.000000,185,0,585.440000,hint,lora,60 -on2,0,0,25,0,0,1371,1500.200000,185,1,616.400000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,185,0,631.360000,hint,lora,60 -on4,0,0,24,0,0,1410,1440.000000,185,0,580.960000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1396,1440.000000,185,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1389,1440.000000,185,0,595.200000,hint,lora,60 -on3,0,0,24,0,0,1415,1440.000000,185,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1414,1440.000000,186,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,186,0,591.200000,hint,lora,60 -on4,0,0,24,0,0,1400,1440.000000,186,0,604.800000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1417,1440.000000,186,0,595.200000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1477,1500.000000,187,1,600.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,187,0,639.200000,hint,lora,60 -on10,0,0,25,0,0,1393,1500.400000,187,1,611.088000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1393,1440.000000,187,0,583.680000,hint,lora,60 -on11,0,0,24,0,0,1393,1440.000000,187,0,585.600000,hint,lora,60 -on2,0,0,25,0,0,1377,1500.000000,187,1,614.880000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1384,1440.000000,187,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1426,1440.000000,187,0,586.560000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1410,1440.000000,188,0,585.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,188,0,656.800000,hint,lora,60 -on2,0,0,24,0,0,1412,1440.000000,188,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1431,1440.000000,188,0,577.600000,hint,lora,60 -on3,0,0,25,0,0,1334,1500.000000,188,1,622.720000,hint,lora,60 -on8,0,0,24,0,0,1426,1440.000000,188,0,578.400000,hint,lora,60 -on11,0,0,25,0,0,1471,1500.200000,188,1,600.080000,hint,lora,60 -on5,0,0,24,0,0,1427,1440.000000,188,0,578.400000,hint,lora,60 -on1,0,0,24,0,0,1398,1440.000000,188,0,585.600000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1387,1440.000000,189,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,lora,60 -on2,0,0,26,0,0,1374,1560.000000,189,2,650.192000,hint,lora,60 -on5,0,0,25,0,0,1383,1500.000000,189,1,619.040000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,189,0,636.160000,hint,lora,60 -on10,0,0,24,0,0,1409,1440.000000,189,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1434,1440.000000,189,0,577.120000,hint,lora,60 -on5,0,0,24,0,0,1327,1440.000000,190,0,594.400000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,190,0,646.240000,hint,lora,60 -on9,0,0,24,0,0,1376,1440.000000,190,0,596.160000,hint,lora,60 -on11,0,0,25,0,0,1429,1500.200000,190,1,610.368000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1423,1500.000000,190,1,609.600000,hint,lora,60 -on7,0,0,24,0,0,1416,1440.000000,190,0,580.000000,hint,lora,60 -on2,0,0,24,0,0,1381,1440.000000,190,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1391,1440.000000,191,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1385,1440.000000,191,0,584.960000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1388,1440.000000,191,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,191,0,620.480000,hint,lora,60 -on4,0,0,24,0,0,1387,1440.000000,191,0,595.200000,hint,lora,60 -on8,0,0,24,0,0,1396,1440.000000,191,0,583.200000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1402,1440.000000,192,0,582.240000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1429,1440.000000,192,0,577.920000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,192,0,634.240000,hint,lora,60 -on10,0,0,24,0,0,1427,1440.000000,192,0,578.240000,hint,lora,60 -on1,0,0,25,0,0,1377,1500.200000,192,1,628.080000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1430,1440.000000,192,0,577.760000,hint,lora,60 -on9,0,0,24,0,0,1434,1440.000000,192,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1400,1440.000000,193,0,585.600000,hint,lora,60 -on9,0,0,25,0,0,1382,1500.000000,193,1,613.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1395,1440.000000,193,0,583.360000,hint,lora,60 -on7,0,0,24,0,0,1380,1440.000000,193,0,592.160000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,193,0,650.080000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,lora,60 -on10,0,0,25,0,0,1373,1500.000000,193,1,618.400000,hint,lora,60 -on2,0,0,24,0,0,1411,1440.000000,193,0,587.840000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1433,1440.000000,193,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1405,1440.000000,194,0,585.600000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1426,1440.000000,194,0,578.560000,hint,lora,60 -on1,0,0,24,0,0,1415,1440.000000,194,0,580.160000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,194,0,629.760000,hint,lora,60 -on6,0,0,24,0,0,1420,1440.000000,194,0,579.360000,hint,lora,60 -on4,0,0,24,0,0,1437,1440.000000,194,0,576.640000,hint,lora,60 -on5,0,0,24,0,0,1400,1440.000000,194,0,582.560000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1394,1440.000000,194,0,585.600000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hint,lora,60 -on2,0,0,23,0,0,1438,1438.000000,194,0,575.200000,hint,lora,60 -on6,0,0,24,0,0,1425,1440.000000,195,0,578.560000,hint,lora,60 -on8,0,0,26,0,0,1451,1560.200000,195,2,632.880000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1308,1440.000000,195,0,597.600000,hint,lora,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hint,lora,60 -on3,0,0,25,0,0,1393,1500.200000,195,1,616.400000,hint,lora,60 -on4,0,0,25,0,0,1408,1500.000000,195,1,614.560000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,195,0,654.240000,hint,lora,60 -on7,0,0,24,0,0,1439,1440.000000,195,0,585.600000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on2,0,0,25,0,0,1390,1500.000000,196,1,611.520000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on9,0,0,25,0,0,1416,1500.000000,196,1,611.680000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,196,0,620.320000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1312,1440.000000,196,0,612.320000,hint,lora,60 -on3,0,0,24,0,0,1437,1440.000000,197,0,576.640000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,197,0,645.280000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,197,0,585.600000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1428,1440.000000,197,0,585.600000,hint,lora,60 -on10,0,0,24,0,0,1431,1440.000000,197,0,577.600000,hint,lora,60 -on11,0,0,24,0,0,1421,1440.000000,197,0,585.920000,hint,lora,60 -on6,0,0,25,0,0,1388,1500.000000,197,1,618.352000,hint,lora,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hint,lora,60 -on9,0,0,24,0,0,1340,1440.000000,197,0,601.600000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,198,0,616.320000,hint,lora,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,lora,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,lora,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,lora,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,lora,60 -on3,0,0,24,0,0,1402,1440.000000,198,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1397,1440.000000,198,0,583.040000,hint,lora,60 -on6,0,0,25,0,0,1399,1500.000000,198,1,614.880000,hint,lora,60 -on9,0,0,24,0,0,1433,1440.000000,198,0,577.280000,hint,lora,60 -on11,0,0,25,0,0,1478,1500.200000,199,1,600.080000,hint,lora,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,lora,60 -on5,0,0,24,0,0,1421,1440.000000,199,0,579.200000,hint,lora,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,lora,60 -on8,0,0,24,0,0,1393,1440.000000,199,0,583.680000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,199,0,634.080000,hint,lora,60 -on4,0,0,24,0,0,1336,1440.000000,199,0,595.200000,hint,lora,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,lora,60 -on1,0,0,24,0,0,1431,1440.000000,199,0,577.600000,hint,lora,60 -on2,0,0,24,0,0,1424,1440.000000,199,0,585.600000,hint,lora,60 -on7,0,0,25,0,0,1391,1500.200000,199,1,611.808000,hint,lora,60 -on3,0,0,24,0,0,1386,1440.000000,200,0,584.800000,hint,lora,60 -on10,0,0,25,0,0,1415,1500.400000,200,1,610.447795,hint,lora,60 -on11,0,0,24,0,0,1436,1440.000000,200,0,585.600000,hint,lora,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,lora,60 -on0,1,0,24,0,0,0,1440.000000,200,0,640.480000,hint,lora,60 -on5,0,0,24,0,0,1414,1440.000000,200,0,585.600000,hint,lora,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,lora,60 -on2,0,0,26,0,0,1477,1560.000000,200,2,633.648205,hint,lora,60 -on7,0,0,25,0,0,1359,1500.000000,200,1,620.480000,hint,lora,60 -on9,0,0,24,0,0,1390,1440.000000,200,0,584.160000,hint,lora,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,lora,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,lora,60 -on6,0,0,24,1,0,1187,1587.000000,1,0,660.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,279,1579.000000,1,0,657.200000,extended,lora,60 -on8,0,0,24,1,0,439,1559.000000,1,0,649.200000,extended,lora,60 -on2,0,0,24,1,0,483,1543.000000,1,0,642.800000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,710,1590.000000,1,0,661.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,300,1540.000000,1,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2093.000000,1,0,990.800000,extended,lora,60 -on10,0,0,24,1,0,1050,1570.000000,2,0,653.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,753,1573.000000,2,0,654.800000,extended,lora,60 -on7,0,0,24,1,0,600,1540.000000,2,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,991,1571.000000,2,0,654.000000,extended,lora,60 -on0,1,7,24,0,0,0,2231.000000,2,0,1071.600000,extended,lora,60 -on6,0,0,24,1,0,211,1571.000000,2,0,654.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,240,1540.000000,2,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,552,1552.000000,2,0,646.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2019.000000,3,0,935.600000,extended,lora,60 -on4,0,0,24,1,0,300,1540.000000,3,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,240,1540.000000,3,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,480,1540.000000,3,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,398,1578.000000,3,0,656.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1096,1556.000000,3,0,648.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1401,1561.000000,4,0,650.000000,extended,lora,60 -on0,1,5,24,0,0,0,2048.000000,4,0,947.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,599,1599.000000,4,0,665.200000,extended,lora,60 -on3,0,0,24,1,0,17,1557.000000,4,0,648.400000,extended,lora,60 -on11,0,0,24,1,0,420,1540.000000,4,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,660,1540.000000,4,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1432,1592.000000,5,0,662.400000,extended,lora,60 -on0,1,5,24,0,0,0,2002.000000,5,0,928.800000,extended,lora,60 -on5,0,0,24,1,0,120,1540.000000,5,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,383,1563.000000,5,0,650.800000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,947,1587.000000,5,0,660.400000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,0,1540.000000,5,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1077,1597.000000,6,0,664.400000,extended,lora,60 -on7,0,0,24,1,0,498,1558.000000,6,0,648.800000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1852.000000,6,0,843.200000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,861,1561.000000,6,0,650.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1260,1540.000000,6,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on0,1,2,24,0,0,0,1667.000000,7,0,718.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,23,1563.000000,7,0,650.800000,extended,lora,60 -on8,0,0,24,1,0,720,1540.000000,7,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1896.000000,8,0,860.800000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1080,1540.000000,8,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,180,1540.000000,8,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,519,1579.000000,8,0,657.200000,extended,lora,60 -on4,0,0,24,1,0,326,1566.000000,8,0,652.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,172,1592.000000,9,0,662.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,9,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,9,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,9,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,997,1577.000000,9,0,656.400000,extended,lora,60 -on0,1,7,24,0,0,0,2242.000000,9,0,1076.000000,extended,lora,60 -on10,0,0,24,1,0,0,1540.000000,9,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,813,1573.000000,9,0,654.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,9,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,660,1540.000000,9,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,60,1540.000000,9,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,200,1560.000000,9,0,649.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,933,1573.000000,10,0,654.800000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2084.000000,10,0,987.200000,extended,lora,60 -on4,0,0,24,1,0,1260,1540.000000,10,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,337,1577.000000,10,0,656.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,960,1540.000000,10,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,204,1564.000000,10,0,651.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,683,1563.000000,10,0,650.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,600,1540.000000,11,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,300,1540.000000,11,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,11,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,566,1566.000000,11,0,652.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,11,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1134,1594.000000,11,0,663.200000,extended,lora,60 -on1,0,0,24,1,0,34,1574.000000,11,0,655.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,11,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,240,1540.000000,11,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,960,1540.000000,11,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2373.000000,11,0,1154.000000,extended,lora,60 -on4,0,0,24,1,0,731,1551.000000,11,0,646.000000,extended,lora,60 -on3,0,0,24,1,0,180,1540.000000,12,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,126,1546.000000,12,0,644.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1301,1581.000000,12,0,658.000000,extended,lora,60 -on9,0,0,24,1,0,840,1540.000000,12,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,600,1540.000000,12,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,324,1564.000000,12,0,651.200000,extended,lora,60 -on8,0,0,24,1,0,991,1571.000000,12,0,654.000000,extended,lora,60 -on0,1,7,24,0,0,0,2252.000000,12,0,1080.000000,extended,lora,60 -on7,0,0,24,1,0,600,1540.000000,13,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,273,1573.000000,13,0,654.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,60,1540.000000,13,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,3,1543.000000,13,0,642.800000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2025.000000,13,0,938.000000,extended,lora,60 -on1,0,0,24,1,0,148,1568.000000,13,0,652.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,840,1540.000000,14,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2272.000000,14,0,1088.000000,extended,lora,60 -on3,0,0,24,1,0,0,1540.000000,14,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,60,1540.000000,14,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,239,1599.000000,14,0,665.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,374,1554.000000,14,0,647.200000,extended,lora,60 -on10,0,0,24,1,0,240,1540.000000,14,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,823,1583.000000,14,0,658.800000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,423,1543.000000,15,0,642.800000,extended,lora,60 -on5,0,0,24,1,0,1020,1540.000000,15,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,869,1569.000000,15,0,653.200000,extended,lora,60 -on11,0,0,24,1,0,180,1540.000000,15,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,lora,60 -on0,1,7,24,0,0,0,2204.000000,15,0,1060.800000,extended,lora,60 -on8,0,0,24,1,0,838,1598.000000,15,0,664.800000,extended,lora,60 -on2,0,0,24,1,0,663,1543.000000,15,0,642.800000,extended,lora,60 -on10,0,0,24,1,0,294,1594.000000,15,0,663.200000,extended,lora,60 -on7,0,0,24,1,0,685,1565.000000,16,0,651.600000,extended,lora,60 -on3,0,0,24,1,0,488,1548.000000,16,0,644.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,900,1540.000000,16,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1989.000000,16,0,923.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,328,1568.000000,16,0,652.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1263,1543.000000,16,0,642.800000,extended,lora,60 -on0,1,6,24,0,0,0,2192.000000,17,0,1030.400000,extended,lora,60 -on6,0,0,24,1,0,660,1540.000000,17,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,240,1540.000000,17,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,1202,1542.000000,17,0,642.400000,extended,lora,60 -on2,0,0,23,0,0,1430,1430.000000,17,0,572.000000,extended,lora,60 -on10,0,0,24,1,0,720,1540.000000,17,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,60,1540.000000,17,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,590,1590.000000,17,0,661.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,159,1579.000000,18,0,657.200000,extended,lora,60 -on5,0,0,24,1,0,497,1557.000000,18,0,648.400000,extended,lora,60 -on8,0,0,24,1,0,601,1541.000000,18,0,642.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,378,1558.000000,18,0,648.800000,extended,lora,60 -on2,0,0,24,1,0,1140,1540.000000,18,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,lora,60 -on0,1,7,24,0,0,0,2150.000000,18,0,1039.200000,extended,lora,60 -on6,0,0,24,1,0,1031,1551.000000,18,0,646.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1246,1586.000000,18,0,660.000000,extended,lora,60 -on7,0,0,24,1,0,533,1593.000000,19,0,662.800000,extended,lora,60 -on3,0,0,24,1,0,476,1596.000000,19,0,664.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,180,1540.000000,19,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1998.000000,19,0,927.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,75,1555.000000,19,0,647.600000,extended,lora,60 -on2,0,0,24,1,0,720,1540.000000,19,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1380,1540.000000,20,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1988.000000,20,0,923.200000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,540,1540.000000,20,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,120,1540.000000,20,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,755,1575.000000,20,0,655.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,272,1572.000000,20,0,654.400000,extended,lora,60 -on3,0,0,24,1,0,660,1540.000000,21,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1986.000000,21,0,922.400000,extended,lora,60 -on7,0,0,24,1,0,1100,1560.000000,21,0,649.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,216,1576.000000,21,0,656.000000,extended,lora,60 -on2,0,0,24,1,0,1320,1540.000000,21,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,33,1573.000000,21,0,654.800000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1115,1575.000000,22,0,655.600000,extended,lora,60 -on4,0,0,24,1,0,60,1540.000000,22,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,204,1564.000000,22,0,651.200000,extended,lora,60 -on0,1,5,24,0,0,0,1994.000000,22,0,925.600000,extended,lora,60 -on9,0,0,24,1,0,660,1540.000000,22,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,893,1593.000000,22,0,662.800000,extended,lora,60 -on9,0,0,24,1,0,1124,1584.000000,23,0,659.200000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,0,1540.000000,23,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,660,1540.000000,23,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,720,1540.000000,23,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,540,1540.000000,23,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2376.000000,23,0,1155.200000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1335,1555.000000,23,0,647.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,23,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1200,1540.000000,23,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,600,1540.000000,23,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,979,1559.000000,24,0,649.200000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,180,1540.000000,24,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,383,1563.000000,24,0,650.800000,extended,lora,60 -on8,0,0,24,1,0,130,1550.000000,24,0,645.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1959.000000,24,0,911.600000,extended,lora,60 -on7,0,0,24,1,0,605,1545.000000,24,0,643.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,287,1587.000000,25,0,660.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1015,1595.000000,25,0,663.600000,extended,lora,60 -on11,0,0,24,1,0,180,1540.000000,25,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,780,1540.000000,25,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2028.000000,25,0,939.200000,extended,lora,60 -on5,0,0,24,1,0,540,1540.000000,25,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,26,1566.000000,26,0,652.000000,extended,lora,60 -on7,0,0,24,1,0,410,1590.000000,26,0,661.600000,extended,lora,60 -on0,1,7,24,0,0,0,2159.000000,26,0,1042.800000,extended,lora,60 -on10,0,0,24,1,0,226,1586.000000,26,0,660.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,26,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,780,1540.000000,26,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,595,1595.000000,26,0,663.600000,extended,lora,60 -on1,0,0,24,1,0,1211,1551.000000,26,0,646.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,26,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,347,1587.000000,26,0,660.400000,extended,lora,60 -on5,0,0,24,1,0,1037,1557.000000,27,0,648.400000,extended,lora,60 -on1,0,0,24,1,0,120,1540.000000,27,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,828,1588.000000,27,0,660.800000,extended,lora,60 -on8,0,0,24,1,0,322,1562.000000,27,0,650.400000,extended,lora,60 -on2,0,0,24,1,0,443,1563.000000,27,0,650.800000,extended,lora,60 -on10,0,0,24,1,0,1173,1573.000000,27,0,654.800000,extended,lora,60 -on4,0,0,24,1,0,605,1545.000000,27,0,643.600000,extended,lora,60 -on6,0,0,24,1,0,720,1540.000000,27,0,641.600000,extended,lora,60 -on0,1,10,24,0,0,0,2553.000000,27,0,1277.200000,extended,lora,60 -on3,0,0,24,1,0,482,1542.000000,27,0,642.400000,extended,lora,60 -on9,0,0,24,1,0,0,1540.000000,27,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,27,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,874,1574.000000,28,0,655.200000,extended,lora,60 -on8,0,0,24,1,0,335,1575.000000,28,0,655.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1234,1574.000000,28,0,655.200000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1380,1540.000000,28,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1995.000000,28,0,926.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,682,1562.000000,28,0,650.400000,extended,lora,60 -on11,0,0,24,1,0,1140,1540.000000,29,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,607,1547.000000,29,0,644.400000,extended,lora,60 -on8,0,0,24,1,0,717,1597.000000,29,0,664.400000,extended,lora,60 -on7,0,0,24,1,0,172,1592.000000,29,0,662.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,540,1540.000000,29,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1987.000000,29,0,922.800000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1016,1596.000000,30,0,664.000000,extended,lora,60 -on0,1,3,24,0,0,0,1743.000000,30,0,774.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,331,1571.000000,30,0,654.000000,extended,lora,60 -on5,0,0,24,1,0,720,1540.000000,30,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,780,1540.000000,31,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2035.000000,31,0,942.000000,extended,lora,60 -on10,0,0,24,1,0,894,1594.000000,31,0,663.200000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,503,1563.000000,31,0,650.800000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,540,1540.000000,31,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,1140,1540.000000,31,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,993,1573.000000,32,0,654.800000,extended,lora,60 -on5,0,0,24,1,0,1062,1582.000000,32,0,658.400000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1308,1588.000000,32,0,660.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,900,1540.000000,32,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1969.000000,32,0,915.600000,extended,lora,60 -on6,0,0,24,1,0,179,1599.000000,32,0,665.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1020,1540.000000,33,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,540,1540.000000,33,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,452,1572.000000,33,0,654.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,193,1553.000000,33,0,646.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1080,1540.000000,33,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1991.000000,33,0,924.400000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1415,1575.000000,34,0,655.600000,extended,lora,60 -on0,1,5,24,0,0,0,2044.000000,34,0,945.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,300,1540.000000,34,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,1200,1540.000000,34,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,840,1540.000000,34,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,1020,1540.000000,34,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,720,1540.000000,35,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,780,1540.000000,35,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,641,1581.000000,35,0,658.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1200,1540.000000,35,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1384,1544.000000,35,0,643.200000,extended,lora,60 -on0,1,5,24,0,0,0,2014.000000,35,0,933.600000,extended,lora,60 -on0,1,7,24,0,0,0,2217.000000,36,0,1066.000000,extended,lora,60 -on11,0,0,24,1,0,1014,1594.000000,36,0,663.200000,extended,lora,60 -on1,0,0,24,1,0,484,1544.000000,36,0,643.200000,extended,lora,60 -on9,0,0,24,1,0,1306,1586.000000,36,0,660.000000,extended,lora,60 -on4,0,0,24,1,0,0,1540.000000,36,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,670,1550.000000,36,0,645.600000,extended,lora,60 -on2,0,0,24,1,0,420,1540.000000,36,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1020,1540.000000,36,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,360,1540.000000,37,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,1320,1540.000000,37,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,120,1540.000000,37,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,1250,1590.000000,37,0,661.600000,extended,lora,60 -on10,0,0,24,1,0,480,1540.000000,37,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,37,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2527.000000,37,0,1215.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,300,1540.000000,37,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,780,1540.000000,37,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,947,1587.000000,38,0,660.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,293,1593.000000,38,0,662.800000,extended,lora,60 -on9,0,0,24,1,0,633,1573.000000,38,0,654.800000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,319,1559.000000,38,0,649.200000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1840.000000,38,0,838.400000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,803,1563.000000,39,0,650.800000,extended,lora,60 -on4,0,0,24,1,0,926,1566.000000,39,0,652.000000,extended,lora,60 -on0,1,4,24,0,0,0,1840.000000,39,0,838.400000,extended,lora,60 -on5,0,0,23,1,0,468,1588.000000,39,0,660.800000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,18,1558.000000,39,0,648.800000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,260,1560.000000,40,0,649.600000,extended,lora,60 -on7,0,0,24,1,0,468,1588.000000,40,0,660.800000,extended,lora,60 -on10,0,0,24,1,0,120,1540.000000,40,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,540,1540.000000,40,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,744,1564.000000,40,0,651.200000,extended,lora,60 -on1,0,0,24,1,0,1380,1540.000000,40,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2199.000000,40,0,1058.800000,extended,lora,60 -on8,0,0,24,1,0,1177,1577.000000,40,0,656.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,16,1556.000000,41,0,648.000000,extended,lora,60 -on9,0,0,24,1,0,720,1540.000000,41,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1916.000000,41,0,868.800000,extended,lora,60 -on4,0,0,24,1,0,240,1540.000000,41,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,145,1565.000000,41,0,651.600000,extended,lora,60 -on6,0,0,24,1,0,240,1540.000000,42,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2044.000000,42,0,945.600000,extended,lora,60 -on11,0,0,24,1,0,960,1540.000000,42,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,480,1540.000000,42,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,0,1540.000000,42,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,99,1579.000000,42,0,657.200000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,362,1542.000000,43,0,642.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,300,1540.000000,43,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,38,1578.000000,43,0,656.800000,extended,lora,60 -on6,0,0,24,1,0,1140,1540.000000,43,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,845,1545.000000,43,0,643.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1432,1592.000000,43,0,662.400000,extended,lora,60 -on0,1,6,24,0,0,0,2069.000000,43,0,981.200000,extended,lora,60 -on0,1,6,24,0,0,0,2095.000000,44,0,991.600000,extended,lora,60 -on10,0,0,24,1,0,60,1540.000000,44,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,420,1540.000000,44,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1080,1540.000000,44,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,998,1578.000000,44,0,656.800000,extended,lora,60 -on9,0,0,24,1,0,540,1540.000000,44,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,653,1593.000000,44,0,662.800000,extended,lora,60 -on4,0,0,24,1,0,1336,1556.000000,45,0,648.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,lora,60 -on0,1,7,24,0,0,0,2140.000000,45,0,1035.200000,extended,lora,60 -on2,0,0,24,1,0,360,1540.000000,45,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,547,1547.000000,45,0,644.400000,extended,lora,60 -on9,0,0,24,1,0,85,1565.000000,45,0,651.600000,extended,lora,60 -on8,0,0,24,1,0,1010,1590.000000,45,0,661.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1125,1585.000000,45,0,659.600000,extended,lora,60 -on3,0,0,24,1,0,625,1565.000000,45,0,651.600000,extended,lora,60 -on0,1,6,24,0,0,0,2093.000000,46,0,990.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,87,1567.000000,46,0,652.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1200,1540.000000,46,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,478,1598.000000,46,0,664.800000,extended,lora,60 -on3,0,0,24,1,0,976,1556.000000,46,0,648.000000,extended,lora,60 -on9,0,0,24,1,0,480,1540.000000,46,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,905,1545.000000,46,0,643.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,420,1540.000000,47,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,300,1540.000000,47,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2008.000000,47,0,931.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1009,1589.000000,47,0,661.200000,extended,lora,60 -on10,0,0,24,1,0,811,1571.000000,47,0,654.000000,extended,lora,60 -on7,0,0,24,1,0,262,1562.000000,47,0,650.400000,extended,lora,60 -on2,0,0,24,1,0,765,1585.000000,48,0,659.600000,extended,lora,60 -on0,1,4,24,0,0,0,1853.000000,48,0,843.600000,extended,lora,60 -on6,0,0,24,1,0,940,1580.000000,48,0,657.600000,extended,lora,60 -on4,0,0,24,1,0,60,1540.000000,48,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,188,1548.000000,48,0,644.800000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,677,1557.000000,49,0,648.400000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1286,1566.000000,49,0,652.000000,extended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,49,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2137.000000,49,0,1008.400000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,60,1540.000000,49,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,427,1547.000000,49,0,644.400000,extended,lora,60 -on2,0,0,24,1,0,1140,1540.000000,49,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,900,1540.000000,50,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2332.000000,50,0,1137.600000,extended,lora,60 -on2,0,0,24,1,0,24,1564.000000,50,0,651.200000,extended,lora,60 -on3,0,0,24,1,0,1080,1540.000000,50,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,725,1545.000000,50,0,643.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,480,1540.000000,50,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,45,1585.000000,50,0,659.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1140,1540.000000,50,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,120,1540.000000,50,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,1200,1540.000000,51,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,180,1540.000000,51,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2124.000000,51,0,1003.200000,extended,lora,60 -on6,0,0,24,1,0,717,1597.000000,51,0,664.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1355,1575.000000,51,0,655.600000,extended,lora,60 -on11,0,0,24,1,0,929,1569.000000,51,0,653.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1080,1540.000000,51,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,360,1540.000000,52,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,0,1540.000000,52,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,540,1540.000000,52,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2105.000000,52,0,995.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1360,1580.000000,52,0,657.600000,extended,lora,60 -on11,0,0,24,1,0,297,1597.000000,52,0,664.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,730,1550.000000,52,0,645.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,540,1540.000000,53,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,420,1540.000000,53,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,240,1540.000000,53,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,600,1540.000000,53,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1068,1588.000000,53,0,660.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2148.000000,53,0,1012.800000,extended,lora,60 -on1,0,0,24,1,0,683,1563.000000,53,0,650.800000,extended,lora,60 -on6,0,0,24,1,0,0,1540.000000,54,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,457,1577.000000,54,0,656.400000,extended,lora,60 -on3,0,0,24,1,0,720,1540.000000,54,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1073,1593.000000,54,0,662.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1992.000000,54,0,924.800000,extended,lora,60 -on1,0,0,24,1,0,780,1540.000000,54,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,660,1540.000000,55,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,1080,1540.000000,55,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,960,1540.000000,55,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,401,1581.000000,55,0,658.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,540,1540.000000,55,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2035.000000,55,0,942.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1200,1540.000000,56,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on0,1,1,24,0,0,0,1569.000000,56,0,653.200000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,524,1584.000000,57,0,659.200000,extended,lora,60 -on0,1,4,24,0,0,0,1865.000000,57,0,848.400000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1165,1565.000000,57,0,651.600000,extended,lora,60 -on7,0,0,24,1,0,420,1540.000000,57,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,570,1570.000000,57,0,653.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,689,1569.000000,58,0,653.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,9,1549.000000,58,0,645.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,600,1540.000000,58,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1964.000000,58,0,913.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1068,1588.000000,58,0,660.800000,extended,lora,60 -on6,0,0,24,1,0,865,1565.000000,58,0,651.600000,extended,lora,60 -on8,0,0,24,1,0,0,1540.000000,59,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,1200,1540.000000,59,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,888,1588.000000,59,0,660.800000,extended,lora,60 -on10,0,0,24,1,0,360,1540.000000,59,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,lora,60 -on0,1,7,24,0,0,0,2282.000000,59,0,1092.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1080,1540.000000,59,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,540,1540.000000,59,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,240,1540.000000,59,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,1080,1540.000000,60,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,118,1598.000000,60,0,664.800000,extended,lora,60 -on2,0,0,24,1,0,1140,1540.000000,60,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,480,1540.000000,60,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,765,1585.000000,60,0,659.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2018.000000,60,0,935.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,488,1548.000000,61,0,644.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,660,1540.000000,61,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,60,1540.000000,61,0,641.600000,extended,lora,60 -on0,1,4,24,0,0,0,1889.000000,61,0,858.000000,extended,lora,60 -on2,0,0,24,1,0,589,1589.000000,61,0,661.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,951,1591.000000,62,0,662.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1096,1556.000000,62,0,648.000000,extended,lora,60 -on9,0,0,24,1,0,1423,1583.000000,62,0,658.800000,extended,lora,60 -on0,1,4,24,0,0,0,1840.000000,62,0,838.400000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,75,1555.000000,62,0,647.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1167,1567.000000,63,0,652.400000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,581,1581.000000,63,0,658.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,lora,60 -on0,1,7,24,0,0,0,2281.000000,63,0,1091.600000,extended,lora,60 -on6,0,0,24,1,0,360,1540.000000,63,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,600,1540.000000,63,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,280,1580.000000,63,0,657.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1320,1540.000000,63,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1080,1540.000000,63,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2016.000000,64,0,934.400000,extended,lora,60 -on8,0,0,24,1,0,240,1540.000000,64,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,180,1540.000000,64,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,1020,1540.000000,64,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,900,1540.000000,64,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,543,1543.000000,64,0,642.800000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,300,1540.000000,65,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1080,1540.000000,65,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,63,1543.000000,65,0,642.800000,extended,lora,60 -on0,1,6,24,0,0,0,2159.000000,65,0,1017.200000,extended,lora,60 -on11,0,0,24,1,0,221,1581.000000,65,0,658.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,900,1540.000000,65,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,480,1540.000000,65,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,60,1540.000000,66,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,240,1540.000000,66,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,66,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,421,1541.000000,66,0,642.000000,extended,lora,60 -on5,0,0,24,1,0,125,1545.000000,66,0,643.600000,extended,lora,60 -on3,0,0,24,1,0,1375,1595.000000,66,0,663.600000,extended,lora,60 -on8,0,0,24,1,0,1225,1565.000000,66,0,651.600000,extended,lora,60 -on4,0,0,24,1,0,1392,1552.000000,66,0,646.400000,extended,lora,60 -on0,1,8,24,0,0,0,2353.000000,66,0,1146.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,66,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,900,1540.000000,66,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1153,1553.000000,67,0,646.800000,extended,lora,60 -on3,0,0,24,1,0,43,1583.000000,67,0,658.800000,extended,lora,60 -on5,0,0,24,1,0,960,1540.000000,67,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,extended,lora,60 -on0,1,7,24,0,0,0,2280.000000,67,0,1091.200000,extended,lora,60 -on6,0,0,24,1,0,300,1540.000000,67,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,67,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,60,1540.000000,67,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,540,1540.000000,67,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,167,1587.000000,67,0,660.400000,extended,lora,60 -on7,0,0,24,1,0,0,1540.000000,68,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,500,1560.000000,68,0,649.600000,extended,lora,60 -on10,0,0,24,1,0,990,1570.000000,68,0,653.600000,extended,lora,60 -on1,0,0,24,1,0,1200,1540.000000,68,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,1260,1540.000000,68,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,lora,60 -on0,1,7,24,0,0,0,2185.000000,68,0,1053.200000,extended,lora,60 -on11,0,0,24,1,0,390,1570.000000,68,0,653.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1340,1560.000000,68,0,649.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,319,1559.000000,69,0,649.200000,extended,lora,60 -on0,1,3,24,0,0,0,1762.000000,69,0,781.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,240,1540.000000,69,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,471,1591.000000,69,0,662.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,540,1540.000000,70,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,660,1540.000000,70,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,420,1540.000000,70,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,1356,1576.000000,70,0,656.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2094.000000,70,0,991.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,787,1547.000000,70,0,644.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,35,1575.000000,70,0,655.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,213,1573.000000,71,0,654.800000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,60,1540.000000,71,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,480,1540.000000,71,0,641.600000,extended,lora,60 -on0,1,4,24,0,0,0,1921.000000,71,0,870.800000,extended,lora,60 -on3,0,0,24,1,0,540,1540.000000,71,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,853,1553.000000,72,0,646.800000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1262,1542.000000,72,0,642.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,385,1565.000000,72,0,651.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,lora,60 -on0,1,3,24,0,0,0,1740.000000,72,0,772.800000,extended,lora,60 -on5,0,0,24,1,0,1020,1540.000000,73,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,0,1540.000000,73,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,174,1594.000000,73,0,663.200000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1936.000000,73,0,876.800000,extended,lora,60 -on9,0,0,24,1,0,1353,1573.000000,73,0,654.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,447,1567.000000,74,0,652.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2050.000000,74,0,948.000000,extended,lora,60 -on2,0,0,24,1,0,1140,1540.000000,74,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1020,1540.000000,74,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,960,1540.000000,74,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,360,1540.000000,74,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1320,1540.000000,75,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,1220,1560.000000,75,0,649.600000,extended,lora,60 -on4,0,0,24,1,0,995,1575.000000,75,0,655.600000,extended,lora,60 -on3,0,0,24,1,0,479,1599.000000,75,0,665.200000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,790,1550.000000,75,0,645.600000,extended,lora,60 -on9,0,0,24,1,0,300,1540.000000,75,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,120,1540.000000,75,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,600,1540.000000,75,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2391.000000,75,0,1161.200000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,85,1565.000000,76,0,651.600000,extended,lora,60 -on3,0,0,24,1,0,1139,1599.000000,76,0,665.200000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,993,1573.000000,76,0,654.800000,extended,lora,60 -on1,0,0,24,1,0,1075,1595.000000,76,0,663.600000,extended,lora,60 -on9,0,0,24,1,0,574,1574.000000,76,0,655.200000,extended,lora,60 -on0,1,6,24,0,0,0,2040.000000,76,0,969.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,661,1541.000000,76,0,642.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,8,1548.000000,77,0,644.800000,extended,lora,60 -on10,0,0,24,1,0,60,1540.000000,77,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,1320,1540.000000,77,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1385,1545.000000,77,0,643.600000,extended,lora,60 -on0,1,4,24,0,0,0,1890.000000,77,0,858.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,913,1553.000000,78,0,646.800000,extended,lora,60 -on5,0,0,24,1,0,757,1577.000000,78,0,656.400000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1260,1540.000000,78,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,627,1567.000000,78,0,652.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1424,1584.000000,78,0,659.200000,extended,lora,60 -on0,1,5,24,0,0,0,1970.000000,78,0,916.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,120,1540.000000,79,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,660,1540.000000,79,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,724,1544.000000,79,0,643.200000,extended,lora,60 -on1,0,0,24,1,0,1200,1540.000000,79,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1911.000000,79,0,866.800000,extended,lora,60 -on9,0,0,24,1,0,619,1559.000000,80,0,649.200000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2203.000000,80,0,1034.800000,extended,lora,60 -on2,0,0,24,1,0,180,1540.000000,80,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1200,1540.000000,80,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,152,1572.000000,80,0,654.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1140,1540.000000,80,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,480,1540.000000,80,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,630,1570.000000,81,0,653.600000,extended,lora,60 -on8,0,0,24,1,0,154,1574.000000,81,0,655.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,lora,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,extended,lora,60 -on9,0,0,24,1,0,382,1562.000000,81,0,650.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1840.000000,81,0,838.400000,extended,lora,60 -on2,0,0,24,1,0,1291,1571.000000,81,0,654.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,446,1566.000000,82,0,652.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,705,1585.000000,82,0,659.600000,extended,lora,60 -on4,0,0,24,1,0,1200,1540.000000,82,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,180,1540.000000,82,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1945.000000,82,0,906.000000,extended,lora,60 -on2,0,0,24,1,0,275,1575.000000,82,0,655.600000,extended,lora,60 -on6,0,0,24,1,0,84,1564.000000,83,0,651.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,83,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1080,1540.000000,83,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,720,1540.000000,83,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1038,1558.000000,83,0,648.800000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,18,1558.000000,83,0,648.800000,extended,lora,60 -on4,0,0,24,1,0,1320,1540.000000,83,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,1380,1540.000000,83,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2398.000000,83,0,1164.000000,extended,lora,60 -on5,0,0,24,1,0,120,1540.000000,83,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,900,1540.000000,84,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,659,1599.000000,84,0,665.200000,extended,lora,60 -on2,0,0,24,1,0,340,1580.000000,84,0,657.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,442,1562.000000,84,0,650.400000,extended,lora,60 -on4,0,0,24,1,0,780,1540.000000,84,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,60,1540.000000,84,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2148.000000,84,0,1012.800000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,596,1596.000000,85,0,664.000000,extended,lora,60 -on8,0,0,24,1,0,669,1549.000000,85,0,645.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1071,1591.000000,85,0,662.000000,extended,lora,60 -on0,1,4,24,0,0,0,1890.000000,85,0,858.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1320,1540.000000,85,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,extended,lora,60 -on0,1,8,24,0,0,0,2337.000000,86,0,1139.600000,extended,lora,60 -on2,0,0,24,1,0,660,1540.000000,86,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,425,1545.000000,86,0,643.600000,extended,lora,60 -on8,0,0,24,1,0,831,1591.000000,86,0,662.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1320,1540.000000,86,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,86,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,588,1588.000000,86,0,660.800000,extended,lora,60 -on5,0,0,24,1,0,262,1562.000000,86,0,650.400000,extended,lora,60 -on3,0,0,24,1,0,997,1577.000000,86,0,656.400000,extended,lora,60 -on11,0,0,24,1,0,368,1548.000000,86,0,644.800000,extended,lora,60 -on10,0,0,24,1,0,1161,1561.000000,87,0,650.000000,extended,lora,60 -on1,0,0,24,1,0,932,1572.000000,87,0,654.400000,extended,lora,60 -on4,0,0,24,1,0,1397,1557.000000,87,0,648.400000,extended,lora,60 -on0,1,10,24,0,0,0,2597.000000,87,0,1294.800000,extended,lora,60 -on8,0,0,24,1,0,660,1540.000000,87,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,720,1540.000000,87,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,60,1540.000000,87,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,322,1562.000000,87,0,650.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,58,1598.000000,87,0,664.800000,extended,lora,60 -on9,0,0,24,1,0,384,1564.000000,87,0,651.200000,extended,lora,60 -on5,0,0,24,1,0,540,1540.000000,87,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,0,1540.000000,88,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1986.000000,88,0,922.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,379,1559.000000,88,0,649.200000,extended,lora,60 -on2,0,0,24,1,0,192,1552.000000,88,0,646.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,480,1540.000000,88,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,540,1540.000000,88,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,120,1540.000000,89,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,24,1564.000000,89,0,651.200000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,60,1540.000000,89,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,960,1540.000000,89,0,641.600000,extended,lora,60 -on0,1,4,24,0,0,0,1935.000000,89,0,876.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,510,1570.000000,90,0,653.600000,extended,lora,60 -on8,0,0,24,1,0,1380,1540.000000,90,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,1019,1599.000000,90,0,665.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1264,1544.000000,90,0,643.200000,extended,lora,60 -on4,0,0,24,1,0,360,1540.000000,90,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1997.000000,90,0,926.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1320,1540.000000,91,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2042.000000,91,0,944.800000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,240,1540.000000,91,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,420,1540.000000,91,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,354,1594.000000,91,0,663.200000,extended,lora,60 -on8,0,0,24,1,0,1140,1540.000000,91,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,480,1540.000000,92,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on0,1,3,24,0,0,0,1830.000000,92,0,808.800000,extended,lora,60 -on11,0,0,24,1,0,634,1574.000000,92,0,655.200000,extended,lora,60 -on1,0,0,24,1,0,1020,1540.000000,92,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,600,1540.000000,93,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,508,1568.000000,93,0,652.800000,extended,lora,60 -on7,0,0,24,1,0,120,1540.000000,93,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,244,1544.000000,93,0,643.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,60,1540.000000,93,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,900,1540.000000,93,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2241.000000,93,0,1075.600000,extended,lora,60 -on8,0,0,24,1,0,1001,1581.000000,93,0,658.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,780,1540.000000,94,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,349,1589.000000,94,0,661.200000,extended,lora,60 -on2,0,0,24,1,0,629,1569.000000,94,0,653.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1300,1580.000000,94,0,657.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1866.000000,94,0,848.800000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,326,1566.000000,95,0,652.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,540,1540.000000,95,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,1432,1592.000000,95,0,662.400000,extended,lora,60 -on0,1,7,24,0,0,0,2227.000000,95,0,1070.000000,extended,lora,60 -on4,0,0,24,1,0,0,1540.000000,95,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1020,1540.000000,95,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,360,1540.000000,95,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,96,1576.000000,95,0,656.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,720,1540.000000,96,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,1203,1543.000000,96,0,642.800000,extended,lora,60 -on4,0,0,24,1,0,1095,1555.000000,96,0,647.600000,extended,lora,60 -on7,0,0,24,1,0,599,1599.000000,96,0,665.200000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,0,1540.000000,96,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,1975.000000,96,0,918.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1196,1596.000000,97,0,664.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,420,1540.000000,97,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,298,1598.000000,97,0,664.800000,extended,lora,60 -on8,0,0,24,1,0,1080,1540.000000,97,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,60,1540.000000,97,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2207.000000,97,0,1062.000000,extended,lora,60 -on7,0,0,24,1,0,56,1596.000000,97,0,664.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,753,1573.000000,97,0,654.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1260,1540.000000,98,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,786,1546.000000,98,0,644.000000,extended,lora,60 -on11,0,0,24,1,0,1020,1540.000000,98,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1382,1542.000000,98,0,642.400000,extended,lora,60 -on0,1,6,24,0,0,0,2175.000000,98,0,1023.600000,extended,lora,60 -on1,0,0,24,1,0,983,1563.000000,98,0,650.800000,extended,lora,60 -on3,0,0,24,1,0,600,1540.000000,98,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,668,1548.000000,99,0,644.800000,extended,lora,60 -on8,0,0,24,1,0,0,1540.000000,99,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,83,1563.000000,99,0,650.800000,extended,lora,60 -on2,0,0,24,1,0,780,1540.000000,99,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,180,1540.000000,99,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,240,1540.000000,99,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,99,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,489,1549.000000,99,0,645.200000,extended,lora,60 -on3,0,0,24,1,0,420,1540.000000,99,0,641.600000,extended,lora,60 -on0,1,9,24,0,0,0,2470.000000,99,0,1218.400000,extended,lora,60 -on9,0,0,24,1,0,647,1587.000000,99,0,660.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1340,1560.000000,100,0,649.600000,extended,lora,60 -on2,0,0,24,1,0,920,1560.000000,100,0,649.600000,extended,lora,60 -on8,0,0,24,1,0,600,1540.000000,100,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1979.000000,100,0,919.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,195,1555.000000,100,0,647.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,129,1549.000000,100,0,645.200000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,103,1583.000000,101,0,658.800000,extended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,101,0,641.600000,extended,lora,60 -on0,1,4,24,0,0,0,1931.000000,101,0,874.800000,extended,lora,60 -on9,0,0,24,1,0,207,1567.000000,101,0,652.400000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,960,1540.000000,101,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,874,1574.000000,102,0,655.200000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,737,1557.000000,102,0,648.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on0,1,3,24,0,0,0,1740.000000,102,0,772.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1282,1562.000000,102,0,650.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,728,1548.000000,103,0,644.800000,extended,lora,60 -on5,0,0,24,1,0,382,1562.000000,103,0,650.400000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2115.000000,103,0,999.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1200,1540.000000,103,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,600,1540.000000,103,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,527,1587.000000,103,0,660.400000,extended,lora,60 -on11,0,0,24,1,0,1367,1587.000000,103,0,660.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,407,1587.000000,104,0,660.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2056.000000,104,0,976.000000,extended,lora,60 -on8,0,0,24,1,0,262,1562.000000,104,0,650.400000,extended,lora,60 -on7,0,0,24,1,0,1020,1540.000000,104,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,904,1544.000000,104,0,643.200000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,235,1595.000000,104,0,663.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,833,1593.000000,104,0,662.800000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,480,1540.000000,105,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,180,1540.000000,105,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1380,1540.000000,105,0,641.600000,extended,lora,60 -on0,1,4,24,0,0,0,1984.000000,105,0,896.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1361,1581.000000,105,0,658.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,780,1540.000000,106,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,240,1540.000000,106,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,1069,1589.000000,106,0,661.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,35,1575.000000,106,0,655.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1140,1540.000000,106,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,86,1566.000000,106,0,652.000000,extended,lora,60 -on10,0,0,24,1,0,1421,1581.000000,106,0,658.000000,extended,lora,60 -on0,1,7,24,0,0,0,2235.000000,106,0,1073.200000,extended,lora,60 -on1,0,0,24,1,0,300,1540.000000,107,0,641.600000,extended,lora,60 -on0,1,4,24,0,0,0,1873.000000,107,0,851.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,494,1554.000000,107,0,647.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1351,1571.000000,107,0,654.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1175,1575.000000,107,0,655.600000,extended,lora,60 -on7,0,0,24,1,0,420,1540.000000,108,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1885.000000,108,0,856.400000,extended,lora,60 -on10,0,0,24,1,0,144,1564.000000,108,0,651.200000,extended,lora,60 -on9,0,0,24,1,0,772,1592.000000,108,0,662.400000,extended,lora,60 -on8,0,0,24,1,0,366,1546.000000,108,0,644.000000,extended,lora,60 -on7,0,0,24,1,0,335,1575.000000,109,0,655.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1900.000000,109,0,862.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,60,1540.000000,109,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,625,1565.000000,109,0,651.600000,extended,lora,60 -on3,0,0,24,1,0,120,1540.000000,109,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2138.000000,110,0,1008.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,476,1596.000000,110,0,664.000000,extended,lora,60 -on3,0,0,24,1,0,27,1567.000000,110,0,652.400000,extended,lora,60 -on10,0,0,24,1,0,720,1540.000000,110,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,480,1540.000000,110,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,960,1540.000000,110,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,62,1542.000000,110,0,642.400000,extended,lora,60 -on0,1,6,24,0,0,0,2082.000000,111,0,986.400000,extended,lora,60 -on4,0,0,24,1,0,480,1540.000000,111,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,400,1580.000000,111,0,657.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,798,1558.000000,111,0,648.800000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1052,1572.000000,111,0,654.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,720,1540.000000,111,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,966,1546.000000,111,0,644.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1397,1557.000000,112,0,648.400000,extended,lora,60 -on0,1,7,24,0,0,0,2233.000000,112,0,1072.400000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,37,1577.000000,112,0,656.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,660,1540.000000,112,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,1163,1563.000000,112,0,650.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,815,1575.000000,112,0,655.600000,extended,lora,60 -on5,0,0,24,1,0,1289,1569.000000,112,0,653.200000,extended,lora,60 -on7,0,0,24,1,0,300,1540.000000,112,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,900,1540.000000,113,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,420,1540.000000,113,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on0,1,3,24,0,0,0,1811.000000,113,0,801.200000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,788,1548.000000,113,0,644.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,680,1560.000000,114,0,649.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1020,1540.000000,114,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,360,1540.000000,114,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,720,1540.000000,114,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,844,1544.000000,114,0,643.200000,extended,lora,60 -on1,0,0,24,1,0,780,1540.000000,114,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2113.000000,114,0,998.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2087.000000,115,0,988.400000,extended,lora,60 -on10,0,0,24,1,0,531,1591.000000,115,0,662.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,935,1575.000000,115,0,655.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,600,1540.000000,115,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,180,1540.000000,115,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,240,1540.000000,115,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,547,1547.000000,115,0,644.400000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1260,1540.000000,116,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2199.000000,116,0,1033.200000,extended,lora,60 -on2,0,0,24,1,0,540,1540.000000,116,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,1080,1540.000000,116,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,607,1547.000000,116,0,644.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,660,1540.000000,116,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,94,1574.000000,116,0,655.200000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,900,1540.000000,117,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,60,1540.000000,117,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1957.000000,117,0,885.200000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1020,1540.000000,117,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,360,1540.000000,117,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1212,1552.000000,118,0,646.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1327,1547.000000,118,0,644.400000,extended,lora,60 -on11,0,0,24,1,0,480,1540.000000,118,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,180,1540.000000,118,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,1414,1574.000000,118,0,655.200000,extended,lora,60 -on0,1,6,24,0,0,0,2071.000000,118,0,982.000000,extended,lora,60 -on5,0,0,24,1,0,360,1540.000000,118,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1218,1558.000000,119,0,648.800000,extended,lora,60 -on8,0,0,24,1,0,1020,1540.000000,119,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,300,1540.000000,119,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,360,1540.000000,119,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,900,1540.000000,119,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,39,1579.000000,119,0,657.200000,extended,lora,60 -on7,0,0,24,1,0,1319,1599.000000,119,0,665.200000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,119,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,824,1584.000000,119,0,659.200000,extended,lora,60 -on11,0,0,24,1,0,1380,1540.000000,119,0,641.600000,extended,lora,60 -on0,1,9,24,0,0,0,2504.000000,119,0,1232.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,607,1547.000000,120,0,644.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,844,1544.000000,120,0,643.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,420,1540.000000,120,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,491,1551.000000,120,0,646.000000,extended,lora,60 -on6,0,0,24,1,0,780,1540.000000,120,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1993.000000,120,0,925.200000,extended,lora,60 -on8,0,0,24,1,0,240,1540.000000,121,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1329,1549.000000,121,0,645.200000,extended,lora,60 -on3,0,0,24,1,0,660,1540.000000,121,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,120,1540.000000,121,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,778,1598.000000,121,0,664.800000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2091.000000,121,0,990.000000,extended,lora,60 -on4,0,0,24,1,0,1265,1545.000000,121,0,643.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1140,1540.000000,122,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,122,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2018.000000,122,0,935.200000,extended,lora,60 -on5,0,0,24,1,0,322,1562.000000,122,0,650.400000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,833,1593.000000,122,0,662.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,120,1540.000000,122,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,318,1558.000000,123,0,648.800000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,240,1540.000000,123,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,795,1555.000000,123,0,647.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,535,1595.000000,123,0,663.600000,extended,lora,60 -on10,0,0,24,1,0,431,1551.000000,123,0,646.000000,extended,lora,60 -on0,1,5,24,0,0,0,1975.000000,123,0,918.000000,extended,lora,60 -on1,0,0,24,1,0,1131,1591.000000,124,0,662.000000,extended,lora,60 -on2,0,0,24,1,0,720,1540.000000,124,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,600,1540.000000,124,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,124,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,480,1540.000000,124,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,563,1563.000000,124,0,650.800000,extended,lora,60 -on8,0,0,24,1,0,0,1540.000000,124,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,300,1540.000000,124,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,124,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1380,1540.000000,124,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2375.000000,124,0,1154.800000,extended,lora,60 -on6,0,0,24,1,0,32,1572.000000,125,0,654.400000,extended,lora,60 -on2,0,0,24,1,0,212,1572.000000,125,0,654.400000,extended,lora,60 -on8,0,0,24,1,0,809,1569.000000,125,0,653.200000,extended,lora,60 -on3,0,0,24,1,0,900,1540.000000,125,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,600,1540.000000,125,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2012.000000,125,0,932.800000,extended,lora,60 -on9,0,0,24,1,0,424,1544.000000,126,0,643.200000,extended,lora,60 -on11,0,0,24,1,0,278,1578.000000,126,0,656.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,126,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,180,1540.000000,126,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2296.000000,126,0,1123.200000,extended,lora,60 -on6,0,0,24,1,0,607,1547.000000,126,0,644.400000,extended,lora,60 -on2,0,0,24,1,0,327,1567.000000,126,0,652.400000,extended,lora,60 -on3,0,0,24,1,0,130,1550.000000,126,0,645.600000,extended,lora,60 -on5,0,0,24,1,0,660,1540.000000,126,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,1106,1566.000000,126,0,652.000000,extended,lora,60 -on4,0,0,24,1,0,0,1540.000000,127,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2097.000000,127,0,992.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,411,1591.000000,127,0,662.000000,extended,lora,60 -on11,0,0,24,1,0,960,1540.000000,127,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1320,1540.000000,127,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,554,1554.000000,127,0,647.200000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,294,1594.000000,127,0,663.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,614,1554.000000,128,0,647.200000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1324,1544.000000,128,0,643.200000,extended,lora,60 -on4,0,0,24,1,0,960,1540.000000,128,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,209,1569.000000,128,0,653.200000,extended,lora,60 -on2,0,0,24,1,0,303,1543.000000,128,0,642.800000,extended,lora,60 -on0,1,5,24,0,0,0,1950.000000,128,0,908.000000,extended,lora,60 -on1,0,0,24,1,0,276,1576.000000,129,0,656.000000,extended,lora,60 -on0,1,6,24,0,0,0,2040.000000,129,0,969.600000,extended,lora,60 -on4,0,0,24,1,0,712,1592.000000,129,0,662.400000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,779,1599.000000,129,0,665.200000,extended,lora,60 -on3,0,0,24,1,0,945,1585.000000,129,0,659.600000,extended,lora,60 -on10,0,0,24,1,0,16,1556.000000,129,0,648.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1115,1575.000000,129,0,655.600000,extended,lora,60 -on8,0,0,24,1,0,686,1566.000000,130,0,652.000000,extended,lora,60 -on3,0,0,24,1,0,360,1540.000000,130,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,322,1562.000000,130,0,650.400000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,130,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,794,1554.000000,130,0,647.200000,extended,lora,60 -on4,0,0,24,1,0,594,1594.000000,130,0,663.200000,extended,lora,60 -on5,0,0,24,1,0,179,1599.000000,130,0,665.200000,extended,lora,60 -on0,1,8,24,0,0,0,2327.000000,130,0,1135.600000,extended,lora,60 -on1,0,0,24,1,0,862,1562.000000,130,0,650.400000,extended,lora,60 -on2,0,0,24,1,0,1200,1540.000000,130,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,987,1567.000000,131,0,652.400000,extended,lora,60 -on7,0,0,24,1,0,540,1540.000000,131,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,720,1540.000000,131,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,98,1578.000000,131,0,656.800000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,360,1540.000000,131,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2045.000000,131,0,946.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,277,1577.000000,132,0,656.400000,extended,lora,60 -on4,0,0,24,1,0,1380,1540.000000,132,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2091.000000,132,0,990.000000,extended,lora,60 -on11,0,0,24,1,0,634,1574.000000,132,0,655.200000,extended,lora,60 -on7,0,0,24,1,0,60,1540.000000,132,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1031,1551.000000,132,0,646.000000,extended,lora,60 -on10,0,0,24,1,0,159,1579.000000,132,0,657.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,58,1598.000000,133,0,664.800000,extended,lora,60 -on10,0,0,24,1,0,540,1540.000000,133,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,117,1597.000000,133,0,664.400000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,120,1540.000000,133,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,480,1540.000000,133,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,420,1540.000000,133,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2333.000000,133,0,1138.000000,extended,lora,60 -on9,0,0,24,1,0,865,1565.000000,133,0,651.600000,extended,lora,60 -on2,0,0,24,1,0,634,1574.000000,133,0,655.200000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,134,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,134,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,840,1540.000000,134,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,120,1540.000000,134,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,240,1540.000000,134,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,710,1590.000000,134,0,661.600000,extended,lora,60 -on5,0,0,24,1,0,1200,1540.000000,134,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,1109,1569.000000,134,0,653.200000,extended,lora,60 -on8,0,0,24,1,0,720,1540.000000,134,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,600,1540.000000,134,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2389.000000,134,0,1160.400000,extended,lora,60 -on0,1,8,24,0,0,0,2406.000000,135,0,1167.200000,extended,lora,60 -on6,0,0,24,1,0,913,1553.000000,135,0,646.800000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1020,1540.000000,135,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1228,1568.000000,135,0,652.800000,extended,lora,60 -on7,0,0,24,1,0,240,1540.000000,135,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,840,1540.000000,135,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,831,1591.000000,135,0,662.000000,extended,lora,60 -on8,0,0,24,1,0,420,1540.000000,135,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,480,1540.000000,135,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,0,1540.000000,136,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,649,1589.000000,136,0,661.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,240,1540.000000,136,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,86,1566.000000,136,0,652.000000,extended,lora,60 -on4,0,0,24,1,0,989,1569.000000,136,0,653.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2006.000000,136,0,930.400000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1020,1540.000000,137,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,660,1540.000000,137,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,900,1540.000000,137,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,610,1550.000000,137,0,645.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,360,1540.000000,137,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,120,1540.000000,137,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,1380,1540.000000,137,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2498.000000,137,0,1204.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,420,1540.000000,137,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,540,1540.000000,138,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,671,1551.000000,138,0,646.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,84,1564.000000,138,0,651.200000,extended,lora,60 -on4,0,0,24,1,0,732,1552.000000,138,0,646.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1844.000000,138,0,840.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1200,1540.000000,139,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,1380,1540.000000,139,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2290.000000,139,0,1095.200000,extended,lora,60 -on7,0,0,24,1,0,37,1577.000000,139,0,656.400000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,977,1557.000000,139,0,648.400000,extended,lora,60 -on5,0,0,24,1,0,1140,1540.000000,139,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,282,1582.000000,139,0,658.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,360,1540.000000,139,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1080,1540.000000,140,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,274,1574.000000,140,0,655.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,600,1540.000000,140,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,120,1540.000000,140,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,76,1556.000000,140,0,648.000000,extended,lora,60 -on0,1,6,24,0,0,0,2119.000000,140,0,1001.200000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,713,1593.000000,140,0,662.800000,extended,lora,60 -on3,0,0,24,1,0,300,1540.000000,141,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,599,1599.000000,141,0,665.200000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1890.000000,141,0,858.400000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,974,1554.000000,141,0,647.200000,extended,lora,60 -on11,0,0,24,1,0,120,1540.000000,141,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,720,1540.000000,142,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,924,1564.000000,142,0,651.200000,extended,lora,60 -on3,0,0,24,1,0,95,1575.000000,142,0,655.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,300,1540.000000,142,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,900,1540.000000,142,0,641.600000,extended,lora,60 -on0,1,5,24,0,0,0,2024.000000,142,0,937.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,300,1540.000000,143,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,360,1540.000000,143,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2166.000000,143,0,1020.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,498,1558.000000,143,0,648.800000,extended,lora,60 -on6,0,0,24,1,0,1200,1540.000000,143,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,660,1540.000000,143,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1031,1551.000000,143,0,646.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,42,1582.000000,144,0,658.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1883.000000,144,0,855.600000,extended,lora,60 -on10,0,0,24,1,0,1310,1590.000000,144,0,661.600000,extended,lora,60 -on7,0,0,24,1,0,600,1540.000000,144,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,780,1540.000000,144,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,720,1540.000000,145,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,32,1572.000000,145,0,654.400000,extended,lora,60 -on8,0,0,24,1,0,300,1540.000000,145,0,641.600000,extended,lora,60 -on0,1,9,24,0,0,0,2395.000000,145,0,1188.400000,extended,lora,60 -on5,0,0,24,1,0,908,1548.000000,145,0,644.800000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,145,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,539,1599.000000,145,0,665.200000,extended,lora,60 -on4,0,0,24,1,0,1365,1585.000000,145,0,659.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,433,1553.000000,145,0,646.800000,extended,lora,60 -on9,0,0,24,1,0,1020,1540.000000,145,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,1185,1585.000000,145,0,659.600000,extended,lora,60 -on0,1,7,24,0,0,0,2260.000000,146,0,1083.200000,extended,lora,60 -on5,0,0,24,1,0,480,1540.000000,146,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,240,1540.000000,146,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,1080,1540.000000,146,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,1341,1561.000000,146,0,650.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,360,1540.000000,146,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,220,1580.000000,146,0,657.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,146,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1076,1596.000000,146,0,664.000000,extended,lora,60 -on4,0,0,24,1,0,969,1549.000000,147,0,645.200000,extended,lora,60 -on5,0,0,24,1,0,455,1575.000000,147,0,655.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1200,1540.000000,147,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,609,1549.000000,147,0,645.200000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1882.000000,147,0,855.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,611,1551.000000,148,0,646.000000,extended,lora,60 -on10,0,0,24,1,0,180,1540.000000,148,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,2,1542.000000,148,0,642.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,148,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,960,1540.000000,148,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,900,1540.000000,148,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,468,1588.000000,148,0,660.800000,extended,lora,60 -on0,1,7,24,0,0,0,2217.000000,148,0,1066.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,743,1563.000000,148,0,650.800000,extended,lora,60 -on4,0,0,24,1,0,629,1569.000000,149,0,653.200000,extended,lora,60 -on2,0,0,24,1,0,1379,1599.000000,149,0,665.200000,extended,lora,60 -on6,0,0,24,1,0,538,1598.000000,149,0,664.800000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,149,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,285,1585.000000,149,0,659.600000,extended,lora,60 -on0,1,7,24,0,0,0,2143.000000,149,0,1036.400000,extended,lora,60 -on10,0,0,24,1,0,1020,1540.000000,149,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,18,1558.000000,149,0,648.800000,extended,lora,60 -on9,0,0,24,1,0,467,1587.000000,149,0,660.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,149,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1178,1578.000000,150,0,656.800000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,19,1559.000000,150,0,649.200000,extended,lora,60 -on2,0,0,24,1,0,455,1575.000000,150,0,655.600000,extended,lora,60 -on6,0,0,24,1,0,876,1576.000000,150,0,656.000000,extended,lora,60 -on0,1,6,24,0,0,0,2053.000000,150,0,974.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,551,1551.000000,150,0,646.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,120,1540.000000,150,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,780,1540.000000,151,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,583,1583.000000,151,0,658.800000,extended,lora,60 -on11,0,0,24,1,0,1080,1540.000000,151,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,382,1562.000000,151,0,650.400000,extended,lora,60 -on2,0,0,24,1,0,660,1540.000000,151,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,720,1540.000000,151,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,600,1540.000000,151,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2421.000000,151,0,1173.200000,extended,lora,60 -on1,0,0,24,1,0,420,1540.000000,151,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,0,1540.000000,152,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,960,1540.000000,152,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,1100,1560.000000,152,0,649.600000,extended,lora,60 -on5,0,0,24,1,0,1055,1575.000000,152,0,655.600000,extended,lora,60 -on3,0,0,24,1,0,470,1590.000000,152,0,661.600000,extended,lora,60 -on4,0,0,24,1,0,60,1540.000000,152,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2125.000000,152,0,1003.600000,extended,lora,60 -on1,0,0,24,1,0,600,1540.000000,153,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,153,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,840,1540.000000,153,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,971,1551.000000,153,0,646.000000,extended,lora,60 -on4,0,0,24,1,0,300,1540.000000,153,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,1380,1540.000000,153,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2257.000000,153,0,1082.000000,extended,lora,60 -on2,0,0,24,1,0,811,1571.000000,153,0,654.000000,extended,lora,60 -on5,0,0,24,1,0,1290,1570.000000,153,0,653.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,153,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,480,1540.000000,154,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1219,1559.000000,154,0,649.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,lora,60 -on0,1,3,24,0,0,0,1775.000000,154,0,786.800000,extended,lora,60 -on6,0,0,24,1,0,1066,1586.000000,154,0,660.000000,extended,lora,60 -on0,1,5,24,0,0,0,2002.000000,155,0,928.800000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,589,1589.000000,155,0,661.200000,extended,lora,60 -on7,0,0,24,1,0,1260,1540.000000,155,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1101,1561.000000,155,0,650.000000,extended,lora,60 -on11,0,0,24,1,0,257,1557.000000,155,0,648.400000,extended,lora,60 -on8,0,0,24,1,0,60,1540.000000,155,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,1320,1540.000000,156,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,156,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,74,1554.000000,156,0,647.200000,extended,lora,60 -on9,0,0,24,1,0,600,1540.000000,156,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1,1541.000000,156,0,642.000000,extended,lora,60 -on10,0,0,24,1,0,180,1540.000000,156,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,440,1560.000000,156,0,649.600000,extended,lora,60 -on5,0,0,24,1,0,737,1557.000000,156,0,648.400000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,extended,lora,60 -on0,1,8,24,0,0,0,2304.000000,156,0,1126.400000,extended,lora,60 -on6,0,0,24,1,0,780,1540.000000,156,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,640,1580.000000,157,0,657.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,167,1587.000000,157,0,660.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,180,1540.000000,157,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,900,1540.000000,157,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1061,1581.000000,157,0,658.000000,extended,lora,60 -on0,1,5,24,0,0,0,2036.000000,157,0,942.400000,extended,lora,60 -on10,0,0,24,1,0,540,1540.000000,158,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,508,1568.000000,158,0,652.800000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,459,1579.000000,158,0,657.200000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,840,1540.000000,158,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2116.000000,158,0,1000.000000,extended,lora,60 -on9,0,0,24,1,0,240,1540.000000,158,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,206,1566.000000,158,0,652.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,807,1567.000000,159,0,652.400000,extended,lora,60 -on0,1,6,24,0,0,0,2040.000000,159,0,969.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,706,1586.000000,159,0,660.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,155,1575.000000,159,0,655.600000,extended,lora,60 -on5,0,0,24,1,0,562,1562.000000,159,0,650.400000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1157,1557.000000,159,0,648.400000,extended,lora,60 -on4,0,0,24,1,0,250,1550.000000,159,0,645.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,304,1544.000000,160,0,643.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,10,1550.000000,160,0,645.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1110,1570.000000,160,0,653.600000,extended,lora,60 -on5,0,0,24,1,0,152,1572.000000,160,0,654.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2092.000000,160,0,990.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,480,1540.000000,160,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,360,1540.000000,160,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,180,1540.000000,161,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,247,1547.000000,161,0,644.400000,extended,lora,60 -on0,1,5,24,0,0,0,2148.000000,161,0,987.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1200,1540.000000,161,0,641.600000,extended,lora,60 -on4,0,0,23,1,0,0,1532.000000,161,0,638.400000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,720,1540.000000,161,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,271,1571.000000,162,0,654.000000,extended,lora,60 -on5,0,0,24,1,0,180,1540.000000,162,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1020,1540.000000,162,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,480,1540.000000,162,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,1364,1584.000000,162,0,659.200000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,360,1540.000000,162,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2302.000000,162,0,1100.000000,extended,lora,60 -on10,0,0,24,1,0,1260,1540.000000,162,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,943,1583.000000,163,0,658.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,85,1565.000000,163,0,651.600000,extended,lora,60 -on4,0,0,24,1,0,335,1575.000000,163,0,655.600000,extended,lora,60 -on3,0,0,24,1,0,1020,1540.000000,163,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2173.000000,163,0,1048.400000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1183,1583.000000,163,0,658.800000,extended,lora,60 -on9,0,0,24,1,0,1352,1572.000000,163,0,654.400000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,366,1546.000000,163,0,644.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,99,1579.000000,164,0,657.200000,extended,lora,60 -on0,1,7,24,0,0,0,2208.000000,164,0,1062.400000,extended,lora,60 -on11,0,0,24,1,0,681,1561.000000,164,0,650.000000,extended,lora,60 -on9,0,0,24,1,0,120,1540.000000,164,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,180,1540.000000,164,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1144,1544.000000,164,0,643.200000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,164,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,420,1540.000000,164,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,571,1571.000000,164,0,654.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1940.000000,165,0,878.400000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,420,1540.000000,165,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,780,1540.000000,165,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,840,1540.000000,165,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,515,1575.000000,165,0,655.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,840,1540.000000,166,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2236.000000,166,0,1073.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,420,1540.000000,166,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,960,1540.000000,166,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,283,1583.000000,166,0,658.800000,extended,lora,60 -on10,0,0,24,1,0,638,1578.000000,166,0,656.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,312,1552.000000,166,0,646.400000,extended,lora,60 -on5,0,0,24,1,0,1156,1556.000000,166,0,648.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,154,1574.000000,167,0,655.200000,extended,lora,60 -on11,0,0,24,1,0,119,1599.000000,167,0,665.200000,extended,lora,60 -on4,0,0,24,1,0,533,1593.000000,167,0,662.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1840.000000,167,0,838.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1371,1591.000000,167,0,662.000000,extended,lora,60 -on0,1,7,24,0,0,0,2319.000000,168,0,1106.800000,extended,lora,60 -on5,0,0,24,1,0,180,1540.000000,168,0,641.600000,extended,lora,60 -on1,0,0,24,1,0,716,1596.000000,168,0,664.000000,extended,lora,60 -on9,0,0,24,1,0,900,1540.000000,168,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,120,1540.000000,168,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,597,1597.000000,168,0,664.400000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,1140,1540.000000,168,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,840,1540.000000,168,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,1252,1592.000000,169,0,662.400000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,516,1576.000000,169,0,656.000000,extended,lora,60 -on5,0,0,24,1,0,205,1565.000000,169,0,651.600000,extended,lora,60 -on6,0,0,24,1,0,713,1593.000000,169,0,662.800000,extended,lora,60 -on11,0,0,24,1,0,259,1559.000000,169,0,649.200000,extended,lora,60 -on0,1,7,24,0,0,0,2183.000000,169,0,1052.400000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,360,1540.000000,169,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,600,1540.000000,169,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,221,1581.000000,170,0,658.000000,extended,lora,60 -on10,0,0,24,1,0,240,1540.000000,170,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,587,1587.000000,170,0,660.400000,extended,lora,60 -on6,0,0,24,1,0,480,1540.000000,170,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,170,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,426,1546.000000,170,0,644.000000,extended,lora,60 -on1,0,0,24,1,0,1104,1564.000000,170,0,651.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,170,0,641.600000,extended,lora,60 -on0,1,8,24,0,0,0,2352.000000,170,0,1145.600000,extended,lora,60 -on8,0,0,24,1,0,600,1540.000000,170,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,420,1540.000000,171,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,1178,1578.000000,171,0,656.800000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,221,1581.000000,171,0,658.000000,extended,lora,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,710,1590.000000,171,0,661.600000,extended,lora,60 -on11,0,0,24,1,0,405,1585.000000,171,0,659.600000,extended,lora,60 -on9,0,0,24,1,0,658,1598.000000,171,0,664.800000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,171,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2049.000000,171,0,973.200000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,532,1592.000000,172,0,662.400000,extended,lora,60 -on9,0,0,24,1,0,265,1565.000000,172,0,651.600000,extended,lora,60 -on0,1,6,24,0,0,0,2120.000000,172,0,1001.600000,extended,lora,60 -on1,0,0,24,1,0,1320,1540.000000,172,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,120,1540.000000,172,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1260,1540.000000,172,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,1020,1540.000000,172,0,641.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1166,1566.000000,173,0,652.000000,extended,lora,60 -on10,0,0,24,1,0,1320,1540.000000,173,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,173,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,173,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,120,1540.000000,173,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,173,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2253.000000,173,0,1080.400000,extended,lora,60 -on3,0,0,24,1,0,480,1540.000000,173,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,19,1559.000000,173,0,649.200000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,766,1586.000000,173,0,660.000000,extended,lora,60 -on11,0,0,24,1,0,900,1540.000000,174,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,174,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2178.000000,174,0,1024.800000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,60,1540.000000,174,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,1114,1574.000000,174,0,655.200000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1308,1588.000000,174,0,660.800000,extended,lora,60 -on9,0,0,24,1,0,660,1540.000000,174,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,540,1540.000000,175,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,20,1560.000000,175,0,649.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,175,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2130.000000,175,0,1005.600000,extended,lora,60 -on3,0,0,24,1,0,962,1542.000000,175,0,642.400000,extended,lora,60 -on6,0,0,24,1,0,1020,1540.000000,175,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,120,1540.000000,175,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,1238,1578.000000,176,0,656.800000,extended,lora,60 -on11,0,0,24,1,0,1380,1540.000000,176,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2129.000000,176,0,1005.200000,extended,lora,60 -on10,0,0,24,1,0,1140,1540.000000,176,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,309,1549.000000,176,0,645.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,290,1590.000000,176,0,661.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,180,1540.000000,176,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,1260,1540.000000,177,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,177,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2258.000000,177,0,1082.400000,extended,lora,60 -on9,0,0,24,1,0,480,1540.000000,177,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,120,1540.000000,177,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,187,1547.000000,177,0,644.400000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,110,1590.000000,177,0,661.600000,extended,lora,60 -on2,0,0,24,1,0,432,1552.000000,177,0,646.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1246,1586.000000,178,0,660.000000,extended,lora,60 -on5,0,0,24,1,0,1320,1540.000000,178,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,878,1578.000000,178,0,656.800000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1020,1540.000000,178,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2117.000000,178,0,1000.400000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,926,1566.000000,178,0,652.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,240,1540.000000,178,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,300,1540.000000,179,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,1200,1540.000000,179,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,1368,1588.000000,179,0,660.800000,extended,lora,60 -on4,0,0,24,1,0,926,1566.000000,179,0,652.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1149,1549.000000,179,0,645.200000,extended,lora,60 -on5,0,0,24,1,0,391,1571.000000,179,0,654.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,1380,1540.000000,179,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2197.000000,179,0,1058.000000,extended,lora,60 -on11,0,0,24,1,0,1433,1593.000000,180,0,662.800000,extended,lora,60 -on0,1,5,24,0,0,0,2038.000000,180,0,943.200000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,240,1540.000000,180,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,320,1560.000000,180,0,649.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,585,1585.000000,180,0,659.600000,extended,lora,60 -on2,0,0,24,1,0,0,1540.000000,180,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,377,1557.000000,181,0,648.400000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1315,1595.000000,181,0,663.600000,extended,lora,60 -on8,0,0,24,1,0,900,1540.000000,181,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,14,1554.000000,181,0,647.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,165,1585.000000,181,0,659.600000,extended,lora,60 -on0,1,5,24,0,0,0,1977.000000,181,0,918.800000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,0,1540.000000,182,0,641.600000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,304,1544.000000,182,0,643.200000,extended,lora,60 -on6,0,0,24,1,0,476,1596.000000,182,0,664.000000,extended,lora,60 -on7,0,0,24,1,0,750,1570.000000,182,0,653.600000,extended,lora,60 -on11,0,0,24,1,0,1037,1557.000000,182,0,648.400000,extended,lora,60 -on0,1,8,24,0,0,0,2287.000000,182,0,1119.600000,extended,lora,60 -on8,0,0,24,1,0,180,1540.000000,182,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1366,1586.000000,182,0,660.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,182,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,626,1566.000000,182,0,652.000000,extended,lora,60 -on10,0,0,24,1,0,179,1599.000000,183,0,665.200000,extended,lora,60 -on1,0,0,24,1,0,510,1570.000000,183,0,653.600000,extended,lora,60 -on8,0,0,24,1,0,860,1560.000000,183,0,649.600000,extended,lora,60 -on4,0,0,24,1,0,926,1566.000000,183,0,652.000000,extended,lora,60 -on3,0,0,24,1,0,300,1540.000000,183,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,183,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,183,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1140,1540.000000,183,0,641.600000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,183,0,576.000000,extended,lora,60 -on0,1,8,24,0,0,0,2368.000000,183,0,1152.000000,extended,lora,60 -on5,0,0,24,1,0,180,1540.000000,183,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,60,1540.000000,183,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,499,1559.000000,184,0,649.200000,extended,lora,60 -on8,0,0,24,1,0,360,1540.000000,184,0,641.600000,extended,lora,60 -on7,0,0,24,1,0,420,1540.000000,184,0,641.600000,extended,lora,60 -on6,0,0,24,1,0,814,1574.000000,184,0,655.200000,extended,lora,60 -on2,0,0,24,1,0,872,1572.000000,184,0,654.400000,extended,lora,60 -on5,0,0,24,1,0,720,1540.000000,184,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,184,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,extended,lora,60 -on0,1,8,24,0,0,0,2357.000000,184,0,1147.600000,extended,lora,60 -on3,0,0,24,1,0,540,1540.000000,184,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,600,1540.000000,184,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1081,1541.000000,185,0,642.000000,extended,lora,60 -on2,0,0,24,1,0,600,1540.000000,185,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2146.000000,185,0,1012.000000,extended,lora,60 -on4,0,0,24,1,0,809,1569.000000,185,0,653.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,300,1540.000000,185,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,180,1540.000000,185,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,0,1540.000000,185,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,840,1540.000000,186,0,641.600000,extended,lora,60 -on0,1,3,24,0,0,0,1888.000000,186,0,832.000000,extended,lora,60 -on4,0,0,24,1,0,660,1540.000000,186,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1020,1540.000000,186,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2135.000000,187,0,1007.600000,extended,lora,60 -on10,0,0,24,1,0,1260,1540.000000,187,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1092,1552.000000,187,0,646.400000,extended,lora,60 -on11,0,0,24,1,0,1140,1540.000000,187,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,900,1540.000000,187,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,180,1540.000000,187,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,54,1594.000000,187,0,663.200000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,540,1540.000000,188,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1380,1540.000000,188,0,641.600000,extended,lora,60 -on0,1,7,24,0,0,0,2235.000000,188,0,1073.200000,extended,lora,60 -on10,0,0,24,1,0,350,1590.000000,188,0,661.600000,extended,lora,60 -on3,0,0,24,1,0,360,1540.000000,188,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,945,1585.000000,188,0,659.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,188,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,539,1599.000000,188,0,665.200000,extended,lora,60 -on1,0,0,24,1,0,1140,1540.000000,188,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,188,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,780,1540.000000,189,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,1200,1540.000000,189,0,641.600000,extended,lora,60 -on5,0,0,24,1,0,1020,1540.000000,189,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,1984.000000,189,0,921.600000,extended,lora,60 -on10,0,0,24,1,0,720,1540.000000,189,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1313,1593.000000,189,0,662.800000,extended,lora,60 -on5,0,0,24,1,0,363,1543.000000,190,0,642.800000,extended,lora,60 -on0,1,5,24,0,0,0,1981.000000,190,0,920.400000,extended,lora,60 -on9,0,0,24,1,0,60,1540.000000,190,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,600,1540.000000,190,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,155,1575.000000,190,0,655.600000,extended,lora,60 -on2,0,0,24,1,0,720,1540.000000,190,0,641.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,60,1540.000000,191,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,244,1544.000000,191,0,643.200000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,1080,1540.000000,191,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,lora,60 -on0,1,5,24,0,0,0,2013.000000,191,0,933.200000,extended,lora,60 -on4,0,0,24,1,0,1140,1540.000000,191,0,641.600000,extended,lora,60 -on8,0,0,24,1,0,1215,1555.000000,191,0,647.600000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,lora,60 -on4,0,0,24,1,0,1041,1561.000000,192,0,650.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,1428,1588.000000,192,0,660.800000,extended,lora,60 -on0,1,5,24,0,0,0,1991.000000,192,0,924.400000,extended,lora,60 -on10,0,0,24,1,0,1246,1586.000000,192,0,660.000000,extended,lora,60 -on1,0,0,24,1,0,60,1540.000000,192,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,lora,60 -on11,0,0,24,1,0,949,1589.000000,192,0,661.200000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,420,1540.000000,193,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,720,1540.000000,193,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1034,1554.000000,193,0,647.200000,extended,lora,60 -on7,0,0,24,1,0,859,1559.000000,193,0,649.200000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2177.000000,193,0,1024.400000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,300,1540.000000,193,0,641.600000,extended,lora,60 -on2,0,0,24,1,0,120,1540.000000,193,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,1260,1540.000000,194,0,641.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,194,0,576.000000,extended,lora,60 -on10,0,0,24,1,0,770,1590.000000,194,0,661.600000,extended,lora,60 -on1,0,0,24,1,0,1408,1568.000000,194,0,652.800000,extended,lora,60 -on0,1,6,24,0,0,0,2064.000000,194,0,979.200000,extended,lora,60 -on6,0,0,24,1,0,699,1579.000000,194,0,657.200000,extended,lora,60 -on4,0,0,24,1,0,116,1596.000000,194,0,664.000000,extended,lora,60 -on5,0,0,24,1,0,1219,1559.000000,194,0,649.200000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,194,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,extended,lora,60 -on2,0,0,23,0,0,1438,1438.000000,194,0,575.200000,extended,lora,60 -on6,0,0,24,1,0,764,1584.000000,195,0,659.200000,extended,lora,60 -on8,0,0,24,1,0,840,1540.000000,195,0,641.600000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,9,1549.000000,195,0,645.200000,extended,lora,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,60,1540.000000,195,0,641.600000,extended,lora,60 -on4,0,0,24,1,0,929,1569.000000,195,0,653.200000,extended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,195,0,641.600000,extended,lora,60 -on0,1,6,24,0,0,0,2151.000000,195,0,1014.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,600,1540.000000,196,0,641.600000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,480,1540.000000,196,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,1020,1540.000000,196,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,lora,60 -on0,1,4,24,0,0,0,1987.000000,196,0,897.200000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,180,1540.000000,196,0,641.600000,extended,lora,60 -on3,0,0,24,1,0,716,1596.000000,197,0,664.000000,extended,lora,60 -on0,1,6,24,0,0,0,2087.000000,197,0,988.400000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,197,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,197,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,197,0,576.000000,extended,lora,60 -on2,0,0,24,1,0,480,1540.000000,197,0,641.600000,extended,lora,60 -on10,0,0,24,1,0,770,1590.000000,197,0,661.600000,extended,lora,60 -on11,0,0,24,1,0,238,1598.000000,197,0,664.800000,extended,lora,60 -on6,0,0,24,1,0,173,1593.000000,197,0,662.800000,extended,lora,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,extended,lora,60 -on9,0,0,24,1,0,320,1560.000000,197,0,649.600000,extended,lora,60 -on0,1,4,24,0,0,0,1888.000000,198,0,857.600000,extended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,1020,1540.000000,198,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,976,1556.000000,198,0,648.000000,extended,lora,60 -on6,0,0,24,1,0,1260,1540.000000,198,0,641.600000,extended,lora,60 -on9,0,0,24,1,0,172,1592.000000,198,0,662.400000,extended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,lora,60 -on5,0,0,24,1,0,820,1580.000000,199,0,657.600000,extended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,lora,60 -on8,0,0,24,1,0,1092,1552.000000,199,0,646.400000,extended,lora,60 -on0,1,5,24,0,0,0,1991.000000,199,0,924.400000,extended,lora,60 -on4,0,0,24,1,0,480,1540.000000,199,0,641.600000,extended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,lora,60 -on1,0,0,24,1,0,1310,1590.000000,199,0,661.600000,extended,lora,60 -on2,0,0,24,1,0,1320,1540.000000,199,0,641.600000,extended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,lora,60 -on3,0,0,24,1,0,905,1545.000000,200,0,643.600000,extended,lora,60 -on10,0,0,24,1,0,0,1540.000000,200,0,641.600000,extended,lora,60 -on11,0,0,24,1,0,480,1540.000000,200,0,641.600000,extended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,lora,60 -on0,1,6,24,0,0,0,2133.000000,200,0,1006.800000,extended,lora,60 -on5,0,0,24,1,0,660,1540.000000,200,0,641.600000,extended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,lora,60 -on7,0,0,24,1,0,68,1548.000000,200,0,644.800000,extended,lora,60 -on9,0,0,24,1,0,369,1549.000000,200,0,645.200000,extended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,lora,60 -on6,0,0,24,1,0,1187,1587.001280,1,0,660.400717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,279,1579.001280,1,0,657.200717,hintandextended,lora,60 -on8,0,0,24,1,0,439,1560.001280,1,0,650.400717,hintandextended,lora,60 -on2,0,0,24,1,0,483,1543.001280,1,0,642.800717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,710,1591.001280,1,0,671.440717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,300,1602.600000,1,1,666.688819,hintandextended,lora,60 -on0,1,6,24,0,0,0,2093.608960,1,0,1008.101018,hintandextended,lora,60 -on10,0,0,24,1,0,1050,1570.001280,2,0,653.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,698,1601.203840,2,1,675.266150,hintandextended,lora,60 -on7,0,0,24,1,0,600,1541.001280,2,0,646.864717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,991,1571.001280,2,0,654.000717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2231.008960,2,0,1101.845018,hintandextended,lora,60 -on6,0,0,24,1,0,211,1571.001280,2,0,654.000717,hintandextended,lora,60 -on2,0,0,25,0,0,1460,1500.300000,2,1,606.040000,hintandextended,lora,60 -on9,0,0,24,1,0,240,1541.998720,2,0,642.400102,hintandextended,lora,60 -on5,0,0,24,1,0,552,1552.001280,2,0,646.400717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2119.608960,3,0,1030.661018,hintandextended,lora,60 -on4,0,0,24,1,0,300,1542.000000,3,0,651.680410,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,240,1541.000000,3,0,642.000410,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,480,1601.601280,3,1,666.289126,hintandextended,lora,60 -on2,0,0,24,1,0,398,1579.001280,3,0,666.384717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,662,1601.300000,3,1,675.400410,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,470,1600.201280,3,1,665.680717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1401,1561.000000,4,0,650.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2048.606400,4,0,966.419584,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,599,1599.001280,4,0,665.200717,hintandextended,lora,60 -on3,0,0,24,1,0,17,1558.000000,4,0,648.800410,hintandextended,lora,60 -on11,0,0,25,1,0,420,1601.601280,4,1,666.289126,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,660,1540.001280,4,0,641.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1432,1592.000000,5,0,662.400000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2002.005120,5,0,938.242867,hintandextended,lora,60 -on5,0,0,24,1,0,120,1540.001280,5,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,383,1563.001280,5,0,650.800717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,947,1587.001280,5,0,660.400717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,0,1541.000000,5,0,642.000410,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1077,1598.001280,6,0,673.984717,hintandextended,lora,60 -on7,0,0,24,1,0,498,1558.001280,6,0,648.800717,hintandextended,lora,60 -on9,0,0,25,1,0,1181,1600.201280,6,1,665.680717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2052.007680,6,0,974.404301,hintandextended,lora,60 -on4,0,0,25,1,0,1122,1601.001280,6,1,675.184717,hintandextended,lora,60 -on3,0,0,24,1,0,861,1561.001280,6,0,650.000717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1260,1540.001280,6,0,641.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1967.607680,7,0,924.740301,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,599,1600.201280,7,1,665.680717,hintandextended,lora,60 -on10,0,0,24,1,0,23,1564.001280,7,0,657.280922,hintandextended,lora,60 -on8,0,0,25,1,0,720,1602.001280,7,1,667.697126,hintandextended,lora,60 -on2,0,0,25,0,0,1478,1500.000000,7,1,600.000000,hintandextended,lora,60 -on1,0,0,25,1,0,847,1600.301280,7,1,673.720717,hintandextended,lora,60 -on9,0,0,25,1,0,458,1601.001280,7,1,675.184717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1896.606400,8,0,874.579584,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1080,1541.000000,8,0,642.000410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,lora,60 -on11,0,0,25,1,0,180,1601.601280,8,1,666.289126,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,519,1579.001280,8,0,657.200717,hintandextended,lora,60 -on4,0,0,24,1,0,326,1566.001280,8,0,652.000717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,172,1592.003840,9,0,662.402150,hintandextended,lora,60 -on6,0,0,25,1,0,1058,1600.001280,9,1,665.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,9,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,9,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,997,1577.001280,9,0,656.400717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2342.611520,9,0,1163.062451,hintandextended,lora,60 -on10,0,0,24,1,0,0,1540.001280,9,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,813,1573.001280,9,0,654.800717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,9,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,660,1540.001280,9,0,641.600717,hintandextended,lora,60 -on3,0,0,25,1,0,60,1600.602560,9,1,665.889434,hintandextended,lora,60 -on8,0,0,24,1,0,200,1561.001280,9,0,654.160922,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,933,1573.001280,10,0,654.800717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2084.007680,10,0,1006.084301,hintandextended,lora,60 -on4,0,0,24,1,0,1260,1541.001280,10,0,651.440717,hintandextended,lora,60 -on6,0,0,24,1,0,337,1577.001280,10,0,656.400717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,960,1540.002560,10,0,641.601434,hintandextended,lora,60 -on3,0,0,24,1,0,204,1564.001280,10,0,651.200717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,683,1564.002560,10,0,652.481434,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,600,1601.601280,11,1,666.289126,hintandextended,lora,60 -on11,0,0,25,1,0,300,1601.001280,11,1,666.001126,hintandextended,lora,60 -on6,0,0,25,1,0,418,1600.201280,11,1,665.888717,hintandextended,lora,60 -on8,0,0,24,1,0,566,1566.001280,11,0,652.000717,hintandextended,lora,60 -on2,0,0,25,0,0,1498,1500.000000,11,1,600.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1134,1594.001280,11,0,663.200717,hintandextended,lora,60 -on1,0,0,24,1,0,34,1575.001280,11,0,656.784717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,11,0,576.000000,hintandextended,lora,60 -on10,0,0,25,1,0,240,1601.602560,11,2,666.929638,hintandextended,lora,60 -on7,0,0,25,1,0,940,1601.301280,11,1,685.000717,hintandextended,lora,60 -on0,1,9,24,0,0,0,2474.214080,11,0,1252.599885,hintandextended,lora,60 -on4,0,0,24,1,0,731,1551.001280,11,0,646.000717,hintandextended,lora,60 -on3,0,0,25,1,0,180,1601.601280,12,1,666.289126,hintandextended,lora,60 -on10,0,0,24,1,0,126,1546.001280,12,0,644.000717,hintandextended,lora,60 -on5,0,0,25,0,0,1478,1500.200000,12,1,600.080000,hintandextended,lora,60 -on7,0,0,25,1,0,939,1601.001280,12,1,667.648922,hintandextended,lora,60 -on9,0,0,24,1,0,840,1541.001280,12,0,646.384717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,398,1600.001280,12,1,665.600717,hintandextended,lora,60 -on4,0,0,24,1,0,600,1541.000000,12,0,642.000410,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,324,1566.000000,12,0,658.784410,hintandextended,lora,60 -on8,0,0,24,1,0,991,1571.002560,12,0,654.001434,hintandextended,lora,60 -on0,1,8,24,0,0,0,2352.611520,12,0,1182.262451,hintandextended,lora,60 -on7,0,0,24,1,0,600,1540.002560,13,0,641.601434,hintandextended,lora,60 -on3,0,0,24,1,0,273,1573.001280,13,0,654.800717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,60,1540.001280,13,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,3,1545.001280,13,0,653.041126,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2025.006400,13,0,956.243584,hintandextended,lora,60 -on1,0,0,24,1,0,148,1568.002560,13,0,652.801434,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,840,1540.001280,14,0,641.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2272.610240,14,0,1118.421734,hintandextended,lora,60 -on3,0,0,25,1,0,0,1600.602560,14,1,665.889638,hintandextended,lora,60 -on1,0,0,25,1,0,60,1602.001280,14,1,671.041126,hintandextended,lora,60 -on4,0,0,24,1,0,239,1599.001280,14,0,665.200717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,374,1555.000000,14,0,647.600410,hintandextended,lora,60 -on10,0,0,24,1,0,240,1540.001280,14,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,823,1583.001280,14,0,658.800717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,423,1543.001280,15,0,642.800717,hintandextended,lora,60 -on5,0,0,24,1,0,1020,1540.001280,15,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,869,1569.001280,15,0,653.200717,hintandextended,lora,60 -on11,0,0,24,1,0,180,1541.000000,15,0,642.000410,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2204.008960,15,0,1079.205018,hintandextended,lora,60 -on8,0,0,24,1,0,838,1598.001280,15,0,664.800717,hintandextended,lora,60 -on2,0,0,24,1,0,663,1543.001280,15,0,642.800717,hintandextended,lora,60 -on10,0,0,24,1,0,294,1596.000000,15,0,673.440410,hintandextended,lora,60 -on7,0,0,24,1,0,685,1566.000000,16,0,652.000410,hintandextended,lora,60 -on3,0,0,24,1,0,488,1548.002560,16,0,644.801434,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,900,1541.001280,16,0,650.928717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,1058,1600.201280,16,1,665.680717,hintandextended,lora,60 -on11,0,0,25,1,0,1012,1601.301280,16,1,669.544717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2189.008960,16,0,1061.845018,hintandextended,lora,60 -on2,0,0,25,0,0,1478,1500.000000,16,1,600.000000,hintandextended,lora,60 -on9,0,0,24,1,0,328,1568.001280,16,0,652.800717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1263,1543.001280,16,0,642.800717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2392.010240,17,0,1163.525734,hintandextended,lora,60 -on6,0,0,24,1,0,660,1540.001280,17,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,240,1540.001280,17,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,1202,1543.001280,17,0,651.984717,hintandextended,lora,60 -on2,0,0,24,1,0,1308,1590.001280,17,1,661.600717,hintandextended,lora,60 -on10,0,0,24,1,0,720,1540.001280,17,0,641.600717,hintandextended,lora,60 -on3,0,0,24,1,0,60,1541.002560,17,0,651.185434,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,590,1590.001280,17,0,661.600717,hintandextended,lora,60 -on9,0,0,25,1,0,533,1600.001280,17,1,665.600717,hintandextended,lora,60 -on3,0,0,24,1,0,159,1579.001280,18,0,657.200717,hintandextended,lora,60 -on5,0,0,24,1,0,497,1558.001280,18,0,657.728717,hintandextended,lora,60 -on8,0,0,24,1,0,601,1542.001280,18,0,651.584717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,378,1559.001280,18,0,649.201126,hintandextended,lora,60 -on2,0,0,24,1,0,1140,1541.001280,18,0,646.640717,hintandextended,lora,60 -on7,0,0,25,1,0,710,1600.001280,18,1,665.600717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2250.010240,18,0,1133.125734,hintandextended,lora,60 -on6,0,0,25,1,0,1069,1611.201280,18,1,670.080717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,580,1601.300000,18,1,668.360410,hintandextended,lora,60 -on7,0,0,24,1,0,533,1594.001280,19,0,672.640717,hintandextended,lora,60 -on3,0,0,24,1,0,476,1596.001280,19,0,664.000717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,180,1540.001280,19,0,641.600717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1998.006400,19,0,927.203584,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,75,1555.001280,19,0,647.600717,hintandextended,lora,60 -on2,0,0,24,1,0,720,1540.001280,19,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,528,1600.001280,20,1,665.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1380,1540.000000,20,0,641.600000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2088.006400,20,0,1007.683584,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,540,1540.001280,20,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,120,1542.000000,20,0,651.584410,hintandextended,lora,60 -on4,0,0,24,1,0,755,1575.001280,20,0,655.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,272,1572.002560,20,0,654.401434,hintandextended,lora,60 -on3,0,0,24,1,0,660,1540.001280,21,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1986.607680,21,0,932.180301,hintandextended,lora,60 -on7,0,0,24,1,0,1100,1560.001280,21,0,649.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,102,1601.000000,21,1,666.000410,hintandextended,lora,60 -on2,0,0,25,1,0,1320,1600.602560,21,1,665.889434,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,33,1574.001280,21,0,664.384717,hintandextended,lora,60 -on7,0,0,25,1,0,759,1600.001280,22,1,665.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1115,1575.001280,22,0,655.600717,hintandextended,lora,60 -on4,0,0,24,1,0,60,1540.001280,22,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,204,1564.001280,22,0,651.200717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2094.007680,22,0,991.204301,hintandextended,lora,60 -on9,0,0,24,1,0,660,1541.001280,22,0,649.264717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,893,1593.001280,22,0,662.800717,hintandextended,lora,60 -on9,0,0,25,1,0,658,1600.203840,23,1,665.681946,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,0,1540.001280,23,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,660,1540.001280,23,0,641.600717,hintandextended,lora,60 -on8,0,0,24,1,0,720,1542.000000,23,0,650.624410,hintandextended,lora,60 -on11,0,0,24,1,0,540,1542.000000,23,0,651.584410,hintandextended,lora,60 -on0,1,8,24,0,0,0,2401.010240,23,0,1182.645734,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,818,1600.202560,23,1,665.681434,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1200,1540.001280,23,0,641.600717,hintandextended,lora,60 -on5,0,0,24,1,0,1080,1540.001280,23,0,641.600717,hintandextended,lora,60 -on2,0,0,24,1,0,979,1559.001280,24,0,649.200717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,180,1541.000000,24,0,642.000410,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,383,1564.000000,24,0,651.200410,hintandextended,lora,60 -on8,0,0,24,1,0,130,1550.001280,24,0,645.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1959.006400,24,0,923.603584,hintandextended,lora,60 -on7,0,0,24,1,0,605,1546.000000,24,0,644.000410,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,287,1588.000000,25,0,660.800410,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1015,1595.001280,25,0,663.600717,hintandextended,lora,60 -on11,0,0,24,1,0,180,1540.001280,25,0,641.600717,hintandextended,lora,60 -on7,0,0,25,1,0,780,1601.000000,25,1,666.000410,hintandextended,lora,60 -on0,1,5,24,0,0,0,2028.006400,25,0,962.083584,hintandextended,lora,60 -on5,0,0,24,1,0,540,1542.998720,25,0,642.800307,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,26,1567.002560,26,0,653.905434,hintandextended,lora,60 -on7,0,0,24,1,0,410,1590.001280,26,0,661.600717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2259.010240,26,0,1128.245734,hintandextended,lora,60 -on10,0,0,24,1,0,226,1586.001280,26,0,660.000717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,780,1540.001280,26,0,641.600717,hintandextended,lora,60 -on3,0,0,24,1,0,595,1596.000000,26,0,664.000410,hintandextended,lora,60 -on1,0,0,24,1,0,1211,1551.001280,26,0,646.000717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,98,1600.201280,26,1,665.680717,hintandextended,lora,60 -on5,0,0,24,1,0,347,1588.000000,26,0,660.800410,hintandextended,lora,60 -on5,0,0,24,1,0,1037,1557.001280,27,0,648.400717,hintandextended,lora,60 -on1,0,0,24,1,0,120,1540.001280,27,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,828,1588.001280,27,0,660.800717,hintandextended,lora,60 -on8,0,0,24,1,0,322,1562.001280,27,0,650.400717,hintandextended,lora,60 -on2,0,0,24,1,0,443,1563.003840,27,0,650.802150,hintandextended,lora,60 -on10,0,0,24,1,0,1173,1573.002560,27,0,654.801434,hintandextended,lora,60 -on4,0,0,24,1,0,605,1546.000000,27,0,644.000410,hintandextended,lora,60 -on6,0,0,24,1,0,720,1541.001280,27,0,650.960717,hintandextended,lora,60 -on0,1,10,24,0,0,0,2553.012800,27,0,1318.967168,hintandextended,lora,60 -on3,0,0,24,1,0,482,1542.001280,27,0,642.400717,hintandextended,lora,60 -on9,0,0,24,1,0,0,1541.000000,27,0,642.000410,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,27,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,874,1574.001280,28,0,655.200717,hintandextended,lora,60 -on8,0,0,24,1,0,335,1576.002560,28,0,656.545434,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1234,1574.001280,28,0,655.200717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1940.006400,28,0,922.883584,hintandextended,lora,60 -on10,0,0,25,1,0,1178,1600.001280,28,1,665.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,682,1563.000000,28,0,650.800410,hintandextended,lora,60 -on11,0,0,24,1,0,1140,1540.001280,29,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,607,1547.001280,29,0,644.400717,hintandextended,lora,60 -on8,0,0,24,1,0,717,1598.001280,29,0,667.744717,hintandextended,lora,60 -on7,0,0,24,1,0,172,1592.001280,29,0,662.400717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,540,1540.001280,29,0,641.600717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2087.007680,29,0,988.404301,hintandextended,lora,60 -on3,0,0,25,1,0,758,1600.201280,29,1,665.680717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,lora,60 -on11,0,0,25,1,0,1059,1600.001280,30,1,665.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1016,1597.001280,30,0,671.184717,hintandextended,lora,60 -on0,1,4,24,0,0,0,1843.005120,30,0,846.962867,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,331,1572.000000,30,0,654.400410,hintandextended,lora,60 -on5,0,0,24,1,0,720,1540.001280,30,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,780,1540.001280,31,0,641.600717,hintandextended,lora,60 -on0,1,5,24,0,0,0,2035.607680,31,0,951.780301,hintandextended,lora,60 -on10,0,0,24,1,0,894,1594.001280,31,0,663.200717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,503,1563.001280,31,0,650.800717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,540,1540.001280,31,0,641.600717,hintandextended,lora,60 -on6,0,0,25,1,0,1140,1601.601280,31,1,666.289126,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,993,1574.001280,32,0,661.984717,hintandextended,lora,60 -on5,0,0,24,1,0,1062,1583.001280,32,0,668.240717,hintandextended,lora,60 -on8,0,0,25,0,0,1442,1500.300000,32,1,609.400000,hintandextended,lora,60 -on7,0,0,25,1,0,1346,1648.201280,32,1,684.880717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,900,1541.001280,32,0,642.160717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1969.006400,32,0,915.603584,hintandextended,lora,60 -on6,0,0,24,1,0,179,1599.001280,32,0,665.200717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1020,1540.001280,33,0,641.600717,hintandextended,lora,60 -on7,0,0,25,1,0,540,1602.600000,33,1,666.688819,hintandextended,lora,60 -on5,0,0,24,1,0,452,1573.001280,33,0,662.544717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,193,1553.001280,33,0,646.800717,hintandextended,lora,60 -on4,0,0,25,1,0,518,1600.201280,33,1,665.680717,hintandextended,lora,60 -on10,0,0,24,1,0,1080,1541.001280,33,0,651.440717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2091.608960,33,0,1001.381018,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1415,1575.000000,34,0,655.600000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2044.606400,34,0,955.379584,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,300,1601.601280,34,1,666.289126,hintandextended,lora,60 -on8,0,0,24,1,0,1200,1540.001280,34,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,840,1540.001280,34,0,641.600717,hintandextended,lora,60 -on10,0,0,24,1,0,1020,1540.001280,34,0,641.600717,hintandextended,lora,60 -on4,0,0,24,1,0,720,1540.001280,35,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,780,1601.601280,35,1,666.289126,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,641,1581.001280,35,0,658.000717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1200,1540.001280,35,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1384,1544.000000,35,0,643.200000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2014.606400,35,0,943.379584,hintandextended,lora,60 -on0,1,7,24,0,0,0,2218.211520,36,0,1097.878451,hintandextended,lora,60 -on11,0,0,24,1,0,1014,1594.002560,36,0,663.201434,hintandextended,lora,60 -on1,0,0,24,1,0,484,1544.001280,36,0,643.200717,hintandextended,lora,60 -on9,0,0,24,1,0,1306,1586.001280,36,0,660.000717,hintandextended,lora,60 -on4,0,0,24,1,0,0,1540.001280,36,0,641.600717,hintandextended,lora,60 -on10,0,0,24,1,0,670,1550.001280,36,0,645.600717,hintandextended,lora,60 -on2,0,0,25,1,0,420,1601.602560,36,1,666.289843,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,1020,1602.598720,36,1,666.688307,hintandextended,lora,60 -on6,0,0,25,1,0,360,1602.601280,37,1,675.617126,hintandextended,lora,60 -on7,0,0,24,1,0,1320,1540.001280,37,0,641.600717,hintandextended,lora,60 -on8,0,0,25,1,0,120,1601.601280,37,1,666.289126,hintandextended,lora,60 -on2,0,0,25,1,0,518,1602.300000,37,1,677.368410,hintandextended,lora,60 -on5,0,0,25,0,0,1478,1500.200000,37,1,600.080000,hintandextended,lora,60 -on10,0,0,24,1,0,1395,1555.000000,37,0,647.600000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2339.210240,37,0,1175.237734,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,300,1541.002560,37,0,642.001843,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,780,1540.002560,37,0,641.601434,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,947,1587.001280,38,0,660.400717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,293,1594.001280,38,0,663.201126,hintandextended,lora,60 -on9,0,0,24,1,0,633,1573.001280,38,0,654.800717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,319,1560.000000,38,0,649.600410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1840.005120,38,0,857.762867,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,803,1563.001280,39,0,650.800717,hintandextended,lora,60 -on4,0,0,24,1,0,926,1567.001280,39,0,653.424717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1940.006400,39,0,913.443584,hintandextended,lora,60 -on5,0,0,23,1,0,468,1588.001280,39,0,660.800717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,18,1559.000000,39,0,649.200410,hintandextended,lora,60 -on3,0,0,25,1,0,998,1600.201280,39,1,665.680717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,260,1560.001280,40,0,649.600717,hintandextended,lora,60 -on7,0,0,24,1,0,468,1588.001280,40,0,660.800717,hintandextended,lora,60 -on10,0,0,24,1,0,120,1540.003840,40,0,641.602150,hintandextended,lora,60 -on11,0,0,24,1,0,540,1541.001280,40,0,646.384717,hintandextended,lora,60 -on4,0,0,25,1,0,638,1600.201280,40,1,665.680717,hintandextended,lora,60 -on6,0,0,24,1,0,744,1564.001280,40,0,651.200717,hintandextended,lora,60 -on1,0,0,24,1,0,1380,1540.000000,40,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2299.008960,40,0,1134.325018,hintandextended,lora,60 -on8,0,0,24,1,0,1177,1577.001280,40,0,656.400717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,16,1557.998720,41,0,648.800102,hintandextended,lora,60 -on9,0,0,24,1,0,720,1540.001280,41,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1916.005120,41,0,881.602867,hintandextended,lora,60 -on4,0,0,24,1,0,240,1540.001280,41,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,145,1565.001280,41,0,651.600717,hintandextended,lora,60 -on6,0,0,25,1,0,240,1602.600000,42,1,666.688819,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,lora,60 -on3,0,0,25,0,0,1478,1500.000000,42,1,600.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2020.208960,42,0,984.757018,hintandextended,lora,60 -on11,0,0,25,1,0,159,1601.000000,42,1,666.160410,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,480,1601.000000,42,1,666.000410,hintandextended,lora,60 -on9,0,0,24,1,0,0,1542.601280,42,1,642.689126,hintandextended,lora,60 -on2,0,0,24,1,0,99,1581.001280,42,0,662.864922,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,362,1542.001280,43,0,642.400717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,300,1601.601280,43,1,666.289126,hintandextended,lora,60 -on7,0,0,24,1,0,38,1578.001280,43,0,656.800717,hintandextended,lora,60 -on6,0,0,24,1,0,1140,1540.001280,43,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,845,1545.001280,43,0,643.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1432,1592.000000,43,0,662.400000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2069.607680,43,0,990.980301,hintandextended,lora,60 -on0,1,8,24,0,0,0,2295.010240,44,0,1138.965734,hintandextended,lora,60 -on10,0,0,24,1,0,60,1543.000000,44,0,656.080410,hintandextended,lora,60 -on2,0,0,24,1,0,420,1541.000000,44,0,642.000410,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1080,1541.001280,44,0,645.200717,hintandextended,lora,60 -on3,0,0,24,1,0,998,1578.001280,44,0,656.800717,hintandextended,lora,60 -on9,0,0,24,1,0,540,1540.001280,44,0,641.600717,hintandextended,lora,60 -on4,0,0,26,1,0,916,1661.201280,44,2,699.264717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hintandextended,lora,60 -on5,0,0,25,0,0,1475,1500.000000,44,1,600.000000,hintandextended,lora,60 -on7,0,0,25,1,0,173,1600.001280,44,1,665.808717,hintandextended,lora,60 -on6,0,0,24,1,0,653,1593.001280,44,0,662.800717,hintandextended,lora,60 -on4,0,0,24,1,0,1336,1556.001280,45,0,648.000717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2140.008960,45,0,1063.525018,hintandextended,lora,60 -on2,0,0,24,1,0,360,1540.001280,45,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,547,1548.001280,45,0,644.801126,hintandextended,lora,60 -on9,0,0,24,1,0,85,1565.002560,45,0,651.601434,hintandextended,lora,60 -on8,0,0,24,1,0,1010,1590.001280,45,0,661.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1125,1585.001280,45,0,659.600717,hintandextended,lora,60 -on3,0,0,24,1,0,625,1566.000000,45,0,652.000410,hintandextended,lora,60 -on0,1,7,24,0,0,0,2193.610240,46,0,1081.221734,hintandextended,lora,60 -on8,0,0,25,1,0,1313,1600.201280,46,1,665.680717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,87,1568.000000,46,0,652.800410,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,1200,1601.602560,46,2,675.729434,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,478,1598.001280,46,0,664.800717,hintandextended,lora,60 -on3,0,0,24,1,0,976,1557.000000,46,0,648.400410,hintandextended,lora,60 -on9,0,0,24,1,0,480,1540.001280,46,0,641.600717,hintandextended,lora,60 -on4,0,0,24,1,0,905,1547.001280,46,0,653.808717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,420,1601.601280,47,1,666.289126,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,300,1540.001280,47,0,641.600717,hintandextended,lora,60 -on0,1,5,24,0,0,0,2008.607680,47,0,940.980301,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1009,1589.001280,47,0,661.200717,hintandextended,lora,60 -on10,0,0,24,1,0,811,1571.001280,47,0,654.000717,hintandextended,lora,60 -on7,0,0,24,1,0,262,1562.001280,47,0,650.400717,hintandextended,lora,60 -on2,0,0,25,1,0,158,1600.202560,48,1,665.681434,hintandextended,lora,60 -on0,1,4,24,0,0,0,1853.005120,48,0,853.042867,hintandextended,lora,60 -on6,0,0,24,1,0,940,1580.001280,48,0,657.600717,hintandextended,lora,60 -on4,0,0,24,1,0,60,1541.001280,48,0,648.304717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,188,1548.001280,48,0,644.800717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,677,1557.001280,49,0,648.400717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,1286,1566.001280,49,0,652.000717,hintandextended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,49,0,641.600000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2137.607680,49,0,1027.620301,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,60,1601.601280,49,1,666.289126,hintandextended,lora,60 -on9,0,0,24,1,0,427,1548.000000,49,0,644.800410,hintandextended,lora,60 -on2,0,0,24,1,0,1140,1540.001280,49,0,641.600717,hintandextended,lora,60 -on4,0,0,25,1,0,583,1601.201280,50,1,668.160922,hintandextended,lora,60 -on0,1,8,24,0,0,0,2292.010240,50,0,1138.885734,hintandextended,lora,60 -on2,0,0,24,1,0,24,1564.002560,50,0,651.201434,hintandextended,lora,60 -on3,0,0,24,1,0,1080,1540.001280,50,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,725,1545.001280,50,0,643.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,480,1541.001280,50,0,651.184717,hintandextended,lora,60 -on9,0,0,24,1,0,45,1585.001280,50,0,659.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1140,1540.001280,50,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,120,1540.002560,50,0,641.601434,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,180,1541.000000,51,0,642.000410,hintandextended,lora,60 -on0,1,7,24,0,0,0,2206.610240,51,0,1079.861734,hintandextended,lora,60 -on6,0,0,24,1,0,717,1597.001280,51,0,664.400717,hintandextended,lora,60 -on9,0,0,25,1,0,1014,1600.001280,51,1,665.600717,hintandextended,lora,60 -on8,0,0,24,1,0,1355,1575.001280,51,0,655.600717,hintandextended,lora,60 -on11,0,0,24,1,0,929,1570.998720,51,0,663.183898,hintandextended,lora,60 -on5,0,0,25,1,0,1194,1600.001280,51,1,665.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,1080,1602.601280,51,1,675.873126,hintandextended,lora,60 -on8,0,0,25,1,0,360,1602.600000,52,1,666.688819,hintandextended,lora,60 -on9,0,0,25,1,0,0,1601.601280,52,1,666.289126,hintandextended,lora,60 -on7,0,0,25,1,0,1182,1600.001280,52,1,665.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,540,1541.001280,52,0,642.001126,hintandextended,lora,60 -on0,1,8,24,0,0,0,2306.212800,52,0,1183.639168,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1360,1580.001280,52,0,657.600717,hintandextended,lora,60 -on11,0,0,24,1,0,297,1598.001280,52,0,668.704717,hintandextended,lora,60 -on4,0,0,25,1,0,338,1600.001280,52,1,665.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,730,1553.000000,52,0,665.424410,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,540,1542.000000,53,0,649.440410,hintandextended,lora,60 -on11,0,0,25,1,0,352,1601.002560,53,1,675.185434,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,240,1541.001280,53,0,651.184717,hintandextended,lora,60 -on3,0,0,24,1,0,600,1540.001280,53,0,641.600717,hintandextended,lora,60 -on9,0,0,25,1,0,416,1600.001280,53,1,665.600717,hintandextended,lora,60 -on5,0,0,24,1,0,1068,1588.001280,53,0,660.800717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2239.008960,53,0,1092.405018,hintandextended,lora,60 -on1,0,0,24,1,0,683,1563.001280,53,0,650.800717,hintandextended,lora,60 -on6,0,0,24,1,0,0,1540.001280,54,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,457,1577.001280,54,0,656.400717,hintandextended,lora,60 -on3,0,0,25,1,0,720,1600.603840,54,1,665.890355,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1073,1593.001280,54,0,662.800717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1992.607680,54,0,944.500301,hintandextended,lora,60 -on1,0,0,25,1,0,780,1601.000000,54,1,666.000410,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,660,1542.000000,55,0,643.904410,hintandextended,lora,60 -on11,0,0,25,1,0,758,1601.200000,55,1,666.080410,hintandextended,lora,60 -on3,0,0,24,1,0,960,1540.001280,55,0,641.600717,hintandextended,lora,60 -on10,0,0,24,1,0,401,1581.001280,55,0,658.000717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,540,1540.001280,55,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1979.006400,55,0,922.163584,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1200,1540.001280,56,0,641.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on0,1,1,24,0,0,0,1569.001280,56,0,653.200717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,507,1587.001280,57,1,672.528717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1965.006400,57,0,920.723584,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1165,1565.001280,57,0,651.600717,hintandextended,lora,60 -on7,0,0,24,1,0,420,1541.001280,57,0,644.464717,hintandextended,lora,60 -on5,0,0,25,0,0,1481,1500.200000,57,1,600.080000,hintandextended,lora,60 -on8,0,0,25,0,0,1478,1500.000000,57,1,600.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,570,1570.001280,57,0,653.600717,hintandextended,lora,60 -on2,0,0,25,1,0,938,1600.001280,57,1,665.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,689,1569.001280,58,0,653.200717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,9,1550.000000,58,0,645.600410,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,600,1540.002560,58,0,641.601434,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1964.006400,58,0,940.963584,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1068,1588.001280,58,0,660.800717,hintandextended,lora,60 -on6,0,0,24,1,0,865,1565.002560,58,0,651.601434,hintandextended,lora,60 -on8,0,0,24,1,0,0,1541.001280,59,0,645.904717,hintandextended,lora,60 -on3,0,0,24,1,0,1200,1540.001280,59,0,641.600717,hintandextended,lora,60 -on5,0,0,24,1,0,888,1589.001280,59,0,670.384717,hintandextended,lora,60 -on10,0,0,24,1,0,360,1541.000000,59,0,642.000410,hintandextended,lora,60 -on4,0,0,24,1,0,240,1540.001280,59,0,641.600717,hintandextended,lora,60 -on0,1,9,24,0,0,0,2488.011520,59,0,1230.726451,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1080,1540.001280,59,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,540,1540.001280,59,0,641.600717,hintandextended,lora,60 -on7,0,0,25,1,0,943,1600.001280,59,1,665.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,99,1600.002560,59,1,665.601434,hintandextended,lora,60 -on1,0,0,24,1,0,1080,1540.001280,60,0,641.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,118,1599.001280,60,0,674.384717,hintandextended,lora,60 -on2,0,0,24,1,0,1140,1541.001280,60,0,651.184717,hintandextended,lora,60 -on8,0,0,25,1,0,480,1603.598720,60,1,667.088512,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,765,1585.001280,60,0,659.600717,hintandextended,lora,60 -on11,0,0,25,1,0,161,1600.001280,60,1,665.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2218.610240,60,0,1082.581734,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,1259,1600.001280,60,1,665.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,488,1548.001280,61,0,644.800717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,660,1603.600000,61,1,668.848819,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,60,1604.598720,61,1,672.928717,hintandextended,lora,60 -on0,1,4,24,0,0,0,1890.207680,61,0,903.316301,hintandextended,lora,60 -on2,0,0,24,1,0,589,1589.002560,61,0,661.201434,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,951,1591.001280,62,0,662.000717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1096,1556.001280,62,0,648.000717,hintandextended,lora,60 -on9,0,0,24,1,0,1423,1583.000000,62,0,658.800000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1840.003840,62,0,838.402150,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,75,1555.001280,62,0,647.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1167,1567.001280,63,0,652.400717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,581,1582.001280,63,0,665.600922,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2281.610240,63,0,1107.781734,hintandextended,lora,60 -on6,0,0,24,1,0,360,1540.001280,63,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,600,1540.001280,63,0,641.600717,hintandextended,lora,60 -on4,0,0,24,1,0,280,1581.998720,63,0,658.400102,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,1320,1600.602560,63,1,665.889434,hintandextended,lora,60 -on5,0,0,24,1,0,1080,1540.001280,63,0,641.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2216.008960,64,0,1071.045018,hintandextended,lora,60 -on8,0,0,24,1,0,240,1541.001280,64,0,651.184717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,349,1601.201280,64,1,675.264717,hintandextended,lora,60 -on4,0,0,24,1,0,180,1540.001280,64,0,641.600717,hintandextended,lora,60 -on9,0,0,24,1,0,1020,1540.001280,64,0,641.600717,hintandextended,lora,60 -on2,0,0,25,1,0,415,1600.001280,64,1,665.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,900,1540.001280,64,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,543,1544.000000,64,0,643.200410,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hintandextended,lora,60 -on2,0,0,26,1,0,1096,1660.201280,65,2,689.680717,hintandextended,lora,60 -on3,0,0,24,1,0,300,1540.001280,65,0,641.600717,hintandextended,lora,60 -on4,0,0,25,1,0,278,1600.201280,65,1,665.680717,hintandextended,lora,60 -on9,0,0,27,1,0,812,1721.500000,65,3,722.200410,hintandextended,lora,60 -on7,0,0,24,1,0,63,1544.001280,65,0,647.648717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2294.010240,65,0,1146.565734,hintandextended,lora,60 -on11,0,0,24,1,0,221,1584.000000,65,0,667.488410,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,900,1542.000000,65,0,651.584410,hintandextended,lora,60 -on6,0,0,25,0,0,1479,1500.000000,65,1,600.064000,hintandextended,lora,60 -on1,0,0,25,1,0,180,1602.000000,65,1,675.584410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,60,1540.001280,66,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,240,1540.001280,66,0,641.600717,hintandextended,lora,60 -on2,0,0,25,0,0,1478,1500.200000,66,1,600.080000,hintandextended,lora,60 -on1,0,0,24,1,0,421,1541.401280,66,0,642.224717,hintandextended,lora,60 -on5,0,0,24,1,0,125,1545.001280,66,0,643.600717,hintandextended,lora,60 -on3,0,0,24,1,0,1375,1595.001280,66,0,663.600717,hintandextended,lora,60 -on4,0,0,25,1,0,518,1600.201280,66,1,665.888717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2353.010240,66,0,1146.005734,hintandextended,lora,60 -on8,0,0,24,1,0,1225,1566.001280,66,0,658.080717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,900,1540.001280,66,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1153,1553.001280,67,0,646.800717,hintandextended,lora,60 -on3,0,0,24,1,0,43,1583.001280,67,0,658.800717,hintandextended,lora,60 -on5,0,0,24,1,0,960,1540.001280,67,0,641.600717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2280.008960,67,0,1101.605018,hintandextended,lora,60 -on6,0,0,24,1,0,300,1540.001280,67,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,60,1541.000000,67,0,642.000410,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,540,1541.000000,67,0,642.000410,hintandextended,lora,60 -on2,0,0,24,1,0,167,1587.001280,67,0,660.400717,hintandextended,lora,60 -on7,0,0,24,1,0,0,1540.002560,68,0,641.601434,hintandextended,lora,60 -on9,0,0,24,1,0,500,1561.001280,68,0,659.184717,hintandextended,lora,60 -on10,0,0,25,1,0,477,1601.000000,68,1,666.000410,hintandextended,lora,60 -on1,0,0,24,1,0,1200,1540.001280,68,0,641.600717,hintandextended,lora,60 -on3,0,0,25,1,0,1260,1600.602560,68,1,665.889434,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2285.611520,68,0,1146.022451,hintandextended,lora,60 -on11,0,0,24,1,0,390,1572.998720,68,0,663.984102,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1340,1560.001280,68,0,649.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,593,1600.201280,68,1,665.680717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,319,1559.001280,69,0,649.200717,hintandextended,lora,60 -on0,1,3,24,0,0,0,1762.605120,69,0,781.938867,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,240,1600.602560,69,1,665.889434,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,471,1591.001280,69,0,662.000717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,540,1601.601280,70,1,666.289126,hintandextended,lora,60 -on9,0,0,24,1,0,660,1540.001280,70,0,641.600717,hintandextended,lora,60 -on2,0,0,24,1,0,420,1540.001280,70,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,1356,1577.001280,70,0,660.304717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,lora,60 -on10,0,0,25,1,0,1418,1600.000000,70,1,665.600000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2194.608960,70,0,1066.581018,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,787,1547.001280,70,0,644.400717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,35,1575.001280,70,0,655.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,213,1575.000000,71,0,661.840614,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,1019,1600.001280,71,1,665.600717,hintandextended,lora,60 -on5,0,0,25,1,0,60,1601.601280,71,1,666.289126,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,lora,60 -on11,0,0,25,1,0,638,1600.001280,71,1,665.600717,hintandextended,lora,60 -on7,0,0,25,1,0,480,1601.601280,71,1,666.289126,hintandextended,lora,60 -on0,1,6,24,0,0,0,2122.210240,71,0,1037.877734,hintandextended,lora,60 -on3,0,0,24,1,0,540,1543.001280,71,0,657.905126,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,lora,60 -on4,0,0,25,0,0,1489,1500.200000,71,1,600.288000,hintandextended,lora,60 -on8,0,0,24,1,0,853,1553.002560,72,0,646.801434,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1262,1543.000000,72,0,642.800410,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,385,1566.998720,72,0,652.400102,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,lora,60 -on0,1,3,24,0,0,0,1740.003840,72,0,802.562150,hintandextended,lora,60 -on5,0,0,25,1,0,1020,1602.600000,73,1,666.688819,hintandextended,lora,60 -on6,0,0,24,1,0,0,1540.001280,73,0,641.600717,hintandextended,lora,60 -on10,0,0,24,1,0,174,1595.000000,73,0,663.600410,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1936.606400,73,0,898.899584,hintandextended,lora,60 -on9,0,0,24,1,0,1353,1573.001280,73,0,654.800717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,447,1568.000000,74,0,652.800410,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2151.210240,74,0,1036.677734,hintandextended,lora,60 -on2,0,0,24,1,0,1140,1540.001280,74,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,lora,60 -on11,0,0,25,1,0,1020,1600.602560,74,1,665.889434,hintandextended,lora,60 -on3,0,0,25,1,0,960,1603.600000,74,1,671.472819,hintandextended,lora,60 -on8,0,0,24,1,0,360,1540.001280,74,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,1118,1600.201280,74,1,665.680717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,780,1601.998720,75,1,666.400102,hintandextended,lora,60 -on10,0,0,24,1,0,1220,1560.001280,75,0,649.600717,hintandextended,lora,60 -on4,0,0,24,1,0,995,1576.000000,75,0,656.000410,hintandextended,lora,60 -on3,0,0,24,1,0,479,1599.001280,75,0,665.200717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,412,1600.001280,75,1,665.600922,hintandextended,lora,60 -on9,0,0,24,1,0,300,1541.001280,75,0,651.184717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,120,1602.598720,75,1,666.688307,hintandextended,lora,60 -on11,0,0,24,1,0,600,1540.001280,75,0,641.600717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2339.611520,75,0,1166.822451,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,85,1565.001280,76,0,651.600717,hintandextended,lora,60 -on3,0,0,24,1,0,1139,1600.001280,76,0,672.160717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,993,1573.001280,76,0,654.800717,hintandextended,lora,60 -on1,0,0,24,1,0,1075,1595.001280,76,0,663.600717,hintandextended,lora,60 -on9,0,0,24,1,0,574,1574.002560,76,0,655.201434,hintandextended,lora,60 -on0,1,6,24,0,0,0,2040.007680,76,0,979.044301,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,661,1541.001280,76,0,642.000717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,8,1550.998720,77,0,655.184102,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,105,1601.001280,77,1,668.080922,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1385,1545.000000,77,0,643.600000,hintandextended,lora,60 -on0,1,3,24,0,0,0,1740.002560,77,0,782.881434,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,913,1553.001280,78,0,646.800717,hintandextended,lora,60 -on5,0,0,24,1,0,757,1577.001280,78,0,656.400717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,1260,1541.001280,78,0,649.040717,hintandextended,lora,60 -on3,0,0,24,1,0,627,1568.002560,78,0,662.241434,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1424,1584.000000,78,0,659.200000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1970.005120,78,0,924.802867,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,814,1600.301280,79,1,666.680717,hintandextended,lora,60 -on8,0,0,25,1,0,120,1602.601280,79,1,666.689536,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,660,1540.001280,79,0,641.600717,hintandextended,lora,60 -on10,0,0,24,1,0,724,1545.001280,79,0,652.528717,hintandextended,lora,60 -on1,0,0,25,1,0,1238,1601.001280,79,1,666.800717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2011.607680,79,0,961.060301,hintandextended,lora,60 -on9,0,0,24,1,0,619,1560.998720,80,0,650.000102,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hintandextended,lora,60 -on11,0,0,25,0,0,1478,1500.000000,80,1,600.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2144.007680,80,0,1033.444301,hintandextended,lora,60 -on2,0,0,24,1,0,180,1541.002560,80,0,642.545434,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1200,1540.001280,80,0,641.600717,hintandextended,lora,60 -on1,0,0,25,0,0,1479,1500.000000,80,1,600.208000,hintandextended,lora,60 -on3,0,0,24,1,0,152,1572.001280,80,0,654.400717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1140,1540.001280,80,0,641.600717,hintandextended,lora,60 -on10,0,0,25,1,0,279,1601.001280,80,1,675.648717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,630,1570.001280,81,0,653.600717,hintandextended,lora,60 -on8,0,0,24,1,0,154,1575.003840,81,0,664.786150,hintandextended,lora,60 -on5,0,0,25,1,0,1008,1600.001280,81,1,665.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,lora,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,hintandextended,lora,60 -on9,0,0,24,1,0,382,1563.001280,81,0,650.801126,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1940.006400,81,0,937.123584,hintandextended,lora,60 -on2,0,0,24,1,0,1291,1571.001280,81,0,654.000717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,446,1566.001280,82,0,652.000717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,705,1586.000000,82,0,660.000410,hintandextended,lora,60 -on4,0,0,25,1,0,1200,1601.601280,82,1,666.289126,hintandextended,lora,60 -on3,0,0,24,1,0,180,1540.001280,82,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1945.607680,82,0,922.660301,hintandextended,lora,60 -on2,0,0,24,1,0,275,1575.001280,82,0,655.600717,hintandextended,lora,60 -on6,0,0,24,1,0,84,1564.001280,83,0,651.200717,hintandextended,lora,60 -on1,0,0,25,1,0,1121,1600.001280,83,1,665.600717,hintandextended,lora,60 -on7,0,0,25,1,0,226,1600.001280,83,1,665.600717,hintandextended,lora,60 -on9,0,0,24,1,0,720,1540.001280,83,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,1038,1559.001280,83,0,658.384717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,18,1559.001280,83,0,649.201126,hintandextended,lora,60 -on4,0,0,24,1,0,1320,1540.001280,83,0,641.600717,hintandextended,lora,60 -on2,0,0,24,1,0,1380,1540.000000,83,0,641.600000,hintandextended,lora,60 -on0,1,9,24,0,0,0,2498.010240,83,0,1241.605734,hintandextended,lora,60 -on5,0,0,24,1,0,120,1541.001280,83,0,651.184717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,900,1540.001280,84,0,641.600717,hintandextended,lora,60 -on5,0,0,25,1,0,707,1659.001280,84,1,689.200717,hintandextended,lora,60 -on2,0,0,24,1,0,340,1582.000000,84,0,667.104410,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,442,1562.001280,84,0,650.400717,hintandextended,lora,60 -on4,0,0,24,1,0,780,1540.001280,84,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,60,1540.001280,84,0,641.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2248.008960,84,0,1081.605018,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,398,1601.201280,84,1,675.264717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,596,1598.000000,85,0,673.984410,hintandextended,lora,60 -on8,0,0,24,1,0,669,1549.002560,85,0,645.201434,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,lora,60 -on10,0,0,25,0,0,1485,1500.000000,85,1,600.000000,hintandextended,lora,60 -on11,0,0,24,1,0,1071,1591.001280,85,0,662.000717,hintandextended,lora,60 -on0,1,4,24,0,0,0,1890.005120,85,0,871.522867,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1320,1540.001280,85,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hintandextended,lora,60 -on0,1,9,24,0,0,0,2437.011520,86,0,1214.646451,hintandextended,lora,60 -on2,0,0,24,1,0,660,1540.001280,86,0,641.600717,hintandextended,lora,60 -on9,0,0,24,1,0,425,1545.002560,86,0,643.601434,hintandextended,lora,60 -on8,0,0,24,1,0,831,1591.001280,86,0,662.000717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1320,1540.001280,86,0,641.600717,hintandextended,lora,60 -on4,0,0,25,1,0,338,1600.001280,86,1,665.600717,hintandextended,lora,60 -on6,0,0,24,1,0,588,1588.001280,86,0,660.800717,hintandextended,lora,60 -on5,0,0,24,1,0,262,1563.001280,86,0,659.024717,hintandextended,lora,60 -on3,0,0,24,1,0,997,1577.001280,86,0,656.400717,hintandextended,lora,60 -on11,0,0,24,1,0,368,1548.001280,86,0,644.800717,hintandextended,lora,60 -on10,0,0,24,1,0,1161,1561.001280,87,0,650.000717,hintandextended,lora,60 -on1,0,0,24,1,0,932,1572.001280,87,0,654.400717,hintandextended,lora,60 -on4,0,0,24,1,0,1397,1557.000000,87,0,648.400000,hintandextended,lora,60 -on0,1,10,24,0,0,0,2597.011520,87,0,1294.806451,hintandextended,lora,60 -on8,0,0,24,1,0,660,1540.001280,87,0,641.600717,hintandextended,lora,60 -on2,0,0,24,1,0,720,1540.001280,87,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,60,1540.001280,87,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,322,1562.001280,87,0,650.400717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,58,1598.001280,87,0,664.800717,hintandextended,lora,60 -on9,0,0,24,1,0,384,1564.001280,87,0,651.200717,hintandextended,lora,60 -on5,0,0,24,1,0,540,1540.001280,87,0,641.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,616,1600.201280,88,1,665.680717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,0,1540.001280,88,0,641.600717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2086.608960,88,0,1014.421018,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,379,1559.001280,88,0,649.200717,hintandextended,lora,60 -on2,0,0,24,1,0,192,1552.002560,88,0,646.401434,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,480,1603.600000,88,1,671.249024,hintandextended,lora,60 -on7,0,0,25,1,0,540,1600.001280,88,1,665.600717,hintandextended,lora,60 -on6,0,0,25,1,0,960,1601.000000,89,1,666.000410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,120,1541.000000,89,0,642.000410,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,24,1564.001280,89,0,651.200717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,60,1541.003840,89,0,644.466150,hintandextended,lora,60 -on1,0,0,25,1,0,938,1601.002560,89,1,675.441638,hintandextended,lora,60 -on0,1,5,24,0,0,0,2055.006400,89,0,990.803584,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,510,1570.001280,90,0,653.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1019,1599.001280,90,0,665.200717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1264,1545.001280,90,0,651.824717,hintandextended,lora,60 -on4,0,0,24,1,0,360,1540.001280,90,0,641.600717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1957.006400,90,0,910.803584,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,1358,1600.001280,90,1,665.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,1320,1540.001280,91,0,641.600717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2142.007680,91,0,1022.404301,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,518,1600.001280,91,1,665.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,240,1540.003840,91,0,641.602150,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,420,1541.001280,91,0,649.744717,hintandextended,lora,60 -on2,0,0,24,1,0,354,1594.001280,91,0,663.200717,hintandextended,lora,60 -on8,0,0,24,1,0,1140,1540.001280,91,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,480,1601.603840,92,1,666.290560,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1930.606400,92,0,909.459584,hintandextended,lora,60 -on11,0,0,24,1,0,634,1575.001280,92,0,657.200922,hintandextended,lora,60 -on1,0,0,24,1,0,1020,1541.000000,92,0,642.000410,hintandextended,lora,60 -on4,0,0,25,0,0,1478,1500.000000,92,1,600.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,1118,1600.201280,92,1,665.888717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,600,1540.001280,93,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,508,1568.002560,93,0,652.801434,hintandextended,lora,60 -on7,0,0,25,1,0,120,1602.601280,93,1,666.689536,hintandextended,lora,60 -on4,0,0,24,1,0,244,1544.001280,93,0,643.200717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,60,1540.001280,93,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,900,1541.000000,93,0,642.000410,hintandextended,lora,60 -on0,1,7,24,0,0,0,2241.610240,93,0,1110.501734,hintandextended,lora,60 -on8,0,0,24,1,0,1001,1581.001280,93,0,658.000717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,780,1540.001280,94,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,349,1589.001280,94,0,661.200717,hintandextended,lora,60 -on2,0,0,24,1,0,629,1571.000000,94,0,663.440410,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1300,1580.001280,94,0,657.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1866.005120,94,0,858.242867,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,326,1566.002560,95,0,652.001434,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1432,1592.000000,95,0,662.400000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2157.608960,95,0,1066.501018,hintandextended,lora,60 -on4,0,0,24,1,0,0,1540.001280,95,0,641.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,477,1602.000000,95,1,670.304410,hintandextended,lora,60 -on8,0,0,25,1,0,360,1602.602560,95,1,676.193638,hintandextended,lora,60 -on11,0,0,25,1,0,578,1600.001280,95,1,665.600717,hintandextended,lora,60 -on7,0,0,24,1,0,96,1577.000000,95,0,656.400410,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,720,1540.001280,96,0,641.600717,hintandextended,lora,60 -on10,0,0,24,1,0,1203,1543.001280,96,0,642.800717,hintandextended,lora,60 -on4,0,0,24,1,0,1095,1555.001280,96,0,647.600717,hintandextended,lora,60 -on7,0,0,24,1,0,599,1599.001280,96,0,665.200717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,0,1540.001280,96,0,641.600717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1975.006400,96,0,918.003584,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1196,1596.001280,97,0,664.000717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,99,1601.001280,97,1,675.184717,hintandextended,lora,60 -on11,0,0,25,1,0,420,1602.601280,97,1,676.129126,hintandextended,lora,60 -on5,0,0,24,1,0,298,1598.001280,97,0,664.800717,hintandextended,lora,60 -on8,0,0,24,1,0,1080,1540.001280,97,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2149.610240,97,0,1058.021734,hintandextended,lora,60 -on7,0,0,24,1,0,56,1597.001280,97,0,666.864717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,171,1600.002560,97,1,665.601434,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1260,1540.001280,98,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,786,1546.001280,98,0,644.000717,hintandextended,lora,60 -on11,0,0,24,1,0,1020,1540.001280,98,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1382,1542.000000,98,0,642.400000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2175.006400,98,0,1032.563584,hintandextended,lora,60 -on1,0,0,24,1,0,983,1563.001280,98,0,650.800717,hintandextended,lora,60 -on3,0,0,24,1,0,600,1541.000000,98,0,642.000410,hintandextended,lora,60 -on1,0,0,24,1,0,668,1548.001280,99,0,644.800717,hintandextended,lora,60 -on8,0,0,25,1,0,0,1600.602560,99,1,665.889434,hintandextended,lora,60 -on11,0,0,24,1,0,83,1563.001280,99,0,650.800717,hintandextended,lora,60 -on2,0,0,25,1,0,780,1603.601280,99,1,676.849126,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,180,1541.001280,99,0,651.440717,hintandextended,lora,60 -on4,0,0,24,1,0,240,1540.001280,99,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,99,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,489,1550.001280,99,0,649.280717,hintandextended,lora,60 -on3,0,0,24,1,0,420,1541.000000,99,0,642.000410,hintandextended,lora,60 -on0,1,9,24,0,0,0,2471.214080,99,0,1237.959885,hintandextended,lora,60 -on9,0,0,24,1,0,647,1587.001280,99,0,660.400717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,1340,1560.001280,100,0,649.600717,hintandextended,lora,60 -on2,0,0,24,1,0,920,1561.000000,100,0,650.000410,hintandextended,lora,60 -on8,0,0,24,1,0,600,1540.998720,100,0,641.999898,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1979.006400,100,0,937.363584,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,195,1555.002560,100,0,647.601434,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,129,1549.001280,100,0,645.200717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,1119,1600.001280,101,1,665.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,103,1584.000000,101,0,659.200410,hintandextended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,101,0,641.600000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2031.005120,101,0,959.602867,hintandextended,lora,60 -on9,0,0,24,1,0,207,1568.001280,101,0,652.801126,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,960,1542.000000,101,0,649.664410,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,874,1575.000000,102,0,655.600410,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,737,1557.001280,102,0,648.400717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on0,1,3,24,0,0,0,1740.003840,102,0,775.362150,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1282,1562.001280,102,0,650.400717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,728,1551.398720,103,0,648.944102,hintandextended,lora,60 -on5,0,0,24,1,0,382,1562.001280,103,0,650.400717,hintandextended,lora,60 -on2,0,0,25,1,0,991,1600.301280,103,1,669.976717,hintandextended,lora,60 -on4,0,0,25,1,0,878,1601.001280,103,1,674.928717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2315.010240,103,0,1156.565734,hintandextended,lora,60 -on8,0,0,25,0,0,1478,1500.000000,103,1,600.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1200,1540.001280,103,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,600,1540.001280,103,0,641.600717,hintandextended,lora,60 -on10,0,0,24,1,0,527,1589.001280,103,0,663.760922,hintandextended,lora,60 -on11,0,0,25,1,0,819,1600.002560,103,1,665.601434,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,407,1587.001280,104,0,660.400717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2056.007680,104,0,985.444301,hintandextended,lora,60 -on8,0,0,24,1,0,262,1562.001280,104,0,650.400717,hintandextended,lora,60 -on7,0,0,24,1,0,1020,1540.001280,104,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,904,1544.001280,104,0,643.200717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,235,1595.002560,104,0,663.601434,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,833,1593.001280,104,0,662.800717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,480,1540.002560,105,0,641.601434,hintandextended,lora,60 -on9,0,0,24,1,0,180,1540.001280,105,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1380,1540.000000,105,0,641.600000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1984.003840,105,0,903.362150,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,1361,1581.001280,105,0,658.000717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,780,1540.001280,106,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,240,1540.001280,106,0,641.600717,hintandextended,lora,60 -on8,0,0,24,1,0,1069,1589.001280,106,0,661.200717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,35,1575.001280,106,0,655.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1140,1540.001280,106,0,641.600717,hintandextended,lora,60 -on3,0,0,24,1,0,86,1566.001280,106,0,652.000717,hintandextended,lora,60 -on10,0,0,24,1,0,1421,1581.000000,106,0,658.000000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2235.007680,106,0,1073.204301,hintandextended,lora,60 -on1,0,0,24,1,0,300,1540.001280,107,0,641.600717,hintandextended,lora,60 -on0,1,4,24,0,0,0,1873.005120,107,0,851.602867,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,494,1554.001280,107,0,647.200717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1351,1571.001280,107,0,654.000717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,1175,1575.001280,107,0,655.600717,hintandextended,lora,60 -on7,0,0,24,1,0,420,1541.001280,108,0,651.184717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,lora,60 -on11,0,0,25,1,0,529,1600.201280,108,1,665.680717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1985.006400,108,0,922.483584,hintandextended,lora,60 -on10,0,0,24,1,0,144,1564.001280,108,0,651.200717,hintandextended,lora,60 -on9,0,0,24,1,0,772,1592.001280,108,0,662.400717,hintandextended,lora,60 -on8,0,0,24,1,0,366,1547.000000,108,0,644.400410,hintandextended,lora,60 -on7,0,0,24,1,0,335,1575.001280,109,0,655.600717,hintandextended,lora,60 -on11,0,0,25,1,0,218,1600.001280,109,1,665.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2000.607680,109,0,928.340301,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,60,1540.001280,109,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,625,1565.001280,109,0,651.600717,hintandextended,lora,60 -on3,0,0,25,1,0,120,1601.602560,109,1,669.233434,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2094.608960,110,0,1015.541018,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,476,1596.001280,110,0,664.000717,hintandextended,lora,60 -on3,0,0,24,1,0,27,1567.001280,110,0,652.400717,hintandextended,lora,60 -on10,0,0,25,1,0,720,1601.602560,110,1,666.289843,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,480,1541.001280,110,0,651.280717,hintandextended,lora,60 -on1,0,0,25,1,0,562,1600.302560,110,1,671.801434,hintandextended,lora,60 -on9,0,0,24,1,0,62,1543.000000,110,0,642.800410,hintandextended,lora,60 -on0,1,6,24,0,0,0,2058.608960,111,0,989.621018,hintandextended,lora,60 -on4,0,0,25,1,0,480,1601.602560,111,1,675.473434,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,400,1581.000000,111,0,658.000410,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,798,1558.001280,111,0,648.800717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1052,1572.001280,111,0,654.400717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,596,1601.998720,111,1,666.400102,hintandextended,lora,60 -on6,0,0,24,1,0,966,1546.001280,111,0,644.000717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1397,1557.000000,112,0,648.400000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2233.608960,112,0,1091.621018,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,37,1578.000000,112,0,656.800410,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,660,1540.001280,112,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,1163,1563.001280,112,0,650.800717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,815,1575.001280,112,0,655.600717,hintandextended,lora,60 -on5,0,0,24,1,0,1289,1569.001280,112,0,653.200717,hintandextended,lora,60 -on7,0,0,25,1,0,300,1601.601280,112,1,666.289126,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hintandextended,lora,60 -on10,0,0,25,1,0,878,1600.201280,113,1,665.680717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,900,1541.000000,113,0,642.000410,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,420,1541.000000,113,0,642.000410,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1911.005120,113,0,874.482867,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,788,1549.001280,113,0,647.184717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,680,1560.001280,114,0,649.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,1020,1601.601280,114,1,666.289126,hintandextended,lora,60 -on6,0,0,24,1,0,360,1541.001280,114,0,648.560717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,lora,60 -on11,0,0,25,1,0,818,1600.001280,114,1,665.600717,hintandextended,lora,60 -on10,0,0,24,1,0,720,1541.001280,114,0,648.784717,hintandextended,lora,60 -on3,0,0,25,1,0,496,1601.000000,114,1,666.000410,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2108.608960,114,0,1018.261018,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,lora,60 -on1,0,0,25,0,0,1491,1500.000000,115,1,600.208000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2082.608960,115,0,1013.461018,hintandextended,lora,60 -on10,0,0,25,1,0,286,1601.302560,115,1,677.449434,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,935,1575.001280,115,0,655.600717,hintandextended,lora,60 -on8,0,0,25,0,0,1478,1500.000000,115,1,600.000000,hintandextended,lora,60 -on11,0,0,25,1,0,359,1601.002560,115,1,675.441434,hintandextended,lora,60 -on6,0,0,25,1,0,180,1601.602560,115,1,675.217638,hintandextended,lora,60 -on3,0,0,25,1,0,240,1601.000000,115,1,666.000410,hintandextended,lora,60 -on9,0,0,24,1,0,547,1547.001280,115,0,644.400717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,158,1601.001280,116,1,675.184717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,1260,1601.601280,116,1,666.289126,hintandextended,lora,60 -on0,1,7,24,0,0,0,2264.610240,116,0,1105.941734,hintandextended,lora,60 -on2,0,0,24,1,0,540,1540.001280,116,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,1080,1540.001280,116,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,607,1547.001280,116,0,644.400717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,229,1601.001280,116,1,666.001126,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,94,1575.001280,116,0,657.584717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,900,1540.001280,117,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,60,1540.001280,117,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1957.005120,117,0,885.202867,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1020,1540.001280,117,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,360,1540.001280,117,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1212,1552.001280,118,0,646.400717,hintandextended,lora,60 -on4,0,0,25,1,0,579,1600.001280,118,1,665.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1327,1547.001280,118,0,644.400717,hintandextended,lora,60 -on11,0,0,24,1,0,480,1541.001280,118,0,649.264717,hintandextended,lora,60 -on9,0,0,24,1,0,180,1540.002560,118,0,641.601434,hintandextended,lora,60 -on7,0,0,24,1,0,1414,1574.000000,118,0,655.200000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2171.608960,118,0,1066.821018,hintandextended,lora,60 -on5,0,0,25,1,0,360,1601.601280,118,1,666.289126,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,1218,1558.001280,119,0,648.800717,hintandextended,lora,60 -on8,0,0,24,1,0,1020,1541.001280,119,0,651.184717,hintandextended,lora,60 -on2,0,0,24,1,0,300,1541.000000,119,0,642.000410,hintandextended,lora,60 -on9,0,0,24,1,0,360,1540.001280,119,0,641.600717,hintandextended,lora,60 -on5,0,0,24,1,0,900,1542.998720,119,0,650.320102,hintandextended,lora,60 -on6,0,0,24,1,0,39,1579.001280,119,0,657.200717,hintandextended,lora,60 -on7,0,0,24,1,0,1319,1599.001280,119,0,665.200717,hintandextended,lora,60 -on10,0,0,25,1,0,1101,1600.301280,119,1,670.424717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,824,1584.001280,119,0,659.200717,hintandextended,lora,60 -on11,0,0,24,1,0,1380,1540.000000,119,0,641.600000,hintandextended,lora,60 -on0,1,10,24,0,0,0,2604.011520,119,0,1315.046451,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,607,1548.001280,120,0,653.984717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,703,1600.001280,120,1,665.600717,hintandextended,lora,60 -on7,0,0,24,1,0,844,1544.001280,120,0,643.200717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,420,1540.001280,120,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,491,1551.001280,120,0,646.000717,hintandextended,lora,60 -on6,0,0,25,1,0,780,1601.603840,120,1,675.730150,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2093.608960,120,0,1000.581018,hintandextended,lora,60 -on8,0,0,25,1,0,240,1601.601280,121,1,666.289126,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1329,1549.001280,121,0,645.200717,hintandextended,lora,60 -on3,0,0,24,1,0,660,1541.998720,121,0,642.400102,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,120,1541.001280,121,0,648.880922,hintandextended,lora,60 -on9,0,0,24,1,0,778,1598.001280,121,0,664.800717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2091.608960,121,0,1011.301018,hintandextended,lora,60 -on4,0,0,24,1,0,1265,1545.001280,121,0,643.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1140,1540.001280,122,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,122,0,641.600000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2018.005120,122,0,954.082867,hintandextended,lora,60 -on5,0,0,24,1,0,322,1562.002560,122,0,650.401434,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,833,1593.001280,122,0,662.800717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,120,1540.002560,122,0,641.601434,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,318,1560.000000,123,0,658.784410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,lora,60 -on1,0,0,25,0,0,1490,1500.000000,123,1,600.000000,hintandextended,lora,60 -on9,0,0,25,1,0,240,1600.602560,123,1,665.889434,hintandextended,lora,60 -on5,0,0,24,1,0,795,1555.001280,123,0,647.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,535,1596.002560,123,0,669.281638,hintandextended,lora,60 -on10,0,0,24,1,0,431,1552.998720,123,0,646.800102,hintandextended,lora,60 -on0,1,5,24,0,0,0,1975.607680,123,0,947.140301,hintandextended,lora,60 -on1,0,0,24,1,0,1131,1592.001280,124,0,666.560717,hintandextended,lora,60 -on2,0,0,25,1,0,720,1602.601280,124,2,675.873126,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,398,1603.200000,124,1,683.328410,hintandextended,lora,60 -on10,0,0,25,1,0,466,1600.001280,124,1,665.600717,hintandextended,lora,60 -on9,0,0,24,1,0,480,1541.998720,124,0,642.400102,hintandextended,lora,60 -on6,0,0,24,1,0,563,1563.001280,124,0,650.800717,hintandextended,lora,60 -on8,0,0,24,1,0,0,1540.001280,124,0,641.600717,hintandextended,lora,60 -on3,0,0,24,1,0,300,1540.402560,124,0,641.825434,hintandextended,lora,60 -on7,0,0,25,1,0,899,1600.201280,124,1,665.680717,hintandextended,lora,60 -on4,0,0,24,1,0,1380,1540.000000,124,0,641.600000,hintandextended,lora,60 -on0,1,10,24,0,0,0,2575.612800,124,0,1334.023168,hintandextended,lora,60 -on6,0,0,24,1,0,32,1572.002560,125,0,654.401434,hintandextended,lora,60 -on2,0,0,24,1,0,212,1572.002560,125,0,654.401434,hintandextended,lora,60 -on8,0,0,24,1,0,809,1569.002560,125,0,653.201434,hintandextended,lora,60 -on3,0,0,24,1,0,900,1540.001280,125,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,600,1560.601280,125,1,649.889126,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2012.607680,125,0,967.540301,hintandextended,lora,60 -on9,0,0,25,1,0,416,1601.001280,126,1,675.440717,hintandextended,lora,60 -on11,0,0,24,1,0,266,1578.002560,126,1,656.801434,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,1178,1600.001280,126,1,665.600717,hintandextended,lora,60 -on7,0,0,24,1,0,180,1541.001280,126,0,651.184717,hintandextended,lora,60 -on0,1,9,24,0,0,0,2396.612800,126,0,1219.543168,hintandextended,lora,60 -on6,0,0,24,1,0,607,1547.001280,126,0,644.400717,hintandextended,lora,60 -on3,0,0,24,1,0,130,1551.001280,126,0,646.001126,hintandextended,lora,60 -on2,0,0,24,1,0,327,1568.001280,126,0,661.984717,hintandextended,lora,60 -on5,0,0,25,1,0,660,1601.601280,126,1,666.289126,hintandextended,lora,60 -on4,0,0,24,1,0,1106,1567.001280,126,0,656.784717,hintandextended,lora,60 -on4,0,0,24,1,0,0,1540.001280,127,0,641.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2197.008960,127,0,1072.245018,hintandextended,lora,60 -on9,0,0,25,1,0,1036,1600.001280,127,1,665.600717,hintandextended,lora,60 -on8,0,0,24,1,0,411,1592.000000,127,0,662.400410,hintandextended,lora,60 -on11,0,0,24,1,0,960,1540.001280,127,0,641.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1320,1540.001280,127,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,554,1554.001280,127,0,647.200717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,294,1596.000000,127,0,668.480614,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,614,1554.001280,128,0,647.200717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1324,1544.001280,128,0,643.200717,hintandextended,lora,60 -on4,0,0,24,1,0,960,1540.001280,128,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,209,1569.001280,128,0,653.200717,hintandextended,lora,60 -on2,0,0,24,1,0,303,1543.001280,128,0,642.800717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1950.006400,128,0,908.003584,hintandextended,lora,60 -on1,0,0,24,1,0,276,1579.002560,129,0,680.881638,hintandextended,lora,60 -on0,1,6,24,0,0,0,2040.007680,129,0,982.564301,hintandextended,lora,60 -on4,0,0,24,1,0,712,1593.000000,129,0,662.800410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,779,1599.001280,129,0,665.200717,hintandextended,lora,60 -on3,0,0,24,1,0,945,1586.001280,129,0,666.560717,hintandextended,lora,60 -on10,0,0,24,1,0,16,1556.001280,129,0,648.000717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1115,1575.001280,129,0,655.600717,hintandextended,lora,60 -on8,0,0,24,1,0,686,1566.001280,130,0,652.000717,hintandextended,lora,60 -on3,0,0,24,1,0,360,1540.001280,130,0,641.600717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,322,1562.001280,130,0,650.400717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,794,1554.001280,130,0,647.200717,hintandextended,lora,60 -on4,0,0,24,1,0,594,1594.001280,130,0,663.200717,hintandextended,lora,60 -on5,0,0,24,1,0,179,1599.002560,130,0,665.201434,hintandextended,lora,60 -on0,1,8,24,0,0,0,2327.010240,130,0,1145.045734,hintandextended,lora,60 -on1,0,0,24,1,0,862,1562.001280,130,0,650.400717,hintandextended,lora,60 -on2,0,0,24,1,0,1200,1540.001280,130,0,641.600717,hintandextended,lora,60 -on4,0,0,24,1,0,987,1567.001280,131,0,652.400717,hintandextended,lora,60 -on7,0,0,24,1,0,540,1541.001280,131,0,647.344717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,720,1540.001280,131,0,641.600717,hintandextended,lora,60 -on8,0,0,24,1,0,98,1579.000000,131,0,657.200410,hintandextended,lora,60 -on9,0,0,25,1,0,638,1600.001280,131,1,665.600717,hintandextended,lora,60 -on6,0,0,24,1,0,360,1540.001280,131,0,641.600717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2145.007680,131,0,1012.724301,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,277,1578.000000,132,0,656.800410,hintandextended,lora,60 -on4,0,0,24,1,0,1380,1540.000000,132,0,641.600000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2091.006400,132,0,999.443584,hintandextended,lora,60 -on11,0,0,24,1,0,634,1574.001280,132,0,655.200717,hintandextended,lora,60 -on7,0,0,24,1,0,60,1540.001280,132,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1031,1551.001280,132,0,646.000717,hintandextended,lora,60 -on10,0,0,24,1,0,159,1579.001280,132,0,657.200717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,58,1598.001280,133,0,664.800717,hintandextended,lora,60 -on10,0,0,25,1,0,540,1600.602560,133,1,665.889434,hintandextended,lora,60 -on5,0,0,24,1,0,117,1599.000000,133,0,674.640410,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,120,1540.001280,133,0,641.600717,hintandextended,lora,60 -on3,0,0,25,1,0,480,1601.601280,133,1,666.289126,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,420,1601.601280,133,1,666.289126,hintandextended,lora,60 -on0,1,8,24,0,0,0,2334.814080,133,0,1163.655885,hintandextended,lora,60 -on9,0,0,24,1,0,865,1566.000000,133,0,652.000410,hintandextended,lora,60 -on2,0,0,24,1,0,634,1574.001280,133,0,655.200717,hintandextended,lora,60 -on10,0,0,25,0,0,1493,1500.200000,134,1,600.080000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,840,1540.001280,134,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,120,1540.002560,134,0,641.601434,hintandextended,lora,60 -on6,0,0,24,1,0,240,1540.001280,134,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,710,1590.002560,134,0,661.601434,hintandextended,lora,60 -on5,0,0,25,1,0,1200,1601.000000,134,1,666.208410,hintandextended,lora,60 -on3,0,0,24,1,0,1109,1570.001280,134,0,662.880717,hintandextended,lora,60 -on8,0,0,24,1,0,720,1540.001280,134,0,641.600717,hintandextended,lora,60 -on4,0,0,25,1,0,600,1600.602560,134,1,665.889434,hintandextended,lora,60 -on0,1,8,24,0,0,0,2366.611520,134,0,1176.182451,hintandextended,lora,60 -on0,1,8,24,0,0,0,2406.010240,135,0,1178.245734,hintandextended,lora,60 -on6,0,0,24,1,0,913,1553.001280,135,0,646.800717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1020,1541.000000,135,0,642.000410,hintandextended,lora,60 -on5,0,0,24,1,0,1228,1568.001280,135,0,652.800717,hintandextended,lora,60 -on7,0,0,24,1,0,240,1541.000000,135,0,642.000410,hintandextended,lora,60 -on10,0,0,24,1,0,840,1541.001280,135,0,650.960922,hintandextended,lora,60 -on1,0,0,24,1,0,831,1591.001280,135,0,662.000717,hintandextended,lora,60 -on8,0,0,24,1,0,420,1540.001280,135,0,641.600717,hintandextended,lora,60 -on9,0,0,24,1,0,480,1540.001280,135,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,0,1540.002560,136,0,641.601434,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,649,1589.001280,136,0,661.200717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,240,1540.001280,136,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,86,1507.001280,136,0,628.400717,hintandextended,lora,60 -on4,0,0,24,1,0,989,1570.000000,136,0,653.600410,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2006.006400,136,0,945.123584,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1020,1542.000000,137,0,651.840410,hintandextended,lora,60 -on8,0,0,25,1,0,660,1601.601280,137,1,666.289126,hintandextended,lora,60 -on6,0,0,24,1,0,900,1540.001280,137,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,610,1551.002560,137,0,655.441434,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,360,1600.602560,137,1,665.889638,hintandextended,lora,60 -on10,0,0,25,1,0,120,1601.601280,137,1,666.289126,hintandextended,lora,60 -on11,0,0,24,1,0,1380,1540.000000,137,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2499.812800,137,0,1258.615168,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,420,1602.997440,137,1,666.799795,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,540,1540.001280,138,0,641.600717,hintandextended,lora,60 -on5,0,0,24,1,0,671,1551.001280,138,0,646.000717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,84,1565.000000,138,0,651.600410,hintandextended,lora,60 -on4,0,0,24,1,0,732,1553.000000,138,0,646.800410,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1844.005120,138,0,846.082867,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,1200,1540.001280,139,0,641.600717,hintandextended,lora,60 -on3,0,0,24,1,0,1380,1540.000000,139,0,641.600000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2290.608960,139,0,1131.541018,hintandextended,lora,60 -on7,0,0,24,1,0,37,1578.000000,139,0,656.800410,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,977,1558.002560,139,0,648.801638,hintandextended,lora,60 -on5,0,0,25,1,0,1140,1602.600000,139,1,666.688819,hintandextended,lora,60 -on10,0,0,24,1,0,282,1583.000000,139,0,658.800410,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,360,1540.001280,139,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1080,1541.001280,140,0,650.480717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,274,1575.000000,140,0,655.600410,hintandextended,lora,60 -on11,0,0,25,1,0,941,1601.001280,140,1,667.760717,hintandextended,lora,60 -on2,0,0,24,1,0,600,1540.001280,140,0,641.600717,hintandextended,lora,60 -on1,0,0,25,1,0,878,1601.001280,140,1,675.184717,hintandextended,lora,60 -on3,0,0,24,1,0,76,1559.998720,140,0,659.808102,hintandextended,lora,60 -on0,1,8,24,0,0,0,2312.010240,140,0,1157.925734,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,162,1600.001280,140,1,665.600717,hintandextended,lora,60 -on4,0,0,24,1,0,713,1593.001280,140,0,662.800717,hintandextended,lora,60 -on3,0,0,24,1,0,300,1541.001280,141,0,651.184717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,599,1599.001280,141,0,665.200717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1990.006400,141,0,924.003584,hintandextended,lora,60 -on8,0,0,25,1,0,413,1600.201280,141,1,665.680717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,974,1554.001280,141,0,647.200717,hintandextended,lora,60 -on11,0,0,24,1,0,120,1540.001280,141,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,720,1540.001280,142,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,924,1564.001280,142,0,651.200717,hintandextended,lora,60 -on3,0,0,24,1,0,95,1575.001280,142,0,655.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,300,1540.001280,142,0,641.600717,hintandextended,lora,60 -on5,0,0,25,1,0,900,1601.601280,142,1,666.289126,hintandextended,lora,60 -on0,1,5,24,0,0,0,2024.607680,142,0,946.100301,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,300,1541.001280,143,0,651.184717,hintandextended,lora,60 -on10,0,0,24,1,0,1080,1540.001280,143,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2174.007680,143,0,1044.964301,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,498,1559.001280,143,0,649.201126,hintandextended,lora,60 -on6,0,0,25,1,0,407,1601.000000,143,1,666.000410,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,660,1540.001280,143,0,641.600717,hintandextended,lora,60 -on5,0,0,24,1,0,1031,1551.001280,143,0,646.000717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,42,1583.998720,144,0,659.200102,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1983.006400,144,0,941.523584,hintandextended,lora,60 -on10,0,0,24,1,0,1310,1591.001280,144,0,664.944717,hintandextended,lora,60 -on7,0,0,24,1,0,600,1540.002560,144,0,641.601434,hintandextended,lora,60 -on5,0,0,24,1,0,780,1540.001280,144,0,641.600717,hintandextended,lora,60 -on1,0,0,25,0,0,1478,1500.000000,144,1,600.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,lora,60 -on11,0,0,25,1,0,1359,1600.001280,144,1,665.808717,hintandextended,lora,60 -on10,0,0,24,1,0,720,1542.000000,145,0,651.840410,hintandextended,lora,60 -on3,0,0,24,1,0,32,1573.001280,145,0,657.744717,hintandextended,lora,60 -on8,0,0,24,1,0,300,1540.001280,145,0,641.600717,hintandextended,lora,60 -on0,1,10,24,0,0,0,2499.612800,145,0,1278.087168,hintandextended,lora,60 -on5,0,0,25,1,0,98,1601.000000,145,1,666.000614,hintandextended,lora,60 -on1,0,0,25,1,0,579,1600.001280,145,1,665.600717,hintandextended,lora,60 -on6,0,0,24,1,0,518,1600.601280,145,1,673.104717,hintandextended,lora,60 -on4,0,0,25,1,0,900,1600.005120,145,1,665.602662,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,433,1554.001280,145,0,649.664717,hintandextended,lora,60 -on9,0,0,24,1,0,1020,1540.001280,145,0,641.600717,hintandextended,lora,60 -on2,0,0,24,1,0,1185,1585.001280,145,0,659.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2260.008960,146,0,1088.005018,hintandextended,lora,60 -on5,0,0,24,1,0,480,1540.001280,146,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,240,1540.001280,146,0,641.600717,hintandextended,lora,60 -on6,0,0,24,1,0,1080,1540.001280,146,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,1341,1561.001280,146,0,650.000717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,360,1540.001280,146,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,220,1580.001280,146,0,657.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1076,1597.002560,146,0,673.841434,hintandextended,lora,60 -on4,0,0,24,1,0,969,1549.001280,147,0,645.200717,hintandextended,lora,60 -on5,0,0,24,1,0,455,1575.001280,147,0,655.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1200,1540.001280,147,0,641.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,609,1549.002560,147,0,645.201434,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1882.005120,147,0,861.762867,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,611,1551.001280,148,0,646.000717,hintandextended,lora,60 -on10,0,0,24,1,0,180,1541.001280,148,0,651.280717,hintandextended,lora,60 -on8,0,0,24,1,0,2,1542.001280,148,0,642.400717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,960,1540.001280,148,0,641.600717,hintandextended,lora,60 -on5,0,0,24,1,0,900,1541.000000,148,0,642.000410,hintandextended,lora,60 -on7,0,0,25,1,0,517,1649.200000,148,1,685.488410,hintandextended,lora,60 -on0,1,7,24,0,0,0,2217.008960,148,0,1094.325018,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,290,1600.202560,148,1,665.681434,hintandextended,lora,60 -on4,0,0,24,1,0,629,1569.001280,149,0,653.200717,hintandextended,lora,60 -on2,0,0,24,1,0,1379,1600.001280,149,0,675.040717,hintandextended,lora,60 -on6,0,0,24,1,0,538,1598.001280,149,0,664.800717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,285,1586.000000,149,0,660.000410,hintandextended,lora,60 -on0,1,7,24,0,0,0,2143.008960,149,0,1037.525018,hintandextended,lora,60 -on10,0,0,24,1,0,1020,1540.001280,149,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,18,1558.001280,149,0,648.800717,hintandextended,lora,60 -on9,0,0,24,1,0,467,1588.000000,149,0,660.800410,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1178,1578.001280,150,0,656.800717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,19,1559.001280,150,0,649.200717,hintandextended,lora,60 -on2,0,0,24,1,0,455,1576.000000,150,0,656.000410,hintandextended,lora,60 -on6,0,0,24,1,0,876,1576.001280,150,0,656.000717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2053.007680,150,0,977.364301,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,551,1551.001280,150,0,646.000717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,120,1540.001280,150,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,780,1540.001280,151,0,641.600717,hintandextended,lora,60 -on8,0,0,24,1,0,583,1583.001280,151,0,658.800717,hintandextended,lora,60 -on11,0,0,24,1,0,1080,1540.001280,151,0,641.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,382,1562.003840,151,0,650.401946,hintandextended,lora,60 -on2,0,0,25,1,0,660,1600.001280,151,1,665.600922,hintandextended,lora,60 -on10,0,0,25,1,0,720,1602.001280,151,1,675.841126,hintandextended,lora,60 -on9,0,0,25,1,0,600,1601.601280,151,1,666.289331,hintandextended,lora,60 -on0,1,8,24,0,0,0,2421.611520,151,0,1191.622451,hintandextended,lora,60 -on1,0,0,24,1,0,420,1540.001280,151,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,0,1542.000000,152,0,651.328410,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hintandextended,lora,60 -on10,0,0,25,0,0,1478,1500.000000,152,1,600.000000,hintandextended,lora,60 -on7,0,0,24,1,0,960,1540.001280,152,0,641.600717,hintandextended,lora,60 -on2,0,0,25,1,0,163,1601.300000,152,1,667.976410,hintandextended,lora,60 -on5,0,0,24,1,0,1055,1575.001280,152,0,655.600717,hintandextended,lora,60 -on3,0,0,24,1,0,470,1590.001280,152,0,661.600717,hintandextended,lora,60 -on4,0,0,25,1,0,60,1601.601280,152,1,666.289126,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2125.608960,152,0,1026.981018,hintandextended,lora,60 -on1,0,0,25,1,0,600,1601.601280,153,1,666.289126,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,1044,1600.301280,153,1,671.480717,hintandextended,lora,60 -on11,0,0,24,1,0,840,1540.001280,153,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,971,1552.001280,153,0,655.680717,hintandextended,lora,60 -on4,0,0,25,1,0,300,1602.600000,153,1,666.688819,hintandextended,lora,60 -on6,0,0,24,1,0,1380,1540.000000,153,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2358.211520,153,0,1177.718451,hintandextended,lora,60 -on2,0,0,24,1,0,811,1571.002560,153,0,654.001434,hintandextended,lora,60 -on5,0,0,24,1,0,1290,1570.001280,153,0,653.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,480,1601.602560,154,1,666.289843,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1219,1559.998720,154,0,649.599898,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,lora,60 -on0,1,3,24,0,0,0,1775.605120,154,0,806.018867,hintandextended,lora,60 -on6,0,0,24,1,0,1066,1586.001280,154,0,660.000717,hintandextended,lora,60 -on0,1,5,24,0,0,0,2003.208960,155,0,948.357018,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,589,1589.001280,155,0,661.200717,hintandextended,lora,60 -on7,0,0,25,1,0,1260,1601.601280,155,1,666.289126,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,1101,1561.001280,155,0,650.000717,hintandextended,lora,60 -on11,0,0,24,1,0,257,1557.001280,155,0,648.400717,hintandextended,lora,60 -on8,0,0,25,1,0,60,1601.601280,155,1,666.289126,hintandextended,lora,60 -on11,0,0,25,1,0,294,1601.000000,156,1,666.000410,hintandextended,lora,60 -on1,0,0,25,1,0,699,1600.001280,156,1,665.600717,hintandextended,lora,60 -on7,0,0,24,1,0,74,1554.001280,156,0,647.200717,hintandextended,lora,60 -on9,0,0,24,1,0,600,1541.001280,156,0,650.224717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,1,1541.001280,156,0,642.000717,hintandextended,lora,60 -on10,0,0,24,1,0,180,1541.001280,156,0,651.184717,hintandextended,lora,60 -on8,0,0,24,1,0,440,1560.001280,156,0,649.600717,hintandextended,lora,60 -on5,0,0,24,1,0,737,1557.001280,156,0,648.400717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hintandextended,lora,60 -on0,1,9,24,0,0,0,2404.011520,156,0,1201.446451,hintandextended,lora,60 -on6,0,0,24,1,0,780,1540.001280,156,0,641.600717,hintandextended,lora,60 -on2,0,0,24,1,0,640,1580.001280,157,0,657.600717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,167,1587.001280,157,0,660.400717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,180,1540.001280,157,0,641.600717,hintandextended,lora,60 -on7,0,0,25,1,0,900,1601.601280,157,1,666.289126,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,1061,1581.001280,157,0,658.000717,hintandextended,lora,60 -on0,1,5,24,0,0,0,2036.607680,157,0,952.180301,hintandextended,lora,60 -on10,0,0,25,1,0,540,1601.602560,158,1,673.073434,hintandextended,lora,60 -on5,0,0,24,1,0,508,1568.001280,158,0,652.800717,hintandextended,lora,60 -on3,0,0,25,0,0,1464,1500.300000,158,1,605.880000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,693,1600.301280,158,1,670.040717,hintandextended,lora,60 -on8,0,0,24,1,0,459,1579.001280,158,0,657.200717,hintandextended,lora,60 -on2,0,0,25,1,0,639,1601.001280,158,1,675.120717,hintandextended,lora,60 -on6,0,0,24,1,0,840,1540.001280,158,0,641.600717,hintandextended,lora,60 -on0,1,8,24,0,0,0,2316.611520,158,0,1131.542451,hintandextended,lora,60 -on9,0,0,24,1,0,240,1540.001280,158,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,206,1566.001280,158,0,652.000717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,807,1567.001280,159,0,652.400717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2040.007680,159,0,979.044301,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,706,1586.001280,159,0,660.000717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,155,1575.002560,159,0,655.601434,hintandextended,lora,60 -on5,0,0,24,1,0,562,1563.001280,159,0,660.240717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1157,1557.001280,159,0,648.400717,hintandextended,lora,60 -on4,0,0,24,1,0,250,1550.001280,159,0,645.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,304,1545.000000,160,0,643.600410,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,10,1551.001280,160,0,648.240922,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1110,1570.001280,160,0,653.600717,hintandextended,lora,60 -on5,0,0,24,1,0,152,1572.001280,160,0,654.400717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2092.007680,160,0,1009.124301,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,480,1541.001280,160,0,650.960922,hintandextended,lora,60 -on7,0,0,24,1,0,360,1540.002560,160,0,641.601434,hintandextended,lora,60 -on11,0,0,24,1,0,540,1541.001280,161,0,651.440717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,70,1602.301280,161,1,682.937126,hintandextended,lora,60 -on0,1,5,24,0,0,0,2090.607680,161,0,993.460301,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,lora,60 -on1,0,0,25,1,0,1237,1600.001280,161,1,665.600717,hintandextended,lora,60 -on4,0,0,24,1,0,0,1594.601280,161,1,672.417126,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,lora,60 -on10,0,0,25,1,0,176,1601.000000,161,1,666.000410,hintandextended,lora,60 -on1,0,0,24,1,0,271,1571.001280,162,0,654.000717,hintandextended,lora,60 -on5,0,0,24,1,0,180,1540.001280,162,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,461,1601.000000,162,1,666.000410,hintandextended,lora,60 -on4,0,0,24,1,0,480,1542.001280,162,0,651.841126,hintandextended,lora,60 -on2,0,0,24,1,0,1364,1584.001280,162,0,659.200717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,360,1542.001280,162,0,659.264922,hintandextended,lora,60 -on0,1,7,24,0,0,0,2283.008960,162,0,1115.125018,hintandextended,lora,60 -on10,0,0,24,1,0,1260,1540.001280,162,0,641.600717,hintandextended,lora,60 -on1,0,0,24,1,0,943,1583.001280,163,0,658.800717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,85,1567.000000,163,0,661.584410,hintandextended,lora,60 -on4,0,0,24,1,0,335,1575.998720,163,0,655.999898,hintandextended,lora,60 -on3,0,0,24,1,0,1020,1540.001280,163,0,641.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2173.008960,163,0,1072.565018,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,169,1541.002560,163,1,642.001434,hintandextended,lora,60 -on9,0,0,24,1,0,1352,1572.001280,163,0,654.400717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,366,1547.000000,163,0,644.400410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,99,1580.000000,164,0,657.600410,hintandextended,lora,60 -on0,1,8,24,0,0,0,2308.611520,164,0,1156.662451,hintandextended,lora,60 -on11,0,0,24,1,0,681,1561.001280,164,0,650.000717,hintandextended,lora,60 -on9,0,0,24,1,0,120,1542.997440,164,0,651.983590,hintandextended,lora,60 -on2,0,0,25,1,0,180,1602.600000,164,1,666.688819,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1144,1544.001280,164,0,643.200717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hintandextended,lora,60 -on10,0,0,25,1,0,405,1600.001280,164,1,665.600717,hintandextended,lora,60 -on5,0,0,24,1,0,420,1540.001280,164,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,571,1571.001280,164,0,654.000717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2040.607680,165,0,967.060301,hintandextended,lora,60 -on1,0,0,25,1,0,1314,1600.001280,165,1,665.600717,hintandextended,lora,60 -on10,0,0,24,1,0,420,1540.001280,165,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,780,1601.601280,165,1,666.289126,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,840,1542.000000,165,0,651.840410,hintandextended,lora,60 -on11,0,0,24,1,0,515,1577.001280,165,0,665.585126,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,840,1542.000000,166,0,642.400614,hintandextended,lora,60 -on0,1,7,24,0,0,0,2236.008960,166,0,1137.765018,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,420,1541.001280,166,0,642.001126,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,960,1602.000000,166,1,675.840410,hintandextended,lora,60 -on7,0,0,24,1,0,283,1584.001280,166,0,668.384717,hintandextended,lora,60 -on10,0,0,24,1,0,638,1579.001280,166,0,657.201126,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,312,1553.002560,166,0,656.241434,hintandextended,lora,60 -on5,0,0,25,1,0,1194,1616.001280,166,1,672.000717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,154,1574.001280,167,0,655.200717,hintandextended,lora,60 -on11,0,0,24,1,0,119,1600.001280,167,0,673.824717,hintandextended,lora,60 -on4,0,0,24,1,0,533,1593.001280,167,0,662.800717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1840.005120,167,0,838.402867,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,1409,1651.201280,167,1,686.080717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2270.008960,168,0,1107.045018,hintandextended,lora,60 -on5,0,0,24,1,0,1020,1540.001280,168,0,641.600717,hintandextended,lora,60 -on1,0,0,25,1,0,223,1601.200000,168,1,666.080410,hintandextended,lora,60 -on9,0,0,24,1,0,900,1540.001280,168,0,641.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,120,1541.001280,168,0,651.184717,hintandextended,lora,60 -on8,0,0,24,1,0,597,1598.000000,168,0,664.800410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,1140,1540.001280,168,0,641.600717,hintandextended,lora,60 -on3,0,0,24,1,0,840,1541.000000,168,0,642.000410,hintandextended,lora,60 -on4,0,0,24,1,0,1252,1593.001280,169,0,672.240717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,516,1578.000000,169,0,660.960410,hintandextended,lora,60 -on5,0,0,24,1,0,205,1565.001280,169,0,651.600717,hintandextended,lora,60 -on6,0,0,24,1,0,713,1593.001280,169,0,662.800717,hintandextended,lora,60 -on11,0,0,24,1,0,259,1559.001280,169,0,649.200717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2183.610240,169,0,1081.061734,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,360,1602.600000,169,1,666.688819,hintandextended,lora,60 -on3,0,0,24,1,0,600,1540.001280,169,0,641.600717,hintandextended,lora,60 -on2,0,0,24,1,0,221,1581.001280,170,0,658.000717,hintandextended,lora,60 -on10,0,0,24,1,0,240,1540.998720,170,0,641.999898,hintandextended,lora,60 -on3,0,0,24,1,0,587,1588.002560,170,0,670.241434,hintandextended,lora,60 -on6,0,0,24,1,0,480,1540.001280,170,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,426,1547.001280,170,0,644.400922,hintandextended,lora,60 -on1,0,0,24,1,0,1104,1565.000000,170,0,651.600410,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,170,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2352.008960,170,0,1175.845018,hintandextended,lora,60 -on8,0,0,25,1,0,600,1601.000000,170,1,666.000410,hintandextended,lora,60 -on6,0,0,25,1,0,420,1602.601280,171,1,667.233126,hintandextended,lora,60 -on4,0,0,25,1,0,578,1601.000000,171,1,666.000410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,221,1581.002560,171,0,658.001434,hintandextended,lora,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,710,1590.001280,171,0,661.600717,hintandextended,lora,60 -on11,0,0,24,1,0,405,1585.001280,171,0,659.600717,hintandextended,lora,60 -on9,0,0,24,1,0,658,1598.003840,171,0,664.802150,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2049.608960,171,0,1020.741018,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,532,1593.001280,172,0,671.984717,hintandextended,lora,60 -on9,0,0,24,1,0,265,1565.001280,172,0,651.600717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2106.608960,172,0,1013.141018,hintandextended,lora,60 -on1,0,0,25,1,0,589,1600.002560,172,1,665.601434,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,lora,60 -on10,0,0,25,1,0,120,1601.601280,172,1,666.289126,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1260,1540.001280,172,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,1020,1540.001280,172,0,641.600717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1166,1566.001280,173,0,652.000717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hintandextended,lora,60 -on8,0,0,25,1,0,218,1600.001280,173,1,665.600717,hintandextended,lora,60 -on10,0,0,25,1,0,1320,1600.602560,173,2,665.889434,hintandextended,lora,60 -on1,0,0,24,1,0,120,1541.001280,173,0,648.784717,hintandextended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,173,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2353.610240,173,0,1148.421734,hintandextended,lora,60 -on3,0,0,24,1,0,480,1540.001280,173,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,19,1560.001280,173,0,657.024717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,766,1586.001280,173,0,660.000717,hintandextended,lora,60 -on11,0,0,24,1,0,900,1541.002560,174,0,651.441434,hintandextended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,174,0,641.600000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2178.006400,174,0,1043.683584,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,60,1541.000000,174,0,642.000410,hintandextended,lora,60 -on4,0,0,24,1,0,1114,1574.001280,174,0,655.200717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,1308,1588.001280,174,0,660.800717,hintandextended,lora,60 -on9,0,0,24,1,0,660,1540.001280,174,0,641.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,540,1540.001280,175,0,641.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,20,1560.002560,175,0,649.601434,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,175,0,641.600000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2130.006400,175,0,1024.483584,hintandextended,lora,60 -on3,0,0,24,1,0,962,1542.001280,175,0,642.400717,hintandextended,lora,60 -on6,0,0,24,1,0,1020,1540.001280,175,0,641.600717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,120,1541.000000,175,0,642.000410,hintandextended,lora,60 -on3,0,0,24,1,0,1238,1578.001280,176,0,656.800717,hintandextended,lora,60 -on11,0,0,24,1,0,1380,1540.000000,176,0,641.600000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2229.007680,176,0,1070.804301,hintandextended,lora,60 -on10,0,0,24,1,0,1140,1540.001280,176,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,309,1550.001280,176,0,654.784717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,417,1600.001280,176,1,665.600717,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,290,1590.001280,176,0,661.600717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,180,1540.001280,176,0,641.600717,hintandextended,lora,60 -on6,0,0,25,1,0,1298,1600.001280,177,1,665.600717,hintandextended,lora,60 -on5,0,0,24,1,0,1380,1540.000000,177,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2358.008960,177,0,1166.885018,hintandextended,lora,60 -on9,0,0,24,1,0,480,1541.002560,177,0,645.425434,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,120,1541.001280,177,0,644.944717,hintandextended,lora,60 -on4,0,0,25,1,0,578,1600.201280,177,1,665.680717,hintandextended,lora,60 -on3,0,0,24,1,0,187,1490.001280,177,0,621.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hintandextended,lora,60 -on7,0,0,25,0,0,1478,1500.200000,177,1,600.288000,hintandextended,lora,60 -on8,0,0,24,1,0,110,1592.000000,177,0,671.840410,hintandextended,lora,60 -on2,0,0,24,1,0,432,1552.001280,177,0,646.400717,hintandextended,lora,60 -on4,0,0,25,1,0,377,1600.001280,178,1,665.600717,hintandextended,lora,60 -on11,0,0,24,1,0,1246,1586.001280,178,0,660.000717,hintandextended,lora,60 -on5,0,0,24,1,0,1320,1540.001280,178,0,641.600717,hintandextended,lora,60 -on3,0,0,24,1,0,878,1578.001280,178,0,656.800717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,1020,1540.001280,178,0,641.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2217.610240,178,0,1075.781734,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,926,1566.001280,178,0,652.000717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,lora,60 -on7,0,0,25,1,0,240,1602.601280,178,1,672.993126,hintandextended,lora,60 -on10,0,0,24,1,0,300,1540.001280,179,0,641.600717,hintandextended,lora,60 -on8,0,0,24,1,0,1200,1540.001280,179,0,641.600717,hintandextended,lora,60 -on7,0,0,24,1,0,1368,1588.001280,179,0,660.800717,hintandextended,lora,60 -on4,0,0,24,1,0,926,1567.001280,179,0,661.584717,hintandextended,lora,60 -on3,0,0,25,1,0,1016,1601.001280,179,1,674.480717,hintandextended,lora,60 -on11,0,0,24,1,0,1149,1549.001280,179,0,645.200717,hintandextended,lora,60 -on5,0,0,24,1,0,391,1571.001280,179,0,654.000717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,1380,1540.000000,179,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2297.008960,179,0,1123.605018,hintandextended,lora,60 -on11,0,0,24,1,0,1433,1593.000000,180,0,662.800000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2038.005120,180,0,951.842867,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,240,1541.000000,180,0,642.000410,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,320,1561.000000,180,0,650.000410,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,585,1585.001280,180,0,659.600717,hintandextended,lora,60 -on2,0,0,24,1,0,0,1540.001280,180,0,641.600717,hintandextended,lora,60 -on11,0,0,24,1,0,377,1558.001280,181,0,657.984717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1315,1596.000000,181,0,664.000410,hintandextended,lora,60 -on8,0,0,25,1,0,459,1601.000000,181,1,666.000410,hintandextended,lora,60 -on6,0,0,24,1,0,14,1555.001280,181,0,656.784717,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,109,1600.201280,181,1,665.680717,hintandextended,lora,60 -on7,0,0,24,1,0,165,1585.001280,181,0,659.600717,hintandextended,lora,60 -on0,1,6,24,0,0,0,2040.007680,181,0,982.564301,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,0,1541.002560,182,0,650.705434,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,304,1544.001280,182,0,643.200717,hintandextended,lora,60 -on6,0,0,24,1,0,476,1596.001280,182,0,664.000717,hintandextended,lora,60 -on7,0,0,24,1,0,750,1570.001280,182,0,653.600717,hintandextended,lora,60 -on11,0,0,24,1,0,1037,1557.001280,182,0,648.400717,hintandextended,lora,60 -on0,1,9,24,0,0,0,2387.011520,182,0,1194.646451,hintandextended,lora,60 -on8,0,0,24,1,0,180,1540.001280,182,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,1366,1586.001280,182,0,660.000717,hintandextended,lora,60 -on5,0,0,25,1,0,98,1600.001280,182,1,665.600717,hintandextended,lora,60 -on10,0,0,24,1,0,626,1566.001280,182,0,652.000717,hintandextended,lora,60 -on10,0,0,24,1,0,179,1600.000000,183,0,665.600410,hintandextended,lora,60 -on1,0,0,24,1,0,510,1572.000000,183,0,659.520614,hintandextended,lora,60 -on8,0,0,24,1,0,860,1560.001280,183,0,649.600717,hintandextended,lora,60 -on4,0,0,24,1,0,926,1566.001280,183,0,652.000717,hintandextended,lora,60 -on3,0,0,24,1,0,300,1541.001280,183,0,647.824717,hintandextended,lora,60 -on7,0,0,25,1,0,278,1600.201280,183,1,665.680717,hintandextended,lora,60 -on9,0,0,25,1,0,398,1600.001280,183,1,665.600717,hintandextended,lora,60 -on11,0,0,25,1,0,1140,1601.601280,183,1,666.289126,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,183,0,576.000000,hintandextended,lora,60 -on0,1,10,24,0,0,0,2569.215360,183,0,1325.320602,hintandextended,lora,60 -on5,0,0,25,1,0,180,1603.601280,183,1,670.833331,hintandextended,lora,60 -on2,0,0,24,1,0,60,1541.000000,183,0,642.000410,hintandextended,lora,60 -on9,0,0,24,1,0,499,1559.001280,184,0,649.200717,hintandextended,lora,60 -on8,0,0,25,1,0,360,1600.602560,184,1,665.889638,hintandextended,lora,60 -on7,0,0,25,1,0,420,1600.002560,184,1,665.601434,hintandextended,lora,60 -on6,0,0,25,1,0,717,1602.001280,184,1,674.881126,hintandextended,lora,60 -on2,0,0,24,1,0,872,1572.001280,184,0,654.400717,hintandextended,lora,60 -on5,0,0,24,1,0,720,1540.001280,184,0,641.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2357.611520,184,0,1183.142451,hintandextended,lora,60 -on11,0,0,24,1,0,600,1541.001280,184,0,651.184717,hintandextended,lora,60 -on3,0,0,24,1,0,540,1540.001280,184,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,1081,1541.001280,185,0,642.000717,hintandextended,lora,60 -on2,0,0,25,1,0,600,1601.601280,185,1,666.289126,hintandextended,lora,60 -on9,0,0,25,1,0,434,1600.301280,185,1,671.832717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2246.610240,185,0,1092.341734,hintandextended,lora,60 -on4,0,0,24,1,0,809,1569.001280,185,0,653.200717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,300,1540.001280,185,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,180,1541.001280,185,0,646.480922,hintandextended,lora,60 -on3,0,0,24,1,0,0,1540.001280,185,0,641.600717,hintandextended,lora,60 -on11,0,0,25,0,0,1478,1500.000000,185,1,600.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on0,1,3,24,0,0,0,1796.003840,186,0,799.362150,hintandextended,lora,60 -on4,0,0,24,1,0,660,1542.000000,186,0,651.584410,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on6,0,0,25,1,0,895,1602.200000,186,1,675.664410,hintandextended,lora,60 -on8,0,0,25,1,0,949,1600.201280,186,1,665.680717,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,lora,60 -on9,0,0,25,1,0,1359,1600.001280,187,1,665.600717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2236.211520,187,0,1084.758451,hintandextended,lora,60 -on10,0,0,25,1,0,1260,1601.602560,187,1,674.513434,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1092,1552.001280,187,0,646.400717,hintandextended,lora,60 -on11,0,0,24,1,0,1140,1540.001280,187,0,641.600717,hintandextended,lora,60 -on2,0,0,25,1,0,900,1601.601280,187,1,666.289126,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,180,1540.001280,187,0,641.600717,hintandextended,lora,60 -on8,0,0,24,1,0,54,1595.000000,187,0,663.600410,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,540,1540.001280,188,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1380,1540.000000,188,0,641.600000,hintandextended,lora,60 -on0,1,8,24,0,0,0,2335.610240,188,0,1167.461734,hintandextended,lora,60 -on10,0,0,24,1,0,350,1590.001280,188,0,661.600717,hintandextended,lora,60 -on3,0,0,25,1,0,360,1601.602560,188,1,666.289843,hintandextended,lora,60 -on8,0,0,24,1,0,945,1586.001280,188,0,669.280717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,539,1600.000000,188,0,665.600410,hintandextended,lora,60 -on1,0,0,24,1,0,1140,1540.001280,188,0,641.600717,hintandextended,lora,60 -on4,0,0,25,1,0,976,1600.301280,188,1,672.760717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,lora,60 -on6,0,0,24,1,0,780,1540.001280,189,0,641.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,1172,1600.002560,189,1,665.601434,hintandextended,lora,60 -on5,0,0,25,1,0,1020,1602.601280,189,1,675.873126,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1975.607680,189,0,935.940301,hintandextended,lora,60 -on10,0,0,24,1,0,720,1540.001280,189,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1313,1593.001280,189,0,662.800717,hintandextended,lora,60 -on5,0,0,24,1,0,363,1543.005120,190,0,642.802458,hintandextended,lora,60 -on0,1,5,24,0,0,0,1981.006400,190,0,939.283584,hintandextended,lora,60 -on9,0,0,24,1,0,60,1540.998720,190,0,641.999898,hintandextended,lora,60 -on11,0,0,24,1,0,600,1541.001280,190,0,645.680717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,155,1577.001280,190,0,666.224717,hintandextended,lora,60 -on2,0,0,25,1,0,240,1601.000000,190,1,666.000410,hintandextended,lora,60 -on3,0,0,25,0,0,1486,1500.000000,190,1,600.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,60,1540.001280,191,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,244,1544.001280,191,0,643.200717,hintandextended,lora,60 -on3,0,0,25,0,0,1500,1500.000000,191,1,600.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,1080,1540.001280,191,0,641.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,lora,60 -on0,1,5,24,0,0,0,2013.006400,191,0,933.203584,hintandextended,lora,60 -on4,0,0,24,1,0,1140,1541.001280,191,0,651.184717,hintandextended,lora,60 -on8,0,0,24,1,0,1215,1555.001280,191,0,647.600717,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,lora,60 -on4,0,0,24,1,0,1041,1561.001280,192,0,650.000717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,1428,1588.000000,192,0,660.800000,hintandextended,lora,60 -on0,1,5,24,0,0,0,1991.005120,192,0,933.202867,hintandextended,lora,60 -on10,0,0,24,1,0,1246,1586.001280,192,0,660.000717,hintandextended,lora,60 -on1,0,0,24,1,0,60,1540.002560,192,0,641.601434,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,lora,60 -on11,0,0,24,1,0,949,1589.001280,192,0,661.200717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,399,1540.001280,193,1,641.600717,hintandextended,lora,60 -on9,0,0,25,1,0,720,1601.601280,193,1,666.289126,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1034,1555.001280,193,0,657.040717,hintandextended,lora,60 -on7,0,0,24,1,0,859,1560.000000,193,0,649.600410,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2159.210240,193,0,1055.237734,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,lora,60 -on10,0,0,25,1,0,300,1602.602560,193,1,672.033843,hintandextended,lora,60 -on2,0,0,24,1,0,120,1542.000000,193,0,650.400410,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hintandextended,lora,60 -on10,0,0,24,1,0,770,1590.001280,194,0,661.600717,hintandextended,lora,60 -on1,0,0,24,1,0,1408,1568.000000,194,0,652.800000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2040.006400,194,0,969.603584,hintandextended,lora,60 -on6,0,0,24,1,0,699,1579.001280,194,0,657.200717,hintandextended,lora,60 -on4,0,0,24,1,0,116,1596.001280,194,0,664.000717,hintandextended,lora,60 -on5,0,0,24,1,0,1219,1560.001280,194,0,658.304717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hintandextended,lora,60 -on2,0,0,24,1,0,1297,1598.001280,194,1,664.800717,hintandextended,lora,60 -on6,0,0,24,1,0,764,1584.001280,195,0,659.200717,hintandextended,lora,60 -on8,0,0,25,1,0,840,1600.602560,195,1,665.889434,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,9,1549.002560,195,0,645.201434,hintandextended,lora,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,hintandextended,lora,60 -on1,0,0,25,1,0,239,1600.001280,195,1,665.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hintandextended,lora,60 -on3,0,0,25,1,0,60,1602.601280,195,1,675.873126,hintandextended,lora,60 -on4,0,0,24,1,0,929,1570.001280,195,0,654.880717,hintandextended,lora,60 -on7,0,0,24,1,0,1380,1540.000000,195,0,641.600000,hintandextended,lora,60 -on0,1,7,24,0,0,0,2252.210240,195,0,1099.157734,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,lora,60 -on2,0,0,25,1,0,600,1601.601280,196,1,666.289126,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,lora,60 -on5,0,0,25,1,0,480,1601.998720,196,1,666.400102,hintandextended,lora,60 -on9,0,0,24,1,0,1020,1540.001280,196,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,lora,60 -on0,1,4,24,0,0,0,1987.606400,196,0,926.979584,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,lora,60 -on7,0,0,24,1,0,180,1541.001280,196,0,642.001331,hintandextended,lora,60 -on3,0,0,24,1,0,716,1596.001280,197,0,664.000717,hintandextended,lora,60 -on0,1,7,24,0,0,0,2140.608960,197,0,1046.645018,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hintandextended,lora,60 -on4,0,0,25,1,0,447,1600.201280,197,1,665.680717,hintandextended,lora,60 -on2,0,0,25,1,0,283,1601.000000,197,1,666.000410,hintandextended,lora,60 -on10,0,0,24,1,0,770,1590.001280,197,0,661.600717,hintandextended,lora,60 -on11,0,0,24,1,0,235,1600.600000,197,1,675.024410,hintandextended,lora,60 -on6,0,0,24,1,0,173,1594.001280,197,0,672.384717,hintandextended,lora,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hintandextended,lora,60 -on9,0,0,24,1,0,320,1562.000000,197,0,659.584410,hintandextended,lora,60 -on0,1,4,24,0,0,0,1888.606400,198,0,867.379584,hintandextended,lora,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,lora,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,1020,1540.001280,198,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,976,1556.001280,198,0,648.000717,hintandextended,lora,60 -on6,0,0,25,1,0,1260,1601.601280,198,1,666.289126,hintandextended,lora,60 -on9,0,0,24,1,0,172,1592.001280,198,0,662.400717,hintandextended,lora,60 -on11,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,lora,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,lora,60 -on5,0,0,24,1,0,820,1580.001280,199,0,657.600717,hintandextended,lora,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,lora,60 -on8,0,0,24,1,0,1092,1552.001280,199,0,646.400717,hintandextended,lora,60 -on0,1,5,24,0,0,0,1991.006400,199,0,924.403584,hintandextended,lora,60 -on4,0,0,24,1,0,480,1540.001280,199,0,641.600717,hintandextended,lora,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,lora,60 -on1,0,0,24,1,0,1310,1590.001280,199,0,661.600717,hintandextended,lora,60 -on2,0,0,24,1,0,1320,1540.001280,199,0,641.600717,hintandextended,lora,60 -on7,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,lora,60 -on3,0,0,24,1,0,905,1546.001280,200,0,653.440717,hintandextended,lora,60 -on10,0,0,25,1,0,0,1601.602560,200,1,675.473434,hintandextended,lora,60 -on11,0,0,24,1,0,480,1540.001280,200,0,641.600717,hintandextended,lora,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,lora,60 -on0,1,6,24,0,0,0,2133.608960,200,0,1009.701018,hintandextended,lora,60 -on5,0,0,24,1,0,660,1540.001280,200,0,641.600717,hintandextended,lora,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,lora,60 -on2,0,0,25,0,0,1479,1500.000000,200,1,600.000000,hintandextended,lora,60 -on7,0,0,24,1,0,68,1548.002560,200,0,644.801434,hintandextended,lora,60 -on9,0,0,24,1,0,369,1549.001280,200,0,645.200717,hintandextended,lora,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,lora,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,lora,60 -on6,0,0,24,0,0,1428,1440.000000,1,0,584.450000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1420,1440.000000,1,0,589.650000,baseline,nbiot,60 -on8,0,0,24,1,0,439,1440.000000,1,0,602.006500,baseline,nbiot,60 -on2,0,0,24,1,0,483,1440.000000,1,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1431,1440.000000,1,0,582.500000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1377,1440.000000,1,0,666.350000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,1,0,801.550000,baseline,nbiot,60 -on10,0,0,24,0,0,1411,1440.000000,2,0,595.500000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1390,1440.000000,2,0,632.550000,baseline,nbiot,60 -on7,0,0,24,0,0,1414,1440.000000,2,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1412,1440.000000,2,0,594.850000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,2,0,836.650000,baseline,nbiot,60 -on6,0,0,24,0,0,1412,1440.000000,2,0,594.850000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,2,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,1259,1440.000000,2,0,641.006500,baseline,nbiot,60 -on5,0,0,24,1,0,552,1440.000000,2,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,3,0,826.900000,baseline,nbiot,60 -on4,0,0,24,1,0,392,1440.000000,3,0,641.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,956,1440.000000,3,0,641.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,480,1440.000000,3,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1373,1440.000000,3,0,621.500000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1096,1440.000000,3,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1422,1440.000000,3,0,589.643500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1402,1440.000000,4,0,601.350000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,4,0,700.800000,baseline,nbiot,60 -on2,0,0,24,0,0,1420,1440.000000,4,0,596.800000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,4,0,576.650000,baseline,nbiot,60 -on3,0,0,24,1,0,17,1440.000000,4,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1434,1440.000000,4,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1436,1440.000000,4,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1433,1440.000000,5,0,581.200000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,5,0,769.700000,baseline,nbiot,60 -on5,0,0,24,0,0,1419,1440.000000,5,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1404,1440.000000,5,0,600.050000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1428,1440.000000,5,0,584.450000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1370,1440.000000,5,0,638.400000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1438,1440.000000,6,0,577.950000,baseline,nbiot,60 -on7,0,0,24,1,0,498,1440.000000,6,0,602.006500,baseline,nbiot,60 -on9,0,0,24,1,0,1033,1440.000000,6,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,6,0,724.200000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1402,1440.000000,6,0,601.350000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,1260,1440.000000,6,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,7,0,637.750000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1403,1440.000000,7,0,639.050000,baseline,nbiot,60 -on8,0,0,24,0,0,1408,1440.000000,7,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,8,0,712.500000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,8,0,654.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,180,1440.000000,8,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1420,1440.000000,8,0,589.650000,baseline,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,8,0,598.100000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1365,1440.000000,9,0,626.700000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,9,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,9,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1408,1440.000000,9,0,601.350000,baseline,nbiot,60 -on9,0,0,24,0,0,1418,1440.000000,9,0,590.950000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,9,0,870.450000,baseline,nbiot,60 -on10,0,0,24,0,0,1428,1440.000000,9,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1389,1440.000000,9,0,610.450000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,9,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1373,1440.000000,9,0,636.450000,baseline,nbiot,60 -on3,0,0,24,0,0,1393,1440.000000,9,0,640.350000,baseline,nbiot,60 -on8,0,0,24,0,0,1387,1440.000000,9,0,641.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,10,0,593.550000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,10,0,859.400000,baseline,nbiot,60 -on4,0,0,24,0,0,1405,1440.000000,10,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1418,1440.000000,10,0,590.950000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1369,1440.000000,10,0,636.450000,baseline,nbiot,60 -on3,0,0,24,0,0,1405,1440.000000,10,0,599.400000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1378,1440.000000,10,0,617.600000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1421,1440.000000,11,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1392,1440.000000,11,0,668.300000,baseline,nbiot,60 -on6,0,0,24,0,0,1438,1440.000000,11,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1407,1440.000000,11,0,598.100000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,11,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1435,1440.000000,11,0,579.900000,baseline,nbiot,60 -on1,0,0,24,1,0,227,1440.000000,11,0,618.906500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,11,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1421,1440.000000,11,0,614.993500,baseline,nbiot,60 -on7,0,0,24,1,0,960,1440.000000,11,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,11,0,876.300000,baseline,nbiot,60 -on4,0,0,24,1,0,731,1440.000000,11,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1421,1440.000000,12,0,615.000000,baseline,nbiot,60 -on10,0,0,24,1,0,126,1440.000000,12,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1422,1440.000000,12,0,588.350000,baseline,nbiot,60 -on9,0,0,24,0,0,1438,1440.000000,12,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,600,1440.000000,12,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,12,0,600.700000,baseline,nbiot,60 -on8,0,0,24,1,0,1241,1440.000000,12,0,620.856500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,12,0,813.250000,baseline,nbiot,60 -on7,0,0,24,0,0,1399,1440.000000,13,0,624.093500,baseline,nbiot,60 -on3,0,0,24,0,0,1414,1440.000000,13,0,593.550000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1416,1440.000000,13,0,653.993500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,3,1440.000000,13,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,13,0,774.900000,baseline,nbiot,60 -on1,0,0,24,1,0,582,1440.000000,13,0,622.806500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1426,1440.000000,14,0,615.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,14,0,802.200000,baseline,nbiot,60 -on3,0,0,24,0,0,1408,1440.000000,14,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1401,1440.000000,14,0,633.850000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,14,0,576.650000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,374,1440.000000,14,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,14,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1424,1440.000000,14,0,587.050000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,423,1440.000000,15,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,1020,1440.000000,15,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,15,0,596.150000,baseline,nbiot,60 -on11,0,0,24,1,0,357,1440.000000,15,0,641.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,15,0,900.350000,baseline,nbiot,60 -on8,0,0,24,0,0,1403,1440.000000,15,0,655.300000,baseline,nbiot,60 -on2,0,0,24,1,0,663,1440.000000,15,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1400,1440.000000,15,0,603.300000,baseline,nbiot,60 -on7,0,0,24,0,0,1367,1440.000000,16,0,637.750000,baseline,nbiot,60 -on3,0,0,24,1,0,488,1440.000000,16,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1423,1440.000000,16,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,16,0,758.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1409,1440.000000,16,0,596.800000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,1263,1440.000000,16,0,602.006500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,17,0,761.250000,baseline,nbiot,60 -on6,0,0,24,0,0,1437,1440.000000,17,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1413,1440.000000,17,0,615.000000,baseline,nbiot,60 -on1,0,0,24,1,0,1202,1440.000000,17,0,602.006500,baseline,nbiot,60 -on2,0,0,23,0,0,1430,1430.000000,17,0,572.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1424,1440.000000,17,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1351,1440.000000,17,0,717.050000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1431,1440.000000,17,0,582.500000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,17,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1420,1440.000000,18,0,589.650000,baseline,nbiot,60 -on5,0,0,24,1,0,467,1440.000000,18,0,641.006500,baseline,nbiot,60 -on8,0,0,24,1,0,601,1440.000000,18,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,378,1440.000000,18,0,602.006500,baseline,nbiot,60 -on2,0,0,24,1,0,1140,1440.000000,18,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,18,0,842.500000,baseline,nbiot,60 -on6,0,0,24,1,0,1031,1440.000000,18,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,18,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1427,1440.000000,18,0,585.100000,baseline,nbiot,60 -on7,0,0,24,0,0,1434,1440.000000,19,0,580.550000,baseline,nbiot,60 -on3,0,0,24,0,0,1437,1440.000000,19,0,578.600000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,19,0,616.950000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,19,0,772.300000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,75,1440.000000,19,0,602.006500,baseline,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,19,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,20,0,817.800000,baseline,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,20,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,540,1440.000000,20,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,20,0,621.500000,baseline,nbiot,60 -on4,0,0,24,0,0,1416,1440.000000,20,0,592.250000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1397,1440.000000,20,0,605.250000,baseline,nbiot,60 -on3,0,0,24,0,0,1405,1440.000000,21,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,21,0,780.100000,baseline,nbiot,60 -on7,0,0,24,0,0,1401,1440.000000,21,0,602.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1417,1440.000000,21,0,591.600000,baseline,nbiot,60 -on2,0,0,24,0,0,1403,1440.000000,21,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1414,1440.000000,21,0,594.200000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1416,1440.000000,22,0,592.250000,baseline,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,22,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1405,1440.000000,22,0,599.400000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,22,0,735.900000,baseline,nbiot,60 -on9,0,0,24,0,0,1428,1440.000000,22,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1434,1440.000000,22,0,580.550000,baseline,nbiot,60 -on9,0,0,24,0,0,1425,1440.000000,23,0,586.400000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,0,1440.000000,23,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1436,1440.000000,23,0,615.000000,baseline,nbiot,60 -on8,0,0,24,1,0,720,1440.000000,23,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1395,1440.000000,23,0,650.093500,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,23,0,799.600000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1335,1440.000000,23,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,23,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1200,1440.000000,23,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,600,1440.000000,23,0,602.006500,baseline,nbiot,60 -on2,0,0,24,1,0,979,1440.000000,24,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1421,1440.000000,24,0,605.243500,baseline,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,24,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,1224,1440.000000,24,0,626.056500,baseline,nbiot,60 -on8,0,0,24,1,0,130,1440.000000,24,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1418,1440.000000,24,0,611.750000,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,24,0,789.200000,baseline,nbiot,60 -on7,0,0,24,1,0,605,1440.000000,24,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,720,1440.000000,25,0,610.456500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1436,1440.000000,25,0,579.250000,baseline,nbiot,60 -on11,0,0,24,0,0,1432,1440.000000,25,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1403,1440.000000,25,0,615.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,25,0,752.800000,baseline,nbiot,60 -on5,0,0,24,1,0,540,1440.000000,25,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1370,1440.000000,26,0,637.100000,baseline,nbiot,60 -on7,0,0,24,0,0,1431,1440.000000,26,0,582.500000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,26,0,918.550000,baseline,nbiot,60 -on10,0,0,24,0,0,1427,1440.000000,26,0,585.100000,baseline,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,26,0,615.000000,baseline,nbiot,60 -on8,0,0,24,1,0,780,1440.000000,26,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1409,1440.000000,26,0,618.250000,baseline,nbiot,60 -on1,0,0,24,1,0,1211,1440.000000,26,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,26,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1397,1440.000000,26,0,605.250000,baseline,nbiot,60 -on5,0,0,24,1,0,1037,1440.000000,27,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1415,1440.000000,27,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,27,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1383,1440.000000,27,0,614.350000,baseline,nbiot,60 -on2,0,0,24,1,0,1147,1440.000000,27,0,665.056500,baseline,nbiot,60 -on10,0,0,24,1,0,1247,1440.000000,27,0,619.556500,baseline,nbiot,60 -on4,0,0,24,1,0,605,1440.000000,27,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1375,1440.000000,27,0,634.500000,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,27,0,1064.800000,baseline,nbiot,60 -on3,0,0,24,1,0,482,1440.000000,27,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1420,1440.000000,27,0,626.700000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,27,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1387,1440.000000,28,0,616.950000,baseline,nbiot,60 -on8,0,0,24,0,0,1412,1440.000000,28,0,595.500000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1415,1440.000000,28,0,592.900000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,28,0,813.250000,baseline,nbiot,60 -on10,0,0,24,0,0,1436,1440.000000,28,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1394,1440.000000,28,0,607.200000,baseline,nbiot,60 -on11,0,0,24,0,0,1415,1440.000000,29,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,607,1440.000000,29,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1438,1440.000000,29,0,577.950000,baseline,nbiot,60 -on7,0,0,24,0,0,1433,1440.000000,29,0,581.200000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1430,1440.000000,29,0,583.150000,baseline,nbiot,60 -on5,0,0,24,1,0,540,1440.000000,29,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,29,0,740.450000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1437,1440.000000,30,0,578.600000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,30,0,721.600000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1172,1440.000000,30,0,620.856500,baseline,nbiot,60 -on5,0,0,24,1,0,720,1440.000000,30,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1396,1440.000000,31,0,631.893500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,31,0,748.250000,baseline,nbiot,60 -on10,0,0,24,0,0,1435,1440.000000,31,0,579.900000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1404,1440.000000,31,0,600.050000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1426,1440.000000,31,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1403,1440.000000,31,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,845,1440.000000,31,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1414,1440.000000,32,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1414,1440.000000,32,0,593.550000,baseline,nbiot,60 -on5,0,0,24,0,0,1423,1440.000000,32,0,587.700000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,32,0,583.800000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1410,1440.000000,32,0,615.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,32,0,768.400000,baseline,nbiot,60 -on6,0,0,24,0,0,1416,1440.000000,32,0,615.650000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,33,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1398,1440.000000,33,0,654.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1413,1440.000000,33,0,594.200000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,193,1440.000000,33,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1402,1440.000000,33,0,615.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,33,0,745.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1416,1440.000000,34,0,592.250000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,34,0,703.400000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1403,1440.000000,34,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1414,1440.000000,34,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1427,1440.000000,34,0,615.000000,baseline,nbiot,60 -on10,0,0,24,1,0,1020,1440.000000,34,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1411,1440.000000,35,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,608,1440.000000,35,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1422,1440.000000,35,0,588.350000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,1200,1440.000000,35,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1384,1440.000000,35,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,35,0,701.450000,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,36,0,889.300000,baseline,nbiot,60 -on11,0,0,24,1,0,1148,1440.000000,36,0,605.906500,baseline,nbiot,60 -on1,0,0,24,1,0,484,1440.000000,36,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1427,1440.000000,36,0,585.100000,baseline,nbiot,60 -on4,0,0,24,1,0,0,1440.000000,36,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,670,1440.000000,36,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1401,1440.000000,36,0,655.943500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,1295,1440.000000,36,0,641.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1434,1440.000000,37,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1430,1440.000000,37,0,615.000000,baseline,nbiot,60 -on8,0,0,24,1,0,120,1440.000000,37,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1431,1440.000000,37,0,582.500000,baseline,nbiot,60 -on10,0,0,24,1,0,1394,1440.000000,37,0,641.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,37,0,852.900000,baseline,nbiot,60 -on5,0,0,24,0,0,1421,1440.000000,37,0,609.143500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,1201,1440.000000,37,0,678.706500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1375,1440.000000,37,0,654.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1428,1440.000000,38,0,584.450000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1385,1440.000000,38,0,613.700000,baseline,nbiot,60 -on9,0,0,24,0,0,1414,1440.000000,38,0,593.550000,baseline,nbiot,60 -on6,0,0,24,0,0,1438,1440.000000,38,0,577.950000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,319,1440.000000,38,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,38,0,810.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1404,1440.000000,39,0,600.050000,baseline,nbiot,60 -on4,0,0,24,1,0,1359,1440.000000,39,0,624.106500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,39,0,771.000000,baseline,nbiot,60 -on5,0,0,23,0,0,1411,1438.000000,39,0,620.700000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,420,1440.000000,39,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,18,1440.000000,39,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,39,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1401,1440.000000,40,0,602.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,40,0,583.800000,baseline,nbiot,60 -on10,0,0,24,1,0,1178,1440.000000,40,0,680.006500,baseline,nbiot,60 -on11,0,0,24,1,0,540,1440.000000,40,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1405,1440.000000,40,0,599.400000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,40,0,851.600000,baseline,nbiot,60 -on1,0,0,24,0,0,1408,1440.000000,40,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1418,1440.000000,40,0,590.950000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,40,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,16,1440.000000,41,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1428,1440.000000,41,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,41,0,682.600000,baseline,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,41,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1406,1440.000000,41,0,598.750000,baseline,nbiot,60 -on6,0,0,24,0,0,1391,1440.000000,42,0,629.300000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,42,0,763.850000,baseline,nbiot,60 -on11,0,0,24,0,0,1406,1440.000000,42,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1422,1440.000000,42,0,610.443500,baseline,nbiot,60 -on9,0,0,24,1,0,0,1440.000000,42,0,602.006500,baseline,nbiot,60 -on2,0,0,24,1,0,460,1440.000000,42,0,615.656500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,362,1440.000000,43,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,300,1440.000000,43,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1419,1440.000000,43,0,590.300000,baseline,nbiot,60 -on6,0,0,24,0,0,1409,1440.000000,43,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,845,1440.000000,43,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1433,1440.000000,43,0,581.200000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,43,0,791.150000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,44,0,815.850000,baseline,nbiot,60 -on10,0,0,24,1,0,60,1440.000000,44,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1406,1440.000000,44,0,624.100000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1080,1440.000000,44,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1419,1440.000000,44,0,590.300000,baseline,nbiot,60 -on9,0,0,24,1,0,540,1440.000000,44,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,44,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1431,1440.000000,44,0,619.550000,baseline,nbiot,60 -on4,0,0,24,1,0,1336,1440.000000,45,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,45,0,927.000000,baseline,nbiot,60 -on2,0,0,24,1,0,360,1440.000000,45,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,547,1440.000000,45,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1394,1440.000000,45,0,607.200000,baseline,nbiot,60 -on8,0,0,24,0,0,1412,1440.000000,45,0,611.093500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1426,1440.000000,45,0,585.750000,baseline,nbiot,60 -on3,0,0,24,0,0,1382,1440.000000,45,0,615.643500,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,46,0,814.550000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,208,1440.000000,46,0,623.456500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1417,1440.000000,46,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1439,1440.000000,46,0,577.300000,baseline,nbiot,60 -on3,0,0,24,1,0,976,1440.000000,46,0,602.006500,baseline,nbiot,60 -on9,0,0,24,1,0,480,1440.000000,46,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,905,1440.000000,46,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1421,1440.000000,46,0,601.343500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1438,1440.000000,47,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1423,1440.000000,47,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,300,1440.000000,47,0,602.006500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,47,0,726.800000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1430,1440.000000,47,0,583.150000,baseline,nbiot,60 -on10,0,0,24,0,0,1392,1440.000000,47,0,608.500000,baseline,nbiot,60 -on7,0,0,24,0,0,1403,1440.000000,47,0,600.700000,baseline,nbiot,60 -on2,0,0,24,0,0,1426,1440.000000,48,0,585.750000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,48,0,723.550000,baseline,nbiot,60 -on6,0,0,24,0,0,1421,1440.000000,48,0,589.000000,baseline,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,48,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,188,1440.000000,48,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,677,1440.000000,49,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1407,1440.000000,49,0,598.100000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,49,0,746.950000,baseline,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,49,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1421,1440.000000,49,0,615.000000,baseline,nbiot,60 -on9,0,0,24,1,0,427,1440.000000,49,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1435,1440.000000,49,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1421,1440.000000,50,0,615.000000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,50,0,847.050000,baseline,nbiot,60 -on2,0,0,24,0,0,1377,1440.000000,50,0,638.400000,baseline,nbiot,60 -on3,0,0,24,1,0,1080,1440.000000,50,0,602.006500,baseline,nbiot,60 -on6,0,0,24,1,0,725,1440.000000,50,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,480,1440.000000,50,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1426,1440.000000,50,0,585.750000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1414,1440.000000,50,0,615.000000,baseline,nbiot,60 -on11,0,0,24,1,0,120,1440.000000,50,0,602.006500,baseline,nbiot,60 -on7,0,0,24,1,0,1200,1440.000000,51,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,180,1440.000000,51,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,51,0,790.500000,baseline,nbiot,60 -on6,0,0,24,0,0,1438,1440.000000,51,0,577.950000,baseline,nbiot,60 -on9,0,0,24,0,0,1429,1440.000000,51,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1416,1440.000000,51,0,592.250000,baseline,nbiot,60 -on11,0,0,24,0,0,1382,1440.000000,51,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1435,1440.000000,51,0,615.000000,baseline,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,52,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1412,1440.000000,52,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,580,1440.000000,52,0,641.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,52,0,806.750000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1421,1440.000000,52,0,589.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1438,1440.000000,52,0,577.950000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,730,1440.000000,52,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1408,1440.000000,53,0,634.500000,baseline,nbiot,60 -on11,0,0,24,1,0,420,1440.000000,53,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,240,1440.000000,53,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1405,1440.000000,53,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1429,1440.000000,53,0,583.800000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,53,0,778.800000,baseline,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,53,0,635.793500,baseline,nbiot,60 -on6,0,0,24,0,0,1415,1440.000000,54,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1418,1440.000000,54,0,590.950000,baseline,nbiot,60 -on3,0,0,24,1,0,720,1440.000000,54,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1021,1440.000000,54,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1434,1440.000000,54,0,580.550000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,54,0,737.200000,baseline,nbiot,60 -on1,0,0,24,1,0,780,1440.000000,54,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,55,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1437,1440.000000,55,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,55,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1422,1440.000000,55,0,588.350000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,540,1440.000000,55,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,55,0,709.250000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1410,1440.000000,56,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,56,0,596.150000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,885,1440.000000,57,0,612.406500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,57,0,743.050000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1406,1440.000000,57,0,598.750000,baseline,nbiot,60 -on7,0,0,24,0,0,1406,1440.000000,57,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1411,1440.000000,57,0,595.500000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,57,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1406,1440.000000,58,0,599.393500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,9,1440.000000,58,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1393,1440.000000,58,0,623.450000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,58,0,833.400000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,58,0,583.800000,baseline,nbiot,60 -on6,0,0,24,0,0,1380,1440.000000,58,0,616.300000,baseline,nbiot,60 -on8,0,0,24,0,0,1402,1440.000000,59,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1414,1440.000000,59,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1429,1440.000000,59,0,583.800000,baseline,nbiot,60 -on10,0,0,24,0,0,1389,1440.000000,59,0,654.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,59,0,774.250000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,1080,1440.000000,59,0,602.006500,baseline,nbiot,60 -on11,0,0,24,1,0,540,1440.000000,59,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1416,1440.000000,59,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1379,1440.000000,60,0,654.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1439,1440.000000,60,0,577.300000,baseline,nbiot,60 -on2,0,0,24,0,0,1427,1440.000000,60,0,590.943500,baseline,nbiot,60 -on8,0,0,24,1,0,1078,1440.000000,60,0,680.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1426,1440.000000,60,0,585.750000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,60,0,747.600000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,60,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1432,1440.000000,61,0,602.643500,baseline,nbiot,60 -on1,0,0,24,1,0,555,1440.000000,61,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,488,1440.000000,61,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1420,1440.000000,61,0,616.300000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,60,1440.000000,61,0,602.006500,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,61,0,771.650000,baseline,nbiot,60 -on2,0,0,24,1,0,1310,1440.000000,61,0,609.156500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1432,1440.000000,62,0,581.850000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1424,1440.000000,62,0,587.050000,baseline,nbiot,60 -on6,0,0,24,1,0,1096,1440.000000,62,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,62,0,732.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,75,1440.000000,62,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1408,1440.000000,63,0,597.450000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,63,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,645,1440.000000,63,0,614.356500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,63,0,823.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1426,1440.000000,63,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1417,1440.000000,63,0,615.000000,baseline,nbiot,60 -on4,0,0,24,1,0,1222,1440.000000,63,0,635.800000,baseline,nbiot,60 -on1,0,0,24,0,0,1427,1440.000000,63,0,585.100000,baseline,nbiot,60 -on9,0,0,24,0,0,1403,1440.000000,63,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1419,1440.000000,63,0,615.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,64,0,721.600000,baseline,nbiot,60 -on8,0,0,24,1,0,240,1440.000000,64,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1409,1440.000000,64,0,635.143500,baseline,nbiot,60 -on9,0,0,24,0,0,1405,1440.000000,64,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,900,1440.000000,64,0,602.006500,baseline,nbiot,60 -on11,0,0,24,1,0,543,1440.000000,64,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1410,1440.000000,65,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1401,1440.000000,65,0,615.000000,baseline,nbiot,60 -on7,0,0,24,1,0,63,1440.000000,65,0,602.006500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,65,0,797.650000,baseline,nbiot,60 -on11,0,0,24,0,0,1383,1440.000000,65,0,627.350000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1379,1440.000000,65,0,633.200000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,65,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1426,1440.000000,65,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,66,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1424,1440.000000,66,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,66,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,421,1440.000000,66,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,125,1440.000000,66,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1436,1440.000000,66,0,579.250000,baseline,nbiot,60 -on4,0,0,24,1,0,1379,1440.000000,66,0,641.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,66,0,814.550000,baseline,nbiot,60 -on8,0,0,24,0,0,1406,1440.000000,66,0,598.750000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,66,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1418,1440.000000,66,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1153,1440.000000,67,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1424,1440.000000,67,0,587.050000,baseline,nbiot,60 -on5,0,0,24,0,0,1421,1440.000000,67,0,593.543500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,67,0,801.550000,baseline,nbiot,60 -on6,0,0,24,0,0,1404,1440.000000,67,0,615.000000,baseline,nbiot,60 -on1,0,0,24,1,0,9,1440.000000,67,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,488,1440.000000,67,0,641.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,974,1440.000000,67,0,641.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1428,1440.000000,67,0,584.450000,baseline,nbiot,60 -on7,0,0,24,1,0,0,1440.000000,68,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1401,1440.000000,68,0,602.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1411,1440.000000,68,0,595.500000,baseline,nbiot,60 -on1,0,0,24,0,0,1410,1440.000000,68,0,615.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1260,1440.000000,68,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,68,0,891.250000,baseline,nbiot,60 -on11,0,0,24,1,0,1301,1440.000000,68,0,699.506500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1401,1440.000000,68,0,602.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,68,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,319,1440.000000,69,0,602.006500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,69,0,678.700000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1403,1440.000000,69,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1432,1440.000000,69,0,581.850000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,540,1440.000000,70,0,602.006500,baseline,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,70,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1411,1440.000000,70,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,70,0,591.600000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,70,0,774.900000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,787,1440.000000,70,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1416,1440.000000,70,0,592.250000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,837,1440.000000,71,0,644.256500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,71,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1438,1440.000000,71,0,615.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,71,0,748.250000,baseline,nbiot,60 -on3,0,0,24,1,0,540,1440.000000,71,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,71,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,853,1440.000000,72,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1262,1440.000000,72,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1339,1440.000000,72,0,659.850000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,72,0,754.750000,baseline,nbiot,60 -on5,0,0,24,1,0,1258,1440.000000,73,0,641.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1420,1440.000000,73,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1413,1440.000000,73,0,618.900000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,73,0,720.950000,baseline,nbiot,60 -on9,0,0,24,0,0,1414,1440.000000,73,0,593.550000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1401,1440.000000,74,0,602.650000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,74,0,738.500000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,74,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1404,1440.000000,74,0,615.000000,baseline,nbiot,60 -on3,0,0,24,1,0,960,1440.000000,74,0,602.006500,baseline,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,74,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,74,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1418,1440.000000,75,0,630.593500,baseline,nbiot,60 -on10,0,0,24,0,0,1401,1440.000000,75,0,602.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1377,1440.000000,75,0,631.250000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,75,0,576.650000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,790,1440.000000,75,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1424,1440.000000,75,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1411,1440.000000,75,0,622.150000,baseline,nbiot,60 -on11,0,0,24,1,0,600,1440.000000,75,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,75,0,854.850000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1406,1440.000000,76,0,598.750000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,76,0,576.650000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,76,0,593.550000,baseline,nbiot,60 -on1,0,0,24,0,0,1436,1440.000000,76,0,579.250000,baseline,nbiot,60 -on9,0,0,24,0,0,1377,1440.000000,76,0,618.250000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,76,0,849.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,661,1440.000000,76,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1424,1440.000000,76,0,587.043500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,8,1440.000000,77,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1426,1440.000000,77,0,615.000000,baseline,nbiot,60 -on6,0,0,24,1,0,1320,1440.000000,77,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1385,1440.000000,77,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,77,0,699.500000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,913,1440.000000,78,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1418,1440.000000,78,0,590.950000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1411,1440.000000,78,0,615.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1288,1440.000000,78,0,623.456500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,78,0,586.400000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,78,0,787.250000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1367,1440.000000,79,0,662.450000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,660,1440.000000,79,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,724,1440.000000,79,0,602.006500,baseline,nbiot,60 -on1,0,0,24,1,0,1200,1440.000000,79,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,79,0,611.093500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,79,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,79,0,763.850000,baseline,nbiot,60 -on9,0,0,24,1,0,619,1440.000000,80,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,80,0,743.050000,baseline,nbiot,60 -on2,0,0,24,0,0,1375,1440.000000,80,0,635.150000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1436,1440.000000,80,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,80,0,594.200000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1387,1440.000000,80,0,649.443500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,80,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1411,1440.000000,81,0,595.500000,baseline,nbiot,60 -on8,0,0,24,0,0,1364,1440.000000,81,0,641.650000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,nbiot,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,baseline,nbiot,60 -on9,0,0,24,1,0,443,1440.000000,81,0,626.706500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,81,0,828.850000,baseline,nbiot,60 -on2,0,0,24,0,0,1412,1440.000000,81,0,594.850000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1407,1440.000000,82,0,598.100000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,766,1440.000000,82,0,611.756500,baseline,nbiot,60 -on4,0,0,24,1,0,1200,1440.000000,82,0,602.006500,baseline,nbiot,60 -on3,0,0,24,1,0,180,1440.000000,82,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,82,0,796.350000,baseline,nbiot,60 -on2,0,0,24,0,0,1416,1440.000000,82,0,592.250000,baseline,nbiot,60 -on6,0,0,24,0,0,1405,1440.000000,83,0,599.400000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,83,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1080,1440.000000,83,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1407,1440.000000,83,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,1038,1440.000000,83,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,18,1440.000000,83,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1428,1440.000000,83,0,615.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,83,0,785.300000,baseline,nbiot,60 -on2,0,0,24,0,0,1437,1440.000000,83,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1391,1440.000000,83,0,650.093500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1437,1440.000000,84,0,602.643500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,84,0,576.650000,baseline,nbiot,60 -on2,0,0,24,1,0,881,1440.000000,84,0,615.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1403,1440.000000,84,0,600.700000,baseline,nbiot,60 -on4,0,0,24,0,0,1406,1440.000000,84,0,624.100000,baseline,nbiot,60 -on7,0,0,24,0,0,1414,1440.000000,84,0,615.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,84,0,753.450000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,84,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1406,1440.000000,85,0,617.600000,baseline,nbiot,60 -on8,0,0,24,1,0,669,1440.000000,85,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1417,1440.000000,85,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1432,1440.000000,85,0,581.850000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,85,0,720.300000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1431,1440.000000,85,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,86,0,824.950000,baseline,nbiot,60 -on2,0,0,24,0,0,1439,1440.000000,86,0,615.000000,baseline,nbiot,60 -on9,0,0,24,1,0,425,1440.000000,86,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1432,1440.000000,86,0,581.850000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1420,1440.000000,86,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,86,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1429,1440.000000,86,0,583.800000,baseline,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,86,0,600.700000,baseline,nbiot,60 -on3,0,0,24,0,0,1418,1440.000000,86,0,590.950000,baseline,nbiot,60 -on11,0,0,24,1,0,368,1440.000000,86,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1402,1440.000000,87,0,601.350000,baseline,nbiot,60 -on1,0,0,24,0,0,1413,1440.000000,87,0,594.200000,baseline,nbiot,60 -on4,0,0,24,1,0,1397,1440.000000,87,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,87,0,863.950000,baseline,nbiot,60 -on8,0,0,24,0,0,1439,1440.000000,87,0,615.000000,baseline,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,87,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,87,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1403,1440.000000,87,0,600.700000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1418,1440.000000,87,0,607.200000,baseline,nbiot,60 -on9,0,0,24,0,0,1405,1440.000000,87,0,599.400000,baseline,nbiot,60 -on5,0,0,24,0,0,1402,1440.000000,87,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1425,1440.000000,88,0,607.843500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1384,1440.000000,88,0,629.300000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,88,0,780.100000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,379,1440.000000,88,0,602.006500,baseline,nbiot,60 -on2,0,0,24,1,0,192,1440.000000,88,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1438,1440.000000,88,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,480,1440.000000,88,0,602.006500,baseline,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,88,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1424,1440.000000,89,0,601.993500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,1076,1440.000000,89,0,641.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1405,1440.000000,89,0,599.400000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1346,1440.000000,89,0,663.100000,baseline,nbiot,60 -on1,0,0,24,1,0,960,1440.000000,89,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,89,0,776.850000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1387,1440.000000,90,0,634.500000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,90,0,576.650000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1264,1440.000000,90,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,360,1440.000000,90,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,90,0,737.200000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,90,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1408,1440.000000,91,0,608.500000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,91,0,754.750000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1378,1440.000000,91,0,643.600000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1423,1440.000000,91,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1435,1440.000000,91,0,579.900000,baseline,nbiot,60 -on8,0,0,24,1,0,1140,1440.000000,91,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1390,1440.000000,92,0,667.650000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,92,0,739.150000,baseline,nbiot,60 -on11,0,0,24,0,0,1377,1440.000000,92,0,631.900000,baseline,nbiot,60 -on1,0,0,24,1,0,1326,1440.000000,92,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,92,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1426,1440.000000,93,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1405,1440.000000,93,0,600.050000,baseline,nbiot,60 -on7,0,0,24,1,0,120,1440.000000,93,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,244,1440.000000,93,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,60,1440.000000,93,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1390,1440.000000,93,0,693.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,93,0,830.800000,baseline,nbiot,60 -on8,0,0,24,0,0,1422,1440.000000,93,0,588.350000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1407,1440.000000,94,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1430,1440.000000,94,0,583.150000,baseline,nbiot,60 -on2,0,0,24,0,0,1373,1440.000000,94,0,620.850000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1415,1440.000000,94,0,628.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,94,0,754.100000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1406,1440.000000,95,0,637.100000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1425,1440.000000,95,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1433,1440.000000,95,0,581.200000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,95,0,832.750000,baseline,nbiot,60 -on4,0,0,24,1,0,0,1440.000000,95,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1407,1440.000000,95,0,615.000000,baseline,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,95,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1398,1440.000000,95,0,604.600000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,96,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,1203,1440.000000,96,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,1095,1440.000000,96,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,96,0,576.650000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,0,1440.000000,96,0,602.006500,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,96,0,748.250000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1439,1440.000000,96,0,577.293500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1437,1440.000000,97,0,578.600000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,97,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,420,1440.000000,97,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1439,1440.000000,97,0,577.300000,baseline,nbiot,60 -on8,0,0,24,1,0,1080,1440.000000,97,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1407,1440.000000,97,0,598.100000,baseline,nbiot,60 -on9,0,0,24,0,0,1439,1440.000000,97,0,615.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,97,0,805.450000,baseline,nbiot,60 -on7,0,0,24,0,0,1437,1440.000000,97,0,578.600000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1414,1440.000000,97,0,593.550000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1436,1440.000000,98,0,615.000000,baseline,nbiot,60 -on6,0,0,24,1,0,786,1440.000000,98,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1411,1440.000000,98,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,1382,1440.000000,98,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,98,0,759.300000,baseline,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,98,0,600.050000,baseline,nbiot,60 -on3,0,0,24,1,0,1071,1440.000000,98,0,641.006500,baseline,nbiot,60 -on1,0,0,24,1,0,650,1440.000000,99,0,623.450000,baseline,nbiot,60 -on8,0,0,24,1,0,0,1440.000000,99,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1404,1440.000000,99,0,600.050000,baseline,nbiot,60 -on2,0,0,24,0,0,1408,1440.000000,99,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,180,1440.000000,99,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1404,1440.000000,99,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1425,1440.000000,99,0,615.000000,baseline,nbiot,60 -on10,0,0,24,1,0,489,1440.000000,99,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1436,1440.000000,99,0,617.600000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,99,0,881.500000,baseline,nbiot,60 -on9,0,0,24,0,0,1428,1440.000000,99,0,584.450000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1401,1440.000000,100,0,602.000000,baseline,nbiot,60 -on2,0,0,24,1,0,1221,1440.000000,100,0,628.006500,baseline,nbiot,60 -on8,0,0,24,1,0,1183,1440.000000,100,0,641.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,100,0,819.100000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,195,1440.000000,100,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,129,1440.000000,100,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,101,0,713.800000,baseline,nbiot,60 -on7,0,0,24,0,0,1423,1440.000000,101,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1416,1440.000000,101,0,626.050000,baseline,nbiot,60 -on9,0,0,24,1,0,448,1440.000000,101,0,623.456500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1423,1440.000000,101,0,654.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1399,1440.000000,102,0,631.900000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,737,1440.000000,102,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,102,0,704.050000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1403,1440.000000,102,0,600.700000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,728,1440.000000,103,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,103,0,600.700000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,103,0,789.850000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,103,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1422,1440.000000,103,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1415,1440.000000,103,0,615.000000,baseline,nbiot,60 -on10,0,0,24,1,0,828,1440.000000,103,0,610.456500,baseline,nbiot,60 -on11,0,0,24,0,0,1428,1440.000000,103,0,584.450000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1409,1440.000000,104,0,622.793500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,104,0,838.600000,baseline,nbiot,60 -on8,0,0,24,0,0,1403,1440.000000,104,0,600.700000,baseline,nbiot,60 -on7,0,0,24,1,0,1020,1440.000000,104,0,602.006500,baseline,nbiot,60 -on6,0,0,24,1,0,904,1440.000000,104,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,379,1440.000000,104,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,104,0,582.500000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1434,1440.000000,104,0,580.550000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,540,1440.000000,105,0,641.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1422,1440.000000,105,0,615.650000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,105,0,707.300000,baseline,nbiot,60 -on10,0,0,24,0,0,1425,1440.000000,105,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1422,1440.000000,105,0,588.350000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,780,1440.000000,106,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,106,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1430,1440.000000,106,0,583.150000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1416,1440.000000,106,0,592.250000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,106,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,106,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1407,1440.000000,106,0,598.100000,baseline,nbiot,60 -on10,0,0,24,0,0,1403,1440.000000,106,0,622.793500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,106,0,787.250000,baseline,nbiot,60 -on1,0,0,24,0,0,1414,1440.000000,107,0,615.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,107,0,710.550000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,494,1440.000000,107,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1412,1440.000000,107,0,594.850000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1416,1440.000000,107,0,592.250000,baseline,nbiot,60 -on7,0,0,24,0,0,1426,1440.000000,108,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1421,1440.000000,108,0,605.893500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,108,0,702.750000,baseline,nbiot,60 -on10,0,0,24,0,0,1405,1440.000000,108,0,599.400000,baseline,nbiot,60 -on9,0,0,24,0,0,1433,1440.000000,108,0,581.200000,baseline,nbiot,60 -on8,0,0,24,1,0,366,1440.000000,108,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1416,1440.000000,109,0,592.250000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,109,0,693.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,109,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1406,1440.000000,109,0,598.750000,baseline,nbiot,60 -on3,0,0,24,0,0,1434,1440.000000,109,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,110,0,756.700000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1437,1440.000000,110,0,578.600000,baseline,nbiot,60 -on3,0,0,24,0,0,1408,1440.000000,110,0,597.450000,baseline,nbiot,60 -on10,0,0,24,0,0,1410,1440.000000,110,0,654.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,480,1440.000000,110,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1425,1440.000000,110,0,615.000000,baseline,nbiot,60 -on9,0,0,24,1,0,62,1440.000000,110,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,111,0,811.950000,baseline,nbiot,60 -on4,0,0,24,1,0,480,1440.000000,111,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1413,1440.000000,111,0,628.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,798,1440.000000,111,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1413,1440.000000,111,0,594.200000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1370,1440.000000,111,0,654.000000,baseline,nbiot,60 -on6,0,0,24,1,0,966,1440.000000,111,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,1397,1440.000000,112,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,112,0,827.550000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,48,1440.000000,112,0,616.956500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1417,1440.000000,112,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,112,0,600.050000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1416,1440.000000,112,0,592.250000,baseline,nbiot,60 -on5,0,0,24,0,0,1410,1440.000000,112,0,596.150000,baseline,nbiot,60 -on7,0,0,24,0,0,1428,1440.000000,112,0,654.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1376,1440.000000,113,0,654.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1409,1440.000000,113,0,654.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,113,0,679.350000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,788,1440.000000,113,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1401,1440.000000,114,0,602.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1412,1440.000000,114,0,615.000000,baseline,nbiot,60 -on6,0,0,24,1,0,360,1440.000000,114,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1399,1440.000000,114,0,651.393500,baseline,nbiot,60 -on3,0,0,24,1,0,844,1440.000000,114,0,602.006500,baseline,nbiot,60 -on1,0,0,24,1,0,780,1440.000000,114,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,114,0,762.550000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,115,0,799.600000,baseline,nbiot,60 -on10,0,0,24,0,0,1432,1440.000000,115,0,581.850000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1416,1440.000000,115,0,592.250000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,600,1440.000000,115,0,602.006500,baseline,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,115,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1375,1440.000000,115,0,654.000000,baseline,nbiot,60 -on9,0,0,24,1,0,546,1440.000000,115,0,627.350000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1421,1440.000000,116,0,615.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,116,0,737.200000,baseline,nbiot,60 -on2,0,0,24,0,0,1428,1440.000000,116,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1418,1440.000000,116,0,615.000000,baseline,nbiot,60 -on11,0,0,24,1,0,607,1440.000000,116,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,696,1440.000000,116,0,641.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1415,1440.000000,116,0,592.900000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,900,1440.000000,117,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1406,1440.000000,117,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,117,0,655.950000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1427,1440.000000,117,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1410,1440.000000,117,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,118,0,581.843500,baseline,nbiot,60 -on6,0,0,24,1,0,1212,1440.000000,118,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1327,1440.000000,118,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1405,1440.000000,118,0,615.000000,baseline,nbiot,60 -on9,0,0,24,1,0,180,1440.000000,118,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1415,1440.000000,118,0,592.900000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,118,0,789.850000,baseline,nbiot,60 -on5,0,0,24,1,0,360,1440.000000,118,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,1218,1440.000000,119,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1421,1440.000000,119,0,594.843500,baseline,nbiot,60 -on2,0,0,24,1,0,476,1440.000000,119,0,641.006500,baseline,nbiot,60 -on9,0,0,24,1,0,360,1440.000000,119,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,977,1440.000000,119,0,664.406500,baseline,nbiot,60 -on6,0,0,24,0,0,1420,1440.000000,119,0,589.650000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,119,0,576.650000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,119,0,893.200000,baseline,nbiot,60 -on11,0,0,24,0,0,1424,1440.000000,119,0,654.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,119,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1425,1440.000000,119,0,586.400000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,607,1440.000000,120,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,825,1440.000000,120,0,633.850000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1420,1440.000000,120,0,615.650000,baseline,nbiot,60 -on1,0,0,24,1,0,491,1440.000000,120,0,602.006500,baseline,nbiot,60 -on6,0,0,24,1,0,780,1440.000000,120,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,120,0,775.550000,baseline,nbiot,60 -on8,0,0,24,0,0,1416,1440.000000,121,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,1329,1440.000000,121,0,602.006500,baseline,nbiot,60 -on3,0,0,24,1,0,660,1440.000000,121,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,120,1440.000000,121,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1439,1440.000000,121,0,577.300000,baseline,nbiot,60 -on5,0,0,24,1,0,798,1440.000000,121,0,602.006500,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,121,0,776.850000,baseline,nbiot,60 -on4,0,0,24,1,0,1265,1440.000000,121,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1404,1440.000000,122,0,615.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,122,0,759.300000,baseline,nbiot,60 -on7,0,0,24,0,0,1433,1440.000000,122,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1397,1440.000000,122,0,605.250000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1434,1440.000000,122,0,580.550000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,120,1440.000000,122,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,318,1440.000000,123,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1416,1440.000000,123,0,615.000000,baseline,nbiot,60 -on5,0,0,24,1,0,795,1440.000000,123,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,1293,1440.000000,123,0,629.306500,baseline,nbiot,60 -on10,0,0,24,1,0,431,1440.000000,123,0,602.006500,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,123,0,826.250000,baseline,nbiot,60 -on1,0,0,24,0,0,1415,1440.000000,124,0,593.550000,baseline,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,124,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,600,1440.000000,124,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,124,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,626,1440.000000,124,0,641.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1404,1440.000000,124,0,600.050000,baseline,nbiot,60 -on8,0,0,24,1,0,0,1440.000000,124,0,602.006500,baseline,nbiot,60 -on3,0,0,24,1,0,1177,1440.000000,124,0,641.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,124,0,576.000000,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,124,0,910.100000,baseline,nbiot,60 -on4,0,0,24,0,0,1431,1440.000000,124,0,615.000000,baseline,nbiot,60 -on6,0,0,24,1,0,1242,1440.000000,125,0,620.206500,baseline,nbiot,60 -on2,0,0,24,0,0,1376,1440.000000,125,0,633.200000,baseline,nbiot,60 -on8,0,0,24,0,0,1398,1440.000000,125,0,604.600000,baseline,nbiot,60 -on3,0,0,24,0,0,1439,1440.000000,125,0,615.000000,baseline,nbiot,60 -on7,0,0,24,1,0,600,1440.000000,125,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,125,0,826.900000,baseline,nbiot,60 -on9,0,0,24,1,0,424,1440.000000,126,0,602.006500,baseline,nbiot,60 -on11,0,0,24,1,0,778,1440.000000,126,0,616.306500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,126,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1401,1440.000000,126,0,618.900000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,126,0,890.600000,baseline,nbiot,60 -on6,0,0,24,1,0,607,1440.000000,126,0,602.006500,baseline,nbiot,60 -on3,0,0,24,1,0,130,1440.000000,126,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1408,1440.000000,126,0,597.450000,baseline,nbiot,60 -on5,0,0,24,0,0,1412,1440.000000,126,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,126,0,598.100000,baseline,nbiot,60 -on4,0,0,24,1,0,0,1440.000000,127,0,602.006500,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,127,0,826.900000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,472,1440.000000,127,0,607.856500,baseline,nbiot,60 -on11,0,0,24,0,0,1438,1440.000000,127,0,605.243500,baseline,nbiot,60 -on10,0,0,24,0,0,1436,1440.000000,127,0,615.000000,baseline,nbiot,60 -on2,0,0,24,1,0,1286,1440.000000,127,0,641.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,554,1440.000000,127,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,955,1440.000000,127,0,605.906500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,614,1440.000000,128,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,1324,1440.000000,128,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,960,1440.000000,128,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1410,1440.000000,128,0,596.150000,baseline,nbiot,60 -on2,0,0,24,1,0,303,1440.000000,128,0,602.006500,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,128,0,764.500000,baseline,nbiot,60 -on1,0,0,24,0,0,1380,1440.000000,129,0,649.450000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,129,0,864.600000,baseline,nbiot,60 -on4,0,0,24,0,0,1420,1440.000000,129,0,620.200000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,129,0,576.650000,baseline,nbiot,60 -on3,0,0,24,0,0,1426,1440.000000,129,0,585.750000,baseline,nbiot,60 -on10,0,0,24,1,0,16,1440.000000,129,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,129,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1385,1440.000000,129,0,631.250000,baseline,nbiot,60 -on8,0,0,24,0,0,1392,1440.000000,130,0,637.100000,baseline,nbiot,60 -on3,0,0,24,0,0,1417,1440.000000,130,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1403,1440.000000,130,0,600.700000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,130,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,782,1440.000000,130,0,641.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1435,1440.000000,130,0,579.900000,baseline,nbiot,60 -on5,0,0,24,0,0,1418,1440.000000,130,0,591.600000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,130,0,870.450000,baseline,nbiot,60 -on1,0,0,24,0,0,1403,1440.000000,130,0,600.700000,baseline,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,130,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1408,1440.000000,131,0,597.450000,baseline,nbiot,60 -on7,0,0,24,0,0,1417,1440.000000,131,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1426,1440.000000,131,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1412,1440.000000,131,0,629.300000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1405,1440.000000,131,0,615.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,131,0,707.950000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,132,0,815.850000,baseline,nbiot,60 -on4,0,0,24,0,0,1411,1440.000000,132,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1409,1440.000000,132,0,597.450000,baseline,nbiot,60 -on11,0,0,24,0,0,1415,1440.000000,132,0,592.900000,baseline,nbiot,60 -on7,0,0,24,0,0,1402,1440.000000,132,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1421,1440.000000,132,0,598.093500,baseline,nbiot,60 -on6,0,0,24,1,0,1031,1440.000000,132,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1420,1440.000000,132,0,589.650000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1439,1440.000000,133,0,577.300000,baseline,nbiot,60 -on10,0,0,24,1,0,540,1440.000000,133,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1377,1440.000000,133,0,642.950000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,120,1440.000000,133,0,602.006500,baseline,nbiot,60 -on3,0,0,24,1,0,480,1440.000000,133,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1410,1440.000000,133,0,628.650000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,133,0,944.550000,baseline,nbiot,60 -on9,0,0,24,1,0,928,1440.000000,133,0,624.756500,baseline,nbiot,60 -on2,0,0,24,0,0,1415,1440.000000,133,0,592.900000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,134,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,134,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1402,1440.000000,134,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1401,1440.000000,134,0,626.050000,baseline,nbiot,60 -on6,0,0,24,1,0,240,1440.000000,134,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1364,1440.000000,134,0,627.350000,baseline,nbiot,60 -on5,0,0,24,0,0,1404,1440.000000,134,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1410,1440.000000,134,0,596.150000,baseline,nbiot,60 -on8,0,0,24,0,0,1439,1440.000000,134,0,615.000000,baseline,nbiot,60 -on4,0,0,24,1,0,600,1440.000000,134,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,134,0,908.150000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,135,0,826.250000,baseline,nbiot,60 -on6,0,0,24,1,0,896,1440.000000,135,0,616.950000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1401,1440.000000,135,0,654.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1409,1440.000000,135,0,596.800000,baseline,nbiot,60 -on7,0,0,24,1,0,240,1440.000000,135,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,921,1440.000000,135,0,641.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1432,1440.000000,135,0,581.850000,baseline,nbiot,60 -on8,0,0,24,0,0,1424,1440.000000,135,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,135,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1373,1440.000000,136,0,654.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1430,1440.000000,136,0,583.150000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1423,1440.000000,136,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1407,1440.000000,136,0,598.100000,baseline,nbiot,60 -on4,0,0,24,1,0,994,1440.000000,136,0,622.156500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,136,0,788.550000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1403,1440.000000,137,0,663.750000,baseline,nbiot,60 -on8,0,0,24,0,0,1421,1440.000000,137,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1439,1440.000000,137,0,615.000000,baseline,nbiot,60 -on7,0,0,24,1,0,610,1440.000000,137,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,137,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1429,1440.000000,137,0,615.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,137,0,774.900000,baseline,nbiot,60 -on11,0,0,24,1,0,1380,1440.000000,137,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,420,1440.000000,137,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,138,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,671,1440.000000,138,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1400,1440.000000,138,0,638.400000,baseline,nbiot,60 -on4,0,0,24,1,0,732,1440.000000,138,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,138,0,733.300000,baseline,nbiot,60 -on11,0,0,24,0,0,1421,1440.000000,138,0,592.893500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,139,0,837.950000,baseline,nbiot,60 -on3,0,0,24,1,0,1380,1440.000000,139,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1418,1440.000000,139,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1383,1440.000000,139,0,629.950000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,977,1440.000000,139,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1393,1440.000000,139,0,654.000000,baseline,nbiot,60 -on10,0,0,24,1,0,1313,1440.000000,139,0,613.706500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1427,1440.000000,139,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1406,1440.000000,140,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1003,1440.000000,140,0,618.906500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1428,1440.000000,140,0,615.000000,baseline,nbiot,60 -on1,0,0,24,1,0,120,1440.000000,140,0,602.006500,baseline,nbiot,60 -on3,0,0,24,1,0,76,1440.000000,140,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,140,0,836.650000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,140,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1432,1440.000000,140,0,582.500000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1423,1440.000000,141,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,141,0,576.650000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,141,0,699.500000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,974,1440.000000,141,0,602.006500,baseline,nbiot,60 -on11,0,0,24,1,0,120,1440.000000,141,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,142,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1405,1440.000000,142,0,599.400000,baseline,nbiot,60 -on3,0,0,24,0,0,1416,1440.000000,142,0,592.250000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,300,1440.000000,142,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,1065,1440.000000,142,0,641.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,142,0,750.200000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1410,1440.000000,143,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1396,1440.000000,143,0,654.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,143,0,732.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,498,1440.000000,143,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1407,1440.000000,143,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1432,1440.000000,143,0,615.000000,baseline,nbiot,60 -on5,0,0,24,1,0,1028,1440.000000,143,0,604.600000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1403,1440.000000,144,0,634.500000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,144,0,749.550000,baseline,nbiot,60 -on10,0,0,24,0,0,1431,1440.000000,144,0,582.500000,baseline,nbiot,60 -on7,0,0,24,1,0,600,1440.000000,144,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1409,1440.000000,144,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,144,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1388,1440.000000,145,0,654.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,145,0,594.200000,baseline,nbiot,60 -on8,0,0,24,0,0,1409,1440.000000,145,0,615.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,145,0,903.600000,baseline,nbiot,60 -on5,0,0,24,1,0,908,1440.000000,145,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,145,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,145,0,576.650000,baseline,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,145,0,601.343500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,433,1440.000000,145,0,602.006500,baseline,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,145,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1426,1440.000000,145,0,585.750000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,146,0,791.150000,baseline,nbiot,60 -on5,0,0,24,0,0,1432,1440.000000,146,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,146,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1412,1440.000000,146,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1402,1440.000000,146,0,601.350000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,360,1440.000000,146,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1418,1440.000000,146,0,628.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,146,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1427,1440.000000,146,0,585.750000,baseline,nbiot,60 -on4,0,0,24,1,0,969,1440.000000,147,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1416,1440.000000,147,0,592.250000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1423,1440.000000,147,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,609,1440.000000,147,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,147,0,704.700000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,611,1440.000000,148,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1426,1440.000000,148,0,615.000000,baseline,nbiot,60 -on8,0,0,24,1,0,2,1440.000000,148,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1421,1440.000000,148,0,598.093500,baseline,nbiot,60 -on6,0,0,24,1,0,960,1440.000000,148,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1380,1440.000000,148,0,637.100000,baseline,nbiot,60 -on7,0,0,24,1,0,1083,1440.000000,148,0,609.806500,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,148,0,876.950000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1404,1440.000000,148,0,600.050000,baseline,nbiot,60 -on4,0,0,24,0,0,1394,1440.000000,149,0,632.543500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,149,0,576.650000,baseline,nbiot,60 -on6,0,0,24,0,0,1439,1440.000000,149,0,577.300000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,149,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1423,1440.000000,149,0,624.750000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,149,0,852.900000,baseline,nbiot,60 -on10,0,0,24,1,0,1020,1440.000000,149,0,602.006500,baseline,nbiot,60 -on7,0,0,24,1,0,18,1440.000000,149,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1424,1440.000000,149,0,623.450000,baseline,nbiot,60 -on5,0,0,24,0,0,1435,1440.000000,149,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1419,1440.000000,150,0,590.300000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,19,1440.000000,150,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1400,1440.000000,150,0,631.250000,baseline,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,150,0,591.600000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,150,0,812.600000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,551,1440.000000,150,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,120,1440.000000,150,0,602.006500,baseline,nbiot,60 -on7,0,0,24,1,0,780,1440.000000,151,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1424,1440.000000,151,0,587.050000,baseline,nbiot,60 -on11,0,0,24,0,0,1415,1440.000000,151,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1388,1440.000000,151,0,611.100000,baseline,nbiot,60 -on2,0,0,24,1,0,670,1440.000000,151,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1413,1440.000000,151,0,623.450000,baseline,nbiot,60 -on9,0,0,24,0,0,1434,1440.000000,151,0,654.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,151,0,816.500000,baseline,nbiot,60 -on1,0,0,24,0,0,1418,1440.000000,151,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,0,1440.000000,152,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1401,1440.000000,152,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1401,1440.000000,152,0,602.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1416,1440.000000,152,0,592.250000,baseline,nbiot,60 -on3,0,0,24,0,0,1431,1440.000000,152,0,582.500000,baseline,nbiot,60 -on4,0,0,24,0,0,1421,1440.000000,152,0,626.700000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,152,0,793.750000,baseline,nbiot,60 -on1,0,0,24,0,0,1434,1440.000000,153,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1385,1440.000000,153,0,644.900000,baseline,nbiot,60 -on7,0,0,24,1,0,971,1440.000000,153,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,688,1440.000000,153,0,641.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,153,0,816.500000,baseline,nbiot,60 -on6,0,0,24,1,0,1380,1440.000000,153,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1393,1440.000000,153,0,633.850000,baseline,nbiot,60 -on5,0,0,24,0,0,1411,1440.000000,153,0,595.500000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,153,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1388,1440.000000,154,0,633.850000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1219,1440.000000,154,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,154,0,709.250000,baseline,nbiot,60 -on6,0,0,24,0,0,1427,1440.000000,154,0,585.100000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,155,0,730.700000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1430,1440.000000,155,0,583.150000,baseline,nbiot,60 -on7,0,0,24,0,0,1403,1440.000000,155,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1402,1440.000000,155,0,601.350000,baseline,nbiot,60 -on11,0,0,24,1,0,257,1440.000000,155,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1421,1440.000000,155,0,615.000000,baseline,nbiot,60 -on11,0,0,24,1,0,1320,1440.000000,156,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,156,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,74,1440.000000,156,0,602.006500,baseline,nbiot,60 -on9,0,0,24,1,0,600,1440.000000,156,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,1,1440.000000,156,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1428,1440.000000,156,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1401,1440.000000,156,0,602.000000,baseline,nbiot,60 -on5,0,0,24,1,0,737,1440.000000,156,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,baseline,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,156,0,846.400000,baseline,nbiot,60 -on6,0,0,24,1,0,780,1440.000000,156,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1421,1440.000000,157,0,589.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1428,1440.000000,157,0,584.450000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1437,1440.000000,157,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1421,1440.000000,157,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1422,1440.000000,157,0,588.350000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,157,0,708.600000,baseline,nbiot,60 -on10,0,0,24,0,0,1425,1440.000000,158,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1416,1440.000000,158,0,592.250000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1420,1440.000000,158,0,589.650000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,840,1440.000000,158,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,158,0,760.600000,baseline,nbiot,60 -on9,0,0,24,1,0,240,1440.000000,158,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1401,1440.000000,158,0,602.650000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1408,1440.000000,159,0,597.450000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,159,0,849.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,159,0,586.393500,baseline,nbiot,60 -on8,0,0,24,0,0,1427,1440.000000,159,0,585.100000,baseline,nbiot,60 -on7,0,0,24,0,0,1406,1440.000000,159,0,601.350000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1394,1440.000000,159,0,607.200000,baseline,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,159,0,600.700000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1157,1440.000000,159,0,602.006500,baseline,nbiot,60 -on4,0,0,24,1,0,250,1440.000000,159,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,304,1440.000000,160,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,10,1440.000000,160,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1392,1440.000000,160,0,628.643500,baseline,nbiot,60 -on5,0,0,24,0,0,1413,1440.000000,160,0,594.200000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,160,0,827.550000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1387,1440.000000,160,0,654.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1371,1440.000000,160,0,640.350000,baseline,nbiot,60 -on11,0,0,24,0,0,1430,1440.000000,161,0,654.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,247,1440.000000,161,0,602.006500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,161,0,641.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1422,1440.000000,161,0,615.000000,baseline,nbiot,60 -on4,0,0,23,0,0,1430,1432.000000,161,0,611.800000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1435,1440.000000,161,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1412,1440.000000,162,0,594.850000,baseline,nbiot,60 -on5,0,0,24,0,0,1432,1440.000000,162,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1428,1440.000000,162,0,596.793500,baseline,nbiot,60 -on4,0,0,24,1,0,762,1440.000000,162,0,641.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1425,1440.000000,162,0,586.400000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,984,1440.000000,162,0,641.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,162,0,810.650000,baseline,nbiot,60 -on10,0,0,24,1,0,1349,1440.000000,162,0,641.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1424,1440.000000,163,0,587.050000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1373,1440.000000,163,0,637.750000,baseline,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,163,0,596.800000,baseline,nbiot,60 -on3,0,0,24,0,0,1414,1440.000000,163,0,615.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,163,0,888.650000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1424,1440.000000,163,0,587.050000,baseline,nbiot,60 -on9,0,0,24,0,0,1413,1440.000000,163,0,594.200000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,366,1440.000000,163,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,220,1440.000000,164,0,615.656500,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,164,0,881.500000,baseline,nbiot,60 -on11,0,0,24,0,0,1402,1440.000000,164,0,601.350000,baseline,nbiot,60 -on9,0,0,24,1,0,291,1440.000000,164,0,641.006500,baseline,nbiot,60 -on2,0,0,24,1,0,180,1440.000000,164,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,1144,1440.000000,164,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1420,1440.000000,164,0,602.000000,baseline,nbiot,60 -on5,0,0,24,1,0,420,1440.000000,164,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1412,1440.000000,164,0,594.850000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,165,0,743.700000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,165,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1439,1440.000000,165,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,840,1440.000000,165,0,602.006500,baseline,nbiot,60 -on11,0,0,24,1,0,1166,1440.000000,165,0,630.606500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,840,1440.000000,166,0,602.006500,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,166,0,855.500000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,628,1440.000000,166,0,641.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1437,1440.000000,166,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1424,1440.000000,166,0,587.050000,baseline,nbiot,60 -on10,0,0,24,1,0,699,1440.000000,166,0,616.306500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,312,1440.000000,166,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,1156,1440.000000,166,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1389,1440.000000,167,0,631.900000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,167,0,576.650000,baseline,nbiot,60 -on4,0,0,24,0,0,1434,1440.000000,167,0,580.550000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,167,0,732.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,167,0,581.850000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,168,0,810.650000,baseline,nbiot,60 -on5,0,0,24,1,0,1015,1440.000000,168,0,667.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1437,1440.000000,168,0,578.600000,baseline,nbiot,60 -on9,0,0,24,1,0,900,1440.000000,168,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,120,1440.000000,168,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1431,1440.000000,168,0,583.150000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1437,1440.000000,168,0,615.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1294,1440.000000,168,0,641.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1433,1440.000000,169,0,581.200000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1402,1440.000000,169,0,602.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1406,1440.000000,169,0,598.750000,baseline,nbiot,60 -on6,0,0,24,0,0,1428,1440.000000,169,0,619.550000,baseline,nbiot,60 -on11,0,0,24,1,0,259,1440.000000,169,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,169,0,860.050000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,360,1440.000000,169,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1406,1440.000000,169,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1403,1440.000000,170,0,620.843500,baseline,nbiot,60 -on10,0,0,24,1,0,643,1440.000000,170,0,641.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1418,1440.000000,170,0,591.600000,baseline,nbiot,60 -on6,0,0,24,0,0,1415,1440.000000,170,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,170,0,576.000000,baseline,nbiot,60 -on4,0,0,24,1,0,426,1440.000000,170,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1371,1440.000000,170,0,638.400000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,170,0,915.950000,baseline,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,170,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1419,1440.000000,170,0,615.000000,baseline,nbiot,60 -on6,0,0,24,1,0,420,1440.000000,171,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1419,1440.000000,171,0,590.300000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1396,1440.000000,171,0,605.900000,baseline,nbiot,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1431,1440.000000,171,0,582.500000,baseline,nbiot,60 -on11,0,0,24,0,0,1426,1440.000000,171,0,585.750000,baseline,nbiot,60 -on9,0,0,24,1,0,1052,1440.000000,171,0,628.656500,baseline,nbiot,60 -on5,0,0,24,0,0,1430,1440.000000,171,0,605.893500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,171,0,921.150000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1433,1440.000000,172,0,581.200000,baseline,nbiot,60 -on9,0,0,24,0,0,1387,1440.000000,172,0,611.750000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,172,0,797.000000,baseline,nbiot,60 -on1,0,0,24,1,0,1320,1440.000000,172,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1416,1440.000000,172,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1260,1440.000000,172,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1406,1440.000000,172,0,615.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1416,1440.000000,172,0,606.550000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1407,1440.000000,173,0,598.100000,baseline,nbiot,60 -on10,0,0,24,0,0,1421,1440.000000,173,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1437,1440.000000,173,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,173,0,775.550000,baseline,nbiot,60 -on5,0,0,24,0,0,1402,1440.000000,173,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1431,1440.000000,173,0,615.000000,baseline,nbiot,60 -on3,0,0,24,1,0,480,1440.000000,173,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,19,1440.000000,173,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1427,1440.000000,173,0,585.100000,baseline,nbiot,60 -on11,0,0,24,0,0,1388,1440.000000,174,0,628.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,174,0,836.650000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,174,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,313,1440.000000,174,0,641.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1415,1440.000000,174,0,592.900000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1429,1440.000000,174,0,583.800000,baseline,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,174,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1401,1440.000000,175,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1369,1440.000000,175,0,623.450000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,175,0,829.500000,baseline,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,175,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,962,1440.000000,175,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1430,1440.000000,175,0,615.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1386,1440.000000,175,0,625.400000,baseline,nbiot,60 -on3,0,0,24,1,0,1375,1440.000000,176,0,616.306500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,176,0,768.400000,baseline,nbiot,60 -on11,0,0,24,0,0,1421,1440.000000,176,0,605.243500,baseline,nbiot,60 -on10,0,0,24,0,0,1415,1440.000000,176,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,309,1440.000000,176,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1431,1440.000000,176,0,582.500000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1411,1440.000000,176,0,615.000000,baseline,nbiot,60 -on6,0,0,24,1,0,1374,1440.000000,177,0,641.006500,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,177,0,862.650000,baseline,nbiot,60 -on5,0,0,24,0,0,1421,1440.000000,177,0,601.343500,baseline,nbiot,60 -on9,0,0,24,1,0,480,1440.000000,177,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1409,1440.000000,177,0,653.993500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,187,1440.000000,177,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,177,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1202,1440.000000,177,0,612.406500,baseline,nbiot,60 -on2,0,0,24,1,0,432,1440.000000,177,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1427,1440.000000,178,0,585.100000,baseline,nbiot,60 -on5,0,0,24,0,0,1411,1440.000000,178,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1419,1440.000000,178,0,590.300000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,1020,1440.000000,178,0,602.006500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,178,0,759.950000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1403,1440.000000,178,0,637.100000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1412,1440.000000,178,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1413,1440.000000,179,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1405,1440.000000,179,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,179,0,583.800000,baseline,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,179,0,598.100000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,1149,1440.000000,179,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1412,1440.000000,179,0,594.850000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,179,0,811.950000,baseline,nbiot,60 -on9,0,0,24,1,0,1380,1440.000000,179,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1434,1440.000000,180,0,580.550000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,180,0,743.700000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1429,1440.000000,180,0,654.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,441,1440.000000,180,0,628.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,180,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,535,1440.000000,180,0,641.006500,baseline,nbiot,60 -on11,0,0,24,1,0,377,1440.000000,181,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1421,1440.000000,181,0,599.393500,baseline,nbiot,60 -on3,0,0,24,0,0,1410,1440.000000,181,0,600.043500,baseline,nbiot,60 -on8,0,0,24,0,0,1418,1440.000000,181,0,615.000000,baseline,nbiot,60 -on6,0,0,24,1,0,14,1440.000000,181,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1426,1440.000000,181,0,585.750000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,181,0,785.950000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1390,1440.000000,182,0,636.450000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,304,1440.000000,182,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1418,1440.000000,182,0,614.343500,baseline,nbiot,60 -on7,0,0,24,0,0,1411,1440.000000,182,0,595.500000,baseline,nbiot,60 -on11,0,0,24,1,0,1037,1440.000000,182,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,182,0,896.450000,baseline,nbiot,60 -on8,0,0,24,1,0,180,1440.000000,182,0,602.006500,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1427,1440.000000,182,0,585.100000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,182,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1407,1440.000000,182,0,598.100000,baseline,nbiot,60 -on10,0,0,24,0,0,1417,1440.000000,183,0,615.650000,baseline,nbiot,60 -on1,0,0,24,1,0,699,1440.000000,183,0,617.606500,baseline,nbiot,60 -on8,0,0,24,0,0,1401,1440.000000,183,0,602.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,183,0,598.100000,baseline,nbiot,60 -on3,0,0,24,0,0,1401,1440.000000,183,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,183,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,183,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1421,1440.000000,183,0,615.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,183,0,576.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,183,0,937.400000,baseline,nbiot,60 -on5,0,0,24,0,0,1371,1440.000000,183,0,665.693500,baseline,nbiot,60 -on2,0,0,24,1,0,902,1440.000000,183,0,680.006500,baseline,nbiot,60 -on9,0,0,24,1,0,499,1440.000000,184,0,602.006500,baseline,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,184,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1393,1440.000000,184,0,636.450000,baseline,nbiot,60 -on6,0,0,24,0,0,1413,1440.000000,184,0,594.850000,baseline,nbiot,60 -on2,0,0,24,0,0,1413,1440.000000,184,0,594.200000,baseline,nbiot,60 -on5,0,0,24,0,0,1401,1440.000000,184,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,184,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,184,0,889.950000,baseline,nbiot,60 -on11,0,0,24,1,0,600,1440.000000,184,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1427,1440.000000,184,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,1081,1440.000000,185,0,602.006500,baseline,nbiot,60 -on2,0,0,24,1,0,600,1440.000000,185,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,185,0,761.900000,baseline,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,185,0,596.150000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,nbiot,60 -on10,0,0,24,1,0,300,1440.000000,185,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1389,1440.000000,185,0,654.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1415,1440.000000,185,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,185,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,186,0,615.000000,baseline,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,186,0,637.750000,baseline,nbiot,60 -on4,0,0,24,0,0,1400,1440.000000,186,0,693.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,186,0,654.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,187,0,754.750000,baseline,nbiot,60 -on10,0,0,24,0,0,1434,1440.000000,187,0,615.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,1092,1440.000000,187,0,602.006500,baseline,nbiot,60 -on11,0,0,24,1,0,1140,1440.000000,187,0,602.006500,baseline,nbiot,60 -on2,0,0,24,0,0,1408,1440.000000,187,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,180,1440.000000,187,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1426,1440.000000,187,0,618.900000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1410,1440.000000,188,0,615.000000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,188,0,826.250000,baseline,nbiot,60 -on2,0,0,24,0,0,1412,1440.000000,188,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1431,1440.000000,188,0,582.500000,baseline,nbiot,60 -on3,0,0,24,1,0,360,1440.000000,188,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1426,1440.000000,188,0,585.750000,baseline,nbiot,60 -on11,0,0,24,0,0,1439,1440.000000,188,0,589.643500,baseline,nbiot,60 -on5,0,0,24,0,0,1427,1440.000000,188,0,585.750000,baseline,nbiot,60 -on1,0,0,24,1,0,1140,1440.000000,188,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,188,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,nbiot,60 -on6,0,0,24,1,0,780,1440.000000,189,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,1200,1440.000000,189,0,602.006500,baseline,nbiot,60 -on5,0,0,24,1,0,1020,1440.000000,189,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,189,0,742.400000,baseline,nbiot,60 -on10,0,0,24,0,0,1409,1440.000000,189,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1434,1440.000000,189,0,580.550000,baseline,nbiot,60 -on5,0,0,24,1,0,363,1440.000000,190,0,602.006500,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,190,0,800.900000,baseline,nbiot,60 -on9,0,0,24,0,0,1351,1440.000000,190,0,674.150000,baseline,nbiot,60 -on11,0,0,24,1,0,581,1440.000000,190,0,620.200000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1416,1440.000000,190,0,592.250000,baseline,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,190,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,nbiot,60 -on2,0,0,24,1,0,60,1440.000000,191,0,602.006500,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,244,1440.000000,191,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,1080,1440.000000,191,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1428,1440.000000,191,0,601.343500,baseline,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,191,0,756.700000,baseline,nbiot,60 -on4,0,0,24,1,0,1377,1440.000000,191,0,641.006500,baseline,nbiot,60 -on8,0,0,24,1,0,1215,1440.000000,191,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1402,1440.000000,192,0,601.350000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1429,1440.000000,192,0,583.800000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,192,0,773.600000,baseline,nbiot,60 -on10,0,0,24,0,0,1427,1440.000000,192,0,585.100000,baseline,nbiot,60 -on1,0,0,24,1,0,172,1440.000000,192,0,641.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1430,1440.000000,192,0,583.150000,baseline,nbiot,60 -on9,0,0,24,0,0,1434,1440.000000,192,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,baseline,nbiot,60 -on1,0,0,24,1,0,420,1440.000000,193,0,602.006500,baseline,nbiot,60 -on9,0,0,24,0,0,1416,1440.000000,193,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,1034,1440.000000,193,0,602.006500,baseline,nbiot,60 -on7,0,0,24,1,0,859,1440.000000,193,0,602.006500,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,193,0,798.950000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1387,1440.000000,193,0,637.750000,baseline,nbiot,60 -on2,0,0,24,0,0,1411,1440.000000,193,0,624.100000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1433,1440.000000,193,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1405,1440.000000,194,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,194,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1426,1440.000000,194,0,586.400000,baseline,nbiot,60 -on1,0,0,24,0,0,1415,1440.000000,194,0,592.900000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,194,0,794.400000,baseline,nbiot,60 -on6,0,0,24,0,0,1420,1440.000000,194,0,589.650000,baseline,nbiot,60 -on4,0,0,24,0,0,1437,1440.000000,194,0,578.600000,baseline,nbiot,60 -on5,0,0,24,1,0,1219,1440.000000,194,0,602.006500,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,baseline,nbiot,60 -on11,0,0,24,1,0,720,1440.000000,194,0,602.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,baseline,nbiot,60 -on2,0,0,23,0,0,1438,1438.000000,194,0,575.200000,baseline,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,195,0,586.400000,baseline,nbiot,60 -on8,0,0,24,0,0,1416,1440.000000,195,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,nbiot,60 -on5,0,0,24,1,0,9,1440.000000,195,0,602.006500,baseline,nbiot,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,195,0,576.000000,baseline,nbiot,60 -on3,0,0,24,1,0,60,1440.000000,195,0,602.006500,baseline,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,195,0,596.150000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,195,0,737.850000,baseline,nbiot,60 -on7,0,0,24,0,0,1439,1440.000000,195,0,615.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1429,1440.000000,196,0,615.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1423,1440.000000,196,0,643.593500,baseline,nbiot,60 -on9,0,0,24,0,0,1416,1440.000000,196,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,196,0,659.200000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,450,1440.000000,196,0,680.006500,baseline,nbiot,60 -on3,0,0,24,0,0,1437,1440.000000,197,0,578.600000,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,197,0,818.450000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,197,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,197,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,197,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1428,1440.000000,197,0,615.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1431,1440.000000,197,0,582.500000,baseline,nbiot,60 -on11,0,0,24,0,0,1421,1440.000000,197,0,616.300000,baseline,nbiot,60 -on6,0,0,24,1,0,186,1440.000000,197,0,606.556500,baseline,nbiot,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,baseline,nbiot,60 -on9,0,0,24,1,0,321,1440.000000,197,0,628.006500,baseline,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,198,0,700.800000,baseline,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1402,1440.000000,198,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,976,1440.000000,198,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1408,1440.000000,198,0,615.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1433,1440.000000,198,0,581.200000,baseline,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,nbiot,60 -on5,0,0,24,0,0,1421,1440.000000,199,0,589.000000,baseline,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,nbiot,60 -on8,0,0,24,1,0,1092,1440.000000,199,0,602.006500,baseline,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,199,0,737.850000,baseline,nbiot,60 -on4,0,0,24,1,0,480,1440.000000,199,0,602.006500,baseline,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1431,1440.000000,199,0,582.500000,baseline,nbiot,60 -on2,0,0,24,0,0,1424,1440.000000,199,0,615.000000,baseline,nbiot,60 -on7,0,0,24,0,0,1427,1440.000000,199,0,615.000000,baseline,nbiot,60 -on3,0,0,24,1,0,905,1440.000000,200,0,602.006500,baseline,nbiot,60 -on10,0,0,24,1,0,0,1440.000000,200,0,602.006500,baseline,nbiot,60 -on11,0,0,24,0,0,1436,1440.000000,200,0,615.000000,baseline,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,200,0,749.550000,baseline,nbiot,60 -on5,0,0,24,0,0,1414,1440.000000,200,0,615.000000,baseline,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,nbiot,60 -on7,0,0,24,1,0,68,1440.000000,200,0,602.006500,baseline,nbiot,60 -on9,0,0,24,1,0,369,1440.000000,200,0,602.006500,baseline,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,baseline,nbiot,60 -on6,0,0,24,0,0,1428,1440.000000,1,0,584.450000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1420,1440.000000,1,0,589.650000,hint,nbiot,60 -on8,0,0,24,1,0,439,1441.989680,1,0,606.052580,hint,nbiot,60 -on2,0,0,24,1,0,483,1440.010320,1,0,602.010836,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1431,1440.000000,1,0,582.500000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,282,1494.979360,1,1,636.160160,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,1,0,840.550000,hint,nbiot,60 -on10,0,0,24,0,0,1411,1440.000000,2,0,595.500000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hint,nbiot,60 -on4,0,0,27,1,0,1021,1621.479680,2,3,774.496664,hint,nbiot,60 -on7,0,0,24,0,0,1414,1440.000000,2,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hint,nbiot,60 -on1,0,0,26,1,0,1234,1560.020320,2,2,662.819628,hint,nbiot,60 -on11,0,0,24,0,0,1412,1440.000000,2,0,594.850000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,2,0,992.000000,hint,nbiot,60 -on6,0,0,24,0,0,1412,1440.000000,2,0,594.850000,hint,nbiot,60 -on2,0,0,28,1,0,1177,1681.510000,2,4,768.413584,hint,nbiot,60 -on9,0,0,24,1,0,1259,1441.000000,2,0,641.413416,hint,nbiot,60 -on5,0,0,24,1,0,552,1440.010320,2,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,3,0,981.600000,hint,nbiot,60 -on4,0,0,25,1,0,392,1502.969040,3,1,739.196240,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,nbiot,60 -on6,0,0,27,1,0,880,1621.000000,3,3,726.224708,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,nbiot,60 -on1,0,0,26,1,0,559,1560.310320,3,2,701.929128,hint,nbiot,60 -on2,0,0,24,0,0,1373,1440.000000,3,0,621.500000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,nbiot,60 -on7,0,0,26,1,0,777,1561.989680,3,2,677.913872,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,480,1501.300000,3,1,678.116584,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1402,1440.000000,4,0,601.350000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,4,0,778.150000,hint,nbiot,60 -on2,0,0,24,0,0,1420,1440.000000,4,0,596.800000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,4,0,576.650000,hint,nbiot,60 -on3,0,0,24,1,0,17,1440.989680,4,0,602.409288,hint,nbiot,60 -on11,0,0,25,1,0,492,1500.210320,4,1,630.640836,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1436,1440.000000,4,0,615.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1433,1440.000000,5,0,581.200000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,5,0,769.700000,hint,nbiot,60 -on5,0,0,24,0,0,1419,1440.000000,5,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1404,1440.000000,5,0,600.050000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1428,1440.000000,5,0,584.450000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1370,1440.000000,5,0,638.400000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1438,1440.000000,6,0,577.950000,hint,nbiot,60 -on7,0,0,24,1,0,498,1440.010320,6,0,602.010836,hint,nbiot,60 -on9,0,0,25,1,0,1033,1503.369040,6,1,696.332740,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,6,0,887.350000,hint,nbiot,60 -on4,0,0,26,1,0,1258,1561.210000,6,2,676.743584,hint,nbiot,60 -on3,0,0,24,0,0,1402,1440.000000,6,0,601.350000,hint,nbiot,60 -on1,0,0,25,1,0,1127,1501.000000,6,1,639.009792,hint,nbiot,60 -on5,0,0,26,1,0,1279,1561.000000,6,2,675.808084,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,1297,1500.010320,6,1,639.004128,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,7,0,754.750000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1403,1440.000000,7,0,639.050000,hint,nbiot,60 -on8,0,0,25,1,0,776,1500.390320,7,1,652.682836,hint,nbiot,60 -on2,0,0,26,1,0,919,1560.010320,7,2,662.809128,hint,nbiot,60 -on1,0,0,25,1,0,847,1501.300000,7,1,671.623292,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,8,0,750.850000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,8,0,654.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,180,1501.610320,8,1,626.859252,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1420,1440.000000,8,0,589.650000,hint,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,8,0,598.100000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,225,1464.000000,9,1,629.156500,hint,nbiot,60 -on6,0,0,30,1,0,635,1802.491280,9,6,800.750472,hint,nbiot,60 -on2,0,0,25,1,0,878,1502.210000,9,1,674.340500,hint,nbiot,60 -on7,0,0,27,1,0,727,1623.900000,9,3,775.509876,hint,nbiot,60 -on9,0,0,30,1,0,642,1802.800000,9,6,976.418836,hint,nbiot,60 -on0,1,11,24,0,0,0,1440.000000,9,0,1097.306708,hint,nbiot,60 -on10,0,0,26,1,0,640,1561.600000,9,2,727.443376,hint,nbiot,60 -on1,0,0,28,1,0,404,1681.440640,9,4,755.139048,hint,nbiot,60 -on4,0,0,27,1,0,523,1621.820320,9,3,721.781004,hint,nbiot,60 -on5,0,0,26,1,0,772,1560.010320,9,2,674.957212,hint,nbiot,60 -on3,0,0,27,1,0,287,1641.169680,9,5,780.493748,hint,nbiot,60 -on8,0,0,25,1,0,372,1502.010000,9,1,674.260500,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,10,0,593.550000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,10,0,859.400000,hint,nbiot,60 -on4,0,0,24,0,0,1405,1440.000000,10,0,615.000000,hint,nbiot,60 -on6,0,0,24,0,0,1418,1440.000000,10,0,590.950000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1369,1440.000000,10,0,636.450000,hint,nbiot,60 -on3,0,0,24,0,0,1405,1440.000000,10,0,599.400000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1378,1440.000000,10,0,617.600000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hint,nbiot,60 -on3,0,0,25,1,0,665,1501.000000,11,1,651.151376,hint,nbiot,60 -on11,0,0,25,1,0,330,1503.179680,11,1,684.738372,hint,nbiot,60 -on6,0,0,26,1,0,470,1562.410640,11,2,699.090464,hint,nbiot,60 -on8,0,0,25,1,0,518,1501.210000,11,1,638.840500,hint,nbiot,60 -on2,0,0,26,0,0,1499,1560.000000,11,2,651.689168,hint,nbiot,60 -on9,0,0,28,1,0,679,1682.810000,11,4,743.849876,hint,nbiot,60 -on1,0,0,24,1,0,227,1441.000000,11,0,624.103292,hint,nbiot,60 -on5,0,0,26,0,0,1491,1560.000000,11,2,636.993084,hint,nbiot,60 -on10,0,0,25,1,0,266,1501.000000,11,1,648.096584,hint,nbiot,60 -on7,0,0,31,1,0,782,1864.330320,11,7,957.488296,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,11,0,1076.500000,hint,nbiot,60 -on4,0,0,27,1,0,568,1623.300000,11,3,742.081084,hint,nbiot,60 -on3,0,0,25,1,0,206,1500.010320,12,1,639.010836,hint,nbiot,60 -on10,0,0,24,1,0,126,1440.010320,12,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1422,1440.000000,12,0,588.350000,hint,nbiot,60 -on9,0,0,24,0,0,1438,1440.000000,12,0,615.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,600,1441.000000,12,0,602.413416,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,12,0,600.700000,hint,nbiot,60 -on8,0,0,25,1,0,1241,1501.610320,12,1,645.709252,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,12,0,925.050000,hint,nbiot,60 -on7,0,0,25,1,0,629,1500.020640,13,1,639.014964,hint,nbiot,60 -on3,0,0,24,0,0,1414,1440.000000,13,0,593.550000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,26,1494.010320,13,1,636.604128,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,3,1443.000000,13,0,652.216708,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,13,0,864.600000,hint,nbiot,60 -on1,0,0,24,1,0,582,1441.000000,13,0,627.353292,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1426,1440.000000,14,0,615.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,14,0,848.350000,hint,nbiot,60 -on3,0,0,25,1,0,56,1500.010320,14,1,647.460836,hint,nbiot,60 -on1,0,0,24,0,0,1401,1440.000000,14,0,633.850000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,14,0,576.650000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,374,1440.989680,14,0,602.409288,hint,nbiot,60 -on10,0,0,24,1,0,240,1440.010320,14,0,602.010836,hint,nbiot,60 -on6,0,0,24,0,0,1424,1440.000000,14,0,587.050000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,423,1440.010320,15,0,602.010836,hint,nbiot,60 -on5,0,0,24,1,0,1020,1440.010320,15,0,602.010836,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,15,0,596.150000,hint,nbiot,60 -on11,0,0,24,1,0,357,1440.010320,15,0,641.010836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,15,0,900.350000,hint,nbiot,60 -on8,0,0,24,0,0,1403,1440.000000,15,0,655.300000,hint,nbiot,60 -on2,0,0,24,1,0,663,1440.010320,15,0,602.010836,hint,nbiot,60 -on10,0,0,24,0,0,1400,1440.000000,15,0,603.300000,hint,nbiot,60 -on7,0,0,24,0,0,1367,1440.000000,16,0,637.750000,hint,nbiot,60 -on3,0,0,24,1,0,488,1440.010320,16,0,602.017544,hint,nbiot,60 -on8,0,0,24,0,0,1423,1440.000000,16,0,615.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,16,0,768.400000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1409,1440.000000,16,0,596.800000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,1263,1440.010320,16,0,602.010836,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,17,0,836.000000,hint,nbiot,60 -on6,0,0,24,0,0,1437,1440.000000,17,0,615.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1413,1440.000000,17,0,615.000000,hint,nbiot,60 -on1,0,0,24,1,0,1202,1441.000000,17,0,639.716708,hint,nbiot,60 -on2,0,0,24,1,0,1308,1491.000000,17,1,625.259792,hint,nbiot,60 -on10,0,0,24,0,0,1424,1440.000000,17,0,615.000000,hint,nbiot,60 -on3,0,0,25,1,0,1183,1523.310320,17,2,725.225628,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1431,1440.000000,17,0,582.500000,hint,nbiot,60 -on9,0,0,25,1,0,533,1500.010320,17,1,626.017336,hint,nbiot,60 -on3,0,0,24,0,0,1420,1440.000000,18,0,589.650000,hint,nbiot,60 -on5,0,0,25,1,0,139,1501.220640,18,1,682.921672,hint,nbiot,60 -on8,0,0,24,1,0,601,1442.000000,18,0,652.063292,hint,nbiot,60 -on1,0,0,25,1,0,837,1501.010000,18,1,639.013792,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,378,1441.000000,18,0,602.413416,hint,nbiot,60 -on2,0,0,24,1,0,1140,1441.010320,18,0,621.260836,hint,nbiot,60 -on7,0,0,26,1,0,789,1561.000000,18,2,675.808084,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,18,0,1112.900000,hint,nbiot,60 -on6,0,0,27,1,0,698,1622.220320,18,3,750.404712,hint,nbiot,60 -on11,0,0,27,1,0,910,1620.220320,18,3,700.549420,hint,nbiot,60 -on9,0,0,25,1,0,580,1502.289680,18,1,648.625872,hint,nbiot,60 -on7,0,0,24,0,0,1434,1440.000000,19,0,580.550000,hint,nbiot,60 -on3,0,0,24,0,0,1437,1440.000000,19,0,578.600000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,19,0,616.950000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,19,0,772.300000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,nbiot,60 -on5,0,0,24,1,0,75,1440.010320,19,0,602.010836,hint,nbiot,60 -on2,0,0,24,1,0,720,1440.010320,19,0,602.010836,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,20,0,817.800000,hint,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,20,0,602.006500,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,540,1440.010320,20,0,602.010836,hint,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,20,0,621.500000,hint,nbiot,60 -on4,0,0,24,0,0,1416,1440.000000,20,0,592.250000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1397,1440.000000,20,0,605.250000,hint,nbiot,60 -on3,0,0,24,0,0,1405,1440.000000,21,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,21,0,819.100000,hint,nbiot,60 -on7,0,0,24,0,0,1401,1440.000000,21,0,602.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1417,1440.000000,21,0,591.600000,hint,nbiot,60 -on2,0,0,25,1,0,1335,1500.000000,21,1,650.706500,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1414,1440.000000,21,0,594.200000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1416,1440.000000,22,0,592.250000,hint,nbiot,60 -on4,0,0,24,1,0,60,1440.010320,22,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1405,1440.000000,22,0,599.400000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,22,0,735.900000,hint,nbiot,60 -on9,0,0,24,0,0,1428,1440.000000,22,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1434,1440.000000,22,0,580.550000,hint,nbiot,60 -on9,0,0,25,1,0,658,1500.220960,23,1,626.108300,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,0,1441.000000,23,0,615.003292,hint,nbiot,60 -on6,0,0,25,1,0,695,1501.000000,23,1,642.246584,hint,nbiot,60 -on8,0,0,25,1,0,797,1502.179680,23,1,653.326664,hint,nbiot,60 -on11,0,0,25,1,0,43,1503.989680,23,1,688.117372,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,23,0,1048.550000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hint,nbiot,60 -on3,0,0,26,1,0,859,1561.020640,23,2,701.576464,hint,nbiot,60 -on4,0,0,26,1,0,116,1561.020320,23,2,696.629628,hint,nbiot,60 -on7,0,0,25,1,0,712,1502.179680,23,1,629.738372,hint,nbiot,60 -on5,0,0,25,1,0,218,1503.000000,23,1,676.879916,hint,nbiot,60 -on2,0,0,24,1,0,979,1440.369360,24,0,602.401036,hint,nbiot,60 -on10,0,0,25,1,0,1030,1501.010320,24,1,643.564128,hint,nbiot,60 -on6,0,0,24,1,0,180,1440.979360,24,0,602.405160,hint,nbiot,60 -on3,0,0,25,1,0,1239,1500.010320,24,1,626.017336,hint,nbiot,60 -on11,0,0,25,1,0,1178,1501.220320,24,1,638.461336,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,1082,1502.000000,24,1,684.279916,hint,nbiot,60 -on8,0,0,24,1,0,130,1440.989680,24,0,602.402580,hint,nbiot,60 -on5,0,0,25,1,0,424,1502.210000,24,1,666.735500,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,24,0,1021.900000,hint,nbiot,60 -on7,0,0,26,1,0,498,1560.341280,24,2,663.156428,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,720,1440.010320,25,0,610.460836,hint,nbiot,60 -on9,0,0,26,1,0,1045,1560.500320,25,2,701.361628,hint,nbiot,60 -on8,0,0,24,1,0,973,1496.000000,25,1,637.009792,hint,nbiot,60 -on11,0,0,26,1,0,892,1562.010320,25,2,777.235628,hint,nbiot,60 -on7,0,0,25,1,0,833,1501.190000,25,1,664.630792,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,25,0,886.050000,hint,nbiot,60 -on5,0,0,24,1,0,540,1442.979680,25,0,603.225204,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,822,1501.010320,26,1,710.520836,hint,nbiot,60 -on7,0,0,24,0,0,1431,1440.000000,26,0,582.500000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,26,0,1034.900000,hint,nbiot,60 -on10,0,0,24,0,0,1427,1440.000000,26,0,585.100000,hint,nbiot,60 -on6,0,0,25,1,0,1267,1500.010320,26,1,636.605836,hint,nbiot,60 -on8,0,0,24,1,0,780,1440.010320,26,0,602.010836,hint,nbiot,60 -on3,0,0,24,0,0,1409,1440.000000,26,0,618.250000,hint,nbiot,60 -on1,0,0,25,1,0,984,1501.190320,26,1,626.502544,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1397,1440.000000,26,0,605.250000,hint,nbiot,60 -on5,0,0,24,1,0,1037,1441.989680,27,0,640.119288,hint,nbiot,60 -on1,0,0,25,1,0,1229,1500.010320,27,1,665.017336,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,27,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1383,1440.000000,27,0,614.350000,hint,nbiot,60 -on2,0,0,25,1,0,685,1502.000000,27,1,684.903292,hint,nbiot,60 -on10,0,0,24,1,0,1247,1440.989680,27,0,619.952580,hint,nbiot,60 -on4,0,0,24,1,0,605,1440.989680,27,0,602.409288,hint,nbiot,60 -on6,0,0,27,1,0,915,1621.220320,27,3,738.454420,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,27,0,1157.100000,hint,nbiot,60 -on3,0,0,24,1,0,482,1440.000000,27,0,602.006708,hint,nbiot,60 -on9,0,0,25,1,0,863,1543.000000,27,2,720.159792,hint,nbiot,60 -on11,0,0,25,1,0,941,1500.500320,27,1,664.563336,hint,nbiot,60 -on1,0,0,26,1,0,706,1563.369040,28,2,703.569656,hint,nbiot,60 -on8,0,0,25,1,0,1275,1501.180000,28,1,658.581792,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1415,1440.000000,28,0,592.900000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,nbiot,60 -on7,0,0,27,1,0,1457,1620.230000,28,3,701.404584,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,28,0,964.700000,hint,nbiot,60 -on10,0,0,25,1,0,1367,1501.210000,28,1,639.093792,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1394,1440.000000,28,0,607.200000,hint,nbiot,60 -on11,0,0,24,0,0,1415,1440.000000,29,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,607,1440.989680,29,0,602.402580,hint,nbiot,60 -on8,0,0,24,0,0,1438,1440.000000,29,0,577.950000,hint,nbiot,60 -on7,0,0,24,0,0,1433,1440.000000,29,0,581.200000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,709,1500.310320,29,1,633.280836,hint,nbiot,60 -on5,0,0,24,1,0,540,1440.030960,29,0,602.025800,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,29,0,779.450000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1437,1440.000000,30,0,578.600000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,30,0,721.600000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,1172,1440.010320,30,0,620.860836,hint,nbiot,60 -on5,0,0,24,1,0,720,1440.010320,30,0,602.010836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,890,1500.010320,31,1,673.707420,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,31,0,904.250000,hint,nbiot,60 -on10,0,0,24,0,0,1435,1440.000000,31,0,579.900000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hint,nbiot,60 -on5,0,0,27,1,0,1342,1621.520320,31,3,738.964420,hint,nbiot,60 -on8,0,0,24,0,0,1404,1440.000000,31,0,600.050000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,1356,1500.300000,31,1,641.726500,hint,nbiot,60 -on2,0,0,26,1,0,1266,1562.000000,31,2,715.662876,hint,nbiot,60 -on6,0,0,25,1,0,1155,1501.190000,31,1,663.792292,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,845,1502.000000,31,1,645.708292,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1414,1440.000000,32,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1414,1440.000000,32,0,593.550000,hint,nbiot,60 -on5,0,0,24,0,0,1423,1440.000000,32,0,587.700000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,32,0,583.800000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1410,1440.000000,32,0,615.000000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,32,0,768.400000,hint,nbiot,60 -on6,0,0,24,0,0,1416,1440.000000,32,0,615.650000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,nbiot,60 -on9,0,0,26,1,0,657,1562.000000,33,2,701.968208,hint,nbiot,60 -on7,0,0,25,1,0,558,1502.179680,33,1,661.783372,hint,nbiot,60 -on5,0,0,24,0,0,1413,1440.000000,33,0,594.200000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,193,1440.989680,33,0,602.402580,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1402,1440.000000,33,0,615.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,33,0,821.700000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1416,1440.000000,34,0,592.250000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,34,0,742.400000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,nbiot,60 -on7,0,0,25,1,0,315,1500.010320,34,1,650.710836,hint,nbiot,60 -on8,0,0,24,0,0,1414,1440.000000,34,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1427,1440.000000,34,0,615.000000,hint,nbiot,60 -on10,0,0,24,1,0,1020,1440.010320,34,0,602.010836,hint,nbiot,60 -on4,0,0,24,0,0,1411,1440.000000,35,0,615.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,608,1501.989680,35,1,629.610996,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,878,1500.010320,35,1,626.017336,hint,nbiot,60 -on11,0,0,25,1,0,800,1501.010320,35,1,640.977336,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,1200,1440.010320,35,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,1384,1440.000000,35,0,602.006500,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,35,0,839.250000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,36,0,966.000000,hint,nbiot,60 -on11,0,0,24,1,0,1148,1440.989680,36,0,606.302580,hint,nbiot,60 -on1,0,0,24,1,0,484,1441.000000,36,0,612.403292,hint,nbiot,60 -on9,0,0,24,0,0,1427,1440.000000,36,0,585.100000,hint,nbiot,60 -on4,0,0,24,1,0,0,1440.010320,36,0,602.010836,hint,nbiot,60 -on10,0,0,24,1,0,670,1440.989680,36,0,602.402580,hint,nbiot,60 -on2,0,0,26,1,0,563,1561.010320,36,2,676.222544,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,1078,1500.989680,36,1,645.259288,hint,nbiot,60 -on6,0,0,25,1,0,432,1501.210320,37,1,667.310836,hint,nbiot,60 -on7,0,0,24,0,0,1430,1440.000000,37,0,615.000000,hint,nbiot,60 -on8,0,0,25,1,0,120,1501.610320,37,1,626.859252,hint,nbiot,60 -on2,0,0,25,1,0,518,1503.289680,37,1,683.995872,hint,nbiot,60 -on10,0,0,24,1,0,1395,1440.000000,37,0,602.006500,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,37,0,1045.300000,hint,nbiot,60 -on5,0,0,26,1,0,559,1560.200320,37,2,662.885128,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,1201,1440.010320,37,0,678.710836,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hint,nbiot,60 -on3,0,0,25,1,0,1065,1500.010320,37,1,686.460836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1428,1440.000000,38,0,584.450000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1385,1440.000000,38,0,613.700000,hint,nbiot,60 -on9,0,0,24,0,0,1414,1440.000000,38,0,593.550000,hint,nbiot,60 -on6,0,0,25,1,0,996,1500.010320,38,1,627.765836,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,319,1441.979360,38,0,602.805160,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,38,0,850.950000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1404,1440.000000,39,0,600.050000,hint,nbiot,60 -on4,0,0,24,1,0,1359,1440.000000,39,0,624.106500,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,39,0,809.350000,hint,nbiot,60 -on5,0,0,23,0,0,1411,1438.000000,39,0,620.693500,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,420,1440.990000,39,0,603.052708,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,18,1441.000000,39,0,602.413416,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hint,nbiot,60 -on2,0,0,27,1,0,762,1621.300000,40,3,738.921376,hint,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,40,0,583.800000,hint,nbiot,60 -on10,0,0,25,1,0,1152,1519.210320,40,2,698.495836,hint,nbiot,60 -on11,0,0,24,1,0,540,1441.369680,40,0,620.617872,hint,nbiot,60 -on4,0,0,27,1,0,759,1622.210000,40,3,749.555168,hint,nbiot,60 -on6,0,0,25,1,0,699,1501.000000,40,1,638.366292,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,40,0,986.020000,hint,nbiot,60 -on1,0,0,25,1,0,578,1503.220320,40,1,693.067920,hint,nbiot,60 -on8,0,0,24,0,0,1418,1440.000000,40,0,590.950000,hint,nbiot,60 -on5,0,0,26,1,0,855,1560.310320,40,2,701.285628,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,16,1442.969040,41,0,603.207740,hint,nbiot,60 -on9,0,0,24,0,0,1428,1440.000000,41,0,615.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,41,0,734.600000,hint,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,41,0,615.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1406,1440.000000,41,0,598.750000,hint,nbiot,60 -on6,0,0,25,1,0,299,1501.000000,42,1,645.263416,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,42,0,879.550000,hint,nbiot,60 -on11,0,0,24,0,0,1406,1440.000000,42,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,nbiot,60 -on7,0,0,25,1,0,547,1500.210320,42,1,638.037420,hint,nbiot,60 -on9,0,0,24,1,0,0,1442.620640,42,1,603.270088,hint,nbiot,60 -on2,0,0,25,1,0,460,1502.000000,42,1,662.608292,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,362,1440.000000,43,0,602.006708,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,300,1502.610320,43,1,637.009252,hint,nbiot,60 -on7,0,0,24,0,0,1419,1440.000000,43,0,590.300000,hint,nbiot,60 -on6,0,0,24,0,0,1409,1440.000000,43,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,845,1440.000000,43,0,602.006708,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1433,1440.000000,43,0,581.200000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,43,0,829.500000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,44,0,921.150000,hint,nbiot,60 -on10,0,0,24,1,0,60,1443.989680,44,0,657.559496,hint,nbiot,60 -on2,0,0,24,0,0,1406,1440.000000,44,0,624.100000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,1080,1441.000000,44,0,614.756708,hint,nbiot,60 -on3,0,0,24,0,0,1419,1440.000000,44,0,590.300000,hint,nbiot,60 -on9,0,0,24,1,0,540,1440.010320,44,0,602.010836,hint,nbiot,60 -on4,0,0,26,1,0,199,1560.230320,44,2,662.903628,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hint,nbiot,60 -on7,0,0,25,1,0,173,1501.000000,44,1,639.861292,hint,nbiot,60 -on6,0,0,24,0,0,1431,1440.000000,44,0,619.550000,hint,nbiot,60 -on4,0,0,25,1,0,869,1501.030640,45,1,639.028756,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,45,0,1080.400000,hint,nbiot,60 -on2,0,0,24,1,0,360,1441.000000,45,0,602.413416,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,547,1442.000000,45,0,610.866708,hint,nbiot,60 -on9,0,0,27,1,0,783,1622.010320,45,3,797.783920,hint,nbiot,60 -on8,0,0,26,1,0,646,1563.199680,45,2,731.099664,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hint,nbiot,60 -on7,0,0,26,1,0,967,1560.989680,45,2,663.214080,hint,nbiot,60 -on3,0,0,24,1,0,715,1490.199680,45,1,657.446372,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,46,0,993.300000,hint,nbiot,60 -on8,0,0,25,1,0,1313,1501.210000,46,1,638.450292,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,208,1440.010320,46,0,623.460836,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hint,nbiot,60 -on1,0,0,26,1,0,1304,1561.210000,46,3,691.491876,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hint,nbiot,60 -on11,0,0,27,1,0,1423,1620.300000,46,3,701.224584,hint,nbiot,60 -on3,0,0,24,1,0,976,1441.000000,46,0,604.603292,hint,nbiot,60 -on9,0,0,24,1,0,480,1440.010320,46,0,602.010836,hint,nbiot,60 -on4,0,0,24,1,0,905,1442.000000,46,0,641.026708,hint,nbiot,60 -on7,0,0,25,1,0,994,1500.010320,46,1,639.004128,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,457,1500.010320,47,1,627.960836,hint,nbiot,60 -on5,0,0,24,0,0,1423,1440.000000,47,0,615.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,300,1440.010320,47,0,602.010836,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,47,0,804.800000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1430,1440.000000,47,0,583.150000,hint,nbiot,60 -on10,0,0,25,1,0,972,1500.010320,47,1,658.315836,hint,nbiot,60 -on7,0,0,24,0,0,1403,1440.000000,47,0,600.700000,hint,nbiot,60 -on2,0,0,25,1,0,158,1500.230640,48,1,626.112172,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,48,0,761.900000,hint,nbiot,60 -on6,0,0,24,0,0,1421,1440.000000,48,0,589.000000,hint,nbiot,60 -on4,0,0,24,1,0,60,1441.010320,48,0,628.020836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,nbiot,60 -on5,0,0,24,1,0,188,1440.000000,48,0,602.006708,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hint,nbiot,60 -on7,0,0,26,1,0,364,1560.020640,49,2,662.826464,hint,nbiot,60 -on11,0,0,25,1,0,223,1502.000000,49,1,676.719792,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hint,nbiot,60 -on10,0,0,27,1,0,260,1621.220000,49,3,713.545876,hint,nbiot,60 -on1,0,0,24,0,0,1407,1440.000000,49,0,598.100000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,49,0,940.650000,hint,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,49,0,602.006500,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,86,1501.010000,49,1,652.663792,hint,nbiot,60 -on9,0,0,24,1,0,427,1441.979360,49,0,602.805160,hint,nbiot,60 -on2,0,0,24,0,0,1435,1440.000000,49,0,615.000000,hint,nbiot,60 -on4,0,0,25,1,0,583,1501.200320,50,1,634.950044,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,50,0,964.050000,hint,nbiot,60 -on2,0,0,25,1,0,623,1501.010320,50,1,707.010836,hint,nbiot,60 -on3,0,0,24,1,0,1080,1440.010320,50,0,602.010836,hint,nbiot,60 -on6,0,0,24,1,0,725,1440.000000,50,0,602.006708,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,480,1441.010320,50,0,639.720836,hint,nbiot,60 -on9,0,0,25,1,0,924,1500.010320,50,1,635.767336,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1414,1440.000000,50,0,615.000000,hint,nbiot,60 -on11,0,0,24,1,0,120,1440.010320,50,0,602.010836,hint,nbiot,60 -on7,0,0,25,1,0,1200,1502.610320,51,1,664.569252,hint,nbiot,60 -on4,0,0,24,1,0,180,1441.000000,51,0,602.413416,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,51,0,867.850000,hint,nbiot,60 -on6,0,0,24,0,0,1438,1440.000000,51,0,577.950000,hint,nbiot,60 -on9,0,0,24,0,0,1429,1440.000000,51,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1416,1440.000000,51,0,592.250000,hint,nbiot,60 -on11,0,0,26,1,0,1326,1560.000000,51,2,711.763000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hint,nbiot,60 -on1,0,0,26,0,0,1497,1560.430320,51,2,677.030128,hint,nbiot,60 -on8,0,0,25,1,0,360,1502.600000,52,1,627.261832,hint,nbiot,60 -on9,0,0,25,1,0,21,1500.010320,52,1,644.860836,hint,nbiot,60 -on7,0,0,25,1,0,1182,1500.010320,52,1,626.017336,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,580,1440.010320,52,0,641.017544,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,52,0,1075.200000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1421,1440.000000,52,0,589.000000,hint,nbiot,60 -on11,0,0,25,1,0,819,1500.010320,52,1,627.967336,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,730,1443.979360,52,0,678.225160,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1408,1440.000000,53,0,634.500000,hint,nbiot,60 -on11,0,0,26,1,0,471,1569.230320,53,3,680.153420,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,240,1442.000000,53,0,652.713292,hint,nbiot,60 -on3,0,0,24,0,0,1405,1440.000000,53,0,615.000000,hint,nbiot,60 -on9,0,0,25,1,0,416,1501.000000,53,1,639.009792,hint,nbiot,60 -on5,0,0,24,0,0,1429,1440.000000,53,0,583.800000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,53,0,862.000000,hint,nbiot,60 -on1,0,0,25,1,0,318,1501.010320,53,1,639.657420,hint,nbiot,60 -on6,0,0,24,0,0,1415,1440.000000,54,0,615.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1418,1440.000000,54,0,590.950000,hint,nbiot,60 -on3,0,0,25,1,0,720,1500.640960,54,1,626.484716,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,nbiot,60 -on7,0,0,25,1,0,1021,1501.369040,54,1,626.762740,hint,nbiot,60 -on9,0,0,24,0,0,1434,1440.000000,54,0,580.550000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,54,0,854.200000,hint,nbiot,60 -on1,0,0,25,1,0,780,1501.010000,54,1,626.423916,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,660,1442.000000,55,0,608.923416,hint,nbiot,60 -on11,0,0,25,1,0,758,1501.210000,55,1,626.503916,hint,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,55,0,615.000000,hint,nbiot,60 -on10,0,0,24,0,0,1422,1440.000000,55,0,588.350000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,540,1440.010320,55,0,602.010836,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,55,0,756.050000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1410,1440.000000,56,0,615.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,56,0,596.150000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hint,nbiot,60 -on3,0,0,25,1,0,885,1502.969040,57,1,647.669324,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,57,0,821.050000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1406,1440.000000,57,0,598.750000,hint,nbiot,60 -on7,0,0,24,0,0,1406,1440.000000,57,0,615.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,nbiot,60 -on8,0,0,26,1,0,1076,1560.310320,57,2,663.130628,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1411,1440.000000,57,0,595.500000,hint,nbiot,60 -on2,0,0,25,1,0,938,1501.000000,57,1,639.406500,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,56,1500.020640,58,1,629.069964,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,9,1441.989680,58,0,609.555872,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1393,1440.000000,58,0,623.450000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,58,0,906.200000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,58,0,583.800000,hint,nbiot,60 -on6,0,0,24,0,0,1380,1440.000000,58,0,616.300000,hint,nbiot,60 -on8,0,0,24,0,0,1402,1440.000000,59,0,615.000000,hint,nbiot,60 -on3,0,0,27,1,0,598,1621.490000,59,3,727.317292,hint,nbiot,60 -on5,0,0,24,0,0,1430,1440.000000,59,0,583.800000,hint,nbiot,60 -on10,0,0,26,1,0,505,1562.489680,59,2,688.747248,hint,nbiot,60 -on4,0,0,27,1,0,442,1621.300000,59,3,712.277876,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,59,0,923.100000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,1080,1440.010320,59,0,602.010836,hint,nbiot,60 -on11,0,0,25,1,0,398,1503.000000,59,1,697.276292,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,263,1502.210000,59,1,685.903792,hint,nbiot,60 -on1,0,0,25,1,0,113,1502.000000,60,1,668.673416,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1439,1440.000000,60,0,577.300000,hint,nbiot,60 -on2,0,0,24,1,0,1140,1441.010320,60,0,639.720836,hint,nbiot,60 -on8,0,0,25,1,0,541,1502.000000,60,1,645.013416,hint,nbiot,60 -on10,0,0,25,1,0,219,1500.010320,60,1,626.017336,hint,nbiot,60 -on7,0,0,24,0,0,1426,1440.000000,60,0,585.750000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,60,0,901.650000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hint,nbiot,60 -on3,0,0,25,1,0,1259,1500.010320,60,1,626.017336,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,618,1500.010320,61,1,631.457420,hint,nbiot,60 -on1,0,0,25,1,0,555,1503.000000,61,1,668.208292,hint,nbiot,60 -on10,0,0,24,1,0,488,1440.000000,61,0,602.006708,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,686,1502.000000,61,1,646.963416,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,60,1504.589680,61,1,649.774412,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,61,0,921.150000,hint,nbiot,60 -on2,0,0,25,1,0,1310,1500.630640,61,2,633.617172,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1432,1440.000000,62,0,581.850000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1424,1440.000000,62,0,587.050000,hint,nbiot,60 -on6,0,0,24,1,0,1096,1440.989680,62,0,602.402580,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,62,0,732.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,75,1440.010320,62,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1408,1440.000000,63,0,597.450000,hint,nbiot,60 -on7,0,0,25,1,0,341,1501.210000,63,1,639.093792,hint,nbiot,60 -on8,0,0,24,1,0,645,1441.989680,63,0,625.805872,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,63,0,968.600000,hint,nbiot,60 -on6,0,0,24,0,0,1426,1440.000000,63,0,615.000000,hint,nbiot,60 -on11,0,0,24,0,0,1417,1440.000000,63,0,615.000000,hint,nbiot,60 -on4,0,0,25,1,0,716,1501.000000,63,1,652.406708,hint,nbiot,60 -on1,0,0,26,1,0,366,1560.220320,63,2,672.649628,hint,nbiot,60 -on9,0,0,25,1,0,1335,1500.000000,63,1,650.706500,hint,nbiot,60 -on5,0,0,24,0,0,1419,1440.000000,63,0,615.000000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,64,0,860.700000,hint,nbiot,60 -on8,0,0,24,1,0,240,1441.010320,64,0,639.720836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,349,1501.200320,64,1,663.803336,hint,nbiot,60 -on4,0,0,25,1,0,558,1500.310320,64,1,685.079128,hint,nbiot,60 -on9,0,0,24,0,0,1405,1440.000000,64,0,615.000000,hint,nbiot,60 -on2,0,0,25,1,0,414,1500.020320,64,1,626.021336,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,900,1440.010320,64,0,602.010836,hint,nbiot,60 -on11,0,0,24,1,0,543,1441.989680,64,0,613.455872,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hint,nbiot,60 -on2,0,0,26,1,0,256,1561.269360,65,2,663.494120,hint,nbiot,60 -on3,0,0,26,1,0,411,1561.200000,65,2,687.184460,hint,nbiot,60 -on4,0,0,25,1,0,339,1501.300000,65,1,676.823084,hint,nbiot,60 -on9,0,0,27,1,0,237,1623.120320,65,4,747.202920,hint,nbiot,60 -on7,0,0,24,1,0,63,1441.010320,65,0,620.480836,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,65,0,1000.450000,hint,nbiot,60 -on11,0,0,27,1,0,500,1622.600000,65,3,776.258208,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1379,1440.000000,65,0,633.200000,hint,nbiot,60 -on6,0,0,28,1,0,362,1681.990000,65,4,738.288752,hint,nbiot,60 -on1,0,0,25,1,0,180,1501.020640,65,1,638.771464,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,66,0,615.000000,hint,nbiot,60 -on11,0,0,25,1,0,268,1500.010320,66,1,637.054128,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,421,1441.989680,66,0,604.102580,hint,nbiot,60 -on5,0,0,24,1,0,125,1441.000000,66,0,607.853292,hint,nbiot,60 -on3,0,0,24,0,0,1436,1440.000000,66,0,579.250000,hint,nbiot,60 -on4,0,0,25,1,0,188,1501.210000,66,1,649.032084,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,66,0,881.500000,hint,nbiot,60 -on8,0,0,24,0,0,1406,1440.000000,66,0,598.750000,hint,nbiot,60 -on9,0,0,26,1,0,258,1561.010000,66,2,673.862084,hint,nbiot,60 -on6,0,0,24,0,0,1418,1440.000000,66,0,615.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,1153,1440.989680,67,0,602.402580,hint,nbiot,60 -on3,0,0,24,0,0,1424,1440.000000,67,0,587.050000,hint,nbiot,60 -on5,0,0,25,1,0,998,1501.010320,67,1,656.304128,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,67,0,873.050000,hint,nbiot,60 -on6,0,0,24,0,0,1404,1440.000000,67,0,615.000000,hint,nbiot,60 -on1,0,0,25,1,0,9,1501.610320,67,1,626.859252,hint,nbiot,60 -on4,0,0,24,1,0,488,1440.989680,67,0,641.402580,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,974,1441.000000,67,0,644.903292,hint,nbiot,60 -on2,0,0,24,0,0,1428,1440.000000,67,0,584.450000,hint,nbiot,60 -on7,0,0,24,1,0,0,1440.020640,68,0,602.021672,hint,nbiot,60 -on9,0,0,24,0,0,1401,1440.000000,68,0,602.000000,hint,nbiot,60 -on10,0,0,24,0,0,1411,1440.000000,68,0,595.500000,hint,nbiot,60 -on1,0,0,24,0,0,1410,1440.000000,68,0,615.000000,hint,nbiot,60 -on3,0,0,25,1,0,1260,1500.630960,68,1,626.467508,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,68,0,929.600000,hint,nbiot,60 -on11,0,0,24,1,0,1301,1440.000000,68,0,699.506500,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1401,1440.000000,68,0,602.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,319,1440.369360,69,0,602.401036,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,69,0,756.050000,hint,nbiot,60 -on8,0,0,26,1,0,467,1561.820320,69,2,650.949752,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,nbiot,60 -on1,0,0,26,1,0,372,1561.010320,69,2,725.219128,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1432,1440.000000,69,0,581.850000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,540,1501.610320,70,1,626.859252,hint,nbiot,60 -on9,0,0,24,1,0,660,1440.010320,70,0,602.010836,hint,nbiot,60 -on2,0,0,24,0,0,1411,1440.000000,70,0,615.000000,hint,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,70,0,591.600000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,70,0,813.250000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,787,1440.989680,70,0,602.402580,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1416,1440.000000,70,0,592.250000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,837,1501.589680,71,1,669.100996,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,1019,1501.000000,71,1,639.406500,hint,nbiot,60 -on5,0,0,25,1,0,75,1500.010320,71,1,650.710836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,nbiot,60 -on11,0,0,26,1,0,717,1560.010320,71,2,662.815628,hint,nbiot,60 -on7,0,0,25,1,0,555,1501.000000,71,1,640.953292,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,71,0,980.300000,hint,nbiot,60 -on3,0,0,25,1,0,618,1503.400320,71,1,714.511712,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hint,nbiot,60 -on4,0,0,26,1,0,1049,1560.490320,71,2,664.054128,hint,nbiot,60 -on8,0,0,24,1,0,853,1441.000000,72,0,602.413416,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,1262,1440.989680,72,0,602.409288,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1339,1440.000000,72,0,659.850000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,72,0,815.200000,hint,nbiot,60 -on5,0,0,25,1,0,1057,1501.010320,73,1,628.374252,hint,nbiot,60 -on6,0,0,24,0,0,1420,1440.000000,73,0,615.000000,hint,nbiot,60 -on10,0,0,24,0,0,1413,1440.000000,73,0,618.900000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,73,0,759.300000,hint,nbiot,60 -on9,0,0,24,0,0,1414,1440.000000,73,0,593.550000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1401,1440.000000,74,0,602.650000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,74,0,946.500000,hint,nbiot,60 -on2,0,0,26,1,0,536,1561.020320,74,2,665.429628,hint,nbiot,60 -on5,0,0,25,1,0,639,1500.010320,74,1,626.017336,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,1073,1500.010320,74,1,650.060836,hint,nbiot,60 -on3,0,0,25,1,0,960,1503.600000,74,1,646.511832,hint,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,74,0,602.013208,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hint,nbiot,60 -on7,0,0,26,1,0,470,1561.210000,74,2,681.300292,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hint,nbiot,60 -on7,0,0,25,1,0,858,1501.000000,75,1,639.406708,hint,nbiot,60 -on10,0,0,24,0,0,1401,1440.000000,75,0,602.000000,hint,nbiot,60 -on4,0,0,24,0,0,1377,1440.000000,75,0,631.250000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,75,0,576.650000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,790,1441.000000,75,0,608.503292,hint,nbiot,60 -on9,0,0,24,0,0,1424,1440.000000,75,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,184,1500.010320,75,1,639.010836,hint,nbiot,60 -on11,0,0,24,1,0,600,1440.010320,75,0,602.010836,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,75,0,893.200000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,nbiot,60 -on11,0,0,26,0,0,1461,1560.510000,76,2,674.448584,hint,nbiot,60 -on3,0,0,26,1,0,871,1561.000000,76,2,663.016292,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,76,0,593.550000,hint,nbiot,60 -on1,0,0,24,0,0,1436,1440.000000,76,0,579.250000,hint,nbiot,60 -on9,0,0,24,0,0,1377,1440.000000,76,0,618.250000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,76,0,927.000000,hint,nbiot,60 -on5,0,0,25,1,0,714,1501.000000,76,1,642.512876,hint,nbiot,60 -on8,0,0,24,1,0,661,1441.000000,76,0,613.709792,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hint,nbiot,60 -on7,0,0,28,1,0,953,1680.520320,76,4,735.719212,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,8,1442.979360,77,0,640.521868,hint,nbiot,60 -on10,0,0,24,0,0,1426,1440.000000,77,0,615.000000,hint,nbiot,60 -on6,0,0,25,1,0,105,1501.010320,77,1,634.874044,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,1385,1440.000000,77,0,602.006500,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,77,0,733.950000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,913,1440.989680,78,0,602.402580,hint,nbiot,60 -on5,0,0,24,0,0,1418,1440.000000,78,0,590.950000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,78,0,586.400000,hint,nbiot,60 -on3,0,0,25,1,0,1288,1501.620640,78,1,685.616672,hint,nbiot,60 -on11,0,0,25,1,0,1408,1500.000000,78,1,665.013000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,78,0,787.250000,hint,nbiot,60 -on9,0,0,25,1,0,887,1501.000000,79,1,639.009792,hint,nbiot,60 -on3,0,0,25,1,0,814,1501.300000,79,1,643.029792,hint,nbiot,60 -on8,0,0,25,1,0,195,1502.000000,79,1,642.218208,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,660,1440.010320,79,0,602.010836,hint,nbiot,60 -on10,0,0,24,1,0,724,1441.989680,79,0,639.072580,hint,nbiot,60 -on1,0,0,27,1,0,976,1622.220320,79,3,721.499628,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,316,1501.000000,79,1,626.419916,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hint,nbiot,60 -on7,0,0,26,1,0,237,1562.200320,79,2,735.451628,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,79,0,995.900000,hint,nbiot,60 -on9,0,0,24,1,0,619,1442.348720,80,0,603.206196,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,80,0,833.400000,hint,nbiot,60 -on2,0,0,24,0,0,1375,1440.000000,80,0,635.150000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1436,1440.000000,80,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,80,0,594.200000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,629,1502.000000,80,1,678.156708,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,80,0,615.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1411,1440.000000,81,0,595.500000,hint,nbiot,60 -on8,0,0,26,1,0,993,1561.420000,81,2,729.022584,hint,nbiot,60 -on5,0,0,25,1,0,1008,1501.010000,81,1,639.013792,hint,nbiot,60 -on7,0,0,26,1,0,1137,1560.010320,81,2,662.815628,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,nbiot,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,hint,nbiot,60 -on9,0,0,25,1,0,443,1502.600000,81,1,651.961832,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,81,0,1022.550000,hint,nbiot,60 -on2,0,0,24,0,0,1412,1440.000000,81,0,594.850000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1407,1440.000000,82,0,598.100000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,766,1440.010320,82,0,611.760836,hint,nbiot,60 -on4,0,0,25,1,0,1200,1501.610320,82,1,626.859252,hint,nbiot,60 -on3,0,0,24,1,0,180,1440.010320,82,0,602.010836,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,82,0,834.700000,hint,nbiot,60 -on2,0,0,24,0,0,1416,1440.000000,82,0,592.250000,hint,nbiot,60 -on6,0,0,24,0,0,1405,1440.000000,83,0,599.400000,hint,nbiot,60 -on1,0,0,26,1,0,1161,1561.300000,83,2,676.123084,hint,nbiot,60 -on7,0,0,24,1,0,1080,1441.000000,83,0,614.359792,hint,nbiot,60 -on9,0,0,24,0,0,1407,1440.000000,83,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,1038,1441.010320,83,0,639.720836,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,18,1441.010320,83,0,602.424252,hint,nbiot,60 -on4,0,0,24,0,0,1428,1440.000000,83,0,615.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,83,0,912.050000,hint,nbiot,60 -on2,0,0,24,0,0,1437,1440.000000,83,0,615.000000,hint,nbiot,60 -on5,0,0,26,1,0,1137,1560.310320,83,2,735.982212,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,981,1500.210320,84,1,628.684128,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,84,0,576.650000,hint,nbiot,60 -on2,0,0,24,1,0,881,1441.000000,84,0,628.003292,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1403,1440.000000,84,0,600.700000,hint,nbiot,60 -on4,0,0,25,1,0,385,1501.000000,84,1,635.318416,hint,nbiot,60 -on7,0,0,24,0,0,1414,1440.000000,84,0,615.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,84,0,830.800000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1406,1440.000000,85,0,617.600000,hint,nbiot,60 -on8,0,0,24,1,0,669,1440.020640,85,0,602.021672,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1417,1440.000000,85,0,615.000000,hint,nbiot,60 -on11,0,0,24,0,0,1432,1440.000000,85,0,581.850000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,85,0,753.450000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1431,1440.000000,85,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,86,0,863.300000,hint,nbiot,60 -on2,0,0,24,0,0,1439,1440.000000,86,0,615.000000,hint,nbiot,60 -on9,0,0,24,1,0,425,1440.010320,86,0,602.017544,hint,nbiot,60 -on8,0,0,24,0,0,1432,1440.000000,86,0,581.850000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1420,1440.000000,86,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1429,1440.000000,86,0,583.800000,hint,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,86,0,600.700000,hint,nbiot,60 -on3,0,0,24,0,0,1418,1440.000000,86,0,590.950000,hint,nbiot,60 -on11,0,0,24,1,0,368,1440.000000,86,0,602.006708,hint,nbiot,60 -on10,0,0,25,1,0,638,1501.220320,87,1,638.851336,hint,nbiot,60 -on1,0,0,28,1,0,875,1682.709680,87,4,750.484832,hint,nbiot,60 -on4,0,0,24,1,0,1397,1440.000000,87,0,602.006500,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,87,0,1121.350000,hint,nbiot,60 -on8,0,0,26,1,0,598,1562.000000,87,2,712.478084,hint,nbiot,60 -on2,0,0,27,1,0,493,1621.040960,87,3,715.431176,hint,nbiot,60 -on7,0,0,26,1,0,696,1561.530640,87,2,705.680256,hint,nbiot,60 -on11,0,0,24,0,0,1403,1440.000000,87,0,600.700000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,hint,nbiot,60 -on6,0,0,26,1,0,438,1562.330320,87,2,714.248420,hint,nbiot,60 -on9,0,0,26,1,0,824,1560.010320,87,2,686.215628,hint,nbiot,60 -on5,0,0,27,1,0,694,1621.900000,87,3,765.284668,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,nbiot,60 -on3,0,0,25,1,0,607,1500.010320,88,2,636.280836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1384,1440.000000,88,0,629.300000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,88,0,925.050000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,379,1440.989680,88,0,602.402580,hint,nbiot,60 -on2,0,0,24,1,0,192,1440.020640,88,0,602.021672,hint,nbiot,60 -on6,0,0,24,0,0,1438,1440.000000,88,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,480,1503.600000,88,1,645.225040,hint,nbiot,60 -on7,0,0,25,1,0,540,1502.000000,88,1,649.030000,hint,nbiot,60 -on6,0,0,25,1,0,995,1500.010320,89,1,637.054128,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,1076,1440.010320,89,0,641.010836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1405,1440.000000,89,0,599.400000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,960,1442.010320,89,0,652.724128,hint,nbiot,60 -on4,0,0,25,1,0,1344,1500.000000,89,1,713.113000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,89,0,865.250000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,90,0,576.650000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,1264,1441.989680,90,0,636.212580,hint,nbiot,60 -on4,0,0,24,1,0,360,1440.010320,90,0,602.010836,hint,nbiot,60 -on8,0,0,25,0,0,1448,1500.000000,90,1,625.141584,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,90,0,798.950000,hint,nbiot,60 -on9,0,0,25,1,0,1356,1500.300000,90,1,681.369792,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,1358,1501.000000,90,1,638.366292,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,1380,1500.000000,91,1,647.456500,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,91,0,793.750000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1378,1440.000000,91,0,643.600000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1423,1440.000000,91,0,615.000000,hint,nbiot,60 -on2,0,0,24,0,0,1435,1440.000000,91,0,579.900000,hint,nbiot,60 -on8,0,0,24,1,0,1140,1440.010320,91,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,511,1501.020640,92,1,660.221672,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,92,0,947.150000,hint,nbiot,60 -on11,0,0,25,1,0,1089,1502.000000,92,1,681.464584,hint,nbiot,60 -on1,0,0,25,1,0,1086,1501.969040,92,1,651.110824,hint,nbiot,60 -on4,0,0,28,1,0,1318,1682.110000,92,4,788.334960,hint,nbiot,60 -on9,0,0,28,1,0,1415,1680.300000,92,4,736.072460,hint,nbiot,60 -on8,0,0,27,1,0,1323,1621.710640,92,3,702.003548,hint,nbiot,60 -on6,0,0,25,1,0,1217,1501.000000,92,1,638.756500,hint,nbiot,60 -on1,0,0,24,0,0,1426,1440.000000,93,0,615.000000,hint,nbiot,60 -on11,0,0,24,0,0,1405,1440.000000,93,0,600.050000,hint,nbiot,60 -on7,0,0,25,1,0,120,1502.610320,93,1,627.272668,hint,nbiot,60 -on4,0,0,24,1,0,244,1440.369360,93,0,602.401036,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,60,1440.010320,93,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hint,nbiot,60 -on10,0,0,25,1,0,276,1501.989680,93,1,630.059288,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,93,0,962.750000,hint,nbiot,60 -on8,0,0,24,0,0,1422,1440.000000,93,0,588.350000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1407,1440.000000,94,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1430,1440.000000,94,0,583.150000,hint,nbiot,60 -on2,0,0,24,0,0,1373,1440.000000,94,0,620.850000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1415,1440.000000,94,0,628.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,94,0,754.100000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hint,nbiot,60 -on10,0,0,26,1,0,541,1561.200000,95,3,699.281584,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1433,1440.000000,95,0,581.200000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,95,0,975.750000,hint,nbiot,60 -on4,0,0,24,1,0,0,1440.010320,95,0,602.010836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,477,1502.989680,95,1,655.672372,hint,nbiot,60 -on8,0,0,25,1,0,360,1502.620640,95,1,665.476672,hint,nbiot,60 -on11,0,0,26,1,0,657,1560.010320,95,2,662.815628,hint,nbiot,60 -on7,0,0,24,0,0,1398,1440.000000,95,0,604.600000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,76,1501.430320,96,1,640.033420,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,720,1440.010320,96,0,602.010836,hint,nbiot,60 -on10,0,0,24,1,0,1203,1440.010320,96,0,602.010836,hint,nbiot,60 -on4,0,0,24,1,0,1095,1441.000000,96,0,605.253292,hint,nbiot,60 -on7,0,0,26,1,0,177,1560.010320,96,2,662.815628,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,0,1440.369680,96,0,602.407872,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,96,0,826.250000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,1177,1500.010320,96,1,627.109128,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1437,1440.000000,97,0,578.600000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,420,1502.610320,97,1,664.569252,hint,nbiot,60 -on5,0,0,24,0,0,1439,1440.000000,97,0,577.300000,hint,nbiot,60 -on8,0,0,25,1,0,338,1501.210000,97,1,626.503916,hint,nbiot,60 -on2,0,0,25,1,0,267,1501.010320,97,1,675.875836,hint,nbiot,60 -on9,0,0,24,0,0,1439,1440.000000,97,0,615.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,97,0,959.500000,hint,nbiot,60 -on7,0,0,24,0,0,1437,1440.000000,97,0,578.600000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,580,1501.020640,97,1,635.528172,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1436,1440.000000,98,0,615.000000,hint,nbiot,60 -on6,0,0,24,1,0,786,1440.010320,98,0,602.010836,hint,nbiot,60 -on11,0,0,24,0,0,1411,1440.000000,98,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,1382,1440.000000,98,0,602.006500,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,98,0,759.300000,hint,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,98,0,600.050000,hint,nbiot,60 -on3,0,0,24,1,0,1071,1440.010320,98,0,641.010836,hint,nbiot,60 -on1,0,0,26,1,0,158,1560.540960,99,2,671.939592,hint,nbiot,60 -on8,0,0,25,1,0,0,1501.020640,99,1,638.823256,hint,nbiot,60 -on11,0,0,26,1,0,546,1561.369040,99,2,674.819240,hint,nbiot,60 -on2,0,0,25,1,0,810,1501.310320,99,1,686.850836,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,180,1441.010320,99,0,640.760836,hint,nbiot,60 -on4,0,0,25,1,0,902,1501.220320,99,1,686.301336,hint,nbiot,60 -on5,0,0,25,1,0,689,1500.010320,99,1,636.605836,hint,nbiot,60 -on10,0,0,24,1,0,489,1441.010320,99,0,616.320836,hint,nbiot,60 -on3,0,0,24,0,0,1436,1440.000000,99,0,617.600000,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,99,0,1036.850000,hint,nbiot,60 -on9,0,0,24,0,0,1428,1440.000000,99,0,584.450000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1401,1440.000000,100,0,602.000000,hint,nbiot,60 -on2,0,0,24,1,0,1221,1440.010320,100,0,628.010836,hint,nbiot,60 -on8,0,0,24,1,0,1183,1440.010320,100,0,641.010836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,100,0,819.100000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,195,1440.989680,100,0,602.409288,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,129,1440.010320,100,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,101,0,790.500000,hint,nbiot,60 -on7,0,0,24,0,0,1423,1440.000000,101,0,615.000000,hint,nbiot,60 -on3,0,0,24,0,0,1416,1440.000000,101,0,626.050000,hint,nbiot,60 -on9,0,0,25,1,0,448,1502.600000,101,1,648.711832,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1423,1440.000000,101,0,654.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1399,1440.000000,102,0,631.900000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,737,1440.000000,102,0,602.006708,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,102,0,704.050000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1403,1440.000000,102,0,600.700000,hint,nbiot,60 -on9,0,0,25,1,0,1129,1500.200320,103,1,626.093336,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,728,1443.359360,103,0,614.673868,hint,nbiot,60 -on5,0,0,26,1,0,942,1561.400000,103,2,700.024584,hint,nbiot,60 -on2,0,0,27,1,0,1110,1621.610320,103,3,755.042420,hint,nbiot,60 -on4,0,0,25,1,0,878,1502.000000,103,1,675.679792,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,103,0,1061.550000,hint,nbiot,60 -on8,0,0,26,1,0,1060,1561.300000,103,2,693.666376,hint,nbiot,60 -on3,0,0,24,0,0,1422,1440.000000,103,0,615.000000,hint,nbiot,60 -on6,0,0,24,0,0,1415,1440.000000,103,0,615.000000,hint,nbiot,60 -on10,0,0,24,1,0,828,1441.380000,103,0,619.322000,hint,nbiot,60 -on11,0,0,25,1,0,819,1500.020640,103,1,626.028172,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,nbiot,60 -on3,0,0,25,1,0,952,1500.010320,104,1,647.454128,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,104,0,915.950000,hint,nbiot,60 -on8,0,0,24,0,0,1403,1440.000000,104,0,600.700000,hint,nbiot,60 -on7,0,0,24,1,0,1020,1440.010320,104,0,602.010836,hint,nbiot,60 -on6,0,0,24,1,0,904,1441.000000,104,0,612.403292,hint,nbiot,60 -on10,0,0,25,1,0,379,1501.369040,104,1,626.762740,hint,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,104,0,582.500000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1434,1440.000000,104,0,580.550000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,683,1500.020320,105,1,626.021336,hint,nbiot,60 -on6,0,0,25,1,0,540,1502.610320,105,1,703.569252,hint,nbiot,60 -on9,0,0,24,0,0,1422,1440.000000,105,0,615.650000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,105,0,784.650000,hint,nbiot,60 -on10,0,0,24,0,0,1425,1440.000000,105,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1422,1440.000000,105,0,588.350000,hint,nbiot,60 -on1,0,0,26,1,0,1017,1561.010320,106,2,679.075628,hint,nbiot,60 -on5,0,0,24,1,0,780,1441.000000,106,0,615.003292,hint,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,106,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1412,1440.000000,106,1,583.150000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1416,1440.000000,106,0,592.250000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,891,1501.000000,106,1,639.009792,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,106,0,615.000000,hint,nbiot,60 -on3,0,0,24,0,0,1407,1440.000000,106,0,598.100000,hint,nbiot,60 -on10,0,0,26,1,0,926,1561.400000,106,2,690.657876,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,106,0,865.243500,hint,nbiot,60 -on1,0,0,24,0,0,1414,1440.000000,107,0,615.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,107,0,710.550000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,494,1440.000000,107,0,602.006708,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1412,1440.000000,107,0,594.850000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1416,1440.000000,107,0,592.250000,hint,nbiot,60 -on7,0,0,24,0,0,1426,1440.000000,108,0,615.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,391,1500.210320,108,1,639.084128,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,108,0,733.950000,hint,nbiot,60 -on10,0,0,24,0,0,1405,1440.000000,108,0,599.400000,hint,nbiot,60 -on9,0,0,24,0,0,1433,1440.000000,108,0,581.200000,hint,nbiot,60 -on8,0,0,24,1,0,366,1441.989680,108,0,611.505872,hint,nbiot,60 -on7,0,0,24,0,0,1416,1440.000000,109,0,592.250000,hint,nbiot,60 -on11,0,0,26,1,0,297,1561.210000,109,2,675.892084,hint,nbiot,60 -on10,0,0,27,1,0,428,1620.010320,109,3,709.370628,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,109,0,810.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,60,1440.010320,109,0,602.010836,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1406,1440.000000,109,0,598.750000,hint,nbiot,60 -on3,0,0,25,1,0,192,1502.410000,109,1,682.278792,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,110,0,912.050000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,591,1501.000000,110,1,641.609792,hint,nbiot,60 -on3,0,0,24,0,0,1408,1440.000000,110,0,597.450000,hint,nbiot,60 -on10,0,0,25,1,0,749,1500.020640,110,1,636.421672,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,480,1441.010320,110,0,640.104336,hint,nbiot,60 -on1,0,0,26,1,0,665,1560.200640,110,2,663.749964,hint,nbiot,60 -on9,0,0,24,1,0,62,1440.989680,110,0,602.409288,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,111,0,849.650000,hint,nbiot,60 -on4,0,0,25,1,0,480,1502.620640,111,1,674.316672,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1413,1440.000000,111,0,628.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,798,1440.010320,111,0,602.010836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1413,1440.000000,111,0,594.200000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,596,1501.989680,111,1,626.822496,hint,nbiot,60 -on6,0,0,24,1,0,966,1440.010320,111,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,1397,1440.000000,112,0,602.006500,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,112,0,866.550000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,48,1440.989680,112,0,617.352580,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1417,1440.000000,112,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1404,1440.000000,112,0,600.050000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1416,1440.000000,112,0,592.250000,hint,nbiot,60 -on5,0,0,24,0,0,1410,1440.000000,112,0,596.150000,hint,nbiot,60 -on7,0,0,25,1,0,337,1501.000000,112,1,628.363416,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hint,nbiot,60 -on10,0,0,25,1,0,878,1500.220320,113,1,626.101336,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1376,1440.000000,113,0,654.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1409,1440.000000,113,0,654.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,113,0,718.350000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,788,1441.000000,113,0,610.466708,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1401,1440.000000,114,0,602.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,1040,1500.010320,114,1,644.860836,hint,nbiot,60 -on6,0,0,24,1,0,360,1442.000000,114,0,642.060000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,nbiot,60 -on11,0,0,25,1,0,818,1501.000000,114,1,639.009792,hint,nbiot,60 -on10,0,0,25,1,0,436,1502.200000,114,1,656.403416,hint,nbiot,60 -on3,0,0,25,1,0,496,1501.010320,114,1,633.567336,hint,nbiot,60 -on1,0,0,25,1,0,820,1500.510320,114,1,677.554128,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,114,0,882.150000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hint,nbiot,60 -on1,0,0,27,1,0,559,1621.220320,115,3,701.404004,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,115,0,931.550000,hint,nbiot,60 -on10,0,0,27,1,0,383,1623.500000,115,3,822.416376,hint,nbiot,60 -on5,0,0,25,0,0,1459,1500.000000,115,1,612.993084,hint,nbiot,60 -on2,0,0,24,0,0,1416,1440.000000,115,0,592.250000,hint,nbiot,60 -on8,0,0,29,1,0,605,1741.740640,115,5,799.655632,hint,nbiot,60 -on11,0,0,25,1,0,359,1502.010320,115,1,677.517336,hint,nbiot,60 -on6,0,0,25,1,0,180,1502.969040,115,1,675.872616,hint,nbiot,60 -on3,0,0,25,1,0,256,1502.289680,115,1,667.475664,hint,nbiot,60 -on9,0,0,25,1,0,263,1502.200000,115,1,645.976584,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,1324,1500.010320,116,1,639.010836,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,116,0,784.650000,hint,nbiot,60 -on2,0,0,24,0,0,1428,1440.000000,116,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1418,1440.000000,116,0,615.000000,hint,nbiot,60 -on11,0,0,24,1,0,607,1440.989680,116,0,602.402580,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,683,1453.000000,116,1,623.456708,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1415,1440.000000,116,0,592.900000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,900,1440.010320,117,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1406,1440.000000,117,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,117,0,655.950000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1427,1440.000000,117,0,615.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1410,1440.000000,117,0,615.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,1212,1440.010320,118,0,602.010836,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,1327,1441.000000,118,0,610.453292,hint,nbiot,60 -on11,0,0,24,0,0,1405,1440.000000,118,0,615.000000,hint,nbiot,60 -on9,0,0,24,1,0,180,1440.020640,118,0,602.021672,hint,nbiot,60 -on7,0,0,24,0,0,1415,1440.000000,118,0,592.900000,hint,nbiot,60 -on2,0,0,25,0,0,1437,1500.000000,118,1,627.748292,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,118,0,866.550000,hint,nbiot,60 -on5,0,0,25,1,0,360,1501.610320,118,1,626.859252,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,1218,1440.969680,119,0,603.037872,hint,nbiot,60 -on2,0,0,24,1,0,476,1440.010320,119,0,641.010836,hint,nbiot,60 -on9,0,0,24,1,0,360,1440.010320,119,0,602.010836,hint,nbiot,60 -on5,0,0,24,1,0,977,1442.000000,119,0,704.713292,hint,nbiot,60 -on6,0,0,28,1,0,1301,1681.720000,119,4,760.307168,hint,nbiot,60 -on7,0,0,26,1,0,1282,1621.000000,119,3,802.066292,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,119,0,1040.100000,hint,nbiot,60 -on8,0,0,30,1,0,1452,1801.730640,119,6,864.061924,hint,nbiot,60 -on11,0,0,25,0,0,1424,1500.000000,119,1,651.980084,hint,nbiot,60 -on10,0,0,25,1,0,1120,1501.000000,119,1,639.608000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,hint,nbiot,60 -on1,0,0,26,1,0,1144,1561.000000,119,2,685.759376,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,607,1441.989680,120,0,640.112580,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,nbiot,60 -on8,0,0,26,1,0,704,1561.369040,120,2,650.769240,hint,nbiot,60 -on7,0,0,25,1,0,548,1500.230960,120,1,639.099092,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1420,1440.000000,120,0,615.650000,hint,nbiot,60 -on1,0,0,24,1,0,491,1441.000000,120,0,607.853292,hint,nbiot,60 -on6,0,0,25,1,0,780,1502.620640,120,1,665.620088,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,120,0,890.600000,hint,nbiot,60 -on8,0,0,25,1,0,263,1500.010320,121,1,642.260836,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,1329,1440.010320,121,0,602.010836,hint,nbiot,60 -on3,0,0,24,1,0,660,1441.989680,121,0,602.815996,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,120,1441.010320,121,0,630.367544,hint,nbiot,60 -on9,0,0,24,0,0,1439,1440.000000,121,0,577.300000,hint,nbiot,60 -on5,0,0,25,1,0,798,1501.610320,121,1,626.859252,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,121,0,901.000000,hint,nbiot,60 -on4,0,0,24,1,0,1265,1440.000000,121,0,602.006708,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1404,1440.000000,122,0,615.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,122,0,797.650000,hint,nbiot,60 -on7,0,0,24,0,0,1433,1440.000000,122,0,615.000000,hint,nbiot,60 -on5,0,0,24,0,0,1397,1440.000000,122,0,605.250000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1434,1440.000000,122,0,580.550000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,120,1440.020640,122,0,602.021672,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,318,1442.989680,123,0,641.415872,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,nbiot,60 -on1,0,0,26,1,0,909,1560.010320,123,2,662.815628,hint,nbiot,60 -on9,0,0,26,1,0,342,1560.010320,123,2,679.059128,hint,nbiot,60 -on5,0,0,24,1,0,795,1441.000000,123,0,605.253292,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,1293,1440.989680,123,0,629.702580,hint,nbiot,60 -on10,0,0,24,1,0,431,1441.979360,123,0,602.811868,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,123,0,944.550000,hint,nbiot,60 -on1,0,0,24,0,0,1412,1440.000000,124,1,593.556500,hint,nbiot,60 -on2,0,0,25,1,0,720,1502.620320,124,2,664.579752,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hint,nbiot,60 -on5,0,0,24,1,0,600,1441.010320,124,0,631.920836,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hint,nbiot,60 -on9,0,0,24,1,0,626,1442.000000,124,0,679.123416,hint,nbiot,60 -on6,0,0,24,0,0,1404,1440.000000,124,0,600.050000,hint,nbiot,60 -on8,0,0,24,1,0,0,1440.010320,124,0,602.010836,hint,nbiot,60 -on3,0,0,25,1,0,1177,1501.610320,124,1,665.859252,hint,nbiot,60 -on7,0,0,25,1,0,899,1500.220320,124,1,626.101336,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,124,0,1034.250000,hint,nbiot,60 -on4,0,0,24,0,0,1431,1440.000000,124,0,615.000000,hint,nbiot,60 -on6,0,0,24,1,0,1242,1440.010320,125,0,620.210836,hint,nbiot,60 -on2,0,0,25,1,0,566,1501.000000,125,1,681.903292,hint,nbiot,60 -on8,0,0,24,0,0,1398,1440.000000,125,0,604.600000,hint,nbiot,60 -on3,0,0,24,0,0,1439,1440.000000,125,0,615.000000,hint,nbiot,60 -on7,0,0,24,1,0,648,1459.210320,125,1,622.684128,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,125,0,874.870000,hint,nbiot,60 -on9,0,0,24,1,0,424,1440.989680,126,0,602.402580,hint,nbiot,60 -on11,0,0,24,1,0,778,1441.000000,126,0,616.713416,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hint,nbiot,60 -on7,0,0,26,1,0,334,1560.310320,126,2,748.540836,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,126,0,1010.200000,hint,nbiot,60 -on6,0,0,24,1,0,607,1440.989680,126,0,602.402580,hint,nbiot,60 -on3,0,0,24,1,0,130,1442.979360,126,0,611.005160,hint,nbiot,60 -on2,0,0,24,0,0,1408,1440.000000,126,0,597.450000,hint,nbiot,60 -on5,0,0,25,1,0,718,1500.010320,126,1,644.860836,hint,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,126,0,598.100000,hint,nbiot,60 -on4,0,0,24,1,0,0,1441.000000,127,0,609.153292,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,127,0,949.100000,hint,nbiot,60 -on9,0,0,25,1,0,1039,1501.000000,127,1,640.101376,hint,nbiot,60 -on8,0,0,24,1,0,472,1440.010320,127,0,607.860836,hint,nbiot,60 -on11,0,0,26,1,0,1092,1560.310320,127,2,692.172420,hint,nbiot,60 -on10,0,0,25,1,0,74,1500.010320,127,1,629.254128,hint,nbiot,60 -on2,0,0,24,1,0,1286,1440.010320,127,0,641.010836,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,554,1440.000000,127,0,602.006708,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,955,1441.989680,127,0,618.662372,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,614,1440.000000,128,0,602.006708,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,nbiot,60 -on5,0,0,24,1,0,1324,1440.989680,128,0,602.402580,hint,nbiot,60 -on4,0,0,24,1,0,960,1440.010320,128,0,602.010836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1410,1440.000000,128,0,596.150000,hint,nbiot,60 -on2,0,0,24,1,0,303,1440.010320,128,0,602.010836,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,128,0,764.500000,hint,nbiot,60 -on1,0,0,24,0,0,1380,1440.000000,129,0,649.450000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,129,0,864.600000,hint,nbiot,60 -on4,0,0,24,0,0,1420,1440.000000,129,0,620.200000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,129,0,576.650000,hint,nbiot,60 -on3,0,0,24,0,0,1426,1440.000000,129,0,585.750000,hint,nbiot,60 -on10,0,0,24,1,0,16,1440.989680,129,0,602.402580,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,129,0,615.000000,hint,nbiot,60 -on9,0,0,24,0,0,1385,1440.000000,129,0,631.250000,hint,nbiot,60 -on8,0,0,27,1,0,970,1621.510000,130,3,746.363584,hint,nbiot,60 -on3,0,0,26,1,0,1054,1561.010000,130,2,713.966876,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,844,1501.210000,130,1,663.150292,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,770,1501.000000,130,1,638.366500,hint,nbiot,60 -on10,0,0,25,1,0,691,1502.000000,130,1,650.011500,hint,nbiot,60 -on4,0,0,32,1,0,1277,1921.210000,130,8,887.497960,hint,nbiot,60 -on5,0,0,24,0,0,1418,1440.000000,130,0,591.600000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,130,0,1059.600000,hint,nbiot,60 -on1,0,0,24,0,0,1403,1440.000000,130,0,600.700000,hint,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,130,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1408,1440.000000,131,0,597.450000,hint,nbiot,60 -on7,0,0,24,0,0,1417,1440.000000,131,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1426,1440.000000,131,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1412,1440.000000,131,0,629.300000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1405,1440.000000,131,0,615.000000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,131,0,707.950000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,132,0,854.850000,hint,nbiot,60 -on4,0,0,24,0,0,1411,1440.000000,132,0,615.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1409,1440.000000,132,0,597.450000,hint,nbiot,60 -on11,0,0,24,0,0,1415,1440.000000,132,0,592.900000,hint,nbiot,60 -on7,0,0,24,0,0,1402,1440.000000,132,0,615.000000,hint,nbiot,60 -on2,0,0,25,1,0,1056,1501.010320,132,1,677.754128,hint,nbiot,60 -on6,0,0,24,1,0,1031,1441.000000,132,0,607.853292,hint,nbiot,60 -on10,0,0,24,0,0,1420,1440.000000,132,0,589.650000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1439,1440.000000,133,0,577.300000,hint,nbiot,60 -on10,0,0,24,1,0,540,1440.010320,133,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1377,1440.000000,133,0,642.950000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hint,nbiot,60 -on7,0,0,25,1,0,158,1501.000000,133,1,651.996584,hint,nbiot,60 -on3,0,0,24,1,0,458,1459.000000,133,1,609.613208,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,104,1503.000000,133,1,690.568292,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,133,0,999.800000,hint,nbiot,60 -on9,0,0,24,1,0,928,1440.000000,133,0,624.756708,hint,nbiot,60 -on2,0,0,26,1,0,246,1561.210000,133,2,663.302208,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1402,1440.000000,134,0,615.000000,hint,nbiot,60 -on11,0,0,24,0,0,1401,1440.000000,134,0,626.050000,hint,nbiot,60 -on6,0,0,24,1,0,240,1440.010320,134,0,602.010836,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1364,1440.000000,134,0,627.350000,hint,nbiot,60 -on5,0,0,24,0,0,1404,1440.000000,134,0,615.000000,hint,nbiot,60 -on3,0,0,24,0,0,1410,1440.000000,134,0,596.150000,hint,nbiot,60 -on8,0,0,24,0,0,1439,1440.000000,134,0,615.000000,hint,nbiot,60 -on4,0,0,25,1,0,600,1500.630960,134,1,626.467508,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,134,0,908.150000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,135,0,968.600000,hint,nbiot,60 -on6,0,0,27,1,0,439,1621.520320,135,3,723.734504,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hint,nbiot,60 -on2,0,0,26,1,0,418,1562.989680,135,2,705.672164,hint,nbiot,60 -on5,0,0,24,0,0,1409,1440.000000,135,0,596.800000,hint,nbiot,60 -on7,0,0,24,1,0,240,1442.000000,135,0,627.753292,hint,nbiot,60 -on10,0,0,24,1,0,921,1440.010320,135,0,641.010836,hint,nbiot,60 -on1,0,0,24,0,0,1432,1440.000000,135,0,581.850000,hint,nbiot,60 -on8,0,0,25,1,0,446,1501.290000,135,1,640.166000,hint,nbiot,60 -on9,0,0,25,1,0,277,1501.999680,135,1,638.772872,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,1221,1500.010320,136,1,686.460836,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1430,1440.000000,136,0,583.150000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1423,1440.000000,136,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1407,1440.000000,136,0,598.100000,hint,nbiot,60 -on4,0,0,24,1,0,994,1440.989680,136,0,622.552580,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,136,0,827.550000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1403,1440.000000,137,0,663.750000,hint,nbiot,60 -on8,0,0,25,1,0,686,1500.010320,137,1,639.010836,hint,nbiot,60 -on6,0,0,26,1,0,508,1562.610000,137,2,717.467084,hint,nbiot,60 -on7,0,0,24,1,0,610,1442.000000,137,0,641.163416,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,413,1501.190000,137,1,663.987292,hint,nbiot,60 -on10,0,0,25,1,0,151,1500.010320,137,1,633.810836,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,137,0,1018.650000,hint,nbiot,60 -on11,0,0,24,1,0,1380,1440.000000,137,0,602.006500,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hint,nbiot,60 -on2,0,0,26,1,0,537,1561.989680,137,2,675.762372,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,540,1440.010320,138,0,602.010836,hint,nbiot,60 -on5,0,0,24,1,0,671,1441.000000,138,0,607.853292,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1400,1440.000000,138,0,638.400000,hint,nbiot,60 -on4,0,0,24,1,0,732,1441.989680,138,0,607.605872,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,nbiot,60 -on9,0,0,27,1,0,916,1620.220320,138,3,699.697920,hint,nbiot,60 -on2,0,0,25,1,0,819,1502.510000,138,1,692.913792,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,138,0,871.750000,hint,nbiot,60 -on11,0,0,26,1,0,778,1562.210000,138,2,696.240376,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,139,0,927.650000,hint,nbiot,60 -on3,0,0,26,0,0,1475,1579.820000,139,3,657.271084,hint,nbiot,60 -on1,0,0,27,0,0,1486,1620.600000,139,4,699.764668,hint,nbiot,60 -on7,0,0,24,0,0,1383,1440.000000,139,0,629.950000,hint,nbiot,60 -on2,0,0,27,1,0,1395,1620.810000,139,4,701.376376,hint,nbiot,60 -on9,0,0,24,1,0,977,1441.030960,139,0,602.432508,hint,nbiot,60 -on5,0,0,25,1,0,1171,1501.958720,139,1,647.193488,hint,nbiot,60 -on10,0,0,24,1,0,1313,1441.000000,139,0,619.950000,hint,nbiot,60 -on4,0,0,25,1,0,1313,1501.210000,139,1,638.840500,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1427,1440.000000,139,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1406,1440.000000,140,0,615.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,1003,1440.000000,140,0,618.906708,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1428,1440.000000,140,0,615.000000,hint,nbiot,60 -on1,0,0,25,1,0,197,1500.010320,140,1,639.004128,hint,nbiot,60 -on3,0,0,24,1,0,76,1444.969040,140,0,646.517740,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,140,0,956.900000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,162,1501.010000,140,1,639.013792,hint,nbiot,60 -on4,0,0,24,0,0,1432,1440.000000,140,0,582.500000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1423,1440.000000,141,0,615.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,141,0,576.650000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,141,0,699.500000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,974,1440.000000,141,0,602.006708,hint,nbiot,60 -on11,0,0,24,1,0,120,1440.010320,141,0,602.010836,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,nbiot,60 -on6,0,0,26,1,0,1016,1560.010320,142,2,701.815628,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1405,1440.000000,142,0,599.400000,hint,nbiot,60 -on3,0,0,24,0,0,1416,1440.000000,142,0,592.250000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,300,1440.010320,142,0,602.010836,hint,nbiot,60 -on5,0,0,26,1,0,1004,1562.199680,142,2,690.146372,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,142,0,827.550000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1410,1440.000000,143,0,615.000000,hint,nbiot,60 -on10,0,0,24,0,0,1396,1440.000000,143,0,654.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,143,0,837.300000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,498,1442.000000,143,0,603.716708,hint,nbiot,60 -on6,0,0,24,0,0,1407,1440.000000,143,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1432,1440.000000,143,0,615.000000,hint,nbiot,60 -on5,0,0,25,1,0,537,1500.020640,143,1,628.419964,hint,nbiot,60 -on6,0,0,25,1,0,676,1500.000000,144,1,626.019708,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,705,1488.210320,144,1,639.685836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,144,0,820.400000,hint,nbiot,60 -on10,0,0,24,0,0,1431,1440.000000,144,0,582.500000,hint,nbiot,60 -on7,0,0,24,1,0,600,1441.010320,144,0,610.470836,hint,nbiot,60 -on5,0,0,24,0,0,1409,1440.000000,144,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1388,1440.000000,145,0,654.000000,hint,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,145,0,594.200000,hint,nbiot,60 -on8,0,0,24,0,0,1409,1440.000000,145,0,615.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,145,0,941.950000,hint,nbiot,60 -on5,0,0,24,1,0,908,1441.000000,145,0,609.803292,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,145,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1418,1440.000000,145,1,576.656500,hint,nbiot,60 -on4,0,0,25,1,0,940,1500.020640,145,1,639.014964,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,433,1441.989680,145,0,612.812580,hint,nbiot,60 -on9,0,0,24,1,0,1020,1440.010320,145,0,602.010836,hint,nbiot,60 -on2,0,0,24,0,0,1426,1440.000000,145,0,585.750000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,146,0,907.500000,hint,nbiot,60 -on5,0,0,24,0,0,1432,1440.000000,146,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,240,1440.010320,146,0,602.010836,hint,nbiot,60 -on6,0,0,26,1,0,1191,1561.000000,146,2,682.021252,hint,nbiot,60 -on7,0,0,26,1,0,1107,1561.010320,146,2,656.267336,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,360,1440.010320,146,0,602.010836,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,1111,1559.520000,146,3,761.549084,hint,nbiot,60 -on3,0,0,24,0,0,1413,1440.000000,146,0,615.000000,hint,nbiot,60 -on2,0,0,27,1,0,1284,1620.310320,146,3,709.678920,hint,nbiot,60 -on4,0,0,24,1,0,969,1440.010320,147,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1416,1440.000000,147,0,592.250000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1423,1440.000000,147,0,615.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,609,1440.020640,147,0,602.021672,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,147,0,731.350000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,99,1500.020640,148,1,626.028172,hint,nbiot,60 -on10,0,0,24,0,0,1426,1440.000000,148,0,615.000000,hint,nbiot,60 -on8,0,0,24,1,0,2,1441.000000,148,0,613.703292,hint,nbiot,60 -on3,0,0,25,1,0,36,1501.010320,148,1,665.014128,hint,nbiot,60 -on6,0,0,24,1,0,960,1440.010320,148,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1380,1440.000000,148,0,637.100000,hint,nbiot,60 -on7,0,0,24,1,0,1083,1440.000000,148,0,609.806708,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,148,0,954.300000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1404,1440.000000,148,0,600.050000,hint,nbiot,60 -on4,0,0,25,1,0,1053,1500.010320,149,2,659.810836,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,149,0,576.650000,hint,nbiot,60 -on6,0,0,24,0,0,1439,1440.000000,149,0,577.300000,hint,nbiot,60 -on1,0,0,25,1,0,350,1502.300000,149,1,677.093292,hint,nbiot,60 -on3,0,0,24,0,0,1423,1440.000000,149,0,624.750000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,149,0,969.250000,hint,nbiot,60 -on10,0,0,25,1,0,398,1502.210000,149,1,654.703792,hint,nbiot,60 -on7,0,0,24,1,0,18,1441.020640,149,0,639.731672,hint,nbiot,60 -on9,0,0,24,0,0,1424,1440.000000,149,0,623.450000,hint,nbiot,60 -on5,0,0,28,1,0,484,1680.389680,149,4,727.867580,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1419,1440.000000,150,0,590.300000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,nbiot,60 -on5,0,0,24,1,0,19,1440.989680,150,0,602.402580,hint,nbiot,60 -on2,0,0,24,0,0,1400,1440.000000,150,0,631.250000,hint,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,150,0,591.600000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,150,0,812.600000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,551,1440.000000,150,0,602.006708,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,120,1440.010320,150,0,602.010836,hint,nbiot,60 -on7,0,0,25,1,0,817,1501.300000,151,1,654.066584,hint,nbiot,60 -on8,0,0,26,1,0,701,1562.300000,151,3,696.932876,hint,nbiot,60 -on11,0,0,27,1,0,917,1621.210000,151,3,699.255292,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1388,1440.000000,151,0,611.100000,hint,nbiot,60 -on2,0,0,24,1,0,670,1441.000000,151,0,608.893292,hint,nbiot,60 -on10,0,0,24,0,0,1428,1440.000000,151,0,584.450000,hint,nbiot,60 -on9,0,0,27,1,0,806,1622.289680,151,3,734.910248,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,151,0,923.750000,hint,nbiot,60 -on1,0,0,24,0,0,1418,1440.000000,151,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hint,nbiot,60 -on9,0,0,26,1,0,242,1563.010000,152,2,744.933376,hint,nbiot,60 -on8,0,0,24,1,0,0,1442.010320,152,0,657.930836,hint,nbiot,60 -on11,0,0,27,1,0,376,1623.510000,152,3,789.660168,hint,nbiot,60 -on10,0,0,28,1,0,396,1681.300000,152,4,747.379252,hint,nbiot,60 -on7,0,0,24,0,0,1401,1440.000000,152,0,615.000000,hint,nbiot,60 -on2,0,0,26,1,0,203,1563.589680,152,2,697.845664,hint,nbiot,60 -on5,0,0,26,1,0,477,1560.020640,152,2,662.826464,hint,nbiot,60 -on3,0,0,26,1,0,507,1611.510000,152,3,709.856876,hint,nbiot,60 -on4,0,0,25,1,0,96,1502.010320,152,1,678.023920,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,152,0,1004.350000,hint,nbiot,60 -on1,0,0,25,1,0,634,1500.210320,153,1,630.640836,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,872,1501.010320,153,1,639.664128,hint,nbiot,60 -on11,0,0,24,1,0,804,1475.000000,153,1,665.003292,hint,nbiot,60 -on7,0,0,24,1,0,971,1442.000000,153,0,647.000000,hint,nbiot,60 -on4,0,0,25,1,0,318,1501.969040,153,1,648.257740,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,153,0,1032.950000,hint,nbiot,60 -on6,0,0,24,1,0,1380,1440.000000,153,0,602.006500,hint,nbiot,60 -on2,0,0,25,1,0,1116,1500.010320,153,1,657.860836,hint,nbiot,60 -on5,0,0,24,0,0,1411,1440.000000,153,0,595.500000,hint,nbiot,60 -on3,0,0,26,1,0,1076,1560.520320,153,2,663.214628,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,541,1500.020640,154,1,642.271672,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,1219,1441.969040,154,0,602.801032,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,154,0,747.600000,hint,nbiot,60 -on6,0,0,24,0,0,1427,1440.000000,154,0,585.100000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,155,0,808.700000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1430,1440.000000,155,0,583.150000,hint,nbiot,60 -on7,0,0,25,1,0,1275,1500.010320,155,1,650.710836,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1402,1440.000000,155,0,601.350000,hint,nbiot,60 -on11,0,0,24,1,0,257,1440.000000,155,0,602.006708,hint,nbiot,60 -on8,0,0,25,1,0,86,1500.010320,155,1,639.010836,hint,nbiot,60 -on11,0,0,24,1,0,1320,1440.010320,156,0,602.010836,hint,nbiot,60 -on1,0,0,25,1,0,699,1500.010320,156,1,626.017336,hint,nbiot,60 -on7,0,0,24,1,0,74,1440.000000,156,0,602.006708,hint,nbiot,60 -on9,0,0,24,1,0,600,1441.010320,156,0,635.820836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,1,1441.000000,156,0,602.413416,hint,nbiot,60 -on10,0,0,24,0,0,1428,1440.000000,156,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1401,1440.000000,156,0,602.000000,hint,nbiot,60 -on5,0,0,24,1,0,737,1440.000000,156,0,602.006708,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,156,0,885.400000,hint,nbiot,60 -on6,0,0,24,1,0,780,1440.010320,156,0,602.010836,hint,nbiot,60 -on2,0,0,24,0,0,1421,1440.000000,157,0,589.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1428,1440.000000,157,0,584.450000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1437,1440.000000,157,0,615.000000,hint,nbiot,60 -on7,0,0,26,1,0,1043,1560.020320,157,2,676.664628,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,938,1501.000000,157,1,639.009792,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,157,0,747.600000,hint,nbiot,60 -on10,0,0,29,1,0,848,1743.090000,158,5,868.217044,hint,nbiot,60 -on5,0,0,25,1,0,516,1501.000000,158,1,679.778208,hint,nbiot,60 -on3,0,0,27,1,0,815,1621.830640,158,3,725.237048,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,nbiot,60 -on4,0,0,25,1,0,693,1501.300000,158,1,656.413500,hint,nbiot,60 -on8,0,0,25,1,0,593,1501.300000,158,1,682.289792,hint,nbiot,60 -on2,0,0,27,1,0,723,1621.300000,158,3,749.782460,hint,nbiot,60 -on6,0,0,25,1,0,913,1500.010320,158,1,639.004128,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,158,0,995.250000,hint,nbiot,60 -on9,0,0,24,1,0,240,1440.010320,158,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1401,1440.000000,158,0,602.650000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1408,1440.000000,159,0,597.450000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,159,0,965.350000,hint,nbiot,60 -on6,0,0,26,1,0,402,1560.220320,159,2,673.942920,hint,nbiot,60 -on8,0,0,24,0,0,1427,1440.000000,159,0,585.100000,hint,nbiot,60 -on7,0,0,25,1,0,145,1500.010320,159,1,648.760836,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,329,1501.220320,159,1,655.354628,hint,nbiot,60 -on5,0,0,24,0,0,1403,1440.000000,159,0,600.700000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,1157,1440.000000,159,0,602.006708,hint,nbiot,60 -on4,0,0,24,1,0,250,1441.000000,159,0,608.503292,hint,nbiot,60 -on9,0,0,26,1,0,800,1560.310320,160,2,701.019128,hint,nbiot,60 -on2,0,0,24,1,0,304,1441.989680,160,0,612.805872,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,10,1441.989680,160,0,611.909288,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,368,1501.989680,160,1,652.399164,hint,nbiot,60 -on5,0,0,25,1,0,692,1501.300000,160,1,675.913292,hint,nbiot,60 -on4,0,0,25,1,0,521,1501.210000,160,1,639.093792,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,160,0,1041.400000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,550,1501.010320,160,1,675.810836,hint,nbiot,60 -on7,0,0,25,1,0,391,1501.020640,160,1,676.724964,hint,nbiot,60 -on11,0,0,24,0,0,1433,1440.000000,161,0,615.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,70,1504.289680,161,1,712.215872,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,161,0,792.450000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,nbiot,60 -on1,0,0,25,1,0,213,1562.999680,161,2,713.008164,hint,nbiot,60 -on4,0,0,24,1,0,37,1493.010320,161,1,661.430836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hint,nbiot,60 -on10,0,0,26,1,0,293,1561.000000,161,2,663.218208,hint,nbiot,60 -on1,0,0,24,0,0,1412,1440.000000,162,0,594.850000,hint,nbiot,60 -on5,0,0,24,0,0,1432,1440.000000,162,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,nbiot,60 -on3,0,0,25,1,0,1099,1500.010320,162,1,634.454128,hint,nbiot,60 -on4,0,0,24,1,0,762,1440.020640,162,0,641.021672,hint,nbiot,60 -on2,0,0,24,0,0,1425,1440.000000,162,0,586.400000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,984,1441.000000,162,0,654.003292,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,162,0,876.950000,hint,nbiot,60 -on10,0,0,24,1,0,1349,1440.000000,162,0,641.006500,hint,nbiot,60 -on1,0,0,24,0,0,1424,1440.000000,163,0,587.050000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1373,1440.000000,163,0,637.750000,hint,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,163,0,596.800000,hint,nbiot,60 -on3,0,0,24,0,0,1414,1440.000000,163,0,615.000000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,163,0,888.650000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1424,1440.000000,163,0,587.050000,hint,nbiot,60 -on9,0,0,24,0,0,1413,1440.000000,163,0,594.200000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,366,1440.010320,163,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,220,1440.010320,164,0,615.660836,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,164,0,959.500000,hint,nbiot,60 -on11,0,0,24,0,0,1402,1440.000000,164,0,601.350000,hint,nbiot,60 -on9,0,0,24,1,0,291,1441.979360,164,0,679.115160,hint,nbiot,60 -on2,0,0,25,1,0,180,1502.600000,164,1,627.261832,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,1144,1440.989680,164,0,602.402580,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hint,nbiot,60 -on10,0,0,25,1,0,405,1500.020640,164,1,626.028172,hint,nbiot,60 -on5,0,0,24,1,0,420,1440.010320,164,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1412,1440.000000,164,0,594.850000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,165,0,878.250000,hint,nbiot,60 -on1,0,0,26,1,0,1393,1560.020320,165,2,662.819628,hint,nbiot,60 -on10,0,0,26,1,0,1275,1561.000000,165,2,714.808084,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,855,1501.200000,165,1,640.383292,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,916,1502.000000,165,1,677.116708,hint,nbiot,60 -on11,0,0,24,1,0,1166,1442.000000,165,0,676.113292,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,840,1442.979680,166,0,612.311788,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,166,0,1161.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,628,1440.010320,166,0,641.017544,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,nbiot,60 -on6,0,0,25,1,0,996,1502.010000,166,1,681.403792,hint,nbiot,60 -on7,0,0,25,1,0,383,1500.020320,166,1,637.071336,hint,nbiot,60 -on10,0,0,24,1,0,699,1495.610320,166,1,638.759252,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hint,nbiot,60 -on4,0,0,24,1,0,312,1441.020640,166,0,639.731672,hint,nbiot,60 -on5,0,0,26,1,0,1077,1561.190000,166,2,663.294208,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1389,1440.000000,167,0,631.900000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,167,0,576.650000,hint,nbiot,60 -on4,0,0,24,0,0,1434,1440.000000,167,0,580.550000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,167,0,732.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1432,1440.000000,167,0,581.850000,hint,nbiot,60 -on0,1,8,24,0,0,0,1440.000000,168,0,1038.150000,hint,nbiot,60 -on5,0,0,25,1,0,944,1502.200000,168,1,667.186708,hint,nbiot,60 -on1,0,0,29,1,0,484,1741.950320,168,5,805.732504,hint,nbiot,60 -on9,0,0,24,1,0,900,1441.000000,168,0,615.003292,hint,nbiot,60 -on6,0,0,25,1,0,158,1501.000000,168,1,639.217792,hint,nbiot,60 -on2,0,0,24,1,0,120,1441.800000,168,0,612.730000,hint,nbiot,60 -on8,0,0,26,1,0,236,1562.300000,168,2,676.536500,hint,nbiot,60 -on7,0,0,25,1,0,404,1501.000000,168,1,639.009792,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1437,1440.000000,168,0,615.000000,hint,nbiot,60 -on3,0,0,25,1,0,339,1502.979360,168,1,639.814952,hint,nbiot,60 -on4,0,0,24,0,0,1433,1440.000000,169,0,581.200000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1402,1440.000000,169,0,602.000000,hint,nbiot,60 -on5,0,0,24,0,0,1406,1440.000000,169,0,598.750000,hint,nbiot,60 -on6,0,0,24,0,0,1428,1440.000000,169,0,619.550000,hint,nbiot,60 -on11,0,0,24,1,0,259,1440.989680,169,0,602.402580,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,169,0,936.750000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,360,1502.600000,169,1,627.261832,hint,nbiot,60 -on3,0,0,24,0,0,1406,1440.000000,169,0,615.000000,hint,nbiot,60 -on2,0,0,25,1,0,432,1501.000000,170,1,664.346584,hint,nbiot,60 -on10,0,0,24,1,0,643,1441.000000,170,0,650.753292,hint,nbiot,60 -on3,0,0,24,0,0,1418,1440.000000,170,0,591.600000,hint,nbiot,60 -on6,0,0,26,1,0,624,1561.000000,170,3,681.586376,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hint,nbiot,60 -on5,0,0,26,1,0,569,1561.969040,170,2,654.954116,hint,nbiot,60 -on4,0,0,24,1,0,426,1441.958720,170,0,611.493488,hint,nbiot,60 -on1,0,0,24,0,0,1371,1440.000000,170,0,638.400000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,170,0,1001.750000,hint,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,170,0,602.006500,hint,nbiot,60 -on8,0,0,26,1,0,681,1561.310320,170,2,739.372420,hint,nbiot,60 -on6,0,0,25,1,0,420,1503.000000,171,1,651.568292,hint,nbiot,60 -on4,0,0,25,1,0,578,1501.000000,171,1,626.419916,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1396,1440.000000,171,0,605.900000,hint,nbiot,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1431,1440.000000,171,0,582.500000,hint,nbiot,60 -on11,0,0,24,0,0,1426,1440.000000,171,0,585.750000,hint,nbiot,60 -on9,0,0,24,1,0,1052,1440.000000,171,0,628.656708,hint,nbiot,60 -on5,0,0,25,1,0,495,1500.010320,171,1,632.757420,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,171,0,998.500000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1433,1440.000000,172,0,581.200000,hint,nbiot,60 -on9,0,0,24,0,0,1387,1440.000000,172,0,611.750000,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,172,0,875.000000,hint,nbiot,60 -on1,0,0,25,1,0,1320,1500.620640,172,1,626.456672,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,nbiot,60 -on10,0,0,25,1,0,181,1500.010320,172,1,642.260836,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,1260,1440.010320,172,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1406,1440.000000,172,0,615.000000,hint,nbiot,60 -on5,0,0,25,1,0,268,1500.010320,172,1,642.260836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1407,1440.000000,173,0,598.100000,hint,nbiot,60 -on10,0,0,25,1,0,609,1501.330320,173,1,660.670128,hint,nbiot,60 -on7,0,0,25,1,0,516,1501.030640,173,1,666.725672,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,173,0,875.650000,hint,nbiot,60 -on5,0,0,26,1,0,704,1560.010320,173,2,662.815628,hint,nbiot,60 -on1,0,0,24,0,0,1431,1440.000000,173,0,615.000000,hint,nbiot,60 -on3,0,0,24,1,0,480,1440.369680,173,0,602.407872,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,19,1441.989680,173,0,633.359288,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1427,1440.000000,173,0,585.100000,hint,nbiot,60 -on11,0,0,24,0,0,1388,1440.000000,174,0,628.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,174,0,836.650000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,174,0,615.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,313,1440.010320,174,0,641.010836,hint,nbiot,60 -on4,0,0,24,0,0,1415,1440.000000,174,0,592.900000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1429,1440.000000,174,0,583.800000,hint,nbiot,60 -on9,0,0,24,1,0,660,1440.010320,174,0,602.010836,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1401,1440.000000,175,0,615.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1369,1440.000000,175,0,623.450000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,175,0,829.500000,hint,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,175,0,602.006500,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,962,1440.000000,175,0,602.006708,hint,nbiot,60 -on6,0,0,24,0,0,1430,1440.000000,175,0,615.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1386,1440.000000,175,0,625.400000,hint,nbiot,60 -on3,0,0,24,1,0,1375,1440.000000,176,0,616.306500,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,176,0,807.400000,hint,nbiot,60 -on11,0,0,24,0,0,1421,1440.000000,176,0,605.243500,hint,nbiot,60 -on10,0,0,24,0,0,1415,1440.000000,176,0,615.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,309,1441.010320,176,0,639.720836,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,417,1500.010320,176,1,626.017336,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1431,1440.000000,176,0,582.500000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1411,1440.000000,176,0,615.000000,hint,nbiot,60 -on6,0,0,28,1,0,833,1682.490000,177,4,769.917292,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,177,0,1043.350000,hint,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,177,0,602.006500,hint,nbiot,60 -on9,0,0,24,1,0,480,1442.010320,177,0,629.324128,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hint,nbiot,60 -on1,0,0,26,1,0,572,1561.210000,177,2,726.325168,hint,nbiot,60 -on4,0,0,25,1,0,578,1501.210000,177,1,638.840500,hint,nbiot,60 -on3,0,0,24,1,0,187,1440.989680,177,0,602.402580,hint,nbiot,60 -on10,0,0,25,1,0,676,1501.000000,177,1,639.009792,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hint,nbiot,60 -on8,0,0,25,1,0,810,1503.000000,177,1,690.919916,hint,nbiot,60 -on2,0,0,24,1,0,432,1440.010320,177,0,602.010836,hint,nbiot,60 -on4,0,0,25,1,0,377,1500.010320,178,1,626.017336,hint,nbiot,60 -on11,0,0,24,0,0,1427,1440.000000,178,0,585.100000,hint,nbiot,60 -on5,0,0,24,0,0,1411,1440.000000,178,0,615.000000,hint,nbiot,60 -on3,0,0,24,0,0,1419,1440.000000,178,0,590.300000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,1020,1440.010320,178,0,602.010836,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,178,0,837.950000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1403,1440.000000,178,0,637.100000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hint,nbiot,60 -on7,0,0,25,1,0,261,1501.010320,178,1,670.870836,hint,nbiot,60 -on10,0,0,24,0,0,1413,1440.000000,179,0,615.000000,hint,nbiot,60 -on8,0,0,24,0,0,1405,1440.000000,179,0,615.000000,hint,nbiot,60 -on7,0,0,24,0,0,1429,1440.000000,179,0,583.800000,hint,nbiot,60 -on4,0,0,24,0,0,1407,1440.000000,179,0,598.100000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,1149,1440.010320,179,0,602.010836,hint,nbiot,60 -on5,0,0,24,0,0,1412,1440.000000,179,0,594.850000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,179,0,811.950000,hint,nbiot,60 -on9,0,0,24,1,0,1380,1440.000000,179,0,602.006500,hint,nbiot,60 -on11,0,0,24,0,0,1434,1440.000000,180,0,580.550000,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,180,0,743.700000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1429,1440.000000,180,0,654.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,441,1440.010320,180,0,628.010836,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,535,1440.000000,180,0,641.006708,hint,nbiot,60 -on11,0,0,24,1,0,377,1442.000000,181,0,641.663292,hint,nbiot,60 -on9,0,0,25,1,0,196,1500.010320,181,1,626.017336,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,nbiot,60 -on10,0,0,25,1,0,73,1501.000000,181,1,651.996584,hint,nbiot,60 -on3,0,0,26,1,0,479,1561.010320,181,2,676.215836,hint,nbiot,60 -on8,0,0,25,1,0,459,1501.989680,181,1,639.412372,hint,nbiot,60 -on6,0,0,24,1,0,14,1442.000000,181,0,643.613292,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,nbiot,60 -on2,0,0,27,1,0,165,1622.810640,181,3,703.997464,hint,nbiot,60 -on7,0,0,24,0,0,1426,1440.000000,181,0,585.750000,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,181,0,940.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1390,1440.000000,182,0,636.450000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,304,1440.989680,182,0,602.402580,hint,nbiot,60 -on6,0,0,25,1,0,1083,1500.010320,182,1,641.604128,hint,nbiot,60 -on7,0,0,24,0,0,1411,1440.000000,182,0,595.500000,hint,nbiot,60 -on11,0,0,24,1,0,1037,1441.000000,182,0,603.953292,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,182,0,935.450000,hint,nbiot,60 -on8,0,0,24,1,0,180,1440.010320,182,0,602.010836,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1427,1440.000000,182,0,585.100000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1407,1440.000000,182,0,598.100000,hint,nbiot,60 -on10,0,0,26,1,0,478,1562.269040,183,2,675.867200,hint,nbiot,60 -on1,0,0,24,1,0,693,1440.989680,183,0,621.909288,hint,nbiot,60 -on8,0,0,24,0,0,1401,1440.000000,183,0,602.000000,hint,nbiot,60 -on4,0,0,26,1,0,578,1563.359360,183,2,702.713452,hint,nbiot,60 -on3,0,0,27,0,0,1474,1620.630640,183,3,695.057924,hint,nbiot,60 -on7,0,0,27,1,0,398,1621.490000,183,3,711.898876,hint,nbiot,60 -on9,0,0,29,1,0,720,1740.790000,183,5,762.167084,hint,nbiot,60 -on11,0,0,25,1,0,1166,1500.010320,183,1,639.010836,hint,nbiot,60 -on6,0,0,25,1,0,222,1501.000000,183,1,638.366292,hint,nbiot,60 -on0,1,9,24,0,0,0,1440.000000,183,0,1192.850000,hint,nbiot,60 -on5,0,0,26,1,0,322,1564.520000,183,2,765.629084,hint,nbiot,60 -on2,0,0,25,1,0,142,1501.989680,183,1,703.105872,hint,nbiot,60 -on9,0,0,24,1,0,499,1440.369360,184,0,602.401036,hint,nbiot,60 -on8,0,0,25,1,0,360,1500.630640,184,1,626.473880,hint,nbiot,60 -on7,0,0,26,1,0,566,1561.220320,184,2,687.342920,hint,nbiot,60 -on6,0,0,26,1,0,657,1562.200320,184,2,713.604920,hint,nbiot,60 -on2,0,0,24,0,0,1413,1440.000000,184,0,594.200000,hint,nbiot,60 -on5,0,0,25,1,0,792,1500.010320,184,1,639.004128,hint,nbiot,60 -on10,0,0,25,1,0,719,1501.000000,184,1,639.009792,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,184,0,1002.400000,hint,nbiot,60 -on11,0,0,26,1,0,752,1561.300000,184,2,692.619876,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,1081,1440.989680,185,0,602.402580,hint,nbiot,60 -on2,0,0,25,1,0,600,1501.610320,185,1,626.859252,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,185,0,800.250000,hint,nbiot,60 -on4,0,0,24,0,0,1410,1440.000000,185,0,596.150000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,nbiot,60 -on10,0,0,24,1,0,300,1440.010320,185,0,602.010836,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1389,1440.000000,185,0,654.000000,hint,nbiot,60 -on3,0,0,24,0,0,1415,1440.000000,185,0,615.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1414,1440.000000,186,0,615.000000,hint,nbiot,60 -on0,1,0,24,0,0,0,1440.000000,186,0,637.750000,hint,nbiot,60 -on4,0,0,24,0,0,1400,1440.000000,186,0,693.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1417,1440.000000,186,0,654.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hint,nbiot,60 -on9,0,0,26,1,0,1436,1560.010000,187,2,662.815292,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,187,0,871.750000,hint,nbiot,60 -on10,0,0,25,1,0,1332,1501.410000,187,1,644.568792,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,nbiot,60 -on5,0,0,24,1,0,1092,1440.010320,187,0,602.010836,hint,nbiot,60 -on11,0,0,24,1,0,1140,1440.010320,187,0,602.010836,hint,nbiot,60 -on2,0,0,25,1,0,956,1500.010320,187,1,647.460836,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,180,1440.010320,187,0,602.010836,hint,nbiot,60 -on8,0,0,24,0,0,1426,1440.000000,187,0,618.900000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1410,1440.000000,188,0,615.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,188,0,903.600000,hint,nbiot,60 -on2,0,0,24,0,0,1412,1440.000000,188,0,615.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1431,1440.000000,188,0,582.500000,hint,nbiot,60 -on3,0,0,25,1,0,360,1502.010320,188,1,648.969128,hint,nbiot,60 -on8,0,0,24,0,0,1426,1440.000000,188,0,585.750000,hint,nbiot,60 -on11,0,0,25,1,0,450,1500.010320,188,1,626.907420,hint,nbiot,60 -on5,0,0,24,0,0,1427,1440.000000,188,0,585.750000,hint,nbiot,60 -on1,0,0,24,1,0,1140,1440.010320,188,0,602.010836,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,780,1440.010320,189,0,602.010836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,1172,1500.030640,189,1,626.032172,hint,nbiot,60 -on5,0,0,25,1,0,1020,1502.610320,189,1,664.569252,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,189,0,819.750000,hint,nbiot,60 -on10,0,0,24,0,0,1409,1440.000000,189,0,615.000000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1434,1440.000000,189,0,580.550000,hint,nbiot,60 -on5,0,0,24,1,0,363,1441.000000,190,0,613.053292,hint,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,190,0,878.250000,hint,nbiot,60 -on9,0,0,24,0,0,1351,1440.000000,190,0,674.150000,hint,nbiot,60 -on11,0,0,26,1,0,477,1562.210000,190,2,691.450500,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,nbiot,60 -on10,0,0,25,1,0,462,1501.000000,190,1,639.009792,hint,nbiot,60 -on7,0,0,24,0,0,1371,1440.300000,190,1,616.426500,hint,nbiot,60 -on2,0,0,24,1,0,720,1440.010320,190,0,602.010836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,60,1440.010320,191,0,602.010836,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,244,1440.989680,191,0,602.402580,hint,nbiot,60 -on3,0,0,26,1,0,1300,1561.300000,191,2,676.123084,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,1080,1441.000000,191,0,615.003292,hint,nbiot,60 -on9,0,0,25,1,0,1156,1500.200000,191,1,634.536500,hint,nbiot,60 -on0,1,7,24,0,0,0,1440.000000,191,0,837.950000,hint,nbiot,60 -on4,0,0,27,1,0,1335,1620.220320,191,3,702.492712,hint,nbiot,60 -on8,0,0,24,1,0,1215,1441.000000,191,0,604.609792,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1402,1440.000000,192,0,601.350000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1429,1440.000000,192,0,583.800000,hint,nbiot,60 -on0,1,1,24,0,0,0,1440.000000,192,0,811.950000,hint,nbiot,60 -on10,0,0,24,0,0,1427,1440.000000,192,0,585.100000,hint,nbiot,60 -on1,0,0,25,1,0,172,1501.610320,192,1,665.859252,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1430,1440.000000,192,0,583.150000,hint,nbiot,60 -on9,0,0,24,0,0,1434,1440.000000,192,0,615.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hint,nbiot,60 -on1,0,0,24,1,0,399,1459.000000,193,1,609.613208,hint,nbiot,60 -on9,0,0,25,1,0,781,1500.010320,193,1,642.260836,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,nbiot,60 -on3,0,0,24,1,0,1034,1441.000000,193,0,639.716708,hint,nbiot,60 -on7,0,0,24,1,0,859,1441.979360,193,0,602.805160,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,193,0,927.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,nbiot,60 -on10,0,0,25,1,0,326,1501.020640,193,1,661.131672,hint,nbiot,60 -on2,0,0,25,1,0,1109,1502.000000,193,1,698.319916,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1433,1440.000000,193,0,615.000000,hint,nbiot,60 -on7,0,0,25,1,0,1292,1501.010320,194,1,645.514128,hint,nbiot,60 -on10,0,0,24,0,0,1426,1440.000000,194,0,586.400000,hint,nbiot,60 -on1,0,0,24,0,0,1415,1440.000000,194,0,592.900000,hint,nbiot,60 -on9,0,0,25,0,0,1430,1500.000000,194,1,618.206500,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,194,0,888.000000,hint,nbiot,60 -on6,0,0,25,1,0,798,1500.220320,194,1,639.751336,hint,nbiot,60 -on4,0,0,24,0,0,1437,1440.000000,194,0,578.600000,hint,nbiot,60 -on5,0,0,24,1,0,1219,1441.989680,194,0,638.162580,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hint,nbiot,60 -on11,0,0,24,1,0,720,1441.010320,194,0,606.570836,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hint,nbiot,60 -on2,0,0,24,1,0,1297,1499.000000,194,1,638.209792,hint,nbiot,60 -on6,0,0,24,0,0,1425,1440.000000,195,0,586.400000,hint,nbiot,60 -on8,0,0,27,1,0,1012,1621.210000,195,3,735.642084,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hint,nbiot,60 -on5,0,0,24,1,0,9,1440.020640,195,0,602.021672,hint,nbiot,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,hint,nbiot,60 -on1,0,0,25,1,0,239,1500.010320,195,1,626.017336,hint,nbiot,60 -on9,0,0,26,1,0,1137,1560.010320,195,2,662.815628,hint,nbiot,60 -on3,0,0,25,1,0,60,1502.610320,195,1,664.569252,hint,nbiot,60 -on4,0,0,25,1,0,987,1502.000000,195,1,673.469792,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,195,0,970.550000,hint,nbiot,60 -on7,0,0,24,0,0,1439,1440.000000,195,0,615.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,nbiot,60 -on2,0,0,25,1,0,670,1500.010320,196,1,633.810836,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,517,1501.000000,196,1,634.856708,hint,nbiot,60 -on9,0,0,24,0,0,1416,1440.000000,196,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,196,0,758.650000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,450,1441.010320,196,0,693.014128,hint,nbiot,60 -on3,0,0,24,0,0,1437,1440.000000,197,0,578.600000,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,197,0,977.700000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,197,0,615.000000,hint,nbiot,60 -on7,0,0,26,1,0,417,1561.000000,197,2,675.814792,hint,nbiot,60 -on4,0,0,26,1,0,488,1560.190000,197,2,662.894000,hint,nbiot,60 -on2,0,0,25,1,0,549,1500.010320,197,1,634.655836,hint,nbiot,60 -on10,0,0,24,0,0,1431,1440.000000,197,0,582.500000,hint,nbiot,60 -on11,0,0,24,0,0,1421,1440.000000,197,0,616.300000,hint,nbiot,60 -on6,0,0,25,1,0,186,1502.610320,197,1,655.469252,hint,nbiot,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hint,nbiot,60 -on9,0,0,25,1,0,393,1502.199680,197,1,679.334664,hint,nbiot,60 -on0,1,2,24,0,0,0,1440.000000,198,0,739.800000,hint,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,nbiot,60 -on3,0,0,24,0,0,1402,1440.000000,198,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,976,1440.989680,198,0,602.402580,hint,nbiot,60 -on6,0,0,25,1,0,1278,1500.010320,198,1,647.460836,hint,nbiot,60 -on9,0,0,24,0,0,1433,1440.000000,198,0,581.200000,hint,nbiot,60 -on11,0,0,28,1,0,1294,1681.879040,199,4,740.234824,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,nbiot,60 -on5,0,0,25,1,0,1237,1501.000000,199,1,652.009792,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,nbiot,60 -on8,0,0,24,1,0,1092,1441.000000,199,0,603.303292,hint,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,199,0,843.150000,hint,nbiot,60 -on4,0,0,24,1,0,480,1440.010320,199,0,602.010836,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1431,1440.000000,199,0,582.500000,hint,nbiot,60 -on2,0,0,24,0,0,1424,1440.000000,199,0,615.000000,hint,nbiot,60 -on7,0,0,25,1,0,1148,1501.420000,199,1,649.116084,hint,nbiot,60 -on3,0,0,24,1,0,905,1441.000000,200,0,640.756708,hint,nbiot,60 -on10,0,0,25,1,0,0,1502.589680,200,1,664.560996,hint,nbiot,60 -on11,0,0,24,0,0,1436,1440.000000,200,0,615.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,200,0,837.300000,hint,nbiot,60 -on5,0,0,25,1,0,234,1501.000000,200,1,626.419916,hint,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,nbiot,60 -on2,0,0,26,1,0,139,1561.320320,200,2,700.844628,hint,nbiot,60 -on7,0,0,24,1,0,68,1441.010320,200,0,610.210836,hint,nbiot,60 -on9,0,0,24,1,0,369,1440.010320,200,0,602.010836,hint,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hint,nbiot,60 -on6,0,0,24,1,0,1187,1467.010000,1,0,612.810500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,279,1459.010000,1,0,609.610500,extended,nbiot,60 -on8,0,0,24,1,0,439,1440.000000,1,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,483,1440.000000,1,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,710,1470.010000,1,0,614.010500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,300,1440.000000,1,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1473.010000,1,0,810.210500,extended,nbiot,60 -on10,0,0,24,1,0,1050,1450.010000,2,0,606.010500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,753,1453.010000,2,0,607.210500,extended,nbiot,60 -on7,0,0,24,1,0,600,1440.000000,2,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,991,1451.010000,2,0,606.410500,extended,nbiot,60 -on0,1,7,24,0,0,0,1491.020000,2,0,843.421000,extended,nbiot,60 -on6,0,0,24,1,0,211,1451.010000,2,0,606.410500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,2,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,240,1440.000000,2,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,552,1440.000000,2,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1499.040000,3,0,781.642000,extended,nbiot,60 -on4,0,0,24,1,0,300,1440.000000,3,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,240,1440.000000,3,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,480,1440.000000,3,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,398,1458.010000,3,0,609.210500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1096,1440.000000,3,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,519,1459.020000,3,0,609.614500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1401,1441.010000,4,0,602.410500,extended,nbiot,60 -on2,0,0,24,1,0,1409,1449.020000,4,0,605.614500,extended,nbiot,60 -on0,1,6,24,0,0,0,1528.040000,4,0,793.242000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,599,1479.010000,4,0,617.610500,extended,nbiot,60 -on3,0,0,24,1,0,17,1440.000000,4,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,420,1440.000000,4,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,660,1440.000000,4,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1432,1472.010000,5,0,614.810500,extended,nbiot,60 -on0,1,5,24,0,0,0,1462.020000,5,0,753.821000,extended,nbiot,60 -on5,0,0,24,1,0,120,1440.000000,5,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,383,1443.010000,5,0,603.210500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,947,1467.010000,5,0,612.810500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,0,1440.000000,5,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1077,1477.010000,6,0,616.810500,extended,nbiot,60 -on7,0,0,24,1,0,498,1440.000000,6,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,1070,1470.020000,6,0,614.014500,extended,nbiot,60 -on0,1,5,24,0,0,0,1460.020000,6,0,745.221000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,861,1441.010000,6,0,602.410500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1260,1440.000000,6,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on0,1,2,24,0,0,0,1447.010000,7,0,643.810500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,23,1443.010000,7,0,603.210500,extended,nbiot,60 -on8,0,0,24,1,0,720,1440.000000,7,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1467.010000,8,0,723.960500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1080,1440.000000,8,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,180,1440.000000,8,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,519,1459.010000,8,0,609.610500,extended,nbiot,60 -on4,0,0,24,1,0,326,1446.010000,8,0,604.410500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,172,1472.010000,9,0,614.810500,extended,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,9,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,9,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,814,1454.020000,9,0,607.614500,extended,nbiot,60 -on9,0,0,24,1,0,997,1457.010000,9,0,608.810500,extended,nbiot,60 -on0,1,9,24,0,0,0,1538.060000,9,0,885.663000,extended,nbiot,60 -on10,0,0,24,1,0,0,1440.000000,9,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,813,1453.010000,9,0,607.210500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,9,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,660,1440.000000,9,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,60,1440.000000,9,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,200,1440.010000,9,0,602.010500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,933,1453.010000,10,0,607.210500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1444.020000,10,0,785.621000,extended,nbiot,60 -on4,0,0,24,1,0,1260,1440.000000,10,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,337,1457.010000,10,0,608.810500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,960,1440.000000,10,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,204,1444.010000,10,0,603.610500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,683,1443.010000,10,0,603.210500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,600,1440.000000,11,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,300,1440.000000,11,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,540,1440.000000,11,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,566,1446.010000,11,0,604.410500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,11,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1134,1474.010000,11,0,615.610500,extended,nbiot,60 -on1,0,0,24,1,0,34,1454.010000,11,0,607.610500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,11,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,11,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,960,1440.000000,11,0,602.006500,extended,nbiot,60 -on0,1,9,24,0,0,0,1543.040000,11,0,909.742000,extended,nbiot,60 -on4,0,0,24,1,0,731,1440.000000,11,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,180,1440.000000,12,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,126,1440.000000,12,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1301,1461.010000,12,0,610.410500,extended,nbiot,60 -on9,0,0,24,1,0,840,1440.000000,12,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,600,1440.000000,12,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,324,1444.010000,12,0,603.610500,extended,nbiot,60 -on8,0,0,24,1,0,991,1451.010000,12,0,606.410500,extended,nbiot,60 -on0,1,7,24,0,0,0,1497.020000,12,0,836.071000,extended,nbiot,60 -on7,0,0,24,1,0,600,1440.000000,13,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,273,1453.010000,13,0,607.210500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,0,1440.000000,13,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,3,1440.000000,13,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1471.030000,13,0,744.431500,extended,nbiot,60 -on1,0,0,24,1,0,148,1448.010000,13,0,605.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,840,1440.000000,14,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1500.030000,14,0,826.231500,extended,nbiot,60 -on3,0,0,24,1,0,0,1440.000000,14,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,60,1440.000000,14,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,239,1479.010000,14,0,617.610500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,374,1440.000000,14,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,14,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,823,1463.010000,14,0,611.210500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,423,1440.000000,15,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,1020,1440.000000,15,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,869,1449.010000,15,0,605.610500,extended,nbiot,60 -on11,0,0,24,1,0,180,1440.000000,15,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1504.020000,15,0,835.621000,extended,nbiot,60 -on8,0,0,24,1,0,660,1440.000000,15,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,663,1440.000000,15,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,294,1474.010000,15,0,615.610500,extended,nbiot,60 -on7,0,0,24,1,0,685,1445.010000,16,0,604.010500,extended,nbiot,60 -on3,0,0,24,1,0,488,1440.000000,16,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,300,1440.000000,16,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,900,1440.000000,16,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1491.020000,16,0,792.721000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,328,1448.010000,16,0,605.210500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1263,1440.000000,16,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1512.040000,17,0,786.842000,extended,nbiot,60 -on6,0,0,24,1,0,660,1440.000000,17,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,240,1440.000000,17,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,1202,1440.000000,17,0,602.006500,extended,nbiot,60 -on2,0,0,23,0,0,1430,1430.000000,17,0,572.000000,extended,nbiot,60 -on10,0,0,24,1,0,720,1440.000000,17,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,60,1440.000000,17,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,590,1470.010000,17,0,614.010500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,17,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,159,1459.010000,18,0,609.610500,extended,nbiot,60 -on5,0,0,24,1,0,131,1440.000000,18,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,601,1440.000000,18,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,378,1440.000000,18,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1140,1440.000000,18,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1460.020000,18,0,824.521000,extended,nbiot,60 -on6,0,0,24,1,0,1031,1440.000000,18,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,18,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1246,1466.010000,18,0,612.410500,extended,nbiot,60 -on7,0,0,24,1,0,533,1473.010000,19,0,615.210500,extended,nbiot,60 -on3,0,0,24,1,0,476,1476.010000,19,0,616.410500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,19,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1466.010000,19,0,760.610500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,75,1440.000000,19,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,19,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1452.010000,20,0,752.410500,extended,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,20,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,540,1440.000000,20,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,120,1440.000000,20,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,755,1455.010000,20,0,608.010500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,272,1452.010000,20,0,606.810500,extended,nbiot,60 -on3,0,0,24,1,0,660,1440.000000,21,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1446.020000,21,0,747.421000,extended,nbiot,60 -on7,0,0,24,1,0,1100,1440.010000,21,0,602.010500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,216,1456.010000,21,0,608.410500,extended,nbiot,60 -on2,0,0,24,1,0,1320,1440.000000,21,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,33,1453.010000,21,0,607.210500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1115,1455.010000,22,0,608.010500,extended,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,22,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,204,1444.010000,22,0,603.610500,extended,nbiot,60 -on0,1,5,24,0,0,0,1467.010000,22,0,764.260500,extended,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,22,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,893,1473.010000,22,0,615.210500,extended,nbiot,60 -on9,0,0,24,1,0,1124,1464.010000,23,0,611.610500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,0,1440.000000,23,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,660,1440.000000,23,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,720,1440.000000,23,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,26,1446.020000,23,0,604.414500,extended,nbiot,60 -on0,1,8,24,0,0,0,1506.030000,23,0,856.581500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1335,1440.000000,23,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,23,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1200,1440.000000,23,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,600,1440.000000,23,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,979,1440.000000,24,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,975,1440.000000,24,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,24,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,383,1443.010000,24,0,603.210500,extended,nbiot,60 -on8,0,0,24,1,0,130,1440.000000,24,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,368,1440.000000,24,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1480.040000,24,0,800.692000,extended,nbiot,60 -on7,0,0,24,1,0,605,1440.000000,24,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,287,1467.010000,25,0,612.810500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1015,1475.010000,25,0,616.010500,extended,nbiot,60 -on11,0,0,24,1,0,180,1440.000000,25,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,780,1440.000000,25,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1473.020000,25,0,748.471000,extended,nbiot,60 -on5,0,0,24,1,0,540,1440.000000,25,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,26,1446.010000,26,0,604.410500,extended,nbiot,60 -on7,0,0,24,1,0,410,1470.010000,26,0,614.010500,extended,nbiot,60 -on0,1,8,24,0,0,0,1464.010000,26,0,861.860500,extended,nbiot,60 -on10,0,0,24,1,0,226,1466.010000,26,0,612.410500,extended,nbiot,60 -on6,0,0,24,1,0,1200,1440.000000,26,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,780,1440.000000,26,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,595,1475.010000,26,0,616.010500,extended,nbiot,60 -on1,0,0,24,1,0,1211,1440.000000,26,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,26,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,347,1467.010000,26,0,612.810500,extended,nbiot,60 -on5,0,0,24,1,0,1037,1440.000000,27,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,120,1440.000000,27,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,828,1468.010000,27,0,613.210500,extended,nbiot,60 -on8,0,0,24,1,0,322,1442.010000,27,0,602.810500,extended,nbiot,60 -on2,0,0,24,1,0,443,1443.010000,27,0,603.210500,extended,nbiot,60 -on10,0,0,24,1,0,1173,1453.010000,27,0,607.210500,extended,nbiot,60 -on4,0,0,24,1,0,605,1440.000000,27,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,720,1440.000000,27,0,602.006500,extended,nbiot,60 -on0,1,10,24,0,0,0,1493.030000,27,0,948.231500,extended,nbiot,60 -on3,0,0,24,1,0,482,1440.000000,27,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,0,1440.000000,27,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,27,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,693,1453.020000,28,0,607.214500,extended,nbiot,60 -on8,0,0,24,1,0,335,1455.010000,28,0,608.010500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1234,1454.010000,28,0,607.610500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1495.030000,28,0,754.031500,extended,nbiot,60 -on10,0,0,24,1,0,1380,1440.000000,28,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,682,1442.010000,28,0,602.810500,extended,nbiot,60 -on11,0,0,24,1,0,1140,1440.000000,29,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,607,1440.000000,29,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,717,1477.010000,29,0,616.810500,extended,nbiot,60 -on7,0,0,24,1,0,172,1472.010000,29,0,614.810500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,540,1440.000000,29,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1454.010000,29,0,755.160500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1016,1476.010000,30,0,616.410500,extended,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,30,0,691.050000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,331,1451.010000,30,0,606.410500,extended,nbiot,60 -on5,0,0,24,1,0,720,1440.000000,30,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,780,1440.000000,31,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1495.050000,31,0,767.052500,extended,nbiot,60 -on10,0,0,24,1,0,894,1474.010000,31,0,615.610500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,503,1443.010000,31,0,603.210500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,540,1440.000000,31,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1140,1440.000000,31,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,879,1459.020000,31,0,609.614500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,967,1440.000000,32,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,993,1453.010000,32,0,607.210500,extended,nbiot,60 -on5,0,0,24,1,0,1062,1462.010000,32,0,610.810500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1308,1468.010000,32,0,613.210500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,900,1440.000000,32,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1469.030000,32,0,782.631500,extended,nbiot,60 -on6,0,0,24,1,0,179,1479.010000,32,0,617.610500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,33,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,33,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,452,1452.010000,33,0,606.810500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,193,1440.000000,33,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1080,1440.000000,33,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1448.020000,33,0,746.271000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1415,1455.010000,34,0,608.010500,extended,nbiot,60 -on0,1,5,24,0,0,0,1481.030000,34,0,746.481500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,300,1440.000000,34,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,1200,1440.000000,34,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,840,1440.000000,34,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,1020,1440.000000,34,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,720,1440.000000,35,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,629,1449.020000,35,0,605.614500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,641,1461.010000,35,0,610.410500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1200,1440.000000,35,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1384,1440.000000,35,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1470.030000,35,0,732.981500,extended,nbiot,60 -on0,1,7,24,0,0,0,1471.020000,36,0,831.521000,extended,nbiot,60 -on11,0,0,24,1,0,1014,1474.010000,36,0,615.610500,extended,nbiot,60 -on1,0,0,24,1,0,484,1440.000000,36,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,1306,1466.010000,36,0,612.410500,extended,nbiot,60 -on4,0,0,24,1,0,0,1440.000000,36,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,670,1440.000000,36,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,420,1440.000000,36,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1020,1440.000000,36,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,360,1440.000000,37,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1320,1440.000000,37,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,120,1440.000000,37,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1250,1470.010000,37,0,614.010500,extended,nbiot,60 -on10,0,0,24,1,0,480,1440.000000,37,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1593.060000,37,0,862.163000,extended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,37,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,300,1440.000000,37,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,780,1440.000000,37,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,947,1467.010000,38,0,612.810500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,293,1473.010000,38,0,615.210500,extended,nbiot,60 -on9,0,0,24,1,0,633,1453.010000,38,0,607.210500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,319,1440.000000,38,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,38,0,732.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,803,1443.010000,39,0,603.210500,extended,nbiot,60 -on4,0,0,24,1,0,926,1446.010000,39,0,604.410500,extended,nbiot,60 -on0,1,5,24,0,0,0,1460.020000,39,0,753.021000,extended,nbiot,60 -on5,0,0,23,1,0,468,1468.010000,39,0,613.210500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,441,1441.020000,39,0,602.414500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,18,1440.000000,39,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,39,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,260,1440.010000,40,0,602.010500,extended,nbiot,60 -on7,0,0,24,1,0,468,1468.010000,40,0,613.210500,extended,nbiot,60 -on10,0,0,24,1,0,120,1440.000000,40,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,540,1440.000000,40,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,744,1444.010000,40,0,603.610500,extended,nbiot,60 -on0,1,7,24,0,0,0,1447.020000,40,0,818.021000,extended,nbiot,60 -on1,0,0,24,1,0,1380,1440.000000,40,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,1177,1457.010000,40,0,608.810500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,40,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,16,1440.000000,41,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,720,1440.000000,41,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1476.020000,41,0,720.421000,extended,nbiot,60 -on4,0,0,24,1,0,240,1440.000000,41,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,145,1445.010000,41,0,604.010500,extended,nbiot,60 -on6,0,0,24,1,0,240,1440.000000,42,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1470.030000,42,0,734.931500,extended,nbiot,60 -on11,0,0,24,1,0,960,1440.000000,42,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,480,1440.000000,42,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,0,1440.000000,42,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,99,1459.010000,42,0,609.610500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,362,1440.000000,43,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,300,1440.000000,43,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,38,1458.010000,43,0,609.210500,extended,nbiot,60 -on6,0,0,24,1,0,1140,1440.000000,43,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,845,1440.000000,43,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1432,1472.010000,43,0,614.810500,extended,nbiot,60 -on0,1,6,24,0,0,0,1448.010000,43,0,799.560500,extended,nbiot,60 -on0,1,6,24,0,0,0,1458.010000,44,0,793.160500,extended,nbiot,60 -on10,0,0,24,1,0,60,1440.000000,44,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,420,1440.000000,44,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1080,1440.000000,44,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,998,1458.010000,44,0,609.210500,extended,nbiot,60 -on9,0,0,24,1,0,540,1440.000000,44,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,44,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,653,1473.010000,44,0,615.210500,extended,nbiot,60 -on4,0,0,24,1,0,1336,1440.000000,45,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1460.020000,45,0,831.021000,extended,nbiot,60 -on2,0,0,24,1,0,360,1440.000000,45,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,547,1440.000000,45,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,85,1445.010000,45,0,604.010500,extended,nbiot,60 -on8,0,0,24,1,0,556,1440.000000,45,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1125,1465.010000,45,0,612.010500,extended,nbiot,60 -on3,0,0,24,1,0,625,1445.010000,45,0,604.010500,extended,nbiot,60 -on0,1,7,24,0,0,0,1476.030000,46,0,813.381500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,87,1447.010000,46,0,604.810500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,1200,1440.000000,46,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,478,1478.010000,46,0,617.210500,extended,nbiot,60 -on3,0,0,24,1,0,976,1440.000000,46,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,480,1440.000000,46,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,905,1440.000000,46,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,981,1441.020000,46,0,602.414500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,420,1440.000000,47,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,960,1440.000000,47,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,300,1440.000000,47,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1499.020000,47,0,788.771000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1009,1469.010000,47,0,613.610500,extended,nbiot,60 -on10,0,0,24,1,0,811,1451.010000,47,0,606.410500,extended,nbiot,60 -on7,0,0,24,1,0,262,1442.010000,47,0,602.810500,extended,nbiot,60 -on2,0,0,24,1,0,765,1465.010000,48,0,612.010500,extended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,48,0,723.550000,extended,nbiot,60 -on6,0,0,24,1,0,940,1460.010000,48,0,610.010500,extended,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,48,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,188,1440.000000,48,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,677,1440.000000,49,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,1286,1446.010000,49,0,604.410500,extended,nbiot,60 -on0,1,6,24,0,0,0,1494.020000,49,0,803.671000,extended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,49,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,49,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,427,1440.000000,49,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1140,1440.000000,49,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,900,1440.000000,50,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1473.020000,50,0,862.871000,extended,nbiot,60 -on2,0,0,24,1,0,24,1444.010000,50,0,603.610500,extended,nbiot,60 -on3,0,0,24,1,0,1080,1440.000000,50,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,725,1440.000000,50,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,480,1440.000000,50,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,45,1465.010000,50,0,612.010500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1140,1440.000000,50,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,120,1440.000000,50,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1200,1440.000000,51,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,180,1440.000000,51,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1502.020000,51,0,820.521000,extended,nbiot,60 -on6,0,0,24,1,0,717,1477.010000,51,0,616.810500,extended,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,51,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,1355,1455.010000,51,0,608.010500,extended,nbiot,60 -on11,0,0,24,1,0,929,1449.010000,51,0,605.610500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,1080,1440.000000,51,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,52,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,0,1440.000000,52,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,540,1440.000000,52,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1456.020000,52,0,784.571000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1360,1460.010000,52,0,610.010500,extended,nbiot,60 -on11,0,0,24,1,0,297,1477.010000,52,0,616.810500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,730,1440.000000,52,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,53,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,420,1440.000000,53,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,240,1440.000000,53,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,600,1440.000000,53,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1068,1468.010000,53,0,613.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1519.040000,53,0,783.792000,extended,nbiot,60 -on1,0,0,24,1,0,245,1440.000000,53,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,0,1440.000000,54,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,457,1457.010000,54,0,608.810500,extended,nbiot,60 -on3,0,0,24,1,0,720,1440.000000,54,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1054,1454.020000,54,0,607.614500,extended,nbiot,60 -on9,0,0,24,1,0,1073,1473.010000,54,0,615.210500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1474.030000,54,0,772.931500,extended,nbiot,60 -on1,0,0,24,1,0,780,1440.000000,54,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,55,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,1080,1440.000000,55,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,960,1440.000000,55,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,401,1461.010000,55,0,610.410500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,540,1440.000000,55,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1488.020000,55,0,759.671000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1200,1440.000000,56,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on0,1,1,24,0,0,0,1449.010000,56,0,605.610500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,524,1464.010000,57,0,611.610500,extended,nbiot,60 -on0,1,4,24,0,0,0,1445.010000,57,0,721.010500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1165,1445.010000,57,0,604.010500,extended,nbiot,60 -on7,0,0,24,1,0,420,1440.000000,57,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,570,1450.010000,57,0,606.010500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,57,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,55,1475.020000,58,0,616.014500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,9,1440.000000,58,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,600,1440.000000,58,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1464.030000,58,0,741.631500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1068,1468.010000,58,0,613.210500,extended,nbiot,60 -on6,0,0,24,1,0,865,1445.010000,58,0,604.010500,extended,nbiot,60 -on8,0,0,24,1,0,0,1440.000000,59,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,1200,1440.000000,59,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,888,1468.010000,59,0,613.210500,extended,nbiot,60 -on10,0,0,24,1,0,360,1440.000000,59,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1483.040000,59,0,801.892000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1080,1440.000000,59,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,540,1440.000000,59,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,240,1440.000000,59,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,77,1440.000000,60,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,118,1478.010000,60,0,617.210500,extended,nbiot,60 -on2,0,0,24,1,0,1140,1440.000000,60,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,480,1440.000000,60,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,765,1465.010000,60,0,612.010500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1475.030000,60,0,740.181500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,60,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,584,1464.020000,61,0,611.614500,extended,nbiot,60 -on10,0,0,24,1,0,488,1440.000000,61,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,660,1440.000000,61,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,60,1440.000000,61,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1480.030000,61,0,742.181500,extended,nbiot,60 -on2,0,0,24,1,0,589,1469.010000,61,0,613.610500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,951,1471.010000,62,0,614.410500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1423,1463.010000,62,0,611.210500,extended,nbiot,60 -on6,0,0,24,1,0,1096,1440.000000,62,0,602.006500,extended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,62,0,732.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,75,1440.000000,62,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1167,1447.010000,63,0,604.810500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,581,1461.010000,63,0,610.410500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1501.040000,63,0,821.442000,extended,nbiot,60 -on6,0,0,24,1,0,360,1440.000000,63,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,600,1440.000000,63,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,280,1460.010000,63,0,610.010500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,63,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1320,1440.000000,63,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,1080,1440.000000,63,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1504.030000,64,0,788.831500,extended,nbiot,60 -on8,0,0,24,1,0,240,1440.000000,64,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,540,1440.000000,64,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,180,1440.000000,64,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,64,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,900,1440.000000,64,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,543,1440.000000,64,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,300,1440.000000,65,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1080,1440.000000,65,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,63,1440.000000,65,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1479.040000,65,0,773.642000,extended,nbiot,60 -on11,0,0,24,1,0,221,1461.010000,65,0,610.410500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,900,1440.000000,65,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,65,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,480,1440.000000,65,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,60,1440.000000,66,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,240,1440.000000,66,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,66,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,421,1440.000000,66,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,125,1440.000000,66,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,1375,1475.010000,66,0,616.010500,extended,nbiot,60 -on4,0,0,24,1,0,120,1440.000000,66,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1519.040000,66,0,858.542000,extended,nbiot,60 -on8,0,0,24,1,0,1225,1445.010000,66,0,604.010500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,66,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,900,1440.000000,66,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1153,1440.000000,67,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,43,1463.010000,67,0,611.210500,extended,nbiot,60 -on5,0,0,24,1,0,960,1440.000000,67,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1533.050000,67,0,855.702500,extended,nbiot,60 -on6,0,0,24,1,0,300,1440.000000,67,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,32,1452.020000,67,0,606.814500,extended,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,67,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,540,1440.000000,67,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,167,1467.010000,67,0,612.810500,extended,nbiot,60 -on7,0,0,24,1,0,0,1440.000000,68,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,500,1440.010000,68,0,602.010500,extended,nbiot,60 -on10,0,0,24,1,0,990,1450.010000,68,0,606.010500,extended,nbiot,60 -on1,0,0,24,1,0,1200,1440.000000,68,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,1260,1440.000000,68,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1449.010000,68,0,829.210500,extended,nbiot,60 -on11,0,0,24,1,0,390,1450.010000,68,0,606.010500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1340,1440.010000,68,0,602.010500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,68,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,319,1440.000000,69,0,602.006500,extended,nbiot,60 -on0,1,3,24,0,0,0,1442.010000,69,0,680.810500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,240,1440.000000,69,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,471,1471.010000,69,0,614.410500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,540,1440.000000,70,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,70,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,420,1440.000000,70,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1356,1456.010000,70,0,608.410500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1450.010000,70,0,785.410500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,787,1440.000000,70,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,35,1455.010000,70,0,608.010500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,213,1453.010000,71,0,607.210500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,60,1440.000000,71,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,480,1440.000000,71,0,602.006500,extended,nbiot,60 -on0,1,4,24,0,0,0,1479.020000,71,0,720.321000,extended,nbiot,60 -on3,0,0,24,1,0,540,1440.000000,71,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,71,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,853,1440.000000,72,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1262,1440.000000,72,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,385,1445.010000,72,0,604.010500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,extended,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,72,0,693.000000,extended,nbiot,60 -on5,0,0,24,1,0,1020,1440.000000,73,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,0,1440.000000,73,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,174,1474.010000,73,0,615.610500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1496.020000,73,0,728.421000,extended,nbiot,60 -on9,0,0,24,1,0,1353,1453.010000,73,0,607.210500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,447,1447.010000,74,0,604.810500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1482.020000,74,0,743.621000,extended,nbiot,60 -on2,0,0,24,1,0,1140,1440.000000,74,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1020,1440.000000,74,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,960,1440.000000,74,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,74,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,74,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,816,1456.020000,75,0,608.414500,extended,nbiot,60 -on10,0,0,24,1,0,1220,1440.010000,75,0,602.010500,extended,nbiot,60 -on4,0,0,24,1,0,995,1455.010000,75,0,608.010500,extended,nbiot,60 -on3,0,0,24,1,0,479,1479.010000,75,0,617.610500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,790,1440.000000,75,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,300,1440.000000,75,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,120,1440.000000,75,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,600,1440.000000,75,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1503.040000,75,0,853.442000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,85,1445.010000,76,0,604.010500,extended,nbiot,60 -on3,0,0,24,1,0,1139,1479.010000,76,0,617.610500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,993,1453.010000,76,0,607.210500,extended,nbiot,60 -on1,0,0,24,1,0,1075,1475.010000,76,0,616.010500,extended,nbiot,60 -on9,0,0,24,1,0,574,1454.010000,76,0,607.610500,extended,nbiot,60 -on0,1,7,24,0,0,0,1460.020000,76,0,831.021000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,661,1440.000000,76,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,703,1463.020000,76,0,611.214500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,8,1440.000000,77,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,60,1440.000000,77,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1320,1440.000000,77,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1385,1440.000000,77,0,602.006500,extended,nbiot,60 -on0,1,4,24,0,0,0,1465.010000,77,0,725.760500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,913,1440.000000,78,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,757,1457.010000,78,0,608.810500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1260,1440.000000,78,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,627,1447.010000,78,0,604.810500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1424,1464.010000,78,0,611.610500,extended,nbiot,60 -on0,1,5,24,0,0,0,1450.010000,78,0,762.010500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,120,1440.000000,79,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,660,1440.000000,79,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,724,1440.000000,79,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,1200,1440.000000,79,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1206,1440.000000,79,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,79,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1508.030000,79,0,757.281500,extended,nbiot,60 -on9,0,0,24,1,0,619,1440.000000,80,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1538.050000,80,0,784.252500,extended,nbiot,60 -on2,0,0,24,1,0,180,1440.000000,80,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1200,1440.000000,80,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,152,1452.010000,80,0,606.810500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,607,1440.000000,80,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,480,1440.000000,80,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,630,1450.010000,81,0,606.010500,extended,nbiot,60 -on8,0,0,24,1,0,154,1454.010000,81,0,607.610500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,nbiot,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,extended,nbiot,60 -on9,0,0,24,1,0,382,1442.010000,81,0,602.810500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,81,0,732.000000,extended,nbiot,60 -on2,0,0,24,1,0,1291,1451.010000,81,0,606.410500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,446,1446.010000,82,0,604.410500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,705,1465.010000,82,0,612.010500,extended,nbiot,60 -on4,0,0,24,1,0,1200,1440.000000,82,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,180,1440.000000,82,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,82,0,767.750000,extended,nbiot,60 -on2,0,0,24,1,0,275,1455.010000,82,0,608.010500,extended,nbiot,60 -on6,0,0,24,1,0,84,1444.010000,83,0,603.610500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,83,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1080,1440.000000,83,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,720,1440.000000,83,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1038,1440.000000,83,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,18,1440.000000,83,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,1320,1440.000000,83,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1518.040000,83,0,867.242000,extended,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,83,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,120,1440.000000,83,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,900,1440.000000,84,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,659,1479.010000,84,0,617.610500,extended,nbiot,60 -on2,0,0,24,1,0,340,1460.010000,84,0,610.010500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,442,1442.010000,84,0,602.810500,extended,nbiot,60 -on4,0,0,24,1,0,780,1440.000000,84,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,60,1440.000000,84,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1488.030000,84,0,790.231500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,84,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,596,1476.010000,85,0,616.410500,extended,nbiot,60 -on8,0,0,24,1,0,669,1440.000000,85,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1024,1440.000000,85,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,1071,1471.010000,85,0,614.410500,extended,nbiot,60 -on0,1,5,24,0,0,0,1490.030000,85,0,752.031500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1320,1440.000000,85,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1497.020000,86,0,884.821000,extended,nbiot,60 -on2,0,0,24,1,0,660,1440.000000,86,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,425,1440.000000,86,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,831,1471.010000,86,0,614.410500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1320,1440.000000,86,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,86,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,588,1468.010000,86,0,613.210500,extended,nbiot,60 -on5,0,0,24,1,0,262,1442.010000,86,0,602.810500,extended,nbiot,60 -on3,0,0,24,1,0,997,1457.010000,86,0,608.810500,extended,nbiot,60 -on11,0,0,24,1,0,368,1440.000000,86,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,1161,1441.010000,87,0,602.410500,extended,nbiot,60 -on1,0,0,24,1,0,932,1452.010000,87,0,606.810500,extended,nbiot,60 -on4,0,0,24,1,0,1397,1440.000000,87,0,602.006500,extended,nbiot,60 -on0,1,10,24,0,0,0,1554.040000,87,0,957.042000,extended,nbiot,60 -on8,0,0,24,1,0,660,1440.000000,87,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,300,1440.000000,87,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,60,1440.000000,87,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,322,1442.010000,87,0,602.810500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,58,1478.010000,87,0,617.210500,extended,nbiot,60 -on9,0,0,24,1,0,384,1444.010000,87,0,603.610500,extended,nbiot,60 -on5,0,0,24,1,0,540,1440.000000,87,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,551,1440.000000,88,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,0,1440.000000,88,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1505.040000,88,0,809.392000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,379,1440.000000,88,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,192,1440.000000,88,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,88,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,480,1440.000000,88,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,88,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,980,1440.020000,89,0,602.014500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,120,1440.000000,89,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,24,1444.010000,89,0,603.610500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,89,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,960,1440.000000,89,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1515.040000,89,0,749.042000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,510,1450.010000,90,0,606.010500,extended,nbiot,60 -on8,0,0,24,1,0,1380,1440.000000,90,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1019,1479.010000,90,0,617.610500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1264,1440.000000,90,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,360,1440.000000,90,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1460.010000,90,0,754.960500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,90,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1320,1440.000000,91,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1481.020000,91,0,747.771000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,240,1440.000000,91,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,420,1440.000000,91,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,354,1474.010000,91,0,615.610500,extended,nbiot,60 -on8,0,0,24,1,0,1140,1440.000000,91,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,480,1440.000000,92,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on0,1,3,24,0,0,0,1490.020000,92,0,687.021000,extended,nbiot,60 -on11,0,0,24,1,0,634,1454.010000,92,0,607.610500,extended,nbiot,60 -on1,0,0,24,1,0,1020,1440.000000,92,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,92,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,600,1440.000000,93,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,508,1448.010000,93,0,605.210500,extended,nbiot,60 -on7,0,0,24,1,0,120,1440.000000,93,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,244,1440.000000,93,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,60,1440.000000,93,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,93,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1500.020000,93,0,823.621000,extended,nbiot,60 -on8,0,0,24,1,0,1001,1461.010000,93,0,610.410500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,780,1440.000000,94,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,349,1469.010000,94,0,613.610500,extended,nbiot,60 -on2,0,0,24,1,0,629,1449.010000,94,0,605.610500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,300,1440.000000,94,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1479.020000,94,0,717.071000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,326,1446.010000,95,0,604.410500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,540,1440.000000,95,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,1432,1472.010000,95,0,614.810500,extended,nbiot,60 -on0,1,7,24,0,0,0,1470.020000,95,0,823.971000,extended,nbiot,60 -on4,0,0,24,1,0,0,1440.000000,95,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1020,1440.000000,95,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,95,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,96,1456.010000,95,0,608.410500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,96,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,1203,1440.000000,96,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,1095,1440.000000,96,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,599,1479.010000,96,0,617.610500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,0,1440.000000,96,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1460.020000,96,0,769.271000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1138,1478.020000,96,0,617.214500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1196,1476.010000,97,0,616.410500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,420,1440.000000,97,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,298,1478.010000,97,0,617.210500,extended,nbiot,60 -on8,0,0,24,1,0,1080,1440.000000,97,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,60,1440.000000,97,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1478.010000,97,0,845.360500,extended,nbiot,60 -on7,0,0,24,1,0,56,1476.010000,97,0,616.410500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,753,1453.010000,97,0,607.210500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1260,1440.000000,98,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,786,1440.000000,98,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,1020,1440.000000,98,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1382,1440.000000,98,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1515.030000,98,0,801.031500,extended,nbiot,60 -on1,0,0,24,1,0,983,1443.010000,98,0,603.210500,extended,nbiot,60 -on3,0,0,24,1,0,600,1440.000000,98,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,36,1456.020000,99,0,608.414500,extended,nbiot,60 -on8,0,0,24,1,0,0,1440.000000,99,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,83,1443.010000,99,0,603.210500,extended,nbiot,60 -on2,0,0,24,1,0,780,1440.000000,99,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,180,1440.000000,99,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,240,1440.000000,99,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,660,1440.000000,99,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,489,1440.000000,99,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,420,1440.000000,99,0,602.006500,extended,nbiot,60 -on0,1,10,24,0,0,0,1541.060000,99,0,920.013000,extended,nbiot,60 -on9,0,0,24,1,0,647,1467.010000,99,0,612.810500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,1340,1440.010000,100,0,602.010500,extended,nbiot,60 -on2,0,0,24,1,0,920,1440.010000,100,0,602.010500,extended,nbiot,60 -on8,0,0,24,1,0,600,1440.000000,100,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1459.010000,100,0,765.610500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,195,1440.000000,100,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,129,1440.000000,100,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1491.020000,101,0,726.421000,extended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,101,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,103,1463.010000,101,0,611.210500,extended,nbiot,60 -on9,0,0,24,1,0,207,1447.010000,101,0,604.810500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,960,1440.000000,101,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,874,1454.010000,102,0,607.610500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,737,1440.000000,102,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,102,0,693.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1282,1442.010000,102,0,602.810500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,728,1440.000000,103,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,382,1442.010000,103,0,602.810500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1475.020000,103,0,798.021000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,103,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1200,1440.000000,103,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,600,1440.000000,103,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,527,1467.010000,103,0,612.810500,extended,nbiot,60 -on11,0,0,24,1,0,1367,1467.010000,103,0,612.810500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,407,1467.010000,104,0,612.810500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1460.020000,104,0,820.621000,extended,nbiot,60 -on8,0,0,24,1,0,262,1442.010000,104,0,602.810500,extended,nbiot,60 -on7,0,0,24,1,0,1020,1440.000000,104,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,904,1440.000000,104,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,406,1466.020000,104,0,612.414500,extended,nbiot,60 -on2,0,0,24,1,0,235,1475.010000,104,0,616.010500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,833,1473.010000,104,0,615.210500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,480,1440.000000,105,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,180,1440.000000,105,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1524.030000,105,0,726.631500,extended,nbiot,60 -on10,0,0,24,1,0,1380,1440.000000,105,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1361,1461.010000,105,0,610.410500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,780,1440.000000,106,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,240,1440.000000,106,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,1069,1469.010000,106,0,613.610500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,35,1455.010000,106,0,608.010500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,106,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1140,1440.000000,106,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,86,1446.010000,106,0,604.410500,extended,nbiot,60 -on10,0,0,24,1,0,787,1440.000000,106,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1515.040000,106,0,827.042000,extended,nbiot,60 -on1,0,0,24,1,0,300,1440.000000,107,0,602.006500,extended,nbiot,60 -on0,1,4,24,0,0,0,1453.010000,107,0,724.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,494,1440.000000,107,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1351,1451.010000,107,0,606.410500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,1175,1455.010000,107,0,608.010500,extended,nbiot,60 -on7,0,0,24,1,0,420,1440.000000,108,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,374,1440.000000,108,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1485.030000,108,0,750.031500,extended,nbiot,60 -on10,0,0,24,1,0,144,1444.010000,108,0,603.610500,extended,nbiot,60 -on9,0,0,24,1,0,772,1472.010000,108,0,614.810500,extended,nbiot,60 -on8,0,0,24,1,0,366,1440.000000,108,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,335,1455.010000,109,0,608.010500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1473.010000,109,0,727.660500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,109,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,625,1445.010000,109,0,604.010500,extended,nbiot,60 -on3,0,0,24,1,0,120,1440.000000,109,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1488.020000,110,0,796.721000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,476,1476.010000,110,0,616.410500,extended,nbiot,60 -on3,0,0,24,1,0,27,1447.010000,110,0,604.810500,extended,nbiot,60 -on10,0,0,24,1,0,720,1440.000000,110,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,480,1440.000000,110,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,960,1440.000000,110,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,62,1440.000000,110,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1444.010000,111,0,786.910500,extended,nbiot,60 -on4,0,0,24,1,0,480,1440.000000,111,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,400,1460.010000,111,0,610.010500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,798,1440.000000,111,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1052,1452.010000,111,0,606.810500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,111,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,966,1440.000000,111,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1397,1440.000000,112,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1493.020000,112,0,844.221000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,37,1457.010000,112,0,608.810500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,660,1440.000000,112,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,1163,1443.010000,112,0,603.210500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,815,1455.010000,112,0,608.010500,extended,nbiot,60 -on5,0,0,24,1,0,1289,1449.010000,112,0,605.610500,extended,nbiot,60 -on7,0,0,24,1,0,300,1440.000000,112,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,900,1440.000000,113,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,420,1440.000000,113,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on0,1,3,24,0,0,0,1471.020000,113,0,679.421000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,788,1440.000000,113,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,680,1440.010000,114,0,602.010500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,114,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,360,1440.000000,114,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,364,1440.000000,114,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,844,1440.000000,114,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,780,1440.000000,114,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1488.030000,114,0,786.981500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1482.030000,115,0,784.581500,extended,nbiot,60 -on10,0,0,24,1,0,531,1471.010000,115,0,614.410500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,935,1455.010000,115,0,608.010500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,600,1440.000000,115,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,115,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,240,1440.000000,115,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,201,1441.020000,115,0,602.414500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1260,1440.000000,116,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1519.040000,116,0,789.642000,extended,nbiot,60 -on2,0,0,24,1,0,540,1440.000000,116,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,1080,1440.000000,116,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,607,1440.000000,116,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,660,1440.000000,116,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,94,1454.010000,116,0,607.610500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,900,1440.000000,117,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,60,1440.000000,117,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1480.030000,117,0,697.981500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1020,1440.000000,117,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,360,1440.000000,117,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1371,1471.020000,118,0,614.414500,extended,nbiot,60 -on6,0,0,24,1,0,1212,1440.000000,118,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1327,1440.000000,118,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,480,1440.000000,118,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,180,1440.000000,118,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1414,1454.010000,118,0,607.610500,extended,nbiot,60 -on0,1,7,24,0,0,0,1464.030000,118,0,815.081500,extended,nbiot,60 -on5,0,0,24,1,0,360,1440.000000,118,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,1218,1440.000000,119,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,1020,1440.000000,119,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,300,1440.000000,119,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,360,1440.000000,119,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,900,1440.000000,119,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,39,1459.010000,119,0,609.610500,extended,nbiot,60 -on7,0,0,24,1,0,1319,1479.010000,119,0,617.610500,extended,nbiot,60 -on0,1,10,24,0,0,0,1568.040000,119,0,952.242000,extended,nbiot,60 -on11,0,0,24,1,0,1200,1440.000000,119,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,1380,1440.000000,119,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,824,1464.010000,119,0,611.610500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,607,1440.000000,120,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,491,1440.000000,120,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,420,1440.000000,120,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,491,1440.000000,120,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,780,1440.000000,120,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1479.030000,120,0,738.531500,extended,nbiot,60 -on8,0,0,24,1,0,240,1440.000000,121,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1329,1440.000000,121,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,660,1440.000000,121,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,120,1440.000000,121,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,778,1478.010000,121,0,617.210500,extended,nbiot,60 -on5,0,0,24,1,0,836,1476.020000,121,0,616.414500,extended,nbiot,60 -on0,1,7,24,0,0,0,1475.030000,121,0,813.631500,extended,nbiot,60 -on4,0,0,24,1,0,1265,1440.000000,121,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1140,1440.000000,122,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1475.020000,122,0,757.071000,extended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,122,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,322,1442.010000,122,0,602.810500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,833,1473.010000,122,0,615.210500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,120,1440.000000,122,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,318,1440.000000,123,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,240,1440.000000,123,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,795,1440.000000,123,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,535,1475.010000,123,0,616.010500,extended,nbiot,60 -on10,0,0,24,1,0,431,1440.000000,123,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1455.010000,123,0,764.010500,extended,nbiot,60 -on1,0,0,24,1,0,1131,1471.010000,124,0,614.410500,extended,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,124,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,600,1440.000000,124,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,124,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,480,1440.000000,124,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,563,1443.010000,124,0,603.210500,extended,nbiot,60 -on8,0,0,24,1,0,0,1440.000000,124,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,300,1440.000000,124,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,124,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1491.030000,124,0,853.831500,extended,nbiot,60 -on4,0,0,24,1,0,1380,1440.000000,124,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,32,1452.010000,125,0,606.810500,extended,nbiot,60 -on2,0,0,24,1,0,212,1452.010000,125,0,606.810500,extended,nbiot,60 -on8,0,0,24,1,0,809,1449.010000,125,0,605.610500,extended,nbiot,60 -on3,0,0,24,1,0,900,1440.000000,125,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,600,1440.000000,125,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1478.010000,125,0,764.110500,extended,nbiot,60 -on9,0,0,24,1,0,424,1440.000000,126,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,278,1458.010000,126,0,609.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,126,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,180,1440.000000,126,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1456.020000,126,0,868.421000,extended,nbiot,60 -on6,0,0,24,1,0,607,1440.000000,126,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,327,1447.010000,126,0,604.810500,extended,nbiot,60 -on3,0,0,24,1,0,130,1440.000000,126,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,660,1440.000000,126,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,1106,1446.010000,126,0,604.410500,extended,nbiot,60 -on4,0,0,24,1,0,0,1440.000000,127,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1517.040000,127,0,820.692000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,411,1471.010000,127,0,614.410500,extended,nbiot,60 -on11,0,0,24,1,0,960,1440.000000,127,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,0,1440.000000,127,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,375,1440.000000,127,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,554,1440.000000,127,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,294,1474.010000,127,0,615.610500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,614,1440.000000,128,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1324,1440.000000,128,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,960,1440.000000,128,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,209,1449.010000,128,0,605.610500,extended,nbiot,60 -on2,0,0,24,1,0,303,1440.000000,128,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,128,0,764.500000,extended,nbiot,60 -on1,0,0,24,1,0,276,1456.010000,129,0,608.410500,extended,nbiot,60 -on0,1,7,24,0,0,0,1499.030000,129,0,832.981500,extended,nbiot,60 -on4,0,0,24,1,0,712,1472.010000,129,0,614.810500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,779,1479.010000,129,0,617.610500,extended,nbiot,60 -on3,0,0,24,1,0,945,1465.010000,129,0,612.010500,extended,nbiot,60 -on10,0,0,24,1,0,16,1440.000000,129,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,300,1440.000000,129,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,732,1440.000000,129,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,686,1446.010000,130,0,604.410500,extended,nbiot,60 -on3,0,0,24,1,0,360,1440.000000,130,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,322,1442.010000,130,0,602.810500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,130,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,660,1440.000000,130,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,594,1474.010000,130,0,615.610500,extended,nbiot,60 -on5,0,0,24,1,0,179,1479.010000,130,0,617.610500,extended,nbiot,60 -on0,1,8,24,0,0,0,1514.030000,130,0,870.181500,extended,nbiot,60 -on1,0,0,24,1,0,862,1442.010000,130,0,602.810500,extended,nbiot,60 -on2,0,0,24,1,0,1200,1440.000000,130,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,987,1447.010000,131,0,604.810500,extended,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,131,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,720,1440.000000,131,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,98,1458.010000,131,0,609.210500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,360,1440.000000,131,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1485.030000,131,0,750.031500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1471.040000,132,0,809.442000,extended,nbiot,60 -on4,0,0,24,1,0,1380,1440.000000,132,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,277,1457.010000,132,0,608.810500,extended,nbiot,60 -on11,0,0,24,1,0,634,1454.010000,132,0,607.610500,extended,nbiot,60 -on7,0,0,24,1,0,60,1440.000000,132,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1046,1446.020000,132,0,604.414500,extended,nbiot,60 -on6,0,0,24,1,0,1031,1440.000000,132,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,159,1459.010000,132,0,609.610500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,58,1478.010000,133,0,617.210500,extended,nbiot,60 -on10,0,0,24,1,0,540,1440.000000,133,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,3,1440.000000,133,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,120,1440.000000,133,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,480,1440.000000,133,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,100,1460.010000,133,0,610.010500,extended,nbiot,60 -on0,1,8,24,0,0,0,1460.020000,133,0,840.771000,extended,nbiot,60 -on9,0,0,24,1,0,865,1445.010000,133,0,604.010500,extended,nbiot,60 -on2,0,0,24,1,0,634,1454.010000,133,0,607.610500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,134,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,134,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,840,1440.000000,134,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,120,1440.000000,134,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,240,1440.000000,134,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,710,1470.010000,134,0,614.010500,extended,nbiot,60 -on5,0,0,24,1,0,1200,1440.000000,134,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,1109,1449.010000,134,0,605.610500,extended,nbiot,60 -on8,0,0,24,1,0,720,1440.000000,134,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,600,1440.000000,134,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1498.040000,134,0,852.092000,extended,nbiot,60 -on0,1,8,24,0,0,0,1546.060000,135,0,852.463000,extended,nbiot,60 -on6,0,0,24,1,0,277,1457.020000,135,0,608.814500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1020,1440.000000,135,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,1228,1448.010000,135,0,605.210500,extended,nbiot,60 -on7,0,0,24,1,0,240,1440.000000,135,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,840,1440.000000,135,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,831,1471.010000,135,0,614.410500,extended,nbiot,60 -on8,0,0,24,1,0,420,1440.000000,135,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,480,1440.000000,135,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,0,1440.000000,136,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,649,1469.010000,136,0,613.610500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,136,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,86,1446.010000,136,0,604.410500,extended,nbiot,60 -on4,0,0,24,1,0,989,1449.010000,136,0,605.610500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1466.020000,136,0,755.421000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,137,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,660,1440.000000,137,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,900,1440.000000,137,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,610,1440.000000,137,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,360,1440.000000,137,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,120,1440.000000,137,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1567.050000,137,0,853.702500,extended,nbiot,60 -on11,0,0,24,1,0,1380,1440.000000,137,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,420,1440.000000,137,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,138,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,671,1440.000000,138,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,84,1444.010000,138,0,603.610500,extended,nbiot,60 -on4,0,0,24,1,0,732,1440.000000,138,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1460.020000,138,0,750.421000,extended,nbiot,60 -on11,0,0,24,1,0,694,1454.020000,138,0,607.614500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1511.030000,139,0,826.081500,extended,nbiot,60 -on3,0,0,24,1,0,1380,1440.000000,139,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,1200,1440.000000,139,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,37,1457.010000,139,0,608.810500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,977,1440.000000,139,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,1140,1440.000000,139,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,282,1462.010000,139,0,610.810500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,360,1440.000000,139,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1080,1440.000000,140,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,274,1454.010000,140,0,607.610500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,600,1440.000000,140,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,120,1440.000000,140,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,76,1440.000000,140,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1472.020000,140,0,792.271000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,140,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,713,1473.010000,140,0,615.210500,extended,nbiot,60 -on3,0,0,24,1,0,300,1440.000000,141,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,599,1479.010000,141,0,617.610500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1462.010000,141,0,722.610500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,974,1440.000000,141,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,120,1440.000000,141,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,720,1440.000000,142,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,924,1444.010000,142,0,603.610500,extended,nbiot,60 -on3,0,0,24,1,0,95,1455.010000,142,0,608.010500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,300,1440.000000,142,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,900,1440.000000,142,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1480.020000,142,0,758.421000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,300,1440.000000,143,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,360,1440.000000,143,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1506.060000,143,0,758.463000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,498,1440.000000,143,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1200,1440.000000,143,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,660,1440.000000,143,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,536,1476.020000,143,0,616.414500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,42,1462.010000,144,0,610.810500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1448.010000,144,0,712.460500,extended,nbiot,60 -on10,0,0,24,1,0,1310,1470.010000,144,0,614.010500,extended,nbiot,60 -on7,0,0,24,1,0,600,1440.000000,144,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,780,1440.000000,144,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,144,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,720,1440.000000,145,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,32,1452.010000,145,0,606.810500,extended,nbiot,60 -on8,0,0,24,1,0,300,1440.000000,145,0,602.006500,extended,nbiot,60 -on0,1,9,24,0,0,0,1473.040000,145,0,886.942000,extended,nbiot,60 -on5,0,0,24,1,0,908,1440.000000,145,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,145,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,539,1479.010000,145,0,617.610500,extended,nbiot,60 -on4,0,0,24,1,0,936,1456.020000,145,0,608.414500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,433,1440.000000,145,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,145,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1185,1465.010000,145,0,612.010500,extended,nbiot,60 -on0,1,8,24,0,0,0,1502.040000,146,0,836.142000,extended,nbiot,60 -on5,0,0,24,1,0,480,1440.000000,146,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,146,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1080,1440.000000,146,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1341,1441.010000,146,0,602.410500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,360,1440.000000,146,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,220,1460.010000,146,0,610.010500,extended,nbiot,60 -on3,0,0,24,1,0,188,1440.000000,146,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1076,1476.010000,146,0,616.410500,extended,nbiot,60 -on4,0,0,24,1,0,969,1440.000000,147,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,455,1455.010000,147,0,608.010500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,1200,1440.000000,147,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,609,1440.000000,147,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1462.010000,147,0,727.810500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,611,1440.000000,148,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,180,1440.000000,148,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,2,1440.000000,148,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,26,1446.020000,148,0,604.414500,extended,nbiot,60 -on6,0,0,24,1,0,960,1440.000000,148,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,900,1440.000000,148,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,468,1468.010000,148,0,613.210500,extended,nbiot,60 -on0,1,8,24,0,0,0,1497.040000,148,0,858.842000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,743,1443.010000,148,0,603.210500,extended,nbiot,60 -on4,0,0,24,1,0,629,1449.010000,149,0,605.610500,extended,nbiot,60 -on2,0,0,24,1,0,1379,1479.010000,149,0,617.610500,extended,nbiot,60 -on6,0,0,24,1,0,538,1478.010000,149,0,617.210500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,149,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,285,1465.010000,149,0,612.010500,extended,nbiot,60 -on0,1,8,24,0,0,0,1474.010000,149,0,882.760500,extended,nbiot,60 -on10,0,0,24,1,0,1020,1440.000000,149,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,18,1440.000000,149,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,467,1467.010000,149,0,612.810500,extended,nbiot,60 -on5,0,0,24,1,0,240,1440.000000,149,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1178,1458.010000,150,0,609.210500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,19,1440.000000,150,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,455,1455.010000,150,0,608.010500,extended,nbiot,60 -on6,0,0,24,1,0,876,1456.010000,150,0,608.410500,extended,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,150,0,801.550000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,551,1440.000000,150,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,120,1440.000000,150,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,780,1440.000000,151,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,583,1463.010000,151,0,611.210500,extended,nbiot,60 -on11,0,0,24,1,0,1080,1440.000000,151,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,382,1442.010000,151,0,602.810500,extended,nbiot,60 -on2,0,0,24,1,0,660,1440.000000,151,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,720,1440.000000,151,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,600,1440.000000,151,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1532.040000,151,0,866.992000,extended,nbiot,60 -on1,0,0,24,1,0,420,1440.000000,151,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,0,1440.000000,152,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,960,1440.000000,152,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1100,1440.010000,152,0,602.010500,extended,nbiot,60 -on5,0,0,24,1,0,1055,1455.010000,152,0,608.010500,extended,nbiot,60 -on3,0,0,24,1,0,470,1470.010000,152,0,614.010500,extended,nbiot,60 -on4,0,0,24,1,0,60,1440.000000,152,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1477.020000,152,0,793.621000,extended,nbiot,60 -on1,0,0,24,1,0,600,1440.000000,153,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,840,1440.000000,153,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,805,1445.020000,153,0,604.014500,extended,nbiot,60 -on7,0,0,24,1,0,971,1440.000000,153,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,300,1440.000000,153,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1529.050000,153,0,856.702500,extended,nbiot,60 -on6,0,0,24,1,0,1380,1440.000000,153,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,811,1451.010000,153,0,606.410500,extended,nbiot,60 -on5,0,0,24,1,0,1290,1450.010000,153,0,606.010500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,153,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,480,1440.000000,154,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1219,1440.000000,154,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,extended,nbiot,60 -on0,1,3,24,0,0,0,1455.010000,154,0,686.010500,extended,nbiot,60 -on6,0,0,24,1,0,1066,1466.010000,154,0,612.410500,extended,nbiot,60 -on0,1,5,24,0,0,0,1462.020000,155,0,753.821000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,589,1469.010000,155,0,613.610500,extended,nbiot,60 -on7,0,0,24,1,0,1260,1440.000000,155,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,1101,1441.010000,155,0,602.410500,extended,nbiot,60 -on11,0,0,24,1,0,257,1440.000000,155,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,60,1440.000000,155,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,1320,1440.000000,156,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,156,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,74,1440.000000,156,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,600,1440.000000,156,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,1,1440.000000,156,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,180,1440.000000,156,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,440,1440.010000,156,0,602.010500,extended,nbiot,60 -on5,0,0,24,1,0,737,1440.000000,156,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1467.010000,156,0,874.760500,extended,nbiot,60 -on6,0,0,24,1,0,780,1440.000000,156,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,640,1460.010000,157,0,610.010500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,167,1467.010000,157,0,612.810500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,180,1440.000000,157,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,900,1440.000000,157,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,1061,1461.010000,157,0,610.410500,extended,nbiot,60 -on0,1,5,24,0,0,0,1496.020000,157,0,767.421000,extended,nbiot,60 -on10,0,0,24,1,0,540,1440.000000,158,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,508,1448.010000,158,0,605.210500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,459,1459.010000,158,0,609.610500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,840,1440.000000,158,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1464.010000,158,0,785.810500,extended,nbiot,60 -on9,0,0,24,1,0,240,1440.000000,158,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,206,1446.010000,158,0,604.410500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,807,1447.010000,159,0,604.810500,extended,nbiot,60 -on0,1,8,24,0,0,0,1480.040000,159,0,852.042000,extended,nbiot,60 -on6,0,0,24,1,0,284,1464.020000,159,0,611.614500,extended,nbiot,60 -on8,0,0,24,1,0,706,1466.010000,159,0,612.410500,extended,nbiot,60 -on7,0,0,24,1,0,156,1456.020000,159,0,608.414500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,155,1455.010000,159,0,608.010500,extended,nbiot,60 -on5,0,0,24,1,0,562,1442.010000,159,0,602.810500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1157,1440.000000,159,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,250,1440.000000,159,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,304,1440.000000,160,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,10,1440.000000,160,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,309,1440.000000,160,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,152,1452.010000,160,0,606.810500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1472.040000,160,0,770.842000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,480,1440.000000,160,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,360,1440.000000,160,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,180,1440.000000,161,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,247,1440.000000,161,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1568.040000,161,0,770.242000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,1200,1440.000000,161,0,602.006500,extended,nbiot,60 -on4,0,0,23,1,0,0,1432.000000,161,0,598.806500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,720,1440.000000,161,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,271,1451.010000,162,0,606.410500,extended,nbiot,60 -on5,0,0,24,1,0,180,1440.000000,162,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1020,1440.000000,162,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,480,1440.000000,162,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,1364,1464.010000,162,0,611.610500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,360,1440.000000,162,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1503.040000,162,0,809.892000,extended,nbiot,60 -on10,0,0,24,1,0,1260,1440.000000,162,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,943,1463.010000,163,0,611.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,85,1445.010000,163,0,604.010500,extended,nbiot,60 -on4,0,0,24,1,0,335,1455.010000,163,0,608.010500,extended,nbiot,60 -on3,0,0,24,1,0,1020,1440.000000,163,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1453.010000,163,0,841.210500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1183,1463.010000,163,0,611.210500,extended,nbiot,60 -on9,0,0,24,1,0,1352,1452.010000,163,0,606.810500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,366,1440.000000,163,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,99,1459.010000,164,0,609.610500,extended,nbiot,60 -on0,1,8,24,0,0,0,1482.030000,164,0,848.931500,extended,nbiot,60 -on11,0,0,24,1,0,681,1441.010000,164,0,602.410500,extended,nbiot,60 -on9,0,0,24,1,0,120,1440.000000,164,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,180,1440.000000,164,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1144,1440.000000,164,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,681,1441.020000,164,0,602.414500,extended,nbiot,60 -on5,0,0,24,1,0,420,1440.000000,164,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,571,1451.010000,164,0,606.410500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1491.020000,165,0,720.571000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,420,1440.000000,165,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,780,1440.000000,165,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,840,1440.000000,165,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,515,1455.010000,165,0,608.010500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,840,1440.000000,166,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1481.020000,166,0,829.671000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,420,1440.000000,166,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,960,1440.000000,166,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,283,1463.010000,166,0,611.210500,extended,nbiot,60 -on10,0,0,24,1,0,638,1458.010000,166,0,609.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,312,1440.000000,166,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,1156,1440.000000,166,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,154,1454.010000,167,0,607.610500,extended,nbiot,60 -on11,0,0,24,1,0,119,1479.010000,167,0,617.610500,extended,nbiot,60 -on4,0,0,24,1,0,533,1473.010000,167,0,615.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,167,0,732.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1371,1471.010000,167,0,614.410500,extended,nbiot,60 -on0,1,7,24,0,0,0,1525.030000,168,0,821.931500,extended,nbiot,60 -on5,0,0,24,1,0,180,1440.000000,168,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,716,1476.010000,168,0,616.410500,extended,nbiot,60 -on9,0,0,24,1,0,900,1440.000000,168,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,120,1440.000000,168,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,597,1477.010000,168,0,616.810500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,1140,1440.000000,168,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,840,1440.000000,168,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,1252,1472.010000,169,0,614.810500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,516,1456.010000,169,0,608.410500,extended,nbiot,60 -on5,0,0,24,1,0,205,1445.010000,169,0,604.010500,extended,nbiot,60 -on6,0,0,24,1,0,180,1440.000000,169,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,259,1440.000000,169,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1478.020000,169,0,821.971000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,360,1440.000000,169,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,600,1440.000000,169,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,221,1461.010000,170,0,610.410500,extended,nbiot,60 -on10,0,0,24,1,0,240,1440.000000,170,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,587,1467.010000,170,0,612.810500,extended,nbiot,60 -on6,0,0,24,1,0,480,1440.000000,170,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,170,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,426,1440.000000,170,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,1104,1444.010000,170,0,603.610500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1489.030000,170,0,866.681500,extended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,170,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,600,1440.000000,170,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,420,1440.000000,171,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,1178,1458.010000,171,0,609.210500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,221,1461.010000,171,0,610.410500,extended,nbiot,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,710,1470.010000,171,0,614.010500,extended,nbiot,60 -on11,0,0,24,1,0,405,1465.010000,171,0,612.010500,extended,nbiot,60 -on9,0,0,24,1,0,658,1478.010000,171,0,617.210500,extended,nbiot,60 -on5,0,0,24,1,0,434,1440.000000,171,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1469.020000,171,0,834.621000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,532,1472.010000,172,0,614.810500,extended,nbiot,60 -on9,0,0,24,1,0,265,1445.010000,172,0,604.010500,extended,nbiot,60 -on0,1,7,24,0,0,0,1480.040000,172,0,800.042000,extended,nbiot,60 -on1,0,0,24,1,0,1320,1440.000000,172,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,120,1440.000000,172,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1260,1440.000000,172,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1020,1440.000000,172,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,258,1440.000000,172,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1166,1446.010000,173,0,604.410500,extended,nbiot,60 -on10,0,0,24,1,0,1320,1440.000000,173,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,480,1440.000000,173,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,173,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1527.040000,173,0,866.942000,extended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,173,0,602.006500,extended,nbiot,60 -on1,0,0,24,1,0,120,1440.000000,173,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,480,1440.000000,173,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,19,1440.000000,173,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,766,1466.010000,173,0,612.410500,extended,nbiot,60 -on11,0,0,24,1,0,900,1440.000000,174,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1518.030000,174,0,802.231500,extended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,174,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,60,1440.000000,174,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,1114,1454.010000,174,0,607.610500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1308,1468.010000,174,0,613.210500,extended,nbiot,60 -on9,0,0,24,1,0,660,1440.000000,174,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,540,1440.000000,175,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,20,1440.010000,175,0,602.010500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1469.030000,175,0,781.981500,extended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,175,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,962,1440.000000,175,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1020,1440.000000,175,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,120,1440.000000,175,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,1238,1458.010000,176,0,609.210500,extended,nbiot,60 -on0,1,6,24,0,0,0,1469.030000,176,0,782.631500,extended,nbiot,60 -on11,0,0,24,1,0,1380,1440.000000,176,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,1140,1440.000000,176,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,309,1440.000000,176,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,290,1470.010000,176,0,614.010500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,180,1440.000000,176,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1260,1440.000000,177,0,602.006500,extended,nbiot,60 -on0,1,7,24,0,0,0,1495.020000,177,0,830.071000,extended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,177,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,480,1440.000000,177,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,120,1440.000000,177,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,187,1440.000000,177,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,177,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,110,1470.010000,177,0,614.010500,extended,nbiot,60 -on2,0,0,24,1,0,432,1440.000000,177,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1246,1466.010000,178,0,612.410500,extended,nbiot,60 -on5,0,0,24,1,0,1320,1440.000000,178,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,878,1458.010000,178,0,609.210500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,1020,1440.000000,178,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1461.020000,178,0,782.021000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,926,1446.010000,178,0,604.410500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,240,1440.000000,178,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,300,1440.000000,179,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,1200,1440.000000,179,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1368,1468.010000,179,0,613.210500,extended,nbiot,60 -on4,0,0,24,1,0,926,1446.010000,179,0,604.410500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1149,1440.000000,179,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,391,1451.010000,179,0,606.410500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1456.020000,179,0,828.771000,extended,nbiot,60 -on9,0,0,24,1,0,1380,1440.000000,179,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,1433,1473.010000,180,0,615.210500,extended,nbiot,60 -on0,1,5,24,0,0,0,1498.020000,180,0,768.221000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,240,1440.000000,180,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,320,1440.010000,180,0,602.010500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,585,1465.010000,180,0,612.010500,extended,nbiot,60 -on2,0,0,24,1,0,0,1440.000000,180,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,377,1440.000000,181,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,24,1444.020000,181,0,603.614500,extended,nbiot,60 -on3,0,0,24,1,0,396,1456.020000,181,0,608.414500,extended,nbiot,60 -on8,0,0,24,1,0,900,1440.000000,181,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,14,1440.000000,181,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,165,1465.010000,181,0,612.010500,extended,nbiot,60 -on0,1,6,24,0,0,0,1497.050000,181,0,767.852500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,0,1440.000000,182,0,602.006500,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,304,1440.000000,182,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,476,1476.010000,182,0,616.410500,extended,nbiot,60 -on7,0,0,24,1,0,750,1450.010000,182,0,606.010500,extended,nbiot,60 -on11,0,0,24,1,0,1037,1440.000000,182,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1461.010000,182,0,879.510500,extended,nbiot,60 -on8,0,0,24,1,0,180,1440.000000,182,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,1366,1466.010000,182,0,612.410500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,182,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,626,1446.010000,182,0,604.410500,extended,nbiot,60 -on10,0,0,24,1,0,179,1479.010000,183,0,617.610500,extended,nbiot,60 -on1,0,0,24,1,0,510,1450.010000,183,0,606.010500,extended,nbiot,60 -on8,0,0,24,1,0,860,1440.010000,183,0,602.010500,extended,nbiot,60 -on4,0,0,24,1,0,926,1446.010000,183,0,604.410500,extended,nbiot,60 -on3,0,0,24,1,0,300,1440.000000,183,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,183,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,183,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1140,1440.000000,183,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,183,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1488.040000,183,0,855.242000,extended,nbiot,60 -on5,0,0,24,1,0,180,1440.000000,183,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,60,1440.000000,183,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,499,1440.000000,184,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,184,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,420,1440.000000,184,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,814,1454.010000,184,0,607.610500,extended,nbiot,60 -on2,0,0,24,1,0,872,1452.010000,184,0,606.810500,extended,nbiot,60 -on5,0,0,24,1,0,720,1440.000000,184,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,184,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,extended,nbiot,60 -on0,1,8,24,0,0,0,1490.030000,184,0,864.481500,extended,nbiot,60 -on3,0,0,24,1,0,540,1440.000000,184,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,600,1440.000000,184,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,1081,1440.000000,185,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,600,1440.000000,185,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1473.020000,185,0,775.771000,extended,nbiot,60 -on4,0,0,24,1,0,809,1449.010000,185,0,605.610500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,300,1440.000000,185,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,180,1440.000000,185,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,0,1440.000000,185,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,185,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,840,1440.000000,186,0,602.006500,extended,nbiot,60 -on0,1,3,24,0,0,0,1528.030000,186,0,689.231500,extended,nbiot,60 -on4,0,0,24,1,0,660,1440.000000,186,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1020,1440.000000,186,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1480.020000,187,0,790.271000,extended,nbiot,60 -on10,0,0,24,1,0,1260,1440.000000,187,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1092,1440.000000,187,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,1140,1440.000000,187,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,900,1440.000000,187,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,180,1440.000000,187,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,54,1474.010000,187,0,615.610500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,540,1440.000000,188,0,602.006500,extended,nbiot,60 -on0,1,8,24,0,0,0,1498.040000,188,0,848.192000,extended,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,188,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,350,1470.010000,188,0,614.010500,extended,nbiot,60 -on3,0,0,24,1,0,360,1440.000000,188,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,945,1465.010000,188,0,612.010500,extended,nbiot,60 -on11,0,0,24,1,0,399,1459.020000,188,0,609.614500,extended,nbiot,60 -on5,0,0,24,1,0,539,1479.010000,188,0,617.610500,extended,nbiot,60 -on1,0,0,24,1,0,1140,1440.000000,188,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,188,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,780,1440.000000,189,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,1200,1440.000000,189,0,602.006500,extended,nbiot,60 -on5,0,0,24,1,0,1020,1440.000000,189,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,nbiot,60 -on0,1,5,24,0,0,0,1448.010000,189,0,750.810500,extended,nbiot,60 -on10,0,0,24,1,0,720,1440.000000,189,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1313,1473.010000,189,0,615.210500,extended,nbiot,60 -on5,0,0,24,1,0,363,1440.000000,190,0,602.006500,extended,nbiot,60 -on0,1,5,24,0,0,0,1466.030000,190,0,742.431500,extended,nbiot,60 -on9,0,0,24,1,0,60,1440.000000,190,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,392,1452.020000,190,0,606.814500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,155,1455.010000,190,0,608.010500,extended,nbiot,60 -on2,0,0,24,1,0,720,1440.000000,190,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,60,1440.000000,191,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,244,1440.000000,191,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,1080,1440.000000,191,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,1101,1441.020000,191,0,602.414500,extended,nbiot,60 -on0,1,6,24,0,0,0,1503.030000,191,0,789.731500,extended,nbiot,60 -on4,0,0,24,1,0,1140,1440.000000,191,0,602.006500,extended,nbiot,60 -on8,0,0,24,1,0,1215,1440.000000,191,0,602.006500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,nbiot,60 -on4,0,0,24,1,0,1041,1441.010000,192,0,602.410500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,1428,1468.010000,192,0,613.210500,extended,nbiot,60 -on0,1,6,24,0,0,0,1504.020000,192,0,805.071000,extended,nbiot,60 -on10,0,0,24,1,0,1246,1466.010000,192,0,612.410500,extended,nbiot,60 -on1,0,0,24,1,0,60,1440.000000,192,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,949,1469.010000,192,0,613.610500,extended,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,192,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,420,1440.000000,193,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,720,1440.000000,193,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1034,1440.000000,193,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,859,1440.000000,193,0,602.006500,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,nbiot,60 -on0,1,7,24,0,0,0,1530.040000,193,0,815.492000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,300,1440.000000,193,0,602.006500,extended,nbiot,60 -on2,0,0,24,1,0,120,1440.000000,193,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1020,1440.000000,193,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1260,1440.000000,194,0,602.006500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,194,0,576.000000,extended,nbiot,60 -on10,0,0,24,1,0,770,1470.010000,194,0,614.010500,extended,nbiot,60 -on1,0,0,24,1,0,1408,1448.010000,194,0,605.210500,extended,nbiot,60 -on0,1,7,24,0,0,0,1464.030000,194,0,819.631500,extended,nbiot,60 -on6,0,0,24,1,0,699,1459.010000,194,0,609.610500,extended,nbiot,60 -on4,0,0,24,1,0,116,1476.010000,194,0,616.410500,extended,nbiot,60 -on5,0,0,24,1,0,1219,1440.000000,194,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,extended,nbiot,60 -on11,0,0,24,1,0,747,1447.020000,194,0,604.814500,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,extended,nbiot,60 -on2,0,0,23,0,0,1438,1438.000000,194,0,575.200000,extended,nbiot,60 -on6,0,0,24,1,0,764,1464.010000,195,0,611.610500,extended,nbiot,60 -on8,0,0,24,1,0,840,1440.000000,195,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,9,1440.000000,195,0,602.006500,extended,nbiot,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,195,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,60,1440.000000,195,0,602.006500,extended,nbiot,60 -on4,0,0,24,1,0,929,1449.010000,195,0,605.610500,extended,nbiot,60 -on0,1,6,24,0,0,0,1493.020000,195,0,793.521000,extended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,195,0,602.006500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,600,1440.000000,196,0,602.006500,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,480,1440.000000,196,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,1020,1440.000000,196,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,nbiot,60 -on0,1,4,24,0,0,0,1507.040000,196,0,706.842000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,180,1440.000000,196,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,716,1476.010000,197,0,616.410500,extended,nbiot,60 -on0,1,7,24,0,0,0,1506.020000,197,0,848.771000,extended,nbiot,60 -on5,0,0,24,1,0,180,1440.000000,197,0,602.006500,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,197,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,197,0,576.000000,extended,nbiot,60 -on2,0,0,24,1,0,480,1440.000000,197,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,770,1470.010000,197,0,614.010500,extended,nbiot,60 -on11,0,0,24,1,0,238,1478.010000,197,0,617.210500,extended,nbiot,60 -on6,0,0,24,1,0,173,1473.010000,197,0,615.210500,extended,nbiot,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,extended,nbiot,60 -on9,0,0,24,1,0,320,1440.010000,197,0,602.010500,extended,nbiot,60 -on0,1,4,24,0,0,0,1448.020000,198,0,709.221000,extended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,nbiot,60 -on3,0,0,24,1,0,1020,1440.000000,198,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,976,1440.000000,198,0,602.006500,extended,nbiot,60 -on6,0,0,24,1,0,1260,1440.000000,198,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,172,1472.010000,198,0,614.810500,extended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,nbiot,60 -on5,0,0,24,1,0,820,1460.010000,199,0,610.010500,extended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,nbiot,60 -on8,0,0,24,1,0,1092,1440.000000,199,0,602.006500,extended,nbiot,60 -on0,1,6,24,0,0,0,1489.020000,199,0,789.321000,extended,nbiot,60 -on4,0,0,24,1,0,480,1440.000000,199,0,602.006500,extended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,extended,nbiot,60 -on1,0,0,24,1,0,1310,1470.010000,199,0,614.010500,extended,nbiot,60 -on2,0,0,24,1,0,1320,1440.000000,199,0,602.006500,extended,nbiot,60 -on7,0,0,24,1,0,1080,1440.000000,199,0,602.006500,extended,nbiot,60 -on3,0,0,24,1,0,905,1440.000000,200,0,602.006500,extended,nbiot,60 -on10,0,0,24,1,0,0,1440.000000,200,0,602.006500,extended,nbiot,60 -on11,0,0,24,1,0,480,1440.000000,200,0,602.006500,extended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,nbiot,60 -on0,1,6,24,0,0,0,1488.020000,200,0,799.971000,extended,nbiot,60 -on5,0,0,24,1,0,660,1440.000000,200,0,602.006500,extended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,nbiot,60 -on7,0,0,24,1,0,68,1440.000000,200,0,602.006500,extended,nbiot,60 -on9,0,0,24,1,0,369,1440.000000,200,0,602.006500,extended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,extended,nbiot,60 -on6,0,0,24,1,0,1187,1467.010320,1,0,612.810836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,279,1459.010320,1,0,609.610836,hintandextended,nbiot,60 -on8,0,0,24,1,0,439,1441.989680,1,0,606.052580,hintandextended,nbiot,60 -on2,0,0,24,1,0,483,1440.010320,1,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,710,1471.010320,1,0,652.760836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,300,1502.600000,1,1,627.261832,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1473.620640,1,0,879.751672,hintandextended,nbiot,60 -on10,0,0,24,1,0,1050,1450.010320,2,0,606.010836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,398,1502.030960,2,1,673.249008,hintandextended,nbiot,60 -on7,0,0,24,1,0,600,1441.010320,2,0,623.210836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,2,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,350,1500.600320,2,1,626.513336,hintandextended,nbiot,60 -on11,0,0,24,1,0,991,1451.010320,2,0,606.410836,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1491.020640,2,0,1082.621672,hintandextended,nbiot,60 -on6,0,0,24,1,0,211,1451.010320,2,0,606.410836,hintandextended,nbiot,60 -on2,0,0,25,1,0,483,1500.310320,2,1,662.400836,hintandextended,nbiot,60 -on9,0,0,24,1,0,240,1442.979360,2,0,615.165160,hintandextended,nbiot,60 -on5,0,0,25,1,0,270,1502.300000,2,1,678.549916,hintandextended,nbiot,60 -on5,0,0,26,1,0,467,1561.230320,3,2,664.356628,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1518.692560,3,0,960.227188,hintandextended,nbiot,60 -on4,0,0,24,1,0,300,1443.948400,3,0,651.302776,hintandextended,nbiot,60 -on9,0,0,26,1,0,415,1581.040320,3,2,658.449252,hintandextended,nbiot,60 -on6,0,0,24,1,0,240,1441.000000,3,0,602.413416,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,519,1520.620640,3,1,634.463380,hintandextended,nbiot,60 -on2,0,0,24,1,0,398,1459.010320,3,0,646.920836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,662,1501.300000,3,1,664.233416,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,3,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,510,1503.510000,3,2,654.307084,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1401,1441.010000,4,0,602.410500,hintandextended,nbiot,60 -on2,0,0,24,1,0,1409,1449.020000,4,0,605.614500,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1528.650960,4,0,870.583508,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,599,1479.010320,4,0,617.610836,hintandextended,nbiot,60 -on3,0,0,24,1,0,17,1440.989680,4,0,602.409288,hintandextended,nbiot,60 -on11,0,0,25,1,0,420,1501.610320,4,1,626.859252,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,660,1440.010320,4,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,4,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1432,1472.010000,5,0,614.810500,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1462.020640,5,0,792.171672,hintandextended,nbiot,60 -on5,0,0,24,1,0,120,1440.010320,5,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,383,1443.010320,5,0,603.210836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,947,1467.010320,5,0,612.810836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,5,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,0,1441.000000,5,0,602.413416,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1077,1478.010320,6,0,654.520836,hintandextended,nbiot,60 -on7,0,0,24,1,0,498,1440.010320,6,0,602.010836,hintandextended,nbiot,60 -on9,0,0,25,1,0,1070,1532.630960,6,1,686.320800,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1460.630960,6,0,823.862508,hintandextended,nbiot,60 -on4,0,0,25,1,0,1122,1501.010320,6,1,664.767336,hintandextended,nbiot,60 -on3,0,0,24,1,0,861,1441.010320,6,0,602.410836,hintandextended,nbiot,60 -on1,0,0,25,1,0,1127,1500.010320,6,1,626.017336,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,6,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1260,1440.010320,6,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1468.251600,7,0,860.464180,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,599,1500.220320,7,1,626.101336,hintandextended,nbiot,60 -on10,0,0,24,1,0,23,1444.010320,7,0,628.317544,hintandextended,nbiot,60 -on8,0,0,25,1,0,720,1501.990320,7,1,632.081252,hintandextended,nbiot,60 -on2,0,0,26,1,0,918,1581.620640,7,2,658.863380,hintandextended,nbiot,60 -on1,0,0,25,1,0,847,1501.300000,7,1,671.623292,hintandextended,nbiot,60 -on9,0,0,25,1,0,458,1501.010320,7,1,663.727336,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,7,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1467.010320,8,0,778.560836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1080,1441.000000,8,0,602.413416,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,180,1501.610320,8,1,626.859252,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,519,1459.010320,8,0,609.610836,hintandextended,nbiot,60 -on4,0,0,24,1,0,326,1446.010320,8,0,604.410836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,8,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,172,1472.030960,9,0,614.832508,hintandextended,nbiot,60 -on6,0,0,24,1,0,180,1440.010320,9,0,602.010836,hintandextended,nbiot,60 -on2,0,0,25,1,0,878,1501.220320,9,1,660.951336,hintandextended,nbiot,60 -on7,0,0,25,1,0,814,1516.630960,9,1,656.520800,hintandextended,nbiot,60 -on9,0,0,24,1,0,997,1457.010320,9,0,608.810836,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1539.282560,9,0,1011.746688,hintandextended,nbiot,60 -on10,0,0,24,1,0,0,1440.010320,9,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,813,1453.010320,9,0,607.210836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,9,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,660,1440.030960,9,0,602.025800,hintandextended,nbiot,60 -on3,0,0,25,1,0,60,1501.620640,9,1,626.870088,hintandextended,nbiot,60 -on8,0,0,24,1,0,200,1441.010320,9,0,619.317544,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,933,1453.010320,10,0,607.210836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1444.020640,10,0,862.321672,hintandextended,nbiot,60 -on4,0,0,24,1,0,1260,1441.010320,10,0,640.760836,hintandextended,nbiot,60 -on6,0,0,24,1,0,337,1457.010320,10,0,608.810836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,960,1440.020640,10,0,602.021672,hintandextended,nbiot,60 -on3,0,0,24,1,0,204,1444.010320,10,0,603.610836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,683,1444.020640,10,0,608.821672,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,10,0,576.000000,hintandextended,nbiot,60 -on3,0,0,25,1,0,600,1501.610320,11,1,626.859252,hintandextended,nbiot,60 -on11,0,0,25,1,0,300,1501.010320,11,1,639.151044,hintandextended,nbiot,60 -on6,0,0,25,1,0,418,1502.180000,11,1,652.436708,hintandextended,nbiot,60 -on8,0,0,24,1,0,566,1446.010320,11,0,604.410836,hintandextended,nbiot,60 -on2,0,0,27,1,0,575,1620.610320,11,3,701.946920,hintandextended,nbiot,60 -on9,0,0,25,1,0,477,1502.000000,11,1,648.256500,hintandextended,nbiot,60 -on1,0,0,24,1,0,34,1455.010320,11,0,612.820836,hintandextended,nbiot,60 -on5,0,0,26,1,0,498,1581.030960,11,2,668.182092,hintandextended,nbiot,60 -on10,0,0,25,1,0,240,1501.630640,11,2,629.473880,hintandextended,nbiot,60 -on7,0,0,26,1,0,380,1580.330960,11,2,696.502092,hintandextended,nbiot,60 -on0,1,11,24,0,0,0,1547.333520,11,0,1037.756904,hintandextended,nbiot,60 -on4,0,0,24,1,0,731,1441.000000,11,0,608.250000,hintandextended,nbiot,60 -on3,0,0,25,1,0,180,1501.610320,12,1,626.859252,hintandextended,nbiot,60 -on10,0,0,24,1,0,126,1440.010320,12,0,602.010836,hintandextended,nbiot,60 -on5,0,0,26,1,0,978,1580.831600,12,2,658.554264,hintandextended,nbiot,60 -on7,0,0,25,1,0,939,1502.000000,12,1,646.118000,hintandextended,nbiot,60 -on9,0,0,24,1,0,840,1441.010320,12,0,620.220836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,398,1500.010320,12,1,626.017336,hintandextended,nbiot,60 -on4,0,0,24,1,0,600,1441.000000,12,0,602.413416,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,12,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,324,1446.000000,12,0,631.973416,hintandextended,nbiot,60 -on8,0,0,24,1,0,991,1451.020640,12,0,606.421672,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1518.261920,12,0,1044.925016,hintandextended,nbiot,60 -on7,0,0,24,1,0,600,1440.020640,13,0,602.021672,hintandextended,nbiot,60 -on3,0,0,24,1,0,273,1453.010320,13,0,607.210836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,0,1495.620640,13,1,624.463380,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,3,1443.000000,13,0,652.216708,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,13,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1471.641280,13,0,857.523344,hintandextended,nbiot,60 -on1,0,0,24,1,0,148,1448.020640,13,0,605.221672,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,840,1440.010320,14,0,602.010836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1500.651280,14,0,949.083844,hintandextended,nbiot,60 -on3,0,0,25,1,0,0,1500.630640,14,1,626.473880,hintandextended,nbiot,60 -on1,0,0,25,1,0,60,1502.020320,14,1,645.684752,hintandextended,nbiot,60 -on4,0,0,24,1,0,239,1479.010320,14,0,617.610836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,374,1440.989680,14,0,602.409288,hintandextended,nbiot,60 -on10,0,0,24,1,0,240,1440.010320,14,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,1,0,823,1463.010320,14,0,611.210836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,14,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,423,1440.010320,15,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,1020,1440.010320,15,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,869,1449.010320,15,0,605.610836,hintandextended,nbiot,60 -on11,0,0,24,1,0,180,1441.000000,15,0,602.413416,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,15,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1504.020640,15,0,948.721672,hintandextended,nbiot,60 -on8,0,0,24,1,0,660,1441.000000,15,0,602.413416,hintandextended,nbiot,60 -on2,0,0,24,1,0,663,1440.010320,15,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,1,0,294,1476.000000,15,0,654.763416,hintandextended,nbiot,60 -on7,0,0,24,1,0,685,1446.010320,16,0,623.917544,hintandextended,nbiot,60 -on3,0,0,24,1,0,488,1440.010320,16,0,602.017544,hintandextended,nbiot,60 -on8,0,0,24,1,0,300,1441.010320,16,0,639.720836,hintandextended,nbiot,60 -on10,0,0,25,1,0,476,1502.000000,16,1,665.169916,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,416,1501.010320,16,1,663.727336,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1462.010320,16,0,868.860836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,328,1448.010320,16,0,605.210836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,16,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1263,1440.010320,16,0,602.010836,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1512.041280,17,0,950.643344,hintandextended,nbiot,60 -on6,0,0,24,1,0,660,1440.010320,17,0,602.010836,hintandextended,nbiot,60 -on5,0,0,25,1,0,879,1500.010320,17,1,626.017336,hintandextended,nbiot,60 -on11,0,0,24,1,0,240,1440.010320,17,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,1202,1441.000000,17,0,639.716708,hintandextended,nbiot,60 -on2,0,0,24,1,0,1308,1490.010320,17,1,622.017336,hintandextended,nbiot,60 -on10,0,0,24,1,0,720,1441.000000,17,0,614.360000,hintandextended,nbiot,60 -on3,0,0,24,1,0,60,1441.041280,17,0,639.746636,hintandextended,nbiot,60 -on7,0,0,25,1,0,802,1501.230640,17,1,634.565464,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,17,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,590,1470.010320,17,0,614.010836,hintandextended,nbiot,60 -on9,0,0,25,1,0,533,1500.010320,17,1,626.017336,hintandextended,nbiot,60 -on3,0,0,24,1,0,159,1459.010320,18,0,609.610836,hintandextended,nbiot,60 -on5,0,0,25,1,0,131,1502.000000,18,1,663.291832,hintandextended,nbiot,60 -on8,0,0,24,1,0,601,1441.989680,18,0,640.112580,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,378,1441.010320,18,0,602.424252,hintandextended,nbiot,60 -on2,0,0,24,1,0,1140,1441.010320,18,0,621.260836,hintandextended,nbiot,60 -on7,0,0,25,1,0,710,1500.010320,18,1,626.017336,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1481.261920,18,0,1076.925016,hintandextended,nbiot,60 -on6,0,0,26,1,0,618,1581.851280,18,2,668.705636,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,18,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,580,1502.289680,18,1,648.625872,hintandextended,nbiot,60 -on7,0,0,24,1,0,533,1474.010320,19,0,653.960836,hintandextended,nbiot,60 -on3,0,0,24,1,0,476,1476.010320,19,0,616.410836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,180,1440.010320,19,0,602.010836,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1466.010320,19,0,760.610836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,75,1440.010320,19,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,720,1440.010320,19,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,19,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,528,1500.010320,20,1,626.017336,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1452.010320,20,0,868.110836,hintandextended,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,20,0,602.006500,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,540,1440.010320,20,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,120,1442.000000,20,0,640.123416,hintandextended,nbiot,60 -on4,0,0,24,1,0,755,1455.010320,20,0,608.010836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,20,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,272,1452.020640,20,0,606.821672,hintandextended,nbiot,60 -on3,0,0,24,1,0,660,1440.010320,21,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1446.630960,21,0,786.412508,hintandextended,nbiot,60 -on7,0,0,24,1,0,1100,1440.010320,21,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,102,1501.010000,21,1,626.423916,hintandextended,nbiot,60 -on2,0,0,25,1,0,1320,1500.620640,21,1,626.456672,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,21,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,33,1454.010320,21,0,644.920836,hintandextended,nbiot,60 -on7,0,0,25,1,0,759,1500.010320,22,1,626.017336,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1115,1455.010320,22,0,608.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,60,1440.010320,22,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,204,1444.010320,22,0,603.610836,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1467.010320,22,0,803.260836,hintandextended,nbiot,60 -on9,0,0,24,1,0,660,1441.010320,22,0,631.920836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,22,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,893,1473.010320,22,0,615.210836,hintandextended,nbiot,60 -on9,0,0,25,1,0,658,1501.210640,23,1,639.100756,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,0,1441.000000,23,0,615.003292,hintandextended,nbiot,60 -on6,0,0,25,1,0,660,1501.630960,23,1,661.570800,hintandextended,nbiot,60 -on8,0,0,25,1,0,720,1503.620320,23,2,670.829752,hintandextended,nbiot,60 -on11,0,0,25,1,0,26,1510.610320,23,1,671.682668,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1527.892880,23,0,1022.537524,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hintandextended,nbiot,60 -on3,0,0,25,1,0,818,1500.230640,23,1,626.112172,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,23,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,712,1502.179680,23,1,629.738372,hintandextended,nbiot,60 -on5,0,0,25,1,0,636,1519.620640,23,1,681.123380,hintandextended,nbiot,60 -on2,0,0,24,1,0,979,1440.369360,24,0,602.401036,hintandextended,nbiot,60 -on10,0,0,25,1,0,975,1502.630960,24,1,635.067508,hintandextended,nbiot,60 -on6,0,0,24,1,0,180,1440.979360,24,0,602.405160,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,383,1444.000000,24,0,603.613416,hintandextended,nbiot,60 -on8,0,0,24,1,0,130,1440.989680,24,0,602.402580,hintandextended,nbiot,60 -on5,0,0,25,1,0,368,1502.020640,24,1,673.433380,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1481.261920,24,0,908.575016,hintandextended,nbiot,60 -on7,0,0,25,1,0,459,1502.000000,24,1,639.819916,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,24,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,287,1468.000000,25,0,613.213416,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1015,1475.010320,25,0,616.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,180,1440.010320,25,0,602.010836,hintandextended,nbiot,60 -on7,0,0,25,1,0,780,1501.989680,25,1,639.802580,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1473.030640,25,0,841.432172,hintandextended,nbiot,60 -on5,0,0,24,1,0,540,1442.979680,25,0,603.225204,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,25,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,26,1447.020640,26,0,610.931672,hintandextended,nbiot,60 -on7,0,0,24,1,0,410,1470.010320,26,0,614.010836,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1464.020320,26,0,1019.821336,hintandextended,nbiot,60 -on10,0,0,24,1,0,226,1466.010320,26,0,612.410836,hintandextended,nbiot,60 -on6,0,0,25,1,0,1200,1501.010000,26,1,626.423916,hintandextended,nbiot,60 -on8,0,0,24,1,0,780,1440.010320,26,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,595,1476.000000,26,0,616.413416,hintandextended,nbiot,60 -on1,0,0,24,1,0,1211,1440.990000,26,0,602.409208,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,26,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,98,1500.220320,26,1,626.101336,hintandextended,nbiot,60 -on5,0,0,24,1,0,347,1468.000000,26,0,613.213416,hintandextended,nbiot,60 -on5,0,0,24,1,0,1037,1440.000000,27,0,602.006708,hintandextended,nbiot,60 -on1,0,0,24,1,0,120,1441.000000,27,0,613.320000,hintandextended,nbiot,60 -on7,0,0,25,1,0,166,1502.289680,27,1,645.889164,hintandextended,nbiot,60 -on8,0,0,24,1,0,322,1442.989680,27,0,603.209288,hintandextended,nbiot,60 -on2,0,0,24,1,0,443,1443.020640,27,0,603.221672,hintandextended,nbiot,60 -on10,0,0,24,1,0,1173,1453.010320,27,0,607.210836,hintandextended,nbiot,60 -on4,0,0,24,1,0,605,1440.000000,27,0,602.006708,hintandextended,nbiot,60 -on6,0,0,24,1,0,720,1441.010320,27,0,638.810836,hintandextended,nbiot,60 -on0,1,11,24,0,0,0,1513.661920,27,0,1088.201724,hintandextended,nbiot,60 -on3,0,0,24,1,0,482,1440.000000,27,0,602.006708,hintandextended,nbiot,60 -on9,0,0,24,1,0,0,1441.000000,27,0,602.413416,hintandextended,nbiot,60 -on11,0,0,26,1,0,198,1581.800320,27,2,658.935252,hintandextended,nbiot,60 -on1,0,0,25,1,0,693,1514.641280,28,1,632.078344,hintandextended,nbiot,60 -on8,0,0,24,1,0,335,1456.020640,28,0,610.631672,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,1234,1454.010320,28,0,607.610836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1460.630960,28,0,868.712508,hintandextended,nbiot,60 -on10,0,0,25,1,0,1178,1500.010320,28,1,626.017336,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,28,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,682,1443.000000,28,0,603.213416,hintandextended,nbiot,60 -on11,0,0,24,1,0,1140,1440.010320,29,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,607,1440.989680,29,0,602.402580,hintandextended,nbiot,60 -on8,0,0,24,1,0,717,1478.010320,29,0,629.170836,hintandextended,nbiot,60 -on7,0,0,24,1,0,172,1472.010320,29,0,614.810836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,540,1440.030960,29,0,602.025800,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1454.010320,29,0,794.160836,hintandextended,nbiot,60 -on3,0,0,25,1,0,758,1500.220320,29,1,626.101336,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,29,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,1059,1500.010320,30,1,626.017336,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1016,1477.010320,30,0,644.370836,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,30,0,759.950000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,331,1452.000000,30,0,606.813416,hintandextended,nbiot,60 -on5,0,0,24,1,0,720,1440.010320,30,0,602.010836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,30,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,780,1440.041280,31,0,602.029928,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1475.641280,31,0,824.673344,hintandextended,nbiot,60 -on10,0,0,24,1,0,894,1474.010320,31,0,615.610836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,1215,1500.340960,31,1,634.339592,hintandextended,nbiot,60 -on8,0,0,24,1,0,503,1443.010320,31,0,603.210836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,540,1440.010320,31,0,602.010836,hintandextended,nbiot,60 -on6,0,0,25,1,0,1140,1502.000000,31,1,648.315000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,31,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,917,1500.310320,31,1,639.774128,hintandextended,nbiot,60 -on10,0,0,26,1,0,1218,1560.310320,32,2,663.130628,hintandextended,nbiot,60 -on11,0,0,25,1,0,967,1502.000320,32,1,664.136752,hintandextended,nbiot,60 -on1,0,0,24,1,0,993,1454.010320,32,0,635.170836,hintandextended,nbiot,60 -on5,0,0,24,1,0,1062,1463.010320,32,0,649.560836,hintandextended,nbiot,60 -on8,0,0,28,1,0,1149,1681.900000,32,4,775.452876,hintandextended,nbiot,60 -on7,0,0,26,1,0,1098,1562.499680,32,3,675.966164,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,900,1442.000000,32,0,611.516708,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1490.682240,32,0,921.716352,hintandextended,nbiot,60 -on6,0,0,24,1,0,179,1479.010320,32,0,617.610836,hintandextended,nbiot,60 -on9,0,0,26,1,0,1178,1583.610000,32,2,675.330416,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,32,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,616,1501.000000,33,1,626.419916,hintandextended,nbiot,60 -on7,0,0,25,1,0,540,1502.989680,33,1,644.817580,hintandextended,nbiot,60 -on5,0,0,24,1,0,452,1453.010320,33,0,638.670836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,193,1440.989680,33,0,602.402580,hintandextended,nbiot,60 -on4,0,0,25,1,0,518,1500.220320,33,1,626.101336,hintandextended,nbiot,60 -on10,0,0,24,1,0,1080,1441.010320,33,0,640.760836,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1448.630960,33,0,830.762508,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,33,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,1415,1455.010000,34,0,608.010500,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1468.630960,34,0,810.162508,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,300,1501.610320,34,1,626.859252,hintandextended,nbiot,60 -on8,0,0,25,1,0,922,1501.220320,34,1,626.508044,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,34,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,840,1441.000000,34,0,614.360000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1020,1440.010320,34,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,720,1440.010320,35,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,629,1511.620640,35,1,633.463380,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,641,1461.010320,35,0,610.410836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1200,1440.010320,35,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,35,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,1384,1440.000000,35,0,602.006500,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1470.641280,35,0,793.423344,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1472.241280,36,0,959.553344,hintandextended,nbiot,60 -on11,0,0,24,1,0,1014,1474.020640,36,0,615.621672,hintandextended,nbiot,60 -on1,0,0,24,1,0,484,1440.989680,36,0,602.402580,hintandextended,nbiot,60 -on9,0,0,24,1,0,1306,1466.010320,36,0,612.410836,hintandextended,nbiot,60 -on4,0,0,24,1,0,0,1440.010320,36,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,1,0,670,1440.989680,36,0,602.402580,hintandextended,nbiot,60 -on2,0,0,25,1,0,420,1502.620640,36,1,637.020088,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,36,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,1020,1502.589680,36,1,627.257704,hintandextended,nbiot,60 -on6,0,0,25,1,0,360,1502.610320,37,1,663.529252,hintandextended,nbiot,60 -on7,0,0,24,1,0,1320,1440.010320,37,0,602.010836,hintandextended,nbiot,60 -on8,0,0,25,1,0,120,1501.610320,37,1,626.859252,hintandextended,nbiot,60 -on2,0,0,25,1,0,518,1503.289680,37,1,683.995872,hintandextended,nbiot,60 -on10,0,0,24,1,0,1395,1440.000000,37,0,602.006500,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1565.282560,37,0,1134.596688,hintandextended,nbiot,60 -on5,0,0,26,1,0,558,1581.810640,37,2,658.939380,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,300,1441.020640,37,0,602.435088,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,780,1440.020640,37,0,602.021672,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,37,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,947,1467.010320,38,0,612.810836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,293,1474.010320,38,0,615.624252,hintandextended,nbiot,60 -on9,0,0,24,1,0,633,1453.010320,38,0,607.210836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,319,1441.979360,38,0,602.805160,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,38,0,810.650000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,38,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,803,1443.010320,39,0,603.210836,hintandextended,nbiot,60 -on4,0,0,24,1,0,926,1447.010320,39,0,608.970836,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1460.630960,39,0,869.362508,hintandextended,nbiot,60 -on5,0,0,23,1,0,468,1468.010320,39,0,613.210836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,441,1502.620640,39,1,627.263380,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,39,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,18,1441.000000,39,0,602.413416,hintandextended,nbiot,60 -on3,0,0,25,1,0,998,1500.220320,39,1,626.101336,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,260,1440.010320,40,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,1,0,468,1468.010320,40,0,613.210836,hintandextended,nbiot,60 -on10,0,0,24,1,0,120,1440.030960,40,0,602.032508,hintandextended,nbiot,60 -on11,0,0,24,1,0,540,1441.369680,40,0,620.617872,hintandextended,nbiot,60 -on4,0,0,26,1,0,678,1581.840960,40,2,668.701300,hintandextended,nbiot,60 -on6,0,0,25,1,0,699,1501.000000,40,1,626.419916,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1460.641280,40,0,928.523344,hintandextended,nbiot,60 -on1,0,0,25,1,0,578,1503.220320,40,1,694.107920,hintandextended,nbiot,60 -on8,0,0,24,1,0,1177,1457.010320,40,0,608.810836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,40,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,16,1442.969040,41,0,603.207740,hintandextended,nbiot,60 -on9,0,0,24,1,0,720,1440.010320,41,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1476.020640,41,0,772.421672,hintandextended,nbiot,60 -on4,0,0,24,1,0,240,1440.010320,41,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,41,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,145,1445.010320,41,0,604.010836,hintandextended,nbiot,60 -on6,0,0,25,1,0,240,1502.600000,42,1,627.261832,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,nbiot,60 -on3,0,0,26,1,0,198,1582.620640,42,2,693.719880,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1486.271920,42,0,1003.535516,hintandextended,nbiot,60 -on11,0,0,25,1,0,159,1501.989680,42,1,640.055872,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,480,1501.010000,42,1,626.423916,hintandextended,nbiot,60 -on9,0,0,24,1,0,0,1443.589680,42,1,603.657704,hintandextended,nbiot,60 -on2,0,0,24,1,0,99,1461.000320,42,0,630.180044,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,42,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,362,1440.000000,43,0,602.006708,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,300,1502.610320,43,1,637.009252,hintandextended,nbiot,60 -on7,0,0,24,1,0,38,1458.010320,43,0,609.210836,hintandextended,nbiot,60 -on6,0,0,24,1,0,1140,1440.010320,43,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,845,1440.000000,43,0,602.006708,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,43,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1432,1472.010000,43,0,614.810500,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1448.010320,43,0,837.910836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1478.641280,44,0,959.773344,hintandextended,nbiot,60 -on10,0,0,24,1,0,60,1443.989680,44,0,657.559496,hintandextended,nbiot,60 -on2,0,0,24,1,0,420,1441.000000,44,0,602.413416,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1080,1441.000000,44,0,614.756708,hintandextended,nbiot,60 -on3,0,0,24,1,0,998,1458.010320,44,0,609.210836,hintandextended,nbiot,60 -on9,0,0,24,1,0,540,1440.010320,44,0,602.010836,hintandextended,nbiot,60 -on4,0,0,26,1,0,198,1581.840640,44,2,658.957880,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,44,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,173,1501.000000,44,1,639.861292,hintandextended,nbiot,60 -on6,0,0,24,1,0,653,1474.000000,44,0,615.613416,hintandextended,nbiot,60 -on4,0,0,24,1,0,1336,1440.989680,45,0,602.402580,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1460.630960,45,0,985.062508,hintandextended,nbiot,60 -on2,0,0,24,1,0,360,1441.000000,45,0,602.413416,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,547,1442.020640,45,0,610.881672,hintandextended,nbiot,60 -on9,0,0,24,1,0,85,1445.020640,45,0,604.021672,hintandextended,nbiot,60 -on8,0,0,25,1,0,556,1502.379360,45,1,665.523576,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,45,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1125,1465.010320,45,0,612.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,625,1446.020640,45,0,604.428380,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1477.261600,46,0,991.474680,hintandextended,nbiot,60 -on8,0,0,25,1,0,1313,1500.220320,46,1,626.101336,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,87,1448.000000,46,0,605.213416,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,1200,1502.630640,46,2,675.367172,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,46,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,478,1478.010320,46,0,617.210836,hintandextended,nbiot,60 -on3,0,0,24,1,0,976,1441.989680,46,0,605.005872,hintandextended,nbiot,60 -on9,0,0,24,1,0,480,1440.010320,46,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,905,1442.000000,46,0,641.026708,hintandextended,nbiot,60 -on7,0,0,25,1,0,981,1502.620640,46,1,627.263380,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,420,1501.610320,47,1,626.859252,hintandextended,nbiot,60 -on5,0,0,24,1,0,960,1440.010320,47,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,300,1440.010320,47,0,602.010836,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1499.630960,47,0,827.762508,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,47,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1009,1469.010320,47,0,613.610836,hintandextended,nbiot,60 -on10,0,0,24,1,0,811,1451.010320,47,0,606.410836,hintandextended,nbiot,60 -on7,0,0,24,1,0,262,1442.010320,47,0,602.810836,hintandextended,nbiot,60 -on2,0,0,25,1,0,158,1500.230640,48,1,626.112172,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,48,0,761.900000,hintandextended,nbiot,60 -on6,0,0,24,1,0,940,1460.010320,48,0,610.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,60,1441.010320,48,0,628.020836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,188,1440.000000,48,0,602.006708,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,48,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,285,1500.020640,49,1,626.028172,hintandextended,nbiot,60 -on11,0,0,25,1,0,223,1501.010320,49,1,663.727336,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,110,1501.010320,49,1,663.727336,hintandextended,nbiot,60 -on1,0,0,24,1,0,1286,1446.010320,49,0,604.410836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1494.630960,49,0,959.012508,hintandextended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,49,0,602.006500,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,49,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,60,1502.000000,49,1,648.315000,hintandextended,nbiot,60 -on9,0,0,24,1,0,427,1441.979360,49,0,602.805160,hintandextended,nbiot,60 -on2,0,0,24,1,0,1140,1440.010320,49,0,602.010836,hintandextended,nbiot,60 -on4,0,0,25,1,0,583,1501.200320,50,1,634.950044,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1453.010320,50,0,938.060836,hintandextended,nbiot,60 -on2,0,0,24,1,0,24,1444.020640,50,0,603.621672,hintandextended,nbiot,60 -on3,0,0,24,1,0,1080,1440.010320,50,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,1,0,725,1440.000000,50,0,602.006708,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,480,1441.010320,50,0,639.720836,hintandextended,nbiot,60 -on9,0,0,24,1,0,45,1465.010320,50,0,612.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,50,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1140,1440.010320,50,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,120,1440.020640,50,0,602.021672,hintandextended,nbiot,60 -on7,0,0,25,1,0,1222,1504.620640,51,1,666.413380,hintandextended,nbiot,60 -on4,0,0,24,1,0,180,1441.000000,51,0,602.413416,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1523.872240,51,0,1004.665852,hintandextended,nbiot,60 -on6,0,0,24,1,0,717,1477.010320,51,0,616.810836,hintandextended,nbiot,60 -on9,0,0,25,1,0,660,1501.610320,51,1,626.859252,hintandextended,nbiot,60 -on8,0,0,24,1,0,1355,1455.010320,51,0,608.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,929,1450.989680,51,0,644.759288,hintandextended,nbiot,60 -on5,0,0,25,1,0,1194,1501.000000,51,1,639.009792,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,51,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,1080,1502.610320,51,1,664.569252,hintandextended,nbiot,60 -on8,0,0,25,1,0,360,1502.610320,52,1,638.959252,hintandextended,nbiot,60 -on9,0,0,25,1,0,0,1501.610320,52,1,626.859252,hintandextended,nbiot,60 -on7,0,0,26,1,0,716,1560.310320,52,2,663.130628,hintandextended,nbiot,60 -on3,0,0,25,1,0,621,1501.210000,52,1,640.342000,hintandextended,nbiot,60 -on10,0,0,24,1,0,540,1441.979360,52,0,614.765160,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1456.630960,52,0,1055.612508,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1360,1460.010320,52,0,610.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,297,1478.010320,52,0,633.070836,hintandextended,nbiot,60 -on4,0,0,25,1,0,338,1500.010320,52,1,626.017336,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,52,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,730,1443.979360,52,0,680.305160,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,540,1442.000000,53,0,631.413416,hintandextended,nbiot,60 -on11,0,0,25,1,0,351,1501.030640,53,1,663.742172,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,240,1442.000000,53,0,652.713292,hintandextended,nbiot,60 -on3,0,0,24,1,0,600,1440.010320,53,0,602.010836,hintandextended,nbiot,60 -on9,0,0,25,1,0,416,1500.010320,53,1,626.017336,hintandextended,nbiot,60 -on5,0,0,24,1,0,1068,1468.010320,53,0,613.210836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,53,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1519.651600,53,0,939.134180,hintandextended,nbiot,60 -on1,0,0,25,1,0,245,1501.010320,53,1,636.369252,hintandextended,nbiot,60 -on6,0,0,24,1,0,0,1440.010320,54,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,457,1457.010320,54,0,608.810836,hintandextended,nbiot,60 -on3,0,0,25,1,0,720,1500.640960,54,1,626.484716,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,1054,1515.620640,54,1,632.463380,hintandextended,nbiot,60 -on9,0,0,24,1,0,1073,1473.010320,54,0,615.210836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1474.641280,54,0,890.573344,hintandextended,nbiot,60 -on1,0,0,25,1,0,780,1501.010000,54,1,626.423916,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,54,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,660,1442.000000,55,0,608.923416,hintandextended,nbiot,60 -on11,0,0,25,1,0,758,1501.210000,55,1,626.503916,hintandextended,nbiot,60 -on3,0,0,24,1,0,960,1440.010320,55,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,1,0,401,1461.010320,55,0,610.410836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,540,1440.010320,55,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1452.010320,55,0,768.660836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,55,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1200,1440.010320,56,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on0,1,1,24,0,0,0,1449.010320,56,0,605.610836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,56,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,507,1467.010320,57,1,662.087336,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1486.272240,57,0,945.685852,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,719,1500.020640,57,1,626.028172,hintandextended,nbiot,60 -on7,0,0,24,1,0,420,1441.010320,57,0,612.420836,hintandextended,nbiot,60 -on5,0,0,26,1,0,621,1582.830640,57,2,696.663880,hintandextended,nbiot,60 -on8,0,0,26,1,0,1038,1581.620640,57,2,658.869880,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,57,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,570,1450.010320,57,0,606.010836,hintandextended,nbiot,60 -on2,0,0,25,1,0,938,1501.000000,57,1,639.009792,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,55,1536.630960,58,1,640.874216,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,9,1441.989680,58,0,609.555872,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,600,1440.020640,58,0,602.021672,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1464.641280,58,0,930.123344,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,58,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1068,1468.010320,58,0,613.210836,hintandextended,nbiot,60 -on6,0,0,24,1,0,865,1445.020640,58,0,604.021672,hintandextended,nbiot,60 -on8,0,0,24,1,0,0,1441.010320,59,0,618.270836,hintandextended,nbiot,60 -on3,0,0,24,1,0,1200,1440.010320,59,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,888,1469.010320,59,0,650.920836,hintandextended,nbiot,60 -on10,0,0,24,1,0,360,1441.000000,59,0,602.413416,hintandextended,nbiot,60 -on4,0,0,24,1,0,240,1440.010320,59,0,602.010836,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1489.041280,59,0,903.093344,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,1080,1440.010320,59,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,540,1440.010320,59,0,602.010836,hintandextended,nbiot,60 -on7,0,0,25,1,0,943,1500.010320,59,1,626.017336,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,59,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,99,1501.010320,59,1,634.217336,hintandextended,nbiot,60 -on1,0,0,25,1,0,77,1502.989680,60,1,654.970996,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,118,1479.010320,60,0,654.920836,hintandextended,nbiot,60 -on2,0,0,24,1,0,1140,1441.010320,60,0,639.720836,hintandextended,nbiot,60 -on8,0,0,25,1,0,480,1503.600000,60,1,629.611832,hintandextended,nbiot,60 -on10,0,0,25,1,0,219,1500.010320,60,1,626.017336,hintandextended,nbiot,60 -on7,0,0,24,1,0,765,1465.010320,60,0,612.010836,hintandextended,nbiot,60 -on11,0,0,25,1,0,161,1500.010320,60,1,626.017336,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1476.251600,60,0,939.064180,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,60,0,576.000000,hintandextended,nbiot,60 -on3,0,0,25,1,0,1259,1500.010320,60,1,626.017336,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,619,1500.010320,61,1,626.017336,hintandextended,nbiot,60 -on1,0,0,25,1,0,584,1526.040960,61,1,674.786300,hintandextended,nbiot,60 -on10,0,0,24,1,0,488,1440.000000,61,0,602.006708,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,660,1503.600000,61,1,634.811832,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,60,1504.589680,61,1,650.171120,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1480.661600,61,0,963.194680,hintandextended,nbiot,60 -on2,0,0,24,1,0,589,1469.020640,61,0,613.621672,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,61,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,951,1471.010320,62,0,614.410836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,1423,1463.010000,62,0,611.210500,hintandextended,nbiot,60 -on6,0,0,24,1,0,1096,1440.989680,62,0,602.402580,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1440.000000,62,0,732.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,75,1440.010320,62,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,62,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1167,1447.010320,63,0,604.810836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,581,1462.010320,63,0,640.067544,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1501.651600,63,0,886.434180,hintandextended,nbiot,60 -on6,0,0,24,1,0,360,1440.010320,63,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,600,1440.010320,63,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,280,1461.989680,63,0,610.815996,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,63,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,1320,1500.620640,63,1,626.456672,hintandextended,nbiot,60 -on5,0,0,24,1,0,1080,1440.010320,63,0,602.010836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1471.020640,64,0,854.271672,hintandextended,nbiot,60 -on8,0,0,24,1,0,240,1441.010320,64,0,639.720836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,349,1502.190000,64,1,664.205916,hintandextended,nbiot,60 -on4,0,0,24,1,0,180,1441.010320,64,0,619.310836,hintandextended,nbiot,60 -on9,0,0,24,1,0,1020,1440.010320,64,0,602.010836,hintandextended,nbiot,60 -on2,0,0,25,1,0,414,1500.020320,64,1,626.021336,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,900,1440.010320,64,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,543,1441.989680,64,0,605.409288,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,64,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hintandextended,nbiot,60 -on2,0,0,28,1,0,393,1682.900000,65,5,788.839668,hintandextended,nbiot,60 -on3,0,0,25,1,0,349,1500.310320,65,1,657.974128,hintandextended,nbiot,60 -on4,0,0,25,1,0,319,1560.871920,65,2,650.375184,hintandextended,nbiot,60 -on9,0,0,27,1,0,234,1623.120320,65,3,758.252920,hintandextended,nbiot,60 -on7,0,0,24,1,0,63,1441.010320,65,0,620.480836,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1486.672240,65,0,979.905852,hintandextended,nbiot,60 -on11,0,0,24,1,0,221,1464.000000,65,0,646.323416,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,65,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,900,1442.989680,65,0,654.552580,hintandextended,nbiot,60 -on6,0,0,26,1,0,199,1580.072240,65,2,658.295812,hintandextended,nbiot,60 -on1,0,0,25,1,0,180,1501.989680,65,1,639.159080,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,60,1440.010320,66,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,240,1440.010320,66,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,66,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,421,1441.989680,66,0,604.102580,hintandextended,nbiot,60 -on5,0,0,24,1,0,125,1441.000000,66,0,607.853292,hintandextended,nbiot,60 -on3,0,0,24,1,0,1375,1475.010320,66,0,616.010836,hintandextended,nbiot,60 -on4,0,0,25,1,0,120,1502.630960,66,1,670.420800,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1519.661920,66,0,898.195016,hintandextended,nbiot,60 -on8,0,0,24,1,0,1225,1446.010320,66,0,629.110836,hintandextended,nbiot,60 -on9,0,0,25,1,0,219,1500.010320,66,1,626.017336,hintandextended,nbiot,60 -on6,0,0,24,1,0,900,1440.010320,66,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1153,1440.989680,67,0,602.402580,hintandextended,nbiot,60 -on3,0,0,24,1,0,43,1463.010320,67,0,611.210836,hintandextended,nbiot,60 -on5,0,0,24,1,0,960,1440.010320,67,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1533.661920,67,0,931.095016,hintandextended,nbiot,60 -on6,0,0,24,1,0,300,1440.010320,67,0,602.010836,hintandextended,nbiot,60 -on1,0,0,25,1,0,32,1513.620640,67,1,631.663380,hintandextended,nbiot,60 -on4,0,0,24,1,0,60,1441.000000,67,0,602.413416,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,67,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,540,1441.000000,67,0,602.413416,hintandextended,nbiot,60 -on2,0,0,24,1,0,167,1467.010320,67,0,612.810836,hintandextended,nbiot,60 -on7,0,0,24,1,0,0,1440.020640,68,0,602.021672,hintandextended,nbiot,60 -on9,0,0,24,1,0,500,1441.010320,68,0,639.720836,hintandextended,nbiot,60 -on10,0,0,25,1,0,477,1501.000000,68,1,626.419916,hintandextended,nbiot,60 -on1,0,0,24,1,0,1200,1440.010320,68,0,602.010836,hintandextended,nbiot,60 -on3,0,0,25,1,0,1260,1500.641280,68,1,626.471636,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1449.010320,68,0,977.410836,hintandextended,nbiot,60 -on11,0,0,24,1,0,390,1452.989680,68,0,644.525996,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1340,1440.010320,68,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,68,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,593,1500.220320,68,1,626.101336,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,319,1440.989680,69,0,602.402580,hintandextended,nbiot,60 -on0,1,3,24,0,0,0,1442.620640,69,0,681.451672,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,240,1500.641280,69,1,626.471636,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,471,1471.010320,69,0,614.410836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,69,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,540,1501.610320,70,1,626.859252,hintandextended,nbiot,60 -on9,0,0,24,1,0,660,1440.010320,70,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,420,1440.010320,70,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,1,0,1356,1457.010320,70,0,624.670836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,1418,1500.000000,70,1,626.013000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1450.010320,70,0,862.760836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,787,1440.989680,70,0,602.402580,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,70,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,35,1455.010320,70,0,608.010836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,213,1455.000000,71,0,633.370124,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,1019,1501.000000,71,1,639.009792,hintandextended,nbiot,60 -on5,0,0,25,1,0,60,1501.610320,71,1,626.859252,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,638,1500.010320,71,1,626.017336,hintandextended,nbiot,60 -on7,0,0,25,1,0,480,1501.610320,71,1,626.859252,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1500.872240,71,0,1002.615852,hintandextended,nbiot,60 -on3,0,0,24,1,0,540,1443.010320,71,0,664.577752,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,71,0,576.000000,hintandextended,nbiot,60 -on4,0,0,26,1,0,1049,1581.800640,71,2,659.793380,hintandextended,nbiot,60 -on8,0,0,24,1,0,853,1441.000000,72,0,602.413416,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1262,1440.989680,72,0,602.409288,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,385,1446.989680,72,0,604.815996,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,72,0,576.000000,hintandextended,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,72,0,813.900000,hintandextended,nbiot,60 -on5,0,0,25,1,0,1020,1503.579360,73,1,627.660284,hintandextended,nbiot,60 -on6,0,0,24,1,0,0,1440.010320,73,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,1,0,174,1475.000000,73,0,616.013416,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1496.630960,73,0,817.462508,hintandextended,nbiot,60 -on9,0,0,24,1,0,1353,1453.010320,73,0,607.210836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,73,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,447,1448.000000,74,0,605.213416,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1464.251600,74,0,892.664180,hintandextended,nbiot,60 -on2,0,0,25,1,0,497,1500.010320,74,1,626.017336,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,1020,1501.610320,74,1,626.859252,hintandextended,nbiot,60 -on3,0,0,25,1,0,960,1503.600000,74,1,646.511832,hintandextended,nbiot,60 -on8,0,0,24,1,0,360,1440.000000,74,0,602.013208,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,74,0,576.000000,hintandextended,nbiot,60 -on7,0,0,26,1,0,438,1582.630960,74,2,671.227300,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,780,1501.999680,75,1,626.826496,hintandextended,nbiot,60 -on10,0,0,24,1,0,1220,1440.010320,75,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,995,1456.000000,75,0,608.413416,hintandextended,nbiot,60 -on3,0,0,24,1,0,479,1479.010320,75,0,617.610836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,412,1500.020320,75,1,626.034544,hintandextended,nbiot,60 -on9,0,0,24,1,0,300,1441.010320,75,0,639.720836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,75,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,120,1502.589680,75,1,627.257704,hintandextended,nbiot,60 -on11,0,0,24,1,0,600,1440.010320,75,0,602.010836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1483.630960,75,0,975.412508,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,85,1445.010320,76,0,604.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,1139,1480.010320,76,0,644.660836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,993,1453.010320,76,0,607.210836,hintandextended,nbiot,60 -on1,0,0,24,1,0,1075,1475.010320,76,0,616.010836,hintandextended,nbiot,60 -on9,0,0,24,1,0,574,1454.020640,76,0,607.621672,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1461.630960,76,0,910.062508,hintandextended,nbiot,60 -on5,0,0,25,1,0,713,1534.630960,76,1,649.615592,hintandextended,nbiot,60 -on8,0,0,24,1,0,661,1441.000000,76,0,613.709792,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,76,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,704,1500.610320,76,1,675.644128,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,8,1442.979360,77,0,640.521868,hintandextended,nbiot,60 -on10,0,0,24,1,0,60,1440.010320,77,0,602.010836,hintandextended,nbiot,60 -on6,0,0,25,1,0,105,1501.010320,77,1,634.874044,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1385,1440.000000,77,0,602.006500,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1465.010320,77,0,760.210836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,77,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,913,1440.989680,78,0,602.402580,hintandextended,nbiot,60 -on5,0,0,24,1,0,757,1457.010320,78,0,608.810836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,1260,1441.010320,78,0,631.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,627,1448.020640,78,0,643.571672,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,78,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1424,1464.010000,78,0,611.610500,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1450.010320,78,0,797.760836,hintandextended,nbiot,60 -on9,0,0,25,1,0,887,1500.010320,79,1,626.017336,hintandextended,nbiot,60 -on3,0,0,25,1,0,814,1501.300000,79,1,643.029792,hintandextended,nbiot,60 -on8,0,0,25,1,0,120,1503.000000,79,1,644.828416,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,660,1440.010320,79,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,1,0,724,1441.989680,79,0,639.072580,hintandextended,nbiot,60 -on1,0,0,26,1,0,858,1583.640960,79,2,709.988008,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,1200,1501.010000,79,1,626.423916,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,79,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,196,1500.010320,79,1,626.017336,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1523.271920,79,0,1004.685516,hintandextended,nbiot,60 -on9,0,0,24,1,0,619,1442.348720,80,0,603.206196,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hintandextended,nbiot,60 -on11,0,0,26,1,0,319,1582.630960,80,2,668.822092,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1521.282560,80,0,994.796688,hintandextended,nbiot,60 -on2,0,0,24,1,0,180,1441.020640,80,0,604.631672,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1200,1440.010320,80,0,602.010836,hintandextended,nbiot,60 -on1,0,0,26,1,0,356,1560.320320,80,2,663.986128,hintandextended,nbiot,60 -on3,0,0,24,1,0,152,1452.010320,80,0,606.810836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,80,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,607,1503.348400,80,1,665.911192,hintandextended,nbiot,60 -on10,0,0,25,1,0,279,1502.000000,80,1,677.967792,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,630,1450.010320,81,0,606.010836,hintandextended,nbiot,60 -on8,0,0,24,1,0,154,1455.030960,81,0,645.342508,hintandextended,nbiot,60 -on5,0,0,25,1,0,1008,1500.020320,81,1,626.021336,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,nbiot,60 -on11,0,0,23,0,0,1392,1392.000000,81,0,556.800000,hintandextended,nbiot,60 -on9,0,0,24,1,0,382,1443.010320,81,0,603.224252,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,81,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,81,0,905.550000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1291,1451.010320,81,0,606.410836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,446,1446.010320,82,0,604.410836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,705,1466.000000,82,0,612.413416,hintandextended,nbiot,60 -on4,0,0,25,1,0,1200,1501.610320,82,1,626.859252,hintandextended,nbiot,60 -on3,0,0,24,1,0,180,1440.010320,82,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,82,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,82,0,834.050000,hintandextended,nbiot,60 -on2,0,0,24,1,0,275,1455.010320,82,0,608.010836,hintandextended,nbiot,60 -on6,0,0,24,1,0,84,1444.010320,83,0,603.610836,hintandextended,nbiot,60 -on1,0,0,25,1,0,1121,1501.000000,83,1,639.406500,hintandextended,nbiot,60 -on7,0,0,25,1,0,226,1502.000000,83,1,646.566500,hintandextended,nbiot,60 -on9,0,0,24,1,0,720,1440.010320,83,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hintandextended,nbiot,60 -on11,0,0,26,1,0,246,1583.610320,83,2,696.982460,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,83,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,18,1441.030960,83,0,602.439216,hintandextended,nbiot,60 -on4,0,0,24,1,0,1320,1440.010320,83,0,602.010836,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1538.671920,83,0,976.005516,hintandextended,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,83,0,602.006500,hintandextended,nbiot,60 -on5,0,0,24,1,0,120,1443.000000,83,0,681.076708,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,900,1440.010320,84,0,602.010836,hintandextended,nbiot,60 -on5,0,0,26,1,0,508,1582.630960,84,2,706.327300,hintandextended,nbiot,60 -on2,0,0,24,1,0,340,1462.000000,84,0,646.173416,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,442,1442.010320,84,0,602.810836,hintandextended,nbiot,60 -on4,0,0,24,1,0,780,1440.010320,84,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,1,0,60,1440.010320,84,0,602.010836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1508.661920,84,0,863.895016,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,84,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,524,1500.010320,84,1,626.017336,hintandextended,nbiot,60 -on3,0,0,25,1,0,398,1501.220320,84,1,663.811336,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,596,1478.000000,85,0,654.523416,hintandextended,nbiot,60 -on8,0,0,24,1,0,669,1441.010320,85,0,609.164128,hintandextended,nbiot,60 -on9,0,0,25,1,0,1020,1501.010000,85,1,626.423916,hintandextended,nbiot,60 -on10,0,0,26,1,0,745,1582.610640,85,2,659.279088,hintandextended,nbiot,60 -on11,0,0,24,1,0,1071,1471.010320,85,0,614.410836,hintandextended,nbiot,60 -on2,0,0,25,1,0,1405,1500.000000,85,1,626.013000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1529.661600,85,0,962.644680,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1320,1441.000000,85,0,614.360000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,85,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1497.020640,86,0,962.171672,hintandextended,nbiot,60 -on2,0,0,24,1,0,660,1440.010320,86,0,602.010836,hintandextended,nbiot,60 -on9,0,0,24,1,0,425,1440.010320,86,0,602.017544,hintandextended,nbiot,60 -on8,0,0,24,1,0,831,1471.010320,86,0,614.410836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,86,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1320,1440.010320,86,0,602.010836,hintandextended,nbiot,60 -on4,0,0,25,1,0,338,1500.010320,86,1,626.017336,hintandextended,nbiot,60 -on6,0,0,24,1,0,588,1468.010320,86,0,613.210836,hintandextended,nbiot,60 -on5,0,0,24,1,0,262,1443.010320,86,0,636.620836,hintandextended,nbiot,60 -on3,0,0,24,1,0,997,1457.010320,86,0,608.810836,hintandextended,nbiot,60 -on11,0,0,24,1,0,368,1440.000000,86,0,602.006708,hintandextended,nbiot,60 -on10,0,0,25,1,0,638,1500.020640,87,1,626.028172,hintandextended,nbiot,60 -on1,0,0,24,1,0,932,1452.010320,87,0,606.810836,hintandextended,nbiot,60 -on4,0,0,24,1,0,1397,1440.000000,87,0,602.006500,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1554.041280,87,0,1021.393344,hintandextended,nbiot,60 -on8,0,0,24,1,0,660,1440.010320,87,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,300,1441.000000,87,0,602.413416,hintandextended,nbiot,60 -on7,0,0,24,1,0,60,1440.010320,87,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,322,1442.010320,87,0,602.810836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,87,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,58,1478.030960,87,0,617.225800,hintandextended,nbiot,60 -on9,0,0,24,1,0,384,1444.010320,87,0,603.610836,hintandextended,nbiot,60 -on5,0,0,24,1,0,540,1441.000000,87,0,610.460000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,nbiot,60 -on3,0,0,25,1,0,547,1500.989680,88,2,626.617496,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,0,1440.010320,88,0,602.010836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1505.851280,88,0,954.543844,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,379,1440.989680,88,0,602.402580,hintandextended,nbiot,60 -on2,0,0,24,1,0,192,1440.020640,88,0,602.021672,hintandextended,nbiot,60 -on6,0,0,24,1,0,180,1440.010320,88,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,88,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,480,1503.600000,88,1,645.225040,hintandextended,nbiot,60 -on7,0,0,25,1,0,540,1501.020640,88,1,638.894964,hintandextended,nbiot,60 -on6,0,0,25,1,0,960,1501.010000,89,1,626.423916,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,120,1441.000000,89,0,602.413416,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,24,1444.010320,89,0,603.610836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,60,1441.030960,89,0,612.442508,hintandextended,nbiot,60 -on1,0,0,25,1,0,938,1501.030640,89,1,664.795380,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1495.040960,89,0,919.793008,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,89,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,510,1450.041280,90,0,606.029928,hintandextended,nbiot,60 -on6,0,0,24,1,0,1019,1479.010320,90,0,617.610836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,1264,1441.989680,90,0,636.212580,hintandextended,nbiot,60 -on4,0,0,24,1,0,360,1440.010320,90,0,602.010836,hintandextended,nbiot,60 -on8,0,0,25,1,0,1380,1500.300000,90,1,665.119792,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,90,0,798.950000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,90,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,1358,1501.000000,90,1,639.406500,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,1320,1440.010320,91,0,602.010836,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1481.020640,91,0,835.521672,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,518,1500.010320,91,1,626.017336,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,240,1440.030960,91,0,602.032508,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,91,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,420,1441.010320,91,0,633.870836,hintandextended,nbiot,60 -on2,0,0,24,1,0,354,1474.010320,91,0,615.610836,hintandextended,nbiot,60 -on8,0,0,24,1,0,1140,1440.010320,91,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,480,1502.620640,92,1,637.670088,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1511.261920,92,0,928.375016,hintandextended,nbiot,60 -on11,0,0,24,1,0,634,1455.010320,92,0,614.517544,hintandextended,nbiot,60 -on1,0,0,24,1,0,1020,1441.000000,92,0,602.413416,hintandextended,nbiot,60 -on4,0,0,26,1,0,1158,1583.630960,92,2,745.077300,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,92,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,1118,1501.220000,92,1,639.949292,hintandextended,nbiot,60 -on6,0,0,25,1,0,1217,1500.010320,92,1,626.017336,hintandextended,nbiot,60 -on1,0,0,24,1,0,600,1440.010320,93,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,508,1448.020640,93,0,605.221672,hintandextended,nbiot,60 -on7,0,0,25,1,0,120,1502.610320,93,1,627.272668,hintandextended,nbiot,60 -on4,0,0,24,1,0,244,1440.369360,93,0,602.401036,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,60,1440.010320,93,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,93,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,240,1503.600000,93,1,627.668540,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1500.641280,93,0,1025.123344,hintandextended,nbiot,60 -on8,0,0,24,1,0,1001,1461.010320,93,0,610.410836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,780,1440.010320,94,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,349,1469.010320,94,0,613.610836,hintandextended,nbiot,60 -on2,0,0,24,1,0,629,1451.000000,94,0,644.763416,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,300,1441.000000,94,0,602.413416,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1479.020640,94,0,793.771672,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,94,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,326,1446.020640,95,0,604.421672,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,540,1502.020320,95,1,673.881336,hintandextended,nbiot,60 -on9,0,0,24,1,0,1432,1472.010000,95,0,614.810500,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1464.020320,95,0,1000.321336,hintandextended,nbiot,60 -on4,0,0,24,1,0,0,1440.010320,95,0,602.010836,hintandextended,nbiot,60 -on3,0,0,25,1,0,658,1500.010320,95,1,626.017336,hintandextended,nbiot,60 -on2,0,0,25,1,0,477,1502.000000,95,1,642.679916,hintandextended,nbiot,60 -on8,0,0,25,1,0,360,1502.620640,95,1,665.873380,hintandextended,nbiot,60 -on11,0,0,25,1,0,578,1500.000000,95,1,626.019708,hintandextended,nbiot,60 -on7,0,0,24,1,0,96,1457.000000,95,0,608.813416,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,95,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,76,1501.430320,96,1,640.033420,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,720,1440.010320,96,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,1,0,1203,1440.010320,96,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,1095,1441.000000,96,0,605.253292,hintandextended,nbiot,60 -on7,0,0,26,1,0,138,1581.620640,96,2,658.869880,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,0,1440.369680,96,0,602.407872,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1481.261920,96,0,868.275016,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,1138,1539.620640,96,1,642.063380,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,96,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,1196,1476.010320,97,0,616.410836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,99,1502.000000,97,1,665.019792,hintandextended,nbiot,60 -on11,0,0,25,1,0,420,1502.610320,97,1,665.609252,hintandextended,nbiot,60 -on5,0,0,26,1,0,198,1561.310320,97,2,679.390628,hintandextended,nbiot,60 -on8,0,0,24,1,0,1080,1440.010320,97,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,255,1444.020320,97,1,603.621336,hintandextended,nbiot,60 -on9,0,0,25,1,0,60,1502.600000,97,1,664.565124,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1478.630960,97,0,999.406008,hintandextended,nbiot,60 -on7,0,0,24,1,0,56,1477.010320,97,0,626.820836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,97,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,171,1501.020320,97,1,639.421336,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1260,1440.010320,98,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,1,0,786,1440.010320,98,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,1020,1440.010320,98,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,98,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1382,1440.000000,98,0,602.006500,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1515.030960,98,0,837.432508,hintandextended,nbiot,60 -on1,0,0,24,1,0,983,1443.010320,98,0,603.210836,hintandextended,nbiot,60 -on3,0,0,24,1,0,600,1441.000000,98,0,602.413416,hintandextended,nbiot,60 -on1,0,0,25,1,0,36,1519.251600,99,1,639.129180,hintandextended,nbiot,60 -on8,0,0,25,1,0,0,1501.969040,99,1,639.202616,hintandextended,nbiot,60 -on11,0,0,24,1,0,83,1443.010320,99,0,603.210836,hintandextended,nbiot,60 -on2,0,0,26,1,0,541,1584.820320,99,2,697.472752,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,99,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,180,1441.010320,99,0,640.760836,hintandextended,nbiot,60 -on4,0,0,24,1,0,240,1440.010320,99,0,602.010836,hintandextended,nbiot,60 -on5,0,0,25,1,0,578,1502.989680,99,1,678.559080,hintandextended,nbiot,60 -on10,0,0,24,1,0,489,1442.000000,99,0,623.859792,hintandextended,nbiot,60 -on3,0,0,24,1,0,420,1441.000000,99,0,614.360000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1532.892880,99,0,977.737524,hintandextended,nbiot,60 -on9,0,0,26,0,0,1433,1608.090000,99,3,732.929084,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,1340,1440.010320,100,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,920,1441.000000,100,0,602.413416,hintandextended,nbiot,60 -on8,0,0,24,1,0,600,1440.989680,100,0,602.409288,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1459.010320,100,0,837.760836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,195,1440.020640,100,0,602.021672,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,129,1440.010320,100,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,100,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,1119,1500.010320,101,1,626.017336,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1491.020320,101,0,843.421336,hintandextended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,101,0,602.006500,hintandextended,nbiot,60 -on3,0,0,24,1,0,103,1464.000000,101,0,611.613416,hintandextended,nbiot,60 -on9,0,0,24,1,0,207,1448.010320,101,0,605.224252,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,960,1442.000000,101,0,632.323416,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,101,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,874,1455.000000,102,0,608.013416,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,737,1440.000000,102,0,602.006708,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,102,0,703.400000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,102,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,1282,1442.010320,102,0,602.810836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,103,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,728,1443.359360,103,0,614.673868,hintandextended,nbiot,60 -on5,0,0,24,1,0,382,1442.010320,103,0,602.810836,hintandextended,nbiot,60 -on2,0,0,25,1,0,991,1501.300000,103,1,656.413292,hintandextended,nbiot,60 -on4,0,0,25,1,0,878,1501.010320,103,1,662.687336,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1495.651600,103,0,1040.684180,hintandextended,nbiot,60 -on8,0,0,26,1,0,1038,1582.620640,103,2,678.113380,hintandextended,nbiot,60 -on3,0,0,24,1,0,1200,1441.000000,103,0,615.400000,hintandextended,nbiot,60 -on6,0,0,24,1,0,600,1440.010320,103,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,1,0,527,1469.010320,103,0,624.017544,hintandextended,nbiot,60 -on11,0,0,25,1,0,819,1500.020640,103,1,626.028172,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,407,1468.010320,104,0,648.310836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1460.630960,104,0,897.962508,hintandextended,nbiot,60 -on8,0,0,24,1,0,262,1442.010320,104,0,602.810836,hintandextended,nbiot,60 -on7,0,0,24,1,0,1020,1440.010320,104,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,1,0,904,1440.989680,104,0,602.402580,hintandextended,nbiot,60 -on10,0,0,25,1,0,406,1527.620640,104,1,637.263380,hintandextended,nbiot,60 -on2,0,0,24,1,0,235,1475.020640,104,0,616.021672,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,833,1473.010320,104,0,615.210836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,104,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,480,1440.020640,105,0,602.021672,hintandextended,nbiot,60 -on9,0,0,24,1,0,180,1440.010320,105,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1524.030640,105,0,756.532172,hintandextended,nbiot,60 -on10,0,0,24,1,0,1380,1440.000000,105,0,602.006500,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,105,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,1361,1461.010320,105,0,610.410836,hintandextended,nbiot,60 -on1,0,0,25,1,0,938,1500.220320,106,1,626.101336,hintandextended,nbiot,60 -on5,0,0,24,1,0,780,1441.000000,106,0,615.003292,hintandextended,nbiot,60 -on6,0,0,24,1,0,240,1440.010320,106,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,1,0,1069,1469.010320,106,0,613.610836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,35,1455.010320,106,0,608.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,106,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,891,1500.010320,106,1,626.017336,hintandextended,nbiot,60 -on7,0,0,24,1,0,1140,1440.010320,106,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,86,1446.010320,106,0,604.410836,hintandextended,nbiot,60 -on10,0,0,25,1,0,787,1503.369040,106,1,708.026032,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1515.651600,106,0,905.684180,hintandextended,nbiot,60 -on1,0,0,24,1,0,300,1440.010320,107,0,602.010836,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1453.010320,107,0,724.210836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,494,1440.000000,107,0,602.006708,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1351,1451.010320,107,0,606.410836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,107,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,1175,1455.010320,107,0,608.010836,hintandextended,nbiot,60 -on7,0,0,25,1,0,420,1502.620640,108,1,674.316672,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,374,1500.989680,108,1,626.610996,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,529,1500.200320,108,1,626.093336,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,108,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1486.251600,108,0,820.864180,hintandextended,nbiot,60 -on10,0,0,24,1,0,144,1444.010320,108,0,603.610836,hintandextended,nbiot,60 -on9,0,0,24,1,0,772,1472.010320,108,0,614.810836,hintandextended,nbiot,60 -on8,0,0,24,1,0,366,1441.989680,108,0,611.505872,hintandextended,nbiot,60 -on7,0,0,24,1,0,335,1455.010320,109,0,608.010836,hintandextended,nbiot,60 -on11,0,0,25,1,0,218,1500.010320,109,1,626.017336,hintandextended,nbiot,60 -on10,0,0,25,1,0,285,1500.010320,109,1,626.017336,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1473.620640,109,0,806.301672,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,60,1440.010320,109,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,625,1445.010320,109,0,604.010836,hintandextended,nbiot,60 -on3,0,0,25,1,0,120,1503.620640,109,1,686.676672,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,109,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1464.620640,110,0,898.251672,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,476,1476.010320,110,0,616.410836,hintandextended,nbiot,60 -on3,0,0,24,1,0,27,1447.010320,110,0,604.810836,hintandextended,nbiot,60 -on10,0,0,25,1,0,720,1501.620640,110,1,626.870088,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,110,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,480,1441.010320,110,0,640.110836,hintandextended,nbiot,60 -on1,0,0,25,1,0,562,1500.320640,110,1,650.841672,hintandextended,nbiot,60 -on9,0,0,24,1,0,62,1440.989680,110,0,602.409288,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,111,0,849.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,480,1502.620640,111,1,674.316672,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,400,1461.000000,111,0,610.413416,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,798,1440.010320,111,0,602.010836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1052,1452.010320,111,0,606.810836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,596,1501.989680,111,1,626.822496,hintandextended,nbiot,60 -on6,0,0,24,1,0,966,1440.010320,111,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,111,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1397,1440.000000,112,0,602.006500,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1493.630960,112,0,960.562508,hintandextended,nbiot,60 -on11,0,0,25,1,0,698,1501.010320,112,1,664.767336,hintandextended,nbiot,60 -on9,0,0,24,1,0,37,1458.000000,112,0,609.213416,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,660,1441.000000,112,0,605.916708,hintandextended,nbiot,60 -on1,0,0,24,1,0,1163,1443.010320,112,0,603.210836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,815,1455.010320,112,0,608.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,1289,1449.010320,112,0,605.610836,hintandextended,nbiot,60 -on7,0,0,25,1,0,300,1502.600000,112,1,627.261832,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,112,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,878,1500.220320,113,1,626.101336,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,900,1441.000000,113,0,602.413416,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,420,1441.000000,113,0,602.413416,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1471.020640,113,0,749.621672,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,788,1441.000000,113,0,610.466708,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,113,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,680,1440.010320,114,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,1020,1501.610320,114,1,626.859252,hintandextended,nbiot,60 -on6,0,0,24,1,0,360,1442.000000,114,0,642.060000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,818,1501.000000,114,1,639.009792,hintandextended,nbiot,60 -on10,0,0,25,1,0,364,1503.348400,114,1,655.121192,hintandextended,nbiot,60 -on3,0,0,25,1,0,496,1500.030960,114,1,626.032300,hintandextended,nbiot,60 -on1,0,0,25,1,0,815,1517.620640,114,1,671.613380,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1509.882560,114,0,953.576688,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,114,0,576.000000,hintandextended,nbiot,60 -on1,0,0,26,1,0,441,1561.230640,115,2,665.858464,hintandextended,nbiot,60 -on4,0,0,25,1,0,518,1501.010320,115,1,643.317336,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1503.902880,115,0,997.998024,hintandextended,nbiot,60 -on10,0,0,25,1,0,286,1502.300000,115,1,685.933500,hintandextended,nbiot,60 -on5,0,0,27,1,0,495,1621.610320,115,3,737.297212,hintandextended,nbiot,60 -on2,0,0,24,1,0,935,1455.010320,115,0,608.010836,hintandextended,nbiot,60 -on8,0,0,27,1,0,396,1642.510000,115,3,735.218708,hintandextended,nbiot,60 -on11,0,0,25,1,0,359,1502.010320,115,1,677.517336,hintandextended,nbiot,60 -on6,0,0,25,1,0,180,1502.020640,115,1,675.493256,hintandextended,nbiot,60 -on3,0,0,25,1,0,240,1502.589360,115,2,627.264076,hintandextended,nbiot,60 -on9,0,0,25,1,0,201,1504.241280,115,1,656.114928,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,115,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,158,1501.010320,116,1,663.727336,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,1260,1501.610320,116,1,626.859252,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1504.641280,116,0,920.773344,hintandextended,nbiot,60 -on2,0,0,24,1,0,540,1440.010320,116,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,1080,1440.010320,116,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,607,1440.989680,116,0,602.402580,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,nbiot,60 -on3,0,0,25,1,0,229,1501.010320,116,1,626.430752,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,116,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,94,1455.010320,116,0,616.070836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,900,1440.010320,117,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,60,1440.010320,117,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,1058,1501.230640,117,1,664.855464,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1480.030960,117,0,736.982508,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,1020,1441.000000,117,0,610.460000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,360,1440.010320,117,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,117,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1212,1440.010320,118,0,602.010836,hintandextended,nbiot,60 -on4,0,0,25,1,0,579,1500.010320,118,1,626.017336,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1327,1441.000000,118,0,610.453292,hintandextended,nbiot,60 -on11,0,0,24,1,0,480,1441.010320,118,0,631.920836,hintandextended,nbiot,60 -on9,0,0,24,1,0,180,1440.020640,118,0,602.021672,hintandextended,nbiot,60 -on7,0,0,24,1,0,1414,1454.010000,118,0,607.610500,hintandextended,nbiot,60 -on2,0,0,25,1,0,1371,1531.630960,118,1,638.860800,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1464.641280,118,0,931.423344,hintandextended,nbiot,60 -on5,0,0,25,1,0,360,1501.610320,118,1,626.859252,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,118,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,1218,1440.010320,119,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,1,0,1020,1441.010320,119,0,639.720836,hintandextended,nbiot,60 -on2,0,0,24,1,0,300,1441.000000,119,0,602.413416,hintandextended,nbiot,60 -on9,0,0,24,1,0,360,1440.010320,119,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,900,1442.989680,119,0,633.765996,hintandextended,nbiot,60 -on6,0,0,24,1,0,39,1459.010320,119,0,609.610836,hintandextended,nbiot,60 -on7,0,0,24,1,0,1319,1479.010320,119,0,617.610836,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1538.030960,119,0,1024.082508,hintandextended,nbiot,60 -on11,0,0,24,1,0,1200,1440.010320,119,0,602.010836,hintandextended,nbiot,60 -on10,0,0,25,1,0,1101,1500.310320,119,1,645.240836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,119,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,824,1464.010320,119,0,611.610836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,607,1441.989680,120,0,640.112580,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,703,1500.010320,120,1,626.017336,hintandextended,nbiot,60 -on7,0,0,25,1,0,491,1501.010320,120,1,626.625960,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,420,1440.010320,120,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,491,1441.000000,120,0,607.853292,hintandextended,nbiot,60 -on6,0,0,25,1,0,780,1502.620640,120,1,665.620088,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,120,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1479.641280,120,0,893.223344,hintandextended,nbiot,60 -on8,0,0,25,1,0,240,1501.610320,121,1,626.859252,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1329,1440.010320,121,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,660,1441.989680,121,0,602.815996,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,121,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,120,1441.010320,121,0,630.367544,hintandextended,nbiot,60 -on9,0,0,24,1,0,778,1478.010320,121,0,617.210836,hintandextended,nbiot,60 -on5,0,0,25,1,0,836,1537.620640,121,1,641.263380,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1476.251600,121,0,938.414180,hintandextended,nbiot,60 -on4,0,0,24,1,0,1265,1440.000000,121,0,602.006708,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1140,1440.010320,122,0,602.010836,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1475.020320,122,0,833.771336,hintandextended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,122,0,602.006500,hintandextended,nbiot,60 -on5,0,0,24,1,0,322,1442.020640,122,0,602.821672,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,833,1473.010320,122,0,615.210836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,120,1440.020640,122,0,602.021672,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,122,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,318,1442.000000,123,0,640.123416,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,nbiot,60 -on1,0,0,26,1,0,870,1581.620640,123,2,658.869880,hintandextended,nbiot,60 -on9,0,0,25,1,0,240,1500.641280,123,1,626.471636,hintandextended,nbiot,60 -on5,0,0,24,1,0,795,1441.000000,123,0,605.253292,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,123,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,535,1476.020640,123,0,637.878380,hintandextended,nbiot,60 -on10,0,0,24,1,0,431,1441.979360,123,0,602.811868,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1476.251600,123,0,941.664180,hintandextended,nbiot,60 -on1,0,0,24,1,0,1131,1472.010320,124,0,631.710836,hintandextended,nbiot,60 -on2,0,0,25,1,0,720,1502.620320,124,2,664.579752,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,124,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,398,1503.210000,124,1,694.123916,hintandextended,nbiot,60 -on10,0,0,25,1,0,466,1500.010320,124,1,626.017336,hintandextended,nbiot,60 -on9,0,0,24,1,0,480,1442.979360,124,0,603.218576,hintandextended,nbiot,60 -on6,0,0,24,1,0,563,1443.010320,124,0,603.210836,hintandextended,nbiot,60 -on8,0,0,24,1,0,0,1440.010320,124,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,300,1440.400640,124,0,602.433672,hintandextended,nbiot,60 -on7,0,0,25,1,0,899,1500.220320,124,1,626.101336,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1491.030640,124,0,1125.532172,hintandextended,nbiot,60 -on4,0,0,24,1,0,1380,1440.000000,124,0,602.006500,hintandextended,nbiot,60 -on6,0,0,24,1,0,32,1452.020640,125,0,606.821672,hintandextended,nbiot,60 -on2,0,0,24,1,0,212,1452.020640,125,0,606.821672,hintandextended,nbiot,60 -on8,0,0,24,1,0,809,1449.020640,125,0,605.621672,hintandextended,nbiot,60 -on3,0,0,24,1,0,900,1440.010320,125,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,1,0,600,1460.610320,125,1,610.459252,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,125,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1478.010320,125,0,903.860836,hintandextended,nbiot,60 -on9,0,0,25,1,0,416,1501.010320,126,1,664.767336,hintandextended,nbiot,60 -on11,0,0,24,1,0,266,1459.020640,126,1,625.228172,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,126,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,1178,1500.010320,126,1,626.017336,hintandextended,nbiot,60 -on7,0,0,24,1,0,180,1441.010320,126,0,639.720836,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1456.630960,126,0,1031.562508,hintandextended,nbiot,60 -on6,0,0,24,1,0,607,1440.989680,126,0,602.402580,hintandextended,nbiot,60 -on3,0,0,24,1,0,130,1441.989680,126,0,602.815996,hintandextended,nbiot,60 -on2,0,0,24,1,0,327,1448.010320,126,0,642.520836,hintandextended,nbiot,60 -on5,0,0,25,1,0,660,1501.610320,126,1,626.859252,hintandextended,nbiot,60 -on4,0,0,24,1,0,1106,1447.010320,126,0,622.620836,hintandextended,nbiot,60 -on4,0,0,24,1,0,0,1441.000000,127,0,609.153292,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1518.272240,127,0,1028.685852,hintandextended,nbiot,60 -on9,0,0,25,1,0,1036,1500.010320,127,1,626.017336,hintandextended,nbiot,60 -on8,0,0,24,1,0,411,1472.000000,127,0,614.813416,hintandextended,nbiot,60 -on11,0,0,24,1,0,960,1441.000000,127,0,615.010208,hintandextended,nbiot,60 -on10,0,0,25,1,0,0,1501.620640,127,1,626.863380,hintandextended,nbiot,60 -on2,0,0,25,1,0,375,1502.610320,127,1,627.265960,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,554,1440.000000,127,0,602.006708,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,127,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,294,1476.010320,127,0,638.524252,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,614,1440.000000,128,0,602.006708,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1324,1440.989680,128,0,602.402580,hintandextended,nbiot,60 -on4,0,0,24,1,0,960,1440.010320,128,0,602.010836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,128,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,209,1449.010320,128,0,605.610836,hintandextended,nbiot,60 -on2,0,0,24,1,0,303,1440.010320,128,0,602.010836,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1440.000000,128,0,764.500000,hintandextended,nbiot,60 -on1,0,0,24,1,0,276,1459.020640,129,0,705.828380,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1487.020640,129,0,971.171672,hintandextended,nbiot,60 -on4,0,0,24,1,0,712,1473.000000,129,0,615.213416,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,478,1500.010320,129,1,626.017336,hintandextended,nbiot,60 -on6,0,0,25,1,0,415,1501.010320,129,1,663.727336,hintandextended,nbiot,60 -on3,0,0,24,1,0,945,1466.010320,129,0,639.060836,hintandextended,nbiot,60 -on10,0,0,24,1,0,16,1440.989680,129,0,602.402580,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,129,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,300,1441.010320,129,0,639.720836,hintandextended,nbiot,60 -on9,0,0,24,1,0,720,1440.020640,129,0,602.021672,hintandextended,nbiot,60 -on8,0,0,24,1,0,686,1447.000000,130,0,604.813416,hintandextended,nbiot,60 -on3,0,0,24,1,0,360,1440.010320,130,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,322,1442.010320,130,0,602.810836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,130,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,660,1442.000000,130,0,617.106708,hintandextended,nbiot,60 -on4,0,0,24,1,0,594,1474.010320,130,0,615.610836,hintandextended,nbiot,60 -on5,0,0,24,1,0,179,1479.020640,130,0,617.621672,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1514.030960,130,0,946.882508,hintandextended,nbiot,60 -on1,0,0,24,1,0,862,1442.010320,130,0,602.810836,hintandextended,nbiot,60 -on2,0,0,24,1,0,1200,1440.010320,130,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,987,1447.010320,131,0,604.810836,hintandextended,nbiot,60 -on7,0,0,24,1,0,540,1441.010320,131,0,624.120836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,720,1440.010320,131,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,1,0,98,1459.000000,131,0,609.613416,hintandextended,nbiot,60 -on9,0,0,25,1,0,638,1500.010320,131,1,626.017336,hintandextended,nbiot,60 -on6,0,0,24,1,0,360,1440.010320,131,0,602.010836,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1485.030960,131,0,793.582508,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,131,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1471.651280,132,0,886.783844,hintandextended,nbiot,60 -on4,0,0,24,1,0,1380,1440.000000,132,0,602.006500,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,277,1458.000000,132,0,609.213416,hintandextended,nbiot,60 -on11,0,0,24,1,0,634,1454.010320,132,0,607.610836,hintandextended,nbiot,60 -on7,0,0,24,1,0,60,1440.010320,132,0,602.010836,hintandextended,nbiot,60 -on2,0,0,25,1,0,1046,1508.620640,132,1,668.013380,hintandextended,nbiot,60 -on6,0,0,24,1,0,1031,1441.000000,132,0,607.853292,hintandextended,nbiot,60 -on10,0,0,24,1,0,159,1459.010320,132,0,609.610836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,132,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,58,1478.010320,133,0,617.210836,hintandextended,nbiot,60 -on10,0,0,26,1,0,139,1582.910320,133,2,669.135960,hintandextended,nbiot,60 -on5,0,0,24,1,0,3,1500.620640,133,1,738.133380,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,120,1440.010320,133,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,458,1459.000000,133,1,609.613208,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,133,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,85,1461.010320,133,1,613.010836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1481.261920,133,0,963.175016,hintandextended,nbiot,60 -on9,0,0,24,1,0,865,1446.000000,133,0,604.413416,hintandextended,nbiot,60 -on2,0,0,24,1,0,634,1454.010320,133,0,607.610836,hintandextended,nbiot,60 -on10,0,0,26,1,0,1233,1582.840640,134,2,669.367880,hintandextended,nbiot,60 -on7,0,0,25,1,0,1265,1500.310320,134,1,637.830836,hintandextended,nbiot,60 -on1,0,0,24,1,0,840,1440.010320,134,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,120,1440.020640,134,0,602.021672,hintandextended,nbiot,60 -on6,0,0,24,1,0,240,1440.010320,134,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,134,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,710,1470.020640,134,0,614.021672,hintandextended,nbiot,60 -on5,0,0,25,1,0,1200,1501.010320,134,1,639.872128,hintandextended,nbiot,60 -on3,0,0,24,1,0,1109,1450.010320,134,0,643.704336,hintandextended,nbiot,60 -on8,0,0,24,1,0,720,1440.010320,134,0,602.010836,hintandextended,nbiot,60 -on4,0,0,25,1,0,600,1500.641280,134,1,626.471636,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1515.661920,134,0,1039.595016,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1524.661920,135,0,951.545016,hintandextended,nbiot,60 -on6,0,0,25,1,0,277,1519.641280,135,1,653.831636,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,339,1502.000000,135,1,656.726624,hintandextended,nbiot,60 -on5,0,0,24,1,0,1228,1448.010320,135,0,605.210836,hintandextended,nbiot,60 -on7,0,0,24,1,0,240,1441.989680,135,0,615.405872,hintandextended,nbiot,60 -on10,0,0,24,1,0,840,1441.010320,135,0,638.817544,hintandextended,nbiot,60 -on1,0,0,24,1,0,831,1471.010320,135,0,614.410836,hintandextended,nbiot,60 -on8,0,0,24,1,0,420,1441.000000,135,0,603.700000,hintandextended,nbiot,60 -on9,0,0,24,1,0,480,1441.000000,135,0,602.413416,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,135,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,0,1440.020640,136,0,602.021672,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,649,1469.010320,136,0,613.610836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,240,1440.010320,136,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,86,1446.010320,136,0,604.410836,hintandextended,nbiot,60 -on4,0,0,24,1,0,989,1450.000000,136,0,606.013416,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,136,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1466.020640,136,0,815.221672,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,1020,1442.000000,137,0,641.163416,hintandextended,nbiot,60 -on8,0,0,25,1,0,660,1501.610320,137,1,626.859252,hintandextended,nbiot,60 -on6,0,0,25,1,0,431,1502.300000,137,1,680.746500,hintandextended,nbiot,60 -on7,0,0,24,1,0,610,1442.000000,137,0,641.163416,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,360,1501.969040,137,1,632.462740,hintandextended,nbiot,60 -on10,0,0,25,1,0,120,1501.610320,137,1,626.859252,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1530.872240,137,0,1034.115852,hintandextended,nbiot,60 -on11,0,0,24,1,0,1380,1440.000000,137,0,602.006500,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,137,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,486,1502.289680,137,1,647.729288,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,540,1440.010320,138,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,671,1441.000000,138,0,607.853292,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,84,1445.000000,138,0,604.013416,hintandextended,nbiot,60 -on4,0,0,24,1,0,732,1441.000000,138,0,602.413416,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,759,1501.010320,138,1,663.727336,hintandextended,nbiot,60 -on2,0,0,25,1,0,885,1501.010320,138,1,641.367336,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1460.630960,138,0,853.762508,hintandextended,nbiot,60 -on11,0,0,25,1,0,694,1516.630960,138,1,658.470800,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,138,0,576.000000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1531.672240,139,0,983.605852,hintandextended,nbiot,60 -on3,0,0,26,1,0,1316,1580.072240,139,2,658.055312,hintandextended,nbiot,60 -on1,0,0,24,1,0,1200,1441.000000,139,0,614.360000,hintandextended,nbiot,60 -on7,0,0,24,1,0,37,1458.000000,139,0,609.213416,hintandextended,nbiot,60 -on2,0,0,26,1,0,1318,1561.679680,139,2,678.374664,hintandextended,nbiot,60 -on9,0,0,24,1,0,977,1441.989680,139,0,606.702580,hintandextended,nbiot,60 -on5,0,0,25,1,0,1140,1501.610320,139,1,626.859252,hintandextended,nbiot,60 -on10,0,0,24,1,0,282,1462.979360,139,0,611.205160,hintandextended,nbiot,60 -on4,0,0,25,1,0,1313,1501.210000,139,1,638.840500,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,360,1440.010320,139,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,139,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1080,1441.010320,140,0,636.860836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,274,1455.000000,140,0,608.013416,hintandextended,nbiot,60 -on11,0,0,25,1,0,1016,1500.010320,140,1,626.017336,hintandextended,nbiot,60 -on2,0,0,24,1,0,600,1440.010320,140,0,602.010836,hintandextended,nbiot,60 -on1,0,0,25,1,0,153,1514.620640,140,1,632.063380,hintandextended,nbiot,60 -on3,0,0,24,1,0,76,1444.969040,140,0,646.517740,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1492.651600,140,0,1049.234180,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,140,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,162,1501.010000,140,1,639.013792,hintandextended,nbiot,60 -on4,0,0,24,1,0,713,1474.020640,140,0,652.931672,hintandextended,nbiot,60 -on3,0,0,24,1,0,300,1441.010320,141,0,639.720836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,599,1479.010320,141,0,617.610836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1462.010320,141,0,761.610836,hintandextended,nbiot,60 -on8,0,0,25,1,0,413,1500.220320,141,1,626.101336,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,141,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,974,1440.000000,141,0,602.006708,hintandextended,nbiot,60 -on11,0,0,24,1,0,120,1440.010320,141,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,720,1440.010320,142,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,924,1444.010320,142,0,603.610836,hintandextended,nbiot,60 -on3,0,0,24,1,0,95,1455.010320,142,0,608.010836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,142,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,300,1440.010320,142,0,602.010836,hintandextended,nbiot,60 -on5,0,0,25,1,0,900,1502.630960,142,1,661.724216,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1480.630960,142,0,792.212508,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,300,1441.010320,143,0,639.720836,hintandextended,nbiot,60 -on10,0,0,25,1,0,380,1502.610320,143,1,627.265960,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1521.282560,143,0,972.046688,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,498,1442.000000,143,0,603.716708,hintandextended,nbiot,60 -on6,0,0,25,1,0,407,1501.989680,143,1,639.412372,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,143,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,660,1441.000000,143,0,615.400000,hintandextended,nbiot,60 -on5,0,0,25,1,0,536,1537.630960,143,1,641.274216,hintandextended,nbiot,60 -on6,0,0,25,1,0,676,1501.000000,144,1,632.913208,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,42,1463.989680,144,0,611.615996,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1448.010320,144,0,906.160836,hintandextended,nbiot,60 -on10,0,0,24,1,0,1310,1471.010320,144,0,626.370836,hintandextended,nbiot,60 -on7,0,0,24,1,0,600,1441.010320,144,0,610.470836,hintandextended,nbiot,60 -on5,0,0,24,1,0,780,1441.000000,144,0,614.360000,hintandextended,nbiot,60 -on1,0,0,25,1,0,859,1500.010320,144,1,626.017336,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,144,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,1341,1500.310320,144,1,644.337336,hintandextended,nbiot,60 -on10,0,0,24,1,0,720,1442.000000,145,0,641.163416,hintandextended,nbiot,60 -on3,0,0,24,1,0,32,1453.010320,145,0,619.170836,hintandextended,nbiot,60 -on8,0,0,24,1,0,300,1440.010320,145,0,602.010836,hintandextended,nbiot,60 -on0,1,10,24,0,0,0,1453.020640,145,0,1031.671672,hintandextended,nbiot,60 -on5,0,0,25,1,0,98,1501.010000,145,1,626.437124,hintandextended,nbiot,60 -on1,0,0,25,1,0,579,1500.010320,145,1,626.017336,hintandextended,nbiot,60 -on6,0,0,24,1,0,517,1480.010320,145,1,647.527336,hintandextended,nbiot,60 -on4,0,0,25,1,0,900,1500.051280,145,1,626.047136,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,145,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,433,1441.989680,145,0,612.812580,hintandextended,nbiot,60 -on9,0,0,24,1,0,1020,1440.010320,145,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,1185,1465.010320,145,0,612.010836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1512.272240,146,0,954.785852,hintandextended,nbiot,60 -on5,0,0,24,1,0,480,1440.010320,146,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,240,1501.610320,146,1,626.859252,hintandextended,nbiot,60 -on6,0,0,25,1,0,1089,1501.989680,146,1,633.750872,hintandextended,nbiot,60 -on7,0,0,25,1,0,1096,1501.010320,146,1,639.020628,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,360,1440.010320,146,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,146,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,220,1461.010320,146,0,636.417544,hintandextended,nbiot,60 -on3,0,0,25,1,0,188,1500.989680,146,1,626.610996,hintandextended,nbiot,60 -on2,0,0,24,1,0,1076,1476.010320,146,0,616.410836,hintandextended,nbiot,60 -on4,0,0,24,1,0,969,1440.010320,147,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,455,1455.010320,147,0,608.010836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,1200,1440.010320,147,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,609,1440.020640,147,0,602.021672,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,147,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1462.010320,147,0,754.460836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,99,1500.020640,148,1,626.028172,hintandextended,nbiot,60 -on10,0,0,24,1,0,180,1441.010320,148,0,640.104336,hintandextended,nbiot,60 -on8,0,0,24,1,0,2,1441.000000,148,0,613.703292,hintandextended,nbiot,60 -on3,0,0,25,1,0,26,1508.620640,148,1,655.273380,hintandextended,nbiot,60 -on6,0,0,24,1,0,960,1440.010320,148,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,900,1441.000000,148,0,602.413416,hintandextended,nbiot,60 -on7,0,0,26,1,0,329,1583.780000,148,2,660.598540,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1518.282560,148,0,1110.596688,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,148,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,290,1501.230320,148,1,639.108628,hintandextended,nbiot,60 -on4,0,0,24,1,0,629,1449.020640,149,0,605.621672,hintandextended,nbiot,60 -on2,0,0,24,1,0,1379,1480.010320,149,0,656.360836,hintandextended,nbiot,60 -on6,0,0,24,1,0,538,1478.010320,149,0,617.210836,hintandextended,nbiot,60 -on1,0,0,25,1,0,352,1501.310320,149,1,663.190836,hintandextended,nbiot,60 -on3,0,0,24,1,0,285,1466.000000,149,0,612.413416,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1474.010320,149,0,964.660836,hintandextended,nbiot,60 -on10,0,0,25,1,0,398,1501.220320,149,1,642.108044,hintandextended,nbiot,60 -on7,0,0,24,1,0,18,1440.010320,149,0,602.010836,hintandextended,nbiot,60 -on9,0,0,24,1,0,467,1468.000000,149,0,613.213416,hintandextended,nbiot,60 -on5,0,0,24,1,0,240,1441.010320,149,0,640.110836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,149,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1178,1458.010320,150,0,609.210836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,19,1440.989680,150,0,602.402580,hintandextended,nbiot,60 -on2,0,0,24,1,0,455,1456.000000,150,0,608.413416,hintandextended,nbiot,60 -on6,0,0,24,1,0,876,1456.010320,150,0,608.410836,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1440.000000,150,0,811.950000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,551,1440.000000,150,0,602.006708,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,150,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,120,1440.010320,150,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,1,0,780,1440.010320,151,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,1,0,583,1463.010320,151,0,611.210836,hintandextended,nbiot,60 -on11,0,0,24,1,0,1080,1440.010320,151,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,382,1442.030960,151,0,602.825800,hintandextended,nbiot,60 -on2,0,0,25,1,0,660,1501.010000,151,1,626.430416,hintandextended,nbiot,60 -on10,0,0,25,1,0,720,1502.020320,151,1,665.184752,hintandextended,nbiot,60 -on9,0,0,25,1,0,600,1502.999680,151,1,678.374788,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1532.661600,151,0,941.094680,hintandextended,nbiot,60 -on1,0,0,24,1,0,420,1440.010320,151,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,151,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hintandextended,nbiot,60 -on9,0,0,26,1,0,240,1583.630640,152,2,728.443880,hintandextended,nbiot,60 -on8,0,0,24,1,0,0,1442.000000,152,0,639.083416,hintandextended,nbiot,60 -on11,0,0,26,1,0,356,1583.620640,152,2,736.369880,hintandextended,nbiot,60 -on10,0,0,26,1,0,236,1561.300000,152,2,676.116584,hintandextended,nbiot,60 -on7,0,0,24,1,0,960,1440.010320,152,0,602.010836,hintandextended,nbiot,60 -on2,0,0,25,1,0,163,1502.289680,152,1,647.462580,hintandextended,nbiot,60 -on5,0,0,24,1,0,1055,1455.010320,152,0,608.010836,hintandextended,nbiot,60 -on3,0,0,25,1,0,357,1501.989680,152,1,639.412372,hintandextended,nbiot,60 -on4,0,0,25,1,0,60,1502.589680,152,1,664.560996,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,152,0,576.000000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1518.892880,152,0,1046.887524,hintandextended,nbiot,60 -on1,0,0,25,1,0,600,1501.610320,153,1,626.859252,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,153,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,840,1502.610320,153,1,633.369252,hintandextended,nbiot,60 -on11,0,0,24,1,0,805,1480.630960,153,1,620.014092,hintandextended,nbiot,60 -on7,0,0,24,1,0,971,1442.000000,153,0,647.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,300,1503.569040,153,1,627.656156,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1531.492880,153,0,1087.417524,hintandextended,nbiot,60 -on6,0,0,24,1,0,1380,1440.000000,153,0,602.006500,hintandextended,nbiot,60 -on2,0,0,24,1,0,811,1451.020640,153,0,606.421672,hintandextended,nbiot,60 -on5,0,0,24,1,0,1290,1450.010320,153,0,606.010836,hintandextended,nbiot,60 -on3,0,0,26,1,0,1076,1560.520320,153,2,663.214628,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,480,1501.620640,154,1,626.870088,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1219,1441.969040,154,0,602.801032,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,154,0,576.000000,hintandextended,nbiot,60 -on0,1,3,24,0,0,0,1455.620640,154,0,763.351672,hintandextended,nbiot,60 -on6,0,0,24,1,0,1066,1466.010320,154,0,612.410836,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1463.241280,155,0,831.803344,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,589,1469.010320,155,0,613.610836,hintandextended,nbiot,60 -on7,0,0,25,1,0,1260,1501.610320,155,1,626.859252,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,155,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,1101,1441.010320,155,0,602.410836,hintandextended,nbiot,60 -on11,0,0,24,1,0,257,1440.000000,155,0,602.006708,hintandextended,nbiot,60 -on8,0,0,25,1,0,60,1501.610320,155,1,626.859252,hintandextended,nbiot,60 -on11,0,0,25,1,0,294,1501.000000,156,1,626.419916,hintandextended,nbiot,60 -on1,0,0,25,1,0,699,1500.010320,156,1,626.017336,hintandextended,nbiot,60 -on7,0,0,24,1,0,74,1440.000000,156,0,602.006708,hintandextended,nbiot,60 -on9,0,0,24,1,0,600,1441.010320,156,0,635.820836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,1,1441.010320,156,0,602.417544,hintandextended,nbiot,60 -on10,0,0,24,1,0,180,1441.010320,156,0,639.720836,hintandextended,nbiot,60 -on8,0,0,24,1,0,440,1440.010320,156,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,737,1440.000000,156,0,602.006708,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,156,0,576.000000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1467.010320,156,0,952.110836,hintandextended,nbiot,60 -on6,0,0,24,1,0,780,1440.010320,156,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,640,1460.010320,157,0,610.010836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,167,1467.010320,157,0,612.810836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,180,1440.010320,157,0,602.010836,hintandextended,nbiot,60 -on7,0,0,25,1,0,900,1502.000000,157,1,648.315000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,157,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,939,1500.020640,157,1,626.028172,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1496.630960,157,0,806.412508,hintandextended,nbiot,60 -on10,0,0,25,1,0,540,1502.620640,158,1,664.566672,hintandextended,nbiot,60 -on5,0,0,24,1,0,508,1448.010320,158,0,605.210836,hintandextended,nbiot,60 -on3,0,0,26,1,0,725,1581.920640,158,2,682.383380,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,693,1501.300000,158,1,656.666792,hintandextended,nbiot,60 -on8,0,0,24,1,0,459,1459.010320,158,0,609.610836,hintandextended,nbiot,60 -on2,0,0,25,1,0,639,1501.010320,158,1,664.117336,hintandextended,nbiot,60 -on6,0,0,24,1,0,840,1440.010320,158,0,602.010836,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1485.251600,158,0,924.464180,hintandextended,nbiot,60 -on9,0,0,24,1,0,240,1440.010320,158,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,1,0,206,1446.010320,158,0,604.410836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,158,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,807,1447.010320,159,0,604.810836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1481.261920,159,0,968.375016,hintandextended,nbiot,60 -on6,0,0,25,1,0,284,1526.620640,159,1,675.213380,hintandextended,nbiot,60 -on8,0,0,24,1,0,706,1466.010320,159,0,612.410836,hintandextended,nbiot,60 -on7,0,0,25,1,0,156,1517.620640,159,1,633.263380,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,155,1455.020640,159,0,608.021672,hintandextended,nbiot,60 -on5,0,0,24,1,0,562,1443.010320,159,0,641.560836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,159,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,1157,1440.000000,159,0,602.006708,hintandextended,nbiot,60 -on4,0,0,24,1,0,250,1441.000000,159,0,608.503292,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,304,1441.989680,160,0,612.805872,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,10,1441.989680,160,0,611.909288,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,nbiot,60 -on8,0,0,25,1,0,309,1502.610320,160,1,627.265960,hintandextended,nbiot,60 -on5,0,0,24,1,0,152,1452.010320,160,0,606.810836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1472.651600,160,0,903.434180,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,160,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,480,1441.010320,160,0,638.817544,hintandextended,nbiot,60 -on7,0,0,24,1,0,360,1440.020640,160,0,602.021672,hintandextended,nbiot,60 -on11,0,0,25,1,0,180,1502.989680,161,1,665.565996,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,70,1504.269040,161,1,707.014324,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1534.261920,161,0,889.475016,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,137,1582.630640,161,2,702.817380,hintandextended,nbiot,60 -on4,0,0,24,1,0,0,1494.610320,161,1,660.329252,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,161,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,176,1501.989680,161,1,629.415788,hintandextended,nbiot,60 -on1,0,0,24,1,0,237,1472.190000,162,1,627.479292,hintandextended,nbiot,60 -on5,0,0,24,1,0,180,1441.000000,162,0,606.826708,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hintandextended,nbiot,60 -on3,0,0,25,1,0,461,1501.000000,162,1,626.419916,hintandextended,nbiot,60 -on4,0,0,24,1,0,480,1442.010320,162,0,641.174252,hintandextended,nbiot,60 -on2,0,0,24,1,0,1364,1464.010320,162,0,611.610836,hintandextended,nbiot,60 -on6,0,0,26,1,0,261,1581.920640,162,2,695.253380,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,162,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,360,1442.010320,162,0,671.327544,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1523.672240,162,0,974.555852,hintandextended,nbiot,60 -on10,0,0,24,1,0,1260,1440.010320,162,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,943,1463.010320,163,0,611.210836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,85,1447.000000,163,0,642.123416,hintandextended,nbiot,60 -on4,0,0,24,1,0,335,1455.989680,163,0,608.409288,hintandextended,nbiot,60 -on3,0,0,24,1,0,1020,1440.010320,163,0,602.010836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1453.010320,163,0,939.360836,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,169,1500.020640,163,1,626.028172,hintandextended,nbiot,60 -on9,0,0,24,1,0,1352,1452.010320,163,0,606.810836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,366,1441.000000,163,0,602.413416,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,163,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,99,1460.000000,164,0,610.013416,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1462.010320,164,0,981.960836,hintandextended,nbiot,60 -on11,0,0,24,1,0,681,1441.010320,164,0,602.410836,hintandextended,nbiot,60 -on9,0,0,24,1,0,120,1442.979360,164,0,640.521868,hintandextended,nbiot,60 -on2,0,0,25,1,0,180,1502.600000,164,1,627.261832,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1144,1440.989680,164,0,602.402580,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,405,1500.989680,164,1,626.415788,hintandextended,nbiot,60 -on5,0,0,24,1,0,420,1440.010320,164,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,164,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,571,1451.010320,164,0,606.410836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1491.630960,165,0,852.512508,hintandextended,nbiot,60 -on1,0,0,25,1,0,1314,1500.020320,165,1,626.021336,hintandextended,nbiot,60 -on10,0,0,24,1,0,420,1440.010320,165,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,780,1501.610320,165,1,626.859252,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,840,1442.000000,165,0,641.163416,hintandextended,nbiot,60 -on11,0,0,24,1,0,515,1457.010320,165,0,646.134252,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,165,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,840,1442.979680,166,0,612.311788,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1518.282240,166,0,1183.396352,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hintandextended,nbiot,60 -on1,0,0,25,1,0,473,1501.310320,166,1,655.787544,hintandextended,nbiot,60 -on3,0,0,26,1,0,519,1582.820960,166,2,668.898092,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,960,1502.989680,166,1,678.552580,hintandextended,nbiot,60 -on7,0,0,24,1,0,283,1464.010320,166,0,648.920836,hintandextended,nbiot,60 -on10,0,0,25,1,0,398,1502.989680,166,1,639.182288,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,166,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,312,1442.000000,166,0,645.953292,hintandextended,nbiot,60 -on5,0,0,26,1,0,378,1584.610320,166,2,703.492460,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,154,1456.000000,167,0,645.723416,hintandextended,nbiot,60 -on11,0,0,24,1,0,119,1480.010320,167,0,651.420836,hintandextended,nbiot,60 -on4,0,0,24,1,0,533,1473.010320,167,0,615.210836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,228,1500.020320,167,1,626.021336,hintandextended,nbiot,60 -on7,0,0,25,1,0,1435,1500.000000,167,1,626.013000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1460.630960,167,0,869.362508,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,167,0,576.000000,hintandextended,nbiot,60 -on2,0,0,26,1,0,198,1582.840960,167,2,696.674716,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1535.272240,168,0,1059.535852,hintandextended,nbiot,60 -on5,0,0,25,1,0,920,1503.610320,168,1,666.015960,hintandextended,nbiot,60 -on1,0,0,26,1,0,208,1585.150960,168,2,738.028300,hintandextended,nbiot,60 -on9,0,0,24,1,0,900,1441.000000,168,0,615.003292,hintandextended,nbiot,60 -on6,0,0,25,1,0,158,1501.000000,168,1,639.217792,hintandextended,nbiot,60 -on2,0,0,24,1,0,120,1441.800000,168,0,612.730000,hintandextended,nbiot,60 -on8,0,0,26,1,0,236,1561.310320,168,2,663.544044,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,168,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,1140,1440.010320,168,0,602.010836,hintandextended,nbiot,60 -on3,0,0,25,1,0,339,1501.989680,168,1,626.822496,hintandextended,nbiot,60 -on4,0,0,24,1,0,1252,1473.010320,169,0,653.560836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,516,1458.000000,169,0,626.113416,hintandextended,nbiot,60 -on5,0,0,24,1,0,205,1445.010320,169,0,604.010836,hintandextended,nbiot,60 -on6,0,0,24,1,0,180,1441.020640,169,0,622.181672,hintandextended,nbiot,60 -on11,0,0,24,1,0,259,1440.369360,169,0,602.401036,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1493.641280,169,0,1029.473344,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,169,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,360,1502.600000,169,1,627.261832,hintandextended,nbiot,60 -on3,0,0,26,1,0,318,1582.820320,169,2,659.356460,hintandextended,nbiot,60 -on2,0,0,24,1,0,221,1462.010320,170,0,640.060836,hintandextended,nbiot,60 -on10,0,0,24,1,0,240,1440.989680,170,0,602.409288,hintandextended,nbiot,60 -on3,0,0,24,1,0,587,1468.020640,170,0,651.571672,hintandextended,nbiot,60 -on6,0,0,24,1,0,480,1441.000000,170,0,614.360000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hintandextended,nbiot,60 -on5,0,0,26,1,0,601,1580.640960,170,2,658.484508,hintandextended,nbiot,60 -on4,0,0,24,1,0,426,1440.989680,170,0,602.409288,hintandextended,nbiot,60 -on1,0,0,24,1,0,1104,1445.000000,170,0,604.013416,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,170,0,576.000000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1509.671920,170,0,1011.205516,hintandextended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,170,0,602.006500,hintandextended,nbiot,60 -on8,0,0,25,1,0,600,1501.010000,170,1,626.423916,hintandextended,nbiot,60 -on6,0,0,25,1,0,420,1502.020640,171,1,641.433256,hintandextended,nbiot,60 -on4,0,0,25,1,0,578,1501.000000,171,1,626.419916,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,221,1461.020640,171,0,610.421672,hintandextended,nbiot,60 -on2,0,0,23,0,0,1427,1427.000000,171,0,570.800000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,710,1470.010320,171,0,614.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,405,1465.010320,171,0,612.010836,hintandextended,nbiot,60 -on9,0,0,24,1,0,658,1478.030960,171,0,617.232508,hintandextended,nbiot,60 -on5,0,0,25,1,0,434,1501.230960,171,1,626.707508,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,171,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1470.241280,171,0,1027.653344,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,532,1473.010320,172,0,652.520836,hintandextended,nbiot,60 -on9,0,0,24,1,0,265,1445.010320,172,0,604.010836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1481.261920,172,0,917.025016,hintandextended,nbiot,60 -on1,0,0,25,1,0,589,1500.020640,172,1,626.028172,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,120,1501.610320,172,1,626.859252,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1260,1440.010320,172,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,1,0,1020,1440.010320,172,0,602.010836,hintandextended,nbiot,60 -on5,0,0,25,1,0,258,1501.620640,172,1,626.863380,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,172,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1166,1446.010320,173,0,604.410836,hintandextended,nbiot,60 -on7,0,0,24,1,0,480,1440.010320,173,0,602.010836,hintandextended,nbiot,60 -on8,0,0,25,1,0,218,1500.010320,173,1,626.017336,hintandextended,nbiot,60 -on10,0,0,25,1,0,1320,1500.630640,173,2,626.467172,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1527.661280,173,0,915.044344,hintandextended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,173,0,602.006500,hintandextended,nbiot,60 -on1,0,0,24,1,0,120,1441.010320,173,0,629.970836,hintandextended,nbiot,60 -on3,0,0,24,1,0,480,1440.010320,173,0,602.010836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,19,1441.989680,173,0,632.962580,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,173,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,766,1466.010320,173,0,612.410836,hintandextended,nbiot,60 -on11,0,0,24,1,0,900,1441.020640,174,0,640.771672,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1518.030640,174,0,878.932172,hintandextended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,174,0,602.006500,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,60,1441.000000,174,0,602.413416,hintandextended,nbiot,60 -on4,0,0,24,1,0,1114,1454.010320,174,0,607.610836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1308,1468.010320,174,0,613.210836,hintandextended,nbiot,60 -on9,0,0,24,1,0,660,1440.010320,174,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,174,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,540,1440.010320,175,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,20,1440.020640,175,0,602.021672,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,nbiot,60 -on0,1,6,24,0,0,0,1469.030960,175,0,858.682508,hintandextended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,175,0,602.006500,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,962,1440.000000,175,0,602.006708,hintandextended,nbiot,60 -on6,0,0,24,1,0,1020,1440.010320,175,0,602.010836,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,175,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,120,1441.000000,175,0,602.413416,hintandextended,nbiot,60 -on3,0,0,24,1,0,1238,1458.010320,176,0,609.210836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1469.030640,176,0,821.632172,hintandextended,nbiot,60 -on11,0,0,24,1,0,1380,1440.000000,176,0,602.006500,hintandextended,nbiot,60 -on10,0,0,24,1,0,1140,1440.010320,176,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,309,1441.010320,176,0,639.720836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,417,1500.010320,176,1,626.017336,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,290,1470.010320,176,0,614.010836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,176,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,180,1440.010320,176,0,602.010836,hintandextended,nbiot,60 -on6,0,0,26,1,0,259,1583.620640,177,2,669.224672,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1484.641280,177,0,973.223344,hintandextended,nbiot,60 -on5,0,0,24,1,0,1380,1440.000000,177,0,602.006500,hintandextended,nbiot,60 -on9,0,0,24,1,0,480,1441.020640,177,0,616.331672,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,120,1443.010320,177,0,689.270836,hintandextended,nbiot,60 -on4,0,0,25,1,0,578,1500.220320,177,1,626.101336,hintandextended,nbiot,60 -on3,0,0,24,1,0,187,1442.000000,177,0,631.009792,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,177,0,576.000000,hintandextended,nbiot,60 -on7,0,0,26,1,0,296,1560.530320,177,2,664.070128,hintandextended,nbiot,60 -on8,0,0,24,1,0,110,1472.000000,177,0,653.163416,hintandextended,nbiot,60 -on2,0,0,24,1,0,432,1440.010320,177,0,602.010836,hintandextended,nbiot,60 -on4,0,0,25,1,0,377,1500.010320,178,1,626.017336,hintandextended,nbiot,60 -on11,0,0,24,1,0,1246,1466.010320,178,0,612.410836,hintandextended,nbiot,60 -on5,0,0,24,1,0,1320,1440.010320,178,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,1,0,878,1458.010320,178,0,609.210836,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,1020,1440.010320,178,0,602.010836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1461.630960,178,0,860.012508,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,926,1447.000000,178,0,604.813416,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,178,0,576.000000,hintandextended,nbiot,60 -on7,0,0,25,1,0,240,1502.610320,178,1,652.869252,hintandextended,nbiot,60 -on10,0,0,24,1,0,300,1440.010320,179,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,1,0,1200,1440.010320,179,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,1,0,1368,1468.010320,179,0,613.210836,hintandextended,nbiot,60 -on4,0,0,24,1,0,926,1447.010320,179,0,642.120836,hintandextended,nbiot,60 -on3,0,0,25,1,0,1016,1501.010320,179,1,660.867336,hintandextended,nbiot,60 -on11,0,0,24,1,0,1149,1440.010320,179,0,602.010836,hintandextended,nbiot,60 -on5,0,0,24,1,0,391,1451.010320,179,0,606.410836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,179,0,576.000000,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1456.020640,179,0,867.771672,hintandextended,nbiot,60 -on9,0,0,24,1,0,1380,1440.000000,179,0,602.006500,hintandextended,nbiot,60 -on11,0,0,24,1,0,1433,1473.010000,180,0,615.210500,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1498.020640,180,0,803.321672,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,240,1441.000000,180,0,602.413416,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,320,1441.000000,180,0,602.413416,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,180,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,585,1465.010320,180,0,612.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,0,1440.989680,180,0,602.409288,hintandextended,nbiot,60 -on11,0,0,24,1,0,377,1442.000000,181,0,641.663292,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,24,1505.630960,181,1,638.210800,hintandextended,nbiot,60 -on3,0,0,25,1,0,396,1518.630960,181,1,643.424216,hintandextended,nbiot,60 -on8,0,0,25,1,0,459,1501.000000,181,1,626.419916,hintandextended,nbiot,60 -on6,0,0,24,1,0,14,1442.000000,181,0,643.613292,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,109,1500.200320,181,1,626.093336,hintandextended,nbiot,60 -on7,0,0,24,1,0,165,1465.010320,181,0,612.010836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1481.261920,181,0,905.325016,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,181,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,0,1441.020640,182,0,637.781672,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,304,1440.989680,182,0,602.402580,hintandextended,nbiot,60 -on6,0,0,24,1,0,476,1476.989680,182,0,616.809288,hintandextended,nbiot,60 -on7,0,0,24,1,0,750,1450.010320,182,0,606.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,1037,1440.000000,182,0,602.006708,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1461.010320,182,0,956.860836,hintandextended,nbiot,60 -on8,0,0,24,1,0,180,1440.010320,182,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,182,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,1366,1466.010320,182,0,612.410836,hintandextended,nbiot,60 -on5,0,0,25,1,0,98,1500.010320,182,1,626.017336,hintandextended,nbiot,60 -on10,0,0,24,1,0,626,1446.010320,182,0,604.410836,hintandextended,nbiot,60 -on10,0,0,24,1,0,179,1480.000000,183,0,618.013416,hintandextended,nbiot,60 -on1,0,0,24,1,0,510,1452.000000,183,0,627.620124,hintandextended,nbiot,60 -on8,0,0,24,1,0,860,1440.010320,183,0,602.010836,hintandextended,nbiot,60 -on4,0,0,24,1,0,926,1446.010320,183,0,604.410836,hintandextended,nbiot,60 -on3,0,0,24,1,0,300,1441.010320,183,0,626.070836,hintandextended,nbiot,60 -on7,0,0,25,1,0,278,1500.220320,183,1,626.101336,hintandextended,nbiot,60 -on9,0,0,25,1,0,398,1500.010320,183,1,626.017336,hintandextended,nbiot,60 -on11,0,0,25,1,0,1140,1500.620640,183,1,626.456672,hintandextended,nbiot,60 -on6,0,0,25,1,0,176,1550.300000,183,2,703.573084,hintandextended,nbiot,60 -on0,1,11,24,0,0,0,1489.272240,183,0,1090.535852,hintandextended,nbiot,60 -on5,0,0,25,1,0,180,1504.620640,183,1,653.030088,hintandextended,nbiot,60 -on2,0,0,24,1,0,60,1442.958720,183,0,613.206904,hintandextended,nbiot,60 -on9,0,0,24,1,0,499,1441.989680,184,0,638.149372,hintandextended,nbiot,60 -on8,0,0,25,1,0,360,1500.630640,184,1,626.473880,hintandextended,nbiot,60 -on7,0,0,25,1,0,420,1501.051280,184,1,646.207136,hintandextended,nbiot,60 -on6,0,0,25,1,0,578,1502.210000,184,1,635.607208,hintandextended,nbiot,60 -on2,0,0,24,1,0,872,1452.010320,184,0,606.810836,hintandextended,nbiot,60 -on5,0,0,24,1,0,720,1440.010320,184,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1490.661600,184,0,1040.644680,hintandextended,nbiot,60 -on11,0,0,25,1,0,600,1502.620320,184,2,665.619752,hintandextended,nbiot,60 -on3,0,0,25,1,0,540,1502.000000,184,1,674.308292,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,184,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,1081,1440.989680,185,0,602.402580,hintandextended,nbiot,60 -on2,0,0,25,1,0,600,1501.610320,185,1,626.859252,hintandextended,nbiot,60 -on9,0,0,25,1,0,434,1501.300000,185,1,663.953292,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1493.651600,185,0,972.284180,hintandextended,nbiot,60 -on4,0,0,24,1,0,809,1449.010320,185,0,605.610836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,49,1501.000000,185,1,626.419916,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,185,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,180,1441.010320,185,0,620.617544,hintandextended,nbiot,60 -on3,0,0,24,1,0,0,1441.000000,185,0,614.360000,hintandextended,nbiot,60 -on11,0,0,26,1,0,497,1582.640960,185,2,706.324800,hintandextended,nbiot,60 -on6,0,0,25,1,0,524,1500.220320,185,1,626.101336,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,847,1501.369040,186,1,636.506032,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1496.641280,186,0,732.973344,hintandextended,nbiot,60 -on4,0,0,24,1,0,660,1442.000000,186,0,640.123416,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,nbiot,60 -on6,0,0,25,1,0,895,1503.179680,186,1,677.198372,hintandextended,nbiot,60 -on8,0,0,25,1,0,949,1500.200320,186,1,626.093336,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,186,0,576.000000,hintandextended,nbiot,60 -on9,0,0,25,1,0,1359,1500.010320,187,1,626.017336,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1481.241280,187,0,874.753344,hintandextended,nbiot,60 -on10,0,0,25,1,0,1260,1502.620640,187,1,670.416672,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,1092,1440.010320,187,0,602.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,1140,1440.010320,187,0,602.010836,hintandextended,nbiot,60 -on2,0,0,25,1,0,900,1501.610320,187,1,626.859252,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,187,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,180,1440.010320,187,0,602.010836,hintandextended,nbiot,60 -on8,0,0,24,1,0,54,1475.000000,187,0,616.013416,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,540,1441.000000,188,0,614.360000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1499.261600,188,0,1003.524680,hintandextended,nbiot,60 -on2,0,0,24,1,0,1380,1440.000000,188,0,602.006500,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,188,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,1,0,350,1470.010320,188,0,614.010836,hintandextended,nbiot,60 -on3,0,0,25,1,0,360,1501.020640,188,1,638.823256,hintandextended,nbiot,60 -on8,0,0,25,1,0,712,1501.020640,188,1,664.778172,hintandextended,nbiot,60 -on11,0,0,25,1,0,399,1521.230960,188,1,634.707508,hintandextended,nbiot,60 -on5,0,0,24,1,0,539,1480.000000,188,0,618.013416,hintandextended,nbiot,60 -on1,0,0,24,1,0,1140,1440.010320,188,0,602.010836,hintandextended,nbiot,60 -on4,0,0,25,1,0,582,1501.010320,188,1,663.727336,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,780,1440.010320,189,0,602.010836,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,1172,1500.030640,189,1,626.032172,hintandextended,nbiot,60 -on5,0,0,25,1,0,1020,1502.610320,189,1,664.569252,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,nbiot,60 -on0,1,5,24,0,0,0,1448.010320,189,0,828.160836,hintandextended,nbiot,60 -on10,0,0,24,1,0,720,1440.010320,189,0,602.010836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,189,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1313,1473.010320,189,0,615.210836,hintandextended,nbiot,60 -on5,0,0,24,1,0,363,1441.030960,190,0,613.072384,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1487.272240,190,0,909.035852,hintandextended,nbiot,60 -on9,0,0,24,1,0,60,1441.979360,190,0,614.758452,hintandextended,nbiot,60 -on11,0,0,25,1,0,392,1516.620640,190,1,694.873380,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,462,1500.010320,190,1,626.017336,hintandextended,nbiot,60 -on7,0,0,24,1,0,155,1456.620320,190,0,611.904836,hintandextended,nbiot,60 -on2,0,0,26,1,0,141,1583.620640,190,2,681.379880,hintandextended,nbiot,60 -on3,0,0,25,1,0,193,1500.310320,190,1,652.390836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,190,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,60,1440.010320,191,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,244,1440.989680,191,0,602.402580,hintandextended,nbiot,60 -on3,0,0,26,1,0,1300,1560.310320,191,2,663.130628,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,191,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,1080,1441.000000,191,0,615.003292,hintandextended,nbiot,60 -on9,0,0,25,1,0,1101,1501.640960,191,1,626.878008,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1503.651280,191,0,865.133844,hintandextended,nbiot,60 -on4,0,0,25,1,0,1140,1501.989360,191,1,664.125660,hintandextended,nbiot,60 -on8,0,0,24,1,0,1215,1441.000000,191,0,605.650000,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,1,0,1041,1441.010320,192,0,602.410836,hintandextended,nbiot,60 -on6,0,0,25,1,0,106,1501.190000,192,1,657.949208,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,158,1500.010320,192,1,626.017336,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1504.020640,192,0,844.071672,hintandextended,nbiot,60 -on10,0,0,24,1,0,1246,1466.010320,192,0,612.410836,hintandextended,nbiot,60 -on1,0,0,24,1,0,60,1442.000000,192,0,627.760000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,1,0,949,1469.010320,192,0,613.610836,hintandextended,nbiot,60 -on9,0,0,24,1,0,1020,1440.010320,192,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,192,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,399,1459.000000,193,1,609.613208,hintandextended,nbiot,60 -on9,0,0,25,1,0,720,1501.610320,193,1,626.859252,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,1034,1441.000000,193,0,640.756708,hintandextended,nbiot,60 -on7,0,0,24,1,0,859,1441.979360,193,0,602.805160,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1531.261920,193,0,982.525016,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,nbiot,60 -on10,0,0,25,1,0,300,1502.620640,193,1,648.980088,hintandextended,nbiot,60 -on2,0,0,24,1,0,120,1442.000000,193,0,635.313416,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,193,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,1,0,1020,1441.000000,193,0,615.400000,hintandextended,nbiot,60 -on7,0,0,25,1,0,1276,1502.358720,194,1,633.268612,hintandextended,nbiot,60 -on10,0,0,24,1,0,770,1470.010320,194,0,614.010836,hintandextended,nbiot,60 -on1,0,0,24,1,0,1408,1448.010000,194,0,605.210500,hintandextended,nbiot,60 -on9,0,0,25,1,0,1437,1520.020000,194,1,634.021000,hintandextended,nbiot,60 -on0,1,9,24,0,0,0,1501.281920,194,0,951.046016,hintandextended,nbiot,60 -on6,0,0,24,1,0,699,1459.010320,194,0,609.610836,hintandextended,nbiot,60 -on4,0,0,24,1,0,116,1476.010320,194,0,616.410836,hintandextended,nbiot,60 -on5,0,0,24,1,0,1219,1441.989680,194,0,638.162580,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hintandextended,nbiot,60 -on11,0,0,25,1,0,747,1509.620640,194,1,635.263380,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,194,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,1,0,1297,1499.000000,194,1,638.209792,hintandextended,nbiot,60 -on6,0,0,24,1,0,764,1464.010320,195,0,611.610836,hintandextended,nbiot,60 -on8,0,0,25,1,0,840,1501.641280,195,1,665.221636,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,9,1440.020640,195,0,602.021672,hintandextended,nbiot,60 -on10,0,0,23,0,0,1403,1403.000000,195,0,561.200000,hintandextended,nbiot,60 -on1,0,0,25,1,0,239,1500.010320,195,1,626.017336,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,195,0,576.000000,hintandextended,nbiot,60 -on3,0,0,25,1,0,60,1502.610320,195,1,664.569252,hintandextended,nbiot,60 -on4,0,0,24,1,0,929,1449.010320,195,0,605.610836,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1493.630640,195,0,909.862172,hintandextended,nbiot,60 -on7,0,0,24,1,0,1380,1440.000000,195,0,602.006500,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,nbiot,60 -on2,0,0,25,1,0,600,1501.610320,196,1,626.859252,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,nbiot,60 -on5,0,0,25,1,0,480,1501.999680,196,1,626.826496,hintandextended,nbiot,60 -on9,0,0,24,1,0,1020,1440.010320,196,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1507.661600,196,0,827.094680,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,196,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,1,0,180,1441.020320,196,0,602.441460,hintandextended,nbiot,60 -on3,0,0,24,1,0,716,1476.010320,197,0,616.410836,hintandextended,nbiot,60 -on0,1,8,24,0,0,0,1479.010320,197,0,935.460836,hintandextended,nbiot,60 -on5,0,0,24,1,0,180,1440.010320,197,0,602.010836,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hintandextended,nbiot,60 -on4,0,0,25,1,0,447,1500.200320,197,1,626.093336,hintandextended,nbiot,60 -on2,0,0,25,1,0,282,1501.010000,197,1,626.423916,hintandextended,nbiot,60 -on10,0,0,24,1,0,770,1470.010320,197,0,614.010836,hintandextended,nbiot,60 -on11,0,0,24,1,0,234,1480.000000,197,1,655.329916,hintandextended,nbiot,60 -on6,0,0,24,1,0,173,1474.010320,197,0,652.920836,hintandextended,nbiot,60 -on1,0,0,23,0,0,1390,1390.000000,197,0,556.000000,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,197,0,576.000000,hintandextended,nbiot,60 -on9,0,0,24,1,0,320,1442.020640,197,0,640.138380,hintandextended,nbiot,60 -on0,1,4,24,0,0,0,1448.630960,198,0,748.212508,hintandextended,nbiot,60 -on5,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,nbiot,60 -on11,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,nbiot,60 -on2,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,nbiot,60 -on7,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,nbiot,60 -on3,0,0,24,1,0,1020,1440.010320,198,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,198,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,976,1440.989680,198,0,602.402580,hintandextended,nbiot,60 -on6,0,0,25,1,0,1260,1501.610320,198,1,626.859252,hintandextended,nbiot,60 -on9,0,0,24,1,0,172,1472.010320,198,0,614.810836,hintandextended,nbiot,60 -on11,0,0,25,1,0,1178,1501.220320,199,1,664.851336,hintandextended,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,nbiot,60 -on5,0,0,24,1,0,820,1460.010320,199,0,610.010836,hintandextended,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,nbiot,60 -on8,0,0,24,1,0,1092,1441.000000,199,0,603.303292,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1489.641280,199,0,828.973344,hintandextended,nbiot,60 -on4,0,0,24,1,0,480,1440.010320,199,0,602.010836,hintandextended,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,199,0,576.000000,hintandextended,nbiot,60 -on1,0,0,24,1,0,1310,1470.010320,199,0,614.010836,hintandextended,nbiot,60 -on2,0,0,24,1,0,1320,1440.010320,199,0,602.010836,hintandextended,nbiot,60 -on7,0,0,25,1,0,1080,1502.630960,199,1,643.120800,hintandextended,nbiot,60 -on3,0,0,24,1,0,905,1441.000000,200,0,640.756708,hintandextended,nbiot,60 -on10,0,0,25,1,0,0,1502.589680,200,1,664.560996,hintandextended,nbiot,60 -on11,0,0,24,1,0,480,1440.010320,200,0,602.010836,hintandextended,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,nbiot,60 -on0,1,7,24,0,0,0,1475.010320,200,0,874.060836,hintandextended,nbiot,60 -on5,0,0,25,1,0,234,1501.000000,200,1,626.419916,hintandextended,nbiot,60 -on8,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,nbiot,60 -on2,0,0,26,1,0,139,1561.320320,200,2,700.844628,hintandextended,nbiot,60 -on7,0,0,24,1,0,68,1441.010320,200,0,610.210836,hintandextended,nbiot,60 -on9,0,0,24,1,0,369,1440.010320,200,0,602.010836,hintandextended,nbiot,60 -on6,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,200,0,576.000000,hintandextended,nbiot,60 -on6,0,0,24,0,0,4188,4320.000000,1,0,1749.280000,baseline,lora,180 -on9,0,0,24,0,0,4269,4320.000000,1,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4125,4320.000000,1,0,1759.520000,baseline,lora,180 -on8,0,0,24,1,0,1279,4320.000000,1,0,1753.600000,baseline,lora,180 -on2,0,0,24,1,0,1443,4320.000000,1,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4140,4320.000000,1,0,1785.600000,baseline,lora,180 -on5,0,0,24,0,0,4191,4320.000000,1,0,1748.800000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,1,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4230,4320.000000,1,0,1762.400000,baseline,lora,180 -on1,0,0,24,0,0,4138,4320.000000,1,0,1757.440000,baseline,lora,180 -on7,0,0,24,0,0,3944,4320.000000,1,0,1817.440000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,1,0,2062.400000,baseline,lora,180 -on10,0,0,24,0,0,4097,4320.000000,2,0,1780.800000,baseline,lora,180 -on3,0,0,24,0,0,4287,4320.000000,2,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,3963,4320.000000,2,0,1806.240000,baseline,lora,180 -on7,0,0,24,0,0,4174,4320.000000,2,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4165,4320.000000,2,0,1773.600000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,2,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4098,4320.000000,2,0,1781.280000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,2,0,2103.200000,baseline,lora,180 -on6,0,0,24,0,0,4001,4320.000000,2,0,1779.520000,baseline,lora,180 -on2,0,0,23,0,0,4218,4250.000000,2,0,1718.080000,baseline,lora,180 -on9,0,0,24,1,0,3753,4320.000000,2,0,1758.080000,baseline,lora,180 -on5,0,0,24,1,0,1558,4320.000000,2,0,1778.720000,baseline,lora,180 -on5,0,0,24,0,0,4292,4320.000000,3,0,1732.640000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,3,0,2143.040000,baseline,lora,180 -on4,0,0,24,0,0,4040,4320.000000,3,0,1811.200000,baseline,lora,180 -on9,0,0,24,0,0,4209,4320.000000,3,0,1759.040000,baseline,lora,180 -on6,0,0,24,1,0,2813,4320.000000,3,0,1773.280000,baseline,lora,180 -on10,0,0,24,0,0,4141,4320.000000,3,0,1778.080000,baseline,lora,180 -on1,0,0,24,1,0,1440,4320.000000,3,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,3827,4320.000000,3,0,1807.520000,baseline,lora,180 -on11,0,0,24,0,0,4221,4320.000000,3,0,1784.160000,baseline,lora,180 -on7,0,0,24,1,0,3048,4320.000000,3,0,1800.160000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,3,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4296,4320.000000,3,0,1760.160000,baseline,lora,180 -on9,0,0,24,0,0,4066,4320.000000,4,0,1814.400000,baseline,lora,180 -on7,0,0,24,0,0,4116,4320.000000,4,0,1782.240000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,4,0,2011.360000,baseline,lora,180 -on2,0,0,24,0,0,4227,4320.000000,4,0,1761.920000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4122,4320.000000,4,0,1779.840000,baseline,lora,180 -on3,0,0,24,1,0,17,4320.000000,4,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4118,4320.000000,4,0,1785.600000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4132,4320.000000,4,0,1787.840000,baseline,lora,180 -on6,0,0,24,0,0,4257,4320.000000,4,0,1738.240000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4193,4320.000000,5,0,1748.480000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,5,0,2065.280000,baseline,lora,180 -on5,0,0,24,0,0,4135,4320.000000,5,0,1785.600000,baseline,lora,180 -on4,0,0,24,0,0,4191,4320.000000,5,0,1771.680000,baseline,lora,180 -on7,0,0,24,0,0,4164,4320.000000,5,0,1753.120000,baseline,lora,180 -on6,0,0,24,0,0,4251,4320.000000,5,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4215,4320.000000,5,0,1777.760000,baseline,lora,180 -on2,0,0,24,0,0,4221,4320.000000,5,0,1744.160000,baseline,lora,180 -on8,0,0,23,0,0,4137,4235.000000,5,0,1709.840000,baseline,lora,180 -on11,0,0,24,0,0,4141,4320.000000,5,0,1756.960000,baseline,lora,180 -on1,0,0,24,0,0,4202,4320.000000,5,0,1785.600000,baseline,lora,180 -on3,0,0,24,0,0,4000,4320.000000,5,0,1783.520000,baseline,lora,180 -on11,0,0,24,0,0,4195,4320.000000,6,0,1763.840000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,3924,4320.000000,6,0,1804.000000,baseline,lora,180 -on7,0,0,24,0,0,4137,4320.000000,6,0,1774.240000,baseline,lora,180 -on9,0,0,24,0,0,4189,4320.000000,6,0,1764.320000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,6,0,2014.560000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4026,4320.000000,6,0,1800.960000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4226,4320.000000,6,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4223,4320.000000,6,0,1745.760000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,7,0,1974.560000,baseline,lora,180 -on6,0,0,24,0,0,4202,4320.000000,7,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4298,4320.000000,7,0,1753.760000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,3939,4320.000000,7,0,1798.880000,baseline,lora,180 -on8,0,0,24,0,0,4102,4320.000000,7,0,1785.600000,baseline,lora,180 -on2,0,0,24,0,0,4220,4320.000000,7,0,1744.160000,baseline,lora,180 -on1,0,0,24,0,0,4250,4320.000000,7,0,1739.360000,baseline,lora,180 -on9,0,0,24,0,0,4260,4320.000000,7,0,1737.760000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,baseline,lora,180 -on0,1,1,23,0,0,0,4313.000000,8,0,2088.880000,baseline,lora,180 -on3,0,0,23,0,0,4239,4239.000000,8,0,1695.600000,baseline,lora,180 -on5,0,0,24,0,0,4031,4320.000000,8,0,1814.400000,baseline,lora,180 -on7,0,0,24,0,0,4275,4320.000000,8,0,1735.520000,baseline,lora,180 -on11,0,0,24,1,0,540,4320.000000,8,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,8,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4230,4320.000000,8,0,1742.560000,baseline,lora,180 -on1,0,0,24,0,0,4053,4320.000000,8,0,1781.120000,baseline,lora,180 -on4,0,0,24,0,0,4144,4320.000000,8,0,1774.240000,baseline,lora,180 -on2,0,0,24,0,0,4194,4320.000000,8,0,1768.000000,baseline,lora,180 -on9,0,0,23,0,0,3971,4293.000000,8,0,1778.960000,baseline,lora,180 -on8,0,0,24,0,0,4269,4320.000000,8,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,3885,4320.000000,9,0,1798.080000,baseline,lora,180 -on6,0,0,24,0,0,4282,4320.000000,9,0,1734.400000,baseline,lora,180 -on2,0,0,24,0,0,4225,4320.000000,9,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4196,4320.000000,9,0,1777.920000,baseline,lora,180 -on9,0,0,24,0,0,3994,4320.000000,9,0,1810.400000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,9,0,2217.920000,baseline,lora,180 -on10,0,0,24,0,0,4188,4320.000000,9,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,3990,4320.000000,9,0,1795.680000,baseline,lora,180 -on4,0,0,24,0,0,4294,4320.000000,9,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4037,4320.000000,9,0,1808.640000,baseline,lora,180 -on3,0,0,24,0,0,4070,4320.000000,9,0,1776.480000,baseline,lora,180 -on8,0,0,24,0,0,3967,4320.000000,9,0,1792.160000,baseline,lora,180 -on2,0,0,24,0,0,4274,4320.000000,10,0,1735.520000,baseline,lora,180 -on10,0,0,24,0,0,4174,4320.000000,10,0,1751.520000,baseline,lora,180 -on7,0,0,24,0,0,4251,4320.000000,10,0,1739.200000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,10,0,2108.800000,baseline,lora,180 -on4,0,0,24,0,0,4122,4320.000000,10,0,1788.480000,baseline,lora,180 -on6,0,0,24,0,0,4178,4320.000000,10,0,1750.880000,baseline,lora,180 -on9,0,0,24,0,0,4090,4320.000000,10,0,1775.840000,baseline,lora,180 -on8,0,0,24,0,0,4009,4320.000000,10,0,1781.280000,baseline,lora,180 -on3,0,0,24,0,0,4199,4320.000000,10,0,1766.720000,baseline,lora,180 -on1,0,0,24,0,0,4228,4320.000000,10,0,1743.040000,baseline,lora,180 -on5,0,0,24,0,0,4018,4320.000000,10,0,1776.640000,baseline,lora,180 -on11,0,0,24,0,0,4241,4320.000000,10,0,1782.080000,baseline,lora,180 -on3,0,0,24,0,0,4181,4320.000000,11,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,3913,4320.000000,11,0,1846.720000,baseline,lora,180 -on6,0,0,24,0,0,4233,4320.000000,11,0,1742.080000,baseline,lora,180 -on8,0,0,24,0,0,4102,4320.000000,11,0,1835.840000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,11,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4287,4320.000000,11,0,1761.760000,baseline,lora,180 -on1,0,0,24,0,0,4081,4320.000000,11,0,1766.560000,baseline,lora,180 -on5,0,0,24,0,0,4247,4320.000000,11,0,1740.000000,baseline,lora,180 -on10,0,0,24,0,0,3930,4320.000000,11,0,1824.320000,baseline,lora,180 -on7,0,0,24,1,0,2810,4320.000000,11,0,1764.960000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,11,0,2112.480000,baseline,lora,180 -on4,0,0,24,1,0,2146,4320.000000,11,0,1776.480000,baseline,lora,180 -on3,0,0,24,0,0,4010,4320.000000,12,0,1826.720000,baseline,lora,180 -on10,0,0,24,1,0,366,4320.000000,12,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4297,4320.000000,12,0,1750.400000,baseline,lora,180 -on7,0,0,24,0,0,4068,4320.000000,12,0,1807.840000,baseline,lora,180 -on9,0,0,24,0,0,4190,4320.000000,12,0,1758.240000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,12,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,12,0,1728.160000,baseline,lora,180 -on4,0,0,24,1,0,1800,4320.000000,12,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4245,4320.000000,12,0,1767.040000,baseline,lora,180 -on1,0,0,24,0,0,4165,4320.000000,12,0,1752.960000,baseline,lora,180 -on8,0,0,24,0,0,4125,4320.000000,12,0,1761.280000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,12,0,2070.080000,baseline,lora,180 -on7,0,0,24,0,0,4091,4320.000000,13,0,1770.080000,baseline,lora,180 -on3,0,0,24,0,0,4015,4320.000000,13,0,1809.120000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4058,4320.000000,13,0,1852.800000,baseline,lora,180 -on2,0,0,23,0,0,4310,4310.000000,13,0,1724.000000,baseline,lora,180 -on10,0,0,24,0,0,4313,4320.000000,13,0,1729.280000,baseline,lora,180 -on9,0,0,24,0,0,4168,4320.000000,13,0,1773.120000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,baseline,lora,180 -on8,0,0,24,1,0,3,4320.000000,13,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,13,0,2003.200000,baseline,lora,180 -on1,0,0,24,1,0,1764,4320.000000,13,0,1761.600000,baseline,lora,180 -on8,0,0,24,0,0,4212,4320.000000,14,0,1779.040000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,14,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,3981,4320.000000,14,0,1851.680000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,14,0,2098.880000,baseline,lora,180 -on3,0,0,24,0,0,4014,4320.000000,14,0,1821.600000,baseline,lora,180 -on1,0,0,24,0,0,3952,4320.000000,14,0,1795.040000,baseline,lora,180 -on4,0,0,24,0,0,4200,4320.000000,14,0,1747.360000,baseline,lora,180 -on11,0,0,24,0,0,4289,4320.000000,14,0,1733.120000,baseline,lora,180 -on2,0,0,24,1,0,1094,4320.000000,14,0,1753.600000,baseline,lora,180 -on10,0,0,24,1,0,720,4320.000000,14,0,1753.600000,baseline,lora,180 -on6,0,0,24,0,0,4184,4320.000000,14,0,1749.920000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,14,0,1728.000000,baseline,lora,180 -on3,0,0,24,1,0,1263,4320.000000,15,0,1753.600000,baseline,lora,180 -on5,0,0,24,1,0,3036,4320.000000,15,0,1782.400000,baseline,lora,180 -on1,0,0,24,0,0,4204,4320.000000,15,0,1757.600000,baseline,lora,180 -on6,0,0,24,0,0,4270,4320.000000,15,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4268,4320.000000,15,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4132,4320.000000,15,0,1758.400000,baseline,lora,180 -on11,0,0,24,1,0,957,4320.000000,15,0,1782.400000,baseline,lora,180 -on9,0,0,24,0,0,4295,4320.000000,15,0,1760.000000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,15,0,2160.640000,baseline,lora,180 -on8,0,0,24,0,0,3935,4320.000000,15,0,1803.520000,baseline,lora,180 -on2,0,0,24,1,0,1983,4320.000000,15,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,3952,4320.000000,15,0,1830.720000,baseline,lora,180 -on7,0,0,23,0,0,3769,4249.000000,16,0,1816.400000,baseline,lora,180 -on3,0,0,24,0,0,4048,4320.000000,16,0,1779.040000,baseline,lora,180 -on8,0,0,24,0,0,4293,4320.000000,16,0,1739.200000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4182,4320.000000,16,0,1750.400000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4202,4320.000000,16,0,1747.200000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,16,0,2072.960000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4066,4320.000000,16,0,1796.960000,baseline,lora,180 -on4,0,0,24,0,0,4187,4320.000000,16,0,1760.480000,baseline,lora,180 -on6,0,0,24,1,0,3783,4320.000000,16,0,1753.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,17,0,2100.000000,baseline,lora,180 -on6,0,0,24,0,0,4197,4320.000000,17,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4289,4320.000000,17,0,1733.120000,baseline,lora,180 -on11,0,0,24,0,0,4162,4320.000000,17,0,1785.600000,baseline,lora,180 -on1,0,0,24,1,0,3602,4320.000000,17,0,1753.600000,baseline,lora,180 -on2,0,0,23,0,0,4143,4190.000000,17,0,1683.680000,baseline,lora,180 -on10,0,0,24,0,0,4014,4320.000000,17,0,1784.320000,baseline,lora,180 -on3,0,0,24,0,0,3655,4320.000000,17,0,1868.320000,baseline,lora,180 -on7,0,0,24,0,0,4238,4320.000000,17,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,17,0,1728.000000,baseline,lora,180 -on4,0,0,23,0,0,4234,4306.000000,17,0,1734.240000,baseline,lora,180 -on9,0,0,24,0,0,4231,4320.000000,17,0,1755.360000,baseline,lora,180 -on3,0,0,24,0,0,4180,4320.000000,18,0,1750.560000,baseline,lora,180 -on5,0,0,24,1,0,1419,4320.000000,18,0,1764.480000,baseline,lora,180 -on8,0,0,24,1,0,1675,4320.000000,18,0,1811.200000,baseline,lora,180 -on1,0,0,24,0,0,4279,4320.000000,18,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4260,4320.000000,18,0,1756.480000,baseline,lora,180 -on4,0,0,24,1,0,1098,4320.000000,18,0,1753.600000,baseline,lora,180 -on2,0,0,24,1,0,3411,4320.000000,18,0,1782.400000,baseline,lora,180 -on7,0,0,24,0,0,4196,4320.000000,18,0,1773.280000,baseline,lora,180 -on0,1,5,24,0,0,0,4320.000000,18,0,2002.560000,baseline,lora,180 -on6,0,0,24,1,0,3027,4320.000000,18,0,1760.800000,baseline,lora,180 -on11,0,0,24,0,0,4313,4320.000000,18,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4185,4320.000000,18,0,1749.920000,baseline,lora,180 -on7,0,0,24,0,0,4094,4320.000000,19,0,1777.120000,baseline,lora,180 -on3,0,0,24,0,0,4120,4320.000000,19,0,1760.320000,baseline,lora,180 -on10,0,0,24,0,0,4290,4320.000000,19,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4231,4320.000000,19,0,1759.360000,baseline,lora,180 -on6,0,0,24,0,0,4065,4320.000000,19,0,1776.480000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,19,0,2185.760000,baseline,lora,180 -on1,0,0,24,0,0,3973,4320.000000,19,0,1870.080000,baseline,lora,180 -on8,0,0,24,0,0,4233,4320.000000,19,0,1742.240000,baseline,lora,180 -on9,0,0,24,0,0,4152,4320.000000,19,0,1782.560000,baseline,lora,180 -on5,0,0,24,1,0,195,4320.000000,19,0,1753.600000,baseline,lora,180 -on2,0,0,22,0,0,3925,4136.000000,19,0,1690.400000,baseline,lora,180 -on4,0,0,24,0,0,4268,4320.000000,19,0,1752.640000,baseline,lora,180 -on8,0,0,24,0,0,4269,4320.000000,20,0,1761.280000,baseline,lora,180 -on6,0,0,24,0,0,4281,4320.000000,20,0,1734.560000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,20,0,2198.240000,baseline,lora,180 -on2,0,0,24,0,0,4049,4320.000000,20,0,1796.000000,baseline,lora,180 -on10,0,0,24,0,0,4289,4320.000000,20,0,1754.080000,baseline,lora,180 -on5,0,0,24,0,0,4186,4320.000000,20,0,1749.760000,baseline,lora,180 -on11,0,0,24,0,0,3920,4320.000000,20,0,1805.440000,baseline,lora,180 -on1,0,0,24,0,0,3909,4320.000000,20,0,1817.760000,baseline,lora,180 -on4,0,0,24,0,0,4176,4320.000000,20,0,1751.200000,baseline,lora,180 -on3,0,0,24,0,0,4287,4320.000000,20,0,1733.440000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,20,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,3924,4320.000000,20,0,1792.160000,baseline,lora,180 -on3,0,0,24,0,0,4054,4320.000000,21,0,1814.400000,baseline,lora,180 -on4,0,0,24,0,0,4206,4320.000000,21,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4187,4320.000000,21,0,1767.360000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,21,0,2106.880000,baseline,lora,180 -on7,0,0,24,0,0,4079,4320.000000,21,0,1782.400000,baseline,lora,180 -on8,0,0,24,0,0,4312,4320.000000,21,0,1729.440000,baseline,lora,180 -on6,0,0,24,0,0,4299,4320.000000,21,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4202,4320.000000,21,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4175,4320.000000,21,0,1779.840000,baseline,lora,180 -on2,0,0,24,0,0,4163,4320.000000,21,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4269,4320.000000,21,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4011,4320.000000,21,0,1778.080000,baseline,lora,180 -on7,0,0,24,0,0,4248,4320.000000,22,0,1739.680000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4081,4320.000000,22,0,1808.800000,baseline,lora,180 -on4,0,0,24,1,0,180,4320.000000,22,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4203,4320.000000,22,0,1746.880000,baseline,lora,180 -on1,0,0,24,0,0,4071,4320.000000,22,0,1768.320000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,22,0,2088.640000,baseline,lora,180 -on9,0,0,24,0,0,4037,4320.000000,22,0,1814.400000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4201,4320.000000,22,0,1763.840000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4115,4320.000000,22,0,1804.480000,baseline,lora,180 -on9,0,0,24,0,0,4025,4320.000000,23,0,1787.520000,baseline,lora,180 -on10,0,0,24,0,0,4220,4320.000000,23,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4294,4320.000000,23,0,1756.480000,baseline,lora,180 -on6,0,0,24,0,0,4196,4320.000000,23,0,1756.800000,baseline,lora,180 -on8,0,0,24,1,0,2054,4320.000000,23,0,1770.720000,baseline,lora,180 -on11,0,0,24,0,0,4046,4320.000000,23,0,1782.880000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,23,0,2074.400000,baseline,lora,180 -on2,0,0,24,0,0,4258,4320.000000,23,0,1756.800000,baseline,lora,180 -on3,0,0,24,1,0,3914,4320.000000,23,0,1763.520000,baseline,lora,180 -on4,0,0,24,0,0,4259,4320.000000,23,0,1737.920000,baseline,lora,180 -on7,0,0,23,0,0,3986,4217.000000,23,0,1786.640000,baseline,lora,180 -on5,0,0,24,1,0,1724,4320.000000,23,0,1765.920000,baseline,lora,180 -on2,0,0,24,1,0,2899,4320.000000,24,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,24,0,1728.000000,baseline,lora,180 -on6,0,0,23,1,0,540,4248.000000,24,0,1724.800000,baseline,lora,180 -on3,0,0,24,0,0,4216,4320.000000,24,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4222,4320.000000,24,0,1743.840000,baseline,lora,180 -on9,0,0,24,0,0,4215,4320.000000,24,0,1756.800000,baseline,lora,180 -on1,0,0,24,1,0,3542,4320.000000,24,0,1808.800000,baseline,lora,180 -on8,0,0,24,1,0,370,4320.000000,24,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4161,4320.000000,24,0,1815.360000,baseline,lora,180 -on0,1,5,24,0,0,0,4320.000000,24,0,2046.400000,baseline,lora,180 -on7,0,0,24,1,0,1805,4320.000000,24,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4243,4320.000000,24,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,4131,4320.000000,25,0,1814.560000,baseline,lora,180 -on4,0,0,24,0,0,4234,4320.000000,25,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,25,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4242,4320.000000,25,0,1740.640000,baseline,lora,180 -on6,0,0,24,1,0,2040,4320.000000,25,0,1774.880000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,25,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4132,4320.000000,25,0,1758.560000,baseline,lora,180 -on11,0,0,24,0,0,4147,4320.000000,25,0,1772.640000,baseline,lora,180 -on7,0,0,24,0,0,4274,4320.000000,25,0,1746.560000,baseline,lora,180 -on0,1,1,23,0,0,0,4316.000000,25,0,2062.720000,baseline,lora,180 -on5,0,0,24,0,0,3710,4320.000000,25,0,1850.240000,baseline,lora,180 -on10,0,0,24,0,0,4257,4320.000000,25,0,1785.600000,baseline,lora,180 -on11,0,0,24,0,0,3982,4320.000000,26,0,1786.080000,baseline,lora,180 -on7,0,0,24,0,0,4182,4320.000000,26,0,1750.400000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,26,0,2132.480000,baseline,lora,180 -on10,0,0,24,0,0,3918,4320.000000,26,0,1829.760000,baseline,lora,180 -on6,0,0,24,0,0,4288,4320.000000,26,0,1789.120000,baseline,lora,180 -on8,0,0,24,1,0,2340,4320.000000,26,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4049,4320.000000,26,0,1776.800000,baseline,lora,180 -on1,0,0,24,1,0,3560,4320.000000,26,0,1788.320000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,3973,4320.000000,26,0,1802.400000,baseline,lora,180 -on5,0,0,24,1,0,3063,4320.000000,27,0,1756.000000,baseline,lora,180 -on1,0,0,24,0,0,4134,4320.000000,27,0,1778.400000,baseline,lora,180 -on7,0,0,24,0,0,4301,4320.000000,27,0,1754.720000,baseline,lora,180 -on8,0,0,24,0,0,4023,4320.000000,27,0,1775.840000,baseline,lora,180 -on2,0,0,24,1,0,3307,4320.000000,27,0,1807.520000,baseline,lora,180 -on10,0,0,24,1,0,3647,4320.000000,27,0,1777.120000,baseline,lora,180 -on4,0,0,24,1,0,1805,4320.000000,27,0,1753.600000,baseline,lora,180 -on6,0,0,24,0,0,4015,4320.000000,27,0,1780.800000,baseline,lora,180 -on0,1,5,24,0,0,0,4320.000000,27,0,2187.840000,baseline,lora,180 -on3,0,0,24,1,0,1420,4320.000000,27,0,1768.800000,baseline,lora,180 -on9,0,0,24,0,0,3923,4320.000000,27,0,1823.200000,baseline,lora,180 -on11,0,0,24,0,0,4182,4320.000000,27,0,1784.480000,baseline,lora,180 -on1,0,0,24,0,0,4147,4320.000000,28,0,1757.280000,baseline,lora,180 -on8,0,0,24,0,0,3987,4320.000000,28,0,1800.000000,baseline,lora,180 -on3,0,0,24,0,0,4229,4320.000000,28,0,1742.720000,baseline,lora,180 -on5,0,0,24,0,0,4144,4320.000000,28,0,1756.480000,baseline,lora,180 -on7,0,0,24,0,0,4301,4320.000000,28,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4057,4320.000000,28,0,1805.600000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,28,0,2040.160000,baseline,lora,180 -on10,0,0,24,0,0,4109,4320.000000,28,0,1785.600000,baseline,lora,180 -on4,0,0,24,0,0,4204,4320.000000,28,0,1746.720000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4093,4320.000000,28,0,1764.640000,baseline,lora,180 -on11,0,0,24,0,0,4175,4320.000000,29,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4232,4320.000000,29,0,1756.640000,baseline,lora,180 -on6,0,0,24,1,0,1793,4320.000000,29,0,1756.000000,baseline,lora,180 -on8,0,0,24,0,0,4161,4320.000000,29,0,1753.920000,baseline,lora,180 -on7,0,0,24,0,0,4125,4320.000000,29,0,1759.520000,baseline,lora,180 -on4,0,0,23,0,0,4260,4320.000000,29,0,1737.760000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,29,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4162,4320.000000,29,0,1753.920000,baseline,lora,180 -on5,0,0,24,1,0,1617,4320.000000,29,0,1754.240000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,29,0,2084.320000,baseline,lora,180 -on3,0,0,24,0,0,4289,4320.000000,29,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4239,4320.000000,29,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4148,4320.000000,30,0,1768.960000,baseline,lora,180 -on11,0,0,24,0,0,4300,4320.000000,30,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4191,4320.000000,30,0,1796.960000,baseline,lora,180 -on6,0,0,24,0,0,4206,4320.000000,30,0,1746.560000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,30,0,2086.720000,baseline,lora,180 -on2,0,0,24,0,0,4214,4320.000000,30,0,1763.520000,baseline,lora,180 -on3,0,0,24,0,0,4241,4320.000000,30,0,1740.800000,baseline,lora,180 -on8,0,0,24,0,0,4281,4320.000000,30,0,1734.400000,baseline,lora,180 -on7,0,0,24,0,0,4048,4320.000000,30,0,1774.080000,baseline,lora,180 -on5,0,0,24,1,0,1930,4320.000000,30,0,1825.440000,baseline,lora,180 -on9,0,0,24,0,0,4258,4320.000000,30,0,1738.080000,baseline,lora,180 -on4,0,0,24,0,0,4249,4320.000000,30,0,1785.600000,baseline,lora,180 -on11,0,0,24,0,0,4055,4320.000000,31,0,1803.840000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,31,0,2048.480000,baseline,lora,180 -on10,0,0,24,0,0,4202,4320.000000,31,0,1759.200000,baseline,lora,180 -on4,0,0,24,0,0,4227,4320.000000,31,0,1743.040000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,31,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,3973,4320.000000,31,0,1839.520000,baseline,lora,180 -on7,0,0,24,0,0,4286,4320.000000,31,0,1733.600000,baseline,lora,180 -on9,0,0,24,0,0,4071,4320.000000,31,0,1788.960000,baseline,lora,180 -on2,0,0,24,0,0,4178,4320.000000,31,0,1786.560000,baseline,lora,180 -on6,0,0,24,0,0,4163,4320.000000,31,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,4178,4320.000000,31,0,1771.200000,baseline,lora,180 -on1,0,0,24,0,0,4294,4320.000000,31,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4135,4320.000000,32,0,1779.040000,baseline,lora,180 -on11,0,0,24,0,0,4090,4320.000000,32,0,1797.280000,baseline,lora,180 -on1,0,0,24,0,0,4084,4320.000000,32,0,1809.120000,baseline,lora,180 -on5,0,0,24,0,0,4077,4320.000000,32,0,1778.880000,baseline,lora,180 -on8,0,0,24,0,0,4178,4320.000000,32,0,1779.040000,baseline,lora,180 -on7,0,0,24,0,0,4176,4320.000000,32,0,1751.520000,baseline,lora,180 -on4,0,0,24,0,0,4285,4320.000000,32,0,1758.080000,baseline,lora,180 -on2,0,0,24,0,0,4199,4320.000000,32,0,1795.840000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,32,0,2056.320000,baseline,lora,180 -on6,0,0,24,0,0,4093,4320.000000,32,0,1770.240000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,32,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4242,4320.000000,32,0,1755.200000,baseline,lora,180 -on2,0,0,24,0,0,4214,4320.000000,33,0,1745.120000,baseline,lora,180 -on9,0,0,24,1,0,3025,4320.000000,33,0,1759.360000,baseline,lora,180 -on7,0,0,24,0,0,4038,4320.000000,33,0,1785.600000,baseline,lora,180 -on5,0,0,24,0,0,4086,4320.000000,33,0,1765.760000,baseline,lora,180 -on3,0,0,24,0,0,4288,4320.000000,33,0,1733.280000,baseline,lora,180 -on8,0,0,24,1,0,553,4320.000000,33,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4273,4320.000000,33,0,1769.920000,baseline,lora,180 -on10,0,0,24,0,0,4109,4320.000000,33,0,1765.440000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,33,0,2026.560000,baseline,lora,180 -on11,0,0,24,0,0,4204,4320.000000,33,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4077,4320.000000,34,0,1784.000000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,34,0,2012.960000,baseline,lora,180 -on11,0,0,24,0,0,4257,4320.000000,34,0,1738.240000,baseline,lora,180 -on7,0,0,24,0,0,4053,4320.000000,34,0,1814.400000,baseline,lora,180 -on8,0,0,24,0,0,4079,4320.000000,34,0,1814.400000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4173,4320.000000,34,0,1814.400000,baseline,lora,180 -on3,0,0,24,0,0,4139,4320.000000,34,0,1772.960000,baseline,lora,180 -on2,0,0,24,0,0,4157,4320.000000,34,0,1761.760000,baseline,lora,180 -on10,0,0,24,0,0,4166,4320.000000,34,0,1753.280000,baseline,lora,180 -on4,0,0,24,0,0,4190,4320.000000,35,0,1775.040000,baseline,lora,180 -on2,0,0,24,0,0,4146,4320.000000,35,0,1774.560000,baseline,lora,180 -on8,0,0,23,0,0,3893,4241.000000,35,0,1758.960000,baseline,lora,180 -on1,0,0,24,0,0,4215,4320.000000,35,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4209,4320.000000,35,0,1757.440000,baseline,lora,180 -on11,0,0,24,0,0,3996,4320.000000,35,0,1780.320000,baseline,lora,180 -on9,0,0,24,0,0,4137,4320.000000,35,0,1814.400000,baseline,lora,180 -on10,0,0,24,0,0,4145,4320.000000,35,0,1759.040000,baseline,lora,180 -on5,0,0,24,0,0,4191,4320.000000,35,0,1748.960000,baseline,lora,180 -on7,0,0,24,0,0,4292,4320.000000,35,0,1732.640000,baseline,lora,180 -on3,0,0,24,0,0,4002,4320.000000,35,0,1793.600000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,35,0,2191.040000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,36,0,2192.480000,baseline,lora,180 -on11,0,0,24,1,0,3417,4320.000000,36,0,1756.320000,baseline,lora,180 -on1,0,0,24,1,0,1444,4320.000000,36,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4177,4320.000000,36,0,1751.520000,baseline,lora,180 -on4,0,0,24,0,0,3926,4320.000000,36,0,1833.440000,baseline,lora,180 -on10,0,0,24,1,0,1990,4320.000000,36,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4121,4320.000000,36,0,1773.280000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,36,0,1728.000000,baseline,lora,180 -on8,0,0,23,0,0,4262,4298.000000,36,0,1748.000000,baseline,lora,180 -on5,0,0,24,0,0,4201,4320.000000,36,0,1747.200000,baseline,lora,180 -on3,0,0,24,0,0,4194,4320.000000,36,0,1748.640000,baseline,lora,180 -on6,0,0,24,1,0,3476,4320.000000,36,0,1886.880000,baseline,lora,180 -on6,0,0,24,0,0,4194,4320.000000,37,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4080,4320.000000,37,0,1814.400000,baseline,lora,180 -on8,0,0,24,1,0,360,4320.000000,37,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4166,4320.000000,37,0,1769.440000,baseline,lora,180 -on10,0,0,24,1,0,4034,4320.000000,37,0,1782.400000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,37,0,2131.200000,baseline,lora,180 -on5,0,0,24,0,0,4251,4320.000000,37,0,1744.320000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,37,0,1728.000000,baseline,lora,180 -on1,0,0,24,1,0,3361,4320.000000,37,0,1830.080000,baseline,lora,180 -on4,0,0,24,0,0,4131,4320.000000,37,0,1774.720000,baseline,lora,180 -on3,0,0,23,0,0,3821,4207.000000,37,0,1753.520000,baseline,lora,180 -on9,0,0,24,0,0,4261,4320.000000,37,0,1737.600000,baseline,lora,180 -on5,0,0,24,0,0,4075,4320.000000,38,0,1802.560000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,3878,4320.000000,38,0,1799.360000,baseline,lora,180 -on9,0,0,24,0,0,4174,4320.000000,38,0,1751.520000,baseline,lora,180 -on6,0,0,24,0,0,4259,4320.000000,38,0,1757.280000,baseline,lora,180 -on11,0,0,24,0,0,4301,4320.000000,38,0,1743.680000,baseline,lora,180 -on1,0,0,24,0,0,4254,4320.000000,38,0,1764.640000,baseline,lora,180 -on3,0,0,24,1,0,919,4320.000000,38,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4228,4320.000000,38,0,1742.880000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,38,0,2047.840000,baseline,lora,180 -on2,0,0,24,0,0,4110,4320.000000,38,0,1801.440000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4073,4320.000000,39,0,1767.840000,baseline,lora,180 -on4,0,0,23,0,0,4062,4215.000000,39,0,1710.640000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,39,0,1992.640000,baseline,lora,180 -on5,0,0,23,0,0,4111,4198.000000,39,0,1699.840000,baseline,lora,180 -on2,0,0,24,0,0,4123,4320.000000,39,0,1788.320000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4266,4320.000000,39,0,1736.800000,baseline,lora,180 -on10,0,0,24,0,0,3914,4320.000000,39,0,1843.040000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4296,4320.000000,39,0,1759.040000,baseline,lora,180 -on11,0,0,24,1,0,18,4320.000000,39,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4129,4320.000000,40,0,1758.880000,baseline,lora,180 -on3,0,0,24,0,0,4207,4320.000000,40,0,1763.840000,baseline,lora,180 -on2,0,0,24,0,0,4058,4320.000000,40,0,1783.200000,baseline,lora,180 -on7,0,0,24,0,0,4189,4320.000000,40,0,1749.120000,baseline,lora,180 -on10,0,0,24,1,0,3205,4320.000000,40,0,1844.640000,baseline,lora,180 -on11,0,0,24,1,0,1620,4320.000000,40,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,40,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4165,4320.000000,40,0,1752.960000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,40,0,2219.200000,baseline,lora,180 -on1,0,0,24,0,0,4026,4320.000000,40,0,1835.520000,baseline,lora,180 -on8,0,0,24,0,0,4107,4320.000000,40,0,1779.680000,baseline,lora,180 -on5,0,0,24,0,0,4138,4320.000000,40,0,1774.720000,baseline,lora,180 -on5,0,0,24,0,0,4209,4320.000000,41,0,1785.600000,baseline,lora,180 -on8,0,0,24,0,0,4313,4320.000000,41,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4260,4320.000000,41,0,1737.760000,baseline,lora,180 -on1,0,0,24,0,0,3770,4320.000000,41,0,1876.640000,baseline,lora,180 -on9,0,0,24,0,0,3972,4320.000000,41,0,1791.680000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,41,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4258,4320.000000,41,0,1753.760000,baseline,lora,180 -on6,0,0,24,0,0,4258,4320.000000,41,0,1738.080000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,41,0,2090.080000,baseline,lora,180 -on4,0,0,24,0,0,4137,4320.000000,41,0,1762.240000,baseline,lora,180 -on2,0,0,24,0,0,4225,4320.000000,41,0,1754.720000,baseline,lora,180 -on3,0,0,24,0,0,4127,4320.000000,41,0,1759.360000,baseline,lora,180 -on6,0,0,24,0,0,3977,4320.000000,42,0,1812.000000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4319,4320.000000,42,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,42,0,2033.760000,baseline,lora,180 -on11,0,0,24,0,0,4166,4320.000000,42,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4230,4320.000000,42,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4155,4320.000000,42,0,1771.040000,baseline,lora,180 -on7,0,0,24,0,0,4012,4320.000000,42,0,1795.840000,baseline,lora,180 -on9,0,0,24,1,0,0,4320.000000,42,0,1753.600000,baseline,lora,180 -on2,0,0,24,1,0,1245,4320.000000,42,0,1785.120000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,baseline,lora,180 -on8,0,0,24,1,0,1082,4320.000000,43,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4228,4320.000000,43,0,1756.800000,baseline,lora,180 -on2,0,0,24,1,0,900,4320.000000,43,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,3935,4320.000000,43,0,1823.200000,baseline,lora,180 -on6,0,0,24,0,0,4169,4320.000000,43,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,43,0,1728.000000,baseline,lora,180 -on11,0,0,24,1,0,2525,4320.000000,43,0,1753.600000,baseline,lora,180 -on1,0,0,24,0,0,4128,4320.000000,43,0,1814.400000,baseline,lora,180 -on10,0,0,24,0,0,4255,4320.000000,43,0,1785.600000,baseline,lora,180 -on3,0,0,24,0,0,4308,4320.000000,43,0,1730.080000,baseline,lora,180 -on5,0,0,24,0,0,4177,4320.000000,43,0,1751.200000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,43,0,2045.920000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,44,0,2057.120000,baseline,lora,180 -on10,0,0,24,1,0,180,4320.000000,44,0,1753.600000,baseline,lora,180 -on2,0,0,23,0,0,3951,4225.000000,44,0,1740.240000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,baseline,lora,180 -on8,0,0,24,1,0,3240,4320.000000,44,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,3983,4320.000000,44,0,1796.320000,baseline,lora,180 -on9,0,0,24,1,0,1620,4320.000000,44,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4194,4320.000000,44,0,1784.640000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,3978,4320.000000,44,0,1792.160000,baseline,lora,180 -on4,0,0,24,1,0,3819,4320.000000,45,0,1811.200000,baseline,lora,180 -on6,0,0,24,0,0,4292,4320.000000,45,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4233,4320.000000,45,0,1807.840000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,45,0,2168.800000,baseline,lora,180 -on2,0,0,24,1,0,1080,4320.000000,45,0,1753.600000,baseline,lora,180 -on1,0,0,24,0,0,4096,4320.000000,45,0,1785.600000,baseline,lora,180 -on10,0,0,24,1,0,1513,4320.000000,45,0,1782.400000,baseline,lora,180 -on9,0,0,24,0,0,4034,4320.000000,45,0,1774.080000,baseline,lora,180 -on8,0,0,24,0,0,4148,4320.000000,45,0,1785.920000,baseline,lora,180 -on5,0,0,24,0,0,4209,4320.000000,45,0,1746.080000,baseline,lora,180 -on7,0,0,24,0,0,4186,4320.000000,45,0,1749.600000,baseline,lora,180 -on3,0,0,24,0,0,4022,4320.000000,45,0,1776.160000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,46,0,2089.440000,baseline,lora,180 -on8,0,0,24,0,0,4286,4320.000000,46,0,1733.600000,baseline,lora,180 -on5,0,0,24,0,0,4251,4320.000000,46,0,1756.800000,baseline,lora,180 -on10,0,0,24,1,0,568,4320.000000,46,0,1778.080000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,46,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4100,4320.000000,46,0,1788.320000,baseline,lora,180 -on2,0,0,24,0,0,4291,4320.000000,46,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4048,4320.000000,46,0,1788.960000,baseline,lora,180 -on3,0,0,24,1,0,2896,4320.000000,46,0,1753.600000,baseline,lora,180 -on9,0,0,24,1,0,1332,4320.000000,46,0,1771.040000,baseline,lora,180 -on4,0,0,24,1,0,2548,4320.000000,46,0,1792.480000,baseline,lora,180 -on7,0,0,24,0,0,4301,4320.000000,46,0,1734.240000,baseline,lora,180 -on1,0,0,24,0,0,4087,4320.000000,47,0,1826.400000,baseline,lora,180 -on3,0,0,24,0,0,4192,4320.000000,47,0,1775.520000,baseline,lora,180 -on6,0,0,24,0,0,4209,4320.000000,47,0,1745.920000,baseline,lora,180 -on4,0,0,24,0,0,4145,4320.000000,47,0,1765.440000,baseline,lora,180 -on5,0,0,24,0,0,4087,4320.000000,47,0,1788.160000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,47,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4086,4320.000000,47,0,1797.920000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,47,0,2033.440000,baseline,lora,180 -on9,0,0,24,0,0,4149,4320.000000,47,0,1780.640000,baseline,lora,180 -on2,0,0,24,0,0,4190,4320.000000,47,0,1748.960000,baseline,lora,180 -on10,0,0,24,0,0,4066,4320.000000,47,0,1768.960000,baseline,lora,180 -on7,0,0,24,0,0,4155,4320.000000,47,0,1767.360000,baseline,lora,180 -on2,0,0,23,0,0,3985,4265.000000,48,0,1751.440000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,48,0,2099.040000,baseline,lora,180 -on6,0,0,24,0,0,4229,4320.000000,48,0,1742.720000,baseline,lora,180 -on4,0,0,24,0,0,4207,4320.000000,48,0,1748.320000,baseline,lora,180 -on9,0,0,24,0,0,4142,4320.000000,48,0,1851.040000,baseline,lora,180 -on11,0,0,24,0,0,4098,4320.000000,48,0,1785.600000,baseline,lora,180 -on7,0,0,24,0,0,4137,4320.000000,48,0,1767.360000,baseline,lora,180 -on5,0,0,24,1,0,548,4320.000000,48,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4226,4320.000000,48,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4186,4320.000000,48,0,1749.760000,baseline,lora,180 -on10,0,0,24,0,0,4273,4320.000000,48,0,1735.680000,baseline,lora,180 -on1,0,0,24,0,0,4294,4320.000000,48,0,1750.240000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,baseline,lora,180 -on7,0,0,24,1,0,1902,4320.000000,49,0,1768.960000,baseline,lora,180 -on11,0,0,24,0,0,4277,4320.000000,49,0,1735.200000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4167,4320.000000,49,0,1752.640000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,49,0,2021.920000,baseline,lora,180 -on5,0,0,24,1,0,3988,4320.000000,49,0,1792.480000,baseline,lora,180 -on8,0,0,24,0,0,4211,4320.000000,49,0,1769.920000,baseline,lora,180 -on4,0,0,24,0,0,4074,4320.000000,49,0,1785.600000,baseline,lora,180 -on9,0,0,24,1,0,1226,4320.000000,49,0,1782.400000,baseline,lora,180 -on2,0,0,24,0,0,4123,4320.000000,49,0,1785.600000,baseline,lora,180 -on4,0,0,24,0,0,4181,4320.000000,50,0,1756.800000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,50,0,2094.560000,baseline,lora,180 -on2,0,0,24,0,0,3936,4320.000000,50,0,1809.760000,baseline,lora,180 -on3,0,0,24,0,0,4204,4320.000000,50,0,1759.520000,baseline,lora,180 -on6,0,0,24,1,0,2112,4320.000000,50,0,1785.280000,baseline,lora,180 -on1,0,0,24,0,0,4285,4320.000000,50,0,1733.760000,baseline,lora,180 -on5,0,0,24,0,0,4303,4320.000000,50,0,1730.880000,baseline,lora,180 -on10,0,0,24,1,0,1440,4320.000000,50,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4045,4320.000000,50,0,1805.760000,baseline,lora,180 -on8,0,0,24,0,0,4193,4320.000000,50,0,1789.440000,baseline,lora,180 -on7,0,0,24,0,0,4071,4320.000000,50,0,1798.880000,baseline,lora,180 -on11,0,0,24,1,0,374,4320.000000,50,0,1753.600000,baseline,lora,180 -on7,0,0,24,1,0,3401,4320.000000,51,0,1801.120000,baseline,lora,180 -on4,0,0,24,1,0,540,4320.000000,51,0,1753.600000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,51,0,2179.680000,baseline,lora,180 -on6,0,0,24,0,0,4051,4320.000000,51,0,1828.960000,baseline,lora,180 -on9,0,0,24,0,0,4159,4320.000000,51,0,1773.600000,baseline,lora,180 -on8,0,0,24,0,0,4114,4320.000000,51,0,1761.280000,baseline,lora,180 -on11,0,0,24,0,0,3900,4320.000000,51,0,1810.240000,baseline,lora,180 -on5,0,0,24,0,0,4148,4320.000000,51,0,1785.600000,baseline,lora,180 -on3,0,0,24,0,0,4319,4320.000000,51,0,1728.320000,baseline,lora,180 -on10,0,0,24,0,0,4250,4320.000000,51,0,1739.360000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,51,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4142,4320.000000,51,0,1789.440000,baseline,lora,180 -on8,0,0,24,1,0,1080,4320.000000,52,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4162,4320.000000,52,0,1758.560000,baseline,lora,180 -on7,0,0,24,0,0,4286,4320.000000,52,0,1733.600000,baseline,lora,180 -on3,0,0,24,0,0,4254,4320.000000,52,0,1738.720000,baseline,lora,180 -on10,0,0,24,1,0,1550,4320.000000,52,0,1800.160000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,52,0,2130.880000,baseline,lora,180 -on2,0,0,24,0,0,4244,4320.000000,52,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4058,4320.000000,52,0,1808.000000,baseline,lora,180 -on11,0,0,24,0,0,4198,4320.000000,52,0,1747.680000,baseline,lora,180 -on4,0,0,24,0,0,4229,4320.000000,52,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4161,4320.000000,52,0,1770.720000,baseline,lora,180 -on1,0,0,24,1,0,2092,4320.000000,52,0,1766.240000,baseline,lora,180 -on10,0,0,23,0,0,4012,4279.000000,53,0,1785.520000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,53,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4019,4320.000000,53,0,1811.680000,baseline,lora,180 -on11,0,0,24,1,0,1260,4320.000000,53,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4161,4320.000000,53,0,1753.760000,baseline,lora,180 -on4,0,0,24,1,0,720,4320.000000,53,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4165,4320.000000,53,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,53,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4078,4320.000000,53,0,1767.040000,baseline,lora,180 -on8,0,0,24,0,0,4159,4320.000000,53,0,1775.520000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,53,0,2124.000000,baseline,lora,180 -on1,0,0,24,0,0,4154,4320.000000,53,0,1780.960000,baseline,lora,180 -on6,0,0,24,0,0,4175,4320.000000,54,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4254,4320.000000,54,0,1738.720000,baseline,lora,180 -on5,0,0,24,0,0,4178,4320.000000,54,0,1750.880000,baseline,lora,180 -on3,0,0,24,1,0,2160,4320.000000,54,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,54,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4268,4320.000000,54,0,1737.440000,baseline,lora,180 -on9,0,0,24,0,0,3979,4320.000000,54,0,1783.040000,baseline,lora,180 -on4,0,0,24,0,0,4302,4320.000000,54,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4259,4320.000000,54,0,1785.600000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,54,0,1993.280000,baseline,lora,180 -on1,0,0,24,1,0,2340,4320.000000,54,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4118,4320.000000,54,0,1775.040000,baseline,lora,180 -on9,0,0,24,0,0,4046,4320.000000,55,0,1805.120000,baseline,lora,180 -on11,0,0,24,0,0,4197,4320.000000,55,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,4077,4320.000000,55,0,1772.320000,baseline,lora,180 -on10,0,0,24,0,0,4054,4320.000000,55,0,1782.240000,baseline,lora,180 -on5,0,0,23,0,0,4005,4265.000000,55,0,1748.400000,baseline,lora,180 -on8,0,0,24,0,0,4261,4320.000000,55,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4201,4320.000000,55,0,1747.200000,baseline,lora,180 -on6,0,0,24,1,0,1620,4320.000000,55,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4191,4320.000000,55,0,1769.440000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,55,0,2106.880000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4266,4320.000000,56,0,1785.600000,baseline,lora,180 -on4,0,0,24,0,0,4152,4320.000000,56,0,1772.000000,baseline,lora,180 -on5,0,0,24,0,0,4274,4320.000000,56,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4218,4320.000000,56,0,1744.480000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4094,4320.000000,56,0,1769.120000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,56,0,1944.320000,baseline,lora,180 -on2,0,0,24,0,0,4114,4320.000000,56,0,1800.000000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4177,4320.000000,56,0,1793.280000,baseline,lora,180 -on3,0,0,23,1,0,2590,4281.000000,57,0,1796.240000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,57,0,2126.720000,baseline,lora,180 -on10,0,0,24,0,0,4167,4320.000000,57,0,1752.800000,baseline,lora,180 -on6,0,0,24,0,0,4166,4320.000000,57,0,1752.800000,baseline,lora,180 -on7,0,0,24,0,0,4150,4320.000000,57,0,1759.520000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4005,4320.000000,57,0,1791.200000,baseline,lora,180 -on9,0,0,24,0,0,4258,4320.000000,57,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4088,4320.000000,57,0,1799.040000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4171,4320.000000,57,0,1752.000000,baseline,lora,180 -on2,0,0,24,0,0,4223,4320.000000,57,0,1766.560000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4166,4320.000000,58,0,1752.960000,baseline,lora,180 -on1,0,0,24,0,0,4177,4320.000000,58,0,1766.400000,baseline,lora,180 -on4,0,0,24,1,0,9,4320.000000,58,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,3729,4320.000000,58,0,1882.720000,baseline,lora,180 -on10,0,0,24,0,0,4297,4320.000000,58,0,1785.600000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,58,0,2082.240000,baseline,lora,180 -on2,0,0,24,0,0,4283,4320.000000,58,0,1774.080000,baseline,lora,180 -on7,0,0,24,0,0,4129,4320.000000,58,0,1758.880000,baseline,lora,180 -on6,0,0,24,0,0,3906,4320.000000,58,0,1794.720000,baseline,lora,180 -on8,0,0,24,0,0,4242,4320.000000,59,0,1744.000000,baseline,lora,180 -on3,0,0,24,0,0,4156,4320.000000,59,0,1759.840000,baseline,lora,180 -on5,0,0,24,0,0,4189,4320.000000,59,0,1749.120000,baseline,lora,180 -on10,0,0,24,0,0,3989,4320.000000,59,0,1792.160000,baseline,lora,180 -on4,0,0,24,0,0,4154,4320.000000,59,0,1789.280000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,59,0,2120.960000,baseline,lora,180 -on2,0,0,24,0,0,4115,4320.000000,59,0,1761.120000,baseline,lora,180 -on9,0,0,24,1,0,3104,4320.000000,59,0,1811.200000,baseline,lora,180 -on11,0,0,23,1,0,1620,4278.000000,59,0,1736.800000,baseline,lora,180 -on7,0,0,24,0,0,4306,4320.000000,59,0,1730.400000,baseline,lora,180 -on1,0,0,24,0,0,4220,4320.000000,59,0,1744.160000,baseline,lora,180 -on6,0,0,24,0,0,4176,4320.000000,59,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4118,4320.000000,60,0,1769.760000,baseline,lora,180 -on6,0,0,24,0,0,4241,4320.000000,60,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4270,4320.000000,60,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4129,4320.000000,60,0,1776.320000,baseline,lora,180 -on2,0,0,24,0,0,4307,4320.000000,60,0,1731.680000,baseline,lora,180 -on8,0,0,24,1,0,3056,4320.000000,60,0,1840.000000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,60,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4149,4320.000000,60,0,1807.680000,baseline,lora,180 -on11,0,0,24,0,0,4318,4320.000000,60,0,1728.480000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,60,0,2028.160000,baseline,lora,180 -on5,0,0,24,0,0,4171,4320.000000,60,0,1785.600000,baseline,lora,180 -on3,0,0,24,0,0,4307,4320.000000,60,0,1730.240000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4154,4320.000000,61,0,1783.360000,baseline,lora,180 -on1,0,0,24,0,0,4091,4320.000000,61,0,1780.640000,baseline,lora,180 -on10,0,0,24,1,0,1448,4320.000000,61,0,1753.600000,baseline,lora,180 -on4,0,0,23,0,0,4257,4263.000000,61,0,1706.320000,baseline,lora,180 -on8,0,0,24,0,0,4060,4320.000000,61,0,1776.320000,baseline,lora,180 -on7,0,0,24,0,0,4208,4320.000000,61,0,1756.800000,baseline,lora,180 -on9,0,0,23,1,0,180,4251.000000,61,0,1726.000000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,61,0,2153.120000,baseline,lora,180 -on2,0,0,24,1,0,3434,4320.000000,61,0,1888.160000,baseline,lora,180 -on11,0,0,24,0,0,4207,4320.000000,61,0,1765.120000,baseline,lora,180 -on8,0,0,24,0,0,4192,4320.000000,62,0,1792.320000,baseline,lora,180 -on11,0,0,24,0,0,4192,4320.000000,62,0,1748.640000,baseline,lora,180 -on5,0,0,24,0,0,4254,4320.000000,62,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,4245,4320.000000,62,0,1740.160000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,baseline,lora,180 -on6,0,0,24,1,0,3964,4320.000000,62,0,1808.000000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,62,0,2008.960000,baseline,lora,180 -on1,0,0,24,0,0,4226,4320.000000,62,0,1761.440000,baseline,lora,180 -on4,0,0,24,1,0,195,4320.000000,62,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4137,4320.000000,62,0,1775.680000,baseline,lora,180 -on10,0,0,24,0,0,4306,4320.000000,62,0,1730.400000,baseline,lora,180 -on3,0,0,24,0,0,4293,4320.000000,63,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4168,4320.000000,63,0,1752.480000,baseline,lora,180 -on7,0,0,24,0,0,4240,4320.000000,63,0,1740.960000,baseline,lora,180 -on8,0,0,24,1,0,1845,4320.000000,63,0,1775.840000,baseline,lora,180 -on2,0,0,24,0,0,4295,4320.000000,63,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,63,0,2102.240000,baseline,lora,180 -on6,0,0,24,0,0,4186,4320.000000,63,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4125,4320.000000,63,0,1765.440000,baseline,lora,180 -on4,0,0,24,1,0,3780,4320.000000,63,0,1753.600000,baseline,lora,180 -on1,0,0,24,0,0,4087,4320.000000,63,0,1780.320000,baseline,lora,180 -on9,0,0,24,0,0,3979,4320.000000,63,0,1843.200000,baseline,lora,180 -on5,0,0,24,0,0,4116,4320.000000,63,0,1795.680000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,64,0,2048.160000,baseline,lora,180 -on8,0,0,24,1,0,720,4320.000000,64,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4263,4320.000000,64,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4175,4320.000000,64,0,1771.040000,baseline,lora,180 -on4,0,0,24,0,0,4165,4320.000000,64,0,1760.640000,baseline,lora,180 -on9,0,0,24,0,0,4165,4320.000000,64,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,64,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4179,4320.000000,64,0,1750.880000,baseline,lora,180 -on6,0,0,24,0,0,4231,4320.000000,64,0,1785.600000,baseline,lora,180 -on7,0,0,24,1,0,2639,4320.000000,64,0,1763.520000,baseline,lora,180 -on11,0,0,24,1,0,1623,4320.000000,64,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4231,4320.000000,64,0,1742.400000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,65,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4132,4320.000000,65,0,1782.080000,baseline,lora,180 -on3,0,0,24,0,0,4115,4320.000000,65,0,1765.760000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,65,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4058,4320.000000,65,0,1773.440000,baseline,lora,180 -on7,0,0,24,1,0,183,4320.000000,65,0,1753.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,65,0,2089.920000,baseline,lora,180 -on11,0,0,24,0,0,4023,4320.000000,65,0,1779.040000,baseline,lora,180 -on5,0,0,24,0,0,4289,4320.000000,65,0,1733.120000,baseline,lora,180 -on8,0,0,24,0,0,4029,4320.000000,65,0,1779.040000,baseline,lora,180 -on6,0,0,24,0,0,4298,4320.000000,65,0,1785.600000,baseline,lora,180 -on1,0,0,24,0,0,4109,4320.000000,65,0,1769.280000,baseline,lora,180 -on7,0,0,24,0,0,4307,4320.000000,66,0,1730.240000,baseline,lora,180 -on10,0,0,24,0,0,4061,4320.000000,66,0,1785.600000,baseline,lora,180 -on11,0,0,24,0,0,4184,4320.000000,66,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4225,4320.000000,66,0,1743.520000,baseline,lora,180 -on1,0,0,24,1,0,1149,4320.000000,66,0,1771.680000,baseline,lora,180 -on5,0,0,24,1,0,299,4320.000000,66,0,1774.880000,baseline,lora,180 -on3,0,0,24,0,0,4196,4320.000000,66,0,1748.000000,baseline,lora,180 -on4,0,0,24,1,0,4133,4320.000000,66,0,1764.160000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,66,0,2109.440000,baseline,lora,180 -on8,0,0,24,0,0,4147,4320.000000,66,0,1768.480000,baseline,lora,180 -on9,0,0,24,0,0,4301,4320.000000,66,0,1752.640000,baseline,lora,180 -on6,0,0,24,0,0,3933,4320.000000,66,0,1830.400000,baseline,lora,180 -on7,0,0,24,0,0,4181,4320.000000,67,0,1750.560000,baseline,lora,180 -on8,0,0,24,1,0,3289,4320.000000,67,0,1788.320000,baseline,lora,180 -on3,0,0,24,0,0,3936,4320.000000,67,0,1805.600000,baseline,lora,180 -on5,0,0,24,0,0,4195,4320.000000,67,0,1749.440000,baseline,lora,180 -on11,0,0,24,0,0,4212,4320.000000,67,0,1745.440000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,67,0,2220.320000,baseline,lora,180 -on6,0,0,24,0,0,4080,4320.000000,67,0,1798.560000,baseline,lora,180 -on1,0,0,24,0,0,4178,4320.000000,67,0,1752.320000,baseline,lora,180 -on4,0,0,24,1,0,1328,4320.000000,67,0,1782.400000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,67,0,1728.000000,baseline,lora,180 -on9,0,0,23,0,0,3840,4275.000000,67,0,1825.360000,baseline,lora,180 -on2,0,0,24,0,0,4048,4320.000000,67,0,1799.200000,baseline,lora,180 -on7,0,0,24,1,0,0,4320.000000,68,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4161,4320.000000,68,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,3987,4320.000000,68,0,1809.600000,baseline,lora,180 -on1,0,0,24,0,0,4079,4320.000000,68,0,1785.600000,baseline,lora,180 -on3,0,0,24,1,0,3780,4320.000000,68,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4316,4320.000000,68,0,1743.360000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,68,0,2088.640000,baseline,lora,180 -on11,0,0,24,1,0,3716,4320.000000,68,0,1832.800000,baseline,lora,180 -on6,0,0,24,0,0,4203,4320.000000,68,0,1814.720000,baseline,lora,180 -on5,0,0,24,0,0,4108,4320.000000,68,0,1762.240000,baseline,lora,180 -on8,0,0,24,0,0,4261,4320.000000,68,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4296,4320.000000,68,0,1771.200000,baseline,lora,180 -on6,0,0,24,0,0,4246,4320.000000,69,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4265,4320.000000,69,0,1736.960000,baseline,lora,180 -on11,0,0,24,1,0,919,4320.000000,69,0,1753.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,69,0,1920.960000,baseline,lora,180 -on8,0,0,24,0,0,4281,4320.000000,69,0,1734.400000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4158,4320.000000,69,0,1757.760000,baseline,lora,180 -on3,0,0,24,0,0,4251,4320.000000,69,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4190,4320.000000,69,0,1777.440000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4301,4320.000000,69,0,1745.760000,baseline,lora,180 -on8,0,0,24,0,0,4173,4320.000000,70,0,1766.560000,baseline,lora,180 -on9,0,0,24,1,0,1980,4320.000000,70,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4059,4320.000000,70,0,1785.600000,baseline,lora,180 -on6,0,0,24,0,0,4177,4320.000000,70,0,1751.040000,baseline,lora,180 -on10,0,0,24,0,0,4288,4320.000000,70,0,1733.440000,baseline,lora,180 -on5,0,0,24,0,0,4232,4320.000000,70,0,1742.560000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,70,0,2142.880000,baseline,lora,180 -on11,0,0,24,0,0,4286,4320.000000,70,0,1751.200000,baseline,lora,180 -on1,0,0,24,1,0,2333,4320.000000,70,0,1756.000000,baseline,lora,180 -on3,0,0,24,0,0,4268,4320.000000,70,0,1736.480000,baseline,lora,180 -on4,0,0,24,0,0,4136,4320.000000,70,0,1772.000000,baseline,lora,180 -on7,0,0,24,0,0,4021,4320.000000,70,0,1797.600000,baseline,lora,180 -on10,0,0,24,0,0,4294,4320.000000,71,0,1785.600000,baseline,lora,180 -on8,0,0,24,1,0,2397,4320.000000,71,0,1802.400000,baseline,lora,180 -on6,0,0,24,0,0,4219,4320.000000,71,0,1785.600000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4088,4320.000000,71,0,1769.120000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4198,4320.000000,71,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,71,0,2024.640000,baseline,lora,180 -on3,0,0,24,1,0,1620,4320.000000,71,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4170,4320.000000,71,0,1763.040000,baseline,lora,180 -on4,0,0,24,0,0,4279,4320.000000,71,0,1756.800000,baseline,lora,180 -on8,0,0,24,1,0,2468,4320.000000,72,0,1764.160000,baseline,lora,180 -on9,0,0,24,0,0,4272,4320.000000,72,0,1735.840000,baseline,lora,180 -on4,0,0,24,0,0,4258,4320.000000,72,0,1766.560000,baseline,lora,180 -on7,0,0,24,0,0,3965,4320.000000,72,0,1789.440000,baseline,lora,180 -on5,0,0,24,0,0,4103,4320.000000,72,0,1763.200000,baseline,lora,180 -on1,0,0,24,0,0,4238,4320.000000,72,0,1762.560000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4292,4320.000000,72,0,1747.360000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,3764,4320.000000,72,0,1821.760000,baseline,lora,180 -on3,0,0,24,0,0,4220,4320.000000,72,0,1753.760000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,72,0,2156.000000,baseline,lora,180 -on5,0,0,24,0,0,3966,4320.000000,73,0,1809.920000,baseline,lora,180 -on6,0,0,24,0,0,4180,4320.000000,73,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,3821,4320.000000,73,0,1847.680000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,73,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4309,4320.000000,73,0,1729.920000,baseline,lora,180 -on2,0,0,24,0,0,4214,4320.000000,73,0,1768.800000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,73,0,2122.400000,baseline,lora,180 -on9,0,0,24,0,0,3992,4320.000000,73,0,1793.600000,baseline,lora,180 -on11,0,0,24,0,0,4283,4320.000000,73,0,1734.080000,baseline,lora,180 -on1,0,0,24,0,0,4270,4320.000000,73,0,1736.160000,baseline,lora,180 -on7,0,0,24,0,0,4229,4320.000000,73,0,1742.720000,baseline,lora,180 -on4,0,0,24,0,0,4281,4320.000000,73,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,3906,4320.000000,74,0,1833.760000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,74,0,2070.720000,baseline,lora,180 -on2,0,0,24,0,0,3925,4320.000000,74,0,1818.240000,baseline,lora,180 -on5,0,0,24,0,0,4249,4320.000000,74,0,1759.680000,baseline,lora,180 -on6,0,0,24,0,0,4103,4320.000000,74,0,1773.440000,baseline,lora,180 -on11,0,0,24,0,0,4078,4320.000000,74,0,1785.600000,baseline,lora,180 -on3,0,0,24,1,0,2880,4320.000000,74,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4237,4320.000000,74,0,1744.480000,baseline,lora,180 -on4,0,0,24,0,0,4260,4320.000000,74,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4210,4320.000000,75,0,1745.760000,baseline,lora,180 -on7,0,0,23,0,0,4117,4273.000000,75,0,1744.240000,baseline,lora,180 -on10,0,0,24,0,0,4107,4320.000000,75,0,1782.400000,baseline,lora,180 -on4,0,0,24,0,0,3915,4320.000000,75,0,1831.200000,baseline,lora,180 -on3,0,0,24,0,0,3926,4320.000000,75,0,1791.680000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,75,0,1728.000000,baseline,lora,180 -on6,0,0,24,1,0,2350,4320.000000,75,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4195,4320.000000,75,0,1755.040000,baseline,lora,180 -on8,0,0,24,0,0,4193,4320.000000,75,0,1773.760000,baseline,lora,180 -on1,0,0,24,0,0,4051,4320.000000,75,0,1777.760000,baseline,lora,180 -on11,0,0,24,0,0,4166,4320.000000,75,0,1754.880000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,75,0,2159.200000,baseline,lora,180 -on6,0,0,24,0,0,4167,4320.000000,76,0,1752.800000,baseline,lora,180 -on11,0,0,23,0,0,4102,4279.000000,76,0,1740.240000,baseline,lora,180 -on3,0,0,24,0,0,4146,4320.000000,76,0,1776.160000,baseline,lora,180 -on4,0,0,24,0,0,4313,4320.000000,76,0,1729.280000,baseline,lora,180 -on10,0,0,24,0,0,4174,4320.000000,76,0,1751.520000,baseline,lora,180 -on1,0,0,24,0,0,4144,4320.000000,76,0,1785.280000,baseline,lora,180 -on9,0,0,24,0,0,3940,4320.000000,76,0,1813.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,76,0,2144.800000,baseline,lora,180 -on5,0,0,24,0,0,4190,4320.000000,76,0,1810.880000,baseline,lora,180 -on8,0,0,24,1,0,1981,4320.000000,76,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4196,4320.000000,76,0,1768.000000,baseline,lora,180 -on7,0,0,24,0,0,4272,4320.000000,76,0,1747.680000,baseline,lora,180 -on2,0,0,24,0,0,4202,4320.000000,77,0,1747.360000,baseline,lora,180 -on7,0,0,24,0,0,4006,4320.000000,77,0,1795.200000,baseline,lora,180 -on10,0,0,24,0,0,4186,4320.000000,77,0,1756.800000,baseline,lora,180 -on6,0,0,24,1,0,3917,4320.000000,77,0,1761.120000,baseline,lora,180 -on3,0,0,24,0,0,4238,4320.000000,77,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4199,4320.000000,77,0,1785.600000,baseline,lora,180 -on5,0,0,24,0,0,4304,4320.000000,77,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4153,4320.000000,77,0,1801.760000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,77,0,1728.000000,baseline,lora,180 -on8,0,0,24,1,0,3865,4320.000000,77,0,1831.840000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,77,0,2103.200000,baseline,lora,180 -on9,0,0,24,0,0,4229,4320.000000,77,0,1807.040000,baseline,lora,180 -on8,0,0,24,0,0,4198,4320.000000,78,0,1760.480000,baseline,lora,180 -on4,0,0,24,1,0,2713,4320.000000,78,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4104,4320.000000,78,0,1779.680000,baseline,lora,180 -on2,0,0,23,0,0,4165,4217.000000,78,0,1695.280000,baseline,lora,180 -on7,0,0,24,0,0,4301,4320.000000,78,0,1731.200000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4169,4320.000000,78,0,1757.280000,baseline,lora,180 -on3,0,0,24,0,0,4069,4320.000000,78,0,1769.280000,baseline,lora,180 -on9,0,0,24,0,0,4220,4320.000000,78,0,1744.160000,baseline,lora,180 -on6,0,0,24,0,0,4150,4320.000000,78,0,1755.520000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,78,0,2044.800000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,3808,4320.000000,79,0,1819.680000,baseline,lora,180 -on5,0,0,24,0,0,4260,4320.000000,79,0,1756.800000,baseline,lora,180 -on4,0,0,24,1,0,1824,4320.000000,79,0,1790.240000,baseline,lora,180 -on10,0,0,24,0,0,4167,4320.000000,79,0,1752.800000,baseline,lora,180 -on1,0,0,24,1,0,3479,4320.000000,79,0,1839.360000,baseline,lora,180 -on11,0,0,23,0,0,4176,4302.000000,79,0,1753.280000,baseline,lora,180 -on2,0,0,24,0,0,4312,4320.000000,79,0,1736.640000,baseline,lora,180 -on6,0,0,24,0,0,4192,4320.000000,79,0,1776.800000,baseline,lora,180 -on7,0,0,24,0,0,4282,4320.000000,79,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,79,0,2076.000000,baseline,lora,180 -on9,0,0,24,1,0,1787,4320.000000,80,0,1782.400000,baseline,lora,180 -on6,0,0,24,0,0,4315,4320.000000,80,0,1728.960000,baseline,lora,180 -on11,0,0,24,0,0,4104,4320.000000,80,0,1762.880000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,80,0,2156.000000,baseline,lora,180 -on2,0,0,24,0,0,4015,4320.000000,80,0,1780.960000,baseline,lora,180 -on7,0,0,24,0,0,4112,4320.000000,80,0,1761.600000,baseline,lora,180 -on5,0,0,24,0,0,4136,4320.000000,80,0,1766.560000,baseline,lora,180 -on1,0,0,24,0,0,4220,4320.000000,80,0,1744.160000,baseline,lora,180 -on3,0,0,24,0,0,4173,4320.000000,80,0,1751.680000,baseline,lora,180 -on4,0,0,24,0,0,4157,4320.000000,80,0,1774.720000,baseline,lora,180 -on8,0,0,24,0,0,4098,4320.000000,80,0,1794.080000,baseline,lora,180 -on10,0,0,24,0,0,4095,4320.000000,80,0,1773.920000,baseline,lora,180 -on10,0,0,24,0,0,4217,4320.000000,81,0,1756.640000,baseline,lora,180 -on6,0,0,24,0,0,4094,4320.000000,81,0,1799.520000,baseline,lora,180 -on1,0,0,24,0,0,4284,4320.000000,81,0,1733.920000,baseline,lora,180 -on8,0,0,24,0,0,3812,4320.000000,81,0,1813.600000,baseline,lora,180 -on5,0,0,24,0,0,4149,4320.000000,81,0,1755.680000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,81,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4255,4320.000000,81,0,1765.600000,baseline,lora,180 -on11,0,0,23,0,0,4034,4152.000000,81,0,1680.160000,baseline,lora,180 -on9,0,0,24,1,0,1307,4320.000000,81,0,1776.320000,baseline,lora,180 -on3,0,0,24,0,0,4245,4320.000000,81,0,1740.160000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,81,0,2204.000000,baseline,lora,180 -on2,0,0,24,0,0,4017,4320.000000,81,0,1859.040000,baseline,lora,180 -on10,0,0,23,0,0,4271,4271.000000,82,0,1708.400000,baseline,lora,180 -on7,0,0,24,0,0,4200,4320.000000,82,0,1760.160000,baseline,lora,180 -on11,0,0,24,0,0,4221,4320.000000,82,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4258,4320.000000,82,0,1773.280000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,82,0,1728.000000,baseline,lora,180 -on1,0,0,24,1,0,2206,4320.000000,82,0,1775.200000,baseline,lora,180 -on4,0,0,24,1,0,3565,4320.000000,82,0,1782.400000,baseline,lora,180 -on3,0,0,24,1,0,439,4320.000000,82,0,1769.920000,baseline,lora,180 -on8,0,0,24,0,0,4214,4320.000000,82,0,1745.120000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,82,0,1728.000000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,82,0,2012.640000,baseline,lora,180 -on2,0,0,24,0,0,4072,4320.000000,82,0,1768.000000,baseline,lora,180 -on6,0,0,24,0,0,4151,4320.000000,83,0,1781.760000,baseline,lora,180 -on1,0,0,24,0,0,4048,4320.000000,83,0,1787.680000,baseline,lora,180 -on7,0,0,24,1,0,3240,4320.000000,83,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4054,4320.000000,83,0,1785.600000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,83,0,1728.000000,baseline,lora,180 -on11,0,0,24,1,0,2965,4320.000000,83,0,1771.840000,baseline,lora,180 -on10,0,0,24,0,0,4264,4320.000000,83,0,1756.800000,baseline,lora,180 -on3,0,0,24,1,0,18,4320.000000,83,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4057,4320.000000,83,0,1778.080000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,83,0,2177.120000,baseline,lora,180 -on2,0,0,24,0,0,4074,4320.000000,83,0,1819.520000,baseline,lora,180 -on5,0,0,24,0,0,4038,4320.000000,83,0,1794.240000,baseline,lora,180 -on6,0,0,24,0,0,4109,4320.000000,84,0,1820.960000,baseline,lora,180 -on11,0,0,24,0,0,4301,4320.000000,84,0,1737.280000,baseline,lora,180 -on5,0,0,24,0,0,4080,4320.000000,84,0,1804.800000,baseline,lora,180 -on2,0,0,24,1,0,2452,4320.000000,84,0,1793.600000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,84,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4027,4320.000000,84,0,1791.200000,baseline,lora,180 -on4,0,0,24,0,0,4251,4320.000000,84,0,1745.280000,baseline,lora,180 -on7,0,0,24,0,0,3856,4320.000000,84,0,1848.800000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,84,0,2092.960000,baseline,lora,180 -on9,0,0,24,0,0,4228,4320.000000,84,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4216,4320.000000,84,0,1785.600000,baseline,lora,180 -on3,0,0,24,0,0,4310,4320.000000,84,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4210,4320.000000,85,0,1745.920000,baseline,lora,180 -on2,0,0,24,0,0,4125,4320.000000,85,0,1782.880000,baseline,lora,180 -on6,0,0,24,0,0,4051,4320.000000,85,0,1775.840000,baseline,lora,180 -on8,0,0,24,1,0,1989,4320.000000,85,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4270,4320.000000,85,0,1736.160000,baseline,lora,180 -on10,0,0,24,0,0,4228,4320.000000,85,0,1770.720000,baseline,lora,180 -on11,0,0,24,0,0,3987,4320.000000,85,0,1781.920000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,85,0,2176.320000,baseline,lora,180 -on4,0,0,23,0,0,4088,4264.000000,85,0,1816.640000,baseline,lora,180 -on5,0,0,24,0,0,4010,4320.000000,85,0,1833.760000,baseline,lora,180 -on1,0,0,24,0,0,4220,4320.000000,85,0,1744.160000,baseline,lora,180 -on3,0,0,24,0,0,4275,4320.000000,85,0,1735.360000,baseline,lora,180 -on7,0,0,24,0,0,4136,4320.000000,86,0,1757.920000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,86,0,2187.360000,baseline,lora,180 -on2,0,0,24,0,0,4181,4320.000000,86,0,1785.600000,baseline,lora,180 -on9,0,0,24,1,0,1265,4320.000000,86,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4098,4320.000000,86,0,1763.840000,baseline,lora,180 -on1,0,0,24,0,0,4025,4320.000000,86,0,1811.360000,baseline,lora,180 -on10,0,0,24,0,0,4129,4320.000000,86,0,1799.680000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,86,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4191,4320.000000,86,0,1772.800000,baseline,lora,180 -on5,0,0,24,0,0,4162,4320.000000,86,0,1780.960000,baseline,lora,180 -on3,0,0,24,0,0,3768,4320.000000,86,0,1864.160000,baseline,lora,180 -on11,0,0,24,1,0,1095,4320.000000,86,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4129,4320.000000,87,0,1782.240000,baseline,lora,180 -on1,0,0,24,0,0,4131,4320.000000,87,0,1786.240000,baseline,lora,180 -on4,0,0,24,1,0,4077,4320.000000,87,0,1766.560000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,87,0,2138.400000,baseline,lora,180 -on8,0,0,24,0,0,4187,4320.000000,87,0,1785.600000,baseline,lora,180 -on2,0,0,24,1,0,2094,4320.000000,87,0,1764.320000,baseline,lora,180 -on7,0,0,24,0,0,4200,4320.000000,87,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4129,4320.000000,87,0,1782.080000,baseline,lora,180 -on3,0,0,24,0,0,4158,4320.000000,87,0,1785.600000,baseline,lora,180 -on6,0,0,24,0,0,4103,4320.000000,87,0,1783.680000,baseline,lora,180 -on9,0,0,24,0,0,4100,4320.000000,87,0,1781.760000,baseline,lora,180 -on5,0,0,24,0,0,4043,4320.000000,87,0,1814.400000,baseline,lora,180 -on10,0,0,24,0,0,4301,4320.000000,88,0,1731.200000,baseline,lora,180 -on3,0,0,24,0,0,4244,4320.000000,88,0,1745.920000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,88,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,3926,4320.000000,88,0,1795.360000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,88,0,2054.240000,baseline,lora,180 -on9,0,0,24,0,0,4315,4320.000000,88,0,1756.800000,baseline,lora,180 -on4,0,0,24,1,0,1099,4320.000000,88,0,1753.600000,baseline,lora,180 -on2,0,0,24,1,0,552,4320.000000,88,0,1753.600000,baseline,lora,180 -on6,0,0,23,0,0,4248,4267.000000,88,0,1719.120000,baseline,lora,180 -on1,0,0,24,0,0,4205,4320.000000,88,0,1746.720000,baseline,lora,180 -on8,0,0,24,1,0,1440,4320.000000,88,0,1753.600000,baseline,lora,180 -on7,0,0,24,1,0,1516,4320.000000,88,0,1782.400000,baseline,lora,180 -on6,0,0,24,0,0,4028,4320.000000,89,0,1788.640000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,89,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4258,4320.000000,89,0,1738.080000,baseline,lora,180 -on11,0,0,24,0,0,4229,4320.000000,89,0,1742.720000,baseline,lora,180 -on9,0,0,24,0,0,4100,4320.000000,89,0,1774.880000,baseline,lora,180 -on3,0,0,24,0,0,4240,4320.000000,89,0,1751.520000,baseline,lora,180 -on10,0,0,24,0,0,4190,4320.000000,89,0,1748.960000,baseline,lora,180 -on8,0,0,24,0,0,4100,4320.000000,89,0,1773.600000,baseline,lora,180 -on4,0,0,24,0,0,3747,4320.000000,89,0,1835.840000,baseline,lora,180 -on1,0,0,24,1,0,2880,4320.000000,89,0,1753.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,89,0,2145.440000,baseline,lora,180 -on5,0,0,24,0,0,4203,4320.000000,89,0,1764.640000,baseline,lora,180 -on9,0,0,24,0,0,3958,4320.000000,90,0,1809.600000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,90,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4037,4320.000000,90,0,1839.040000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,90,0,1728.000000,baseline,lora,180 -on5,0,0,23,0,0,4199,4262.000000,90,0,1715.040000,baseline,lora,180 -on7,0,0,24,0,0,4155,4320.000000,90,0,1754.880000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,90,0,1728.000000,baseline,lora,180 -on3,0,0,23,1,0,3606,4277.000000,90,0,1773.360000,baseline,lora,180 -on4,0,0,24,0,0,4256,4320.000000,90,0,1741.120000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,90,0,2067.680000,baseline,lora,180 -on11,0,0,24,0,0,4217,4320.000000,90,0,1814.400000,baseline,lora,180 -on2,0,0,24,0,0,4253,4320.000000,90,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4271,4320.000000,91,0,1763.200000,baseline,lora,180 -on10,0,0,24,0,0,4132,4320.000000,91,0,1776.160000,baseline,lora,180 -on11,0,0,24,0,0,4246,4320.000000,91,0,1742.880000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,91,0,2202.240000,baseline,lora,180 -on9,0,0,24,0,0,4110,4320.000000,91,0,1776.800000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,91,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4315,4320.000000,91,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,3898,4320.000000,91,0,1802.240000,baseline,lora,180 -on5,0,0,24,0,0,4274,4320.000000,91,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,3909,4320.000000,91,0,1816.320000,baseline,lora,180 -on2,0,0,24,0,0,4145,4320.000000,91,0,1776.960000,baseline,lora,180 -on8,0,0,24,1,0,3379,4320.000000,91,0,1782.400000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,3805,4320.000000,92,0,1867.360000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,92,0,2000.480000,baseline,lora,180 -on11,0,0,24,0,0,3891,4320.000000,92,0,1837.760000,baseline,lora,180 -on1,0,0,24,1,0,3966,4320.000000,92,0,1753.600000,baseline,lora,180 -on4,0,0,23,0,0,4206,4228.000000,92,0,1694.880000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4235,4320.000000,92,0,1756.320000,baseline,lora,180 -on1,0,0,24,0,0,4174,4320.000000,93,0,1758.880000,baseline,lora,180 -on11,0,0,24,0,0,4021,4320.000000,93,0,1776.320000,baseline,lora,180 -on7,0,0,24,1,0,360,4320.000000,93,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4172,4320.000000,93,0,1752.000000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4257,4320.000000,93,0,1738.400000,baseline,lora,180 -on6,0,0,24,1,0,180,4320.000000,93,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4182,4320.000000,93,0,1798.560000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,baseline,lora,180 -on10,0,0,23,0,0,3893,4276.000000,93,0,1806.240000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,93,0,2074.720000,baseline,lora,180 -on8,0,0,24,0,0,4103,4320.000000,93,0,1807.840000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,94,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4167,4320.000000,94,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4134,4320.000000,94,0,1806.560000,baseline,lora,180 -on2,0,0,24,0,0,3916,4320.000000,94,0,1793.280000,baseline,lora,180 -on9,0,0,24,0,0,4169,4320.000000,94,0,1768.160000,baseline,lora,180 -on6,0,0,24,0,0,3986,4320.000000,94,0,1809.120000,baseline,lora,180 -on4,0,0,23,0,0,4267,4304.000000,94,0,1727.680000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,94,0,2132.480000,baseline,lora,180 -on3,0,0,23,0,0,4213,4315.000000,94,0,1765.520000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,94,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4291,4320.000000,94,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4230,4320.000000,94,0,1742.560000,baseline,lora,180 -on10,0,0,24,0,0,3803,4320.000000,95,0,1840.320000,baseline,lora,180 -on1,0,0,24,0,0,4203,4320.000000,95,0,1747.040000,baseline,lora,180 -on5,0,0,24,0,0,4185,4320.000000,95,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4063,4320.000000,95,0,1769.600000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,95,0,2118.880000,baseline,lora,180 -on4,0,0,24,1,0,0,4320.000000,95,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4143,4320.000000,95,0,1760.800000,baseline,lora,180 -on8,0,0,24,1,0,1080,4320.000000,95,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4093,4320.000000,95,0,1799.200000,baseline,lora,180 -on7,0,0,24,0,0,4211,4320.000000,95,0,1745.760000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,baseline,lora,180 -on8,0,0,23,0,0,4239,4316.000000,96,0,1750.720000,baseline,lora,180 -on11,0,0,23,0,0,4187,4295.000000,96,0,1735.440000,baseline,lora,180 -on2,0,0,24,0,0,4231,4320.000000,96,0,1745.440000,baseline,lora,180 -on10,0,0,24,1,0,3373,4320.000000,96,0,1790.880000,baseline,lora,180 -on4,0,0,24,1,0,3149,4320.000000,96,0,1783.520000,baseline,lora,180 -on7,0,0,24,0,0,3983,4320.000000,96,0,1794.240000,baseline,lora,180 -on6,0,0,24,0,0,4178,4320.000000,96,0,1751.040000,baseline,lora,180 -on9,0,0,24,1,0,0,4320.000000,96,0,1753.600000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,96,0,2116.800000,baseline,lora,180 -on3,0,0,24,0,0,4301,4320.000000,96,0,1756.000000,baseline,lora,180 -on5,0,0,24,0,0,4254,4320.000000,96,0,1738.880000,baseline,lora,180 -on1,0,0,24,0,0,4187,4320.000000,96,0,1778.880000,baseline,lora,180 -on3,0,0,24,0,0,4070,4320.000000,97,0,1788.640000,baseline,lora,180 -on6,0,0,24,0,0,4137,4320.000000,97,0,1779.360000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,97,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4253,4320.000000,97,0,1739.040000,baseline,lora,180 -on5,0,0,24,0,0,4136,4320.000000,97,0,1776.320000,baseline,lora,180 -on8,0,0,24,1,0,3213,4320.000000,97,0,1779.840000,baseline,lora,180 -on2,0,0,24,0,0,4287,4320.000000,97,0,1733.440000,baseline,lora,180 -on9,0,0,24,0,0,3935,4320.000000,97,0,1823.680000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,97,0,2187.040000,baseline,lora,180 -on7,0,0,24,0,0,4049,4320.000000,97,0,1794.560000,baseline,lora,180 -on10,0,0,24,0,0,4308,4320.000000,97,0,1730.080000,baseline,lora,180 -on4,0,0,24,0,0,4057,4320.000000,97,0,1797.600000,baseline,lora,180 -on4,0,0,23,0,0,4113,4201.000000,98,0,1721.200000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,98,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4255,4320.000000,98,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4241,4320.000000,98,0,1740.800000,baseline,lora,180 -on5,0,0,24,0,0,3905,4320.000000,98,0,1860.000000,baseline,lora,180 -on6,0,0,24,0,0,4233,4320.000000,98,0,1764.480000,baseline,lora,180 -on11,0,0,24,0,0,4171,4320.000000,98,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4183,4320.000000,98,0,1768.160000,baseline,lora,180 -on10,0,0,24,0,0,4161,4320.000000,98,0,1780.000000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,98,0,2144.960000,baseline,lora,180 -on1,0,0,24,0,0,3988,4320.000000,98,0,1793.920000,baseline,lora,180 -on3,0,0,24,0,0,3939,4320.000000,98,0,1798.080000,baseline,lora,180 -on1,0,0,24,1,0,1970,4320.000000,99,0,1758.880000,baseline,lora,180 -on8,0,0,24,1,0,0,4320.000000,99,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4076,4320.000000,99,0,1767.360000,baseline,lora,180 -on2,0,0,24,0,0,3999,4320.000000,99,0,1784.160000,baseline,lora,180 -on6,0,0,24,0,0,4280,4320.000000,99,0,1762.720000,baseline,lora,180 -on7,0,0,24,1,0,540,4320.000000,99,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4051,4320.000000,99,0,1808.960000,baseline,lora,180 -on5,0,0,24,0,0,4185,4320.000000,99,0,1773.600000,baseline,lora,180 -on10,0,0,24,1,0,1427,4320.000000,99,0,1770.880000,baseline,lora,180 -on3,0,0,24,0,0,4071,4320.000000,99,0,1805.440000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,99,0,2182.560000,baseline,lora,180 -on9,0,0,24,0,0,4068,4320.000000,99,0,1783.840000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,100,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4090,4320.000000,100,0,1765.280000,baseline,lora,180 -on2,0,0,24,0,0,3892,4320.000000,100,0,1811.520000,baseline,lora,180 -on8,0,0,24,1,0,3437,4320.000000,100,0,1786.720000,baseline,lora,180 -on9,0,0,24,0,0,4230,4320.000000,100,0,1758.880000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,100,0,2164.800000,baseline,lora,180 -on6,0,0,24,0,0,4263,4320.000000,100,0,1737.280000,baseline,lora,180 -on4,0,0,24,0,0,4308,4320.000000,100,0,1730.080000,baseline,lora,180 -on11,0,0,24,1,0,555,4320.000000,100,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4179,4320.000000,100,0,1782.080000,baseline,lora,180 -on3,0,0,24,1,0,369,4320.000000,100,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4159,4320.000000,100,0,1771.840000,baseline,lora,180 -on4,0,0,24,0,0,4278,4320.000000,101,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4242,4320.000000,101,0,1740.640000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,101,0,2068.480000,baseline,lora,180 -on7,0,0,24,0,0,4099,4320.000000,101,0,1770.400000,baseline,lora,180 -on3,0,0,24,0,0,3950,4320.000000,101,0,1795.840000,baseline,lora,180 -on9,0,0,24,1,0,1246,4320.000000,101,0,1806.880000,baseline,lora,180 -on1,0,0,24,0,0,4221,4320.000000,101,0,1787.360000,baseline,lora,180 -on6,0,0,24,0,0,4198,4320.000000,101,0,1771.360000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,101,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4225,4320.000000,101,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4000,4320.000000,101,0,1795.840000,baseline,lora,180 -on2,0,0,24,0,0,4205,4320.000000,101,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4242,4320.000000,102,0,1740.640000,baseline,lora,180 -on6,0,0,24,0,0,4295,4320.000000,102,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4304,4320.000000,102,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,102,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4310,4320.000000,102,0,1729.760000,baseline,lora,180 -on3,0,0,24,0,0,4039,4320.000000,102,0,1780.160000,baseline,lora,180 -on2,0,0,24,0,0,4290,4320.000000,102,0,1742.720000,baseline,lora,180 -on1,0,0,24,1,0,2080,4320.000000,102,0,1782.400000,baseline,lora,180 -on5,0,0,24,0,0,4067,4320.000000,102,0,1779.520000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,102,0,2057.600000,baseline,lora,180 -on11,0,0,24,0,0,4221,4320.000000,102,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,4163,4320.000000,102,0,1753.280000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,103,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4241,4320.000000,103,0,1740.800000,baseline,lora,180 -on1,0,0,24,1,0,2168,4320.000000,103,0,1753.600000,baseline,lora,180 -on5,0,0,23,0,0,3994,4279.000000,103,0,1818.480000,baseline,lora,180 -on2,0,0,24,0,0,4304,4320.000000,103,0,1730.720000,baseline,lora,180 -on4,0,0,24,0,0,4317,4320.000000,103,0,1738.560000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,103,0,2072.800000,baseline,lora,180 -on8,0,0,24,0,0,4079,4320.000000,103,0,1814.400000,baseline,lora,180 -on3,0,0,24,0,0,4182,4320.000000,103,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4175,4320.000000,103,0,1756.800000,baseline,lora,180 -on10,0,0,24,1,0,2274,4320.000000,103,0,1803.680000,baseline,lora,180 -on11,0,0,24,0,0,4125,4320.000000,103,0,1778.080000,baseline,lora,180 -on5,0,0,24,0,0,4264,4320.000000,104,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,4115,4320.000000,104,0,1767.520000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,104,0,1728.000000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,104,0,2111.360000,baseline,lora,180 -on8,0,0,24,0,0,3934,4320.000000,104,0,1857.120000,baseline,lora,180 -on7,0,0,24,1,0,3042,4320.000000,104,0,1756.640000,baseline,lora,180 -on6,0,0,24,1,0,2640,4320.000000,104,0,1782.400000,baseline,lora,180 -on10,0,0,24,0,0,4282,4320.000000,104,0,1760.160000,baseline,lora,180 -on2,0,0,24,0,0,4072,4320.000000,104,0,1768.000000,baseline,lora,180 -on11,0,0,24,0,0,4166,4320.000000,104,0,1763.680000,baseline,lora,180 -on1,0,0,24,0,0,4194,4320.000000,104,0,1748.320000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,104,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,4187,4320.000000,105,0,1760.640000,baseline,lora,180 -on8,0,0,24,0,0,4155,4320.000000,105,0,1767.680000,baseline,lora,180 -on6,0,0,24,1,0,1474,4320.000000,105,0,1786.720000,baseline,lora,180 -on9,0,0,24,0,0,4036,4320.000000,105,0,1804.960000,baseline,lora,180 -on4,0,0,24,0,0,4198,4320.000000,105,0,1770.720000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,105,0,2147.200000,baseline,lora,180 -on10,0,0,24,0,0,4185,4320.000000,105,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4256,4320.000000,105,0,1761.600000,baseline,lora,180 -on7,0,0,24,0,0,3966,4320.000000,105,0,1820.320000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,105,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4123,4320.000000,105,0,1770.720000,baseline,lora,180 -on11,0,0,24,0,0,4104,4320.000000,105,0,1836.640000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,baseline,lora,180 -on5,0,0,24,1,0,2340,4320.000000,106,0,1753.600000,baseline,lora,180 -on6,0,0,24,0,0,4179,4320.000000,106,0,1779.360000,baseline,lora,180 -on8,0,0,24,0,0,4072,4320.000000,106,0,1777.760000,baseline,lora,180 -on9,0,0,24,0,0,4136,4320.000000,106,0,1757.760000,baseline,lora,180 -on2,0,0,24,0,0,4082,4320.000000,106,0,1788.800000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4113,4320.000000,106,0,1808.960000,baseline,lora,180 -on3,0,0,24,0,0,4181,4320.000000,106,0,1750.400000,baseline,lora,180 -on10,0,0,24,0,0,4162,4320.000000,106,0,1753.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,106,0,2031.680000,baseline,lora,180 -on1,0,0,24,0,0,4165,4320.000000,107,0,1758.400000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,107,0,2023.040000,baseline,lora,180 -on8,0,0,24,0,0,4217,4320.000000,107,0,1758.720000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,baseline,lora,180 -on6,0,0,24,1,0,1377,4320.000000,107,0,1782.400000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4212,4320.000000,107,0,1765.920000,baseline,lora,180 -on7,0,0,24,0,0,4172,4320.000000,107,0,1751.840000,baseline,lora,180 -on3,0,0,24,0,0,4265,4320.000000,107,0,1736.960000,baseline,lora,180 -on9,0,0,24,0,0,4177,4320.000000,107,0,1751.200000,baseline,lora,180 -on4,0,0,24,0,0,4098,4320.000000,107,0,1763.840000,baseline,lora,180 -on7,0,0,24,0,0,4119,4320.000000,108,0,1767.680000,baseline,lora,180 -on6,0,0,24,0,0,4084,4320.000000,108,0,1782.080000,baseline,lora,180 -on4,0,0,24,0,0,4214,4320.000000,108,0,1791.680000,baseline,lora,180 -on2,0,0,24,0,0,4129,4320.000000,108,0,1814.400000,baseline,lora,180 -on11,0,0,24,0,0,4291,4320.000000,108,0,1732.800000,baseline,lora,180 -on1,0,0,23,0,0,4297,4300.000000,108,0,1748.800000,baseline,lora,180 -on3,0,0,24,0,0,4123,4320.000000,108,0,1759.840000,baseline,lora,180 -on5,0,0,24,0,0,4204,4320.000000,108,0,1746.880000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,108,0,2100.160000,baseline,lora,180 -on10,0,0,24,0,0,4087,4320.000000,108,0,1781.760000,baseline,lora,180 -on9,0,0,24,0,0,4103,4320.000000,108,0,1763.040000,baseline,lora,180 -on8,0,0,24,1,0,1086,4320.000000,108,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4072,4320.000000,109,0,1780.000000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4136,4320.000000,109,0,1757.920000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,109,0,2021.440000,baseline,lora,180 -on6,0,0,24,0,0,4292,4320.000000,109,0,1732.640000,baseline,lora,180 -on4,0,0,24,1,0,180,4320.000000,109,0,1753.600000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4073,4320.000000,109,0,1781.600000,baseline,lora,180 -on3,0,0,24,0,0,4033,4320.000000,109,0,1798.080000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,110,0,2153.600000,baseline,lora,180 -on11,0,0,24,0,0,4184,4320.000000,110,0,1750.240000,baseline,lora,180 -on6,0,0,24,0,0,4279,4320.000000,110,0,1734.720000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4110,4320.000000,110,0,1761.920000,baseline,lora,180 -on3,0,0,24,0,0,4032,4320.000000,110,0,1787.200000,baseline,lora,180 -on10,0,0,24,0,0,3902,4320.000000,110,0,1844.320000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,baseline,lora,180 -on7,0,0,24,1,0,1321,4320.000000,110,0,1811.200000,baseline,lora,180 -on1,0,0,24,0,0,4175,4320.000000,110,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,3936,4320.000000,110,0,1801.760000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,111,0,2107.520000,baseline,lora,180 -on4,0,0,24,0,0,4000,4320.000000,111,0,1798.560000,baseline,lora,180 -on5,0,0,24,0,0,4308,4320.000000,111,0,1730.080000,baseline,lora,180 -on10,0,0,24,0,0,4052,4320.000000,111,0,1779.520000,baseline,lora,180 -on1,0,0,24,0,0,4301,4320.000000,111,0,1752.960000,baseline,lora,180 -on11,0,0,24,1,0,2272,4320.000000,111,0,1795.360000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4091,4320.000000,111,0,1780.480000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4008,4320.000000,111,0,1786.080000,baseline,lora,180 -on6,0,0,24,1,0,2899,4320.000000,111,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4202,4320.000000,111,0,1747.360000,baseline,lora,180 -on2,0,0,24,1,0,4062,4320.000000,112,0,1768.960000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,112,0,2107.200000,baseline,lora,180 -on11,0,0,24,0,0,4132,4320.000000,112,0,1805.600000,baseline,lora,180 -on9,0,0,24,1,0,48,4320.000000,112,0,1776.480000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4210,4320.000000,112,0,1745.760000,baseline,lora,180 -on1,0,0,24,0,0,4053,4320.000000,112,0,1771.040000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4156,4320.000000,112,0,1754.560000,baseline,lora,180 -on5,0,0,24,0,0,4069,4320.000000,112,0,1783.840000,baseline,lora,180 -on7,0,0,24,0,0,4124,4320.000000,112,0,1776.800000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4319,4320.000000,113,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4301,4320.000000,113,0,1756.800000,baseline,lora,180 -on3,0,0,24,0,0,4016,4320.000000,113,0,1785.600000,baseline,lora,180 -on5,0,0,24,0,0,4281,4320.000000,113,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,3839,4320.000000,113,0,1850.080000,baseline,lora,180 -on6,0,0,24,0,0,4205,4320.000000,113,0,1746.560000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,113,0,2069.280000,baseline,lora,180 -on4,0,0,24,0,0,4257,4320.000000,113,0,1756.800000,baseline,lora,180 -on9,0,0,24,1,0,2348,4320.000000,113,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4216,4320.000000,113,0,1744.800000,baseline,lora,180 -on7,0,0,24,0,0,4214,4320.000000,113,0,1745.120000,baseline,lora,180 -on11,0,0,24,0,0,4249,4320.000000,113,0,1739.680000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,114,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4068,4320.000000,114,0,1768.800000,baseline,lora,180 -on7,0,0,24,0,0,3982,4320.000000,114,0,1829.280000,baseline,lora,180 -on9,0,0,24,0,0,4242,4320.000000,114,0,1745.600000,baseline,lora,180 -on6,0,0,24,1,0,1080,4320.000000,114,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4149,4320.000000,114,0,1755.680000,baseline,lora,180 -on11,0,0,24,0,0,4300,4320.000000,114,0,1731.360000,baseline,lora,180 -on10,0,0,24,0,0,4057,4320.000000,114,0,1824.640000,baseline,lora,180 -on3,0,0,24,1,0,2319,4320.000000,114,0,1811.200000,baseline,lora,180 -on1,0,0,24,1,0,2331,4320.000000,114,0,1782.400000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,114,0,2140.960000,baseline,lora,180 -on4,0,0,24,0,0,4208,4320.000000,114,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4303,4320.000000,115,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4256,4320.000000,115,0,1738.560000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,115,0,2144.800000,baseline,lora,180 -on10,0,0,24,0,0,4031,4320.000000,115,0,1774.880000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,115,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4176,4320.000000,115,0,1751.200000,baseline,lora,180 -on8,0,0,24,0,0,4185,4320.000000,115,0,1749.920000,baseline,lora,180 -on11,0,0,24,1,0,1588,4320.000000,115,0,1797.600000,baseline,lora,180 -on6,0,0,24,1,0,540,4320.000000,115,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4023,4320.000000,115,0,1803.040000,baseline,lora,180 -on9,0,0,24,1,0,1627,4320.000000,115,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4319,4320.000000,115,0,1756.320000,baseline,lora,180 -on4,0,0,24,0,0,4180,4320.000000,116,0,1769.120000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,116,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4181,4320.000000,116,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,116,0,2146.880000,baseline,lora,180 -on2,0,0,24,0,0,4045,4320.000000,116,0,1828.800000,baseline,lora,180 -on1,0,0,24,0,0,4258,4320.000000,116,0,1744.000000,baseline,lora,180 -on11,0,0,24,1,0,1807,4320.000000,116,0,1753.600000,baseline,lora,180 -on6,0,0,23,0,0,4137,4248.000000,116,0,1717.120000,baseline,lora,180 -on3,0,0,24,1,0,1964,4320.000000,116,0,1811.200000,baseline,lora,180 -on10,0,0,24,0,0,4204,4320.000000,116,0,1746.720000,baseline,lora,180 -on7,0,0,24,0,0,4066,4320.000000,116,0,1769.280000,baseline,lora,180 -on9,0,0,24,0,0,4081,4320.000000,116,0,1784.480000,baseline,lora,180 -on8,0,0,24,0,0,4225,4320.000000,117,0,1743.360000,baseline,lora,180 -on11,0,0,24,1,0,2685,4320.000000,117,0,1756.160000,baseline,lora,180 -on5,0,0,24,0,0,4286,4320.000000,117,0,1759.680000,baseline,lora,180 -on2,0,0,24,0,0,3965,4320.000000,117,0,1789.440000,baseline,lora,180 -on4,0,0,24,0,0,4295,4320.000000,117,0,1732.160000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,117,0,1728.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,117,0,2009.600000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,117,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4057,4320.000000,117,0,1814.400000,baseline,lora,180 -on9,0,0,24,0,0,4318,4320.000000,117,0,1751.840000,baseline,lora,180 -on6,0,0,24,0,0,4153,4320.000000,117,0,1776.000000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,117,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4312,4320.000000,118,0,1729.440000,baseline,lora,180 -on6,0,0,24,0,0,4225,4320.000000,118,0,1743.360000,baseline,lora,180 -on4,0,0,24,0,0,4302,4320.000000,118,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4306,4320.000000,118,0,1756.800000,baseline,lora,180 -on8,0,0,24,1,0,3967,4320.000000,118,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4094,4320.000000,118,0,1768.320000,baseline,lora,180 -on9,0,0,24,1,0,540,4320.000000,118,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4175,4320.000000,118,0,1751.360000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,118,0,1963.360000,baseline,lora,180 -on5,0,0,24,1,0,976,4320.000000,118,0,1782.400000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,118,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4108,4320.000000,118,0,1800.480000,baseline,lora,180 -on4,0,0,24,1,0,3217,4320.000000,119,0,1830.240000,baseline,lora,180 -on8,0,0,23,0,0,4089,4270.000000,119,0,1738.720000,baseline,lora,180 -on2,0,0,24,1,0,1379,4320.000000,119,0,1772.320000,baseline,lora,180 -on9,0,0,24,1,0,1080,4320.000000,119,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,3925,4320.000000,119,0,1799.200000,baseline,lora,180 -on6,0,0,24,0,0,4180,4320.000000,119,0,1750.560000,baseline,lora,180 -on7,0,0,24,0,0,4003,4320.000000,119,0,1845.760000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,119,0,2185.280000,baseline,lora,180 -on11,0,0,24,0,0,4301,4320.000000,119,0,1740.160000,baseline,lora,180 -on10,0,0,24,0,0,4215,4320.000000,119,0,1744.960000,baseline,lora,180 -on3,0,0,24,0,0,4176,4320.000000,119,0,1784.480000,baseline,lora,180 -on1,0,0,24,0,0,4185,4320.000000,119,0,1749.760000,baseline,lora,180 -on2,0,0,24,0,0,4156,4320.000000,120,0,1785.600000,baseline,lora,180 -on11,0,0,24,0,0,4067,4320.000000,120,0,1800.800000,baseline,lora,180 -on10,0,0,24,1,0,1734,4320.000000,120,0,1765.440000,baseline,lora,180 -on5,0,0,24,0,0,4177,4320.000000,120,0,1785.600000,baseline,lora,180 -on8,0,0,24,0,0,4296,4320.000000,120,0,1756.960000,baseline,lora,180 -on7,0,0,24,1,0,2505,4320.000000,120,0,1761.440000,baseline,lora,180 -on9,0,0,24,0,0,4202,4320.000000,120,0,1775.840000,baseline,lora,180 -on3,0,0,24,0,0,4045,4320.000000,120,0,1804.960000,baseline,lora,180 -on1,0,0,24,1,0,1347,4320.000000,120,0,1782.400000,baseline,lora,180 -on6,0,0,24,1,0,2340,4320.000000,120,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4301,4320.000000,120,0,1756.800000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,120,0,2070.720000,baseline,lora,180 -on8,0,0,24,0,0,4065,4320.000000,121,0,1774.880000,baseline,lora,180 -on11,0,0,24,0,0,4308,4320.000000,121,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4292,4320.000000,121,0,1732.640000,baseline,lora,180 -on2,0,0,24,1,0,3924,4320.000000,121,0,1760.960000,baseline,lora,180 -on3,0,0,24,1,0,1980,4320.000000,121,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4201,4320.000000,121,0,1747.200000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,121,0,1728.000000,baseline,lora,180 -on6,0,0,24,1,0,297,4320.000000,121,0,1782.400000,baseline,lora,180 -on9,0,0,24,0,0,4300,4320.000000,121,0,1748.800000,baseline,lora,180 -on5,0,0,24,0,0,4279,4320.000000,121,0,1734.720000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,121,0,2036.480000,baseline,lora,180 -on4,0,0,24,1,0,3684,4320.000000,121,0,1782.400000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4164,4320.000000,122,0,1785.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,122,0,2093.760000,baseline,lora,180 -on7,0,0,24,0,0,4193,4320.000000,122,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,3778,4320.000000,122,0,1825.280000,baseline,lora,180 -on1,0,0,24,0,0,4249,4320.000000,122,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4079,4320.000000,122,0,1805.440000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,baseline,lora,180 -on3,0,0,24,1,0,360,4320.000000,122,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4115,4320.000000,122,0,1773.280000,baseline,lora,180 -on6,0,0,24,0,0,4314,4320.000000,122,0,1729.280000,baseline,lora,180 -on8,0,0,24,0,0,4277,4320.000000,123,0,1735.360000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,123,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4229,4320.000000,123,0,1756.800000,baseline,lora,180 -on2,0,0,24,1,0,918,4320.000000,123,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,123,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4250,4320.000000,123,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,4154,4320.000000,123,0,1782.720000,baseline,lora,180 -on5,0,0,24,1,0,2355,4320.000000,123,0,1753.600000,baseline,lora,180 -on6,0,0,24,0,0,4291,4320.000000,123,0,1732.800000,baseline,lora,180 -on4,0,0,24,1,0,3591,4320.000000,123,0,1827.520000,baseline,lora,180 -on10,0,0,24,1,0,1271,4320.000000,123,0,1753.600000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,123,0,2081.920000,baseline,lora,180 -on1,0,0,24,0,0,3931,4320.000000,124,0,1828.320000,baseline,lora,180 -on2,0,0,24,1,0,2006,4320.000000,124,0,1794.720000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,124,0,1728.000000,baseline,lora,180 -on5,0,0,24,1,0,1800,4320.000000,124,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4228,4320.000000,124,0,1742.880000,baseline,lora,180 -on9,0,0,24,0,0,3843,4320.000000,124,0,1837.600000,baseline,lora,180 -on6,0,0,24,0,0,4108,4320.000000,124,0,1786.240000,baseline,lora,180 -on8,0,0,24,1,0,0,4320.000000,124,0,1753.600000,baseline,lora,180 -on3,0,0,23,1,0,3397,4260.000000,124,0,1758.400000,baseline,lora,180 -on7,0,0,24,0,0,4308,4320.000000,124,0,1730.080000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,124,0,2193.440000,baseline,lora,180 -on4,0,0,23,0,0,3913,4236.000000,124,0,1769.760000,baseline,lora,180 -on6,0,0,24,1,0,3532,4320.000000,125,0,1795.040000,baseline,lora,180 -on2,0,0,24,0,0,4055,4320.000000,125,0,1774.240000,baseline,lora,180 -on8,0,0,24,0,0,3950,4320.000000,125,0,1802.240000,baseline,lora,180 -on3,0,0,24,0,0,4159,4320.000000,125,0,1777.120000,baseline,lora,180 -on7,0,0,24,1,0,1767,4320.000000,125,0,1801.440000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4228,4320.000000,125,0,1761.120000,baseline,lora,180 -on1,0,0,24,0,0,4263,4320.000000,125,0,1762.880000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4272,4320.000000,125,0,1736.000000,baseline,lora,180 -on4,0,0,24,0,0,4257,4320.000000,125,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,125,0,2051.360000,baseline,lora,180 -on9,0,0,24,1,0,1233,4320.000000,126,0,1773.600000,baseline,lora,180 -on11,0,0,24,1,0,2359,4320.000000,126,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4277,4320.000000,126,0,1735.040000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,3958,4320.000000,126,0,1801.760000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,126,0,2069.920000,baseline,lora,180 -on6,0,0,24,1,0,1761,4320.000000,126,0,1761.120000,baseline,lora,180 -on3,0,0,24,1,0,370,4320.000000,126,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4054,4320.000000,126,0,1781.280000,baseline,lora,180 -on5,0,0,24,0,0,4005,4320.000000,126,0,1814.400000,baseline,lora,180 -on4,0,0,24,0,0,4167,4320.000000,126,0,1752.640000,baseline,lora,180 -on4,0,0,24,1,0,0,4320.000000,127,0,1753.600000,baseline,lora,180 -on0,1,5,24,0,0,0,4320.000000,127,0,2075.040000,baseline,lora,180 -on9,0,0,24,0,0,4183,4320.000000,127,0,1772.160000,baseline,lora,180 -on8,0,0,24,1,0,1312,4320.000000,127,0,1774.240000,baseline,lora,180 -on11,0,0,24,0,0,4236,4320.000000,127,0,1771.520000,baseline,lora,180 -on10,0,0,24,0,0,4197,4320.000000,127,0,1756.800000,baseline,lora,180 -on2,0,0,24,1,0,3782,4320.000000,127,0,1786.560000,baseline,lora,180 -on1,0,0,24,0,0,4266,4320.000000,127,0,1756.800000,baseline,lora,180 -on7,0,0,24,1,0,1617,4320.000000,127,0,1777.920000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,127,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4317,4320.000000,127,0,1756.800000,baseline,lora,180 -on6,0,0,24,1,0,2755,4320.000000,127,0,1773.760000,baseline,lora,180 -on1,0,0,24,0,0,4208,4320.000000,128,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4106,4320.000000,128,0,1762.560000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,128,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4170,4320.000000,128,0,1785.600000,baseline,lora,180 -on3,0,0,24,1,0,1779,4320.000000,128,0,1759.360000,baseline,lora,180 -on8,0,0,24,0,0,4273,4320.000000,128,0,1735.680000,baseline,lora,180 -on5,0,0,24,1,0,3939,4320.000000,128,0,1757.760000,baseline,lora,180 -on4,0,0,24,1,0,2822,4320.000000,128,0,1789.920000,baseline,lora,180 -on9,0,0,24,0,0,4262,4320.000000,128,0,1765.760000,baseline,lora,180 -on10,0,0,24,0,0,4041,4320.000000,128,0,1782.720000,baseline,lora,180 -on2,0,0,24,1,0,903,4320.000000,128,0,1753.600000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,128,0,2115.040000,baseline,lora,180 -on1,0,0,24,0,0,3875,4320.000000,129,0,1808.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,129,0,2096.000000,baseline,lora,180 -on4,0,0,24,0,0,4076,4320.000000,129,0,1774.720000,baseline,lora,180 -on7,0,0,24,0,0,4213,4320.000000,129,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4232,4320.000000,129,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4098,4320.000000,129,0,1778.560000,baseline,lora,180 -on3,0,0,24,0,0,4140,4320.000000,129,0,1757.120000,baseline,lora,180 -on10,0,0,24,1,0,16,4320.000000,129,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,129,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4225,4320.000000,129,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4285,4320.000000,129,0,1743.200000,baseline,lora,180 -on9,0,0,24,0,0,4036,4320.000000,129,0,1814.080000,baseline,lora,180 -on8,0,0,24,0,0,4187,4320.000000,130,0,1769.760000,baseline,lora,180 -on3,0,0,24,0,0,4177,4320.000000,130,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4226,4320.000000,130,0,1753.920000,baseline,lora,180 -on9,0,0,24,0,0,3946,4320.000000,130,0,1810.880000,baseline,lora,180 -on7,0,0,24,0,0,4185,4320.000000,130,0,1785.600000,baseline,lora,180 -on6,0,0,24,0,0,4216,4320.000000,130,0,1761.440000,baseline,lora,180 -on10,0,0,23,1,0,2318,4278.000000,130,0,1765.600000,baseline,lora,180 -on4,0,0,24,0,0,4126,4320.000000,130,0,1769.280000,baseline,lora,180 -on5,0,0,23,0,0,3972,4291.000000,130,0,1787.440000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,130,0,2154.080000,baseline,lora,180 -on1,0,0,24,0,0,4019,4320.000000,130,0,1810.880000,baseline,lora,180 -on2,0,0,24,0,0,4106,4320.000000,130,0,1770.720000,baseline,lora,180 -on4,0,0,24,0,0,4030,4320.000000,131,0,1802.880000,baseline,lora,180 -on7,0,0,24,0,0,4132,4320.000000,131,0,1764.160000,baseline,lora,180 -on1,0,0,24,0,0,4203,4320.000000,131,0,1760.480000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,131,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4287,4320.000000,131,0,1761.120000,baseline,lora,180 -on11,0,0,24,0,0,3980,4320.000000,131,0,1804.320000,baseline,lora,180 -on8,0,0,24,0,0,4109,4320.000000,131,0,1770.400000,baseline,lora,180 -on9,0,0,24,0,0,4199,4320.000000,131,0,1747.680000,baseline,lora,180 -on6,0,0,24,0,0,4078,4320.000000,131,0,1770.880000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,131,0,2116.000000,baseline,lora,180 -on2,0,0,24,0,0,4273,4320.000000,131,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4226,4320.000000,131,0,1756.960000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,132,0,2105.440000,baseline,lora,180 -on4,0,0,24,0,0,4063,4320.000000,132,0,1785.600000,baseline,lora,180 -on5,0,0,24,0,0,4249,4320.000000,132,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,4178,4320.000000,132,0,1750.880000,baseline,lora,180 -on11,0,0,24,0,0,4075,4320.000000,132,0,1767.520000,baseline,lora,180 -on7,0,0,24,0,0,4074,4320.000000,132,0,1771.040000,baseline,lora,180 -on2,0,0,24,0,0,4301,4320.000000,132,0,1733.440000,baseline,lora,180 -on6,0,0,24,1,0,2889,4320.000000,132,0,1793.600000,baseline,lora,180 -on10,0,0,23,0,0,3958,4224.000000,132,0,1747.520000,baseline,lora,180 -on1,0,0,24,0,0,4170,4320.000000,132,0,1767.840000,baseline,lora,180 -on3,0,0,24,0,0,4269,4320.000000,132,0,1754.080000,baseline,lora,180 -on8,0,0,24,0,0,4283,4320.000000,132,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4166,4320.000000,133,0,1752.960000,baseline,lora,180 -on10,0,0,24,0,0,4155,4320.000000,133,0,1785.120000,baseline,lora,180 -on5,0,0,24,0,0,3895,4320.000000,133,0,1817.280000,baseline,lora,180 -on8,0,0,24,0,0,4299,4320.000000,133,0,1731.520000,baseline,lora,180 -on7,0,0,24,1,0,360,4320.000000,133,0,1753.600000,baseline,lora,180 -on3,0,0,24,1,0,1440,4320.000000,133,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,133,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4245,4320.000000,133,0,1740.160000,baseline,lora,180 -on6,0,0,24,0,0,3952,4320.000000,133,0,1808.160000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,133,0,2064.320000,baseline,lora,180 -on9,0,0,24,1,0,2728,4320.000000,133,0,1778.400000,baseline,lora,180 -on2,0,0,24,0,0,4285,4320.000000,133,0,1733.760000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,134,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4244,4320.000000,134,0,1740.320000,baseline,lora,180 -on1,0,0,24,0,0,4206,4320.000000,134,0,1749.760000,baseline,lora,180 -on11,0,0,24,0,0,3912,4320.000000,134,0,1836.320000,baseline,lora,180 -on6,0,0,24,1,0,720,4320.000000,134,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4158,4320.000000,134,0,1754.240000,baseline,lora,180 -on9,0,0,24,0,0,3884,4320.000000,134,0,1798.240000,baseline,lora,180 -on5,0,0,24,0,0,4049,4320.000000,134,0,1799.040000,baseline,lora,180 -on3,0,0,24,0,0,4170,4320.000000,134,0,1752.160000,baseline,lora,180 -on8,0,0,24,0,0,4132,4320.000000,134,0,1767.680000,baseline,lora,180 -on4,0,0,24,1,0,1800,4320.000000,134,0,1753.600000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,134,0,2147.360000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,135,0,2137.760000,baseline,lora,180 -on6,0,0,24,1,0,2648,4320.000000,135,0,1765.120000,baseline,lora,180 -on11,0,0,24,0,0,4319,4320.000000,135,0,1728.320000,baseline,lora,180 -on3,0,0,24,0,0,4291,4320.000000,135,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,3980,4320.000000,135,0,1814.400000,baseline,lora,180 -on5,0,0,24,0,0,4043,4320.000000,135,0,1791.520000,baseline,lora,180 -on7,0,0,24,1,0,629,4320.000000,135,0,1768.320000,baseline,lora,180 -on10,0,0,24,1,0,2651,4320.000000,135,0,1793.760000,baseline,lora,180 -on1,0,0,24,0,0,4150,4320.000000,135,0,1777.440000,baseline,lora,180 -on8,0,0,24,0,0,4128,4320.000000,135,0,1765.920000,baseline,lora,180 -on9,0,0,24,0,0,4155,4320.000000,135,0,1785.600000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,3918,4320.000000,136,0,1800.960000,baseline,lora,180 -on6,0,0,24,0,0,4203,4320.000000,136,0,1747.040000,baseline,lora,180 -on2,0,0,24,0,0,4183,4320.000000,136,0,1750.240000,baseline,lora,180 -on11,0,0,24,0,0,4315,4320.000000,136,0,1728.960000,baseline,lora,180 -on10,0,0,24,0,0,4092,4320.000000,136,0,1792.640000,baseline,lora,180 -on8,0,0,24,0,0,4149,4320.000000,136,0,1776.640000,baseline,lora,180 -on3,0,0,24,0,0,4289,4320.000000,136,0,1733.120000,baseline,lora,180 -on1,0,0,23,1,0,220,4253.000000,136,0,1726.800000,baseline,lora,180 -on4,0,0,24,1,0,2894,4320.000000,136,0,1806.560000,baseline,lora,180 -on9,0,0,24,0,0,4236,4320.000000,136,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4279,4320.000000,136,0,1734.720000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,136,0,2145.120000,baseline,lora,180 -on1,0,0,24,0,0,4196,4320.000000,137,0,1757.920000,baseline,lora,180 -on9,0,0,24,0,0,3870,4320.000000,137,0,1836.320000,baseline,lora,180 -on8,0,0,24,0,0,4181,4320.000000,137,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4193,4320.000000,137,0,1785.600000,baseline,lora,180 -on7,0,0,24,0,0,3976,4320.000000,137,0,1792.000000,baseline,lora,180 -on3,0,0,24,0,0,4284,4320.000000,137,0,1756.640000,baseline,lora,180 -on5,0,0,24,0,0,4163,4320.000000,137,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,3969,4320.000000,137,0,1792.480000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,137,0,2211.200000,baseline,lora,180 -on11,0,0,24,0,0,4181,4320.000000,137,0,1782.240000,baseline,lora,180 -on4,0,0,24,0,0,4069,4320.000000,137,0,1795.680000,baseline,lora,180 -on2,0,0,24,1,0,1093,4320.000000,137,0,1840.000000,baseline,lora,180 -on10,0,0,24,0,0,4201,4320.000000,138,0,1747.360000,baseline,lora,180 -on7,0,0,24,0,0,4035,4320.000000,138,0,1816.480000,baseline,lora,180 -on5,0,0,24,1,0,1983,4320.000000,138,0,1782.400000,baseline,lora,180 -on1,0,0,24,0,0,4299,4320.000000,138,0,1731.520000,baseline,lora,180 -on8,0,0,24,0,0,3975,4320.000000,138,0,1818.240000,baseline,lora,180 -on4,0,0,24,0,0,4078,4320.000000,138,0,1786.880000,baseline,lora,180 -on3,0,0,24,0,0,4139,4320.000000,138,0,1784.960000,baseline,lora,180 -on9,0,0,24,0,0,4243,4320.000000,138,0,1740.480000,baseline,lora,180 -on2,0,0,24,0,0,4149,4320.000000,138,0,1755.680000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,138,0,2100.960000,baseline,lora,180 -on11,0,0,24,0,0,4155,4320.000000,138,0,1779.680000,baseline,lora,180 -on6,0,0,24,0,0,4222,4320.000000,138,0,1743.840000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,139,0,2117.120000,baseline,lora,180 -on3,0,0,24,1,0,4116,4320.000000,139,0,1757.600000,baseline,lora,180 -on1,0,0,24,0,0,4098,4320.000000,139,0,1785.280000,baseline,lora,180 -on7,0,0,24,0,0,4094,4320.000000,139,0,1768.320000,baseline,lora,180 -on2,0,0,24,0,0,4181,4320.000000,139,0,1766.880000,baseline,lora,180 -on9,0,0,24,1,0,2737,4320.000000,139,0,1797.600000,baseline,lora,180 -on5,0,0,24,0,0,3868,4320.000000,139,0,1829.280000,baseline,lora,180 -on10,0,0,24,1,0,3833,4320.000000,139,0,1775.680000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4197,4320.000000,139,0,1755.360000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4094,4320.000000,140,0,1796.000000,baseline,lora,180 -on10,0,0,24,0,0,4282,4320.000000,140,0,1734.400000,baseline,lora,180 -on8,0,0,24,0,0,4217,4320.000000,140,0,1756.800000,baseline,lora,180 -on7,0,0,24,1,0,2923,4320.000000,140,0,1776.960000,baseline,lora,180 -on11,0,0,24,0,0,4274,4320.000000,140,0,1735.520000,baseline,lora,180 -on2,0,0,24,0,0,4188,4320.000000,140,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4170,4320.000000,140,0,1764.000000,baseline,lora,180 -on3,0,0,24,0,0,3950,4320.000000,140,0,1787.680000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,140,0,2137.760000,baseline,lora,180 -on6,0,0,24,0,0,4229,4320.000000,140,0,1742.720000,baseline,lora,180 -on9,0,0,24,0,0,4216,4320.000000,140,0,1744.960000,baseline,lora,180 -on4,0,0,24,0,0,4011,4320.000000,140,0,1777.920000,baseline,lora,180 -on6,0,0,24,0,0,4258,4320.000000,141,0,1738.080000,baseline,lora,180 -on3,0,0,24,0,0,4183,4320.000000,141,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4272,4320.000000,141,0,1735.840000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4200,4320.000000,141,0,1747.360000,baseline,lora,180 -on7,0,0,24,0,0,4250,4320.000000,141,0,1739.360000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,141,0,2008.000000,baseline,lora,180 -on8,0,0,24,0,0,4109,4320.000000,141,0,1803.680000,baseline,lora,180 -on5,0,0,24,0,0,4257,4320.000000,141,0,1738.240000,baseline,lora,180 -on4,0,0,24,0,0,4130,4320.000000,141,0,1758.720000,baseline,lora,180 -on11,0,0,24,1,0,247,4320.000000,141,0,1782.400000,baseline,lora,180 -on1,0,0,24,0,0,4265,4320.000000,142,0,1749.920000,baseline,lora,180 -on6,0,0,24,0,0,4034,4320.000000,142,0,1780.160000,baseline,lora,180 -on2,0,0,24,0,0,4299,4320.000000,142,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4187,4320.000000,142,0,1780.000000,baseline,lora,180 -on8,0,0,24,0,0,4165,4320.000000,142,0,1752.960000,baseline,lora,180 -on3,0,0,24,0,0,4034,4320.000000,142,0,1808.800000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,142,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,142,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,142,0,1728.000000,baseline,lora,180 -on10,0,0,24,1,0,900,4320.000000,142,0,1753.600000,baseline,lora,180 -on5,0,0,24,1,0,2944,4320.000000,142,0,1826.080000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,142,0,2064.000000,baseline,lora,180 -on1,0,0,24,0,0,4186,4320.000000,143,0,1764.960000,baseline,lora,180 -on7,0,0,24,0,0,4086,4320.000000,143,0,1770.400000,baseline,lora,180 -on10,0,0,24,0,0,4062,4320.000000,143,0,1790.880000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4158,4320.000000,143,0,1754.400000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,143,0,2084.480000,baseline,lora,180 -on2,0,0,24,0,0,4216,4320.000000,143,0,1756.800000,baseline,lora,180 -on3,0,0,24,1,0,1713,4320.000000,143,0,1779.040000,baseline,lora,180 -on6,0,0,24,0,0,4167,4320.000000,143,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4117,4320.000000,143,0,1788.000000,baseline,lora,180 -on5,0,0,24,1,0,2959,4320.000000,143,0,1771.680000,baseline,lora,180 -on6,0,0,24,0,0,4273,4320.000000,144,0,1745.600000,baseline,lora,180 -on4,0,0,24,0,0,4253,4320.000000,144,0,1738.880000,baseline,lora,180 -on8,0,0,24,0,0,3923,4320.000000,144,0,1800.000000,baseline,lora,180 -on9,0,0,24,0,0,4273,4320.000000,144,0,1753.760000,baseline,lora,180 -on3,0,0,24,0,0,4249,4320.000000,144,0,1756.800000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,144,0,2035.360000,baseline,lora,180 -on10,0,0,24,0,0,4141,4320.000000,144,0,1777.600000,baseline,lora,180 -on7,0,0,24,1,0,1709,4320.000000,144,0,1768.320000,baseline,lora,180 -on5,0,0,24,0,0,4051,4320.000000,144,0,1785.600000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,144,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4249,4320.000000,144,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4170,4320.000000,144,0,1768.160000,baseline,lora,180 -on10,0,0,24,0,0,3811,4320.000000,145,0,1878.080000,baseline,lora,180 -on3,0,0,24,0,0,4144,4320.000000,145,0,1780.480000,baseline,lora,180 -on8,0,0,24,0,0,4180,4320.000000,145,0,1755.040000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,145,0,2249.280000,baseline,lora,180 -on5,0,0,24,0,0,3969,4320.000000,145,0,1827.360000,baseline,lora,180 -on1,0,0,24,0,0,4193,4320.000000,145,0,1814.400000,baseline,lora,180 -on6,0,0,24,0,0,4161,4320.000000,145,0,1753.920000,baseline,lora,180 -on4,0,0,24,0,0,4046,4320.000000,145,0,1773.120000,baseline,lora,180 -on7,0,0,24,0,0,4180,4320.000000,145,0,1768.800000,baseline,lora,180 -on11,0,0,24,1,0,1214,4320.000000,145,0,1763.200000,baseline,lora,180 -on9,0,0,24,1,0,3028,4320.000000,145,0,1758.880000,baseline,lora,180 -on2,0,0,24,0,0,4077,4320.000000,145,0,1778.400000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,146,0,2016.000000,baseline,lora,180 -on5,0,0,24,0,0,4127,4320.000000,146,0,1809.760000,baseline,lora,180 -on4,0,0,24,0,0,4246,4320.000000,146,0,1740.000000,baseline,lora,180 -on10,0,0,24,0,0,4165,4320.000000,146,0,1756.160000,baseline,lora,180 -on6,0,0,24,0,0,4272,4320.000000,146,0,1757.920000,baseline,lora,180 -on7,0,0,24,0,0,4162,4320.000000,146,0,1753.440000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,146,0,1728.000000,baseline,lora,180 -on11,0,0,24,1,0,1080,4320.000000,146,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4207,4320.000000,146,0,1758.880000,baseline,lora,180 -on9,0,0,24,0,0,4123,4320.000000,146,0,1768.960000,baseline,lora,180 -on3,0,0,24,0,0,4190,4320.000000,146,0,1754.240000,baseline,lora,180 -on2,0,0,24,0,0,4079,4320.000000,146,0,1766.880000,baseline,lora,180 -on4,0,0,24,1,0,2857,4320.000000,147,0,1758.880000,baseline,lora,180 -on5,0,0,24,0,0,4176,4320.000000,147,0,1751.200000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,147,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4164,4320.000000,147,0,1766.880000,baseline,lora,180 -on1,0,0,24,0,0,4243,4320.000000,147,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,3997,4320.000000,147,0,1798.720000,baseline,lora,180 -on6,0,0,24,0,0,4313,4320.000000,147,0,1729.280000,baseline,lora,180 -on7,0,0,24,0,0,4072,4320.000000,147,0,1778.560000,baseline,lora,180 -on2,0,0,24,1,0,1680,4320.000000,147,0,1811.200000,baseline,lora,180 -on8,0,0,24,0,0,4300,4320.000000,147,0,1731.360000,baseline,lora,180 -on3,0,0,24,0,0,4193,4320.000000,147,0,1760.000000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,147,0,2094.880000,baseline,lora,180 -on1,0,0,24,0,0,4246,4320.000000,148,0,1740.160000,baseline,lora,180 -on11,0,0,24,0,0,4193,4320.000000,148,0,1785.600000,baseline,lora,180 -on4,0,0,24,1,0,1752,4320.000000,148,0,1763.200000,baseline,lora,180 -on10,0,0,24,0,0,4110,4320.000000,148,0,1797.760000,baseline,lora,180 -on8,0,0,24,1,0,2,4320.000000,148,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4301,4320.000000,148,0,1733.440000,baseline,lora,180 -on6,0,0,24,1,0,2833,4320.000000,148,0,1782.400000,baseline,lora,180 -on5,0,0,24,0,0,4120,4320.000000,148,0,1765.600000,baseline,lora,180 -on7,0,0,24,1,0,3123,4320.000000,148,0,1774.720000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,148,0,2098.720000,baseline,lora,180 -on9,0,0,24,0,0,4302,4320.000000,148,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4058,4320.000000,148,0,1770.240000,baseline,lora,180 -on4,0,0,24,0,0,4161,4320.000000,149,0,1780.960000,baseline,lora,180 -on2,0,0,24,0,0,4200,4320.000000,149,0,1747.360000,baseline,lora,180 -on6,0,0,24,0,0,4220,4320.000000,149,0,1744.320000,baseline,lora,180 -on1,0,0,23,0,0,4223,4290.000000,149,0,1726.880000,baseline,lora,180 -on3,0,0,24,0,0,3833,4320.000000,149,0,1815.840000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,149,0,2155.680000,baseline,lora,180 -on10,0,0,24,0,0,4118,4320.000000,149,0,1789.120000,baseline,lora,180 -on7,0,0,24,1,0,18,4320.000000,149,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,3939,4320.000000,149,0,1811.520000,baseline,lora,180 -on5,0,0,24,0,0,4276,4320.000000,149,0,1743.840000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,149,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4186,4320.000000,149,0,1785.600000,baseline,lora,180 -on1,0,0,24,0,0,4316,4320.000000,150,0,1728.800000,baseline,lora,180 -on10,0,0,24,0,0,4127,4320.000000,150,0,1779.520000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,baseline,lora,180 -on5,0,0,24,1,0,19,4320.000000,150,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,3941,4320.000000,150,0,1820.480000,baseline,lora,180 -on6,0,0,24,0,0,4101,4320.000000,150,0,1763.520000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,150,0,2064.480000,baseline,lora,180 -on8,0,0,24,0,0,4163,4320.000000,150,0,1772.960000,baseline,lora,180 -on11,0,0,24,1,0,1631,4320.000000,150,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4262,4320.000000,150,0,1737.440000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4102,4320.000000,150,0,1776.000000,baseline,lora,180 -on7,0,0,24,1,0,2276,4320.000000,151,0,1783.360000,baseline,lora,180 -on8,0,0,24,0,0,4184,4320.000000,151,0,1749.920000,baseline,lora,180 -on11,0,0,24,0,0,4175,4320.000000,151,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4086,4320.000000,151,0,1780.320000,baseline,lora,180 -on3,0,0,24,0,0,4274,4320.000000,151,0,1735.520000,baseline,lora,180 -on5,0,0,24,0,0,4080,4320.000000,151,0,1766.720000,baseline,lora,180 -on2,0,0,24,0,0,4269,4320.000000,151,0,1736.320000,baseline,lora,180 -on10,0,0,24,0,0,3855,4320.000000,151,0,1846.720000,baseline,lora,180 -on9,0,0,24,0,0,4031,4320.000000,151,0,1802.720000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,151,0,2152.000000,baseline,lora,180 -on1,0,0,24,0,0,4043,4320.000000,151,0,1802.240000,baseline,lora,180 -on4,0,0,24,0,0,4211,4320.000000,151,0,1785.760000,baseline,lora,180 -on1,0,0,24,0,0,4161,4320.000000,152,0,1771.680000,baseline,lora,180 -on9,0,0,24,0,0,4236,4320.000000,152,0,1757.280000,baseline,lora,180 -on8,0,0,24,0,0,4009,4320.000000,152,0,1784.320000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4226,4320.000000,152,0,1743.200000,baseline,lora,180 -on7,0,0,24,0,0,4123,4320.000000,152,0,1803.360000,baseline,lora,180 -on2,0,0,24,0,0,4046,4320.000000,152,0,1811.200000,baseline,lora,180 -on5,0,0,24,0,0,4080,4320.000000,152,0,1780.000000,baseline,lora,180 -on3,0,0,24,0,0,4089,4320.000000,152,0,1787.840000,baseline,lora,180 -on4,0,0,24,0,0,4147,4320.000000,152,0,1778.880000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,152,0,2097.440000,baseline,lora,180 -on1,0,0,24,0,0,4145,4320.000000,153,0,1764.800000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,153,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4258,4320.000000,153,0,1738.080000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,153,0,1728.000000,baseline,lora,180 -on11,0,0,23,0,0,4010,4276.000000,153,0,1775.360000,baseline,lora,180 -on7,0,0,24,1,0,2891,4320.000000,153,0,1753.600000,baseline,lora,180 -on4,0,0,24,1,0,1951,4320.000000,153,0,1834.560000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,153,0,2128.800000,baseline,lora,180 -on6,0,0,24,1,0,4140,4320.000000,153,0,1753.760000,baseline,lora,180 -on2,0,0,24,0,0,3851,4320.000000,153,0,1876.480000,baseline,lora,180 -on5,0,0,24,0,0,4088,4320.000000,153,0,1790.560000,baseline,lora,180 -on3,0,0,24,0,0,4173,4320.000000,153,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,4080,4320.000000,154,0,1796.160000,baseline,lora,180 -on5,0,0,24,0,0,3944,4320.000000,154,0,1810.880000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4229,4320.000000,154,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4188,4320.000000,154,0,1749.440000,baseline,lora,180 -on3,0,0,24,0,0,4268,4320.000000,154,0,1736.480000,baseline,lora,180 -on4,0,0,24,0,0,4247,4320.000000,154,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4070,4320.000000,154,0,1799.520000,baseline,lora,180 -on8,0,0,24,1,0,3616,4320.000000,154,0,1782.400000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,154,0,2076.160000,baseline,lora,180 -on6,0,0,24,0,0,4179,4320.000000,154,0,1773.920000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,155,0,2046.880000,baseline,lora,180 -on10,0,0,24,0,0,4088,4320.000000,155,0,1796.640000,baseline,lora,180 -on2,0,0,24,0,0,4218,4320.000000,155,0,1744.480000,baseline,lora,180 -on3,0,0,24,0,0,4233,4320.000000,155,0,1742.240000,baseline,lora,180 -on6,0,0,24,0,0,4168,4320.000000,155,0,1765.120000,baseline,lora,180 -on1,0,0,24,0,0,4312,4320.000000,155,0,1756.800000,baseline,lora,180 -on9,0,0,24,0,0,4190,4320.000000,155,0,1748.960000,baseline,lora,180 -on7,0,0,24,0,0,4048,4320.000000,155,0,1785.600000,baseline,lora,180 -on5,0,0,24,0,0,4300,4320.000000,155,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4094,4320.000000,155,0,1782.240000,baseline,lora,180 -on11,0,0,24,1,0,737,4320.000000,155,0,1753.760000,baseline,lora,180 -on8,0,0,23,0,0,4130,4269.000000,155,0,1736.400000,baseline,lora,180 -on11,0,0,24,1,0,3941,4320.000000,156,0,1768.320000,baseline,lora,180 -on1,0,0,24,0,0,4301,4320.000000,156,0,1752.160000,baseline,lora,180 -on7,0,0,24,1,0,194,4320.000000,156,0,1753.600000,baseline,lora,180 -on9,0,0,24,1,0,1800,4320.000000,156,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4118,4320.000000,156,0,1774.560000,baseline,lora,180 -on4,0,0,24,1,0,1,4320.000000,156,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4072,4320.000000,156,0,1775.520000,baseline,lora,180 -on8,0,0,24,0,0,4016,4320.000000,156,0,1777.120000,baseline,lora,180 -on5,0,0,24,1,0,2067,4320.000000,156,0,1811.840000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,156,0,1728.000000,baseline,lora,180 -on0,1,6,24,0,0,0,4320.000000,156,0,2087.520000,baseline,lora,180 -on6,0,0,24,1,0,2340,4320.000000,156,0,1753.600000,baseline,lora,180 -on2,0,0,24,0,0,4031,4320.000000,157,0,1786.080000,baseline,lora,180 -on11,0,0,24,0,0,4304,4320.000000,157,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,3990,4320.000000,157,0,1794.880000,baseline,lora,180 -on6,0,0,24,0,0,4192,4320.000000,157,0,1785.600000,baseline,lora,180 -on8,0,0,24,0,0,4246,4320.000000,157,0,1756.000000,baseline,lora,180 -on5,0,0,24,0,0,4197,4320.000000,157,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4138,4320.000000,157,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4277,4320.000000,157,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4022,4320.000000,157,0,1789.280000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,157,0,2010.560000,baseline,lora,180 -on10,0,0,24,0,0,4185,4320.000000,158,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4296,4320.000000,158,0,1732.000000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4291,4320.000000,158,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,3963,4320.000000,158,0,1842.720000,baseline,lora,180 -on2,0,0,24,0,0,4203,4320.000000,158,0,1763.040000,baseline,lora,180 -on6,0,0,24,1,0,2504,4320.000000,158,0,1756.320000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,158,0,2043.200000,baseline,lora,180 -on9,0,0,24,1,0,688,4320.000000,158,0,1782.400000,baseline,lora,180 -on7,0,0,24,0,0,3943,4320.000000,158,0,1788.800000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4177,4320.000000,159,0,1785.600000,baseline,lora,180 -on10,0,0,24,0,0,4168,4320.000000,159,0,1752.640000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,159,0,2081.760000,baseline,lora,180 -on6,0,0,24,0,0,4245,4320.000000,159,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4248,4320.000000,159,0,1740.000000,baseline,lora,180 -on7,0,0,24,0,0,4286,4320.000000,159,0,1734.240000,baseline,lora,180 -on9,0,0,24,0,0,4254,4320.000000,159,0,1765.920000,baseline,lora,180 -on1,0,0,24,0,0,4034,4320.000000,159,0,1774.080000,baseline,lora,180 -on5,0,0,24,0,0,4144,4320.000000,159,0,1781.920000,baseline,lora,180 -on11,0,0,24,0,0,4285,4320.000000,159,0,1733.760000,baseline,lora,180 -on3,0,0,24,1,0,3246,4320.000000,159,0,1823.680000,baseline,lora,180 -on4,0,0,24,1,0,730,4320.000000,159,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4279,4320.000000,160,0,1734.720000,baseline,lora,180 -on2,0,0,24,1,0,849,4320.000000,160,0,1764.000000,baseline,lora,180 -on11,0,0,24,0,0,4206,4320.000000,160,0,1758.240000,baseline,lora,180 -on6,0,0,24,1,0,10,4320.000000,160,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4271,4320.000000,160,0,1736.000000,baseline,lora,180 -on8,0,0,24,0,0,4069,4320.000000,160,0,1787.520000,baseline,lora,180 -on5,0,0,24,0,0,4064,4320.000000,160,0,1769.280000,baseline,lora,180 -on4,0,0,24,0,0,4301,4320.000000,160,0,1752.960000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,160,0,2146.560000,baseline,lora,180 -on3,0,0,24,0,0,4181,4320.000000,160,0,1750.720000,baseline,lora,180 -on1,0,0,24,0,0,4053,4320.000000,160,0,1781.440000,baseline,lora,180 -on7,0,0,24,0,0,3919,4320.000000,160,0,1807.200000,baseline,lora,180 -on11,0,0,24,0,0,4070,4320.000000,161,0,1785.760000,baseline,lora,180 -on2,0,0,24,0,0,4184,4320.000000,161,0,1775.520000,baseline,lora,180 -on8,0,0,24,0,0,4236,4320.000000,161,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4316,4320.000000,161,0,1728.800000,baseline,lora,180 -on6,0,0,24,0,0,4247,4320.000000,161,0,1740.000000,baseline,lora,180 -on5,0,0,24,1,0,727,4320.000000,161,0,1753.600000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,161,0,2081.600000,baseline,lora,180 -on9,0,0,24,0,0,4252,4320.000000,161,0,1739.040000,baseline,lora,180 -on1,0,0,24,0,0,3971,4320.000000,161,0,1790.880000,baseline,lora,180 -on4,0,0,23,0,0,4070,4192.000000,161,0,1705.600000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,161,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4079,4320.000000,161,0,1785.600000,baseline,lora,180 -on1,0,0,24,0,0,4066,4320.000000,162,0,1785.760000,baseline,lora,180 -on5,0,0,24,0,0,4181,4320.000000,162,0,1765.600000,baseline,lora,180 -on8,0,0,24,0,0,4223,4320.000000,162,0,1756.800000,baseline,lora,180 -on7,0,0,24,0,0,4220,4320.000000,162,0,1785.600000,baseline,lora,180 -on3,0,0,24,0,0,4308,4320.000000,162,0,1733.120000,baseline,lora,180 -on4,0,0,24,1,0,2131,4320.000000,162,0,1793.920000,baseline,lora,180 -on2,0,0,24,0,0,4099,4320.000000,162,0,1763.680000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,162,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4160,4320.000000,162,0,1754.240000,baseline,lora,180 -on11,0,0,24,1,0,2708,4320.000000,162,0,1825.280000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,162,0,2196.000000,baseline,lora,180 -on10,0,0,24,1,0,3892,4320.000000,162,0,1820.000000,baseline,lora,180 -on1,0,0,24,0,0,4184,4320.000000,163,0,1749.920000,baseline,lora,180 -on8,0,0,23,0,0,4280,4280.000000,163,0,1712.000000,baseline,lora,180 -on2,0,0,24,0,0,4013,4320.000000,163,0,1781.600000,baseline,lora,180 -on4,0,0,24,0,0,4050,4320.000000,163,0,1771.520000,baseline,lora,180 -on3,0,0,24,0,0,4109,4320.000000,163,0,1791.840000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,163,0,2184.000000,baseline,lora,180 -on11,0,0,24,0,0,4232,4320.000000,163,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,3949,4320.000000,163,0,1807.520000,baseline,lora,180 -on9,0,0,24,0,0,3974,4320.000000,163,0,1796.320000,baseline,lora,180 -on10,0,0,24,0,0,4256,4320.000000,163,0,1738.560000,baseline,lora,180 -on6,0,0,24,1,0,1086,4320.000000,163,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4170,4320.000000,163,0,1785.600000,baseline,lora,180 -on1,0,0,24,1,0,580,4320.000000,164,0,1776.160000,baseline,lora,180 -on0,1,5,24,0,0,0,4320.000000,164,0,2152.960000,baseline,lora,180 -on11,0,0,24,0,0,4122,4320.000000,164,0,1783.680000,baseline,lora,180 -on9,0,0,24,1,0,771,4320.000000,164,0,1782.400000,baseline,lora,180 -on2,0,0,24,1,0,540,4320.000000,164,0,1753.600000,baseline,lora,180 -on8,0,0,24,0,0,4292,4320.000000,164,0,1756.800000,baseline,lora,180 -on6,0,0,24,1,0,3297,4320.000000,164,0,1792.480000,baseline,lora,180 -on3,0,0,24,0,0,4211,4320.000000,164,0,1745.600000,baseline,lora,180 -on10,0,0,24,0,0,4266,4320.000000,164,0,1768.480000,baseline,lora,180 -on5,0,0,24,1,0,1260,4320.000000,164,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4158,4320.000000,164,0,1785.600000,baseline,lora,180 -on4,0,0,24,0,0,4059,4320.000000,164,0,1786.560000,baseline,lora,180 -on3,0,0,24,0,0,4233,4320.000000,165,0,1742.240000,baseline,lora,180 -on9,0,0,24,0,0,4199,4320.000000,165,0,1747.680000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,165,0,2076.000000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4031,4320.000000,165,0,1780.000000,baseline,lora,180 -on7,0,0,24,0,0,4316,4320.000000,165,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4280,4320.000000,165,0,1743.840000,baseline,lora,180 -on8,0,0,24,0,0,4207,4320.000000,165,0,1769.600000,baseline,lora,180 -on4,0,0,24,0,0,4305,4320.000000,165,0,1756.800000,baseline,lora,180 -on6,0,0,24,1,0,2520,4320.000000,165,0,1753.600000,baseline,lora,180 -on11,0,0,24,1,0,3288,4320.000000,165,0,1827.840000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,baseline,lora,180 -on2,0,0,24,1,0,2804,4320.000000,166,0,1781.280000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,166,0,2114.720000,baseline,lora,180 -on11,0,0,24,0,0,4319,4320.000000,166,0,1785.600000,baseline,lora,180 -on1,0,0,24,1,0,1827,4320.000000,166,0,1811.200000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,166,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4270,4320.000000,166,0,1736.160000,baseline,lora,180 -on6,0,0,24,0,0,4229,4320.000000,166,0,1751.840000,baseline,lora,180 -on7,0,0,24,0,0,4107,4320.000000,166,0,1772.320000,baseline,lora,180 -on10,0,0,24,1,0,2019,4320.000000,166,0,1776.320000,baseline,lora,180 -on8,0,0,24,0,0,4106,4320.000000,166,0,1762.560000,baseline,lora,180 -on4,0,0,24,1,0,912,4320.000000,166,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4037,4320.000000,166,0,1784.320000,baseline,lora,180 -on3,0,0,23,0,0,4172,4310.000000,167,0,1758.720000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,167,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4072,4320.000000,167,0,1816.960000,baseline,lora,180 -on11,0,0,24,0,0,4200,4320.000000,167,0,1747.360000,baseline,lora,180 -on4,0,0,24,0,0,4049,4320.000000,167,0,1805.920000,baseline,lora,180 -on8,0,0,24,0,0,4306,4320.000000,167,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,167,0,1728.000000,baseline,lora,180 -on5,0,0,23,0,0,4197,4268.000000,167,0,1764.800000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,167,0,1728.000000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,167,0,2004.800000,baseline,lora,180 -on6,0,0,24,0,0,4159,4320.000000,167,0,1796.640000,baseline,lora,180 -on2,0,0,24,0,0,4174,4320.000000,167,0,1751.680000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,168,0,2208.000000,baseline,lora,180 -on5,0,0,24,1,0,2895,4320.000000,168,0,1795.200000,baseline,lora,180 -on1,0,0,24,0,0,3851,4320.000000,168,0,1837.440000,baseline,lora,180 -on9,0,0,24,0,0,4256,4320.000000,168,0,1738.400000,baseline,lora,180 -on6,0,0,24,0,0,4044,4320.000000,168,0,1832.480000,baseline,lora,180 -on2,0,0,24,0,0,4138,4320.000000,168,0,1767.840000,baseline,lora,180 -on8,0,0,24,0,0,3988,4320.000000,168,0,1796.960000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4212,4320.000000,168,0,1745.600000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4234,4320.000000,168,0,1776.000000,baseline,lora,180 -on3,0,0,23,1,0,3566,4252.000000,168,0,1802.560000,baseline,lora,180 -on4,0,0,24,0,0,4193,4320.000000,169,0,1748.480000,baseline,lora,180 -on1,0,0,24,0,0,4230,4320.000000,169,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4042,4320.000000,169,0,1801.600000,baseline,lora,180 -on5,0,0,24,0,0,4166,4320.000000,169,0,1752.800000,baseline,lora,180 -on6,0,0,24,0,0,4170,4320.000000,169,0,1760.800000,baseline,lora,180 -on11,0,0,24,1,0,739,4320.000000,169,0,1753.600000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,169,0,1967.040000,baseline,lora,180 -on10,0,0,24,0,0,4282,4320.000000,169,0,1785.600000,baseline,lora,180 -on9,0,0,24,1,0,1080,4320.000000,169,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4166,4320.000000,169,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,3980,4320.000000,170,0,1806.400000,baseline,lora,180 -on10,0,0,24,1,0,1843,4320.000000,170,0,1782.400000,baseline,lora,180 -on3,0,0,24,0,0,3953,4320.000000,170,0,1787.200000,baseline,lora,180 -on6,0,0,24,0,0,4167,4320.000000,170,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,4244,4320.000000,170,0,1785.600000,baseline,lora,180 -on5,0,0,24,0,0,4269,4320.000000,170,0,1736.320000,baseline,lora,180 -on4,0,0,24,1,0,1805,4320.000000,170,0,1753.600000,baseline,lora,180 -on1,0,0,24,0,0,3978,4320.000000,170,0,1787.200000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,170,0,1728.000000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,170,0,2139.200000,baseline,lora,180 -on7,0,0,24,1,0,4041,4320.000000,170,0,1788.640000,baseline,lora,180 -on8,0,0,24,0,0,4285,4320.000000,170,0,1759.680000,baseline,lora,180 -on6,0,0,24,1,0,1167,4320.000000,171,0,1782.400000,baseline,lora,180 -on4,0,0,24,0,0,4255,4320.000000,171,0,1738.560000,baseline,lora,180 -on7,0,0,24,0,0,4204,4320.000000,171,0,1756.960000,baseline,lora,180 -on8,0,0,24,0,0,3921,4320.000000,171,0,1802.560000,baseline,lora,180 -on2,0,0,23,0,0,3993,4187.000000,171,0,1742.960000,baseline,lora,180 -on10,0,0,24,0,0,4316,4320.000000,171,0,1756.800000,baseline,lora,180 -on1,0,0,24,0,0,4191,4320.000000,171,0,1748.800000,baseline,lora,180 -on11,0,0,24,0,0,4072,4320.000000,171,0,1768.000000,baseline,lora,180 -on9,0,0,24,1,0,2972,4320.000000,171,0,1798.560000,baseline,lora,180 -on5,0,0,24,0,0,4269,4320.000000,171,0,1796.480000,baseline,lora,180 -on3,0,0,24,0,0,4133,4320.000000,171,0,1786.560000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,171,0,2111.520000,baseline,lora,180 -on4,0,0,24,0,0,4284,4320.000000,172,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4299,4320.000000,172,0,1731.520000,baseline,lora,180 -on9,0,0,24,0,0,3881,4320.000000,172,0,1811.360000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,172,0,2200.160000,baseline,lora,180 -on1,0,0,24,1,0,3960,4320.000000,172,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4187,4320.000000,172,0,1749.600000,baseline,lora,180 -on10,0,0,24,0,0,4072,4320.000000,172,0,1773.600000,baseline,lora,180 -on6,0,0,24,0,0,4137,4320.000000,172,0,1769.920000,baseline,lora,180 -on8,0,0,24,0,0,3922,4320.000000,172,0,1812.000000,baseline,lora,180 -on7,0,0,24,0,0,4157,4320.000000,172,0,1758.400000,baseline,lora,180 -on5,0,0,24,0,0,4289,4320.000000,172,0,1736.800000,baseline,lora,180 -on3,0,0,24,0,0,4092,4320.000000,172,0,1778.080000,baseline,lora,180 -on2,0,0,24,0,0,4065,4320.000000,173,0,1781.440000,baseline,lora,180 -on10,0,0,24,0,0,4068,4320.000000,173,0,1775.200000,baseline,lora,180 -on7,0,0,24,0,0,4197,4320.000000,173,0,1774.560000,baseline,lora,180 -on8,0,0,24,0,0,4301,4320.000000,173,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,173,0,2141.440000,baseline,lora,180 -on5,0,0,24,0,0,4069,4320.000000,173,0,1771.840000,baseline,lora,180 -on1,0,0,24,0,0,4032,4320.000000,173,0,1797.600000,baseline,lora,180 -on3,0,0,24,1,0,1440,4320.000000,173,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,173,0,1728.000000,baseline,lora,180 -on6,0,0,24,1,0,19,4320.000000,173,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4217,4320.000000,173,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,3885,4320.000000,173,0,1814.400000,baseline,lora,180 -on11,0,0,24,0,0,3761,4320.000000,174,0,1822.240000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,174,0,2154.240000,baseline,lora,180 -on5,0,0,24,0,0,4261,4320.000000,174,0,1774.400000,baseline,lora,180 -on3,0,0,24,0,0,4191,4320.000000,174,0,1748.960000,baseline,lora,180 -on1,0,0,23,1,0,793,4301.000000,174,0,1774.800000,baseline,lora,180 -on4,0,0,24,0,0,4175,4320.000000,174,0,1751.360000,baseline,lora,180 -on7,0,0,24,0,0,4137,4320.000000,174,0,1770.560000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,174,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4190,4320.000000,174,0,1764.960000,baseline,lora,180 -on6,0,0,24,0,0,4189,4320.000000,174,0,1749.120000,baseline,lora,180 -on9,0,0,23,1,0,1980,4212.000000,174,0,1710.400000,baseline,lora,180 -on10,0,0,24,0,0,4136,4320.000000,174,0,1768.320000,baseline,lora,180 -on10,0,0,24,0,0,4085,4320.000000,175,0,1783.520000,baseline,lora,180 -on4,0,0,24,0,0,4107,4320.000000,175,0,1772.960000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,175,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,3842,4320.000000,175,0,1815.840000,baseline,lora,180 -on1,0,0,24,0,0,4241,4320.000000,175,0,1740.800000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,175,0,2249.120000,baseline,lora,180 -on5,0,0,24,0,0,4114,4320.000000,175,0,1814.400000,baseline,lora,180 -on11,0,0,24,0,0,4048,4320.000000,175,0,1796.320000,baseline,lora,180 -on3,0,0,24,1,0,2852,4320.000000,175,0,1758.880000,baseline,lora,180 -on6,0,0,24,0,0,4176,4320.000000,175,0,1759.200000,baseline,lora,180 -on2,0,0,24,0,0,4242,4320.000000,175,0,1740.640000,baseline,lora,180 -on8,0,0,24,0,0,3840,4320.000000,175,0,1824.960000,baseline,lora,180 -on3,0,0,24,1,0,3952,4320.000000,176,0,1786.720000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,176,0,2043.360000,baseline,lora,180 -on11,0,0,24,0,0,4260,4320.000000,176,0,1764.000000,baseline,lora,180 -on10,0,0,24,0,0,4090,4320.000000,176,0,1785.600000,baseline,lora,180 -on7,0,0,24,0,0,4285,4320.000000,176,0,1733.760000,baseline,lora,180 -on8,0,0,24,1,0,909,4320.000000,176,0,1753.600000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,176,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4313,4320.000000,176,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4182,4320.000000,176,0,1775.360000,baseline,lora,180 -on9,0,0,24,0,0,4191,4320.000000,176,0,1748.800000,baseline,lora,180 -on6,0,0,24,0,0,4189,4320.000000,176,0,1769.440000,baseline,lora,180 -on2,0,0,24,0,0,4143,4320.000000,176,0,1785.600000,baseline,lora,180 -on6,0,0,24,1,0,4014,4320.000000,177,0,1782.400000,baseline,lora,180 -on0,1,5,24,0,0,0,4320.000000,177,0,2110.720000,baseline,lora,180 -on5,0,0,24,0,0,4301,4320.000000,177,0,1734.240000,baseline,lora,180 -on9,0,0,24,1,0,1440,4320.000000,177,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4187,4320.000000,177,0,1769.120000,baseline,lora,180 -on1,0,0,24,0,0,4169,4320.000000,177,0,1766.400000,baseline,lora,180 -on4,0,0,24,0,0,4319,4320.000000,177,0,1757.120000,baseline,lora,180 -on3,0,0,23,1,0,547,4250.000000,177,0,1725.600000,baseline,lora,180 -on10,0,0,24,0,0,4232,4320.000000,177,0,1742.240000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,177,0,1728.000000,baseline,lora,180 -on8,0,0,24,1,0,3270,4320.000000,177,0,1823.360000,baseline,lora,180 -on2,0,0,24,1,0,1088,4320.000000,177,0,1795.360000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,178,0,1728.000000,baseline,lora,180 -on11,0,0,24,0,0,4135,4320.000000,178,0,1757.920000,baseline,lora,180 -on5,0,0,24,0,0,4170,4320.000000,178,0,1757.120000,baseline,lora,180 -on3,0,0,24,0,0,4179,4320.000000,178,0,1750.720000,baseline,lora,180 -on8,0,0,24,0,0,4250,4320.000000,178,0,1756.800000,baseline,lora,180 -on10,0,0,24,0,0,4212,4320.000000,178,0,1772.800000,baseline,lora,180 -on1,0,0,24,1,0,2976,4320.000000,178,0,1767.200000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,178,0,2137.920000,baseline,lora,180 -on6,0,0,24,0,0,4114,4320.000000,178,0,1775.520000,baseline,lora,180 -on2,0,0,24,0,0,3976,4320.000000,178,0,1813.600000,baseline,lora,180 -on9,0,0,24,0,0,4276,4320.000000,178,0,1735.200000,baseline,lora,180 -on7,0,0,24,0,0,4077,4320.000000,178,0,1772.160000,baseline,lora,180 -on10,0,0,24,0,0,4079,4320.000000,179,0,1772.160000,baseline,lora,180 -on8,0,0,24,0,0,4109,4320.000000,179,0,1787.360000,baseline,lora,180 -on7,0,0,24,0,0,4189,4320.000000,179,0,1749.120000,baseline,lora,180 -on4,0,0,24,0,0,4131,4320.000000,179,0,1758.560000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,baseline,lora,180 -on11,0,0,24,1,0,3352,4320.000000,179,0,1782.400000,baseline,lora,180 -on5,0,0,24,0,0,4020,4320.000000,179,0,1797.600000,baseline,lora,180 -on6,0,0,24,0,0,4163,4320.000000,179,0,1765.600000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4294,4320.000000,179,0,1732.320000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,179,0,2117.760000,baseline,lora,180 -on9,0,0,24,1,0,4045,4320.000000,179,0,1782.400000,baseline,lora,180 -on11,0,0,24,0,0,4067,4320.000000,180,0,1785.120000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,180,0,2095.200000,baseline,lora,180 -on3,0,0,24,0,0,4295,4320.000000,180,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,180,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,3987,4320.000000,180,0,1798.880000,baseline,lora,180 -on7,0,0,24,0,0,4234,4320.000000,180,0,1770.240000,baseline,lora,180 -on6,0,0,24,1,0,1281,4320.000000,180,0,1779.200000,baseline,lora,180 -on8,0,0,24,0,0,4180,4320.000000,180,0,1774.240000,baseline,lora,180 -on1,0,0,24,0,0,4128,4320.000000,180,0,1759.040000,baseline,lora,180 -on10,0,0,23,0,0,4289,4289.000000,180,0,1715.600000,baseline,lora,180 -on9,0,0,24,0,0,4251,4320.000000,180,0,1739.200000,baseline,lora,180 -on2,0,0,24,1,0,1495,4320.000000,180,0,1782.400000,baseline,lora,180 -on11,0,0,24,1,0,1097,4320.000000,181,0,1753.600000,baseline,lora,180 -on9,0,0,23,0,0,4091,4295.000000,181,0,1763.280000,baseline,lora,180 -on1,0,0,24,0,0,4223,4320.000000,181,0,1815.520000,baseline,lora,180 -on10,0,0,24,0,0,4282,4320.000000,181,0,1759.200000,baseline,lora,180 -on3,0,0,24,0,0,3983,4320.000000,181,0,1782.560000,baseline,lora,180 -on8,0,0,24,0,0,4051,4320.000000,181,0,1777.440000,baseline,lora,180 -on6,0,0,24,1,0,14,4320.000000,181,0,1753.600000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4256,4320.000000,181,0,1738.560000,baseline,lora,180 -on7,0,0,24,0,0,4106,4320.000000,181,0,1762.560000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,181,0,2130.400000,baseline,lora,180 -on4,0,0,24,0,0,4135,4320.000000,181,0,1767.840000,baseline,lora,180 -on9,0,0,24,0,0,4030,4320.000000,182,0,1781.280000,baseline,lora,180 -on2,0,0,24,0,0,4275,4320.000000,182,0,1735.360000,baseline,lora,180 -on3,0,0,24,1,0,896,4320.000000,182,0,1755.040000,baseline,lora,180 -on6,0,0,24,0,0,3989,4320.000000,182,0,1816.480000,baseline,lora,180 -on7,0,0,24,0,0,4050,4320.000000,182,0,1771.680000,baseline,lora,180 -on11,0,0,24,1,0,3077,4320.000000,182,0,1753.600000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,182,0,2119.840000,baseline,lora,180 -on8,0,0,24,1,0,540,4320.000000,182,0,1753.600000,baseline,lora,180 -on1,0,0,24,0,0,4238,4320.000000,182,0,1756.800000,baseline,lora,180 -on4,0,0,24,0,0,4176,4320.000000,182,0,1778.240000,baseline,lora,180 -on5,0,0,24,0,0,4320,4320.000000,182,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4095,4320.000000,182,0,1781.440000,baseline,lora,180 -on10,0,0,24,0,0,3916,4320.000000,183,0,1854.240000,baseline,lora,180 -on1,0,0,24,1,0,2133,4320.000000,183,0,1758.560000,baseline,lora,180 -on8,0,0,24,0,0,4021,4320.000000,183,0,1788.320000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,183,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4199,4320.000000,183,0,1750.720000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,183,0,1728.000000,baseline,lora,180 -on9,0,0,24,0,0,4270,4320.000000,183,0,1736.160000,baseline,lora,180 -on11,0,0,24,0,0,4181,4320.000000,183,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4306,4320.000000,183,0,1758.240000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,183,0,2216.640000,baseline,lora,180 -on5,0,0,24,0,0,3671,4320.000000,183,0,1885.760000,baseline,lora,180 -on2,0,0,24,1,0,2495,4320.000000,183,0,1825.440000,baseline,lora,180 -on9,0,0,24,1,0,1373,4320.000000,184,0,1782.400000,baseline,lora,180 -on8,0,0,24,1,0,1080,4320.000000,184,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4000,4320.000000,184,0,1798.240000,baseline,lora,180 -on6,0,0,24,0,0,4065,4320.000000,184,0,1793.440000,baseline,lora,180 -on2,0,0,24,0,0,4069,4320.000000,184,0,1768.640000,baseline,lora,180 -on5,0,0,24,0,0,4132,4320.000000,184,0,1761.600000,baseline,lora,180 -on10,0,0,24,0,0,4201,4320.000000,184,0,1799.680000,baseline,lora,180 -on4,0,0,24,0,0,4197,4320.000000,184,0,1770.880000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,184,0,2147.680000,baseline,lora,180 -on11,0,0,24,1,0,1800,4320.000000,184,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4168,4320.000000,184,0,1760.000000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,184,0,1728.000000,baseline,lora,180 -on7,0,0,24,1,0,3241,4320.000000,185,0,1753.600000,baseline,lora,180 -on2,0,0,24,1,0,1800,4320.000000,185,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4244,4320.000000,185,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,185,0,2126.880000,baseline,lora,180 -on4,0,0,24,0,0,4051,4320.000000,185,0,1771.520000,baseline,lora,180 -on1,0,0,24,0,0,4162,4320.000000,185,0,1806.880000,baseline,lora,180 -on10,0,0,24,0,0,4076,4320.000000,185,0,1786.400000,baseline,lora,180 -on8,0,0,24,0,0,4290,4320.000000,185,0,1732.960000,baseline,lora,180 -on5,0,0,24,0,0,3827,4320.000000,185,0,1833.600000,baseline,lora,180 -on3,0,0,24,0,0,4204,4320.000000,185,0,1752.160000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,185,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4230,4320.000000,185,0,1742.560000,baseline,lora,180 -on9,0,0,24,0,0,4237,4320.000000,186,0,1760.960000,baseline,lora,180 -on10,0,0,24,0,0,4174,4320.000000,186,0,1756.800000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,186,0,2133.440000,baseline,lora,180 -on4,0,0,24,0,0,3865,4320.000000,186,0,1823.360000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,186,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4127,4320.000000,186,0,1774.720000,baseline,lora,180 -on3,0,0,24,0,0,4120,4320.000000,186,0,1773.120000,baseline,lora,180 -on11,0,0,24,0,0,4218,4320.000000,186,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4001,4320.000000,186,0,1817.920000,baseline,lora,180 -on8,0,0,24,0,0,4179,4320.000000,186,0,1760.640000,baseline,lora,180 -on2,0,0,24,0,0,4263,4320.000000,186,0,1737.280000,baseline,lora,180 -on5,0,0,24,0,0,4206,4320.000000,186,0,1746.560000,baseline,lora,180 -on9,0,0,24,0,0,4293,4320.000000,187,0,1756.800000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,187,0,2103.840000,baseline,lora,180 -on10,0,0,24,0,0,4191,4320.000000,187,0,1757.440000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4302,4320.000000,187,0,1731.040000,baseline,lora,180 -on5,0,0,24,1,0,3228,4320.000000,187,0,1811.200000,baseline,lora,180 -on11,0,0,24,1,0,3368,4320.000000,187,0,1762.080000,baseline,lora,180 -on2,0,0,24,0,0,4078,4320.000000,187,0,1782.080000,baseline,lora,180 -on4,0,0,24,0,0,4149,4320.000000,187,0,1785.600000,baseline,lora,180 -on1,0,0,24,0,0,4068,4320.000000,187,0,1769.120000,baseline,lora,180 -on8,0,0,24,0,0,4033,4320.000000,187,0,1782.400000,baseline,lora,180 -on6,0,0,24,0,0,4264,4320.000000,188,0,1765.440000,baseline,lora,180 -on7,0,0,24,0,0,4202,4320.000000,188,0,1758.560000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,188,0,2213.920000,baseline,lora,180 -on2,0,0,24,0,0,4073,4320.000000,188,0,1772.960000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,188,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,3998,4320.000000,188,0,1808.640000,baseline,lora,180 -on3,0,0,24,0,0,4080,4320.000000,188,0,1769.600000,baseline,lora,180 -on8,0,0,24,0,0,4106,4320.000000,188,0,1762.560000,baseline,lora,180 -on11,0,0,24,0,0,4216,4320.000000,188,0,1756.800000,baseline,lora,180 -on5,0,0,24,0,0,4008,4320.000000,188,0,1797.600000,baseline,lora,180 -on1,0,0,24,1,0,3420,4320.000000,188,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,3998,4320.000000,188,0,1789.600000,baseline,lora,180 -on1,0,0,24,0,0,4234,4320.000000,189,0,1769.920000,baseline,lora,180 -on6,0,0,24,1,0,2340,4320.000000,189,0,1753.600000,baseline,lora,180 -on3,0,0,24,0,0,4320,4320.000000,189,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4146,4320.000000,189,0,1756.160000,baseline,lora,180 -on2,0,0,24,1,0,3600,4320.000000,189,0,1753.600000,baseline,lora,180 -on5,0,0,24,1,0,3060,4320.000000,189,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,4061,4320.000000,189,0,1803.200000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,189,0,2028.480000,baseline,lora,180 -on10,0,0,24,0,0,4159,4320.000000,189,0,1777.280000,baseline,lora,180 -on9,0,0,24,0,0,4320,4320.000000,189,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4263,4320.000000,189,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4169,4320.000000,189,0,1752.480000,baseline,lora,180 -on5,0,0,24,1,0,1083,4320.000000,190,0,1753.600000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,190,0,2057.120000,baseline,lora,180 -on9,0,0,24,0,0,3871,4320.000000,190,0,1809.760000,baseline,lora,180 -on11,0,0,24,0,0,4032,4320.000000,190,0,1793.600000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4038,4320.000000,190,0,1798.240000,baseline,lora,180 -on2,0,0,24,1,0,2067,4320.000000,190,0,1768.640000,baseline,lora,180 -on3,0,0,24,0,0,4297,4320.000000,190,0,1756.800000,baseline,lora,180 -on6,0,0,24,0,0,4209,4320.000000,190,0,1745.920000,baseline,lora,180 -on5,0,0,24,0,0,4308,4320.000000,191,0,1730.080000,baseline,lora,180 -on2,0,0,24,1,0,180,4320.000000,191,0,1753.600000,baseline,lora,180 -on7,0,0,24,0,0,4127,4320.000000,191,0,1759.200000,baseline,lora,180 -on1,0,0,24,0,0,4055,4320.000000,191,0,1798.880000,baseline,lora,180 -on3,0,0,24,0,0,4217,4320.000000,191,0,1785.600000,baseline,lora,180 -on6,0,0,24,0,0,4171,4320.000000,191,0,1774.240000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,191,0,1728.000000,baseline,lora,180 -on11,0,0,24,1,0,3169,4320.000000,191,0,1785.760000,baseline,lora,180 -on9,0,0,24,0,0,4242,4320.000000,191,0,1763.040000,baseline,lora,180 -on0,1,4,24,0,0,0,4320.000000,191,0,2134.240000,baseline,lora,180 -on4,0,0,24,1,0,4010,4320.000000,191,0,1811.680000,baseline,lora,180 -on8,0,0,24,1,0,3543,4320.000000,191,0,1778.240000,baseline,lora,180 -on3,0,0,24,0,0,4223,4320.000000,192,0,1743.680000,baseline,lora,180 -on4,0,0,24,0,0,3992,4320.000000,192,0,1805.280000,baseline,lora,180 -on6,0,0,24,0,0,4302,4320.000000,192,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4090,4320.000000,192,0,1808.000000,baseline,lora,180 -on5,0,0,24,0,0,4048,4320.000000,192,0,1806.720000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,192,0,2090.560000,baseline,lora,180 -on10,0,0,24,0,0,4132,4320.000000,192,0,1758.400000,baseline,lora,180 -on1,0,0,24,1,0,412,4320.000000,192,0,1782.400000,baseline,lora,180 -on8,0,0,24,0,0,4317,4320.000000,192,0,1728.640000,baseline,lora,180 -on11,0,0,24,0,0,4151,4320.000000,192,0,1777.760000,baseline,lora,180 -on9,0,0,24,0,0,4289,4320.000000,192,0,1741.760000,baseline,lora,180 -on7,0,0,24,0,0,4320,4320.000000,192,0,1728.000000,baseline,lora,180 -on1,0,0,24,1,0,1260,4320.000000,193,0,1753.600000,baseline,lora,180 -on9,0,0,24,0,0,4176,4320.000000,193,0,1756.800000,baseline,lora,180 -on11,0,0,24,0,0,4270,4320.000000,193,0,1736.160000,baseline,lora,180 -on3,0,0,24,0,0,4218,4320.000000,193,0,1785.600000,baseline,lora,180 -on7,0,0,24,1,0,2451,4320.000000,193,0,1787.040000,baseline,lora,180 -on5,0,0,24,0,0,4204,4320.000000,193,0,1783.840000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,193,0,2131.520000,baseline,lora,180 -on4,0,0,24,0,0,4311,4320.000000,193,0,1729.600000,baseline,lora,180 -on10,0,0,24,0,0,4027,4320.000000,193,0,1781.600000,baseline,lora,180 -on2,0,0,24,0,0,4082,4320.000000,193,0,1773.280000,baseline,lora,180 -on8,0,0,24,0,0,4115,4320.000000,193,0,1761.440000,baseline,lora,180 -on6,0,0,24,0,0,4210,4320.000000,193,0,1754.080000,baseline,lora,180 -on7,0,0,24,0,0,4088,4320.000000,194,0,1785.600000,baseline,lora,180 -on9,0,0,24,0,0,4234,4320.000000,194,0,1773.600000,baseline,lora,180 -on10,0,0,24,0,0,4066,4320.000000,194,0,1768.960000,baseline,lora,180 -on1,0,0,24,0,0,4229,4320.000000,194,0,1743.040000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,194,0,2118.240000,baseline,lora,180 -on6,0,0,24,0,0,4082,4320.000000,194,0,1779.360000,baseline,lora,180 -on4,0,0,24,0,0,4146,4320.000000,194,0,1776.640000,baseline,lora,180 -on5,0,0,24,1,0,3547,4320.000000,194,0,1792.800000,baseline,lora,180 -on8,0,0,24,0,0,4229,4320.000000,194,0,1787.040000,baseline,lora,180 -on11,0,0,24,0,0,4124,4320.000000,194,0,1793.120000,baseline,lora,180 -on3,0,0,24,0,0,4192,4320.000000,194,0,1748.800000,baseline,lora,180 -on2,0,0,23,0,0,4140,4198.000000,194,0,1688.640000,baseline,lora,180 -on6,0,0,24,0,0,4080,4320.000000,195,0,1766.720000,baseline,lora,180 -on8,0,0,24,0,0,4045,4320.000000,195,0,1814.400000,baseline,lora,180 -on11,0,0,24,0,0,4091,4320.000000,195,0,1764.960000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,195,0,1728.000000,baseline,lora,180 -on5,0,0,24,1,0,9,4320.000000,195,0,1753.600000,baseline,lora,180 -on10,0,0,23,0,0,4144,4163.000000,195,0,1694.000000,baseline,lora,180 -on1,0,0,24,0,0,4201,4320.000000,195,0,1759.680000,baseline,lora,180 -on9,0,0,24,0,0,4254,4320.000000,195,0,1738.880000,baseline,lora,180 -on3,0,0,24,1,0,180,4320.000000,195,0,1753.600000,baseline,lora,180 -on4,0,0,24,0,0,4052,4320.000000,195,0,1823.520000,baseline,lora,180 -on0,1,2,24,0,0,0,4320.000000,195,0,2072.000000,baseline,lora,180 -on7,0,0,24,0,0,4227,4320.000000,195,0,1752.320000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,baseline,lora,180 -on6,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,baseline,lora,180 -on2,0,0,24,0,0,4087,4320.000000,196,0,1773.280000,baseline,lora,180 -on4,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,baseline,lora,180 -on8,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,baseline,lora,180 -on5,0,0,24,0,0,4087,4320.000000,196,0,1790.240000,baseline,lora,180 -on9,0,0,24,0,0,4119,4320.000000,196,0,1766.080000,baseline,lora,180 -on1,0,0,24,0,0,4186,4320.000000,196,0,1749.760000,baseline,lora,180 -on10,0,0,24,0,0,4290,4320.000000,196,0,1732.960000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,196,0,2063.840000,baseline,lora,180 -on3,0,0,24,0,0,4164,4320.000000,196,0,1769.120000,baseline,lora,180 -on7,0,0,24,1,0,1067,4320.000000,196,0,1840.000000,baseline,lora,180 -on3,0,0,24,0,0,4220,4320.000000,197,0,1744.160000,baseline,lora,180 -on0,1,0,24,0,0,0,4320.000000,197,0,2153.600000,baseline,lora,180 -on5,0,0,24,0,0,4241,4320.000000,197,0,1750.400000,baseline,lora,180 -on7,0,0,24,0,0,4298,4320.000000,197,0,1760.000000,baseline,lora,180 -on4,0,0,24,0,0,4144,4320.000000,197,0,1778.560000,baseline,lora,180 -on2,0,0,24,0,0,3945,4320.000000,197,0,1821.440000,baseline,lora,180 -on10,0,0,24,0,0,4181,4320.000000,197,0,1750.560000,baseline,lora,180 -on11,0,0,24,0,0,3963,4320.000000,197,0,1805.440000,baseline,lora,180 -on6,0,0,24,0,0,4194,4320.000000,197,0,1748.320000,baseline,lora,180 -on1,0,0,23,0,0,4131,4150.000000,197,0,1679.360000,baseline,lora,180 -on8,0,0,24,0,0,4054,4320.000000,197,0,1803.360000,baseline,lora,180 -on9,0,0,24,0,0,3918,4320.000000,197,0,1802.080000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,198,0,2082.880000,baseline,lora,180 -on5,0,0,24,0,0,4191,4320.000000,198,0,1769.120000,baseline,lora,180 -on11,0,0,24,0,0,4227,4320.000000,198,0,1771.040000,baseline,lora,180 -on4,0,0,24,0,0,4303,4320.000000,198,0,1756.800000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,4292,4320.000000,198,0,1732.640000,baseline,lora,180 -on10,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,baseline,lora,180 -on3,0,0,24,0,0,4079,4320.000000,198,0,1770.240000,baseline,lora,180 -on1,0,0,24,0,0,4101,4320.000000,198,0,1774.720000,baseline,lora,180 -on8,0,0,24,1,0,2896,4320.000000,198,0,1753.600000,baseline,lora,180 -on6,0,0,24,0,0,3907,4320.000000,198,0,1852.320000,baseline,lora,180 -on9,0,0,24,0,0,4181,4320.000000,198,0,1750.720000,baseline,lora,180 -on11,0,0,24,0,0,4320,4320.000000,199,0,1728.160000,baseline,lora,180 -on3,0,0,24,0,0,4150,4320.000000,199,0,1772.960000,baseline,lora,180 -on5,0,0,24,0,0,4119,4320.000000,199,0,1772.480000,baseline,lora,180 -on9,0,0,24,0,0,4234,4320.000000,199,0,1756.800000,baseline,lora,180 -on8,0,0,24,0,0,4047,4320.000000,199,0,1794.720000,baseline,lora,180 -on0,1,1,24,0,0,0,4320.000000,199,0,2085.760000,baseline,lora,180 -on4,0,0,24,1,0,1440,4320.000000,199,0,1753.600000,baseline,lora,180 -on10,0,0,24,0,0,4240,4320.000000,199,0,1740.960000,baseline,lora,180 -on6,0,0,24,0,0,4288,4320.000000,199,0,1733.280000,baseline,lora,180 -on1,0,0,24,0,0,4112,4320.000000,199,0,1785.440000,baseline,lora,180 -on2,0,0,24,0,0,4068,4320.000000,199,0,1775.520000,baseline,lora,180 -on7,0,0,24,0,0,4309,4320.000000,199,0,1737.280000,baseline,lora,180 -on3,0,0,24,1,0,2541,4320.000000,200,0,1798.240000,baseline,lora,180 -on10,0,0,24,1,0,0,4320.000000,200,0,1753.600000,baseline,lora,180 -on11,0,0,24,0,0,3983,4320.000000,200,0,1791.360000,baseline,lora,180 -on1,0,0,24,0,0,4320,4320.000000,200,0,1728.000000,baseline,lora,180 -on0,1,3,24,0,0,0,4320.000000,200,0,2141.920000,baseline,lora,180 -on5,0,0,24,0,0,4096,4320.000000,200,0,1785.600000,baseline,lora,180 -on8,0,0,24,0,0,4226,4320.000000,200,0,1758.080000,baseline,lora,180 -on2,0,0,24,0,0,4320,4320.000000,200,0,1728.000000,baseline,lora,180 -on7,0,0,24,0,0,3966,4320.000000,200,0,1804.160000,baseline,lora,180 -on9,0,0,24,1,0,1089,4320.000000,200,0,1753.600000,baseline,lora,180 -on6,0,0,24,0,0,4317,4320.000000,200,0,1728.640000,baseline,lora,180 -on4,0,0,24,0,0,4180,4320.000000,200,0,1767.040000,baseline,lora,180 -on6,0,0,27,1,0,2173,4864.103840,1,3,2027.801536,hint,lora,180 -on9,0,0,26,1,0,1657,4684.298720,1,2,1938.471488,hint,lora,180 -on11,0,0,27,0,0,4334,4985.000000,1,4,2074.847386,hint,lora,180 -on8,0,0,25,1,0,1013,4504.997440,1,1,1867.183181,hint,lora,180 -on2,0,0,25,1,0,1226,4503.200000,1,1,1870.608205,hint,lora,180 -on10,0,0,26,1,0,2231,4762.400000,1,3,2000.367181,hint,lora,180 -on5,0,0,26,1,0,1482,4681.200000,1,2,1904.319795,hint,lora,180 -on3,0,0,25,1,0,1766,4502.000000,1,1,1858.080000,hint,lora,180 -on4,0,0,28,0,0,4410,5041.602560,1,5,2112.960000,hint,lora,180 -on1,0,0,28,1,0,2562,5147.901280,1,5,2119.895488,hint,lora,180 -on7,0,0,24,1,0,882,4374.998720,1,1,1806.975898,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,1,0,2160.160000,hint,lora,180 -on10,0,0,30,1,0,2232,5405.597440,2,6,2257.470976,hint,lora,180 -on3,0,0,26,1,0,1545,4828.500000,2,3,1986.248000,hint,lora,180 -on4,0,0,29,1,0,2340,5257.200000,2,6,2247.775181,hint,lora,180 -on7,0,0,30,1,0,2946,5401.701280,2,6,2237.255488,hint,lora,180 -on8,0,0,29,1,0,3523,5221.800000,2,6,2166.959590,hint,lora,180 -on1,0,0,30,1,0,2386,5403.000000,2,6,2236.110771,hint,lora,180 -on11,0,0,26,1,0,1378,4682.597440,2,2,1901.519181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,2,0,2179.680205,hint,lora,180 -on6,0,0,31,1,0,2680,5584.500000,2,7,2381.158362,hint,lora,180 -on2,0,0,25,1,0,1221,4614.496160,2,2,1905.798464,hint,lora,180 -on9,0,0,29,1,0,1745,5223.400000,2,5,2209.535181,hint,lora,180 -on5,0,0,25,1,0,794,4502.300000,2,1,1870.408000,hint,lora,180 -on5,0,0,31,1,0,2584,5584.302560,3,7,2408.215795,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,3,0,2234.080000,hint,lora,180 -on4,0,0,31,1,0,2893,5584.201280,3,8,2459.758259,hint,lora,180 -on9,0,0,31,1,0,3095,5685.101280,3,8,2405.208102,hint,lora,180 -on6,0,0,25,1,0,813,4503.000000,3,1,1869.104000,hint,lora,180 -on10,0,0,28,1,0,1769,5042.601280,3,4,2129.168307,hint,lora,180 -on1,0,0,26,1,0,1887,4681.300000,3,2,1904.359795,hint,lora,180 -on2,0,0,25,1,0,1691,4522.500000,3,3,1894.343590,hint,lora,180 -on11,0,0,26,1,0,1433,4683.300000,3,2,1956.088205,hint,lora,180 -on7,0,0,27,1,0,2037,4933.298720,3,4,2112.439898,hint,lora,180 -on3,0,0,27,0,0,4513,4860.600000,3,3,1985.407181,hint,lora,180 -on8,0,0,31,1,0,3074,5668.000000,3,9,2323.789952,hint,lora,180 -on9,0,0,27,1,0,1423,4864.800000,4,4,2050.991181,hint,lora,180 -on7,0,0,28,1,0,2483,5045.200000,4,4,2155.199590,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,4,0,2186.080205,hint,lora,180 -on2,0,0,27,1,0,1938,4863.298720,4,3,2031.558874,hint,lora,180 -on5,0,0,25,1,0,1234,4501.000000,4,1,1829.103795,hint,lora,180 -on10,0,0,28,1,0,2322,5101.006400,4,5,2133.570355,hint,lora,180 -on3,0,0,24,1,0,17,4321.001280,4,0,1765.424922,hint,lora,180 -on11,0,0,26,1,0,1652,4683.502560,4,2,1961.353024,hint,lora,180 -on4,0,0,26,1,0,1535,4683.000000,4,2,1933.871590,hint,lora,180 -on8,0,0,25,1,0,2092,4685.501280,4,3,1946.215693,hint,lora,180 -on6,0,0,25,1,0,1055,4501.000000,4,1,1829.103795,hint,lora,180 -on1,0,0,25,1,0,3645,4501.300000,4,1,1849.672000,hint,lora,180 -on10,0,0,29,1,0,2675,5221.300000,5,5,2123.143181,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,5,0,2197.440000,hint,lora,180 -on5,0,0,26,1,0,2655,4680.601280,5,2,1987.072512,hint,lora,180 -on4,0,0,28,1,0,2123,5041.700000,5,4,2065.351181,hint,lora,180 -on7,0,0,25,1,0,1228,4502.200000,5,1,1881.167795,hint,lora,180 -on6,0,0,26,0,0,4463,4680.001280,5,2,1878.399693,hint,lora,180 -on9,0,0,26,1,0,1452,4682.500000,5,3,1962.215795,hint,lora,180 -on2,0,0,31,1,0,3004,5584.706400,5,7,2360.362355,hint,lora,180 -on8,0,0,24,1,0,1979,4416.001280,5,1,1794.784717,hint,lora,180 -on11,0,0,25,1,0,2770,4549.298720,5,2,1858.199078,hint,lora,180 -on1,0,0,26,1,0,1668,4684.598720,5,2,1971.119693,hint,lora,180 -on3,0,0,28,1,0,2474,5066.500000,5,5,2138.566566,hint,lora,180 -on11,0,0,31,1,0,3898,5583.100000,6,7,2408.901747,hint,lora,180 -on8,0,0,27,1,0,2392,4863.500000,6,3,2037.799795,hint,lora,180 -on2,0,0,30,1,0,3301,5460.001280,6,7,2322.895488,hint,lora,180 -on7,0,0,27,1,0,2579,4861.300000,6,3,2047.655795,hint,lora,180 -on9,0,0,27,1,0,3414,4862.300000,6,4,2037.654976,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,6,0,2170.720205,hint,lora,180 -on4,0,0,34,1,0,4284,6230.701280,6,11,2651.686669,hint,lora,180 -on3,0,0,27,1,0,1866,4863.098720,6,3,2075.607078,hint,lora,180 -on1,0,0,29,1,0,2971,5221.701280,6,5,2146.375898,hint,lora,180 -on5,0,0,31,1,0,3222,5583.700000,6,7,2374.247181,hint,lora,180 -on10,0,0,26,1,0,1863,4682.000000,6,2,1924.976000,hint,lora,180 -on6,0,0,33,1,0,3685,6116.003840,6,10,2622.209126,hint,lora,180 -on3,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,hint,lora,180 -on5,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,hint,lora,180 -on0,1,4,24,0,0,0,4320.000000,7,0,2079.040000,hint,lora,180 -on6,0,0,24,0,0,4202,4320.000000,7,0,1756.800000,hint,lora,180 -on4,0,0,26,1,0,432,4681.001280,7,2,1901.408717,hint,lora,180 -on7,0,0,25,1,0,671,4501.000000,7,1,1829.103795,hint,lora,180 -on10,0,0,25,1,0,2098,4501.201280,7,1,1925.600717,hint,lora,180 -on8,0,0,26,1,0,866,4681.202560,7,2,1933.025024,hint,lora,180 -on2,0,0,24,0,0,4220,4320.000000,7,0,1744.160000,hint,lora,180 -on1,0,0,25,0,0,4243,4500.001280,7,1,1835.520307,hint,lora,180 -on9,0,0,24,0,0,4260,4320.000000,7,0,1737.760000,hint,lora,180 -on11,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,hint,lora,180 -on0,1,11,23,0,0,0,4313.000000,8,0,2228.240000,hint,lora,180 -on3,0,0,28,1,0,1628,5142.400000,8,6,2159.230566,hint,lora,180 -on5,0,0,25,1,0,3768,4500.300000,8,2,1890.616000,hint,lora,180 -on7,0,0,28,1,0,1111,5043.802560,8,4,2146.864819,hint,lora,180 -on11,0,0,25,1,0,693,4502.297440,8,1,1841.239181,hint,lora,180 -on10,0,0,30,1,0,1913,5404.101280,8,6,2297.367078,hint,lora,180 -on6,0,0,25,1,0,512,4503.000000,8,1,1877.008000,hint,lora,180 -on1,0,0,28,1,0,865,5043.101280,8,4,2125.704512,hint,lora,180 -on4,0,0,29,1,0,1932,5249.102560,8,6,2228.728410,hint,lora,180 -on2,0,0,28,1,0,1454,5042.705120,8,4,2098.154253,hint,lora,180 -on9,0,0,25,1,0,374,4656.798720,8,2,1927.903693,hint,lora,180 -on8,0,0,31,1,0,2232,5583.701280,8,7,2398.967283,hint,lora,180 -on11,0,0,31,1,0,2654,5583.505120,9,7,2421.369843,hint,lora,180 -on6,0,0,26,1,0,3035,4682.900000,9,3,1943.671590,hint,lora,180 -on2,0,0,29,1,0,2366,5222.601280,9,5,2206.768307,hint,lora,180 -on7,0,0,26,1,0,2838,4860.898720,9,3,2023.830874,hint,lora,180 -on9,0,0,27,1,0,2443,4959.600000,9,4,2066.494976,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,9,0,2264.480205,hint,lora,180 -on10,0,0,25,1,0,31,4502.000000,9,1,1866.047795,hint,lora,180 -on1,0,0,27,1,0,1268,4862.201280,9,3,2009.376717,hint,lora,180 -on4,0,0,27,1,0,1800,5016.603840,9,4,2139.633331,hint,lora,180 -on5,0,0,24,1,0,1214,4496.000000,9,1,1881.024000,hint,lora,180 -on3,0,0,28,1,0,1801,5149.200000,9,6,2136.415181,hint,lora,180 -on8,0,0,26,1,0,2442,4682.000000,9,2,1946.783386,hint,lora,180 -on2,0,0,26,1,0,2018,4682.201280,10,2,1921.968307,hint,lora,180 -on10,0,0,26,0,0,4463,4680.500000,10,3,1896.567386,hint,lora,180 -on7,0,0,26,1,0,1115,4682.500000,10,2,1924.695795,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,10,0,2270.720000,hint,lora,180 -on4,0,0,32,1,0,2600,5928.603840,10,9,2543.361536,hint,lora,180 -on6,0,0,32,1,0,2869,5764.401280,10,9,2459.854874,hint,lora,180 -on9,0,0,26,1,0,1274,4749.601280,10,3,2000.272512,hint,lora,180 -on8,0,0,31,1,0,2594,5585.701280,10,7,2388.183898,hint,lora,180 -on3,0,0,25,1,0,635,4502.000000,10,1,1871.599795,hint,lora,180 -on1,0,0,27,1,0,2665,4993.100000,10,4,2084.726771,hint,lora,180 -on5,0,0,30,1,0,1850,5405.101280,10,6,2340.520307,hint,lora,180 -on11,0,0,33,1,0,3105,6179.001280,10,11,2674.222464,hint,lora,180 -on3,0,0,26,1,0,1206,4683.200000,11,2,1956.368819,hint,lora,180 -on11,0,0,25,1,0,110,4502.403840,11,1,1851.649536,hint,lora,180 -on6,0,0,25,1,0,985,4595.194880,11,2,1897.277542,hint,lora,180 -on8,0,0,26,1,0,1291,4681.900000,11,2,1917.399590,hint,lora,180 -on2,0,0,29,1,0,1702,5222.700000,11,6,2200.262566,hint,lora,180 -on9,0,0,32,1,0,2503,5764.902560,11,8,2439.511386,hint,lora,180 -on1,0,0,25,1,0,608,4513.300000,11,2,1860.519795,hint,lora,180 -on5,0,0,29,1,0,2132,5508.100000,11,8,2306.134362,hint,lora,180 -on10,0,0,25,1,0,455,4504.294880,11,1,1858.965747,hint,lora,180 -on7,0,0,26,1,0,357,4681.301280,11,2,1939.096512,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,11,0,2070.240205,hint,lora,180 -on4,0,0,25,1,0,1583,4501.206400,11,1,1829.122765,hint,lora,180 -on3,0,0,25,1,0,566,4502.997440,12,1,1875.023590,hint,lora,180 -on10,0,0,24,1,0,366,4320.005120,12,0,1753.602458,hint,lora,180 -on5,0,0,27,1,0,1444,4862.702560,12,3,2042.936819,hint,lora,180 -on7,0,0,30,1,0,2421,5402.003840,12,6,2313.121331,hint,lora,180 -on9,0,0,26,1,0,2634,4681.600000,12,2,1957.439590,hint,lora,180 -on2,0,0,29,1,0,2335,5223.200000,12,5,2166.606771,hint,lora,180 -on6,0,0,25,1,0,1182,4502.300000,12,1,1860.728000,hint,lora,180 -on4,0,0,28,1,0,2180,5057.603840,12,5,2076.640717,hint,lora,180 -on11,0,0,25,1,0,1419,4502.000000,12,1,1829.440205,hint,lora,180 -on1,0,0,24,1,0,849,4347.000000,12,1,1794.224205,hint,lora,180 -on8,0,0,26,1,0,1726,4682.300000,12,2,1913.783590,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,12,0,2130.240205,hint,lora,180 -on7,0,0,28,1,0,1762,5153.697440,13,5,2109.622362,hint,lora,180 -on3,0,0,25,1,0,584,4534.502560,13,2,1894.281434,hint,lora,180 -on4,0,0,31,1,0,2348,5583.500000,13,7,2325.590157,hint,lora,180 -on6,0,0,24,1,0,146,4375.000000,13,1,1790.383590,hint,lora,180 -on2,0,0,26,1,0,1023,4852.702560,13,3,2001.721229,hint,lora,180 -on10,0,0,30,1,0,1442,5402.802560,13,6,2244.128000,hint,lora,180 -on9,0,0,32,1,0,2440,5764.802560,13,8,2471.423590,hint,lora,180 -on11,0,0,27,1,0,1346,4863.600000,13,3,2051.279386,hint,lora,180 -on8,0,0,24,1,0,3,4322.000000,13,0,1785.151795,hint,lora,180 -on5,0,0,29,1,0,1884,5222.702560,13,5,2165.496205,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,13,0,2070.400205,hint,lora,180 -on1,0,0,25,1,0,522,4503.003840,13,1,1867.521946,hint,lora,180 -on8,0,0,31,1,0,1848,5714.903840,14,8,2488.312307,hint,lora,180 -on7,0,0,27,1,0,865,4861.602560,14,3,1973.601229,hint,lora,180 -on9,0,0,27,1,0,1220,5037.893600,14,4,2116.773440,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,14,0,2205.280000,hint,lora,180 -on3,0,0,25,1,0,131,4502.998720,14,1,1883.023488,hint,lora,180 -on1,0,0,25,1,0,323,4504.000000,14,1,1885.712205,hint,lora,180 -on4,0,0,29,1,0,1739,5281.500000,14,6,2190.118566,hint,lora,180 -on11,0,0,24,0,0,4289,4320.000000,14,0,1733.120000,hint,lora,180 -on2,0,0,25,1,0,540,4502.002560,14,1,1855.521229,hint,lora,180 -on10,0,0,27,1,0,1617,4874.000000,14,4,2012.782566,hint,lora,180 -on6,0,0,27,1,0,2068,4861.901280,14,3,2037.880102,hint,lora,180 -on5,0,0,27,1,0,1086,5034.600000,14,4,2105.103386,hint,lora,180 -on3,0,0,31,1,0,2858,5686.903840,15,9,2431.416307,hint,lora,180 -on5,0,0,30,1,0,3201,5566.600000,15,8,2385.293747,hint,lora,180 -on1,0,0,25,1,0,1076,4503.000000,15,1,1863.167795,hint,lora,180 -on6,0,0,27,1,0,1668,4862.498720,15,3,2042.886874,hint,lora,180 -on7,0,0,25,1,0,1732,4502.000000,15,1,1842.080000,hint,lora,180 -on4,0,0,29,1,0,2361,5223.205120,15,5,2153.266048,hint,lora,180 -on11,0,0,26,1,0,1384,4681.398720,15,2,1933.407283,hint,lora,180 -on9,0,0,27,1,0,2679,4862.300000,15,3,1983.479181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,15,0,2184.640205,hint,lora,180 -on8,0,0,26,1,0,1989,4730.900000,15,4,1991.639590,hint,lora,180 -on2,0,0,26,1,0,2597,4840.900000,15,4,2100.263181,hint,lora,180 -on10,0,0,29,1,0,3357,5502.505120,15,7,2409.657638,hint,lora,180 -on7,0,0,24,1,0,1159,4431.998720,16,1,1830.031693,hint,lora,180 -on3,0,0,25,1,0,1484,4504.300000,16,1,1902.424205,hint,lora,180 -on8,0,0,27,1,0,1872,4861.200000,16,3,2023.727386,hint,lora,180 -on10,0,0,31,1,0,3022,5813.498720,16,9,2501.110054,hint,lora,180 -on5,0,0,27,1,0,2323,4863.200000,16,3,2082.431590,hint,lora,180 -on1,0,0,29,0,0,4654,5221.898720,16,5,2134.326464,hint,lora,180 -on11,0,0,29,1,0,2440,5222.501280,16,5,2145.352512,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,16,0,2215.360000,hint,lora,180 -on2,0,0,33,1,0,3390,5943.103840,16,9,2543.256512,hint,lora,180 -on9,0,0,28,1,0,2023,5042.497440,16,4,2149.910771,hint,lora,180 -on4,0,0,35,1,0,3560,6306.198720,16,11,2721.068211,hint,lora,180 -on6,0,0,26,1,0,2344,4802.201280,16,3,1986.641126,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,17,0,2205.600205,hint,lora,180 -on6,0,0,29,1,0,2526,5279.600000,17,6,2237.630362,hint,lora,180 -on5,0,0,26,1,0,2392,4830.200000,17,4,2047.023590,hint,lora,180 -on11,0,0,26,1,0,1806,4682.503840,17,2,1946.889536,hint,lora,180 -on1,0,0,30,1,0,2370,5403.806400,17,6,2254.402560,hint,lora,180 -on2,0,0,26,1,0,2547,4733.897440,17,4,2023.703181,hint,lora,180 -on10,0,0,26,1,0,1107,4685.001280,17,2,1986.432512,hint,lora,180 -on3,0,0,25,1,0,728,4504.197440,17,1,1931.678976,hint,lora,180 -on7,0,0,28,1,0,1824,5046.498720,17,4,2146.502259,hint,lora,180 -on8,0,0,26,1,0,3639,4682.600000,17,2,1959.567590,hint,lora,180 -on4,0,0,24,1,0,1577,4488.000000,17,1,1857.120000,hint,lora,180 -on9,0,0,26,1,0,1802,4681.500000,17,3,1923.687590,hint,lora,180 -on3,0,0,27,1,0,1325,4900.300000,18,4,2036.695590,hint,lora,180 -on5,0,0,31,1,0,3720,5629.502560,18,9,2408.680205,hint,lora,180 -on8,0,0,25,1,0,83,4505.194880,18,1,1875.598157,hint,lora,180 -on1,0,0,26,1,0,649,4683.198720,18,2,1924.751693,hint,lora,180 -on10,0,0,27,1,0,1367,4863.002560,18,5,2007.536819,hint,lora,180 -on4,0,0,25,1,0,1215,4501.998720,18,1,1846.879283,hint,lora,180 -on2,0,0,28,1,0,973,5044.198720,18,4,2077.791898,hint,lora,180 -on7,0,0,32,1,0,2669,5920.001280,18,10,2484.575283,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,18,0,2170.880205,hint,lora,180 -on6,0,0,26,1,0,340,4681.997440,18,2,1917.583386,hint,lora,180 -on11,0,0,32,1,0,2215,5763.200000,18,9,2406.335386,hint,lora,180 -on9,0,0,27,1,0,900,5009.401280,18,4,2120.384102,hint,lora,180 -on7,0,0,29,1,0,3237,5223.401280,19,5,2291.871283,hint,lora,180 -on3,0,0,25,1,0,1771,4501.000000,19,1,1861.312000,hint,lora,180 -on10,0,0,30,1,0,3623,5402.603840,19,6,2260.512717,hint,lora,180 -on11,0,0,32,1,0,2907,5762.698720,19,8,2432.006669,hint,lora,180 -on6,0,0,26,1,0,2468,4681.700000,19,2,1930.344000,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,19,0,2282.400000,hint,lora,180 -on1,0,0,27,1,0,2823,4866.000000,19,3,2141.919181,hint,lora,180 -on8,0,0,32,1,0,3526,5763.707680,19,8,2392.233638,hint,lora,180 -on9,0,0,25,1,0,2252,4640.300000,19,2,1902.231795,hint,lora,180 -on5,0,0,24,1,0,195,4321.001280,19,0,1773.680717,hint,lora,180 -on2,0,0,23,1,0,2122,4317.300000,19,1,1772.263590,hint,lora,180 -on4,0,0,24,0,0,4268,4320.000000,19,0,1752.639795,hint,lora,180 -on8,0,0,25,1,0,1467,4503.294880,20,1,1882.981952,hint,lora,180 -on6,0,0,25,1,0,1156,4501.300000,20,1,1833.736000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,20,0,2191.040205,hint,lora,180 -on2,0,0,29,1,0,2068,5223.705120,20,5,2203.241638,hint,lora,180 -on10,0,0,32,1,0,2649,5913.402560,20,9,2499.807181,hint,lora,180 -on5,0,0,25,1,0,742,4503.300000,20,1,1895.399795,hint,lora,180 -on11,0,0,31,1,0,2862,5583.805120,20,7,2332.433229,hint,lora,180 -on1,0,0,25,1,0,1195,4552.201280,20,2,1935.504307,hint,lora,180 -on4,0,0,27,1,0,3016,4861.600000,20,3,2002.943386,hint,lora,180 -on3,0,0,29,1,0,3123,5224.002560,20,7,2181.120000,hint,lora,180 -on9,0,0,29,1,0,3061,5222.400000,20,5,2213.662771,hint,lora,180 -on7,0,0,25,1,0,2012,4545.000000,20,2,1883.967590,hint,lora,180 -on3,0,0,28,1,0,1469,5044.701280,21,4,2111.384102,hint,lora,180 -on4,0,0,25,1,0,347,4502.000000,21,1,1857.775795,hint,lora,180 -on10,0,0,26,1,0,946,4792.097440,21,3,2003.238976,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,21,0,2263.200000,hint,lora,180 -on7,0,0,26,1,0,1211,4682.500000,21,2,1906.280205,hint,lora,180 -on8,0,0,32,1,0,2090,5764.003840,21,8,2435.952512,hint,lora,180 -on6,0,0,27,1,0,909,4863.896160,21,3,2011.382259,hint,lora,180 -on1,0,0,28,1,0,1681,5104.200000,21,5,2142.383181,hint,lora,180 -on5,0,0,26,1,0,588,4717.801280,21,3,1947.120307,hint,lora,180 -on2,0,0,28,1,0,4134,5040.900000,21,4,2097.815386,hint,lora,180 -on9,0,0,27,1,0,1990,4861.201280,21,3,2028.959693,hint,lora,180 -on11,0,0,25,1,0,415,4672.001280,21,2,1951.328307,hint,lora,180 -on7,0,0,24,0,0,4248,4320.000000,22,0,1739.680000,hint,lora,180 -on10,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,hint,lora,180 -on6,0,0,24,0,0,4081,4320.000000,22,0,1808.800000,hint,lora,180 -on4,0,0,24,1,0,180,4321.000000,22,0,1754.000410,hint,lora,180 -on5,0,0,24,0,0,4203,4320.000000,22,0,1746.880000,hint,lora,180 -on1,0,0,24,0,0,4071,4320.000000,22,0,1768.320000,hint,lora,180 -on0,1,2,24,0,0,0,4320.000000,22,0,2127.840000,hint,lora,180 -on9,0,0,24,0,0,4037,4320.000000,22,0,1814.400000,hint,lora,180 -on8,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,hint,lora,180 -on3,0,0,24,0,0,4201,4320.000000,22,0,1763.840000,hint,lora,180 -on2,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,hint,lora,180 -on11,0,0,25,1,0,755,4501.001280,22,1,1829.841126,hint,lora,180 -on9,0,0,25,1,0,1855,4501.300000,23,1,1849.320000,hint,lora,180 -on10,0,0,26,1,0,1198,4680.601280,23,2,1931.392307,hint,lora,180 -on1,0,0,26,1,0,344,4683.997440,23,2,1950.334976,hint,lora,180 -on6,0,0,26,1,0,2445,4682.900000,23,2,1941.383590,hint,lora,180 -on8,0,0,28,1,0,903,5044.896160,23,4,2138.213850,hint,lora,180 -on11,0,0,25,1,0,111,4504.300000,23,1,1881.400410,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,23,0,2092.480205,hint,lora,180 -on2,0,0,27,1,0,2278,4863.300000,23,3,2047.943181,hint,lora,180 -on3,0,0,30,1,0,2254,5402.701280,23,6,2287.350874,hint,lora,180 -on4,0,0,27,1,0,655,4862.002560,23,3,2010.817024,hint,lora,180 -on7,0,0,24,1,0,745,4399.300000,23,1,1822.983590,hint,lora,180 -on5,0,0,28,1,0,1117,5146.910240,23,5,2199.516506,hint,lora,180 -on2,0,0,24,1,0,2843,4320.998720,24,0,1763.279488,hint,lora,180 -on10,0,0,25,1,0,3128,4501.301280,24,1,1853.544512,hint,lora,180 -on6,0,0,24,1,0,694,4430.002560,24,1,1837.281229,hint,lora,180 -on3,0,0,26,1,0,3699,4681.300000,24,2,1951.463590,hint,lora,180 -on11,0,0,28,1,0,3993,5044.100000,24,4,2167.351386,hint,lora,180 -on9,0,0,25,1,0,3439,4501.500000,24,1,1844.215590,hint,lora,180 -on1,0,0,25,1,0,3115,4502.003840,24,1,1913.089536,hint,lora,180 -on8,0,0,24,1,0,370,4321.000000,24,0,1755.503795,hint,lora,180 -on5,0,0,25,1,0,493,4505.997440,24,1,1908.927181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,24,0,2214.400205,hint,lora,180 -on7,0,0,25,1,0,1374,4501.002560,24,1,1837.201434,hint,lora,180 -on4,0,0,25,1,0,3544,4502.000000,24,1,1838.415386,hint,lora,180 -on3,0,0,27,1,0,2606,5039.400000,25,3,2172.543386,hint,lora,180 -on4,0,0,26,1,0,1477,4681.300000,25,2,1913.543386,hint,lora,180 -on2,0,0,25,1,0,1766,4502.800000,25,1,1858.512000,hint,lora,180 -on1,0,0,26,1,0,2721,4859.800000,25,2,2083.199795,hint,lora,180 -on6,0,0,25,1,0,1097,4502.500000,25,1,1902.455795,hint,lora,180 -on9,0,0,31,1,0,2610,5584.000000,25,7,2378.238362,hint,lora,180 -on8,0,0,25,1,0,956,4501.001280,25,1,1863.600717,hint,lora,180 -on11,0,0,27,1,0,2393,5041.500000,25,3,2237.431795,hint,lora,180 -on7,0,0,25,1,0,828,4501.201280,25,1,1856.704717,hint,lora,180 -on0,1,11,23,0,0,0,4316.000000,25,0,2184.640205,hint,lora,180 -on5,0,0,26,1,0,2049,4753.100000,25,5,1995.255590,hint,lora,180 -on10,0,0,26,1,0,3047,4681.600000,25,2,1957.471795,hint,lora,180 -on11,0,0,27,1,0,3040,4861.500000,26,3,2011.591386,hint,lora,180 -on7,0,0,25,1,0,1321,4500.001280,26,1,1834.032717,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,26,0,2248.480000,hint,lora,180 -on10,0,0,25,1,0,2357,4502.000000,26,1,1871.584000,hint,lora,180 -on6,0,0,26,1,0,2742,4685.300000,26,2,1965.271590,hint,lora,180 -on8,0,0,24,1,0,2340,4322.000000,26,0,1764.063795,hint,lora,180 -on3,0,0,24,0,0,4049,4320.000000,26,0,1776.800000,hint,lora,180 -on1,0,0,24,1,0,2910,4467.200000,26,1,1875.904205,hint,lora,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,hint,lora,180 -on2,0,0,25,1,0,3718,4501.300000,26,1,1857.047795,hint,lora,180 -on9,0,0,26,1,0,3565,4680.301280,26,2,1930.792717,hint,lora,180 -on5,0,0,26,1,0,3638,4680.601280,26,2,2004.672512,hint,lora,180 -on5,0,0,28,1,0,2516,5207.605120,27,5,2143.633843,hint,lora,180 -on1,0,0,25,1,0,924,4501.000000,27,1,1873.008000,hint,lora,180 -on7,0,0,28,1,0,1927,5043.494880,27,4,2077.509747,hint,lora,180 -on8,0,0,34,1,0,3209,6163.802560,27,11,2709.328614,hint,lora,180 -on2,0,0,25,1,0,1931,4537.000000,27,2,1902.640000,hint,lora,180 -on10,0,0,29,1,0,2447,5224.301280,27,5,2257.735898,hint,lora,180 -on4,0,0,28,1,0,2115,5045.098720,27,4,2126.839283,hint,lora,180 -on6,0,0,31,1,0,3007,5607.600000,27,8,2367.278771,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,27,0,2171.200205,hint,lora,180 -on3,0,0,25,1,0,1530,4575.502560,27,3,1872.601024,hint,lora,180 -on9,0,0,29,1,0,2930,5223.800000,27,5,2225.102157,hint,lora,180 -on11,0,0,29,1,0,3407,5303.600000,27,6,2234.814771,hint,lora,180 -on1,0,0,26,1,0,2295,4684.598720,28,2,1992.831693,hint,lora,180 -on8,0,0,26,1,0,875,4717.501280,28,3,1995.688717,hint,lora,180 -on3,0,0,26,1,0,1805,4681.600000,28,2,1947.839795,hint,lora,180 -on5,0,0,28,1,0,1714,5041.901280,28,4,2094.744102,hint,lora,180 -on7,0,0,27,1,0,3600,5021.003840,28,4,2082.273331,hint,lora,180 -on9,0,0,25,1,0,454,4502.002560,28,1,1836.129024,hint,lora,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,28,0,2193.280000,hint,lora,180 -on10,0,0,26,1,0,2090,4682.300000,28,2,1957.894976,hint,lora,180 -on4,0,0,28,1,0,2099,5041.801280,28,4,2082.063693,hint,lora,180 -on11,0,0,27,1,0,1337,4861.700000,28,3,1991.415181,hint,lora,180 -on6,0,0,26,1,0,924,4681.400000,28,2,1901.520205,hint,lora,180 -on11,0,0,25,1,0,685,4504.998720,29,1,1903.247488,hint,lora,180 -on1,0,0,27,1,0,1915,4953.200000,29,4,2116.287386,hint,lora,180 -on6,0,0,26,1,0,1568,4682.201280,29,2,1922.128307,hint,lora,180 -on8,0,0,27,1,0,1630,4865.597440,29,3,2056.447181,hint,lora,180 -on7,0,0,25,1,0,417,4501.001280,29,1,1874.272717,hint,lora,180 -on4,0,0,26,0,0,4467,4860.401280,29,3,1974.495898,hint,lora,180 -on9,0,0,28,1,0,2401,5041.800000,29,4,2068.830976,hint,lora,180 -on2,0,0,27,1,0,1230,4863.200000,29,3,2025.296000,hint,lora,180 -on5,0,0,27,1,0,2101,4865.203840,29,4,2088.674150,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,29,0,2282.240000,hint,lora,180 -on3,0,0,25,1,0,868,4503.300000,29,1,1902.439795,hint,lora,180 -on10,0,0,26,1,0,3900,4680.301280,29,2,1965.560512,hint,lora,180 -on1,0,0,28,1,0,2393,5045.200000,30,4,2201.311386,hint,lora,180 -on11,0,0,32,1,0,3322,5925.002560,30,9,2557.566771,hint,lora,180 -on10,0,0,24,1,0,1749,4430.000000,30,1,1829.392000,hint,lora,180 -on6,0,0,26,1,0,1591,4682.300000,30,2,1961.527386,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,30,0,2205.760000,hint,lora,180 -on2,0,0,27,1,0,2258,4862.002560,30,3,2035.345229,hint,lora,180 -on3,0,0,27,1,0,2367,4862.500000,30,3,2021.527386,hint,lora,180 -on8,0,0,26,0,0,4170,4821.000000,30,3,2014.687181,hint,lora,180 -on7,0,0,28,1,0,2579,5043.101280,30,4,2125.752307,hint,lora,180 -on5,0,0,28,1,0,2084,5200.202560,30,6,2161.105229,hint,lora,180 -on9,0,0,28,1,0,3368,5158.801280,30,5,2158.831488,hint,lora,180 -on4,0,0,25,1,0,1450,4501.300000,30,1,1838.616000,hint,lora,180 -on11,0,0,31,1,0,2244,5582.401280,31,7,2342.207488,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,31,0,2099.680205,hint,lora,180 -on10,0,0,27,1,0,922,4863.101280,31,3,2031.351898,hint,lora,180 -on4,0,0,29,1,0,1689,5223.800000,31,5,2257.070976,hint,lora,180 -on5,0,0,29,1,0,2746,5221.600000,31,5,2142.815181,hint,lora,180 -on8,0,0,26,1,0,757,4683.303840,31,2,1964.169126,hint,lora,180 -on7,0,0,31,1,0,2411,5584.002560,31,7,2355.743386,hint,lora,180 -on9,0,0,24,1,0,988,4412.300000,31,1,1845.783795,hint,lora,180 -on2,0,0,26,1,0,556,4682.501280,31,2,1971.176512,hint,lora,180 -on6,0,0,25,1,0,448,4501.200000,31,1,1836.144000,hint,lora,180 -on3,0,0,26,1,0,1382,4806.600000,31,3,1984.559590,hint,lora,180 -on1,0,0,29,1,0,1707,5289.101280,31,6,2235.591693,hint,lora,180 -on10,0,0,27,1,0,3888,5020.200000,32,4,2090.798976,hint,lora,180 -on11,0,0,27,0,0,4364,4973.000000,32,5,2071.487590,hint,lora,180 -on1,0,0,27,1,0,3762,4986.800000,32,4,2128.654976,hint,lora,180 -on5,0,0,26,1,0,2468,4682.000000,32,2,1953.247795,hint,lora,180 -on8,0,0,26,0,0,4185,4680.601280,32,2,1955.488307,hint,lora,180 -on4,0,0,26,1,0,3110,4681.201280,32,2,1929.920512,hint,lora,180 -on2,0,0,29,1,0,3653,5251.402560,32,6,2165.856614,hint,lora,180 -on7,0,0,28,0,0,4408,5041.400000,32,5,2086.590771,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,32,0,2151.200000,hint,lora,180 -on6,0,0,27,1,0,3511,4863.202560,32,3,2027.104819,hint,lora,180 -on9,0,0,26,1,0,3628,4681.600000,32,3,1912.367795,hint,lora,180 -on3,0,0,29,1,0,4147,5222.398720,32,5,2210.655078,hint,lora,180 -on2,0,0,31,1,0,2814,5583.403840,33,7,2446.896102,hint,lora,180 -on9,0,0,26,1,0,1981,4682.600000,33,2,1948.239590,hint,lora,180 -on7,0,0,25,1,0,1772,4501.000000,33,1,1832.031590,hint,lora,180 -on5,0,0,25,1,0,1410,4501.000000,33,1,1852.783795,hint,lora,180 -on3,0,0,26,1,0,3161,4852.900000,33,3,2039.031590,hint,lora,180 -on8,0,0,24,1,0,553,4320.998720,33,0,1753.999693,hint,lora,180 -on4,0,0,26,1,0,1636,4682.200000,33,2,1938.031590,hint,lora,180 -on10,0,0,25,1,0,2490,4502.000000,33,1,1858.080000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,33,0,2146.720205,hint,lora,180 -on11,0,0,27,1,0,2301,4862.900000,33,3,2065.415181,hint,lora,180 -on6,0,0,27,1,0,2385,4861.401280,33,3,1976.511898,hint,lora,180 -on1,0,0,27,1,0,2756,4862.700000,33,3,2008.871181,hint,lora,180 -on6,0,0,25,1,0,3030,4501.000000,34,1,1829.040000,hint,lora,180 -on9,0,0,29,1,0,2338,5224.601280,34,5,2243.856717,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,34,0,2174.240000,hint,lora,180 -on11,0,0,26,1,0,1767,4684.598720,34,2,2010.927283,hint,lora,180 -on7,0,0,24,1,0,915,4390.001280,34,1,1854.464717,hint,lora,180 -on8,0,0,26,1,0,1596,4684.597440,34,2,1959.055181,hint,lora,180 -on1,0,0,26,1,0,1535,4682.000000,34,2,1909.727590,hint,lora,180 -on5,0,0,25,0,0,4325,4500.300000,34,1,1826.007590,hint,lora,180 -on4,0,0,29,1,0,3325,5334.403840,34,6,2278.512717,hint,lora,180 -on3,0,0,28,1,0,2942,5043.600000,34,5,2146.846771,hint,lora,180 -on2,0,0,31,1,0,3624,5583.801280,34,8,2413.535283,hint,lora,180 -on10,0,0,25,1,0,1374,4502.000000,34,1,1858.095795,hint,lora,180 -on4,0,0,28,1,0,2463,5071.800000,35,5,2103.966771,hint,lora,180 -on2,0,0,30,1,0,2869,5592.603840,35,8,2318.256512,hint,lora,180 -on8,0,0,27,1,0,2711,4991.800000,35,5,2117.998362,hint,lora,180 -on1,0,0,30,1,0,2788,5403.402560,35,6,2264.880000,hint,lora,180 -on6,0,0,27,1,0,1625,4862.200000,35,3,2018.383590,hint,lora,180 -on11,0,0,25,1,0,1048,4501.000000,35,1,1829.103795,hint,lora,180 -on9,0,0,26,1,0,1289,4682.796160,35,2,1930.558669,hint,lora,180 -on10,0,0,28,1,0,2189,5042.101280,35,4,2068.039898,hint,lora,180 -on5,0,0,27,1,0,1602,4861.800000,35,3,1982.431386,hint,lora,180 -on7,0,0,27,1,0,1797,4960.500000,35,4,2143.815590,hint,lora,180 -on3,0,0,25,1,0,1131,4502.200000,35,1,1876.368000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,35,0,2142.720205,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,36,0,2070.400205,hint,lora,180 -on11,0,0,29,1,0,2035,5222.200000,36,5,2158.286566,hint,lora,180 -on1,0,0,26,1,0,995,4682.205120,36,2,1933.105843,hint,lora,180 -on9,0,0,25,1,0,986,4502.500000,36,2,1860.104000,hint,lora,180 -on4,0,0,25,1,0,50,4503.200000,36,1,1887.807590,hint,lora,180 -on10,0,0,27,1,0,1832,4862.600000,36,4,2037.102976,hint,lora,180 -on2,0,0,25,1,0,653,4502.005120,36,1,1857.730048,hint,lora,180 -on7,0,0,26,1,0,578,4683.000000,36,2,1945.967590,hint,lora,180 -on8,0,0,27,1,0,1781,5019.802560,36,5,2059.008410,hint,lora,180 -on5,0,0,26,1,0,478,4681.200000,36,2,1902.943795,hint,lora,180 -on3,0,0,26,1,0,1112,4844.802560,36,3,2048.305024,hint,lora,180 -on6,0,0,33,1,0,2475,5944.505120,36,9,2515.736819,hint,lora,180 -on6,0,0,28,1,0,1795,5095.402560,37,5,2142.432205,hint,lora,180 -on7,0,0,26,1,0,858,4684.498720,37,2,1968.967488,hint,lora,180 -on8,0,0,25,1,0,360,4502.000000,37,1,1856.656410,hint,lora,180 -on2,0,0,27,1,0,1192,4861.500000,37,3,1982.343590,hint,lora,180 -on10,0,0,26,1,0,1371,4741.102560,37,3,2011.593024,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,37,0,2143.040205,hint,lora,180 -on5,0,0,29,1,0,1987,5222.802560,37,5,2148.800000,hint,lora,180 -on11,0,0,27,1,0,3320,4861.900000,37,3,2017.399386,hint,lora,180 -on1,0,0,30,1,0,2356,5460.003840,37,7,2325.424307,hint,lora,180 -on4,0,0,26,1,0,874,4681.800000,37,2,1923.711386,hint,lora,180 -on3,0,0,27,1,0,1614,4993.600000,37,5,2057.039590,hint,lora,180 -on9,0,0,25,1,0,473,4502.200000,37,1,1835.008205,hint,lora,180 -on5,0,0,28,1,0,2338,5044.100000,38,5,2187.990362,hint,lora,180 -on4,0,0,25,1,0,1327,4501.000000,38,1,1828.944000,hint,lora,180 -on10,0,0,30,1,0,2209,5407.102560,38,6,2296.760000,hint,lora,180 -on9,0,0,25,1,0,1073,4501.200000,38,1,1829.328000,hint,lora,180 -on6,0,0,29,1,0,3017,5265.902560,38,6,2167.529229,hint,lora,180 -on11,0,0,24,0,0,4239,4320.000000,38,1,1760.287590,hint,lora,180 -on1,0,0,28,1,0,2446,5335.200000,38,6,2259.630362,hint,lora,180 -on3,0,0,25,1,0,1034,4523.402560,38,2,1895.137229,hint,lora,180 -on7,0,0,26,1,0,1838,4681.202560,38,2,1901.489229,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,38,0,2180.960000,hint,lora,180 -on2,0,0,27,1,0,1647,4945.603840,38,4,2091.938150,hint,lora,180 -on8,0,0,26,1,0,1946,4682.300000,38,2,1949.239386,hint,lora,180 -on9,0,0,25,1,0,3417,4502.000000,39,1,1883.360000,hint,lora,180 -on4,0,0,24,1,0,3034,4396.598720,39,1,1809.743488,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,39,0,2165.440000,hint,lora,180 -on5,0,0,24,1,0,1321,4379.301280,39,2,1806.392717,hint,lora,180 -on2,0,0,25,1,0,1714,4504.202560,39,1,1866.705229,hint,lora,180 -on6,0,0,25,1,0,3771,4501.000000,39,1,1829.200000,hint,lora,180 -on7,0,0,24,0,0,4266,4320.000000,39,0,1736.800000,hint,lora,180 -on10,0,0,25,1,0,293,4504.201280,39,1,1861.681331,hint,lora,180 -on1,0,0,25,1,0,3057,4500.001280,39,1,1825.600717,hint,lora,180 -on8,0,0,24,0,0,4296,4320.000000,39,0,1759.040000,hint,lora,180 -on11,0,0,24,1,0,18,4324.003840,39,0,1768.546355,hint,lora,180 -on3,0,0,28,1,0,3943,5041.701280,39,4,2080.216307,hint,lora,180 -on9,0,0,27,1,0,2470,4863.998720,40,3,2004.959283,hint,lora,180 -on3,0,0,28,1,0,1903,5042.500000,40,4,2058.759795,hint,lora,180 -on2,0,0,25,1,0,738,4501.000000,40,1,1855.295795,hint,lora,180 -on7,0,0,25,1,0,3583,4502.000000,40,1,1879.360000,hint,lora,180 -on10,0,0,25,1,0,1932,4653.994880,40,2,1963.886771,hint,lora,180 -on11,0,0,25,1,0,1223,4502.000000,40,1,1834.671386,hint,lora,180 -on4,0,0,28,1,0,2828,5042.900000,40,4,2100.726976,hint,lora,180 -on6,0,0,25,1,0,1559,4501.000000,40,1,1828.943795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,40,0,2279.680205,hint,lora,180 -on1,0,0,27,1,0,1717,4933.901280,40,4,2143.175693,hint,lora,180 -on8,0,0,27,1,0,1999,4863.901280,40,3,2083.031898,hint,lora,180 -on5,0,0,26,1,0,2281,4859.103840,40,3,2082.841331,hint,lora,180 -on5,0,0,30,1,0,2268,5403.601280,41,6,2344.175693,hint,lora,180 -on8,0,0,26,1,0,1007,4681.200000,41,2,1901.120000,hint,lora,180 -on11,0,0,28,1,0,1613,5041.801280,41,4,2061.503898,hint,lora,180 -on1,0,0,24,1,0,80,4449.997440,41,1,1879.471386,hint,lora,180 -on9,0,0,28,1,0,1838,5044.101280,41,4,2129.031898,hint,lora,180 -on7,0,0,31,1,0,2656,5582.802560,41,7,2311.696000,hint,lora,180 -on10,0,0,28,1,0,2052,5042.500000,41,4,2094.150771,hint,lora,180 -on6,0,0,30,1,0,1846,5403.000000,41,6,2281.534566,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,41,0,2184.640205,hint,lora,180 -on4,0,0,25,1,0,767,4530.600000,41,2,1854.816000,hint,lora,180 -on2,0,0,30,1,0,1776,5403.798720,41,6,2280.542874,hint,lora,180 -on3,0,0,28,1,0,3227,5204.901280,41,5,2220.792307,hint,lora,180 -on6,0,0,25,1,0,504,4504.001280,42,1,1897.921126,hint,lora,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hint,lora,180 -on3,0,0,25,1,0,3597,4500.001280,42,1,1825.600717,hint,lora,180 -on5,0,0,25,1,0,4018,4502.300000,42,1,1872.983795,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,42,0,2203.136000,hint,lora,180 -on11,0,0,24,0,0,4166,4320.000000,42,0,1756.800000,hint,lora,180 -on8,0,0,25,1,0,1324,4503.196160,42,1,1872.766464,hint,lora,180 -on10,0,0,25,1,0,3948,4500.300000,42,1,1855.127795,hint,lora,180 -on7,0,0,25,1,0,1907,4572.597440,42,2,1860.782976,hint,lora,180 -on9,0,0,24,1,0,0,4323.602560,42,1,1783.473843,hint,lora,180 -on2,0,0,25,1,0,1517,4502.300000,42,1,1871.863590,hint,lora,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hint,lora,180 -on8,0,0,24,1,0,1082,4321.996160,43,0,1757.278669,hint,lora,180 -on9,0,0,25,1,0,2413,4501.300000,43,1,1846.439795,hint,lora,180 -on2,0,0,25,1,0,900,4504.602560,43,1,1883.137843,hint,lora,180 -on7,0,0,25,1,0,2408,4502.000000,43,1,1914.560000,hint,lora,180 -on6,0,0,25,1,0,1733,4501.201280,43,1,1854.240717,hint,lora,180 -on4,0,0,26,1,0,1533,4681.501280,43,2,1929.880512,hint,lora,180 -on11,0,0,25,1,0,1599,4501.305120,43,1,1847.306458,hint,lora,180 -on1,0,0,25,1,0,2097,4501.200000,43,2,1869.920000,hint,lora,180 -on10,0,0,26,1,0,1517,4681.503840,43,2,1904.809536,hint,lora,180 -on3,0,0,26,1,0,2580,4681.901280,43,2,1968.104307,hint,lora,180 -on5,0,0,25,1,0,2830,4502.200000,43,1,1861.040000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,43,0,2166.880205,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,44,0,2212.160000,hint,lora,180 -on10,0,0,24,1,0,180,4325.996160,44,0,1833.023488,hint,lora,180 -on2,0,0,24,1,0,833,4408.998720,44,1,1840.047488,hint,lora,180 -on1,0,0,27,1,0,869,4862.800000,44,3,2017.695181,hint,lora,180 -on8,0,0,25,1,0,1112,4604.300000,44,2,1959.368000,hint,lora,180 -on3,0,0,29,1,0,2111,5222.802560,44,6,2165.489024,hint,lora,180 -on9,0,0,27,1,0,1639,4862.405120,44,3,2005.713638,hint,lora,180 -on4,0,0,29,1,0,1615,5369.901280,44,6,2286.104102,hint,lora,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,hint,lora,180 -on5,0,0,26,1,0,1655,4681.400000,44,2,1904.559590,hint,lora,180 -on7,0,0,25,1,0,488,4501.000000,44,1,1829.248000,hint,lora,180 -on6,0,0,26,1,0,635,4683.997440,44,2,1921.710771,hint,lora,180 -on4,0,0,25,1,0,2321,4586.505120,45,2,1921.690458,hint,lora,180 -on6,0,0,27,1,0,2819,4861.901280,45,3,2039.640307,hint,lora,180 -on11,0,0,26,1,0,1547,4685.398720,45,2,1956.671693,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,45,0,2268.320000,hint,lora,180 -on2,0,0,24,1,0,1080,4322.998720,45,0,1762.927488,hint,lora,180 -on1,0,0,24,0,0,4164,4320.000000,45,1,1769.760000,hint,lora,180 -on10,0,0,25,1,0,1652,4511.203840,45,2,1890.353741,hint,lora,180 -on9,0,0,28,1,0,2284,5042.906400,45,4,2106.170150,hint,lora,180 -on8,0,0,27,1,0,2533,5025.402560,45,4,2144.576410,hint,lora,180 -on5,0,0,28,1,0,2187,5043.101280,45,5,2091.159898,hint,lora,180 -on7,0,0,30,1,0,3493,5474.301280,45,8,2372.087283,hint,lora,180 -on3,0,0,26,1,0,1900,4707.200000,45,3,1933.280000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,46,0,2152.480205,hint,lora,180 -on8,0,0,26,1,0,2614,4682.000000,46,2,1933.087386,hint,lora,180 -on5,0,0,25,1,0,1674,4502.300000,46,1,1873.175795,hint,lora,180 -on10,0,0,24,1,0,568,4320.001280,46,0,1778.080717,hint,lora,180 -on6,0,0,26,1,0,2607,4681.300000,46,2,1904.263590,hint,lora,180 -on1,0,0,25,1,0,1926,4501.000000,46,1,1828.943795,hint,lora,180 -on2,0,0,25,1,0,2663,4503.200000,46,1,1887.360000,hint,lora,180 -on11,0,0,31,1,0,3336,5582.500000,46,7,2329.846566,hint,lora,180 -on3,0,0,26,1,0,2255,4682.196160,46,2,1904.462259,hint,lora,180 -on9,0,0,24,1,0,1332,4321.001280,46,0,1789.488717,hint,lora,180 -on4,0,0,26,1,0,1799,4683.203840,46,2,1984.465331,hint,lora,180 -on7,0,0,25,1,0,3021,4502.300000,46,1,1864.599795,hint,lora,180 -on1,0,0,26,1,0,2220,4926.201280,47,4,2069.200307,hint,lora,180 -on3,0,0,26,1,0,1774,4744.201280,47,3,1960.384102,hint,lora,180 -on6,0,0,24,1,0,1315,4389.900000,47,1,1810.072000,hint,lora,180 -on4,0,0,29,1,0,2680,5223.002560,47,5,2214.687795,hint,lora,180 -on5,0,0,29,1,0,2728,5224.196160,47,5,2189.709440,hint,lora,180 -on11,0,0,26,1,0,1773,4811.300000,47,3,2006.088205,hint,lora,180 -on8,0,0,32,1,0,3670,5853.500000,47,9,2386.231386,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,47,0,2139.200205,hint,lora,180 -on9,0,0,25,1,0,1131,4501.800000,47,1,1846.064000,hint,lora,180 -on2,0,0,30,1,0,2570,5404.800000,47,6,2328.446771,hint,lora,180 -on10,0,0,29,1,0,1997,5224.700000,47,5,2263.414771,hint,lora,180 -on7,0,0,34,1,0,3546,6203.101280,47,11,2593.303078,hint,lora,180 -on2,0,0,26,1,0,1998,4982.200000,48,5,2031.326771,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,48,0,2070.400205,hint,lora,180 -on6,0,0,26,1,0,1109,4681.300000,48,2,1903.879795,hint,lora,180 -on4,0,0,24,1,0,328,4459.196160,48,1,1855.854874,hint,lora,180 -on9,0,0,25,1,0,814,4656.500000,48,2,1919.079590,hint,lora,180 -on11,0,0,27,1,0,1007,4864.501280,48,3,2040.008307,hint,lora,180 -on7,0,0,30,1,0,2206,5403.700000,48,7,2282.726157,hint,lora,180 -on5,0,0,24,1,0,548,4321.000000,48,0,1755.760000,hint,lora,180 -on3,0,0,27,1,0,2132,4862.600000,48,3,2054.271181,hint,lora,180 -on8,0,0,28,1,0,1325,5043.700000,48,4,2115.415386,hint,lora,180 -on10,0,0,28,1,0,1763,5043.100000,48,4,2083.847386,hint,lora,180 -on1,0,0,30,1,0,2068,5577.203840,48,8,2373.392717,hint,lora,180 -on3,0,0,29,1,0,1343,5222.802560,49,5,2167.920205,hint,lora,180 -on7,0,0,24,1,0,1902,4321.000000,49,0,1769.743795,hint,lora,180 -on11,0,0,25,1,0,154,4502.000000,49,1,1861.999795,hint,lora,180 -on6,0,0,27,1,0,1024,4861.300000,49,3,1989.543181,hint,lora,180 -on10,0,0,29,1,0,1783,5221.901280,49,5,2196.247283,hint,lora,180 -on1,0,0,25,1,0,487,4502.300000,49,1,1851.480000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,49,0,2099.200205,hint,lora,180 -on5,0,0,27,1,0,1518,4861.800000,49,3,1997.423181,hint,lora,180 -on8,0,0,25,1,0,1995,4501.300000,49,1,1875.719795,hint,lora,180 -on4,0,0,25,1,0,300,4501.300000,49,1,1838.663590,hint,lora,180 -on9,0,0,24,1,0,1186,4328.300000,49,1,1765.127386,hint,lora,180 -on2,0,0,25,1,0,1684,4500.301280,49,1,1838.328717,hint,lora,180 -on4,0,0,27,1,0,1739,4862.800000,50,3,2044.143590,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,50,0,2256.416000,hint,lora,180 -on2,0,0,31,1,0,1724,5586.007680,50,7,2416.850458,hint,lora,180 -on3,0,0,29,1,0,1188,5226.698720,50,5,2248.550669,hint,lora,180 -on6,0,0,25,1,0,462,4664.500000,50,2,1917.896410,hint,lora,180 -on1,0,0,27,1,0,906,4862.500000,50,3,1994.536000,hint,lora,180 -on5,0,0,26,1,0,580,4683.198720,50,2,1922.927693,hint,lora,180 -on10,0,0,33,0,0,4834,5956.102560,50,10,2482.647795,hint,lora,180 -on9,0,0,29,1,0,1807,5226.097440,50,5,2224.358157,hint,lora,180 -on8,0,0,30,1,0,2773,5482.001280,50,7,2326.368102,hint,lora,180 -on7,0,0,26,1,0,1047,4841.000000,50,3,2018.704410,hint,lora,180 -on11,0,0,30,0,0,4588,5401.100000,50,6,2239.846362,hint,lora,180 -on7,0,0,24,1,0,1803,4499.000000,51,1,1872.671795,hint,lora,180 -on4,0,0,24,1,0,540,4320.001280,51,0,1753.600717,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,51,0,2211.520205,hint,lora,180 -on6,0,0,25,1,0,2032,4558.503840,51,2,1861.801331,hint,lora,180 -on9,0,0,28,1,0,2832,5166.700000,51,6,2189.734566,hint,lora,180 -on8,0,0,29,1,0,3248,5393.100000,51,6,2279.670362,hint,lora,180 -on11,0,0,25,1,0,2415,4502.300000,51,1,1875.063795,hint,lora,180 -on5,0,0,26,1,0,1403,4683.000000,51,2,1988.575795,hint,lora,180 -on3,0,0,25,1,0,2332,4502.000000,51,1,1835.743795,hint,lora,180 -on10,0,0,26,1,0,3126,4681.000000,51,2,1915.503386,hint,lora,180 -on2,0,0,27,1,0,2292,4861.501280,51,3,1976.024102,hint,lora,180 -on1,0,0,27,1,0,3234,4915.900000,51,4,2059.318976,hint,lora,180 -on8,0,0,28,1,0,2606,5042.697440,52,5,2099.589747,hint,lora,180 -on9,0,0,31,1,0,1628,5584.096160,52,7,2365.094054,hint,lora,180 -on7,0,0,29,1,0,2099,5368.402560,52,6,2309.344614,hint,lora,180 -on3,0,0,27,1,0,2098,4861.900000,52,3,2030.518976,hint,lora,180 -on10,0,0,24,1,0,1682,4335.001280,52,1,1780.880717,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,52,0,2281.600000,hint,lora,180 -on2,0,0,27,1,0,1234,4861.000000,52,3,1975.935795,hint,lora,180 -on5,0,0,26,1,0,992,4684.197440,52,2,1930.975386,hint,lora,180 -on11,0,0,27,1,0,1255,4861.300000,52,3,2028.167795,hint,lora,180 -on4,0,0,28,1,0,2689,5040.601280,52,4,2069.967283,hint,lora,180 -on6,0,0,24,0,0,4161,4320.000000,52,0,1770.720000,hint,lora,180 -on1,0,0,26,1,0,1506,4683.798720,52,2,1969.903488,hint,lora,180 -on10,0,0,25,1,0,1309,4644.198720,53,2,1971.184102,hint,lora,180 -on7,0,0,25,1,0,1697,4559.298720,53,2,1921.447283,hint,lora,180 -on11,0,0,27,1,0,1593,4872.201280,53,4,1998.320102,hint,lora,180 -on2,0,0,32,1,0,2584,5848.301280,53,10,2493.815898,hint,lora,180 -on4,0,0,24,1,0,720,4323.000000,53,0,1807.823795,hint,lora,180 -on3,0,0,29,1,0,2126,5247.803840,53,6,2188.785126,hint,lora,180 -on9,0,0,26,1,0,1306,4681.000000,53,2,1903.983590,hint,lora,180 -on5,0,0,26,1,0,3019,4681.500000,53,2,1923.368000,hint,lora,180 -on8,0,0,26,0,0,4231,4680.500000,53,2,1954.647590,hint,lora,180 -on6,0,0,26,0,0,4502,4680.300000,53,2,1889.431590,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,53,0,2243.840000,hint,lora,180 -on1,0,0,25,1,0,993,4502.196160,53,1,1829.886464,hint,lora,180 -on6,0,0,25,1,0,2364,4501.000000,54,1,1858.048000,hint,lora,180 -on2,0,0,29,0,0,4630,5221.300000,54,5,2121.942976,hint,lora,180 -on5,0,0,31,1,0,3786,5584.001280,54,7,2480.607283,hint,lora,180 -on3,0,0,25,1,0,2160,4502.000000,54,1,1857.232410,hint,lora,180 -on11,0,0,33,1,0,4240,5943.901280,54,9,2530.070874,hint,lora,180 -on7,0,0,28,1,0,3133,5041.600000,54,4,2064.751590,hint,lora,180 -on9,0,0,25,1,0,2918,4554.200000,54,2,1885.296000,hint,lora,180 -on4,0,0,27,1,0,3541,4862.500000,54,3,2034.167795,hint,lora,180 -on8,0,0,26,1,0,2487,4682.700000,54,2,1943.703590,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,54,0,2181.120000,hint,lora,180 -on1,0,0,30,1,0,3722,5403.901280,54,6,2332.039078,hint,lora,180 -on10,0,0,27,1,0,3378,4862.600000,54,3,2050.143795,hint,lora,180 -on9,0,0,28,1,0,2327,5044.700000,55,4,2109.655795,hint,lora,180 -on11,0,0,30,1,0,1543,5446.101280,55,7,2352.792307,hint,lora,180 -on3,0,0,27,1,0,1939,4865.201280,55,3,2057.280717,hint,lora,180 -on10,0,0,26,1,0,435,4684.201280,55,2,2003.840512,hint,lora,180 -on5,0,0,24,1,0,838,4446.202560,55,1,1809.681434,hint,lora,180 -on8,0,0,26,1,0,938,4682.603840,55,2,1910.001741,hint,lora,180 -on1,0,0,26,1,0,1055,4682.300000,55,2,1952.087795,hint,lora,180 -on6,0,0,26,1,0,1288,4685.293600,55,2,1963.141645,hint,lora,180 -on2,0,0,25,0,0,4285,4500.000000,55,1,1844.639590,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,55,0,2232.160000,hint,lora,180 -on4,0,0,27,1,0,1465,4861.300000,55,3,2011.143386,hint,lora,180 -on7,0,0,25,1,0,306,4501.000000,55,1,1829.103795,hint,lora,180 -on8,0,0,26,1,0,1749,4682.303840,56,2,1962.537126,hint,lora,180 -on4,0,0,27,1,0,2584,4967.200000,56,5,2088.990976,hint,lora,180 -on5,0,0,25,1,0,3023,4501.300000,56,1,1885.383795,hint,lora,180 -on10,0,0,29,1,0,2775,5223.500000,56,5,2239.318976,hint,lora,180 -on9,0,0,29,1,0,2799,5222.402560,56,5,2190.240205,hint,lora,180 -on1,0,0,30,1,0,2937,5402.901280,56,6,2211.879693,hint,lora,180 -on7,0,0,25,1,0,1923,4503.000000,56,1,1874.112000,hint,lora,180 -on3,0,0,27,1,0,2328,4861.600000,56,3,2000.383386,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,56,0,2116.320205,hint,lora,180 -on2,0,0,25,1,0,1486,4501.000000,56,1,1829.040000,hint,lora,180 -on6,0,0,32,1,0,3328,5763.901280,56,8,2487.719283,hint,lora,180 -on11,0,0,26,1,0,1796,4816.402560,56,3,2010.576819,hint,lora,180 -on3,0,0,29,1,0,2738,5384.297440,57,8,2360.502362,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,57,0,2179.456000,hint,lora,180 -on10,0,0,28,1,0,2339,5044.800000,57,4,2166.495386,hint,lora,180 -on6,0,0,29,1,0,2862,5392.398720,57,6,2337.358464,hint,lora,180 -on7,0,0,30,1,0,3594,5489.501280,57,7,2291.527693,hint,lora,180 -on5,0,0,33,1,0,3516,5943.501280,57,9,2534.407078,hint,lora,180 -on8,0,0,25,1,0,1923,4665.200000,57,2,1935.248000,hint,lora,180 -on9,0,0,29,1,0,3527,5222.701280,57,5,2259.032102,hint,lora,180 -on11,0,0,25,1,0,2157,4562.700000,57,2,1923.911795,hint,lora,180 -on1,0,0,28,0,0,4705,5040.800000,57,4,2053.966771,hint,lora,180 -on4,0,0,26,1,0,2335,4681.497440,57,2,1932.951181,hint,lora,180 -on2,0,0,26,1,0,2036,4682.301280,57,2,1933.512512,hint,lora,180 -on9,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,hint,lora,180 -on11,0,0,25,1,0,176,4501.002560,58,1,1855.233229,hint,lora,180 -on1,0,0,28,1,0,1338,5044.098720,58,4,2121.462874,hint,lora,180 -on4,0,0,24,1,0,9,4322.998720,58,0,1767.087488,hint,lora,180 -on5,0,0,25,1,0,756,4501.300000,58,1,1848.903795,hint,lora,180 -on3,0,0,26,1,0,1781,4684.302560,58,2,1959.049843,hint,lora,180 -on10,0,0,25,1,0,1734,4503.000000,58,1,1868.720410,hint,lora,180 -on8,0,0,25,1,0,676,4501.200000,58,1,1829.023795,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,58,0,2312.800000,hint,lora,180 -on2,0,0,26,1,0,1424,4683.302560,58,2,2012.121229,hint,lora,180 -on7,0,0,27,1,0,891,4862.400000,58,3,1978.783795,hint,lora,180 -on6,0,0,25,1,0,3078,4501.301280,58,1,1931.944717,hint,lora,180 -on8,0,0,25,1,0,207,4501.400000,59,1,1842.048000,hint,lora,180 -on3,0,0,27,1,0,1658,4862.902560,59,3,2007.944819,hint,lora,180 -on5,0,0,27,0,0,4472,4860.200000,59,3,1974.798771,hint,lora,180 -on10,0,0,25,1,0,1078,4502.298720,59,2,1864.439283,hint,lora,180 -on4,0,0,25,1,0,878,4505.998720,59,1,1879.951898,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,59,0,2212.640000,hint,lora,180 -on2,0,0,31,0,0,4456,5648.603840,59,8,2384.704922,hint,lora,180 -on9,0,0,28,1,0,2001,5042.501280,59,4,2113.320102,hint,lora,180 -on11,0,0,28,1,0,1508,5182.002560,59,5,2173.424410,hint,lora,180 -on7,0,0,26,1,0,578,4682.401280,59,2,1930.192512,hint,lora,180 -on1,0,0,25,1,0,573,4501.000000,59,1,1845.200000,hint,lora,180 -on6,0,0,27,1,0,1036,4896.603840,59,4,1993.825536,hint,lora,180 -on1,0,0,34,1,0,2423,6123.603840,60,10,2604.144512,hint,lora,180 -on6,0,0,29,1,0,3671,5221.800000,60,5,2135.615181,hint,lora,180 -on4,0,0,30,1,0,2060,5402.800000,60,6,2205.326362,hint,lora,180 -on9,0,0,27,1,0,1243,4970.601280,60,4,2062.383898,hint,lora,180 -on2,0,0,29,1,0,1669,5223.000000,60,5,2167.438976,hint,lora,180 -on8,0,0,26,1,0,866,4684.303840,60,2,1994.281536,hint,lora,180 -on10,0,0,26,1,0,827,4682.000000,60,2,1914.400000,hint,lora,180 -on7,0,0,27,1,0,1652,5195.202560,60,5,2235.024000,hint,lora,180 -on11,0,0,26,1,0,525,4682.600000,60,2,1961.039795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,60,0,2186.240205,hint,lora,180 -on5,0,0,25,1,0,419,4501.305120,60,1,1829.434253,hint,lora,180 -on3,0,0,32,1,0,2203,5764.398720,60,8,2405.742464,hint,lora,180 -on5,0,0,25,1,0,1206,4501.000000,61,1,1829.248000,hint,lora,180 -on3,0,0,30,1,0,2009,5405.101280,61,6,2313.095283,hint,lora,180 -on6,0,0,25,1,0,473,4504.000000,61,1,1849.824410,hint,lora,180 -on1,0,0,26,1,0,797,4821.098720,61,3,2033.287488,hint,lora,180 -on10,0,0,24,1,0,1448,4321.000000,61,0,1755.760000,hint,lora,180 -on4,0,0,28,1,0,1437,5166.201280,61,5,2150.271283,hint,lora,180 -on8,0,0,26,1,0,815,4683.497440,61,2,1958.966771,hint,lora,180 -on7,0,0,28,1,0,1911,5041.501280,61,4,2051.847898,hint,lora,180 -on9,0,0,24,1,0,180,4433.996160,61,1,1830.638464,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,61,0,2058.720205,hint,lora,180 -on2,0,0,25,1,0,184,4502.200000,61,1,1882.767590,hint,lora,180 -on11,0,0,31,1,0,2139,5702.501280,61,9,2490.903283,hint,lora,180 -on8,0,0,27,1,0,2826,4970.200000,62,4,2132.894976,hint,lora,180 -on11,0,0,27,1,0,2226,4863.300000,62,3,2023.831181,hint,lora,180 -on5,0,0,26,1,0,1595,4682.500000,62,2,1980.391795,hint,lora,180 -on3,0,0,26,1,0,3091,4681.601280,62,2,1949.712512,hint,lora,180 -on9,0,0,25,1,0,2376,4501.300000,62,1,1848.935795,hint,lora,180 -on6,0,0,25,1,0,1164,4501.000000,62,1,1866.272410,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,62,0,2177.280000,hint,lora,180 -on1,0,0,27,1,0,2436,4863.600000,62,3,2077.038976,hint,lora,180 -on4,0,0,24,1,0,195,4320.001280,62,0,1753.600717,hint,lora,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,hint,lora,180 -on2,0,0,25,1,0,2567,4503.298720,62,1,1879.687283,hint,lora,180 -on10,0,0,25,1,0,2128,4501.000000,62,1,1831.440000,hint,lora,180 -on3,0,0,31,1,0,2302,5586.101280,63,7,2456.886464,hint,lora,180 -on10,0,0,27,1,0,3012,4862.800000,63,3,2022.959590,hint,lora,180 -on7,0,0,25,1,0,936,4501.200000,63,1,1841.983795,hint,lora,180 -on8,0,0,25,1,0,1673,4542.300000,63,2,1848.599590,hint,lora,180 -on2,0,0,28,1,0,2793,5196.200000,63,5,2186.398771,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,63,0,2168.960205,hint,lora,180 -on6,0,0,25,1,0,1315,4546.400000,63,2,1850.447590,hint,lora,180 -on11,0,0,26,1,0,1819,4718.501280,63,3,1962.712512,hint,lora,180 -on4,0,0,26,1,0,2325,4682.600000,63,2,1976.238771,hint,lora,180 -on1,0,0,26,1,0,1110,4683.500000,63,2,1922.391181,hint,lora,180 -on9,0,0,27,1,0,1504,4863.098720,63,3,2009.495283,hint,lora,180 -on5,0,0,29,1,0,2201,5341.302560,63,7,2293.448205,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,64,0,2227.296000,hint,lora,180 -on8,0,0,24,1,0,720,4322.000000,64,0,1782.784410,hint,lora,180 -on3,0,0,29,1,0,3113,5224.300000,64,5,2178.006157,hint,lora,180 -on1,0,0,27,0,0,4146,4860.600000,64,4,2033.151590,hint,lora,180 -on4,0,0,25,1,0,1646,4503.000000,64,1,1891.359386,hint,lora,180 -on9,0,0,26,1,0,3248,4706.100000,64,3,1950.167590,hint,lora,180 -on2,0,0,28,1,0,2532,5043.600000,64,4,2131.263386,hint,lora,180 -on5,0,0,28,1,0,3402,5042.101280,64,5,2104.327693,hint,lora,180 -on6,0,0,26,1,0,2408,4683.205120,64,2,1955.266048,hint,lora,180 -on7,0,0,26,1,0,2958,4683.900000,64,2,1982.903590,hint,lora,180 -on11,0,0,24,1,0,1623,4322.000000,64,0,1757.663181,hint,lora,180 -on10,0,0,26,1,0,2795,4682.998720,64,2,1915.791078,hint,lora,180 -on10,0,0,26,1,0,1235,4683.300000,65,2,1987.463795,hint,lora,180 -on2,0,0,26,1,0,747,4681.300000,65,2,1904.103590,hint,lora,180 -on3,0,0,25,1,0,1146,4501.297440,65,1,1833.958771,hint,lora,180 -on4,0,0,29,1,0,1932,5222.200000,65,5,2200.735181,hint,lora,180 -on9,0,0,29,1,0,2501,5223.402560,65,5,2236.720614,hint,lora,180 -on7,0,0,24,1,0,183,4321.001280,65,0,1781.872717,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,65,0,2099.040205,hint,lora,180 -on11,0,0,29,1,0,2024,5223.901280,65,6,2265.031488,hint,lora,180 -on5,0,0,31,1,0,2206,5584.101280,65,8,2351.143488,hint,lora,180 -on8,0,0,27,1,0,1513,4861.501280,65,3,2012.696102,hint,lora,180 -on6,0,0,27,1,0,881,4987.498720,65,4,2106.631488,hint,lora,180 -on1,0,0,25,1,0,474,4504.294880,65,1,1875.078157,hint,lora,180 -on7,0,0,26,1,0,934,4848.502560,66,3,2011.161229,hint,lora,180 -on10,0,0,25,1,0,329,4504.000000,66,1,1913.792000,hint,lora,180 -on11,0,0,25,1,0,749,4544.300000,66,2,1855.703795,hint,lora,180 -on2,0,0,24,1,0,464,4459.300000,66,1,1837.448000,hint,lora,180 -on1,0,0,27,1,0,1035,4861.400000,66,3,1994.431590,hint,lora,180 -on5,0,0,25,1,0,202,4503.200000,66,1,1868.223590,hint,lora,180 -on3,0,0,30,1,0,1843,5403.301280,66,6,2239.990874,hint,lora,180 -on4,0,0,29,1,0,3281,5222.003840,66,5,2235.296922,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,66,0,2172.800000,hint,lora,180 -on8,0,0,31,1,0,1971,5583.405120,66,7,2343.809024,hint,lora,180 -on9,0,0,25,1,0,1288,4636.300000,66,2,1931.639795,hint,lora,180 -on6,0,0,27,0,0,4161,4998.200000,66,4,2124.078771,hint,lora,180 -on7,0,0,25,0,0,4356,4500.000000,67,2,1813.439590,hint,lora,180 -on8,0,0,25,1,0,530,4504.200000,67,1,1896.528205,hint,lora,180 -on3,0,0,25,1,0,3310,4500.301280,67,1,1898.968717,hint,lora,180 -on5,0,0,25,1,0,2871,4508.302560,67,2,1883.001229,hint,lora,180 -on11,0,0,25,1,0,879,4639.802560,67,2,1929.681434,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,67,0,2316.480000,hint,lora,180 -on6,0,0,29,1,0,2729,5245.801280,67,6,2217.535693,hint,lora,180 -on1,0,0,25,1,0,248,4502.000000,67,1,1843.104000,hint,lora,180 -on4,0,0,27,1,0,827,4863.301280,67,3,2010.008512,hint,lora,180 -on10,0,0,28,1,0,1590,5041.202560,67,4,2091.568819,hint,lora,180 -on9,0,0,23,1,0,2729,4276.998720,67,0,1766.063488,hint,lora,180 -on2,0,0,26,1,0,1046,4792.203840,67,3,1990.657741,hint,lora,180 -on7,0,0,24,1,0,0,4322.000000,68,0,1785.887795,hint,lora,180 -on9,0,0,27,1,0,1874,4862.300000,68,3,2032.551386,hint,lora,180 -on10,0,0,26,1,0,488,4682.800000,68,2,1953.263795,hint,lora,180 -on1,0,0,27,1,0,2240,4861.600000,68,3,1996.799181,hint,lora,180 -on3,0,0,27,1,0,780,4863.100000,68,3,2036.199795,hint,lora,180 -on2,0,0,25,1,0,142,4502.000000,68,1,1858.015590,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,68,0,2068.000205,hint,lora,180 -on11,0,0,28,1,0,1118,5073.900000,68,5,2184.871795,hint,lora,180 -on6,0,0,30,1,0,2023,5524.302560,68,8,2299.912000,hint,lora,180 -on5,0,0,26,1,0,503,4681.300000,68,2,1904.103795,hint,lora,180 -on8,0,0,29,1,0,1186,5224.500000,68,5,2239.750566,hint,lora,180 -on4,0,0,27,1,0,1022,4862.703840,68,3,2022.328922,hint,lora,180 -on6,0,0,24,1,0,720,4410.000000,69,1,1818.943795,hint,lora,180 -on9,0,0,24,0,0,4265,4320.000000,69,0,1736.960000,hint,lora,180 -on11,0,0,24,1,0,919,4320.998720,69,0,1753.999898,hint,lora,180 -on0,1,3,24,0,0,0,4320.000000,69,0,1928.160000,hint,lora,180 -on8,0,0,24,0,0,4281,4320.000000,69,0,1734.400000,hint,lora,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hint,lora,180 -on1,0,0,25,0,0,4317,4674.300000,69,2,1904.663386,hint,lora,180 -on3,0,0,24,0,0,4251,4320.000000,69,0,1756.800000,hint,lora,180 -on10,0,0,24,0,0,4190,4320.000000,69,0,1777.440000,hint,lora,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hint,lora,180 -on5,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hint,lora,180 -on4,0,0,25,1,0,969,4500.301280,69,1,1843.480512,hint,lora,180 -on8,0,0,26,1,0,461,4683.000000,70,2,1939.391181,hint,lora,180 -on9,0,0,29,1,0,1347,5223.207680,70,5,2207.619072,hint,lora,180 -on2,0,0,25,1,0,833,4501.005120,70,1,1829.042253,hint,lora,180 -on6,0,0,29,1,0,2632,5224.302560,70,5,2219.608614,hint,lora,180 -on10,0,0,25,1,0,107,4502.201280,70,1,1838.096512,hint,lora,180 -on5,0,0,26,1,0,1467,4682.300000,70,2,1949.143590,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,70,0,2156.800205,hint,lora,180 -on11,0,0,30,1,0,2031,5539.198720,70,7,2347.198669,hint,lora,180 -on1,0,0,27,1,0,799,4863.207680,70,3,1985.779482,hint,lora,180 -on3,0,0,32,1,0,2166,5892.602560,70,10,2593.471386,hint,lora,180 -on4,0,0,30,1,0,2095,5491.603840,70,7,2310.096717,hint,lora,180 -on7,0,0,27,1,0,2318,4993.500000,70,4,2111.638976,hint,lora,180 -on10,0,0,25,1,0,1733,4503.000000,71,1,1885.903795,hint,lora,180 -on8,0,0,25,1,0,2258,4503.601280,71,2,1901.089126,hint,lora,180 -on6,0,0,25,1,0,1936,4502.300000,71,1,1878.935795,hint,lora,180 -on1,0,0,25,1,0,3014,4501.000000,71,1,1829.103795,hint,lora,180 -on5,0,0,25,1,0,195,4501.002560,71,1,1879.665434,hint,lora,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,hint,lora,180 -on11,0,0,27,1,0,2348,4861.001280,71,3,2004.480102,hint,lora,180 -on7,0,0,24,1,0,575,4433.001280,71,1,1834.864512,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,71,0,2172.736000,hint,lora,180 -on3,0,0,26,1,0,2054,4684.500000,71,2,1966.439795,hint,lora,180 -on2,0,0,25,1,0,897,4562.402560,71,2,1853.713229,hint,lora,180 -on4,0,0,25,1,0,3165,4638.201280,71,2,1884.240512,hint,lora,180 -on8,0,0,27,1,0,2668,4875.300000,72,4,2077.224614,hint,lora,180 -on9,0,0,26,1,0,2271,4810.901280,72,3,2015.624307,hint,lora,180 -on4,0,0,27,1,0,2853,5037.900000,72,4,2139.575795,hint,lora,180 -on7,0,0,27,1,0,4010,4860.998720,72,4,1983.439078,hint,lora,180 -on5,0,0,26,1,0,1945,4681.300000,72,2,1942.919795,hint,lora,180 -on1,0,0,31,1,0,3670,5583.401280,72,8,2444.527488,hint,lora,180 -on10,0,0,30,0,0,4720,5401.300000,72,6,2206.183590,hint,lora,180 -on2,0,0,32,1,0,3633,5763.403840,72,8,2466.160102,hint,lora,180 -on11,0,0,32,1,0,3503,5764.400000,72,8,2491.838566,hint,lora,180 -on6,0,0,31,1,0,2765,5775.400000,72,10,2561.294976,hint,lora,180 -on3,0,0,26,1,0,2606,4742.497440,72,3,1928.934771,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,72,0,2299.840000,hint,lora,180 -on5,0,0,29,1,0,2221,5337.596160,73,6,2222.638259,hint,lora,180 -on6,0,0,33,1,0,2702,5944.302560,73,10,2550.327590,hint,lora,180 -on10,0,0,26,1,0,1094,4684.398720,73,2,1965.583488,hint,lora,180 -on8,0,0,25,1,0,833,4501.000000,73,1,1828.880000,hint,lora,180 -on3,0,0,28,0,0,4262,5175.400000,73,5,2172.879386,hint,lora,180 -on2,0,0,26,1,0,1187,4682.200000,73,2,1908.528000,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,73,0,2260.960000,hint,lora,180 -on9,0,0,29,1,0,2564,5301.500000,73,6,2233.654362,hint,lora,180 -on11,0,0,27,1,0,1584,5005.500000,73,4,2092.951386,hint,lora,180 -on1,0,0,28,1,0,2180,5045.201280,73,4,2115.808102,hint,lora,180 -on7,0,0,27,1,0,1684,4863.998720,73,3,2013.023693,hint,lora,180 -on4,0,0,31,1,0,2855,5723.900000,73,8,2424.934771,hint,lora,180 -on1,0,0,26,1,0,2580,4683.002560,74,2,1970.208819,hint,lora,180 -on9,0,0,25,1,0,1784,4502.200000,74,1,1831.567795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,74,0,2232.960205,hint,lora,180 -on2,0,0,26,1,0,1445,4682.001280,74,2,1982.320512,hint,lora,180 -on5,0,0,26,1,0,2171,4682.194880,74,2,1907.661747,hint,lora,180 -on6,0,0,27,1,0,2385,4862.300000,74,3,2062.903181,hint,lora,180 -on11,0,0,29,1,0,2873,5222.908960,74,5,2235.355584,hint,lora,180 -on3,0,0,26,1,0,2353,4681.600000,74,2,1908.495590,hint,lora,180 -on8,0,0,30,1,0,3487,5402.800000,74,6,2276.958771,hint,lora,180 -on4,0,0,27,1,0,2640,4862.600000,74,3,2008.303386,hint,lora,180 -on10,0,0,27,1,0,3080,4863.100000,74,4,2012.631386,hint,lora,180 -on7,0,0,26,1,0,1431,4681.200000,74,2,1915.008000,hint,lora,180 -on5,0,0,25,1,0,1320,4501.001280,75,1,1872.352717,hint,lora,180 -on7,0,0,27,1,0,3203,4996.198720,75,4,2091.055488,hint,lora,180 -on10,0,0,25,0,0,4082,4630.300000,75,2,1943.799590,hint,lora,180 -on4,0,0,27,1,0,2229,5172.094880,75,5,2269.110362,hint,lora,180 -on3,0,0,25,1,0,2099,4501.300000,75,2,1893.000000,hint,lora,180 -on2,0,0,25,1,0,1684,4504.298720,75,1,1891.127488,hint,lora,180 -on6,0,0,25,1,0,1207,4502.997440,75,1,1829.903386,hint,lora,180 -on9,0,0,27,0,0,4138,4927.800000,75,5,2069.359590,hint,lora,180 -on8,0,0,26,1,0,2896,4684.297440,75,2,1944.566771,hint,lora,180 -on1,0,0,25,1,0,499,4501.005120,75,1,1877.042458,hint,lora,180 -on11,0,0,27,1,0,2288,4862.901280,75,3,2053.656307,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,75,0,2276.960000,hint,lora,180 -on6,0,0,27,1,0,1279,4861.500000,76,3,1995.159795,hint,lora,180 -on11,0,0,25,1,0,562,4640.001280,76,2,1909.648512,hint,lora,180 -on3,0,0,27,1,0,1678,4863.300000,76,3,2027.783795,hint,lora,180 -on4,0,0,31,1,0,2255,5583.601280,76,7,2361.344102,hint,lora,180 -on10,0,0,30,1,0,3224,5501.902560,76,7,2365.720000,hint,lora,180 -on1,0,0,25,1,0,962,4630.202560,76,2,1897.265229,hint,lora,180 -on9,0,0,29,1,0,2302,5245.598720,76,6,2246.398259,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,76,0,2242.880205,hint,lora,180 -on5,0,0,28,1,0,1228,5220.696160,76,5,2195.462669,hint,lora,180 -on8,0,0,29,1,0,1904,5226.493600,76,5,2259.813440,hint,lora,180 -on2,0,0,34,1,0,2811,6124.803840,76,10,2642.111898,hint,lora,180 -on7,0,0,29,1,0,2352,5226.401280,76,6,2212.207488,hint,lora,180 -on2,0,0,26,0,0,4212,4815.002560,77,3,2005.281024,hint,lora,180 -on7,0,0,25,1,0,296,4554.200000,77,2,1902.127386,hint,lora,180 -on10,0,0,26,1,0,569,4682.100000,77,2,1914.935386,hint,lora,180 -on6,0,0,25,1,0,300,4502.001280,77,1,1850.784717,hint,lora,180 -on3,0,0,25,1,0,1051,4503.000000,77,1,1861.040000,hint,lora,180 -on4,0,0,27,1,0,1212,4863.001280,77,3,2025.631693,hint,lora,180 -on5,0,0,26,1,0,2617,4682.301280,77,2,1974.504922,hint,lora,180 -on11,0,0,25,1,0,875,4503.201280,77,1,1884.960922,hint,lora,180 -on1,0,0,26,1,0,2250,4681.601280,77,2,1988.896307,hint,lora,180 -on8,0,0,25,1,0,1258,4505.301280,77,1,1925.544717,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,77,0,2237.120000,hint,lora,180 -on9,0,0,29,1,0,1637,5223.602560,77,5,2241.696614,hint,lora,180 -on8,0,0,26,1,0,2662,4682.200000,78,2,1928.240205,hint,lora,180 -on4,0,0,24,1,0,2713,4321.000000,78,0,1754.000410,hint,lora,180 -on5,0,0,24,0,0,4104,4320.000000,78,0,1779.680000,hint,lora,180 -on2,0,0,23,0,0,4165,4217.000000,78,0,1695.280000,hint,lora,180 -on7,0,0,25,1,0,2488,4501.200000,78,1,1832.383795,hint,lora,180 -on10,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,hint,lora,180 -on11,0,0,25,1,0,3807,4502.300000,78,1,1909.047795,hint,lora,180 -on9,0,0,24,0,0,4220,4320.000000,78,0,1744.160000,hint,lora,180 -on6,0,0,24,0,0,4150,4320.000000,78,0,1755.520000,hint,lora,180 -on1,0,0,25,0,0,4417,4500.300000,78,1,1813.272000,hint,lora,180 -on0,1,4,24,0,0,0,4320.000000,78,0,2130.880000,hint,lora,180 -on3,0,0,25,0,0,4259,4500.200000,78,1,1827.759795,hint,lora,180 -on9,0,0,25,1,0,965,4502.300000,79,1,1858.120000,hint,lora,180 -on3,0,0,26,1,0,2197,4681.202560,79,2,1901.489229,hint,lora,180 -on8,0,0,27,1,0,1225,4862.402560,79,3,2036.801024,hint,lora,180 -on5,0,0,29,1,0,2357,5224.900000,79,5,2205.526976,hint,lora,180 -on4,0,0,28,1,0,2576,5197.101280,79,5,2179.798669,hint,lora,180 -on10,0,0,28,1,0,1672,5042.703840,79,4,2088.729741,hint,lora,180 -on1,0,0,24,1,0,628,4438.994880,79,1,1842.926362,hint,lora,180 -on11,0,0,25,1,0,1686,4738.801280,79,3,1971.359898,hint,lora,180 -on2,0,0,27,1,0,3744,4863.200000,79,3,2071.087386,hint,lora,180 -on6,0,0,30,1,0,2681,5404.501280,79,7,2335.479283,hint,lora,180 -on7,0,0,30,1,0,2161,5404.401280,79,6,2255.984102,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,79,0,2162.240205,hint,lora,180 -on9,0,0,24,1,0,1787,4323.998720,80,0,1813.503898,hint,lora,180 -on6,0,0,25,0,0,4319,4500.000000,80,2,1820.799795,hint,lora,180 -on11,0,0,26,1,0,3979,4681.700000,80,2,1967.560410,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,80,0,2300.960000,hint,lora,180 -on2,0,0,24,0,0,4015,4320.000000,80,0,1780.960000,hint,lora,180 -on7,0,0,25,1,0,3052,4503.301280,80,1,1898.088922,hint,lora,180 -on5,0,0,26,1,0,1858,4683.598720,80,2,2006.910669,hint,lora,180 -on1,0,0,27,1,0,2361,4862.502560,80,3,2015.736819,hint,lora,180 -on3,0,0,28,1,0,2576,5042.601280,80,4,2122.895898,hint,lora,180 -on4,0,0,24,0,0,4157,4320.000000,80,0,1774.720000,hint,lora,180 -on8,0,0,25,1,0,1954,4504.298720,80,1,1883.911488,hint,lora,180 -on10,0,0,24,1,0,1435,4379.998720,80,1,1778.511693,hint,lora,180 -on10,0,0,27,1,0,2146,4861.500000,81,3,2010.551386,hint,lora,180 -on6,0,0,26,1,0,3322,4788.102560,81,4,2038.744614,hint,lora,180 -on1,0,0,26,0,0,4333,4680.301280,81,2,1908.488102,hint,lora,180 -on8,0,0,28,1,0,2940,5241.200000,81,6,2266.990976,hint,lora,180 -on5,0,0,25,1,0,1982,4502.998720,81,1,1868.559693,hint,lora,180 -on7,0,0,29,1,0,3746,5222.401280,81,5,2186.479693,hint,lora,180 -on4,0,0,30,1,0,3098,5405.201280,81,6,2280.303488,hint,lora,180 -on9,0,0,26,1,0,1319,4690.000000,81,3,1943.759795,hint,lora,180 -on3,0,0,25,1,0,2330,4502.000000,81,1,1869.839795,hint,lora,180 -on11,0,0,24,1,0,3882,4332.300000,81,1,1799.800000,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,81,0,2387.520000,hint,lora,180 -on2,0,0,27,1,0,3066,4862.601280,81,3,2090.543898,hint,lora,180 -on10,0,0,26,1,0,2476,4812.600000,82,3,1990.367386,hint,lora,180 -on7,0,0,27,1,0,1341,4888.603840,82,4,2040.225741,hint,lora,180 -on11,0,0,27,1,0,3644,4861.702560,82,3,2005.320614,hint,lora,180 -on6,0,0,27,1,0,1396,4863.198720,82,3,2011.055283,hint,lora,180 -on9,0,0,32,1,0,2469,5764.801280,82,8,2469.887078,hint,lora,180 -on1,0,0,25,1,0,2361,4501.001280,82,1,1861.200512,hint,lora,180 -on4,0,0,27,1,0,1881,5005.802560,82,4,2068.800819,hint,lora,180 -on3,0,0,24,1,0,439,4321.000000,82,0,1773.423795,hint,lora,180 -on8,0,0,26,1,0,1007,4682.000000,82,2,1920.815795,hint,lora,180 -on5,0,0,25,1,0,1037,4501.000000,82,1,1828.784000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,82,0,2163.520205,hint,lora,180 -on2,0,0,28,1,0,1855,5042.200000,82,4,2120.782771,hint,lora,180 -on6,0,0,27,1,0,1228,4864.600000,83,3,2107.487181,hint,lora,180 -on1,0,0,27,1,0,1933,4863.901280,83,3,2040.601331,hint,lora,180 -on7,0,0,29,1,0,1485,5225.400000,83,5,2275.646976,hint,lora,180 -on9,0,0,26,1,0,1071,4683.600000,83,2,1945.727795,hint,lora,180 -on8,0,0,29,1,0,1910,5222.400000,83,5,2144.878976,hint,lora,180 -on11,0,0,25,1,0,520,4570.198720,83,2,1927.263488,hint,lora,180 -on10,0,0,25,1,0,703,4501.203840,83,1,1829.025741,hint,lora,180 -on3,0,0,24,1,0,18,4321.998720,83,0,1754.623488,hint,lora,180 -on4,0,0,24,0,0,4057,4320.000000,83,0,1778.080000,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,83,0,2306.880000,hint,lora,180 -on2,0,0,26,1,0,373,4682.300000,83,2,1937.511590,hint,lora,180 -on5,0,0,27,1,0,1993,4863.902560,83,3,2078.984614,hint,lora,180 -on6,0,0,27,1,0,2169,5001.802560,84,5,2156.625229,hint,lora,180 -on11,0,0,26,1,0,1532,4686.002560,84,2,1967.585024,hint,lora,180 -on5,0,0,26,1,0,1332,4683.501280,84,2,1956.632717,hint,lora,180 -on2,0,0,28,1,0,2651,5111.401280,84,5,2171.567078,hint,lora,180 -on1,0,0,26,0,0,4460,4680.300000,84,2,1875.159795,hint,lora,180 -on8,0,0,26,1,0,1795,4707.898720,84,3,2039.127283,hint,lora,180 -on4,0,0,25,1,0,1939,4502.300000,84,1,1843.703795,hint,lora,180 -on7,0,0,27,1,0,1934,4978.103840,84,4,2142.649536,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,84,0,2179.520000,hint,lora,180 -on9,0,0,26,1,0,1596,4682.000000,84,2,1936.703181,hint,lora,180 -on10,0,0,24,1,0,989,4431.298720,84,1,1887.063488,hint,lora,180 -on3,0,0,25,0,0,4423,4500.200000,84,1,1828.880000,hint,lora,180 -on7,0,0,29,1,0,2720,5223.900000,85,6,2237.047795,hint,lora,180 -on6,0,0,24,1,0,1768,4349.300000,85,2,1795.304205,hint,lora,180 -on8,0,0,24,1,0,1989,4323.003840,85,0,1795.313536,hint,lora,180 -on9,0,0,25,1,0,3102,4501.500000,85,2,1864.903795,hint,lora,180 -on10,0,0,28,1,0,3416,5214.501280,85,6,2147.719898,hint,lora,180 -on2,0,0,30,0,0,4388,5401.902560,85,7,2301.272205,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,85,0,2304.000000,hint,lora,180 -on11,0,0,29,0,0,3960,5350.203840,85,8,2323.073126,hint,lora,180 -on4,0,0,28,1,0,3936,5308.700000,85,6,2224.902976,hint,lora,180 -on5,0,0,25,1,0,3861,4675.200000,85,2,1961.983590,hint,lora,180 -on1,0,0,27,1,0,3328,4862.900000,85,3,2058.087590,hint,lora,180 -on3,0,0,27,1,0,4077,4861.900000,85,3,2013.079386,hint,lora,180 -on7,0,0,25,1,0,1832,4503.998720,86,1,1887.583693,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,86,0,2214.400205,hint,lora,180 -on2,0,0,34,1,0,2775,6125.098720,86,10,2690.485645,hint,lora,180 -on9,0,0,24,1,0,1196,4326.000000,86,1,1758.784000,hint,lora,180 -on8,0,0,30,1,0,2030,5403.301280,86,7,2336.215488,hint,lora,180 -on1,0,0,32,1,0,2526,5939.301280,86,9,2629.287488,hint,lora,180 -on10,0,0,25,1,0,345,4502.301280,86,1,1854.568307,hint,lora,180 -on4,0,0,35,1,0,2822,6304.905120,86,11,2665.768410,hint,lora,180 -on6,0,0,33,1,0,2190,5943.805120,86,9,2498.817024,hint,lora,180 -on5,0,0,30,1,0,2793,5596.600000,86,9,2464.894976,hint,lora,180 -on3,0,0,25,1,0,911,4648.501280,86,2,1940.008512,hint,lora,180 -on11,0,0,27,1,0,1185,4861.600000,86,3,2030.559386,hint,lora,180 -on10,0,0,25,1,0,1894,4502.301280,87,1,1860.184717,hint,lora,180 -on1,0,0,25,1,0,2134,4648.600000,87,2,1975.887795,hint,lora,180 -on4,0,0,28,1,0,2874,5042.501280,87,4,2146.264102,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,87,0,2235.360000,hint,lora,180 -on8,0,0,28,1,0,2482,5100.500000,87,5,2089.159181,hint,lora,180 -on2,0,0,27,1,0,1486,4865.493600,87,3,2079.877645,hint,lora,180 -on7,0,0,29,1,0,2506,5222.800000,87,5,2190.334976,hint,lora,180 -on11,0,0,25,1,0,1279,4501.998720,87,1,1854.831488,hint,lora,180 -on3,0,0,28,1,0,2554,5160.702560,87,5,2221.224205,hint,lora,180 -on6,0,0,33,1,0,2794,5946.001280,87,9,2578.943283,hint,lora,180 -on9,0,0,28,0,0,4341,5041.200000,87,5,2131.934976,hint,lora,180 -on5,0,0,24,1,0,1575,4342.000000,87,1,1797.712205,hint,lora,180 -on10,0,0,28,0,0,4529,5041.700000,88,4,2070.758976,hint,lora,180 -on3,0,0,28,1,0,1331,5043.794880,88,4,2084.525542,hint,lora,180 -on5,0,0,27,1,0,1079,4862.100000,88,3,1976.359590,hint,lora,180 -on11,0,0,28,1,0,1298,5042.501280,88,4,2137.815898,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,88,0,2205.600000,hint,lora,180 -on9,0,0,30,1,0,1908,5403.401280,88,6,2254.703488,hint,lora,180 -on4,0,0,27,1,0,1274,4884.400000,88,4,2072.799386,hint,lora,180 -on2,0,0,24,1,0,480,4334.200000,88,1,1762.320410,hint,lora,180 -on6,0,0,25,0,0,4439,4627.202560,88,2,1854.656819,hint,lora,180 -on1,0,0,25,1,0,251,4501.998720,88,1,1872.079898,hint,lora,180 -on8,0,0,31,1,0,2197,5604.300000,88,8,2408.264000,hint,lora,180 -on7,0,0,24,1,0,673,4398.296160,88,1,1821.366669,hint,lora,180 -on6,0,0,26,1,0,3095,4682.600000,89,2,1959.231590,hint,lora,180 -on7,0,0,24,0,0,4320,4320.000000,89,0,1728.000000,hint,lora,180 -on2,0,0,24,0,0,4258,4320.000000,89,0,1738.080000,hint,lora,180 -on11,0,0,26,1,0,3617,4680.501280,89,2,1940.952512,hint,lora,180 -on9,0,0,26,1,0,610,4682.996160,89,2,1935.182669,hint,lora,180 -on3,0,0,25,1,0,2055,4501.201280,89,1,1867.424717,hint,lora,180 -on10,0,0,25,1,0,50,4501.000000,89,1,1850.015795,hint,lora,180 -on8,0,0,25,1,0,834,4500.001280,89,1,1832.800512,hint,lora,180 -on4,0,0,27,1,0,2684,4862.200000,89,3,2088.991590,hint,lora,180 -on1,0,0,28,1,0,3093,5043.701280,89,4,2156.391898,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,89,0,2296.960000,hint,lora,180 -on5,0,0,27,1,0,3601,4862.000000,89,3,2032.063590,hint,lora,180 -on9,0,0,25,1,0,1553,4533.197440,90,2,1889.710976,hint,lora,180 -on8,0,0,26,1,0,2319,4683.401280,90,2,1940.128717,hint,lora,180 -on6,0,0,25,1,0,456,4503.996160,90,1,1860.063283,hint,lora,180 -on1,0,0,29,1,0,2835,5223.603840,90,5,2240.257536,hint,lora,180 -on5,0,0,23,0,0,4199,4262.000000,90,0,1715.040000,hint,lora,180 -on7,0,0,27,1,0,3616,4862.001280,90,3,2049.152102,hint,lora,180 -on10,0,0,25,1,0,1755,4502.401280,90,1,1838.256512,hint,lora,180 -on3,0,0,24,1,0,2254,4555.498720,90,2,1909.399488,hint,lora,180 -on4,0,0,25,1,0,1303,4501.201280,90,1,1839.792512,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,90,0,2214.016000,hint,lora,180 -on11,0,0,28,1,0,2733,5298.201280,90,6,2231.423078,hint,lora,180 -on2,0,0,26,1,0,1873,4682.600000,90,2,1964.047795,hint,lora,180 -on1,0,0,25,1,0,1368,4502.000000,91,1,1892.927795,hint,lora,180 -on10,0,0,26,1,0,1524,4683.505120,91,2,1951.962048,hint,lora,180 -on11,0,0,30,1,0,3026,5403.402560,91,6,2351.872410,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,91,0,2307.840000,hint,lora,180 -on9,0,0,28,1,0,2726,5285.700000,91,6,2215.990362,hint,lora,180 -on7,0,0,26,1,0,1725,4681.201280,91,2,1901.072512,hint,lora,180 -on6,0,0,28,1,0,2337,5043.105120,91,4,2095.050458,hint,lora,180 -on4,0,0,26,0,0,4105,4680.300000,91,3,1957.719181,hint,lora,180 -on5,0,0,26,1,0,2035,4684.600000,91,2,2020.432000,hint,lora,180 -on3,0,0,26,1,0,1933,4833.998720,91,3,2043.791283,hint,lora,180 -on2,0,0,31,1,0,2924,5583.501280,91,8,2391.574464,hint,lora,180 -on8,0,0,27,1,0,2484,4866.500000,91,3,2060.088000,hint,lora,180 -on7,0,0,25,1,0,3932,4501.300000,92,1,1833.800000,hint,lora,180 -on10,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hint,lora,180 -on2,0,0,25,1,0,1523,4648.201280,92,2,1966.321126,hint,lora,180 -on5,0,0,25,1,0,3700,4502.300000,92,1,1860.343795,hint,lora,180 -on3,0,0,26,1,0,994,4680.001280,92,2,1900.752512,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,92,0,2142.560000,hint,lora,180 -on11,0,0,25,1,0,413,4502.005120,92,1,1895.106458,hint,lora,180 -on1,0,0,25,1,0,3201,4502.000000,92,1,1852.960205,hint,lora,180 -on4,0,0,27,1,0,3792,4949.201280,92,4,2093.983693,hint,lora,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hint,lora,180 -on8,0,0,25,1,0,3329,4502.300000,92,1,1872.823590,hint,lora,180 -on6,0,0,25,1,0,766,4502.200000,92,1,1846.591795,hint,lora,180 -on1,0,0,27,1,0,1201,4862.505120,93,3,1993.849843,hint,lora,180 -on11,0,0,25,1,0,2501,4501.600000,93,2,1913.824000,hint,lora,180 -on7,0,0,25,1,0,360,4504.003840,93,1,1858.097946,hint,lora,180 -on4,0,0,25,1,0,893,4502.000000,93,2,1833.711795,hint,lora,180 -on9,0,0,30,1,0,1828,5402.606400,93,6,2322.658560,hint,lora,180 -on3,0,0,29,1,0,2015,5493.401280,93,8,2313.199693,hint,lora,180 -on6,0,0,24,1,0,180,4322.002560,93,0,1793.281638,hint,lora,180 -on5,0,0,25,1,0,483,4505.198720,93,1,1902.575488,hint,lora,180 -on2,0,0,27,1,0,1369,4862.701280,93,3,2000.007898,hint,lora,180 -on10,0,0,24,1,0,653,4513.498720,93,2,1875.047488,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,93,0,2223.840205,hint,lora,180 -on8,0,0,29,1,0,2140,5223.700000,93,5,2180.695590,hint,lora,180 -on7,0,0,30,1,0,2318,5403.601280,94,6,2232.832102,hint,lora,180 -on10,0,0,25,1,0,1041,4501.997440,94,1,1848.174771,hint,lora,180 -on1,0,0,26,1,0,1319,4682.600000,94,2,1980.703386,hint,lora,180 -on2,0,0,25,1,0,1727,4530.500000,94,2,1873.703795,hint,lora,180 -on9,0,0,29,1,0,2510,5222.301280,94,5,2225.015488,hint,lora,180 -on6,0,0,31,1,0,2357,5584.401280,94,8,2373.151078,hint,lora,180 -on4,0,0,29,1,0,3331,5388.800000,94,6,2309.503386,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,94,0,2227.520205,hint,lora,180 -on3,0,0,29,1,0,2555,5399.200000,94,6,2303.967181,hint,lora,180 -on5,0,0,25,1,0,1237,4501.300000,94,1,1846.632000,hint,lora,180 -on8,0,0,31,1,0,3108,5582.902560,94,7,2377.128000,hint,lora,180 -on11,0,0,32,1,0,3257,5853.002560,94,9,2433.423795,hint,lora,180 -on10,0,0,25,1,0,1394,4713.497440,95,3,2028.166976,hint,lora,180 -on1,0,0,25,1,0,1601,4503.998720,95,1,1843.839693,hint,lora,180 -on5,0,0,26,1,0,1087,4682.301280,95,2,1954.792717,hint,lora,180 -on9,0,0,28,1,0,1919,5148.501280,95,5,2252.792102,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,95,0,2227.040000,hint,lora,180 -on4,0,0,24,1,0,0,4322.002560,95,0,1784.161638,hint,lora,180 -on3,0,0,27,1,0,1349,4861.600000,95,3,2013.519590,hint,lora,180 -on2,0,0,30,1,0,1822,5404.301280,95,6,2310.711898,hint,lora,180 -on8,0,0,29,1,0,2235,5224.002560,95,5,2215.791795,hint,lora,180 -on11,0,0,25,1,0,479,4501.001280,95,1,1857.584512,hint,lora,180 -on7,0,0,25,1,0,388,4501.998720,95,1,1843.215488,hint,lora,180 -on6,0,0,27,0,0,4590,4860.500000,95,3,1968.023590,hint,lora,180 -on8,0,0,25,1,0,536,4677.500000,96,2,1903.799386,hint,lora,180 -on11,0,0,27,1,0,1412,5017.800000,96,4,2100.894771,hint,lora,180 -on2,0,0,29,1,0,1929,5223.602560,96,6,2159.200205,hint,lora,180 -on10,0,0,28,1,0,956,5144.600000,96,5,2165.135795,hint,lora,180 -on4,0,0,26,1,0,1405,4682.600000,96,2,1961.903590,hint,lora,180 -on7,0,0,25,1,0,293,4501.000000,96,1,1828.944000,hint,lora,180 -on6,0,0,26,1,0,1053,4681.300000,96,2,1918.023386,hint,lora,180 -on9,0,0,24,1,0,0,4321.005120,96,0,1757.106048,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,96,0,2039.040205,hint,lora,180 -on3,0,0,26,1,0,635,4682.200000,96,2,1932.911386,hint,lora,180 -on5,0,0,25,1,0,656,4502.200000,96,1,1833.807795,hint,lora,180 -on1,0,0,27,1,0,1773,4925.900000,96,4,2069.142771,hint,lora,180 -on3,0,0,27,1,0,2016,4862.900000,97,3,2072.582771,hint,lora,180 -on6,0,0,25,1,0,1080,4503.003840,97,1,1885.153741,hint,lora,180 -on1,0,0,29,1,0,2613,5221.900000,97,5,2159.110771,hint,lora,180 -on11,0,0,31,1,0,2943,5586.406400,97,8,2330.913946,hint,lora,180 -on5,0,0,26,1,0,634,4681.001280,97,2,1924.256512,hint,lora,180 -on8,0,0,25,1,0,827,4501.001280,97,1,1858.320717,hint,lora,180 -on2,0,0,29,1,0,1610,5224.401280,97,6,2274.735898,hint,lora,180 -on9,0,0,25,1,0,347,4501.400000,97,1,1846.271795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,97,0,2156.800205,hint,lora,180 -on7,0,0,24,1,0,1177,4389.000000,97,1,1804.080000,hint,lora,180 -on10,0,0,25,1,0,2015,4501.200000,97,1,1831.408000,hint,lora,180 -on4,0,0,26,1,0,1762,4682.300000,97,2,1974.999590,hint,lora,180 -on4,0,0,28,1,0,1658,5103.901280,98,5,2136.711693,hint,lora,180 -on9,0,0,33,1,0,2693,5944.902560,98,9,2530.151181,hint,lora,180 -on2,0,0,26,1,0,927,4682.900000,98,2,1913.927795,hint,lora,180 -on7,0,0,24,1,0,1075,4421.000000,98,1,1796.880000,hint,lora,180 -on5,0,0,24,1,0,517,4384.003840,98,1,1841.777536,hint,lora,180 -on6,0,0,28,1,0,1381,5042.900000,98,4,2137.191386,hint,lora,180 -on11,0,0,30,1,0,2220,5403.400000,98,6,2234.494566,hint,lora,180 -on8,0,0,27,1,0,1592,5038.800000,98,4,2126.960000,hint,lora,180 -on10,0,0,32,1,0,2462,5765.497440,98,8,2505.797133,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,98,0,2086.720205,hint,lora,180 -on1,0,0,28,1,0,2135,5042.600000,98,5,2098.702771,hint,lora,180 -on3,0,0,25,1,0,518,4502.005120,98,1,1837.586048,hint,lora,180 -on1,0,0,27,1,0,702,4864.600000,99,3,2043.215181,hint,lora,180 -on8,0,0,25,1,0,0,4502.000000,99,1,1857.679795,hint,lora,180 -on11,0,0,29,1,0,1922,5382.301280,99,6,2364.919898,hint,lora,180 -on2,0,0,26,1,0,1987,4846.001280,99,4,2139.583693,hint,lora,180 -on6,0,0,27,1,0,1309,4862.502560,99,3,2015.064819,hint,lora,180 -on7,0,0,26,1,0,863,4681.600000,99,2,1935.199795,hint,lora,180 -on4,0,0,28,1,0,1966,5251.703840,99,6,2195.224922,hint,lora,180 -on5,0,0,26,1,0,498,4683.300000,99,2,1941.063795,hint,lora,180 -on10,0,0,29,1,0,1488,5223.100000,99,5,2156.791386,hint,lora,180 -on3,0,0,30,1,0,2939,5635.401280,99,8,2404.158874,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,99,0,2184.000205,hint,lora,180 -on9,0,0,26,1,0,610,4681.600000,99,2,1968.544000,hint,lora,180 -on5,0,0,26,1,0,2297,4682.000000,100,2,1908.607386,hint,lora,180 -on1,0,0,23,1,0,2024,4460.998720,100,1,1864.607693,hint,lora,180 -on2,0,0,25,1,0,2146,4504.298720,100,1,1891.047898,hint,lora,180 -on8,0,0,28,1,0,2695,5043.898720,100,4,2134.886874,hint,lora,180 -on9,0,0,26,1,0,2873,4681.601280,100,2,1960.480512,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,100,0,2256.480000,hint,lora,180 -on6,0,0,27,1,0,2775,4863.900000,100,3,2041.303386,hint,lora,180 -on4,0,0,27,0,0,4151,5028.102560,100,4,2129.032410,hint,lora,180 -on11,0,0,24,1,0,555,4322.998720,100,0,1754.800717,hint,lora,180 -on10,0,0,25,1,0,1647,4502.300000,100,1,1876.759795,hint,lora,180 -on3,0,0,24,1,0,369,4320.001280,100,0,1753.600717,hint,lora,180 -on7,0,0,24,0,0,4159,4320.000000,100,0,1771.840000,hint,lora,180 -on4,0,0,26,1,0,1918,4682.000000,101,2,1917.919590,hint,lora,180 -on10,0,0,29,1,0,1827,5224.800000,101,6,2205.758976,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,101,0,2128.000205,hint,lora,180 -on7,0,0,27,1,0,1338,4864.998720,101,3,2053.807283,hint,lora,180 -on3,0,0,31,1,0,2516,5583.100000,101,9,2397.141747,hint,lora,180 -on9,0,0,25,1,0,728,4529.207680,101,2,1869.011482,hint,lora,180 -on1,0,0,32,1,0,2239,5765.800000,101,8,2499.582566,hint,lora,180 -on6,0,0,28,1,0,1704,5126.101280,101,5,2118.119693,hint,lora,180 -on8,0,0,31,1,0,2325,5584.802560,101,7,2395.440410,hint,lora,180 -on5,0,0,30,1,0,1394,5402.901280,101,6,2220.376102,hint,lora,180 -on11,0,0,25,1,0,570,4501.000000,101,1,1844.560000,hint,lora,180 -on2,0,0,26,1,0,1057,4683.300000,101,2,1943.784000,hint,lora,180 -on8,0,0,24,0,0,4242,4320.000000,102,0,1740.640000,hint,lora,180 -on6,0,0,24,0,0,4295,4320.000000,102,0,1756.800000,hint,lora,180 -on3,0,0,24,0,0,4039,4320.000000,102,0,1780.160000,hint,lora,180 -on2,0,0,25,1,0,3911,4502.300000,102,1,1891.063590,hint,lora,180 -on1,0,0,24,1,0,2080,4321.000000,102,0,1796.560410,hint,lora,180 -on5,0,0,24,0,0,4067,4320.000000,102,0,1779.520000,hint,lora,180 -on7,0,0,26,0,0,4254,4680.500000,102,2,1914.999590,hint,lora,180 -on0,1,3,24,0,0,0,4320.000000,102,0,2086.400000,hint,lora,180 -on4,0,0,25,0,0,4460,4500.000000,102,1,1828.800000,hint,lora,180 -on10,0,0,26,0,0,4581,4680.500000,102,2,1875.607795,hint,lora,180 -on11,0,0,25,1,0,3551,4502.300000,102,1,1898.823795,hint,lora,180 -on9,0,0,24,0,0,4087,4342.500000,102,1,1765.800000,hint,lora,180 -on7,0,0,24,0,0,4241,4320.000000,103,0,1740.800000,hint,lora,180 -on1,0,0,24,1,0,2168,4323.996160,103,0,1801.247078,hint,lora,180 -on5,0,0,24,1,0,2778,4550.000000,103,2,1937.935795,hint,lora,180 -on2,0,0,25,1,0,3795,4503.300000,103,1,1907.240000,hint,lora,180 -on4,0,0,25,1,0,2614,4563.000000,103,2,1866.975590,hint,lora,180 -on9,0,0,26,1,0,4279,4680.500000,103,2,1900.999795,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,103,0,2233.440000,hint,lora,180 -on8,0,0,26,1,0,2981,4683.194880,103,2,1962.606771,hint,lora,180 -on3,0,0,24,0,0,4182,4320.000000,103,0,1756.800000,hint,lora,180 -on6,0,0,24,0,0,4175,4320.000000,103,0,1756.800000,hint,lora,180 -on10,0,0,25,1,0,2542,4502.200000,103,1,1898.431795,hint,lora,180 -on11,0,0,25,1,0,2329,4501.300000,103,1,1873.799795,hint,lora,180 -on5,0,0,27,1,0,2361,4862.800000,104,3,2034.655181,hint,lora,180 -on3,0,0,27,1,0,2469,4863.806400,104,3,2080.930560,hint,lora,180 -on4,0,0,34,1,0,3802,6125.201280,104,10,2574.110464,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,104,0,2200.160205,hint,lora,180 -on8,0,0,27,1,0,1492,4861.901280,104,4,2031.144922,hint,lora,180 -on7,0,0,30,1,0,2912,5404.396160,104,6,2318.989030,hint,lora,180 -on6,0,0,26,1,0,1872,4681.402560,104,2,1899.057024,hint,lora,180 -on10,0,0,25,1,0,1313,4502.000000,104,1,1867.487795,hint,lora,180 -on2,0,0,26,1,0,2691,4683.000000,104,2,1966.959590,hint,lora,180 -on11,0,0,27,1,0,2019,4863.100000,104,4,2012.855386,hint,lora,180 -on1,0,0,27,1,0,2343,4861.500000,104,3,2000.023386,hint,lora,180 -on9,0,0,28,1,0,3316,5042.600000,104,4,2141.102976,hint,lora,180 -on3,0,0,30,1,0,4102,5644.400000,105,8,2390.973747,hint,lora,180 -on8,0,0,26,1,0,1984,4681.300000,105,2,1935.879795,hint,lora,180 -on6,0,0,25,1,0,1474,4503.602560,105,1,1891.313638,hint,lora,180 -on9,0,0,26,1,0,2813,4894.300000,105,4,2066.903795,hint,lora,180 -on4,0,0,30,1,0,3823,5403.301280,105,6,2304.359693,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,105,0,2243.840205,hint,lora,180 -on10,0,0,30,1,0,4114,5402.600000,105,6,2255.150976,hint,lora,180 -on1,0,0,31,1,0,3695,5584.998720,105,7,2390.830464,hint,lora,180 -on7,0,0,26,1,0,2340,4682.900000,105,2,1995.479795,hint,lora,180 -on5,0,0,26,1,0,2819,4683.600000,105,2,1981.727795,hint,lora,180 -on2,0,0,26,1,0,2378,4682.000000,105,2,1923.104000,hint,lora,180 -on11,0,0,28,1,0,3244,5043.600000,105,4,2165.870976,hint,lora,180 -on1,0,0,26,1,0,3086,4681.001280,106,2,1924.512512,hint,lora,180 -on5,0,0,25,1,0,2321,4502.996160,106,1,1858.542464,hint,lora,180 -on6,0,0,25,1,0,634,4643.200000,106,2,1888.112000,hint,lora,180 -on8,0,0,27,1,0,2361,4861.401280,106,3,2021.152512,hint,lora,180 -on9,0,0,25,1,0,2593,4502.300000,106,1,1892.695795,hint,lora,180 -on2,0,0,26,1,0,1231,4681.301280,106,2,1967.352512,hint,lora,180 -on4,0,0,25,0,0,4365,4500.000000,106,1,1811.039795,hint,lora,180 -on11,0,0,25,1,0,1172,4502.300000,106,1,1863.799795,hint,lora,180 -on7,0,0,25,1,0,915,4505.294880,106,1,1932.326566,hint,lora,180 -on3,0,0,25,1,0,334,4501.200000,106,1,1851.743795,hint,lora,180 -on10,0,0,25,1,0,2448,4501.601280,106,1,1894.848512,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,106,0,2226.880000,hint,lora,180 -on1,0,0,31,1,0,2407,5584.302560,107,7,2374.215795,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,107,0,2182.880000,hint,lora,180 -on8,0,0,26,1,0,2007,4684.000000,107,2,1956.607590,hint,lora,180 -on10,0,0,26,1,0,2392,4682.300000,107,2,1944.135590,hint,lora,180 -on6,0,0,25,1,0,1423,4515.300000,107,2,1857.271181,hint,lora,180 -on5,0,0,26,1,0,1528,4681.202560,107,2,1901.601024,hint,lora,180 -on2,0,0,26,1,0,1651,4682.300000,107,2,1949.463386,hint,lora,180 -on11,0,0,25,1,0,1248,4501.998720,107,1,1829.439693,hint,lora,180 -on7,0,0,24,0,0,4172,4320.000000,107,0,1751.840000,hint,lora,180 -on3,0,0,26,1,0,2337,4681.901280,107,2,2008.392512,hint,lora,180 -on9,0,0,25,1,0,509,4500.002560,107,1,1830.673434,hint,lora,180 -on4,0,0,27,1,0,2015,4864.800000,107,3,2034.207386,hint,lora,180 -on7,0,0,32,1,0,2557,5886.000000,108,11,2454.254157,hint,lora,180 -on6,0,0,26,0,0,4048,4680.300000,108,2,1954.215590,hint,lora,180 -on4,0,0,26,1,0,656,4682.205120,108,2,1934.002458,hint,lora,180 -on2,0,0,25,1,0,1753,4502.300000,108,1,1876.343795,hint,lora,180 -on11,0,0,26,1,0,2751,4682.300000,108,3,1965.287590,hint,lora,180 -on1,0,0,30,1,0,2114,5739.500000,108,8,2380.326566,hint,lora,180 -on3,0,0,26,1,0,2896,4680.302560,108,2,1942.313229,hint,lora,180 -on5,0,0,26,1,0,1097,4863.703840,108,3,2054.569536,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,108,0,2303.360000,hint,lora,180 -on10,0,0,26,1,0,672,4681.000000,108,2,1926.000000,hint,lora,180 -on9,0,0,32,1,0,3080,5817.000000,108,10,2533.966362,hint,lora,180 -on8,0,0,25,1,0,1111,4503.005120,108,1,1861.570458,hint,lora,180 -on7,0,0,29,1,0,2373,5223.702560,109,6,2277.256614,hint,lora,180 -on11,0,0,26,1,0,926,4681.500000,109,2,1904.439795,hint,lora,180 -on10,0,0,29,1,0,1685,5222.401280,109,5,2163.983488,hint,lora,180 -on2,0,0,26,1,0,1293,4747.801280,109,3,1999.217126,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,109,0,2207.360000,hint,lora,180 -on6,0,0,25,1,0,1760,4502.001280,109,1,1857.920717,hint,lora,180 -on4,0,0,24,1,0,180,4321.998720,109,0,1783.039898,hint,lora,180 -on1,0,0,27,1,0,1926,4862.101280,109,3,2049.527898,hint,lora,180 -on9,0,0,28,1,0,2112,5043.302560,109,4,2111.304614,hint,lora,180 -on8,0,0,29,0,0,4496,5246.802560,109,6,2198.767590,hint,lora,180 -on3,0,0,25,1,0,507,4503.398720,109,1,1878.815488,hint,lora,180 -on5,0,0,25,1,0,1380,4501.000000,109,1,1828.992000,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,110,0,2302.368000,hint,lora,180 -on11,0,0,24,1,0,1639,4462.000000,110,1,1855.168205,hint,lora,180 -on6,0,0,24,0,0,4279,4320.000000,110,0,1734.720000,hint,lora,180 -on2,0,0,26,1,0,2391,4682.300000,110,2,1932.727590,hint,lora,180 -on5,0,0,25,1,0,4124,4500.001280,110,1,1825.600717,hint,lora,180 -on4,0,0,27,1,0,2072,4861.602560,110,3,1996.592614,hint,lora,180 -on3,0,0,26,1,0,2555,4683.301280,110,2,1955.032922,hint,lora,180 -on10,0,0,27,1,0,2293,4908.203840,110,5,2066.992717,hint,lora,180 -on8,0,0,25,1,0,1913,4501.000000,110,1,1829.040000,hint,lora,180 -on7,0,0,24,1,0,1321,4322.000000,110,0,1843.583795,hint,lora,180 -on1,0,0,29,1,0,2774,5394.001280,110,6,2310.110874,hint,lora,180 -on9,0,0,26,1,0,325,4684.394880,110,2,1959.582976,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,111,0,2193.440000,hint,lora,180 -on4,0,0,26,1,0,1856,4683.600000,111,2,1950.351795,hint,lora,180 -on5,0,0,27,1,0,2218,4861.297440,111,3,2013.847181,hint,lora,180 -on10,0,0,24,0,0,3985,4320.000000,111,1,1779.520000,hint,lora,180 -on1,0,0,25,1,0,2365,4502.300000,111,1,1864.887386,hint,lora,180 -on11,0,0,24,1,0,2278,4320.998720,111,0,1767.119488,hint,lora,180 -on9,0,0,29,1,0,3567,5221.601280,111,5,2182.175898,hint,lora,180 -on8,0,0,26,1,0,2753,4683.900000,111,2,1980.967795,hint,lora,180 -on3,0,0,26,1,0,3263,4681.600000,111,2,1934.271386,hint,lora,180 -on2,0,0,25,1,0,1726,4502.998720,111,1,1840.143283,hint,lora,180 -on6,0,0,29,1,0,2931,5230.100000,111,6,2269.159386,hint,lora,180 -on7,0,0,28,1,0,2881,5041.102560,111,4,2086.329024,hint,lora,180 -on2,0,0,27,1,0,2148,4946.002560,112,4,2042.656614,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,112,0,2221.760000,hint,lora,180 -on11,0,0,27,1,0,2038,4954.198720,112,4,2148.366259,hint,lora,180 -on9,0,0,24,1,0,48,4320.998720,112,0,1776.879693,hint,lora,180 -on6,0,0,25,1,0,1642,4501.300000,112,1,1854.440000,hint,lora,180 -on8,0,0,26,1,0,1452,4683.201280,112,2,1970.304512,hint,lora,180 -on1,0,0,24,0,0,3990,4320.000000,112,0,1781.280000,hint,lora,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,hint,lora,180 -on3,0,0,24,1,0,1626,4480.300000,112,1,1830.168000,hint,lora,180 -on5,0,0,29,1,0,2651,5222.303840,112,5,2155.561536,hint,lora,180 -on7,0,0,25,1,0,937,4502.002560,112,1,1884.705434,hint,lora,180 -on10,0,0,25,1,0,3032,4500.201280,112,1,1825.680717,hint,lora,180 -on10,0,0,25,1,0,2633,4501.200000,113,1,1829.183795,hint,lora,180 -on2,0,0,24,0,0,4301,4320.000000,113,0,1756.800000,hint,lora,180 -on3,0,0,25,1,0,2846,4501.300000,113,1,1833.319795,hint,lora,180 -on5,0,0,28,1,0,3702,5043.601280,113,4,2152.831898,hint,lora,180 -on1,0,0,24,1,0,2329,4419.005120,113,1,1881.233843,hint,lora,180 -on6,0,0,27,1,0,3412,4861.600000,113,3,2030.831181,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,113,0,2194.720000,hint,lora,180 -on4,0,0,25,1,0,3831,4501.001280,113,1,1883.440717,hint,lora,180 -on9,0,0,24,1,0,2348,4321.003840,113,0,1775.185946,hint,lora,180 -on8,0,0,28,1,0,3809,5041.801280,113,4,2108.655693,hint,lora,180 -on7,0,0,26,1,0,3265,4804.701280,113,3,1990.936307,hint,lora,180 -on11,0,0,25,1,0,3068,4638.800000,113,2,1914.159795,hint,lora,180 -on2,0,0,26,1,0,1714,4682.000000,114,2,1932.927386,hint,lora,180 -on5,0,0,26,1,0,805,4786.600000,114,4,1978.527795,hint,lora,180 -on7,0,0,25,1,0,333,4501.200000,114,1,1848.272000,hint,lora,180 -on9,0,0,27,1,0,2430,5001.800000,114,4,2065.199181,hint,lora,180 -on6,0,0,28,1,0,1496,5105.203840,114,6,2118.609331,hint,lora,180 -on8,0,0,27,1,0,1164,4861.300000,114,3,1992.935590,hint,lora,180 -on11,0,0,32,1,0,2342,5923.701280,114,9,2498.902054,hint,lora,180 -on10,0,0,29,1,0,2061,5223.705120,114,6,2211.033434,hint,lora,180 -on3,0,0,25,1,0,432,4503.305120,114,1,1880.330048,hint,lora,180 -on1,0,0,27,1,0,1639,5031.600000,114,5,2102.078976,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,114,0,2089.440205,hint,lora,180 -on4,0,0,26,1,0,1000,4681.402560,114,2,1900.225024,hint,lora,180 -on1,0,0,25,1,0,678,4501.000000,115,1,1828.784000,hint,lora,180 -on4,0,0,25,1,0,335,4501.200000,115,1,1829.183795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,115,0,2060.640205,hint,lora,180 -on10,0,0,26,1,0,939,4682.801280,115,2,1976.672512,hint,lora,180 -on5,0,0,31,1,0,1865,5583.600000,115,7,2338.557952,hint,lora,180 -on2,0,0,28,1,0,1901,5042.901280,115,4,2138.023898,hint,lora,180 -on8,0,0,29,1,0,1903,5222.705120,115,5,2169.497638,hint,lora,180 -on11,0,0,25,1,0,39,4502.601280,115,1,1877.360717,hint,lora,180 -on6,0,0,25,1,0,683,4502.300000,115,1,1863.607590,hint,lora,180 -on3,0,0,25,1,0,1862,4501.600000,115,1,1875.615590,hint,lora,180 -on9,0,0,28,1,0,1516,5043.006400,115,4,2077.778560,hint,lora,180 -on7,0,0,26,1,0,826,4682.501280,115,2,1944.408512,hint,lora,180 -on4,0,0,30,1,0,1682,5620.503840,116,8,2395.401536,hint,lora,180 -on8,0,0,29,1,0,2179,5223.498720,116,6,2173.238464,hint,lora,180 -on5,0,0,25,1,0,557,4501.300000,116,1,1853.192000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,116,0,2128.000205,hint,lora,180 -on2,0,0,27,1,0,701,4863.793600,116,3,2022.797235,hint,lora,180 -on1,0,0,30,1,0,2114,5567.201280,116,7,2370.912102,hint,lora,180 -on11,0,0,26,1,0,1175,4681.600000,116,2,1933.023795,hint,lora,180 -on6,0,0,26,1,0,675,4790.600000,116,3,2050.319795,hint,lora,180 -on3,0,0,28,1,0,1430,5045.606400,116,5,2149.874150,hint,lora,180 -on10,0,0,29,1,0,2439,5222.702560,116,5,2232.776410,hint,lora,180 -on7,0,0,29,1,0,2102,5222.001280,116,6,2205.231488,hint,lora,180 -on9,0,0,24,1,0,92,4356.000000,116,1,1802.848205,hint,lora,180 -on8,0,0,27,1,0,1762,4862.500000,117,3,2073.511181,hint,lora,180 -on11,0,0,26,1,0,1272,4682.200000,117,2,1912.143590,hint,lora,180 -on5,0,0,25,1,0,2286,4501.000000,117,1,1828.943795,hint,lora,180 -on2,0,0,26,1,0,777,4681.200000,117,2,1943.535590,hint,lora,180 -on4,0,0,27,1,0,2745,4863.100000,117,3,2045.479590,hint,lora,180 -on1,0,0,25,1,0,882,4501.000000,117,1,1829.103795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,117,0,2152.800205,hint,lora,180 -on10,0,0,25,1,0,1750,4501.600000,117,1,1855.424000,hint,lora,180 -on3,0,0,27,1,0,2085,4862.900000,117,3,2060.262566,hint,lora,180 -on9,0,0,27,1,0,1703,4863.000000,117,3,2005.583590,hint,lora,180 -on6,0,0,24,1,0,1023,4350.200000,117,1,1776.831590,hint,lora,180 -on7,0,0,31,1,0,2840,5584.002560,117,7,2342.256205,hint,lora,180 -on2,0,0,26,1,0,1007,4682.000000,118,2,1929.824000,hint,lora,180 -on6,0,0,28,1,0,2475,5041.900000,118,4,2058.422976,hint,lora,180 -on4,0,0,32,1,0,2250,5763.500000,118,8,2441.445542,hint,lora,180 -on10,0,0,32,1,0,2636,5763.700000,118,8,2408.886362,hint,lora,180 -on8,0,0,25,1,0,827,4608.000000,118,2,1888.800000,hint,lora,180 -on11,0,0,26,1,0,377,4682.600000,118,2,1930.288205,hint,lora,180 -on9,0,0,27,1,0,1559,5039.303840,118,4,2083.017536,hint,lora,180 -on7,0,0,27,1,0,1709,4861.300000,118,3,1979.559386,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,118,0,2072.800205,hint,lora,180 -on5,0,0,25,1,0,1102,4581.300000,118,3,1876.743795,hint,lora,180 -on1,0,0,31,1,0,1743,5584.602560,118,7,2406.112000,hint,lora,180 -on3,0,0,25,1,0,396,4503.000000,118,1,1872.960410,hint,lora,180 -on4,0,0,26,1,0,2233,4682.503840,119,2,2025.306150,hint,lora,180 -on8,0,0,24,1,0,2765,4454.200000,119,1,1864.687795,hint,lora,180 -on2,0,0,25,1,0,999,4502.000000,119,1,1844.543795,hint,lora,180 -on9,0,0,26,1,0,1464,4680.001280,119,2,1911.792512,hint,lora,180 -on5,0,0,24,1,0,2750,4345.001280,119,1,1812.880512,hint,lora,180 -on6,0,0,24,0,0,4180,4320.000000,119,0,1750.560000,hint,lora,180 -on7,0,0,24,0,0,4003,4320.000000,119,0,1845.760000,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,119,0,2282.880000,hint,lora,180 -on11,0,0,26,1,0,3788,4736.998720,119,3,1926.495078,hint,lora,180 -on10,0,0,25,1,0,3064,4502.200000,119,1,1895.744000,hint,lora,180 -on3,0,0,24,0,0,4216,4320.000000,119,0,1755.680000,hint,lora,180 -on1,0,0,26,1,0,3318,4681.600000,119,2,1941.535590,hint,lora,180 -on2,0,0,27,1,0,2496,4862.801280,120,3,2052.592102,hint,lora,180 -on11,0,0,30,1,0,3059,5403.602560,120,6,2313.280205,hint,lora,180 -on10,0,0,24,1,0,1734,4322.000000,120,0,1796.351795,hint,lora,180 -on5,0,0,25,1,0,2380,4682.300000,120,2,1974.583795,hint,lora,180 -on8,0,0,25,1,0,3121,4503.600000,120,2,1931.695795,hint,lora,180 -on7,0,0,25,1,0,1703,4500.206400,120,1,1828.882765,hint,lora,180 -on9,0,0,25,1,0,2158,4501.000000,120,1,1876.816000,hint,lora,180 -on3,0,0,28,1,0,3090,5207.200000,120,6,2279.534771,hint,lora,180 -on1,0,0,24,1,0,1347,4323.000000,120,0,1822.767795,hint,lora,180 -on6,0,0,26,1,0,2802,4716.800000,120,5,1947.823590,hint,lora,180 -on4,0,0,29,1,0,2990,5382.801280,120,6,2291.199488,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,120,0,2211.040205,hint,lora,180 -on8,0,0,25,1,0,743,4502.001280,121,1,1877.825126,hint,lora,180 -on11,0,0,29,1,0,3115,5222.202560,121,5,2209.680614,hint,lora,180 -on1,0,0,32,1,0,2994,5763.001280,121,10,2427.023488,hint,lora,180 -on2,0,0,28,1,0,2559,5045.197440,121,4,2102.558566,hint,lora,180 -on3,0,0,26,1,0,2281,4696.301280,121,3,1968.119693,hint,lora,180 -on7,0,0,27,1,0,1508,4861.900000,121,3,2022.744000,hint,lora,180 -on10,0,0,29,1,0,2068,5222.500000,121,5,2153.143795,hint,lora,180 -on6,0,0,24,1,0,297,4322.996160,121,0,1814.862874,hint,lora,180 -on5,0,0,25,1,0,1411,4501.996160,121,1,1829.182669,hint,lora,180 -on9,0,0,31,1,0,4512,5639.400000,121,8,2360.863181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,121,0,2283.040000,hint,lora,180 -on4,0,0,30,1,0,2357,5403.301280,121,6,2229.960512,hint,lora,180 -on4,0,0,26,0,0,4426,4680.300000,122,2,1902.359386,hint,lora,180 -on2,0,0,25,1,0,1230,4503.000000,122,1,1858.224410,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,122,0,2244.960000,hint,lora,180 -on7,0,0,26,1,0,1163,4682.500000,122,3,1912.583795,hint,lora,180 -on5,0,0,27,1,0,1739,4864.400000,122,3,2102.495795,hint,lora,180 -on1,0,0,24,0,0,4249,4320.000000,122,0,1756.800000,hint,lora,180 -on9,0,0,26,1,0,655,4682.003840,122,2,1940.114150,hint,lora,180 -on10,0,0,25,1,0,464,4503.000000,122,1,1863.824410,hint,lora,180 -on11,0,0,31,1,0,2340,5584.006400,122,7,2386.770355,hint,lora,180 -on3,0,0,24,1,0,360,4324.998720,122,0,1815.983488,hint,lora,180 -on8,0,0,28,1,0,1792,5044.300000,122,4,2113.191386,hint,lora,180 -on6,0,0,26,1,0,1704,4681.000000,122,2,1901.568000,hint,lora,180 -on8,0,0,24,0,0,4277,4320.000000,123,0,1735.360000,hint,lora,180 -on11,0,0,25,1,0,3598,4500.301280,123,1,1849.080307,hint,lora,180 -on3,0,0,24,0,0,4229,4320.000000,123,0,1756.800000,hint,lora,180 -on2,0,0,24,1,0,918,4324.996160,123,0,1784.206874,hint,lora,180 -on7,0,0,25,1,0,2634,4501.000000,123,1,1829.040000,hint,lora,180 -on1,0,0,28,1,0,3469,5172.700000,123,5,2171.047386,hint,lora,180 -on9,0,0,26,1,0,1017,4680.998720,123,2,1924.351693,hint,lora,180 -on5,0,0,24,1,0,2355,4322.000000,123,0,1762.944000,hint,lora,180 -on6,0,0,26,1,0,2860,4683.502560,123,2,1943.448819,hint,lora,180 -on4,0,0,26,1,0,2752,4682.901280,123,2,1998.567898,hint,lora,180 -on10,0,0,24,1,0,1271,4322.996160,123,0,1778.478464,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,123,0,2225.440000,hint,lora,180 -on1,0,0,26,1,0,746,4786.000000,124,3,1974.207590,hint,lora,180 -on2,0,0,24,1,0,329,4422.001280,124,1,1813.344717,hint,lora,180 -on11,0,0,32,1,0,1929,5764.902560,124,8,2440.519386,hint,lora,180 -on5,0,0,28,1,0,1529,5043.898720,124,4,2123.062464,hint,lora,180 -on10,0,0,27,1,0,908,4862.600000,124,3,2007.983590,hint,lora,180 -on9,0,0,26,1,0,1634,4680.006400,124,2,1904.370560,hint,lora,180 -on6,0,0,27,1,0,1202,4864.103840,124,3,2044.425126,hint,lora,180 -on8,0,0,24,1,0,0,4321.000000,124,0,1754.384205,hint,lora,180 -on3,0,0,27,1,0,2667,5177.800000,124,6,2185.711386,hint,lora,180 -on7,0,0,28,1,0,1097,5043.600000,124,4,2135.247795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,124,0,2154.560205,hint,lora,180 -on4,0,0,24,1,0,113,4420.201280,124,1,1874.592922,hint,lora,180 -on6,0,0,25,1,0,864,4502.300000,125,1,1881.880000,hint,lora,180 -on2,0,0,28,1,0,1246,5043.596160,125,4,2134.717645,hint,lora,180 -on8,0,0,29,1,0,1831,5314.102560,125,6,2250.952410,hint,lora,180 -on3,0,0,25,1,0,834,4502.000000,125,1,1829.648000,hint,lora,180 -on7,0,0,25,1,0,245,4502.997440,125,1,1832.831590,hint,lora,180 -on9,0,0,26,1,0,2006,4682.600000,125,2,1950.543795,hint,lora,180 -on5,0,0,26,1,0,1582,4682.596160,125,2,1919.662259,hint,lora,180 -on1,0,0,26,1,0,2044,4681.500000,125,3,1934.199590,hint,lora,180 -on10,0,0,25,1,0,672,4500.997440,125,1,1825.999181,hint,lora,180 -on11,0,0,26,1,0,455,4682.200000,125,2,1909.807795,hint,lora,180 -on4,0,0,31,1,0,1723,5584.503840,125,7,2384.680922,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,125,0,2099.200205,hint,lora,180 -on9,0,0,26,1,0,1193,4682.493600,126,2,1937.205850,hint,lora,180 -on11,0,0,28,1,0,2497,5062.602560,126,5,2155.456205,hint,lora,180 -on8,0,0,29,1,0,2740,5223.100000,126,6,2244.822566,hint,lora,180 -on10,0,0,27,1,0,2117,4998.500000,126,4,2103.207181,hint,lora,180 -on1,0,0,29,1,0,2380,5224.800000,126,5,2265.550566,hint,lora,180 -on7,0,0,27,1,0,1313,4863.300000,126,4,2048.343795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,126,0,2124.000205,hint,lora,180 -on6,0,0,24,1,0,1761,4321.000000,126,0,1763.440000,hint,lora,180 -on3,0,0,24,1,0,370,4321.993600,126,0,1754.397850,hint,lora,180 -on2,0,0,27,1,0,1486,4862.502560,126,3,2030.120819,hint,lora,180 -on5,0,0,28,1,0,1950,5044.294880,126,4,2101.140928,hint,lora,180 -on4,0,0,27,1,0,2075,4862.402560,126,3,2032.529024,hint,lora,180 -on4,0,0,24,1,0,0,4322.000000,127,0,1771.007795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,127,0,2190.816205,hint,lora,180 -on9,0,0,28,1,0,2906,5090.303840,127,5,2135.256922,hint,lora,180 -on8,0,0,27,1,0,1621,4915.801280,127,5,2038.624102,hint,lora,180 -on11,0,0,27,1,0,2854,4991.800000,127,4,2177.871386,hint,lora,180 -on10,0,0,25,1,0,260,4502.000000,127,1,1838.463795,hint,lora,180 -on2,0,0,26,1,0,564,4683.602560,127,2,1934.929024,hint,lora,180 -on1,0,0,25,1,0,976,4502.300000,127,1,1867.415795,hint,lora,180 -on7,0,0,24,1,0,1560,4334.402560,127,1,1762.561229,hint,lora,180 -on3,0,0,28,1,0,3425,5042.800000,127,4,2141.775590,hint,lora,180 -on5,0,0,26,1,0,3084,4682.300000,127,2,1934.151590,hint,lora,180 -on6,0,0,25,1,0,1296,4501.000000,127,1,1849.263795,hint,lora,180 -on1,0,0,26,1,0,2368,4683.198720,128,2,1933.151078,hint,lora,180 -on7,0,0,27,1,0,2417,4861.505120,128,3,1996.969638,hint,lora,180 -on11,0,0,28,1,0,2911,5043.700000,128,4,2141.751181,hint,lora,180 -on6,0,0,25,1,0,3965,4502.000000,128,1,1915.840000,hint,lora,180 -on3,0,0,24,1,0,1779,4322.000000,128,0,1792.864410,hint,lora,180 -on8,0,0,26,1,0,3035,4682.301280,128,2,1985.512512,hint,lora,180 -on5,0,0,25,1,0,2124,4501.000000,128,1,1828.943795,hint,lora,180 -on4,0,0,26,1,0,2832,4691.500000,128,3,1978.167181,hint,lora,180 -on9,0,0,25,1,0,2393,4502.298720,128,1,1839.671488,hint,lora,180 -on10,0,0,24,1,0,462,4349.001280,128,1,1777.200717,hint,lora,180 -on2,0,0,24,1,0,903,4322.998720,128,0,1774.319693,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,128,0,2296.320205,hint,lora,180 -on1,0,0,27,1,0,919,4861.502560,129,3,1976.648819,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,129,0,2070.400205,hint,lora,180 -on4,0,0,26,1,0,1252,4682.200000,129,2,1933.263386,hint,lora,180 -on7,0,0,30,1,0,1664,5402.800000,129,6,2297.277952,hint,lora,180 -on11,0,0,26,1,0,1020,4683.798720,129,2,1978.654874,hint,lora,180 -on6,0,0,27,1,0,520,4863.502560,129,3,2051.433024,hint,lora,180 -on3,0,0,25,1,0,1905,4501.200000,129,1,1836.703795,hint,lora,180 -on10,0,0,24,1,0,16,4321.000000,129,0,1754.543795,hint,lora,180 -on5,0,0,26,1,0,1917,4682.300000,129,2,1958.631590,hint,lora,180 -on8,0,0,28,1,0,1193,5043.597440,129,4,2081.278362,hint,lora,180 -on2,0,0,28,1,0,1759,5043.397440,129,4,2137.678566,hint,lora,180 -on9,0,0,25,1,0,498,4502.000000,129,1,1830.448000,hint,lora,180 -on8,0,0,26,1,0,690,4681.300000,130,2,1914.392000,hint,lora,180 -on3,0,0,25,1,0,1187,4501.597440,130,1,1828.206566,hint,lora,180 -on11,0,0,27,1,0,2110,4863.200000,130,3,2057.822976,hint,lora,180 -on9,0,0,26,1,0,982,4703.300000,130,3,1945.110976,hint,lora,180 -on7,0,0,34,1,0,2624,6124.705120,130,11,2642.760819,hint,lora,180 -on6,0,0,26,1,0,814,4682.500000,130,2,1920.359590,hint,lora,180 -on10,0,0,26,1,0,1119,4820.794880,130,3,1987.405542,hint,lora,180 -on4,0,0,24,1,0,1457,4456.003840,130,1,1810.945536,hint,lora,180 -on5,0,0,23,1,0,1613,4414.200000,130,1,1833.200000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,130,0,2112.480205,hint,lora,180 -on1,0,0,26,1,0,2134,4681.200000,130,2,1904.479590,hint,lora,180 -on2,0,0,28,1,0,1456,5044.100000,130,4,2162.391181,hint,lora,180 -on4,0,0,26,1,0,2103,4836.597440,131,3,2072.142976,hint,lora,180 -on7,0,0,30,1,0,1780,5403.898720,131,6,2276.630874,hint,lora,180 -on1,0,0,28,1,0,1059,5044.103840,131,4,2114.169331,hint,lora,180 -on3,0,0,25,1,0,2094,4502.000000,131,1,1857.727795,hint,lora,180 -on5,0,0,26,1,0,2469,4683.998720,131,2,1966.847078,hint,lora,180 -on11,0,0,28,0,0,4419,5104.302560,131,5,2129.191795,hint,lora,180 -on8,0,0,25,1,0,276,4502.000000,131,1,1842.992410,hint,lora,180 -on9,0,0,26,1,0,1967,4683.003840,131,2,1955.041946,hint,lora,180 -on6,0,0,27,1,0,1225,4886.502560,131,4,2014.312614,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,131,0,2263.040000,hint,lora,180 -on2,0,0,26,1,0,654,4685.300000,131,2,1997.992410,hint,lora,180 -on10,0,0,25,1,0,664,4587.500000,131,2,1892.183795,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,132,0,2253.280000,hint,lora,180 -on4,0,0,31,1,0,1859,5584.902560,132,7,2432.312205,hint,lora,180 -on5,0,0,30,1,0,1982,5528.497440,132,7,2294.534157,hint,lora,180 -on9,0,0,24,1,0,676,4358.002560,132,1,1771.681229,hint,lora,180 -on11,0,0,27,1,0,1514,4941.600000,132,4,2040.447795,hint,lora,180 -on7,0,0,27,0,0,4284,4860.800000,132,3,2015.695386,hint,lora,180 -on2,0,0,32,1,0,2575,5763.801280,132,8,2385.518669,hint,lora,180 -on6,0,0,27,1,0,1183,4866.596160,132,3,2084.350464,hint,lora,180 -on10,0,0,27,1,0,1767,4947.602560,132,5,2091.632819,hint,lora,180 -on1,0,0,27,1,0,1003,4861.900000,132,3,1982.840205,hint,lora,180 -on3,0,0,31,1,0,2487,5583.401280,132,7,2444.895078,hint,lora,180 -on8,0,0,27,1,0,1744,4863.300000,132,3,2037.959386,hint,lora,180 -on1,0,0,27,1,0,1235,4862.500000,133,4,2055.799386,hint,lora,180 -on10,0,0,25,1,0,701,4501.003840,133,3,1852.177331,hint,lora,180 -on5,0,0,25,1,0,1980,4560.500000,133,2,1946.648614,hint,lora,180 -on8,0,0,26,1,0,1107,4681.300000,133,2,1904.199795,hint,lora,180 -on7,0,0,25,1,0,518,4503.998720,133,1,1863.423283,hint,lora,180 -on3,0,0,26,1,0,1392,4787.700000,133,3,1992.039795,hint,lora,180 -on4,0,0,27,0,0,4653,4860.800000,133,3,1953.967181,hint,lora,180 -on11,0,0,27,1,0,1762,4862.900000,133,3,2032.359590,hint,lora,180 -on6,0,0,25,1,0,302,4503.005120,133,2,1873.922253,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,133,0,2202.240000,hint,lora,180 -on9,0,0,30,1,0,2003,5403.601280,133,6,2258.815693,hint,lora,180 -on2,0,0,26,1,0,757,4682.400000,133,2,1918.991590,hint,lora,180 -on10,0,0,26,0,0,4479,4680.300000,134,2,1883.159386,hint,lora,180 -on7,0,0,26,1,0,3084,4681.298720,134,2,1902.247488,hint,lora,180 -on1,0,0,28,1,0,2611,5064.603840,134,5,2172.033741,hint,lora,180 -on11,0,0,25,1,0,1475,4502.000000,134,1,1898.032000,hint,lora,180 -on6,0,0,24,1,0,720,4320.001280,134,0,1753.600717,hint,lora,180 -on9,0,0,24,0,0,3873,4320.000000,134,1,1798.240000,hint,lora,180 -on5,0,0,26,1,0,2045,4748.800000,134,3,2008.960000,hint,lora,180 -on3,0,0,25,0,0,4235,4500.000000,134,1,1832.367795,hint,lora,180 -on8,0,0,26,0,0,4623,4738.001280,134,3,1906.448512,hint,lora,180 -on4,0,0,26,0,0,4369,4805.900000,134,3,1969.559386,hint,lora,180 -on2,0,0,27,1,0,4089,4860.300000,134,3,2047.111795,hint,lora,180 -on0,1,6,24,0,0,0,4320.000000,134,0,2214.080000,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,135,0,2263.200000,hint,lora,180 -on6,0,0,28,1,0,1570,5147.003840,135,6,2121.521331,hint,lora,180 -on11,0,0,24,0,0,4319,4320.000000,135,0,1728.320000,hint,lora,180 -on3,0,0,24,0,0,4301,4320.000000,135,0,1755.199590,hint,lora,180 -on2,0,0,28,1,0,1507,5044.401280,135,4,2136.640717,hint,lora,180 -on5,0,0,25,1,0,676,4503.997440,135,1,1858.783181,hint,lora,180 -on7,0,0,25,1,0,788,4503.298720,135,1,1870.503283,hint,lora,180 -on10,0,0,27,1,0,1631,4865.300000,135,3,2082.823590,hint,lora,180 -on1,0,0,28,1,0,1944,5043.601280,135,4,2118.032512,hint,lora,180 -on8,0,0,26,1,0,759,4681.000000,135,2,1913.103590,hint,lora,180 -on9,0,0,26,1,0,1031,4684.800000,135,2,1966.799795,hint,lora,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,hint,lora,180 -on5,0,0,28,1,0,1713,5126.502560,136,5,2167.304819,hint,lora,180 -on6,0,0,25,1,0,737,4504.300000,136,1,1914.040205,hint,lora,180 -on2,0,0,25,1,0,466,4502.000000,136,1,1832.224000,hint,lora,180 -on11,0,0,27,1,0,784,4861.800000,136,3,2000.063795,hint,lora,180 -on10,0,0,25,1,0,1187,4679.303840,136,3,1909.865331,hint,lora,180 -on8,0,0,26,1,0,1189,4681.900000,136,2,1958.535590,hint,lora,180 -on3,0,0,32,1,0,2674,5911.900000,136,9,2444.149338,hint,lora,180 -on1,0,0,23,1,0,214,4253.000000,136,0,1726.800205,hint,lora,180 -on4,0,0,32,1,0,2335,5763.905120,136,8,2424.889434,hint,lora,180 -on9,0,0,30,1,0,2200,5499.002560,136,7,2361.968000,hint,lora,180 -on7,0,0,28,1,0,1824,5044.100000,136,4,2118.151181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,136,0,2095.360205,hint,lora,180 -on1,0,0,28,1,0,2375,5044.300000,137,4,2119.398976,hint,lora,180 -on9,0,0,30,1,0,2712,5402.200000,137,6,2258.798362,hint,lora,180 -on8,0,0,27,1,0,1854,4861.300000,137,3,1979.399181,hint,lora,180 -on6,0,0,26,1,0,939,4682.202560,137,2,1918.593229,hint,lora,180 -on7,0,0,28,1,0,1459,5043.200000,137,4,2105.071181,hint,lora,180 -on3,0,0,26,1,0,1176,4682.300000,137,2,1933.239795,hint,lora,180 -on5,0,0,29,1,0,1915,5245.901280,137,7,2177.511283,hint,lora,180 -on10,0,0,28,1,0,1295,5042.200000,137,4,2136.911386,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,137,0,2120.320205,hint,lora,180 -on11,0,0,29,1,0,2515,5224.501280,137,5,2250.167488,hint,lora,180 -on4,0,0,29,1,0,2158,5225.698720,137,5,2214.647283,hint,lora,180 -on2,0,0,24,1,0,707,4556.206400,137,2,1897.618970,hint,lora,180 -on10,0,0,24,0,0,4179,4320.000000,138,0,1750.880000,hint,lora,180 -on7,0,0,26,1,0,2810,4790.294880,138,5,2032.005542,hint,lora,180 -on5,0,0,26,1,0,3050,4693.500000,138,4,1996.919590,hint,lora,180 -on1,0,0,28,1,0,2820,5041.000000,138,4,2078.415795,hint,lora,180 -on8,0,0,25,1,0,1093,4500.001280,138,1,1861.280717,hint,lora,180 -on4,0,0,25,1,0,2318,4505.206400,138,1,1909.250560,hint,lora,180 -on3,0,0,29,1,0,2732,5297.702560,138,6,2213.304819,hint,lora,180 -on9,0,0,29,1,0,3735,5222.401280,138,5,2223.695693,hint,lora,180 -on2,0,0,30,0,0,4302,5402.201280,138,6,2303.199283,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,138,0,2291.360000,hint,lora,180 -on11,0,0,24,0,0,4174,4320.000000,138,0,1775.520000,hint,lora,180 -on6,0,0,27,1,0,3442,4862.000000,138,4,1995.679181,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,139,0,2274.880000,hint,lora,180 -on3,0,0,31,1,0,2872,5677.602560,139,8,2467.215795,hint,lora,180 -on1,0,0,29,1,0,2428,5224.101280,139,5,2194.007283,hint,lora,180 -on7,0,0,27,1,0,2395,4887.800000,139,4,2070.335386,hint,lora,180 -on2,0,0,26,1,0,2231,4683.801280,139,3,1990.096102,hint,lora,180 -on9,0,0,25,1,0,1379,4505.002560,139,1,1885.745434,hint,lora,180 -on5,0,0,26,1,0,3312,4681.998720,139,2,1969.599283,hint,lora,180 -on10,0,0,26,1,0,1703,4682.998720,139,2,1935.983693,hint,lora,180 -on4,0,0,28,1,0,2167,5043.205120,139,4,2106.466253,hint,lora,180 -on11,0,0,25,1,0,1709,4501.000000,139,1,1828.784000,hint,lora,180 -on6,0,0,25,1,0,1157,4502.998720,139,1,1872.047488,hint,lora,180 -on8,0,0,25,0,0,4345,4500.300000,139,1,1808.807590,hint,lora,180 -on5,0,0,24,1,0,525,4495.000000,140,1,1902.384410,hint,lora,180 -on10,0,0,28,1,0,1830,5044.001280,140,4,2116.416512,hint,lora,180 -on8,0,0,28,1,0,1640,5042.801280,140,4,2095.776102,hint,lora,180 -on7,0,0,25,1,0,846,4538.200000,140,2,1887.760410,hint,lora,180 -on11,0,0,27,1,0,3083,4860.502560,140,3,2012.409024,hint,lora,180 -on2,0,0,30,1,0,2734,5449.100000,140,7,2239.271181,hint,lora,180 -on1,0,0,29,1,0,2183,5223.501280,140,5,2296.774874,hint,lora,180 -on3,0,0,29,1,0,1466,5224.098720,140,6,2166.919078,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,140,0,2319.520000,hint,lora,180 -on6,0,0,24,0,0,4229,4320.000000,140,0,1742.720000,hint,lora,180 -on9,0,0,28,1,0,1056,5044.701280,140,4,2114.888307,hint,lora,180 -on4,0,0,31,1,0,2345,5638.103840,140,8,2408.280512,hint,lora,180 -on3,0,0,28,1,0,1692,5042.401280,141,4,2054.991488,hint,lora,180 -on6,0,0,26,1,0,515,4684.201280,141,2,2003.616307,hint,lora,180 -on10,0,0,32,1,0,2347,5763.702560,141,8,2457.095795,hint,lora,180 -on2,0,0,25,1,0,856,4501.200000,141,1,1828.960000,hint,lora,180 -on9,0,0,30,1,0,1569,5403.600000,141,6,2264.927590,hint,lora,180 -on7,0,0,31,1,0,2355,5692.000000,141,8,2355.006771,hint,lora,180 -on1,0,0,27,0,0,4437,4860.600000,141,3,1979.119386,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,141,0,2150.080000,hint,lora,180 -on8,0,0,28,1,0,1219,5043.701280,141,4,2118.552512,hint,lora,180 -on5,0,0,26,1,0,1181,4683.002560,141,2,1958.369229,hint,lora,180 -on4,0,0,31,1,0,2048,5585.000000,141,7,2327.502566,hint,lora,180 -on11,0,0,24,1,0,182,4331.298720,141,1,1801.399488,hint,lora,180 -on1,0,0,25,0,0,4276,4500.201280,142,1,1819.696512,hint,lora,180 -on6,0,0,25,1,0,2864,4501.700000,142,1,1880.919795,hint,lora,180 -on2,0,0,26,0,0,4473,4680.200000,142,2,1904.863795,hint,lora,180 -on4,0,0,26,1,0,3144,4682.801280,142,2,2010.912307,hint,lora,180 -on3,0,0,27,1,0,3371,4864.200000,142,3,2091.599386,hint,lora,180 -on9,0,0,27,1,0,3933,5013.100000,142,4,2110.776205,hint,lora,180 -on11,0,0,27,1,0,3623,4862.900000,142,3,2018.311590,hint,lora,180 -on10,0,0,24,1,0,900,4321.000000,142,0,1754.000410,hint,lora,180 -on5,0,0,27,0,0,4087,4860.300000,142,3,2061.239386,hint,lora,180 -on7,0,0,30,0,0,4542,5401.101280,142,6,2233.511488,hint,lora,180 -on0,1,7,24,0,0,0,4320.000000,142,0,2169.920000,hint,lora,180 -on8,0,0,30,1,0,3996,5402.601280,142,6,2324.719898,hint,lora,180 -on1,0,0,24,1,0,1467,4450.000000,143,1,1812.255590,hint,lora,180 -on7,0,0,25,1,0,2807,4502.000000,143,1,1880.480000,hint,lora,180 -on10,0,0,24,1,0,508,4399.001280,143,1,1813.536717,hint,lora,180 -on4,0,0,27,1,0,2789,4861.601280,143,3,2031.376307,hint,lora,180 -on9,0,0,26,1,0,2483,4681.600000,143,2,1959.295386,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,143,0,2152.000205,hint,lora,180 -on2,0,0,25,1,0,2293,4503.000000,143,1,1888.143590,hint,lora,180 -on3,0,0,25,1,0,1214,4502.301280,143,1,1895.128717,hint,lora,180 -on6,0,0,26,1,0,2042,4681.300000,143,2,1927.719386,hint,lora,180 -on8,0,0,25,1,0,834,4500.001280,143,1,1825.600717,hint,lora,180 -on11,0,0,25,1,0,1995,4503.300000,143,1,1924.167386,hint,lora,180 -on5,0,0,25,1,0,1610,4500.305120,143,2,1826.362253,hint,lora,180 -on6,0,0,24,1,0,2038,4458.200000,144,1,1817.167590,hint,lora,180 -on4,0,0,26,1,0,2560,4681.501280,144,2,1930.248512,hint,lora,180 -on8,0,0,28,1,0,2726,5091.000000,144,5,2164.574771,hint,lora,180 -on9,0,0,25,1,0,2279,4501.000000,144,1,1832.399795,hint,lora,180 -on3,0,0,25,1,0,2202,4502.200000,144,1,1886.767795,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,144,0,2151.840000,hint,lora,180 -on10,0,0,25,0,0,4126,4629.600000,144,2,1942.559590,hint,lora,180 -on7,0,0,24,1,0,1709,4321.003840,144,0,1771.825536,hint,lora,180 -on5,0,0,26,1,0,2705,4682.498720,144,2,1951.734874,hint,lora,180 -on1,0,0,31,1,0,3937,5582.402560,144,7,2348.192205,hint,lora,180 -on2,0,0,27,1,0,3305,4862.600000,144,3,2071.583795,hint,lora,180 -on11,0,0,24,1,0,3168,4421.000000,144,1,1852.880000,hint,lora,180 -on10,0,0,26,1,0,1625,4685.593600,145,2,1959.005440,hint,lora,180 -on3,0,0,31,1,0,3382,5739.401280,145,8,2501.983283,hint,lora,180 -on8,0,0,30,1,0,2126,5402.600000,145,7,2265.311181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,145,0,2280.480205,hint,lora,180 -on5,0,0,28,1,0,2673,5044.100000,145,5,2179.014976,hint,lora,180 -on1,0,0,25,1,0,1379,4502.000000,145,1,1915.424000,hint,lora,180 -on6,0,0,26,1,0,1717,4682.600000,145,3,1958.511795,hint,lora,180 -on4,0,0,27,1,0,3059,4865.301280,145,4,2034.280307,hint,lora,180 -on7,0,0,28,1,0,2201,5042.400000,145,4,2098.367181,hint,lora,180 -on11,0,0,24,1,0,1214,4322.000000,145,0,1786.527795,hint,lora,180 -on9,0,0,25,1,0,2462,4503.300000,145,1,1870.247795,hint,lora,180 -on2,0,0,32,1,0,3224,5764.100000,145,8,2450.934157,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,146,0,2188.160000,hint,lora,180 -on5,0,0,33,1,0,3171,6136.802560,146,11,2591.935386,hint,lora,180 -on4,0,0,27,1,0,1389,4863.500000,146,3,2033.831795,hint,lora,180 -on10,0,0,25,1,0,833,4503.303840,146,1,1866.025741,hint,lora,180 -on6,0,0,31,1,0,2340,5691.901280,146,8,2475.079488,hint,lora,180 -on7,0,0,26,1,0,1120,4683.001280,146,2,1936.240717,hint,lora,180 -on1,0,0,27,0,0,4457,4860.800000,146,4,1967.727386,hint,lora,180 -on11,0,0,30,1,0,2671,5403.500000,146,6,2268.086362,hint,lora,180 -on8,0,0,28,1,0,1927,5209.605120,146,5,2202.385843,hint,lora,180 -on9,0,0,30,1,0,1836,5406.597440,146,6,2331.806976,hint,lora,180 -on3,0,0,27,1,0,1616,4950.805120,146,4,2069.906048,hint,lora,180 -on2,0,0,30,1,0,2238,5406.001280,146,6,2328.415898,hint,lora,180 -on4,0,0,24,1,0,2857,4320.001280,147,0,1758.880717,hint,lora,180 -on5,0,0,24,0,0,4176,4320.000000,147,0,1751.200000,hint,lora,180 -on10,0,0,24,0,0,4320,4320.000000,147,0,1728.000000,hint,lora,180 -on1,0,0,24,0,0,4243,4320.000000,147,0,1756.800000,hint,lora,180 -on9,0,0,25,1,0,3544,4500.301280,147,1,1892.392717,hint,lora,180 -on6,0,0,24,0,0,4313,4320.000000,147,0,1729.280000,hint,lora,180 -on7,0,0,24,0,0,4072,4320.000000,147,0,1778.560000,hint,lora,180 -on2,0,0,24,1,0,1680,4321.002560,147,0,1811.601638,hint,lora,180 -on8,0,0,24,0,0,4300,4320.000000,147,0,1731.360000,hint,lora,180 -on3,0,0,24,0,0,4193,4320.000000,147,0,1760.000000,hint,lora,180 -on11,0,0,25,0,0,4118,4500.000000,147,1,1864.432000,hint,lora,180 -on0,1,3,24,0,0,0,4320.000000,147,0,2123.680000,hint,lora,180 -on1,0,0,24,0,0,4246,4320.000000,148,0,1740.160000,hint,lora,180 -on11,0,0,27,1,0,2225,4862.802560,148,3,2123.841024,hint,lora,180 -on4,0,0,25,1,0,302,4504.998720,148,1,1858.064307,hint,lora,180 -on10,0,0,25,1,0,514,4547.400000,148,2,1871.759795,hint,lora,180 -on8,0,0,24,1,0,2,4322.997440,148,0,1786.222976,hint,lora,180 -on3,0,0,25,1,0,156,4502.000000,148,1,1855.327590,hint,lora,180 -on6,0,0,26,1,0,861,4682.401280,148,2,1926.864307,hint,lora,180 -on5,0,0,27,1,0,1182,4863.900000,148,3,2053.688000,hint,lora,180 -on7,0,0,26,1,0,956,4800.800000,148,3,2015.984410,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,148,0,2229.600000,hint,lora,180 -on9,0,0,26,1,0,2719,4680.601280,148,2,1943.120512,hint,lora,180 -on2,0,0,25,0,0,3995,4620.300000,148,2,1937.832000,hint,lora,180 -on4,0,0,25,1,0,2056,4502.394880,149,1,1854.174157,hint,lora,180 -on2,0,0,29,1,0,3457,5223.500000,149,5,2215.926976,hint,lora,180 -on6,0,0,26,1,0,2400,4683.500000,149,3,1966.071590,hint,lora,180 -on1,0,0,24,1,0,920,4473.300000,149,1,1869.832000,hint,lora,180 -on3,0,0,27,1,0,2743,4919.000000,149,4,2098.271181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,149,0,2185.600205,hint,lora,180 -on10,0,0,32,1,0,3132,5895.806400,149,9,2494.594150,hint,lora,180 -on7,0,0,24,1,0,18,4321.005120,149,0,1782.386458,hint,lora,180 -on9,0,0,28,1,0,2713,5097.301280,149,5,2168.039078,hint,lora,180 -on5,0,0,28,1,0,1699,5042.801280,149,5,2078.448307,hint,lora,180 -on8,0,0,27,1,0,2018,4862.600000,149,3,2047.888000,hint,lora,180 -on11,0,0,28,1,0,2565,5043.796160,149,5,2083.821645,hint,lora,180 -on1,0,0,31,1,0,2293,5583.100000,150,7,2361.126771,hint,lora,180 -on10,0,0,26,1,0,1030,4682.298720,150,2,1924.439283,hint,lora,180 -on7,0,0,25,1,0,1915,4501.200000,150,1,1829.183795,hint,lora,180 -on5,0,0,24,1,0,19,4320.998720,150,0,1753.999693,hint,lora,180 -on2,0,0,25,1,0,807,4502.402560,150,1,1841.393229,hint,lora,180 -on6,0,0,26,1,0,1286,4684.198720,150,2,2007.759488,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,150,0,2168.960000,hint,lora,180 -on8,0,0,24,0,0,4158,4320.000000,150,0,1773.760000,hint,lora,180 -on11,0,0,24,1,0,1611,4321.000000,150,0,1758.703795,hint,lora,180 -on3,0,0,27,1,0,2136,4861.601280,150,3,2043.360102,hint,lora,180 -on9,0,0,27,0,0,4363,4860.801280,150,3,2001.808102,hint,lora,180 -on4,0,0,28,1,0,1077,5043.205120,150,4,2136.290048,hint,lora,180 -on7,0,0,25,1,0,760,4621.606400,151,2,1897.058970,hint,lora,180 -on8,0,0,28,1,0,1881,5161.902560,151,6,2180.504819,hint,lora,180 -on11,0,0,28,1,0,2276,5046.897440,151,4,2142.630566,hint,lora,180 -on6,0,0,29,1,0,1492,5223.002560,151,5,2225.392205,hint,lora,180 -on3,0,0,25,1,0,655,4502.201280,151,1,1858.160717,hint,lora,180 -on5,0,0,28,1,0,3794,5063.201280,151,5,2118.064307,hint,lora,180 -on10,0,0,28,1,0,2591,5045.302560,151,4,2177.336000,hint,lora,180 -on9,0,0,26,1,0,1371,4683.298720,151,2,1951.271693,hint,lora,180 -on2,0,0,27,1,0,4258,4866.600000,151,5,2012.174976,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,151,0,2312.160000,hint,lora,180 -on1,0,0,25,1,0,1254,4539.301280,151,2,1855.464512,hint,lora,180 -on4,0,0,33,1,0,2641,5946.002560,151,9,2576.079795,hint,lora,180 -on1,0,0,26,1,0,1045,4682.000000,152,2,1934.880000,hint,lora,180 -on9,0,0,24,1,0,559,4451.001280,152,1,1834.976717,hint,lora,180 -on8,0,0,24,1,0,91,4352.000000,152,1,1814.463795,hint,lora,180 -on11,0,0,30,1,0,3587,5404.100000,152,7,2302.518976,hint,lora,180 -on10,0,0,28,1,0,1334,5041.000000,152,4,2044.784000,hint,lora,180 -on7,0,0,32,1,0,2371,5766.198720,152,8,2406.399283,hint,lora,180 -on2,0,0,28,1,0,3436,5042.300000,152,5,2142.950566,hint,lora,180 -on5,0,0,30,1,0,1533,5404.301280,152,6,2321.318874,hint,lora,180 -on3,0,0,27,1,0,1428,4916.396160,152,4,2064.925645,hint,lora,180 -on4,0,0,25,1,0,283,4503.298720,152,1,1870.407488,hint,lora,180 -on6,0,0,26,1,0,852,4682.000000,152,2,1929.824000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,152,0,2193.920205,hint,lora,180 -on1,0,0,26,1,0,2142,4682.600000,153,2,1943.295795,hint,lora,180 -on10,0,0,28,1,0,2717,5043.400000,153,4,2075.007386,hint,lora,180 -on8,0,0,28,1,0,2277,5043.800000,153,4,2150.607386,hint,lora,180 -on9,0,0,30,1,0,3166,5403.100000,153,6,2311.958771,hint,lora,180 -on11,0,0,24,1,0,1525,4458.003840,153,1,1843.537331,hint,lora,180 -on7,0,0,28,1,0,2799,5043.000000,153,4,2170.990771,hint,lora,180 -on4,0,0,24,1,0,952,4418.991040,153,1,1855.020826,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,153,0,2189.440205,hint,lora,180 -on6,0,0,26,1,0,1946,4683.600000,153,2,1964.015795,hint,lora,180 -on2,0,0,24,1,0,2661,4393.900000,153,3,1907.607386,hint,lora,180 -on5,0,0,25,1,0,1106,4501.001280,153,1,1874.864922,hint,lora,180 -on3,0,0,25,1,0,1373,4502.000000,153,1,1857.887795,hint,lora,180 -on9,0,0,25,1,0,1860,4616.198720,154,2,1907.071283,hint,lora,180 -on5,0,0,33,1,0,3378,6049.001280,154,11,2676.159693,hint,lora,180 -on10,0,0,25,1,0,1956,4502.000000,154,1,1842.784000,hint,lora,180 -on2,0,0,25,1,0,2363,4502.000000,154,1,1886.527795,hint,lora,180 -on11,0,0,24,0,0,4149,4320.000000,154,1,1749.440000,hint,lora,180 -on3,0,0,24,0,0,4234,4320.000000,154,1,1736.688000,hint,lora,180 -on4,0,0,25,1,0,1786,4501.000000,154,1,1828.943795,hint,lora,180 -on7,0,0,29,1,0,2838,5318.800000,154,6,2309.406771,hint,lora,180 -on8,0,0,28,1,0,3158,5043.600000,154,4,2084.287590,hint,lora,180 -on1,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,hint,lora,180 -on0,1,8,24,0,0,0,4320.000000,154,0,2230.080000,hint,lora,180 -on6,0,0,26,1,0,2414,4682.996160,154,2,1910.606054,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,155,0,2200.000205,hint,lora,180 -on10,0,0,26,1,0,1240,4682.794880,155,2,1939.405952,hint,lora,180 -on2,0,0,32,1,0,4148,5840.601280,155,9,2494.990874,hint,lora,180 -on3,0,0,30,1,0,2220,5568.998720,155,7,2296.462669,hint,lora,180 -on6,0,0,29,1,0,2164,5223.398720,155,6,2168.622259,hint,lora,180 -on1,0,0,26,1,0,1436,4685.301280,155,2,1984.072717,hint,lora,180 -on9,0,0,29,1,0,1963,5273.400000,155,6,2200.654976,hint,lora,180 -on7,0,0,26,1,0,1155,4746.800000,155,3,1952.127590,hint,lora,180 -on5,0,0,25,1,0,828,4580.300000,155,2,1909.623795,hint,lora,180 -on4,0,0,31,1,0,2565,5696.101280,155,9,2428.902874,hint,lora,180 -on11,0,0,24,1,0,737,4323.000000,155,0,1803.760614,hint,lora,180 -on8,0,0,25,1,0,572,4633.000000,155,2,1950.080000,hint,lora,180 -on11,0,0,28,1,0,2480,5042.600000,156,4,2107.262976,hint,lora,180 -on1,0,0,31,1,0,1926,5582.202560,156,7,2340.959590,hint,lora,180 -on7,0,0,24,1,0,194,4321.005120,156,0,1754.866048,hint,lora,180 -on9,0,0,28,1,0,1552,5045.002560,156,4,2107.233229,hint,lora,180 -on3,0,0,26,1,0,1140,4682.501280,156,2,1941.960512,hint,lora,180 -on4,0,0,24,1,0,1,4321.996160,156,0,1754.942464,hint,lora,180 -on10,0,0,29,1,0,1620,5223.300000,156,5,2174.534976,hint,lora,180 -on8,0,0,25,1,0,671,4502.000000,156,1,1853.024000,hint,lora,180 -on5,0,0,26,1,0,385,4684.000000,156,2,1936.591181,hint,lora,180 -on2,0,0,26,1,0,1007,4681.000000,156,2,1901.040000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,156,0,2097.120205,hint,lora,180 -on6,0,0,27,1,0,768,4863.100000,156,3,2016.679590,hint,lora,180 -on2,0,0,24,1,0,1791,4361.001280,157,1,1773.360922,hint,lora,180 -on11,0,0,30,0,0,4855,5564.303840,157,7,2283.736307,hint,lora,180 -on1,0,0,27,1,0,2116,4863.598720,157,3,2050.399488,hint,lora,180 -on6,0,0,25,1,0,1240,4502.400000,157,1,1868.048205,hint,lora,180 -on8,0,0,28,1,0,2817,5043.103840,157,4,2062.617126,hint,lora,180 -on5,0,0,29,1,0,2200,5223.601280,157,5,2211.231693,hint,lora,180 -on7,0,0,26,1,0,2718,4723.200000,157,4,1995.935181,hint,lora,180 -on9,0,0,32,1,0,3419,5763.501280,157,8,2423.622874,hint,lora,180 -on3,0,0,26,1,0,1744,4682.201280,157,2,1930.368512,hint,lora,180 -on10,0,0,28,1,0,2707,5043.401280,157,4,2093.167898,hint,lora,180 -on4,0,0,26,1,0,3192,4798.900000,157,4,1977.159795,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,157,0,2168.000000,hint,lora,180 -on10,0,0,26,1,0,2585,4682.500000,158,2,1956.311181,hint,lora,180 -on5,0,0,26,1,0,1713,4710.000000,158,3,1955.919795,hint,lora,180 -on3,0,0,29,1,0,2706,5223.001280,158,5,2181.151283,hint,lora,180 -on11,0,0,27,1,0,2167,4861.801280,158,3,2031.280102,hint,lora,180 -on4,0,0,26,1,0,1178,4681.202560,158,2,1926.513434,hint,lora,180 -on8,0,0,26,1,0,1779,4682.600000,158,2,2017.103795,hint,lora,180 -on2,0,0,27,1,0,2368,4962.200000,158,5,2090.431386,hint,lora,180 -on6,0,0,27,1,0,3084,4862.600000,158,3,2045.855181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,158,0,2167.648205,hint,lora,180 -on9,0,0,24,1,0,688,4321.001280,158,0,1811.280717,hint,lora,180 -on7,0,0,25,1,0,1630,4501.300000,158,2,1875.144000,hint,lora,180 -on1,0,0,30,1,0,3051,5402.800000,158,6,2278.398157,hint,lora,180 -on2,0,0,25,1,0,836,4501.300000,159,1,1880.552000,hint,lora,180 -on10,0,0,28,1,0,1947,5042.601280,159,4,2079.455693,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,159,0,2248.160000,hint,lora,180 -on6,0,0,31,1,0,2414,5583.001280,159,8,2337.470464,hint,lora,180 -on8,0,0,26,0,0,4276,4726.300000,159,3,1941.719181,hint,lora,180 -on7,0,0,25,1,0,505,4501.001280,159,1,1859.984717,hint,lora,180 -on9,0,0,26,1,0,1683,4850.501280,159,3,1972.248717,hint,lora,180 -on1,0,0,26,1,0,3818,4717.801280,159,3,1982.751898,hint,lora,180 -on5,0,0,25,1,0,823,4502.000000,159,1,1841.039386,hint,lora,180 -on11,0,0,26,1,0,1367,4681.000000,159,2,1901.040000,hint,lora,180 -on3,0,0,26,1,0,1928,4684.702560,159,2,1943.881843,hint,lora,180 -on4,0,0,24,1,0,689,4332.996160,159,1,1761.950669,hint,lora,180 -on9,0,0,27,1,0,2157,5000.300000,160,4,2137.143795,hint,lora,180 -on2,0,0,29,1,0,2044,5383.602560,160,7,2233.840205,hint,lora,180 -on11,0,0,25,1,0,2420,4502.600000,160,1,1903.439795,hint,lora,180 -on6,0,0,24,1,0,10,4322.003840,160,0,1784.289536,hint,lora,180 -on10,0,0,29,1,0,1793,5459.500000,160,7,2260.583590,hint,lora,180 -on8,0,0,26,1,0,1253,4684.996160,160,2,1974.206464,hint,lora,180 -on5,0,0,25,1,0,825,4503.194880,160,1,1893.534157,hint,lora,180 -on4,0,0,27,1,0,750,4862.198720,160,3,1983.007283,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,160,0,2156.800205,hint,lora,180 -on3,0,0,29,1,0,2150,5223.500000,160,5,2208.838566,hint,lora,180 -on1,0,0,32,1,0,2848,5934.998720,160,10,2545.101850,hint,lora,180 -on7,0,0,30,1,0,1743,5430.800000,160,7,2254.415795,hint,lora,180 -on11,0,0,26,1,0,1239,4757.900000,161,3,1989.239181,hint,lora,180 -on2,0,0,25,1,0,613,4502.300000,161,1,1853.656000,hint,lora,180 -on8,0,0,31,1,0,3009,5585.202560,161,7,2461.520410,hint,lora,180 -on7,0,0,26,1,0,2000,4682.302560,161,2,1970.585024,hint,lora,180 -on6,0,0,24,0,0,4247,4320.000000,161,0,1740.000000,hint,lora,180 -on5,0,0,25,1,0,190,4503.303840,161,1,1884.681741,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,161,0,2221.440000,hint,lora,180 -on9,0,0,24,1,0,903,4432.000000,161,1,1801.440000,hint,lora,180 -on1,0,0,25,1,0,604,4564.000000,161,2,1910.143795,hint,lora,180 -on4,0,0,24,1,0,37,4373.001280,161,1,1822.608717,hint,lora,180 -on3,0,0,25,1,0,1727,4501.301280,161,1,1866.600717,hint,lora,180 -on10,0,0,29,1,0,1403,5287.300000,161,7,2288.055181,hint,lora,180 -on1,0,0,24,1,0,567,4353.300000,162,1,1808.391795,hint,lora,180 -on5,0,0,27,1,0,1253,4861.500000,162,3,1992.215795,hint,lora,180 -on8,0,0,31,1,0,2497,5664.701280,162,8,2397.606874,hint,lora,180 -on7,0,0,28,1,0,2380,5042.702560,162,4,2109.880410,hint,lora,180 -on3,0,0,29,1,0,1585,5224.300000,162,5,2240.807181,hint,lora,180 -on4,0,0,27,1,0,1682,4903.805120,162,4,2031.217843,hint,lora,180 -on2,0,0,27,1,0,1498,4862.500000,162,3,2003.863795,hint,lora,180 -on6,0,0,35,1,0,2954,6304.400000,162,11,2711.533542,hint,lora,180 -on9,0,0,28,1,0,2578,5042.300000,162,5,2127.095386,hint,lora,180 -on11,0,0,25,1,0,972,4501.005120,162,1,1845.522253,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,162,0,2156.800205,hint,lora,180 -on10,0,0,28,1,0,1925,5043.301280,162,5,2135.496102,hint,lora,180 -on1,0,0,29,0,0,4077,5221.601280,163,5,2246.287488,hint,lora,180 -on8,0,0,26,1,0,1893,4822.200000,163,3,1989.359590,hint,lora,180 -on2,0,0,26,1,0,1875,4683.300000,163,2,1967.590976,hint,lora,180 -on4,0,0,31,1,0,2539,5619.403840,163,8,2376.064512,hint,lora,180 -on3,0,0,32,1,0,2697,5766.500000,163,8,2463.942976,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,163,0,2254.880000,hint,lora,180 -on11,0,0,25,1,0,820,4502.300000,163,1,1844.135795,hint,lora,180 -on5,0,0,24,1,0,579,4383.201280,163,1,1803.424922,hint,lora,180 -on9,0,0,26,1,0,1496,4684.498720,163,2,1913.431693,hint,lora,180 -on10,0,0,27,1,0,2665,4862.002560,163,3,2013.296819,hint,lora,180 -on6,0,0,24,1,0,1086,4321.000000,163,0,1756.080000,hint,lora,180 -on7,0,0,25,1,0,1312,4501.998720,163,1,1857.983693,hint,lora,180 -on1,0,0,24,1,0,580,4323.001280,164,0,1806.001331,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,164,0,2332.960000,hint,lora,180 -on11,0,0,26,1,0,2138,4681.601280,164,2,1987.104102,hint,lora,180 -on9,0,0,24,1,0,771,4321.997440,164,0,1811.583386,hint,lora,180 -on2,0,0,25,1,0,540,4503.600000,164,1,1855.472819,hint,lora,180 -on8,0,0,25,1,0,1846,4501.000000,164,1,1829.040000,hint,lora,180 -on6,0,0,26,1,0,1360,4684.301280,164,2,1992.088102,hint,lora,180 -on3,0,0,28,0,0,4564,5040.198720,164,4,2063.534874,hint,lora,180 -on10,0,0,25,1,0,1168,4502.000000,164,1,1838.144000,hint,lora,180 -on5,0,0,31,1,0,2884,5584.502560,164,7,2373.480205,hint,lora,180 -on7,0,0,25,1,0,1076,4501.200000,164,1,1860.815386,hint,lora,180 -on4,0,0,25,1,0,3267,4500.301280,164,1,1893.880922,hint,lora,180 -on3,0,0,26,1,0,1284,4836.302560,165,3,1992.169024,hint,lora,180 -on9,0,0,26,1,0,2615,4682.900000,165,2,1990.887386,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,165,0,2133.760205,hint,lora,180 -on1,0,0,29,1,0,2833,5223.203840,165,5,2203.793126,hint,lora,180 -on10,0,0,26,1,0,1459,4682.801280,165,3,1966.096307,hint,lora,180 -on7,0,0,29,1,0,3413,5398.500000,165,6,2290.726362,hint,lora,180 -on2,0,0,25,1,0,1945,4502.200000,165,1,1858.160000,hint,lora,180 -on8,0,0,25,1,0,811,4501.200000,165,1,1834.832000,hint,lora,180 -on4,0,0,27,1,0,3114,4861.197440,165,3,1979.534157,hint,lora,180 -on6,0,0,26,1,0,1337,4681.503840,165,2,1904.137536,hint,lora,180 -on11,0,0,26,1,0,2316,4723.202560,165,3,1973.489024,hint,lora,180 -on5,0,0,32,1,0,2507,5763.803840,165,8,2435.280512,hint,lora,180 -on2,0,0,27,1,0,2669,4954.802560,166,5,2077.808205,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,166,0,2156.800205,hint,lora,180 -on11,0,0,27,1,0,1787,4863.600000,166,3,2067.615181,hint,lora,180 -on1,0,0,25,1,0,1047,4504.294880,166,1,1876.581952,hint,lora,180 -on3,0,0,30,1,0,2368,5403.600000,166,6,2254.366976,hint,lora,180 -on9,0,0,28,1,0,2753,5041.900000,166,4,2118.230976,hint,lora,180 -on6,0,0,30,1,0,2944,5459.602560,166,7,2349.487795,hint,lora,180 -on7,0,0,25,1,0,1152,4659.600000,166,2,1959.967795,hint,lora,180 -on10,0,0,24,1,0,2166,4375.300000,166,1,1815.399590,hint,lora,180 -on8,0,0,25,1,0,2154,4501.000000,166,1,1829.040000,hint,lora,180 -on4,0,0,24,1,0,912,4321.001280,166,0,1782.224717,hint,lora,180 -on5,0,0,26,1,0,1453,4681.300000,166,3,1917.063386,hint,lora,180 -on3,0,0,26,1,0,1449,4854.001280,167,3,2041.296307,hint,lora,180 -on7,0,0,26,1,0,1814,4681.600000,167,2,1940.863386,hint,lora,180 -on1,0,0,25,1,0,1388,4595.302560,167,2,1936.745024,hint,lora,180 -on11,0,0,26,1,0,1395,4682.600000,167,2,1987.375386,hint,lora,180 -on4,0,0,25,1,0,999,4503.296160,167,1,1864.166259,hint,lora,180 -on8,0,0,24,0,0,4306,4320.000000,167,0,1756.800000,hint,lora,180 -on10,0,0,25,1,0,915,4501.300000,167,1,1854.183795,hint,lora,180 -on5,0,0,24,1,0,843,4451.005120,167,1,1867.410867,hint,lora,180 -on9,0,0,26,1,0,2171,4680.301280,167,2,1904.936512,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,167,0,2208.639795,hint,lora,180 -on6,0,0,24,1,0,470,4487.002560,167,1,1882.865434,hint,lora,180 -on2,0,0,24,0,0,4174,4320.000000,167,0,1751.680000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,168,0,2151.360205,hint,lora,180 -on5,0,0,31,1,0,2877,5620.100000,168,8,2414.518362,hint,lora,180 -on1,0,0,29,1,0,2057,5393.600000,168,7,2299.326976,hint,lora,180 -on9,0,0,25,1,0,2263,4502.300000,168,1,1870.583795,hint,lora,180 -on6,0,0,26,1,0,882,4767.702560,168,3,2014.713229,hint,lora,180 -on2,0,0,24,1,0,367,4423.000000,168,1,1845.392000,hint,lora,180 -on8,0,0,27,1,0,1812,4919.202560,168,4,2032.816410,hint,lora,180 -on7,0,0,31,1,0,2780,5584.505120,168,7,2392.409638,hint,lora,180 -on4,0,0,28,1,0,1486,5041.300000,168,4,2060.903590,hint,lora,180 -on11,0,0,29,1,0,2456,5222.100000,168,5,2158.454566,hint,lora,180 -on10,0,0,27,1,0,1658,4861.800000,168,3,1996.287795,hint,lora,180 -on3,0,0,26,1,0,1876,4795.103840,168,3,2028.025126,hint,lora,180 -on4,0,0,28,1,0,1784,5042.802560,169,4,2112.144410,hint,lora,180 -on1,0,0,30,1,0,2658,5491.802560,169,7,2309.455795,hint,lora,180 -on8,0,0,26,1,0,1979,4682.300000,169,2,1946.583386,hint,lora,180 -on2,0,0,26,1,0,2106,4681.500000,169,2,1932.887386,hint,lora,180 -on7,0,0,25,1,0,1556,4537.500000,169,2,1846.679590,hint,lora,180 -on5,0,0,27,1,0,1756,4862.900000,169,3,2049.095386,hint,lora,180 -on6,0,0,27,1,0,1226,4863.200000,169,3,2017.407181,hint,lora,180 -on11,0,0,24,1,0,739,4320.000000,169,0,1753.600205,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,169,0,2084.160205,hint,lora,180 -on10,0,0,25,1,0,2743,4501.200000,169,1,1830.128000,hint,lora,180 -on9,0,0,26,1,0,1070,4683.000000,169,2,1945.056205,hint,lora,180 -on3,0,0,28,1,0,1665,5042.600000,169,4,2073.263590,hint,lora,180 -on2,0,0,25,1,0,1173,4501.000000,170,2,1880.991795,hint,lora,180 -on10,0,0,24,1,0,1843,4321.000000,170,0,1785.040000,hint,lora,180 -on3,0,0,30,1,0,2879,5404.801280,170,6,2324.159283,hint,lora,180 -on6,0,0,27,1,0,3233,4863.600000,170,3,2077.022976,hint,lora,180 -on9,0,0,28,1,0,3094,5170.400000,170,5,2223.726771,hint,lora,180 -on5,0,0,27,1,0,2699,5095.405120,170,5,2082.418253,hint,lora,180 -on4,0,0,24,1,0,1669,4322.000000,170,1,1806.879795,hint,lora,180 -on1,0,0,24,1,0,2184,4467.000000,170,1,1815.440000,hint,lora,180 -on11,0,0,26,1,0,2585,4843.501280,170,3,2012.951898,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,170,0,2183.520205,hint,lora,180 -on7,0,0,30,1,0,3223,5404.402560,170,6,2278.287590,hint,lora,180 -on8,0,0,29,1,0,3746,5222.802560,170,5,2218.687795,hint,lora,180 -on6,0,0,26,0,0,4448,4689.300000,171,3,1887.767590,hint,lora,180 -on4,0,0,26,1,0,715,4682.301280,171,2,1942.600512,hint,lora,180 -on7,0,0,30,1,0,2446,5402.506400,171,6,2220.570765,hint,lora,180 -on8,0,0,27,1,0,1481,4861.500000,171,3,2045.015181,hint,lora,180 -on2,0,0,24,1,0,370,4369.200000,171,1,1814.863795,hint,lora,180 -on10,0,0,27,1,0,1085,4864.796160,171,3,2019.406464,hint,lora,180 -on1,0,0,29,1,0,1298,5223.800000,171,5,2240.335386,hint,lora,180 -on11,0,0,25,1,0,3300,4500.301280,171,1,1874.040717,hint,lora,180 -on9,0,0,26,1,0,2801,4702.302560,171,3,1964.761024,hint,lora,180 -on5,0,0,26,1,0,3734,4840.401280,171,3,2113.920102,hint,lora,180 -on3,0,0,30,1,0,1780,5579.105120,171,7,2371.274253,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,171,0,2211.200000,hint,lora,180 -on4,0,0,27,1,0,2708,4863.200000,172,3,2015.391181,hint,lora,180 -on2,0,0,27,1,0,2306,4861.600000,172,3,2030.799590,hint,lora,180 -on9,0,0,30,1,0,1936,5402.802560,172,6,2304.048410,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,172,0,2234.240205,hint,lora,180 -on1,0,0,31,1,0,3562,5583.000000,172,8,2359.054157,hint,lora,180 -on11,0,0,31,1,0,2866,5742.802560,172,8,2505.984000,hint,lora,180 -on10,0,0,32,1,0,2946,5763.406400,172,8,2478.433946,hint,lora,180 -on6,0,0,28,1,0,1441,5041.701280,172,4,2051.848307,hint,lora,180 -on8,0,0,31,1,0,3157,5583.500000,172,7,2386.182976,hint,lora,180 -on7,0,0,25,1,0,503,4502.203840,172,1,1857.297536,hint,lora,180 -on5,0,0,29,1,0,1519,5223.400000,172,5,2257.855590,hint,lora,180 -on3,0,0,26,1,0,878,4682.000000,172,2,1966.832000,hint,lora,180 -on2,0,0,26,1,0,2100,4759.500000,173,3,1966.519386,hint,lora,180 -on10,0,0,27,1,0,1612,4863.900000,173,3,2073.719386,hint,lora,180 -on7,0,0,26,1,0,945,4683.600000,173,2,1922.720000,hint,lora,180 -on8,0,0,32,1,0,1614,5763.200000,173,8,2460.926157,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,173,0,2099.200205,hint,lora,180 -on5,0,0,25,1,0,1404,4501.000000,173,1,1829.040000,hint,lora,180 -on1,0,0,24,1,0,316,4372.000000,173,1,1813.935795,hint,lora,180 -on3,0,0,25,1,0,1250,4503.196160,173,1,1847.742669,hint,lora,180 -on9,0,0,29,1,0,2153,5224.205120,173,5,2172.961638,hint,lora,180 -on6,0,0,24,1,0,19,4320.397440,173,0,1753.822771,hint,lora,180 -on11,0,0,29,1,0,2375,5223.200000,173,5,2198.622566,hint,lora,180 -on4,0,0,26,1,0,599,4682.600000,173,2,1942.543590,hint,lora,180 -on11,0,0,28,1,0,2128,5045.601280,174,5,2159.487693,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,174,0,2300.320000,hint,lora,180 -on5,0,0,32,1,0,2791,5873.506400,174,9,2486.441946,hint,lora,180 -on3,0,0,26,0,0,4236,4681.001280,174,2,1934.640102,hint,lora,180 -on1,0,0,23,1,0,793,4302.000000,174,0,1775.360205,hint,lora,180 -on4,0,0,25,1,0,705,4502.998720,174,1,1846.127488,hint,lora,180 -on7,0,0,29,1,0,1657,5224.600000,174,5,2216.734976,hint,lora,180 -on2,0,0,25,1,0,1791,4503.000000,174,1,1884.623795,hint,lora,180 -on8,0,0,27,1,0,1253,4862.202560,174,3,1973.889638,hint,lora,180 -on6,0,0,25,1,0,1214,4502.198720,174,1,1829.519693,hint,lora,180 -on9,0,0,24,1,0,1580,4395.200000,174,1,1819.568000,hint,lora,180 -on10,0,0,30,0,0,4308,5509.700000,174,7,2327.045952,hint,lora,180 -on10,0,0,27,1,0,2178,4882.600000,175,4,2041.791386,hint,lora,180 -on4,0,0,26,1,0,1048,4683.201280,175,2,1948.960922,hint,lora,180 -on9,0,0,29,1,0,3184,5220.801280,175,5,2171.648102,hint,lora,180 -on7,0,0,24,1,0,1799,4388.001280,175,1,1820.064512,hint,lora,180 -on1,0,0,27,1,0,1580,4861.200000,175,3,1979.887386,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,175,0,2308.320000,hint,lora,180 -on5,0,0,25,1,0,1121,4502.300000,175,1,1867.479795,hint,lora,180 -on11,0,0,29,1,0,1954,5225.702560,175,5,2211.592614,hint,lora,180 -on3,0,0,24,1,0,2850,4322.000000,175,0,1767.103795,hint,lora,180 -on6,0,0,28,1,0,2510,5042.603840,175,4,2101.953126,hint,lora,180 -on2,0,0,24,0,0,4242,4320.000000,175,0,1740.640000,hint,lora,180 -on8,0,0,25,1,0,407,4502.300000,175,1,1924.056000,hint,lora,180 -on3,0,0,27,1,0,1833,4863.300000,176,3,2040.455590,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,176,0,2228.800000,hint,lora,180 -on11,0,0,30,1,0,2561,5402.802560,176,6,2273.728205,hint,lora,180 -on10,0,0,24,1,0,1972,4415.998720,176,1,1810.079693,hint,lora,180 -on7,0,0,30,1,0,2769,5547.002560,176,7,2324.400614,hint,lora,180 -on8,0,0,24,1,0,909,4322.002560,176,0,1801.729638,hint,lora,180 -on1,0,0,27,1,0,2658,4864.200000,176,3,2069.695181,hint,lora,180 -on5,0,0,25,1,0,1205,4500.001280,176,1,1854.400717,hint,lora,180 -on4,0,0,26,1,0,2251,4682.998720,176,2,1962.127078,hint,lora,180 -on9,0,0,25,0,0,4267,4500.000000,176,1,1823.999590,hint,lora,180 -on6,0,0,27,1,0,2871,4863.201280,176,3,2079.632512,hint,lora,180 -on2,0,0,25,1,0,1517,4502.000000,176,1,1884.800000,hint,lora,180 -on6,0,0,29,1,0,2621,5222.700000,177,5,2178.534566,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,177,0,2149.760205,hint,lora,180 -on5,0,0,25,1,0,833,4501.000000,177,1,1829.103795,hint,lora,180 -on9,0,0,26,1,0,1784,4681.600000,177,2,1930.783590,hint,lora,180 -on11,0,0,25,1,0,835,4501.202560,177,1,1857.665229,hint,lora,180 -on1,0,0,27,1,0,2021,4862.802560,177,3,2024.320819,hint,lora,180 -on4,0,0,28,1,0,2654,5221.200000,177,5,2161.310771,hint,lora,180 -on3,0,0,23,1,0,547,4251.000000,177,0,1730.544000,hint,lora,180 -on10,0,0,25,1,0,1734,4501.000000,177,1,1828.880000,hint,lora,180 -on7,0,0,32,1,0,2934,5764.100000,177,8,2463.333747,hint,lora,180 -on8,0,0,26,1,0,1362,4682.202560,177,2,1936.145229,hint,lora,180 -on2,0,0,24,1,0,1053,4333.200000,177,1,1792.160000,hint,lora,180 -on4,0,0,27,1,0,1251,4861.301280,178,3,2033.240102,hint,lora,180 -on11,0,0,25,1,0,3742,4500.001280,178,1,1855.520717,hint,lora,180 -on5,0,0,25,1,0,2039,4503.598720,178,1,1891.263488,hint,lora,180 -on3,0,0,26,1,0,2892,4681.001280,178,2,1938.592512,hint,lora,180 -on8,0,0,25,1,0,249,4501.201280,178,1,1865.920717,hint,lora,180 -on10,0,0,25,1,0,686,4504.996160,178,1,1887.726669,hint,lora,180 -on1,0,0,26,1,0,846,4682.203840,178,2,1904.785741,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,178,0,2343.680000,hint,lora,180 -on6,0,0,25,1,0,1410,4502.001280,178,1,1855.041126,hint,lora,180 -on2,0,0,29,1,0,2470,5249.900000,178,7,2335.783590,hint,lora,180 -on9,0,0,24,0,0,4224,4320.000000,178,0,1743.680000,hint,lora,180 -on7,0,0,25,1,0,849,4503.298720,178,1,1843.303283,hint,lora,180 -on10,0,0,28,1,0,1800,5042.101280,179,4,2075.335693,hint,lora,180 -on8,0,0,31,1,0,2248,5584.501280,179,7,2387.767283,hint,lora,180 -on7,0,0,29,1,0,2793,5222.601280,179,5,2141.919693,hint,lora,180 -on4,0,0,26,1,0,645,4681.201280,179,2,1900.864512,hint,lora,180 -on3,0,0,30,1,0,1500,5402.101280,179,6,2249.095898,hint,lora,180 -on11,0,0,29,1,0,2092,5222.800000,179,5,2194.222976,hint,lora,180 -on5,0,0,27,1,0,2091,4861.401280,179,3,2037.039898,hint,lora,180 -on6,0,0,25,1,0,528,4502.996160,179,1,1858.478669,hint,lora,180 -on2,0,0,30,1,0,1844,5403.501280,179,6,2257.127488,hint,lora,180 -on1,0,0,26,1,0,827,4683.200000,179,2,1913.344000,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,179,0,2078.240205,hint,lora,180 -on9,0,0,25,1,0,833,4503.998720,179,1,1846.031693,hint,lora,180 -on11,0,0,25,1,0,1900,4566.203840,180,2,1855.761741,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,180,0,2234.560000,hint,lora,180 -on3,0,0,27,1,0,2982,4861.601280,180,3,2091.056102,hint,lora,180 -on5,0,0,27,1,0,2761,4862.300000,180,3,2010.054976,hint,lora,180 -on4,0,0,26,1,0,1381,4682.201280,180,2,1991.072717,hint,lora,180 -on7,0,0,26,1,0,2516,4683.198720,180,2,1947.199283,hint,lora,180 -on6,0,0,31,1,0,2909,5698.000000,180,8,2475.949952,hint,lora,180 -on8,0,0,27,1,0,2824,4862.103840,180,3,2008.761331,hint,lora,180 -on1,0,0,26,1,0,2186,4755.701280,180,3,1948.312102,hint,lora,180 -on10,0,0,25,1,0,2169,4651.200000,180,2,1898.271386,hint,lora,180 -on9,0,0,24,0,0,4250,4320.000000,180,1,1739.200000,hint,lora,180 -on2,0,0,24,1,0,1379,4327.300000,180,1,1835.351590,hint,lora,180 -on11,0,0,25,1,0,1126,4520.298720,181,2,1877.991693,hint,lora,180 -on9,0,0,26,1,0,1970,4896.302560,181,4,2053.993229,hint,lora,180 -on1,0,0,28,1,0,1902,5217.502560,181,6,2203.160000,hint,lora,180 -on10,0,0,25,1,0,268,4501.003840,181,1,1832.145331,hint,lora,180 -on3,0,0,27,1,0,881,4866.501280,181,3,2064.425126,hint,lora,180 -on8,0,0,25,1,0,1274,4502.997440,181,1,1845.999386,hint,lora,180 -on6,0,0,24,1,0,14,4323.998720,181,0,1813.183488,hint,lora,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,hint,lora,180 -on2,0,0,26,1,0,896,4789.997440,181,3,1971.710362,hint,lora,180 -on7,0,0,28,1,0,1524,5042.001280,181,4,2098.992512,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,181,0,2212.320000,hint,lora,180 -on4,0,0,27,0,0,4335,4972.698720,181,4,2070.166464,hint,lora,180 -on9,0,0,31,1,0,2354,5707.202560,182,8,2488.032205,hint,lora,180 -on2,0,0,25,1,0,3162,4500.001280,182,1,1856.640717,hint,lora,180 -on3,0,0,24,1,0,899,4326.001280,182,1,1771.328512,hint,lora,180 -on6,0,0,28,1,0,2429,5128.897440,182,5,2243.206771,hint,lora,180 -on7,0,0,25,0,0,4178,4500.300000,182,2,1847.207590,hint,lora,180 -on11,0,0,25,1,0,1193,4501.203840,182,1,1829.121946,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,182,0,2296.160000,hint,lora,180 -on8,0,0,24,1,0,540,4322.000000,182,0,1783.424000,hint,lora,180 -on1,0,0,28,1,0,1568,5141.201280,182,5,2197.376512,hint,lora,180 -on4,0,0,28,0,0,4335,5041.198720,182,4,2067.278874,hint,lora,180 -on5,0,0,30,1,0,2368,5402.501280,182,6,2219.687693,hint,lora,180 -on10,0,0,25,1,0,2601,4500.001280,182,1,1853.440512,hint,lora,180 -on10,0,0,32,1,0,2892,5926.500000,183,11,2492.887181,hint,lora,180 -on1,0,0,26,1,0,1533,4885.610240,183,4,2059.716506,hint,lora,180 -on8,0,0,30,1,0,2412,5403.598720,183,6,2262.526874,hint,lora,180 -on4,0,0,27,1,0,1245,4862.500000,183,3,2001.160000,hint,lora,180 -on3,0,0,26,1,0,1793,4681.000000,183,2,1900.784000,hint,lora,180 -on7,0,0,30,1,0,2499,5403.000000,183,6,2241.262976,hint,lora,180 -on9,0,0,31,1,0,2688,5581.802560,183,8,2328.832205,hint,lora,180 -on11,0,0,28,1,0,1406,5044.800000,183,4,2145.183386,hint,lora,180 -on6,0,0,31,1,0,3694,5582.902560,183,8,2375.368410,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,183,0,2283.840205,hint,lora,180 -on5,0,0,27,1,0,3319,4996.600000,183,5,2127.087590,hint,lora,180 -on2,0,0,25,1,0,436,4504.200000,183,1,1907.072410,hint,lora,180 -on9,0,0,24,1,0,1373,4320.000000,184,0,1782.400205,hint,lora,180 -on8,0,0,25,1,0,1080,4502.602560,184,1,1869.057638,hint,lora,180 -on7,0,0,27,1,0,1745,4861.600000,184,3,2043.183386,hint,lora,180 -on6,0,0,30,1,0,2652,5405.103840,184,6,2388.200717,hint,lora,180 -on2,0,0,27,1,0,3222,4862.800000,184,3,2034.607386,hint,lora,180 -on5,0,0,29,1,0,2783,5222.200000,184,5,2204.079795,hint,lora,180 -on10,0,0,28,1,0,3330,5317.402560,184,6,2345.535386,hint,lora,180 -on4,0,0,25,1,0,2107,4644.300000,184,2,1912.279795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,184,0,2256.640205,hint,lora,180 -on3,0,0,29,1,0,3161,5222.505120,184,5,2158.809843,hint,lora,180 -on11,0,0,31,1,0,3909,5584.102560,184,7,2434.423795,hint,lora,180 -on1,0,0,29,1,0,3756,5221.800000,184,5,2167.006362,hint,lora,180 -on7,0,0,27,1,0,1798,4861.798720,185,3,2011.055283,hint,lora,180 -on2,0,0,30,1,0,1626,5403.805120,185,6,2301.793024,hint,lora,180 -on9,0,0,31,1,0,2190,5583.700000,185,7,2353.046157,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,185,0,2099.200205,hint,lora,180 -on4,0,0,26,1,0,776,4804.200000,185,3,1987.183386,hint,lora,180 -on1,0,0,25,1,0,971,4606.596160,185,2,1927.438464,hint,lora,180 -on10,0,0,25,1,0,48,4501.000000,185,1,1847.663590,hint,lora,180 -on8,0,0,29,1,0,2348,5222.900000,185,5,2196.486771,hint,lora,180 -on5,0,0,26,1,0,734,4721.902560,185,3,1955.753024,hint,lora,180 -on3,0,0,26,1,0,399,4682.400000,185,2,1932.911795,hint,lora,180 -on11,0,0,26,1,0,1470,4914.900000,185,4,2041.319386,hint,lora,180 -on6,0,0,28,1,0,1360,5042.200000,185,4,2067.471590,hint,lora,180 -on10,0,0,28,1,0,3407,5041.600000,186,4,2074.767386,hint,lora,180 -on9,0,0,30,0,0,4343,5401.800000,186,7,2282.990976,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,186,0,2173.920000,hint,lora,180 -on4,0,0,30,1,0,3784,5699.401280,186,8,2494.366669,hint,lora,180 -on1,0,0,32,1,0,4229,5764.002560,186,9,2441.343181,hint,lora,180 -on7,0,0,25,1,0,2174,4502.000000,186,1,1854.527795,hint,lora,180 -on3,0,0,29,1,0,4186,5379.800000,186,7,2288.670771,hint,lora,180 -on11,0,0,28,1,0,3653,5120.300000,186,5,2106.247181,hint,lora,180 -on6,0,0,27,1,0,3175,4920.906400,186,4,2047.610355,hint,lora,180 -on8,0,0,26,1,0,2928,4682.001280,186,2,1933.504512,hint,lora,180 -on2,0,0,29,1,0,3968,5376.801280,186,6,2241.759693,hint,lora,180 -on5,0,0,25,1,0,2690,4502.000000,186,1,1857.776000,hint,lora,180 -on9,0,0,33,1,0,2052,5946.600000,187,9,2519.087181,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,187,0,2206.080205,hint,lora,180 -on10,0,0,26,1,0,2949,4681.000000,187,2,1926.639795,hint,lora,180 -on3,0,0,28,1,0,732,5041.901280,187,4,2069.128717,hint,lora,180 -on7,0,0,28,1,0,1665,5041.701280,187,4,2059.832102,hint,lora,180 -on6,0,0,28,1,0,1306,5042.500000,187,4,2100.679590,hint,lora,180 -on5,0,0,33,1,0,2884,6278.498720,187,11,2669.174464,hint,lora,180 -on11,0,0,31,1,0,2274,5712.001280,187,9,2437.039283,hint,lora,180 -on2,0,0,27,1,0,1695,4930.401280,187,4,2097.136512,hint,lora,180 -on4,0,0,28,1,0,1581,5043.198720,187,4,2098.287283,hint,lora,180 -on1,0,0,26,1,0,949,4683.000000,187,2,1935.984205,hint,lora,180 -on8,0,0,29,1,0,1662,5225.300000,187,5,2301.847386,hint,lora,180 -on6,0,0,26,1,0,1898,4683.701280,188,2,1993.368512,hint,lora,180 -on7,0,0,24,1,0,1752,4392.300000,188,1,1804.759590,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,188,0,2156.800205,hint,lora,180 -on2,0,0,25,1,0,1013,4500.001280,188,1,1825.600717,hint,lora,180 -on9,0,0,25,1,0,2625,4502.300000,188,1,1867.767795,hint,lora,180 -on10,0,0,25,1,0,632,4501.001280,188,1,1897.216717,hint,lora,180 -on3,0,0,25,1,0,1336,4501.000000,188,1,1829.360000,hint,lora,180 -on8,0,0,28,1,0,2713,5043.102560,188,4,2110.120410,hint,lora,180 -on11,0,0,32,1,0,2877,5765.096160,188,8,2561.333030,hint,lora,180 -on5,0,0,28,1,0,2364,5044.896160,188,4,2161.061440,hint,lora,180 -on1,0,0,25,1,0,1551,4501.300000,188,1,1840.200000,hint,lora,180 -on4,0,0,27,1,0,2093,4862.998720,188,3,2036.575283,hint,lora,180 -on1,0,0,29,1,0,1204,5224.600000,189,6,2213.855181,hint,lora,180 -on6,0,0,28,1,0,1956,5042.803840,189,4,2149.281946,hint,lora,180 -on3,0,0,26,1,0,1558,4788.900000,189,3,2046.951795,hint,lora,180 -on4,0,0,25,1,0,527,4504.001280,189,1,1887.520717,hint,lora,180 -on2,0,0,26,1,0,3708,4681.200000,189,2,1904.431590,hint,lora,180 -on5,0,0,29,1,0,1509,5224.500000,189,5,2233.702771,hint,lora,180 -on11,0,0,25,1,0,233,4503.203840,189,1,1868.993741,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,189,0,2180.736410,hint,lora,180 -on10,0,0,29,1,0,1537,5225.600000,189,5,2242.463386,hint,lora,180 -on9,0,0,28,1,0,1900,5042.900000,189,4,2105.158566,hint,lora,180 -on7,0,0,26,1,0,862,4682.300000,189,2,1932.935795,hint,lora,180 -on8,0,0,26,1,0,1007,4681.200000,189,2,1901.120000,hint,lora,180 -on5,0,0,24,1,0,1083,4321.997440,190,0,1757.022976,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,190,0,2229.440000,hint,lora,180 -on9,0,0,24,0,0,3872,4320.000000,190,0,1809.599795,hint,lora,180 -on11,0,0,31,1,0,2880,5688.601280,190,9,2463.584307,hint,lora,180 -on8,0,0,27,1,0,2710,4862.600000,190,3,2037.007181,hint,lora,180 -on1,0,0,28,1,0,2603,5044.001280,190,4,2122.719898,hint,lora,180 -on4,0,0,28,1,0,2985,5040.901280,190,4,2114.167898,hint,lora,180 -on10,0,0,25,1,0,1377,4501.000000,190,1,1829.103795,hint,lora,180 -on7,0,0,25,1,0,1356,4502.998720,190,1,1918.543488,hint,lora,180 -on2,0,0,24,1,0,2067,4322.000000,190,0,1780.480000,hint,lora,180 -on3,0,0,24,0,0,4297,4320.000000,190,0,1756.800000,hint,lora,180 -on6,0,0,25,1,0,1758,4569.300000,190,2,1887.943590,hint,lora,180 -on5,0,0,26,1,0,466,4682.300000,191,2,1950.423386,hint,lora,180 -on2,0,0,24,1,0,180,4324.002560,191,0,1812.129434,hint,lora,180 -on7,0,0,26,1,0,3354,4681.600000,191,3,1976.047795,hint,lora,180 -on1,0,0,24,1,0,843,4498.000000,191,1,1884.288000,hint,lora,180 -on3,0,0,28,1,0,3827,5218.900000,191,5,2248.982976,hint,lora,180 -on6,0,0,29,1,0,1147,5223.601280,191,5,2211.791488,hint,lora,180 -on10,0,0,25,1,0,3466,4502.200000,191,1,1858.063795,hint,lora,180 -on11,0,0,25,1,0,273,4506.000000,191,1,1930.400410,hint,lora,180 -on9,0,0,28,1,0,1502,5044.101280,191,4,2125.864307,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,191,0,2285.760205,hint,lora,180 -on4,0,0,30,1,0,4301,5403.100000,191,6,2292.886566,hint,lora,180 -on8,0,0,27,1,0,1930,4941.202560,191,4,2005.281229,hint,lora,180 -on3,0,0,26,1,0,1034,4682.300000,192,2,1922.199795,hint,lora,180 -on4,0,0,25,1,0,474,4502.000000,192,1,1857.984000,hint,lora,180 -on6,0,0,24,1,0,102,4390.000000,192,1,1798.943795,hint,lora,180 -on2,0,0,26,1,0,1551,4681.300000,192,2,1924.455590,hint,lora,180 -on5,0,0,30,1,0,2245,5549.300000,192,7,2345.286157,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,192,0,2073.440205,hint,lora,180 -on10,0,0,26,1,0,1681,4683.000000,192,2,1969.839590,hint,lora,180 -on1,0,0,25,1,0,307,4552.010240,192,2,1868.388506,hint,lora,180 -on8,0,0,25,1,0,689,4502.000000,192,1,1857.568000,hint,lora,180 -on11,0,0,30,1,0,2288,5402.500000,192,7,2301.862157,hint,lora,180 -on9,0,0,29,1,0,1953,5329.903840,192,6,2253.272922,hint,lora,180 -on7,0,0,28,1,0,1589,5042.301280,192,4,2077.448102,hint,lora,180 -on1,0,0,24,1,0,1194,4340.000000,193,1,1767.743795,hint,lora,180 -on9,0,0,25,1,0,2296,4500.001280,193,1,1848.800717,hint,lora,180 -on11,0,0,25,1,0,3416,4501.200000,193,1,1837.343795,hint,lora,180 -on7,0,0,24,1,0,1434,4415.196160,193,1,1841.438874,hint,lora,180 -on5,0,0,28,1,0,3524,5042.901280,193,5,2166.791898,hint,lora,180 -on3,0,0,26,0,0,4026,4694.600000,193,3,1954.911590,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,193,0,2255.968000,hint,lora,180 -on4,0,0,25,1,0,3354,4502.000000,193,1,1858.143795,hint,lora,180 -on10,0,0,25,1,0,926,4501.001280,193,1,1872.944717,hint,lora,180 -on2,0,0,25,1,0,3529,4547.900000,193,2,1955.319795,hint,lora,180 -on8,0,0,25,1,0,2696,4503.301280,193,1,1882.760717,hint,lora,180 -on6,0,0,25,1,0,3952,4500.000000,193,1,1845.120000,hint,lora,180 -on7,0,0,24,1,0,833,4424.000000,194,1,1842.848000,hint,lora,180 -on9,0,0,29,1,0,1936,5222.402560,194,5,2174.128205,hint,lora,180 -on10,0,0,29,1,0,1769,5222.401280,194,5,2153.263693,hint,lora,180 -on1,0,0,26,1,0,1058,4682.300000,194,2,1934.919795,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,194,0,2185.600205,hint,lora,180 -on6,0,0,27,1,0,2613,4862.498720,194,3,2035.398464,hint,lora,180 -on4,0,0,31,1,0,2191,5712.302560,194,8,2466.936000,hint,lora,180 -on5,0,0,25,1,0,468,4500.001280,194,1,1827.040717,hint,lora,180 -on8,0,0,25,1,0,712,4501.000000,194,1,1830.495795,hint,lora,180 -on11,0,0,31,1,0,2865,5645.702560,194,8,2436.743590,hint,lora,180 -on3,0,0,25,1,0,2865,4502.000000,194,1,1860.800000,hint,lora,180 -on2,0,0,28,1,0,2526,5100.802560,194,5,2162.304819,hint,lora,180 -on6,0,0,26,1,0,1287,4683.498720,195,2,1934.087283,hint,lora,180 -on8,0,0,27,1,0,2957,4862.500000,195,3,2031.512410,hint,lora,180 -on11,0,0,26,1,0,1576,4683.600000,195,2,1959.200410,hint,lora,180 -on2,0,0,26,1,0,3514,4680.601280,195,2,1929.680512,hint,lora,180 -on5,0,0,24,1,0,9,4320.998720,195,0,1753.999898,hint,lora,180 -on10,0,0,24,1,0,2824,4345.001280,195,1,1812.528512,hint,lora,180 -on1,0,0,25,1,0,1126,4503.598720,195,2,1876.415693,hint,lora,180 -on9,0,0,25,0,0,4319,4641.200000,195,2,1895.519590,hint,lora,180 -on3,0,0,25,1,0,180,4503.601280,195,1,1869.457126,hint,lora,180 -on4,0,0,26,1,0,587,4684.502560,195,2,2017.513434,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,195,0,2218.080000,hint,lora,180 -on7,0,0,25,1,0,3316,4501.300000,195,1,1841.960000,hint,lora,180 -on11,0,0,26,1,0,2699,4681.800000,196,2,1940.559590,hint,lora,180 -on6,0,0,27,1,0,2371,4862.605120,196,3,2034.002048,hint,lora,180 -on2,0,0,25,1,0,1736,4549.600000,196,2,1889.615386,hint,lora,180 -on4,0,0,26,1,0,2239,4681.300000,196,2,1904.199795,hint,lora,180 -on8,0,0,30,1,0,3174,5403.801280,196,6,2270.367078,hint,lora,180 -on5,0,0,25,1,0,1465,4501.300000,196,1,1864.903590,hint,lora,180 -on9,0,0,28,1,0,2284,5044.297440,196,4,2131.525952,hint,lora,180 -on1,0,0,27,1,0,2452,4863.001280,196,3,2062.399898,hint,lora,180 -on10,0,0,31,1,0,3150,5734.000000,196,8,2510.430566,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,196,0,2147.200205,hint,lora,180 -on3,0,0,31,1,0,3212,5584.202560,196,7,2386.624000,hint,lora,180 -on7,0,0,24,1,0,1067,4321.406400,196,0,1843.570560,hint,lora,180 -on3,0,0,30,1,0,2496,5458.201280,197,7,2236.016307,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,197,0,2288.640000,hint,lora,180 -on5,0,0,28,1,0,3437,5042.400000,197,6,2082.127590,hint,lora,180 -on7,0,0,25,1,0,1354,4503.998720,197,1,1851.231693,hint,lora,180 -on4,0,0,24,1,0,1289,4460.198720,197,1,1862.959898,hint,lora,180 -on2,0,0,28,1,0,2295,5044.598720,197,4,2110.527488,hint,lora,180 -on10,0,0,28,0,0,4361,5091.003840,197,5,2083.585126,hint,lora,180 -on11,0,0,32,1,0,3032,5942.708960,197,10,2534.090970,hint,lora,180 -on6,0,0,27,1,0,2356,4861.800000,197,3,2035.630771,hint,lora,180 -on1,0,0,28,1,0,3431,5052.401280,197,5,2155.711898,hint,lora,180 -on8,0,0,26,1,0,1725,4685.298720,197,2,1960.167693,hint,lora,180 -on9,0,0,27,1,0,2295,4899.500000,197,5,2056.519386,hint,lora,180 -on0,1,10,24,0,0,0,4320.000000,198,0,2309.120000,hint,lora,180 -on5,0,0,27,1,0,2385,4861.601280,198,3,2025.712512,hint,lora,180 -on11,0,0,31,1,0,1849,5584.800000,198,7,2353.262566,hint,lora,180 -on4,0,0,27,1,0,1151,4863.501280,198,3,2052.760717,hint,lora,180 -on2,0,0,29,1,0,2246,5223.900000,198,5,2226.166362,hint,lora,180 -on7,0,0,25,1,0,1203,4502.998720,198,1,1838.063693,hint,lora,180 -on10,0,0,30,1,0,2170,5403.500000,198,6,2255.575386,hint,lora,180 -on3,0,0,24,0,0,4079,4320.000000,198,0,1770.240000,hint,lora,180 -on1,0,0,29,1,0,2254,5224.906400,198,5,2190.330970,hint,lora,180 -on8,0,0,29,1,0,1734,5224.898720,198,5,2169.415078,hint,lora,180 -on6,0,0,25,1,0,990,4649.202560,198,2,1912.001434,hint,lora,180 -on9,0,0,25,1,0,521,4505.197440,198,1,1887.807181,hint,lora,180 -on11,0,0,30,1,0,2017,5403.603840,199,7,2310.928717,hint,lora,180 -on3,0,0,25,1,0,533,4503.200000,199,1,1881.951795,hint,lora,180 -on5,0,0,28,1,0,2654,5157.400000,199,6,2131.006566,hint,lora,180 -on9,0,0,28,1,0,1449,5042.902560,199,4,2093.257229,hint,lora,180 -on8,0,0,29,1,0,2412,5222.900000,199,5,2176.534362,hint,lora,180 -on0,1,11,24,0,0,0,4320.000000,199,0,2099.200205,hint,lora,180 -on4,0,0,25,1,0,1252,4501.005120,199,1,1828.786253,hint,lora,180 -on10,0,0,25,1,0,1061,4502.000000,199,1,1857.824000,hint,lora,180 -on6,0,0,25,1,0,328,4502.001280,199,1,1888.400717,hint,lora,180 -on1,0,0,26,1,0,1866,4958.200000,199,4,2088.719386,hint,lora,180 -on2,0,0,27,1,0,1515,4863.000000,199,3,2042.591590,hint,lora,180 -on7,0,0,32,1,0,2507,5763.200000,199,8,2401.198362,hint,lora,180 -on3,0,0,28,1,0,1098,5044.002560,200,4,2139.280205,hint,lora,180 -on10,0,0,25,1,0,0,4505.603840,200,1,1902.514765,hint,lora,180 -on11,0,0,28,1,0,1358,5162.000000,200,6,2209.936819,hint,lora,180 -on1,0,0,25,1,0,2071,4501.498720,200,1,1860.920102,hint,lora,180 -on0,1,9,24,0,0,0,4320.000000,200,0,2264.160000,hint,lora,180 -on5,0,0,26,1,0,753,4684.000000,200,2,1984.224000,hint,lora,180 -on8,0,0,27,1,0,1268,4864.003840,200,3,2051.553741,hint,lora,180 -on2,0,0,26,0,0,4385,4680.500000,200,2,1900.935386,hint,lora,180 -on7,0,0,25,1,0,270,4506.298720,200,1,1918.551898,hint,lora,180 -on9,0,0,25,1,0,654,4502.998720,200,1,1831.487283,hint,lora,180 -on6,0,0,26,1,0,1211,4860.701280,200,3,2023.848512,hint,lora,180 -on4,0,0,25,0,0,4194,4616.300000,200,3,1938.199181,hint,lora,180 -on6,0,0,24,1,0,3467,4347.000000,1,0,1764.400000,extended,lora,180 -on9,0,0,24,1,0,2880,4320.000000,1,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,759,4339.000000,1,0,1761.200000,extended,lora,180 -on8,0,0,24,1,0,1279,4320.000000,1,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1443,4320.000000,1,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1620,4320.000000,1,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2030,4350.000000,1,0,1765.600000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,1,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,2845,4445.000000,1,0,1803.600000,extended,lora,180 -on1,0,0,24,1,0,249,4369.000000,1,0,1773.200000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,1,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4539.000000,1,0,2094.000000,extended,lora,180 -on10,0,0,24,1,0,3022,4442.000000,2,0,1802.400000,extended,lora,180 -on3,0,0,24,1,0,1080,4320.000000,2,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2193,4333.000000,2,0,1758.800000,extended,lora,180 -on7,0,0,24,1,0,1800,4320.000000,2,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,795,4375.000000,2,0,1775.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,2,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1980,4320.000000,2,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4827.000000,2,0,2196.400000,extended,lora,180 -on6,0,0,24,1,0,571,4331.000000,2,0,1758.000000,extended,lora,180 -on2,0,0,23,1,0,2170,4310.000000,2,0,1749.600000,extended,lora,180 -on9,0,0,24,1,0,822,4402.000000,2,0,1786.400000,extended,lora,180 -on5,0,0,24,1,0,1632,4320.000000,2,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,900,4320.000000,3,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4868.000000,3,0,2212.640000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,3,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2439,4399.000000,3,0,1785.200000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,3,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,389,4329.000000,3,0,1757.200000,extended,lora,180 -on1,0,0,24,1,0,1440,4320.000000,3,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,473,4413.000000,3,0,1790.800000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,3,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,3,0,1753.600000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,3,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,1343,4383.000000,3,0,1778.800000,extended,lora,180 -on9,0,0,24,1,0,720,4320.000000,4,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,3240,4320.000000,4,0,1753.600000,extended,lora,180 -on0,1,8,24,0,0,0,4809.000000,4,0,2134.800000,extended,lora,180 -on2,0,0,24,1,0,2700,4320.000000,4,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,180,4320.000000,4,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,17,4320.000000,4,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,4,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,1800,4320.000000,4,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2096,4416.000000,4,0,1792.000000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,4192,4352.000000,5,0,1766.400000,extended,lora,180 -on0,1,11,24,0,0,0,4697.000000,5,0,2173.200000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,5,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,627,4387.000000,5,0,1780.400000,extended,lora,180 -on7,0,0,24,1,0,1103,4323.000000,5,0,1754.800000,extended,lora,180 -on6,0,0,24,1,0,1440,4320.000000,5,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,604,4364.000000,5,0,1771.200000,extended,lora,180 -on2,0,0,24,1,0,3005,4425.000000,5,0,1795.600000,extended,lora,180 -on8,0,0,23,1,0,3596,4296.000000,5,0,1744.000000,extended,lora,180 -on11,0,0,24,1,0,2747,4347.000000,5,0,1764.400000,extended,lora,180 -on1,0,0,24,1,0,3420,4320.000000,5,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,0,4320.000000,5,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1756,4436.000000,6,0,1800.000000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,1260,4320.000000,6,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,6,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1080,4320.000000,6,0,1753.600000,extended,lora,180 -on0,1,8,24,0,0,0,4597.000000,6,0,2056.400000,extended,lora,180 -on4,0,0,24,1,0,3347,4407.000000,6,0,1788.400000,extended,lora,180 -on3,0,0,24,1,0,1503,4363.000000,6,0,1770.800000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,1980,4320.000000,6,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2872,4472.000000,6,0,1814.400000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,extended,lora,180 -on0,1,7,24,0,0,0,4654.000000,7,0,2047.200000,extended,lora,180 -on6,0,0,24,1,0,4140,4320.000000,7,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,1795,4475.000000,7,0,1815.600000,extended,lora,180 -on10,0,0,24,1,0,23,4323.000000,7,0,1754.800000,extended,lora,180 -on8,0,0,24,1,0,360,4320.000000,7,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,3859,4379.000000,7,0,1777.200000,extended,lora,180 -on1,0,0,24,1,0,235,4355.000000,7,0,1767.600000,extended,lora,180 -on9,0,0,24,1,0,1260,4320.000000,7,0,1753.600000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,extended,lora,180 -on0,1,9,23,0,0,0,4740.000000,8,0,2137.760000,extended,lora,180 -on3,0,0,23,0,0,4239,4239.000000,8,0,1695.600000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,8,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,164,4464.000000,8,0,1811.200000,extended,lora,180 -on11,0,0,24,1,0,540,4320.000000,8,0,1753.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,8,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1889,4389.000000,8,0,1781.200000,extended,lora,180 -on1,0,0,24,1,0,278,4398.000000,8,0,1784.800000,extended,lora,180 -on4,0,0,24,1,0,320,4440.000000,8,0,1801.600000,extended,lora,180 -on2,0,0,24,1,0,3181,4421.000000,8,0,1794.000000,extended,lora,180 -on9,0,0,23,1,0,827,4380.000000,8,0,1777.600000,extended,lora,180 -on8,0,0,24,1,0,32,4332.000000,8,0,1758.400000,extended,lora,180 -on11,0,0,24,1,0,412,4352.000000,9,0,1766.400000,extended,lora,180 -on6,0,0,24,1,0,644,4404.000000,9,0,1787.200000,extended,lora,180 -on2,0,0,24,1,0,2424,4384.000000,9,0,1779.200000,extended,lora,180 -on7,0,0,24,1,0,2067,4387.000000,9,0,1780.400000,extended,lora,180 -on9,0,0,24,1,0,1260,4320.000000,9,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4863.000000,9,0,2210.800000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,9,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,154,4454.000000,9,0,1807.200000,extended,lora,180 -on4,0,0,24,1,0,1620,4320.000000,9,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1080,4320.000000,9,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3,4320.000000,9,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,560,4320.000000,9,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1573,4433.000000,10,0,1798.800000,extended,lora,180 -on10,0,0,24,1,0,2733,4333.000000,10,0,1758.800000,extended,lora,180 -on7,0,0,24,1,0,650,4410.000000,10,0,1789.600000,extended,lora,180 -on0,1,11,24,0,0,0,4740.000000,10,0,2190.400000,extended,lora,180 -on4,0,0,24,1,0,1422,4462.000000,10,0,1810.400000,extended,lora,180 -on6,0,0,24,1,0,937,4337.000000,10,0,1760.400000,extended,lora,180 -on9,0,0,24,1,0,1353,4393.000000,10,0,1782.800000,extended,lora,180 -on8,0,0,24,1,0,2880,4320.000000,10,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,941,4341.000000,10,0,1762.000000,extended,lora,180 -on1,0,0,24,1,0,159,4459.000000,10,0,1809.200000,extended,lora,180 -on5,0,0,24,1,0,2003,4323.000000,10,0,1754.800000,extended,lora,180 -on11,0,0,24,1,0,566,4326.000000,10,0,1756.000000,extended,lora,180 -on3,0,0,24,1,0,1800,4320.000000,11,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,540,4320.000000,11,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,992,4392.000000,11,0,1782.400000,extended,lora,180 -on8,0,0,24,1,0,1646,4326.000000,11,0,1756.000000,extended,lora,180 -on2,0,0,24,1,0,1240,4460.000000,11,0,1809.600000,extended,lora,180 -on9,0,0,24,1,0,2340,4320.000000,11,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,34,4334.000000,11,0,1759.200000,extended,lora,180 -on5,0,0,24,1,0,845,4425.000000,11,0,1795.600000,extended,lora,180 -on10,0,0,24,1,0,840,4420.000000,11,0,1793.600000,extended,lora,180 -on7,0,0,24,1,0,1,4320.000000,11,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,5035.000000,11,0,2302.000000,extended,lora,180 -on4,0,0,24,1,0,1663,4343.000000,11,0,1762.800000,extended,lora,180 -on3,0,0,24,1,0,540,4320.000000,12,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,366,4320.000000,12,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,944,4344.000000,12,0,1763.200000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,12,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2623,4403.000000,12,0,1786.800000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,12,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1799,4479.000000,12,0,1817.200000,extended,lora,180 -on4,0,0,24,1,0,1800,4320.000000,12,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2456,4416.000000,12,0,1792.000000,extended,lora,180 -on1,0,0,24,1,0,924,4324.000000,12,0,1755.200000,extended,lora,180 -on8,0,0,24,1,0,2911,4331.000000,12,0,1758.000000,extended,lora,180 -on0,1,10,24,0,0,0,4724.000000,12,0,2156.000000,extended,lora,180 -on7,0,0,24,1,0,1551,4411.000000,13,0,1790.000000,extended,lora,180 -on3,0,0,24,1,0,753,4333.000000,13,0,1758.800000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,120,4420.000000,13,0,1793.600000,extended,lora,180 -on2,0,0,23,0,0,4310,4310.000000,13,0,1724.000000,extended,lora,180 -on10,0,0,24,1,0,3952,4472.000000,13,0,1814.400000,extended,lora,180 -on9,0,0,24,1,0,438,4378.000000,13,0,1776.800000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,3,4320.000000,13,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,extended,lora,180 -on0,1,7,24,0,0,0,4460.000000,13,0,1979.200000,extended,lora,180 -on1,0,0,24,1,0,1813,4320.000000,13,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,360,4320.000000,14,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,900,4320.000000,14,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,4306,4466.000000,14,0,1812.000000,extended,lora,180 -on0,1,10,24,0,0,0,4565.000000,14,0,2099.280000,extended,lora,180 -on3,0,0,24,1,0,0,4320.000000,14,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,180,4320.000000,14,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,599,4359.000000,14,0,1769.200000,extended,lora,180 -on11,0,0,24,1,0,1408,4448.000000,14,0,1804.800000,extended,lora,180 -on2,0,0,24,1,0,1094,4320.000000,14,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,720,4320.000000,14,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2383,4343.000000,14,0,1762.800000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,14,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,1263,4320.000000,15,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2700,4320.000000,15,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1800,4320.000000,15,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,0,4320.000000,15,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,3960,4320.000000,15,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2301,4441.000000,15,0,1802.000000,extended,lora,180 -on11,0,0,24,1,0,540,4320.000000,15,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2520,4320.000000,15,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4907.000000,15,0,2260.400000,extended,lora,180 -on8,0,0,24,1,0,999,4399.000000,15,0,1785.200000,extended,lora,180 -on2,0,0,24,1,0,1983,4320.000000,15,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,774,4354.000000,15,0,1767.200000,extended,lora,180 -on7,0,0,23,1,0,1382,4249.000000,16,0,1725.200000,extended,lora,180 -on3,0,0,24,1,0,1371,4411.000000,16,0,1790.000000,extended,lora,180 -on8,0,0,24,1,0,900,4320.000000,16,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2700,4320.000000,16,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1518,4378.000000,16,0,1776.800000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,2421,4381.000000,16,0,1778.000000,extended,lora,180 -on0,1,9,24,0,0,0,4559.000000,16,0,2066.800000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,81,4381.000000,16,0,1778.000000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,16,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2100,4420.000000,16,0,1793.600000,extended,lora,180 -on0,1,10,24,0,0,0,4415.000000,17,0,2041.200000,extended,lora,180 -on6,0,0,24,1,0,1980,4320.000000,17,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2488,4448.000000,17,0,1804.800000,extended,lora,180 -on11,0,0,24,1,0,720,4320.000000,17,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3602,4320.000000,17,0,1753.600000,extended,lora,180 -on2,0,0,23,1,0,1392,4302.000000,17,0,1746.400000,extended,lora,180 -on10,0,0,24,1,0,1715,4395.000000,17,0,1783.600000,extended,lora,180 -on3,0,0,24,1,0,180,4320.000000,17,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2160,4320.000000,17,0,1753.600000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,17,0,1728.000000,extended,lora,180 -on4,0,0,23,1,0,497,4437.000000,17,0,1800.400000,extended,lora,180 -on9,0,0,24,1,0,1501,4361.000000,17,0,1770.000000,extended,lora,180 -on3,0,0,24,1,0,399,4339.000000,18,0,1761.200000,extended,lora,180 -on5,0,0,24,1,0,491,4431.000000,18,0,1798.000000,extended,lora,180 -on8,0,0,24,1,0,0,4320.000000,18,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2700,4320.000000,18,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1440,4320.000000,18,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1098,4320.000000,18,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2160,4320.000000,18,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,18,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,5268.000000,18,0,2395.200000,extended,lora,180 -on6,0,0,24,1,0,1710,4390.000000,18,0,1781.600000,extended,lora,180 -on11,0,0,24,1,0,3420,4320.000000,18,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,900,4320.000000,18,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1493,4353.000000,19,0,1766.800000,extended,lora,180 -on3,0,0,24,1,0,1182,4402.000000,19,0,1786.400000,extended,lora,180 -on10,0,0,24,1,0,0,4320.000000,19,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,19,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,19,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4985.000000,19,0,2285.200000,extended,lora,180 -on1,0,0,24,1,0,720,4320.000000,19,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,499,4439.000000,19,0,1801.200000,extended,lora,180 -on9,0,0,24,1,0,1980,4320.000000,19,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,195,4320.000000,19,0,1753.600000,extended,lora,180 -on2,0,0,22,1,0,1972,4221.000000,19,0,1714.000000,extended,lora,180 -on4,0,0,24,1,0,1499,4359.000000,19,0,1769.200000,extended,lora,180 -on8,0,0,24,1,0,2520,4320.000000,20,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2586,4366.000000,20,0,1772.000000,extended,lora,180 -on0,1,10,24,0,0,0,4848.000000,20,0,2208.000000,extended,lora,180 -on2,0,0,24,1,0,1980,4320.000000,20,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,720,4320.000000,20,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2441,4401.000000,20,0,1786.000000,extended,lora,180 -on11,0,0,24,1,0,1765,4445.000000,20,0,1803.600000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,20,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2195,4335.000000,20,0,1759.600000,extended,lora,180 -on3,0,0,24,1,0,1766,4446.000000,20,0,1804.000000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,20,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,358,4478.000000,20,0,1816.800000,extended,lora,180 -on3,0,0,24,1,0,1980,4320.000000,21,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,720,4320.000000,21,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,3420,4320.000000,21,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4905.000000,21,0,2252.720000,extended,lora,180 -on7,0,0,24,1,0,3260,4320.000000,21,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2331,4471.000000,21,0,1814.000000,extended,lora,180 -on6,0,0,24,1,0,1440,4320.000000,21,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,900,4320.000000,21,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,0,4320.000000,21,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,3960,4320.000000,21,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1080,4320.000000,21,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,33,4333.000000,21,0,1758.800000,extended,lora,180 -on7,0,0,24,1,0,4067,4407.000000,22,0,1788.400000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1440,4320.000000,22,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,22,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,62,4362.000000,22,0,1770.400000,extended,lora,180 -on1,0,0,24,1,0,564,4324.000000,22,0,1755.200000,extended,lora,180 -on0,1,8,24,0,0,0,4707.000000,22,0,2099.280000,extended,lora,180 -on9,0,0,24,1,0,1260,4320.000000,22,0,1753.600000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,898,4478.000000,22,0,1816.800000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,553,4320.000000,22,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2464,4424.000000,23,0,1795.200000,extended,lora,180 -on10,0,0,24,1,0,981,4381.000000,23,0,1778.000000,extended,lora,180 -on1,0,0,24,1,0,1800,4320.000000,23,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1980,4320.000000,23,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1153,4373.000000,23,0,1774.800000,extended,lora,180 -on11,0,0,24,1,0,135,4435.000000,23,0,1799.600000,extended,lora,180 -on0,1,11,24,0,0,0,4978.000000,23,0,2279.200000,extended,lora,180 -on2,0,0,24,1,0,2520,4320.000000,23,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,118,4418.000000,23,0,1792.800000,extended,lora,180 -on4,0,0,24,1,0,3718,4418.000000,23,0,1792.800000,extended,lora,180 -on7,0,0,23,1,0,720,4217.000000,23,0,1712.400000,extended,lora,180 -on5,0,0,24,1,0,1003,4403.000000,23,0,1786.800000,extended,lora,180 -on2,0,0,24,1,0,2899,4320.000000,24,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,3015,4435.000000,24,0,1799.600000,extended,lora,180 -on6,0,0,23,1,0,540,4248.000000,24,0,1724.800000,extended,lora,180 -on3,0,0,24,1,0,1440,4320.000000,24,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,261,4381.000000,24,0,1778.000000,extended,lora,180 -on9,0,0,24,1,0,3240,4320.000000,24,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1103,4323.000000,24,0,1754.800000,extended,lora,180 -on8,0,0,24,1,0,370,4320.000000,24,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,444,4384.000000,24,0,1779.200000,extended,lora,180 -on0,1,11,24,0,0,0,4791.000000,24,0,2207.760000,extended,lora,180 -on7,0,0,24,1,0,1805,4320.000000,24,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3420,4320.000000,24,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,62,4362.000000,25,0,1770.400000,extended,lora,180 -on4,0,0,24,1,0,2047,4367.000000,25,0,1772.400000,extended,lora,180 -on2,0,0,24,1,0,1682,4362.000000,25,0,1770.400000,extended,lora,180 -on1,0,0,24,1,0,2081,4401.000000,25,0,1786.000000,extended,lora,180 -on6,0,0,24,1,0,767,4347.000000,25,0,1764.400000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,25,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,122,4422.000000,25,0,1794.400000,extended,lora,180 -on11,0,0,24,1,0,540,4320.000000,25,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,811,4391.000000,25,0,1782.000000,extended,lora,180 -on0,1,10,23,0,0,0,5008.000000,25,0,2259.200000,extended,lora,180 -on5,0,0,24,1,0,1765,4445.000000,25,0,1803.600000,extended,lora,180 -on10,0,0,24,1,0,360,4320.000000,25,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,26,4326.000000,26,0,1756.000000,extended,lora,180 -on7,0,0,24,1,0,1130,4350.000000,26,0,1765.600000,extended,lora,180 -on0,1,9,24,0,0,0,4599.000000,26,0,2089.200000,extended,lora,180 -on10,0,0,24,1,0,586,4346.000000,26,0,1764.000000,extended,lora,180 -on6,0,0,24,1,0,2382,4342.000000,26,0,1762.400000,extended,lora,180 -on8,0,0,24,1,0,2340,4320.000000,26,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1675,4355.000000,26,0,1767.600000,extended,lora,180 -on1,0,0,24,1,0,3023,4443.000000,26,0,1802.800000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,3600,4320.000000,26,0,1753.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,947,4347.000000,26,0,1764.400000,extended,lora,180 -on5,0,0,24,1,0,1311,4351.000000,27,0,1766.000000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,27,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2388,4348.000000,27,0,1764.800000,extended,lora,180 -on8,0,0,24,1,0,922,4322.000000,27,0,1754.400000,extended,lora,180 -on2,0,0,24,1,0,1283,4323.000000,27,0,1754.800000,extended,lora,180 -on10,0,0,24,1,0,3453,4333.000000,27,0,1758.800000,extended,lora,180 -on4,0,0,24,1,0,1805,4320.000000,27,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2160,4320.000000,27,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4653.000000,27,0,2152.400000,extended,lora,180 -on3,0,0,24,1,0,1442,4320.000000,27,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,27,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,996,4396.000000,27,0,1784.000000,extended,lora,180 -on1,0,0,24,1,0,2133,4453.000000,28,0,1806.800000,extended,lora,180 -on8,0,0,24,1,0,540,4320.000000,28,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1528,4388.000000,28,0,1780.800000,extended,lora,180 -on5,0,0,24,1,0,781,4361.000000,28,0,1770.000000,extended,lora,180 -on7,0,0,24,1,0,1080,4320.000000,28,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,360,4320.000000,28,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,extended,lora,180 -on0,1,9,24,0,0,0,4894.000000,28,0,2197.600000,extended,lora,180 -on10,0,0,24,1,0,1800,4320.000000,28,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,4023,4363.000000,28,0,1770.800000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,2002,4322.000000,28,0,1754.400000,extended,lora,180 -on11,0,0,24,1,0,3420,4320.000000,29,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1620,4320.000000,29,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,345,4465.000000,29,0,1811.600000,extended,lora,180 -on8,0,0,24,1,0,2037,4357.000000,29,0,1768.400000,extended,lora,180 -on7,0,0,24,1,0,647,4407.000000,29,0,1788.400000,extended,lora,180 -on4,0,0,23,1,0,2999,4419.000000,29,0,1793.200000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,29,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,1415,4455.000000,29,0,1807.600000,extended,lora,180 -on5,0,0,24,1,0,536,4476.000000,29,0,1816.000000,extended,lora,180 -on0,1,10,24,0,0,0,4531.000000,29,0,2090.800000,extended,lora,180 -on3,0,0,24,1,0,1080,4320.000000,29,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1906,4406.000000,29,0,1788.000000,extended,lora,180 -on1,0,0,24,1,0,3704,4404.000000,30,0,1787.200000,extended,lora,180 -on11,0,0,24,1,0,1800,4320.000000,30,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,720,4320.000000,30,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1228,4448.000000,30,0,1804.800000,extended,lora,180 -on0,1,11,24,0,0,0,4828.000000,30,0,2228.800000,extended,lora,180 -on2,0,0,24,1,0,138,4438.000000,30,0,1800.800000,extended,lora,180 -on3,0,0,24,1,0,280,4400.000000,30,0,1785.600000,extended,lora,180 -on8,0,0,24,1,0,3020,4440.000000,30,0,1801.600000,extended,lora,180 -on7,0,0,24,1,0,931,4331.000000,30,0,1758.000000,extended,lora,180 -on5,0,0,24,1,0,237,4357.000000,30,0,1768.400000,extended,lora,180 -on9,0,0,24,1,0,3177,4417.000000,30,0,1792.400000,extended,lora,180 -on4,0,0,24,1,0,1260,4320.000000,30,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,720,4320.000000,31,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4885.000000,31,0,2194.000000,extended,lora,180 -on10,0,0,24,1,0,1980,4320.000000,31,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2420,4380.000000,31,0,1777.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,31,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,360,4320.000000,31,0,1753.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,31,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,900,4320.000000,31,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,0,4320.000000,31,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,3420,4320.000000,31,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,315,4435.000000,31,0,1799.600000,extended,lora,180 -on1,0,0,24,1,0,1505,4365.000000,31,0,1771.600000,extended,lora,180 -on10,0,0,24,1,0,2763,4363.000000,32,0,1770.800000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,32,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2160,4320.000000,32,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1620,4320.000000,32,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,540,4320.000000,32,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1603,4463.000000,32,0,1810.800000,extended,lora,180 -on4,0,0,24,1,0,1800,4320.000000,32,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1980,4320.000000,32,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,5115.000000,32,0,2337.200000,extended,lora,180 -on6,0,0,24,1,0,419,4359.000000,32,0,1769.200000,extended,lora,180 -on9,0,0,24,1,0,3370,4430.000000,32,0,1797.600000,extended,lora,180 -on3,0,0,24,1,0,3309,4369.000000,32,0,1773.200000,extended,lora,180 -on2,0,0,24,1,0,973,4373.000000,33,0,1774.800000,extended,lora,180 -on9,0,0,24,1,0,2664,4444.000000,33,0,1803.200000,extended,lora,180 -on7,0,0,24,1,0,1620,4320.000000,33,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1292,4332.000000,33,0,1758.400000,extended,lora,180 -on3,0,0,24,1,0,327,4447.000000,33,0,1804.400000,extended,lora,180 -on8,0,0,24,1,0,553,4320.000000,33,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1293,4333.000000,33,0,1758.800000,extended,lora,180 -on10,0,0,24,1,0,3240,4320.000000,33,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4511.000000,33,0,2047.600000,extended,lora,180 -on11,0,0,24,1,0,0,4320.000000,33,0,1753.600000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,2756,4356.000000,34,0,1768.000000,extended,lora,180 -on0,1,8,24,0,0,0,4930.000000,34,0,2182.720000,extended,lora,180 -on11,0,0,24,1,0,2816,4416.000000,34,0,1792.000000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,34,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,720,4320.000000,34,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,540,4320.000000,34,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1260,4320.000000,34,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2309,4449.000000,34,0,1805.200000,extended,lora,180 -on10,0,0,24,1,0,3060,4320.000000,34,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,537,4477.000000,35,0,1816.400000,extended,lora,180 -on2,0,0,24,1,0,1515,4375.000000,35,0,1775.600000,extended,lora,180 -on8,0,0,23,1,0,333,4374.000000,35,0,1775.200000,extended,lora,180 -on1,0,0,24,1,0,446,4386.000000,35,0,1780.000000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,35,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1841,4341.000000,35,0,1762.000000,extended,lora,180 -on9,0,0,24,1,0,239,4359.000000,35,0,1769.200000,extended,lora,180 -on10,0,0,24,1,0,1620,4320.000000,35,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,802,4382.000000,35,0,1778.400000,extended,lora,180 -on7,0,0,24,1,0,724,4320.000000,35,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,540,4320.000000,35,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4921.000000,35,0,2253.200000,extended,lora,180 -on0,1,10,24,0,0,0,4796.000000,36,0,2187.200000,extended,lora,180 -on11,0,0,24,1,0,2934,4354.000000,36,0,1767.200000,extended,lora,180 -on1,0,0,24,1,0,1444,4320.000000,36,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,351,4471.000000,36,0,1814.000000,extended,lora,180 -on4,0,0,24,1,0,154,4454.000000,36,0,1807.200000,extended,lora,180 -on10,0,0,24,1,0,1990,4320.000000,36,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1380,4420.000000,36,0,1793.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,36,0,1728.000000,extended,lora,180 -on8,0,0,23,1,0,3758,4298.000000,36,0,1744.800000,extended,lora,180 -on5,0,0,24,1,0,1320,4360.000000,36,0,1769.600000,extended,lora,180 -on3,0,0,24,1,0,138,4438.000000,36,0,1800.800000,extended,lora,180 -on6,0,0,24,1,0,360,4320.000000,36,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,37,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,37,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,360,4320.000000,37,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,3060,4320.000000,37,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1440,4320.000000,37,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,3729,4429.000000,37,0,1797.200000,extended,lora,180 -on0,1,11,24,0,0,0,4908.000000,37,0,2255.360000,extended,lora,180 -on11,0,0,24,1,0,4140,4320.000000,37,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,900,4320.000000,37,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,540,4320.000000,37,0,1753.600000,extended,lora,180 -on3,0,0,23,1,0,1324,4251.000000,37,0,1726.000000,extended,lora,180 -on9,0,0,24,1,0,2460,4420.000000,37,0,1793.600000,extended,lora,180 -on5,0,0,24,1,0,2294,4434.000000,38,0,1799.200000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,773,4353.000000,38,0,1766.800000,extended,lora,180 -on9,0,0,24,1,0,1833,4333.000000,38,0,1758.800000,extended,lora,180 -on6,0,0,24,1,0,2744,4344.000000,38,0,1763.200000,extended,lora,180 -on11,0,0,24,1,0,900,4320.000000,38,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1800,4320.000000,38,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,749,4329.000000,38,0,1757.200000,extended,lora,180 -on7,0,0,24,1,0,4227,4387.000000,38,0,1780.400000,extended,lora,180 -on0,1,9,24,0,0,0,4659.000000,38,0,2106.960000,extended,lora,180 -on2,0,0,24,1,0,1341,4381.000000,38,0,1778.000000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,2363,4323.000000,39,0,1754.800000,extended,lora,180 -on4,0,0,23,1,0,2726,4221.000000,39,0,1714.000000,extended,lora,180 -on0,1,9,24,0,0,0,4551.000000,39,0,2066.800000,extended,lora,180 -on5,0,0,23,1,0,4018,4198.000000,39,0,1704.800000,extended,lora,180 -on2,0,0,24,1,0,1420,4460.000000,39,0,1809.600000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,1205,4425.000000,39,0,1795.600000,extended,lora,180 -on10,0,0,24,1,0,1178,4398.000000,39,0,1784.800000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,3406,4466.000000,39,0,1812.000000,extended,lora,180 -on11,0,0,24,1,0,18,4320.000000,39,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3060,4320.000000,39,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,3122,4362.000000,40,0,1770.400000,extended,lora,180 -on3,0,0,24,1,0,2069,4389.000000,40,0,1781.200000,extended,lora,180 -on2,0,0,24,1,0,604,4364.000000,40,0,1771.200000,extended,lora,180 -on7,0,0,24,1,0,1308,4348.000000,40,0,1764.800000,extended,lora,180 -on10,0,0,24,1,0,151,4451.000000,40,0,1806.000000,extended,lora,180 -on11,0,0,24,1,0,1620,4320.000000,40,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,40,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,360,4320.000000,40,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4644.000000,40,0,2133.280000,extended,lora,180 -on1,0,0,24,1,0,0,4320.000000,40,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1440,4320.000000,40,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,788,4368.000000,40,0,1772.800000,extended,lora,180 -on5,0,0,24,1,0,3240,4320.000000,41,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1620,4320.000000,41,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1559,4419.000000,41,0,1793.200000,extended,lora,180 -on1,0,0,24,1,0,176,4476.000000,41,0,1816.000000,extended,lora,180 -on9,0,0,24,1,0,619,4379.000000,41,0,1777.200000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,41,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,1080,4320.000000,41,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,117,4417.000000,41,0,1792.400000,extended,lora,180 -on0,1,10,24,0,0,0,5039.000000,41,0,2274.800000,extended,lora,180 -on4,0,0,24,1,0,851,4431.000000,41,0,1798.000000,extended,lora,180 -on2,0,0,24,1,0,450,4390.000000,41,0,1781.600000,extended,lora,180 -on3,0,0,24,1,0,385,4325.000000,41,0,1755.600000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,42,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,1620,4320.000000,42,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,extended,lora,180 -on0,1,8,24,0,0,0,4648.000000,42,0,2068.160000,extended,lora,180 -on11,0,0,24,1,0,2880,4320.000000,42,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1351,4391.000000,42,0,1782.000000,extended,lora,180 -on10,0,0,24,1,0,1351,4391.000000,42,0,1782.000000,extended,lora,180 -on7,0,0,24,1,0,1440,4320.000000,42,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,42,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,219,4339.000000,42,0,1761.200000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,1082,4320.000000,43,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2340,4320.000000,43,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,900,4320.000000,43,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,38,4338.000000,43,0,1760.800000,extended,lora,180 -on6,0,0,24,1,0,3060,4320.000000,43,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,43,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,2525,4320.000000,43,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,720,4320.000000,43,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2340,4320.000000,43,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,527,4467.000000,43,0,1812.400000,extended,lora,180 -on5,0,0,24,1,0,703,4463.000000,43,0,1810.800000,extended,lora,180 -on0,1,10,24,0,0,0,4759.000000,43,0,2178.640000,extended,lora,180 -on0,1,7,24,0,0,0,4338.000000,44,0,1930.880000,extended,lora,180 -on10,0,0,24,1,0,180,4320.000000,44,0,1753.600000,extended,lora,180 -on2,0,0,23,1,0,1260,4225.000000,44,0,1715.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,3240,4320.000000,44,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,975,4375.000000,44,0,1775.600000,extended,lora,180 -on9,0,0,24,1,0,1620,4320.000000,44,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1416,4456.000000,44,0,1808.000000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1853,4353.000000,44,0,1766.800000,extended,lora,180 -on4,0,0,24,1,0,900,4320.000000,45,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,45,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1108,4328.000000,45,0,1756.800000,extended,lora,180 -on0,1,11,24,0,0,0,4827.000000,45,0,2225.200000,extended,lora,180 -on2,0,0,24,1,0,1080,4320.000000,45,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2061,4381.000000,45,0,1778.000000,extended,lora,180 -on10,0,0,24,1,0,1355,4395.000000,45,0,1783.600000,extended,lora,180 -on9,0,0,24,1,0,205,4325.000000,45,0,1755.600000,extended,lora,180 -on8,0,0,24,1,0,172,4472.000000,45,0,1814.400000,extended,lora,180 -on5,0,0,24,1,0,1396,4436.000000,45,0,1800.000000,extended,lora,180 -on7,0,0,24,1,0,2592,4372.000000,45,0,1774.400000,extended,lora,180 -on3,0,0,24,1,0,1825,4325.000000,45,0,1755.600000,extended,lora,180 -on0,1,11,24,0,0,0,5017.000000,46,0,2298.000000,extended,lora,180 -on8,0,0,24,1,0,3385,4445.000000,46,0,1803.600000,extended,lora,180 -on5,0,0,24,1,0,2160,4320.000000,46,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,207,4327.000000,46,0,1756.400000,extended,lora,180 -on6,0,0,24,1,0,3600,4320.000000,46,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3420,4320.000000,46,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,3960,4320.000000,46,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,900,4320.000000,46,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,2896,4320.000000,46,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,71,4371.000000,46,0,1774.000000,extended,lora,180 -on4,0,0,24,1,0,1080,4320.000000,46,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,3021,4441.000000,46,0,1802.000000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,47,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,0,4320.000000,47,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1508,4368.000000,47,0,1772.800000,extended,lora,180 -on4,0,0,24,1,0,846,4426.000000,47,0,1796.000000,extended,lora,180 -on5,0,0,24,1,0,966,4366.000000,47,0,1772.000000,extended,lora,180 -on11,0,0,24,1,0,1749,4429.000000,47,0,1797.200000,extended,lora,180 -on8,0,0,24,1,0,1049,4449.000000,47,0,1805.200000,extended,lora,180 -on0,1,11,24,0,0,0,4899.000000,47,0,2250.800000,extended,lora,180 -on9,0,0,24,1,0,1080,4320.000000,47,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2929,4349.000000,47,0,1765.200000,extended,lora,180 -on10,0,0,24,1,0,2371,4331.000000,47,0,1758.000000,extended,lora,180 -on7,0,0,24,1,0,1701,4381.000000,47,0,1778.000000,extended,lora,180 -on2,0,0,23,1,0,479,4364.000000,48,0,1771.200000,extended,lora,180 -on0,1,10,24,0,0,0,4843.000000,48,0,2202.800000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,48,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,327,4447.000000,48,0,1804.400000,extended,lora,180 -on9,0,0,24,1,0,720,4320.000000,48,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,48,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,294,4414.000000,48,0,1791.200000,extended,lora,180 -on5,0,0,24,1,0,548,4320.000000,48,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1620,4320.000000,48,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2129,4449.000000,48,0,1805.200000,extended,lora,180 -on10,0,0,24,1,0,2832,4432.000000,48,0,1798.400000,extended,lora,180 -on1,0,0,24,1,0,589,4349.000000,48,0,1765.200000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,804,4384.000000,49,0,1779.200000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,3806,4326.000000,49,0,1756.000000,extended,lora,180 -on0,1,7,24,0,0,0,4614.000000,49,0,2034.400000,extended,lora,180 -on5,0,0,24,1,0,900,4320.000000,49,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,89,4389.000000,49,0,1781.200000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,49,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1080,4320.000000,49,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,3060,4320.000000,49,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2820,4420.000000,50,0,1793.600000,extended,lora,180 -on0,1,11,24,0,0,0,5031.000000,50,0,2299.760000,extended,lora,180 -on2,0,0,24,1,0,24,4324.000000,50,0,1755.200000,extended,lora,180 -on3,0,0,24,1,0,1537,4397.000000,50,0,1784.400000,extended,lora,180 -on6,0,0,24,1,0,17,4320.000000,50,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1944,4444.000000,50,0,1803.200000,extended,lora,180 -on5,0,0,24,1,0,2862,4462.000000,50,0,1810.400000,extended,lora,180 -on10,0,0,24,1,0,1440,4320.000000,50,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,45,4345.000000,50,0,1763.600000,extended,lora,180 -on8,0,0,24,1,0,262,4382.000000,50,0,1778.400000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,50,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,360,4320.000000,50,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1620,4320.000000,51,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,540,4320.000000,51,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4588.000000,51,0,2108.480000,extended,lora,180 -on6,0,0,24,1,0,2037,4357.000000,51,0,1768.400000,extended,lora,180 -on9,0,0,24,1,0,2092,4412.000000,51,0,1790.400000,extended,lora,180 -on8,0,0,24,1,0,1557,4417.000000,51,0,1792.400000,extended,lora,180 -on11,0,0,24,1,0,506,4446.000000,51,0,1804.000000,extended,lora,180 -on5,0,0,24,1,0,900,4320.000000,51,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1078,4478.000000,51,0,1816.800000,extended,lora,180 -on10,0,0,24,1,0,289,4409.000000,51,0,1789.200000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,51,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,61,4361.000000,51,0,1770.000000,extended,lora,180 -on8,0,0,24,1,0,1080,4320.000000,52,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,52,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1405,4445.000000,52,0,1803.600000,extended,lora,180 -on3,0,0,24,1,0,293,4413.000000,52,0,1790.800000,extended,lora,180 -on10,0,0,24,1,0,609,4369.000000,52,0,1773.200000,extended,lora,180 -on0,1,11,24,0,0,0,4625.000000,52,0,2146.160000,extended,lora,180 -on2,0,0,24,1,0,3553,4433.000000,52,0,1798.800000,extended,lora,180 -on5,0,0,24,1,0,246,4366.000000,52,0,1772.000000,extended,lora,180 -on11,0,0,24,1,0,777,4357.000000,52,0,1768.400000,extended,lora,180 -on4,0,0,24,1,0,1980,4320.000000,52,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2700,4320.000000,52,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,461,4401.000000,52,0,1786.000000,extended,lora,180 -on10,0,0,23,1,0,540,4279.000000,53,0,1737.200000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,53,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,360,4320.000000,53,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,53,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,293,4413.000000,53,0,1790.800000,extended,lora,180 -on4,0,0,24,1,0,720,4320.000000,53,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1800,4320.000000,53,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2520,4320.000000,53,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2228,4368.000000,53,0,1772.800000,extended,lora,180 -on8,0,0,24,1,0,2142,4462.000000,53,0,1810.400000,extended,lora,180 -on0,1,10,24,0,0,0,4850.000000,53,0,2207.360000,extended,lora,180 -on1,0,0,24,1,0,845,4425.000000,53,0,1795.600000,extended,lora,180 -on6,0,0,24,1,0,0,4320.000000,54,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1553,4413.000000,54,0,1790.800000,extended,lora,180 -on5,0,0,24,1,0,1297,4337.000000,54,0,1760.400000,extended,lora,180 -on3,0,0,24,1,0,2160,4320.000000,54,0,1753.600000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,54,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,3060,4320.000000,54,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1157,4377.000000,54,0,1776.400000,extended,lora,180 -on4,0,0,24,1,0,1440,4320.000000,54,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1121,4341.000000,54,0,1762.000000,extended,lora,180 -on0,1,10,24,0,0,0,4615.000000,54,0,2114.320000,extended,lora,180 -on1,0,0,24,1,0,2340,4320.000000,54,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2766,4366.000000,54,0,1772.000000,extended,lora,180 -on9,0,0,24,1,0,1980,4320.000000,55,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,3240,4320.000000,55,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1996,4320.000000,55,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1121,4341.000000,55,0,1762.000000,extended,lora,180 -on5,0,0,23,1,0,164,4409.000000,55,0,1789.200000,extended,lora,180 -on8,0,0,24,1,0,580,4340.000000,55,0,1761.600000,extended,lora,180 -on1,0,0,24,1,0,600,4360.000000,55,0,1769.600000,extended,lora,180 -on6,0,0,24,1,0,1620,4320.000000,55,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2340,4320.000000,55,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4751.000000,55,0,2140.400000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,180,4320.000000,56,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1525,4385.000000,56,0,1779.600000,extended,lora,180 -on5,0,0,24,1,0,0,4320.000000,56,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,437,4377.000000,56,0,1776.400000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,2803,4403.000000,56,0,1786.800000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,lora,180 -on0,1,7,24,0,0,0,4670.000000,56,0,2060.000000,extended,lora,180 -on2,0,0,24,1,0,1800,4320.000000,56,0,1753.600000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1032,4432.000000,56,0,1798.400000,extended,lora,180 -on3,0,0,23,1,0,1080,4281.000000,57,0,1738.000000,extended,lora,180 -on0,1,9,24,0,0,0,5006.000000,57,0,2239.200000,extended,lora,180 -on10,0,0,24,1,0,1339,4379.000000,57,0,1777.200000,extended,lora,180 -on6,0,0,24,1,0,2520,4320.000000,57,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1395,4435.000000,57,0,1799.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,457,4397.000000,57,0,1784.400000,extended,lora,180 -on9,0,0,24,1,0,3316,4376.000000,57,0,1776.000000,extended,lora,180 -on11,0,0,24,1,0,540,4320.000000,57,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,1650,4330.000000,57,0,1757.600000,extended,lora,180 -on2,0,0,24,1,0,1705,4385.000000,57,0,1779.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,175,4475.000000,58,0,1815.600000,extended,lora,180 -on1,0,0,24,1,0,540,4320.000000,58,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,9,4320.000000,58,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,1209,4429.000000,58,0,1797.200000,extended,lora,180 -on10,0,0,24,1,0,1620,4320.000000,58,0,1753.600000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,extended,lora,180 -on0,1,8,24,0,0,0,4840.000000,58,0,2150.400000,extended,lora,180 -on2,0,0,24,1,0,900,4320.000000,58,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1919,4419.000000,58,0,1793.200000,extended,lora,180 -on6,0,0,24,1,0,425,4365.000000,58,0,1771.600000,extended,lora,180 -on8,0,0,24,1,0,139,4439.000000,59,0,1801.200000,extended,lora,180 -on3,0,0,24,1,0,2501,4461.000000,59,0,1810.000000,extended,lora,180 -on5,0,0,24,1,0,2568,4348.000000,59,0,1764.800000,extended,lora,180 -on10,0,0,24,1,0,1039,4439.000000,59,0,1801.200000,extended,lora,180 -on4,0,0,24,1,0,1977,4477.000000,59,0,1816.400000,extended,lora,180 -on0,1,10,24,0,0,0,4589.000000,59,0,2108.080000,extended,lora,180 -on2,0,0,24,1,0,1505,4365.000000,59,0,1771.600000,extended,lora,180 -on9,0,0,24,1,0,360,4320.000000,59,0,1753.600000,extended,lora,180 -on11,0,0,23,1,0,1620,4278.000000,59,0,1736.800000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,59,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,79,4379.000000,59,0,1777.200000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,59,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3240,4320.000000,60,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,360,4320.000000,60,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3991,4331.000000,60,0,1758.000000,extended,lora,180 -on9,0,0,24,1,0,238,4358.000000,60,0,1768.800000,extended,lora,180 -on2,0,0,24,1,0,3420,4320.000000,60,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,0,4320.000000,60,0,1753.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,60,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,540,4320.000000,60,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,4137,4477.000000,60,0,1816.400000,extended,lora,180 -on0,1,10,24,0,0,0,4926.000000,60,0,2231.360000,extended,lora,180 -on5,0,0,24,1,0,197,4320.000000,60,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,2686,4466.000000,60,0,1812.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1455,4320.000000,61,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,61,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1448,4320.000000,61,0,1753.600000,extended,lora,180 -on4,0,0,23,1,0,2636,4416.000000,61,0,1792.000000,extended,lora,180 -on8,0,0,24,1,0,1980,4320.000000,61,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2700,4320.000000,61,0,1753.600000,extended,lora,180 -on9,0,0,23,1,0,180,4251.000000,61,0,1726.000000,extended,lora,180 -on0,1,9,24,0,0,0,4744.000000,61,0,2132.960000,extended,lora,180 -on2,0,0,24,1,0,0,4320.000000,61,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,61,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,720,4320.000000,62,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2751,4351.000000,62,0,1766.000000,extended,lora,180 -on5,0,0,24,1,0,1440,4320.000000,62,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3344,4404.000000,62,0,1787.200000,extended,lora,180 -on9,0,0,24,1,0,4183,4343.000000,62,0,1762.800000,extended,lora,180 -on6,0,0,24,1,0,900,4320.000000,62,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4783.000000,62,0,2188.400000,extended,lora,180 -on1,0,0,24,1,0,1771,4451.000000,62,0,1806.000000,extended,lora,180 -on4,0,0,24,1,0,195,4320.000000,62,0,1753.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,2520,4320.000000,62,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,525,4465.000000,62,0,1811.600000,extended,lora,180 -on3,0,0,24,1,0,3060,4320.000000,63,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,3447,4327.000000,63,0,1756.400000,extended,lora,180 -on7,0,0,24,1,0,99,4399.000000,63,0,1785.200000,extended,lora,180 -on8,0,0,24,1,0,1661,4341.000000,63,0,1762.000000,extended,lora,180 -on2,0,0,24,1,0,893,4473.000000,63,0,1814.800000,extended,lora,180 -on0,1,11,24,0,0,0,4632.000000,63,0,2151.680000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,63,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,497,4437.000000,63,0,1800.400000,extended,lora,180 -on4,0,0,24,1,0,1980,4320.000000,63,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1260,4320.000000,63,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,540,4320.000000,63,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1917,4417.000000,63,0,1792.400000,extended,lora,180 -on0,1,10,24,0,0,0,4605.000000,64,0,2115.600000,extended,lora,180 -on8,0,0,24,1,0,720,4320.000000,64,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3420,4320.000000,64,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1064,4464.000000,64,0,1811.200000,extended,lora,180 -on4,0,0,24,1,0,540,4320.000000,64,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,3060,4320.000000,64,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,64,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,2076,4396.000000,64,0,1784.000000,extended,lora,180 -on6,0,0,24,1,0,2160,4320.000000,64,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1198,4418.000000,64,0,1792.800000,extended,lora,180 -on11,0,0,24,1,0,1623,4320.000000,64,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,3870,4390.000000,64,0,1781.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,65,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,2520,4320.000000,65,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,900,4320.000000,65,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,65,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,1696,4376.000000,65,0,1776.000000,extended,lora,180 -on7,0,0,24,1,0,183,4320.000000,65,0,1753.600000,extended,lora,180 -on0,1,8,24,0,0,0,4595.000000,65,0,2058.800000,extended,lora,180 -on11,0,0,24,1,0,581,4341.000000,65,0,1762.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,65,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,822,4402.000000,65,0,1786.400000,extended,lora,180 -on6,0,0,24,1,0,3600,4320.000000,65,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1182,4402.000000,65,0,1786.400000,extended,lora,180 -on7,0,0,24,1,0,886,4466.000000,66,0,1812.000000,extended,lora,180 -on10,0,0,24,1,0,180,4320.000000,66,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,837,4417.000000,66,0,1792.400000,extended,lora,180 -on2,0,0,24,1,0,678,4438.000000,66,0,1800.800000,extended,lora,180 -on1,0,0,24,1,0,67,4367.000000,66,0,1772.400000,extended,lora,180 -on5,0,0,24,1,0,94,4394.000000,66,0,1783.200000,extended,lora,180 -on3,0,0,24,1,0,4015,4355.000000,66,0,1767.600000,extended,lora,180 -on4,0,0,24,1,0,360,4320.000000,66,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4893.000000,66,0,2242.000000,extended,lora,180 -on8,0,0,24,1,0,3625,4325.000000,66,0,1755.600000,extended,lora,180 -on9,0,0,24,1,0,1260,4320.000000,66,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,595,4355.000000,66,0,1767.600000,extended,lora,180 -on7,0,0,24,1,0,1003,4403.000000,67,0,1786.800000,extended,lora,180 -on8,0,0,24,1,0,1980,4320.000000,67,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,43,4343.000000,67,0,1762.800000,extended,lora,180 -on5,0,0,24,1,0,2880,4320.000000,67,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2411,4371.000000,67,0,1774.000000,extended,lora,180 -on0,1,10,24,0,0,0,4721.000000,67,0,2152.880000,extended,lora,180 -on6,0,0,24,1,0,1037,4437.000000,67,0,1800.400000,extended,lora,180 -on1,0,0,24,1,0,152,4452.000000,67,0,1806.400000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,67,0,1753.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,67,0,1728.000000,extended,lora,180 -on9,0,0,23,1,0,1620,4275.000000,67,0,1735.600000,extended,lora,180 -on2,0,0,24,1,0,407,4347.000000,67,0,1764.400000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,68,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1460,4320.000000,68,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1980,4320.000000,68,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1800,4320.000000,68,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3780,4320.000000,68,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,84,4384.000000,68,0,1779.200000,extended,lora,180 -on0,1,11,24,0,0,0,4998.000000,68,0,2287.200000,extended,lora,180 -on11,0,0,24,1,0,1110,4330.000000,68,0,1757.600000,extended,lora,180 -on6,0,0,24,1,0,360,4320.000000,68,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,3366,4426.000000,68,0,1796.000000,extended,lora,180 -on8,0,0,24,1,0,180,4320.000000,68,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1530,4390.000000,68,0,1781.600000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,69,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,304,4424.000000,69,0,1795.200000,extended,lora,180 -on11,0,0,24,1,0,919,4320.000000,69,0,1753.600000,extended,lora,180 -on0,1,8,24,0,0,0,4637.000000,69,0,2069.200000,extended,lora,180 -on8,0,0,24,1,0,2660,4440.000000,69,0,1801.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,720,4320.000000,69,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3240,4320.000000,69,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1311,4351.000000,69,0,1766.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,969,4369.000000,69,0,1773.200000,extended,lora,180 -on8,0,0,24,1,0,1620,4320.000000,70,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1980,4320.000000,70,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1260,4320.000000,70,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,3996,4336.000000,70,0,1760.000000,extended,lora,180 -on10,0,0,24,1,0,56,4356.000000,70,0,1768.000000,extended,lora,180 -on5,0,0,24,1,0,3584,4464.000000,70,0,1811.200000,extended,lora,180 -on0,1,10,24,0,0,0,4610.000000,70,0,2112.160000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,70,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,1065,4465.000000,70,0,1811.600000,extended,lora,180 -on3,0,0,24,1,0,847,4427.000000,70,0,1796.400000,extended,lora,180 -on4,0,0,24,1,0,971,4371.000000,70,0,1774.000000,extended,lora,180 -on7,0,0,24,1,0,35,4335.000000,70,0,1759.600000,extended,lora,180 -on10,0,0,24,1,0,2340,4320.000000,71,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,573,4333.000000,71,0,1758.800000,extended,lora,180 -on6,0,0,24,1,0,360,4320.000000,71,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,180,4320.000000,71,0,1753.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,1440,4320.000000,71,0,1753.600000,extended,lora,180 -on0,1,8,24,0,0,0,4767.000000,71,0,2120.880000,extended,lora,180 -on3,0,0,24,1,0,1620,4320.000000,71,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,782,4362.000000,71,0,1770.400000,extended,lora,180 -on4,0,0,24,1,0,3060,4320.000000,71,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2094,4414.000000,72,0,1791.200000,extended,lora,180 -on9,0,0,24,1,0,1571,4431.000000,72,0,1798.000000,extended,lora,180 -on4,0,0,24,1,0,1397,4437.000000,72,0,1800.400000,extended,lora,180 -on7,0,0,24,1,0,1771,4451.000000,72,0,1806.000000,extended,lora,180 -on5,0,0,24,1,0,640,4400.000000,72,0,1785.600000,extended,lora,180 -on1,0,0,24,1,0,28,4328.000000,72,0,1756.800000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,170,4470.000000,72,0,1813.600000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1105,4325.000000,72,0,1755.600000,extended,lora,180 -on3,0,0,24,1,0,2340,4320.000000,72,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4500.000000,72,0,2049.600000,extended,lora,180 -on5,0,0,24,1,0,1800,4320.000000,73,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,121,4421.000000,73,0,1794.000000,extended,lora,180 -on10,0,0,24,1,0,414,4354.000000,73,0,1767.200000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,73,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,2654,4434.000000,73,0,1799.200000,extended,lora,180 -on2,0,0,24,1,0,1440,4320.000000,73,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,5046.000000,73,0,2284.000000,extended,lora,180 -on9,0,0,24,1,0,146,4446.000000,73,0,1804.000000,extended,lora,180 -on11,0,0,24,1,0,720,4320.000000,73,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3009,4429.000000,73,0,1797.200000,extended,lora,180 -on7,0,0,24,1,0,3060,4320.000000,73,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1260,4320.000000,73,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,700,4460.000000,74,0,1809.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,extended,lora,180 -on0,1,9,24,0,0,0,4762.000000,74,0,2143.360000,extended,lora,180 -on2,0,0,24,1,0,89,4389.000000,74,0,1781.200000,extended,lora,180 -on5,0,0,24,1,0,522,4462.000000,74,0,1810.400000,extended,lora,180 -on6,0,0,24,1,0,900,4320.000000,74,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,427,4367.000000,74,0,1772.400000,extended,lora,180 -on3,0,0,24,1,0,2880,4320.000000,74,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1080,4320.000000,74,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3600,4320.000000,74,0,1753.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,1181,4401.000000,74,0,1786.000000,extended,lora,180 -on5,0,0,24,1,0,249,4369.000000,75,0,1773.200000,extended,lora,180 -on7,0,0,23,1,0,2092,4365.000000,75,0,1771.600000,extended,lora,180 -on10,0,0,24,1,0,3010,4430.000000,75,0,1797.600000,extended,lora,180 -on4,0,0,24,1,0,2001,4321.000000,75,0,1754.000000,extended,lora,180 -on3,0,0,24,1,0,1026,4426.000000,75,0,1796.000000,extended,lora,180 -on2,0,0,24,1,0,3960,4320.000000,75,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2350,4320.000000,75,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1017,4417.000000,75,0,1792.400000,extended,lora,180 -on8,0,0,24,1,0,3600,4320.000000,75,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,75,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1800,4320.000000,75,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4825.000000,75,0,2222.480000,extended,lora,180 -on6,0,0,24,1,0,604,4364.000000,76,0,1771.200000,extended,lora,180 -on11,0,0,23,1,0,205,4284.000000,76,0,1739.200000,extended,lora,180 -on3,0,0,24,1,0,2520,4320.000000,76,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3928,4448.000000,76,0,1804.800000,extended,lora,180 -on10,0,0,24,1,0,2438,4398.000000,76,0,1784.800000,extended,lora,180 -on1,0,0,24,1,0,1027,4427.000000,76,0,1796.400000,extended,lora,180 -on9,0,0,24,1,0,1654,4334.000000,76,0,1759.200000,extended,lora,180 -on0,1,11,24,0,0,0,4705.000000,76,0,2179.600000,extended,lora,180 -on5,0,0,24,1,0,274,4394.000000,76,0,1783.200000,extended,lora,180 -on8,0,0,24,1,0,1981,4320.000000,76,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,469,4409.000000,76,0,1789.200000,extended,lora,180 -on7,0,0,24,1,0,2143,4463.000000,76,0,1810.800000,extended,lora,180 -on2,0,0,24,1,0,1214,4434.000000,77,0,1799.200000,extended,lora,180 -on7,0,0,24,1,0,168,4468.000000,77,0,1812.800000,extended,lora,180 -on10,0,0,24,1,0,180,4320.000000,77,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2293,4433.000000,77,0,1798.800000,extended,lora,180 -on3,0,0,24,1,0,2340,4320.000000,77,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2520,4320.000000,77,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,3780,4320.000000,77,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1440,4320.000000,77,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2164,4320.000000,77,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,168,4468.000000,77,0,1812.800000,extended,lora,180 -on0,1,11,24,0,0,0,5198.000000,77,0,2364.000000,extended,lora,180 -on9,0,0,24,1,0,540,4320.000000,77,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2160,4320.000000,78,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2713,4320.000000,78,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,55,4355.000000,78,0,1767.600000,extended,lora,180 -on2,0,0,23,1,0,3804,4324.000000,78,0,1755.200000,extended,lora,180 -on7,0,0,24,1,0,1600,4460.000000,78,0,1809.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,154,4454.000000,78,0,1807.200000,extended,lora,180 -on3,0,0,24,1,0,1827,4327.000000,78,0,1756.400000,extended,lora,180 -on9,0,0,24,1,0,979,4379.000000,78,0,1777.200000,extended,lora,180 -on6,0,0,24,1,0,3024,4444.000000,78,0,1803.200000,extended,lora,180 -on0,1,9,24,0,0,0,4518.000000,78,0,2056.800000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,463,4403.000000,79,0,1786.800000,extended,lora,180 -on5,0,0,24,1,0,2520,4320.000000,79,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,516,4456.000000,79,0,1808.000000,extended,lora,180 -on10,0,0,24,1,0,2164,4320.000000,79,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,540,4320.000000,79,0,1753.600000,extended,lora,180 -on11,0,0,23,1,0,1620,4302.000000,79,0,1746.400000,extended,lora,180 -on2,0,0,24,1,0,3600,4320.000000,79,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1173,4393.000000,79,0,1782.800000,extended,lora,180 -on7,0,0,24,1,0,3240,4320.000000,79,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4879.000000,79,0,2188.400000,extended,lora,180 -on9,0,0,24,1,0,900,4320.000000,80,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1254,4474.000000,80,0,1815.200000,extended,lora,180 -on11,0,0,24,1,0,793,4373.000000,80,0,1774.800000,extended,lora,180 -on0,1,11,24,0,0,0,4503.000000,80,0,2102.000000,extended,lora,180 -on2,0,0,24,1,0,540,4320.000000,80,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,82,4382.000000,80,0,1778.400000,extended,lora,180 -on5,0,0,24,1,0,1682,4362.000000,80,0,1770.400000,extended,lora,180 -on1,0,0,24,1,0,2959,4379.000000,80,0,1777.200000,extended,lora,180 -on3,0,0,24,1,0,392,4332.000000,80,0,1758.400000,extended,lora,180 -on4,0,0,24,1,0,1328,4368.000000,80,0,1772.800000,extended,lora,180 -on8,0,0,24,1,0,1800,4320.000000,80,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1440,4320.000000,80,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1705,4385.000000,81,0,1779.600000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,81,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1830,4330.000000,81,0,1757.600000,extended,lora,180 -on8,0,0,24,1,0,394,4334.000000,81,0,1759.200000,extended,lora,180 -on5,0,0,24,1,0,831,4411.000000,81,0,1790.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,81,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,305,4425.000000,81,0,1795.600000,extended,lora,180 -on11,0,0,23,1,0,1371,4243.000000,81,0,1722.800000,extended,lora,180 -on9,0,0,24,1,0,1102,4322.000000,81,0,1754.400000,extended,lora,180 -on3,0,0,24,1,0,1724,4404.000000,81,0,1787.200000,extended,lora,180 -on0,1,10,24,0,0,0,4616.000000,81,0,2121.600000,extended,lora,180 -on2,0,0,24,1,0,0,4320.000000,81,0,1753.600000,extended,lora,180 -on10,0,0,23,0,0,4271,4271.000000,82,0,1708.400000,extended,lora,180 -on7,0,0,24,1,0,3019,4439.000000,82,0,1801.200000,extended,lora,180 -on11,0,0,24,1,0,3960,4320.000000,82,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,82,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,763,4343.000000,82,0,1762.800000,extended,lora,180 -on1,0,0,24,1,0,2025,4345.000000,82,0,1763.600000,extended,lora,180 -on4,0,0,24,1,0,1620,4320.000000,82,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,438,4378.000000,82,0,1776.800000,extended,lora,180 -on8,0,0,24,1,0,1333,4373.000000,82,0,1774.800000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,82,0,1728.000000,extended,lora,180 -on0,1,9,24,0,0,0,4707.000000,82,0,2126.000000,extended,lora,180 -on2,0,0,24,1,0,755,4335.000000,82,0,1759.600000,extended,lora,180 -on6,0,0,24,1,0,204,4324.000000,83,0,1755.200000,extended,lora,180 -on1,0,0,24,1,0,996,4396.000000,83,0,1784.000000,extended,lora,180 -on7,0,0,24,1,0,3240,4320.000000,83,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2160,4320.000000,83,0,1753.600000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,83,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,606,4366.000000,83,0,1772.000000,extended,lora,180 -on10,0,0,24,1,0,1620,4320.000000,83,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,18,4320.000000,83,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2094,4414.000000,83,0,1791.200000,extended,lora,180 -on0,1,10,24,0,0,0,4578.000000,83,0,2103.200000,extended,lora,180 -on2,0,0,24,1,0,52,4352.000000,83,0,1766.400000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,83,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,84,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2700,4320.000000,84,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,921,4321.000000,84,0,1754.000000,extended,lora,180 -on2,0,0,24,1,0,940,4340.000000,84,0,1761.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,84,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,1282,4322.000000,84,0,1754.400000,extended,lora,180 -on4,0,0,24,1,0,2340,4320.000000,84,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,84,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4896.000000,84,0,2217.600000,extended,lora,180 -on9,0,0,24,1,0,1440,4320.000000,84,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1080,4320.000000,84,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3240,4320.000000,84,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1341,4381.000000,85,0,1778.000000,extended,lora,180 -on2,0,0,24,1,0,1275,4320.000000,85,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1676,4356.000000,85,0,1768.000000,extended,lora,180 -on8,0,0,24,1,0,1989,4320.000000,85,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,849,4429.000000,85,0,1797.200000,extended,lora,180 -on10,0,0,24,1,0,2700,4320.000000,85,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,612,4372.000000,85,0,1774.400000,extended,lora,180 -on0,1,11,24,0,0,0,4857.000000,85,0,2240.400000,extended,lora,180 -on4,0,0,23,1,0,58,4302.000000,85,0,1746.400000,extended,lora,180 -on5,0,0,24,1,0,93,4393.000000,85,0,1782.800000,extended,lora,180 -on1,0,0,24,1,0,1440,4320.000000,85,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,2474,4434.000000,85,0,1799.200000,extended,lora,180 -on7,0,0,24,1,0,669,4429.000000,86,0,1797.200000,extended,lora,180 -on0,1,11,24,0,0,0,4901.000000,86,0,2251.600000,extended,lora,180 -on2,0,0,24,1,0,1980,4320.000000,86,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1265,4320.000000,86,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,805,4385.000000,86,0,1779.600000,extended,lora,180 -on1,0,0,24,1,0,70,4370.000000,86,0,1773.600000,extended,lora,180 -on10,0,0,24,1,0,2520,4320.000000,86,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,251,4371.000000,86,0,1774.000000,extended,lora,180 -on6,0,0,24,1,0,11,4320.000000,86,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1352,4392.000000,86,0,1782.400000,extended,lora,180 -on3,0,0,24,1,0,261,4381.000000,86,0,1778.000000,extended,lora,180 -on11,0,0,24,1,0,1088,4320.000000,86,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1800,4320.000000,87,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2124,4444.000000,87,0,1803.200000,extended,lora,180 -on4,0,0,24,1,0,459,4399.000000,87,0,1785.200000,extended,lora,180 -on0,1,11,24,0,0,0,4931.000000,87,0,2263.600000,extended,lora,180 -on8,0,0,24,1,0,2082,4402.000000,87,0,1786.400000,extended,lora,180 -on2,0,0,24,1,0,1004,4404.000000,87,0,1787.200000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,87,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,922,4322.000000,87,0,1754.400000,extended,lora,180 -on3,0,0,24,1,0,2520,4320.000000,87,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,58,4358.000000,87,0,1768.800000,extended,lora,180 -on9,0,0,24,1,0,1104,4324.000000,87,0,1755.200000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,87,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1960,4460.000000,88,0,1809.600000,extended,lora,180 -on3,0,0,24,1,0,358,4478.000000,88,0,1816.800000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,88,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,0,4320.000000,88,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4673.000000,88,0,2138.320000,extended,lora,180 -on9,0,0,24,1,0,2880,4320.000000,88,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1099,4320.000000,88,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,552,4320.000000,88,0,1753.600000,extended,lora,180 -on6,0,0,23,1,0,643,4350.000000,88,0,1765.600000,extended,lora,180 -on1,0,0,24,1,0,4133,4473.000000,88,0,1814.800000,extended,lora,180 -on8,0,0,24,1,0,1440,4320.000000,88,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,720,4320.000000,88,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,482,4422.000000,89,0,1794.400000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,89,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,3537,4417.000000,89,0,1792.400000,extended,lora,180 -on11,0,0,24,1,0,2788,4388.000000,89,0,1780.800000,extended,lora,180 -on9,0,0,24,1,0,465,4405.000000,89,0,1787.600000,extended,lora,180 -on3,0,0,24,1,0,1980,4320.000000,89,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2456,4416.000000,89,0,1792.000000,extended,lora,180 -on8,0,0,24,1,0,155,4455.000000,89,0,1807.600000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,89,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2880,4320.000000,89,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4523.000000,89,0,2083.920000,extended,lora,180 -on5,0,0,24,1,0,698,4458.000000,89,0,1808.800000,extended,lora,180 -on9,0,0,24,1,0,1470,4330.000000,90,0,1757.600000,extended,lora,180 -on8,0,0,24,1,0,4140,4320.000000,90,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,360,4320.000000,90,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,90,0,1728.000000,extended,lora,180 -on5,0,0,23,1,0,1736,4358.000000,90,0,1768.800000,extended,lora,180 -on7,0,0,24,1,0,140,4440.000000,90,0,1801.600000,extended,lora,180 -on10,0,0,24,1,0,1657,4337.000000,90,0,1760.400000,extended,lora,180 -on3,0,0,23,1,0,2160,4277.000000,90,0,1736.400000,extended,lora,180 -on4,0,0,24,1,0,1080,4320.000000,90,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4936.000000,90,0,2236.960000,extended,lora,180 -on11,0,0,24,1,0,1440,4320.000000,90,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,900,4320.000000,90,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,540,4320.000000,91,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1210,4430.000000,91,0,1797.600000,extended,lora,180 -on11,0,0,24,1,0,3960,4320.000000,91,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,5013.000000,91,0,2268.080000,extended,lora,180 -on9,0,0,24,1,0,444,4384.000000,91,0,1779.200000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,91,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,3240,4320.000000,91,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,720,4320.000000,91,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,3060,4320.000000,91,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,130,4430.000000,91,0,1797.600000,extended,lora,180 -on2,0,0,24,1,0,31,4331.000000,91,0,1758.000000,extended,lora,180 -on8,0,0,24,1,0,900,4320.000000,91,0,1753.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,0,4320.000000,92,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,lora,180 -on0,1,6,24,0,0,0,4552.000000,92,0,1980.800000,extended,lora,180 -on11,0,0,24,1,0,360,4320.000000,92,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3060,4320.000000,92,0,1753.600000,extended,lora,180 -on4,0,0,23,1,0,1597,4365.000000,92,0,1771.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,3240,4320.000000,92,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1027,4427.000000,92,0,1796.400000,extended,lora,180 -on1,0,0,24,1,0,1800,4320.000000,93,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1055,4455.000000,93,0,1807.600000,extended,lora,180 -on7,0,0,24,1,0,360,4320.000000,93,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,884,4464.000000,93,0,1811.200000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,852,4432.000000,93,0,1798.400000,extended,lora,180 -on6,0,0,24,1,0,180,4320.000000,93,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,395,4335.000000,93,0,1759.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,extended,lora,180 -on10,0,0,23,1,0,0,4276.000000,93,0,1736.000000,extended,lora,180 -on0,1,9,24,0,0,0,4704.000000,93,0,2118.880000,extended,lora,180 -on8,0,0,24,1,0,2921,4341.000000,93,0,1762.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,94,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,2340,4320.000000,94,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,94,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,132,4432.000000,94,0,1798.400000,extended,lora,180 -on9,0,0,24,1,0,540,4320.000000,94,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,900,4320.000000,94,0,1753.600000,extended,lora,180 -on4,0,0,23,1,0,846,4426.000000,94,0,1796.000000,extended,lora,180 -on0,1,9,24,0,0,0,4696.000000,94,0,2121.600000,extended,lora,180 -on3,0,0,23,1,0,312,4427.000000,94,0,1796.400000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,94,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,1260,4320.000000,94,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2789,4389.000000,94,0,1781.200000,extended,lora,180 -on10,0,0,24,1,0,926,4326.000000,95,0,1756.000000,extended,lora,180 -on1,0,0,24,1,0,2942,4362.000000,95,0,1770.400000,extended,lora,180 -on5,0,0,24,1,0,1620,4320.000000,95,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,302,4422.000000,95,0,1794.400000,extended,lora,180 -on0,1,9,24,0,0,0,4436.000000,95,0,2024.480000,extended,lora,180 -on4,0,0,24,1,0,0,4320.000000,95,0,1753.600000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,800,4380.000000,95,0,1777.600000,extended,lora,180 -on8,0,0,24,1,0,1080,4320.000000,95,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,360,4320.000000,95,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2560,4340.000000,95,0,1761.600000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,extended,lora,180 -on8,0,0,23,1,0,103,4399.000000,96,0,1785.200000,extended,lora,180 -on11,0,0,23,1,0,2926,4346.000000,96,0,1764.000000,extended,lora,180 -on2,0,0,24,1,0,1727,4407.000000,96,0,1788.400000,extended,lora,180 -on10,0,0,24,1,0,282,4402.000000,96,0,1786.400000,extended,lora,180 -on4,0,0,24,1,0,1881,4381.000000,96,0,1778.000000,extended,lora,180 -on7,0,0,24,1,0,427,4367.000000,96,0,1772.400000,extended,lora,180 -on6,0,0,24,1,0,1503,4363.000000,96,0,1770.800000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,96,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4891.000000,96,0,2250.800000,extended,lora,180 -on3,0,0,24,1,0,3240,4320.000000,96,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2440,4400.000000,96,0,1785.600000,extended,lora,180 -on1,0,0,24,1,0,222,4342.000000,96,0,1762.400000,extended,lora,180 -on3,0,0,24,1,0,285,4405.000000,97,0,1787.600000,extended,lora,180 -on6,0,0,24,1,0,2098,4418.000000,97,0,1792.800000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,97,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,97,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,778,4358.000000,97,0,1768.800000,extended,lora,180 -on8,0,0,24,1,0,745,4325.000000,97,0,1755.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,97,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,282,4402.000000,97,0,1786.400000,extended,lora,180 -on0,1,9,24,0,0,0,4749.000000,97,0,2140.880000,extended,lora,180 -on7,0,0,24,1,0,56,4356.000000,97,0,1768.000000,extended,lora,180 -on10,0,0,24,1,0,1247,4467.000000,97,0,1812.400000,extended,lora,180 -on4,0,0,24,1,0,0,4320.000000,97,0,1753.600000,extended,lora,180 -on4,0,0,23,1,0,720,4201.000000,98,0,1706.000000,extended,lora,180 -on9,0,0,24,1,0,3240,4320.000000,98,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1980,4320.000000,98,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1180,4400.000000,98,0,1785.600000,extended,lora,180 -on5,0,0,24,1,0,497,4437.000000,98,0,1800.400000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,98,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,3060,4320.000000,98,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2340,4320.000000,98,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1620,4320.000000,98,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,5156.000000,98,0,2353.600000,extended,lora,180 -on1,0,0,24,1,0,0,4320.000000,98,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1345,4385.000000,98,0,1779.600000,extended,lora,180 -on1,0,0,24,1,0,156,4456.000000,99,0,1808.000000,extended,lora,180 -on8,0,0,24,1,0,0,4320.000000,99,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,203,4323.000000,99,0,1754.800000,extended,lora,180 -on2,0,0,24,1,0,1149,4369.000000,99,0,1773.200000,extended,lora,180 -on6,0,0,24,1,0,3060,4320.000000,99,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,540,4320.000000,99,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,720,4320.000000,99,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1980,4320.000000,99,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,255,4375.000000,99,0,1775.600000,extended,lora,180 -on3,0,0,24,1,0,1080,4320.000000,99,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4945.000000,99,0,2266.160000,extended,lora,180 -on9,0,0,24,1,0,1847,4347.000000,99,0,1764.400000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,100,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,2156,4476.000000,100,0,1816.000000,extended,lora,180 -on2,0,0,24,1,0,127,4427.000000,100,0,1796.400000,extended,lora,180 -on8,0,0,24,1,0,1800,4320.000000,100,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2700,4320.000000,100,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4511.000000,100,0,2082.800000,extended,lora,180 -on6,0,0,24,1,0,3902,4422.000000,100,0,1794.400000,extended,lora,180 -on4,0,0,24,1,0,3047,4467.000000,100,0,1812.400000,extended,lora,180 -on11,0,0,24,1,0,555,4320.000000,100,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1439,4479.000000,100,0,1817.200000,extended,lora,180 -on3,0,0,24,1,0,369,4320.000000,100,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1260,4320.000000,100,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3780,4320.000000,101,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2801,4401.000000,101,0,1786.000000,extended,lora,180 -on0,1,11,24,0,0,0,4958.000000,101,0,2275.360000,extended,lora,180 -on7,0,0,24,1,0,3155,4395.000000,101,0,1783.600000,extended,lora,180 -on3,0,0,24,1,0,73,4373.000000,101,0,1774.800000,extended,lora,180 -on9,0,0,24,1,0,360,4320.000000,101,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,49,4349.000000,101,0,1765.200000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,101,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,3058,4478.000000,101,0,1816.800000,extended,lora,180 -on5,0,0,24,1,0,1980,4320.000000,101,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,263,4383.000000,101,0,1778.800000,extended,lora,180 -on2,0,0,24,1,0,2160,4320.000000,101,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,3341,4401.000000,102,0,1786.000000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,102,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3240,4320.000000,102,0,1753.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,102,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,2880,4320.000000,102,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,2554,4334.000000,102,0,1759.200000,extended,lora,180 -on2,0,0,24,1,0,2296,4436.000000,102,0,1800.000000,extended,lora,180 -on1,0,0,24,1,0,1980,4320.000000,102,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,464,4404.000000,102,0,1787.200000,extended,lora,180 -on0,1,10,24,0,0,0,4909.000000,102,0,2232.880000,extended,lora,180 -on11,0,0,24,1,0,2340,4320.000000,102,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,3802,4322.000000,102,0,1754.400000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,103,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,2080,4400.000000,103,0,1785.600000,extended,lora,180 -on1,0,0,24,1,0,2168,4320.000000,103,0,1753.600000,extended,lora,180 -on5,0,0,23,1,0,529,4428.000000,103,0,1796.800000,extended,lora,180 -on2,0,0,24,1,0,3223,4463.000000,103,0,1810.800000,extended,lora,180 -on4,0,0,24,1,0,2520,4320.000000,103,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4674.000000,103,0,2135.200000,extended,lora,180 -on8,0,0,24,1,0,720,4320.000000,103,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,900,4320.000000,103,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1800,4320.000000,103,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1260,4320.000000,103,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,404,4344.000000,103,0,1763.200000,extended,lora,180 -on5,0,0,24,1,0,1837,4337.000000,104,0,1760.400000,extended,lora,180 -on3,0,0,24,1,0,1127,4347.000000,104,0,1764.400000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,104,0,1728.000000,extended,lora,180 -on0,1,10,24,0,0,0,4854.000000,104,0,2210.400000,extended,lora,180 -on8,0,0,24,1,0,742,4322.000000,104,0,1754.400000,extended,lora,180 -on7,0,0,24,1,0,1961,4461.000000,104,0,1810.000000,extended,lora,180 -on6,0,0,24,1,0,1440,4320.000000,104,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,339,4459.000000,104,0,1809.200000,extended,lora,180 -on2,0,0,24,1,0,595,4355.000000,104,0,1767.600000,extended,lora,180 -on11,0,0,24,1,0,3027,4447.000000,104,0,1804.400000,extended,lora,180 -on1,0,0,24,1,0,1099,4320.000000,104,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,104,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1980,4320.000000,105,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,252,4372.000000,105,0,1774.400000,extended,lora,180 -on6,0,0,24,1,0,1413,4453.000000,105,0,1806.800000,extended,lora,180 -on9,0,0,24,1,0,540,4320.000000,105,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,197,4320.000000,105,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4894.000000,105,0,2216.800000,extended,lora,180 -on10,0,0,24,1,0,4140,4320.000000,105,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1816,4320.000000,105,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,105,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,105,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,1977,4477.000000,105,0,1816.400000,extended,lora,180 -on11,0,0,24,1,0,1080,4320.000000,105,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3142,4382.000000,106,0,1778.400000,extended,lora,180 -on5,0,0,24,1,0,2340,4320.000000,106,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,106,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1800,4320.000000,106,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,825,4405.000000,106,0,1787.600000,extended,lora,180 -on2,0,0,24,1,0,35,4335.000000,106,0,1759.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,106,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,206,4326.000000,106,0,1756.000000,extended,lora,180 -on10,0,0,24,1,0,2139,4459.000000,106,0,1809.200000,extended,lora,180 -on0,1,9,24,0,0,0,4559.000000,106,0,2073.200000,extended,lora,180 -on1,0,0,24,1,0,1027,4427.000000,107,0,1796.400000,extended,lora,180 -on0,1,8,24,0,0,0,4542.000000,107,0,2037.600000,extended,lora,180 -on8,0,0,24,1,0,1068,4468.000000,107,0,1812.800000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,107,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1743,4423.000000,107,0,1794.800000,extended,lora,180 -on7,0,0,24,1,0,3991,4331.000000,107,0,1758.000000,extended,lora,180 -on3,0,0,24,1,0,484,4424.000000,107,0,1795.200000,extended,lora,180 -on9,0,0,24,1,0,3847,4367.000000,107,0,1772.400000,extended,lora,180 -on4,0,0,24,1,0,2261,4401.000000,107,0,1786.000000,extended,lora,180 -on7,0,0,24,1,0,1375,4415.000000,108,0,1791.600000,extended,lora,180 -on6,0,0,24,1,0,243,4363.000000,108,0,1770.800000,extended,lora,180 -on4,0,0,24,1,0,231,4351.000000,108,0,1766.000000,extended,lora,180 -on2,0,0,24,1,0,1620,4320.000000,108,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1546,4406.000000,108,0,1788.000000,extended,lora,180 -on1,0,0,23,1,0,900,4300.000000,108,0,1745.600000,extended,lora,180 -on3,0,0,24,1,0,1360,4400.000000,108,0,1785.600000,extended,lora,180 -on5,0,0,24,1,0,899,4479.000000,108,0,1817.200000,extended,lora,180 -on0,1,11,24,0,0,0,4877.000000,108,0,2245.200000,extended,lora,180 -on10,0,0,24,1,0,384,4324.000000,108,0,1755.200000,extended,lora,180 -on9,0,0,24,1,0,2212,4352.000000,108,0,1766.400000,extended,lora,180 -on8,0,0,24,1,0,1086,4320.000000,108,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,935,4335.000000,109,0,1759.600000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,1910,4410.000000,109,0,1789.600000,extended,lora,180 -on2,0,0,24,1,0,101,4401.000000,109,0,1786.000000,extended,lora,180 -on0,1,8,24,0,0,0,4559.000000,109,0,2040.080000,extended,lora,180 -on6,0,0,24,1,0,2311,4451.000000,109,0,1806.000000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,109,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1885,4385.000000,109,0,1779.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,540,4320.000000,109,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,360,4320.000000,109,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,extended,lora,180 -on0,1,8,24,0,0,0,4651.000000,110,0,2078.000000,extended,lora,180 -on11,0,0,24,1,0,539,4479.000000,110,0,1817.200000,extended,lora,180 -on6,0,0,24,1,0,3378,4438.000000,110,0,1800.800000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,1316,4356.000000,110,0,1768.000000,extended,lora,180 -on3,0,0,24,1,0,27,4327.000000,110,0,1756.400000,extended,lora,180 -on10,0,0,24,1,0,332,4452.000000,110,0,1806.400000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,110,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2340,4320.000000,110,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,342,4462.000000,110,0,1810.400000,extended,lora,180 -on0,1,9,24,0,0,0,4712.000000,111,0,2128.320000,extended,lora,180 -on4,0,0,24,1,0,1440,4320.000000,111,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,3047,4467.000000,111,0,1812.400000,extended,lora,180 -on10,0,0,24,1,0,1120,4340.000000,111,0,1761.600000,extended,lora,180 -on1,0,0,24,1,0,2340,4320.000000,111,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,459,4399.000000,111,0,1785.200000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,3092,4332.000000,111,0,1758.400000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,1260,4320.000000,111,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,3046,4466.000000,111,0,1812.000000,extended,lora,180 -on7,0,0,24,1,0,1971,4471.000000,111,0,1814.000000,extended,lora,180 -on2,0,0,24,1,0,2064,4384.000000,112,0,1779.200000,extended,lora,180 -on0,1,8,24,0,0,0,4497.000000,112,0,2019.600000,extended,lora,180 -on11,0,0,24,1,0,2051,4371.000000,112,0,1774.000000,extended,lora,180 -on9,0,0,24,1,0,37,4337.000000,112,0,1760.400000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,2483,4443.000000,112,0,1802.800000,extended,lora,180 -on1,0,0,24,1,0,1328,4368.000000,112,0,1772.800000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,1779,4459.000000,112,0,1809.200000,extended,lora,180 -on5,0,0,24,1,0,3042,4462.000000,112,0,1810.400000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,112,0,1753.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,3600,4320.000000,113,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1620,4320.000000,113,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,2700,4320.000000,113,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1800,4320.000000,113,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,677,4437.000000,113,0,1800.400000,extended,lora,180 -on6,0,0,24,1,0,784,4364.000000,113,0,1771.200000,extended,lora,180 -on0,1,11,24,0,0,0,4844.000000,113,0,2238.400000,extended,lora,180 -on4,0,0,24,1,0,900,4320.000000,113,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2348,4320.000000,113,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2055,4375.000000,113,0,1775.600000,extended,lora,180 -on7,0,0,24,1,0,2233,4373.000000,113,0,1774.800000,extended,lora,180 -on11,0,0,24,1,0,3197,4437.000000,113,0,1800.400000,extended,lora,180 -on2,0,0,24,1,0,3204,4444.000000,114,0,1803.200000,extended,lora,180 -on5,0,0,24,1,0,645,4405.000000,114,0,1787.600000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,114,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,3189,4429.000000,114,0,1797.200000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,114,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,87,4387.000000,114,0,1780.400000,extended,lora,180 -on11,0,0,24,1,0,1959,4459.000000,114,0,1809.200000,extended,lora,180 -on10,0,0,24,1,0,892,4472.000000,114,0,1814.400000,extended,lora,180 -on3,0,0,24,1,0,360,4320.000000,114,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1440,4320.000000,114,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4830.000000,114,0,2226.880000,extended,lora,180 -on4,0,0,24,1,0,2160,4320.000000,114,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3600,4320.000000,115,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1409,4449.000000,115,0,1805.200000,extended,lora,180 -on0,1,10,24,0,0,0,4665.000000,115,0,2138.000000,extended,lora,180 -on10,0,0,24,1,0,1491,4351.000000,115,0,1766.000000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,115,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,2735,4335.000000,115,0,1759.600000,extended,lora,180 -on8,0,0,24,1,0,3162,4402.000000,115,0,1786.400000,extended,lora,180 -on11,0,0,24,1,0,0,4320.000000,115,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,115,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,720,4320.000000,115,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1627,4320.000000,115,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,543,4320.000000,115,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,643,4403.000000,116,0,1786.800000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,116,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,1080,4320.000000,116,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4805.000000,116,0,2194.000000,extended,lora,180 -on2,0,0,24,1,0,180,4320.000000,116,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,884,4464.000000,116,0,1811.200000,extended,lora,180 -on11,0,0,24,1,0,1807,4320.000000,116,0,1753.600000,extended,lora,180 -on6,0,0,23,1,0,68,4296.000000,116,0,1744.000000,extended,lora,180 -on3,0,0,24,1,0,720,4320.000000,116,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,3303,4363.000000,116,0,1770.800000,extended,lora,180 -on7,0,0,24,1,0,463,4403.000000,116,0,1786.800000,extended,lora,180 -on9,0,0,24,1,0,49,4349.000000,116,0,1765.200000,extended,lora,180 -on8,0,0,24,1,0,84,4384.000000,117,0,1779.200000,extended,lora,180 -on11,0,0,24,1,0,704,4464.000000,117,0,1811.200000,extended,lora,180 -on5,0,0,24,1,0,1260,4320.000000,117,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,180,4320.000000,117,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1594,4454.000000,117,0,1807.200000,extended,lora,180 -on1,0,0,24,1,0,3060,4320.000000,117,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4848.000000,117,0,2179.200000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,117,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,1620,4320.000000,117,0,1753.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,117,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,900,4320.000000,117,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2700,4320.000000,117,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,4131,4471.000000,118,0,1814.000000,extended,lora,180 -on6,0,0,24,1,0,3612,4320.000000,118,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,118,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,0,4320.000000,118,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,3967,4320.000000,118,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1440,4320.000000,118,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,540,4320.000000,118,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,4174,4334.000000,118,0,1759.200000,extended,lora,180 -on0,1,10,24,0,0,0,4805.000000,118,0,2187.440000,extended,lora,180 -on5,0,0,24,1,0,720,4320.000000,118,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,118,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,267,4387.000000,118,0,1780.400000,extended,lora,180 -on4,0,0,24,1,0,962,4362.000000,119,0,1770.400000,extended,lora,180 -on8,0,0,23,1,0,827,4357.000000,119,0,1768.400000,extended,lora,180 -on2,0,0,24,1,0,1005,4405.000000,119,0,1787.600000,extended,lora,180 -on9,0,0,24,1,0,1080,4320.000000,119,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,611,4371.000000,119,0,1774.000000,extended,lora,180 -on6,0,0,24,1,0,39,4339.000000,119,0,1761.200000,extended,lora,180 -on7,0,0,24,1,0,360,4320.000000,119,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4670.000000,119,0,2167.680000,extended,lora,180 -on11,0,0,24,1,0,3600,4320.000000,119,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,254,4374.000000,119,0,1775.200000,extended,lora,180 -on3,0,0,24,1,0,1260,4320.000000,119,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2384,4344.000000,119,0,1763.200000,extended,lora,180 -on2,0,0,24,1,0,2160,4320.000000,120,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,360,4320.000000,120,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,286,4406.000000,120,0,1788.000000,extended,lora,180 -on5,0,0,24,1,0,215,4335.000000,120,0,1759.600000,extended,lora,180 -on8,0,0,24,1,0,2118,4438.000000,120,0,1800.800000,extended,lora,180 -on7,0,0,24,1,0,1440,4320.000000,120,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,601,4361.000000,120,0,1770.000000,extended,lora,180 -on3,0,0,24,1,0,1260,4320.000000,120,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,0,4320.000000,120,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2340,4320.000000,120,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2880,4320.000000,120,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4807.000000,120,0,2211.760000,extended,lora,180 -on8,0,0,24,1,0,720,4320.000000,121,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,121,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1231,4451.000000,121,0,1806.000000,extended,lora,180 -on2,0,0,24,1,0,1754,4434.000000,121,0,1799.200000,extended,lora,180 -on3,0,0,24,1,0,1980,4320.000000,121,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2220,4360.000000,121,0,1769.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,121,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,0,4320.000000,121,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,3960,4320.000000,121,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2516,4476.000000,121,0,1816.000000,extended,lora,180 -on0,1,10,24,0,0,0,4864.000000,121,0,2210.240000,extended,lora,180 -on4,0,0,24,1,0,3600,4320.000000,121,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,2520,4320.000000,122,0,1753.600000,extended,lora,180 -on0,1,8,24,0,0,0,4742.000000,122,0,2111.200000,extended,lora,180 -on7,0,0,24,1,0,4140,4320.000000,122,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,137,4437.000000,122,0,1800.400000,extended,lora,180 -on1,0,0,24,1,0,3060,4320.000000,122,0,1753.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,363,4320.000000,122,0,1753.600000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,360,4320.000000,122,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2777,4377.000000,122,0,1776.400000,extended,lora,180 -on6,0,0,24,1,0,898,4478.000000,122,0,1816.800000,extended,lora,180 -on8,0,0,24,1,0,344,4464.000000,123,0,1811.200000,extended,lora,180 -on11,0,0,24,1,0,2520,4320.000000,123,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,0,4320.000000,123,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,918,4320.000000,123,0,1753.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,123,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,3060,4320.000000,123,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,720,4320.000000,123,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2355,4320.000000,123,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,3930,4450.000000,123,0,1805.600000,extended,lora,180 -on4,0,0,24,1,0,1495,4355.000000,123,0,1767.600000,extended,lora,180 -on10,0,0,24,1,0,1271,4320.000000,123,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4571.000000,123,0,2103.600000,extended,lora,180 -on1,0,0,24,1,0,540,4320.000000,124,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,360,4320.000000,124,0,1753.600000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,124,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,1800,4320.000000,124,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2787,4387.000000,124,0,1780.400000,extended,lora,180 -on9,0,0,24,1,0,180,4320.000000,124,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1643,4323.000000,124,0,1754.800000,extended,lora,180 -on8,0,0,24,1,0,0,4320.000000,124,0,1753.600000,extended,lora,180 -on3,0,0,23,1,0,840,4260.000000,124,0,1729.600000,extended,lora,180 -on7,0,0,24,1,0,2867,4467.000000,124,0,1812.400000,extended,lora,180 -on0,1,10,24,0,0,0,4598.000000,124,0,2113.280000,extended,lora,180 -on4,0,0,23,1,0,2040,4360.000000,124,0,1769.600000,extended,lora,180 -on6,0,0,24,1,0,32,4332.000000,125,0,1758.400000,extended,lora,180 -on2,0,0,24,1,0,1758,4438.000000,125,0,1800.800000,extended,lora,180 -on8,0,0,24,1,0,1080,4320.000000,125,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,720,4320.000000,125,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,73,4373.000000,125,0,1774.800000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,701,4461.000000,125,0,1810.000000,extended,lora,180 -on1,0,0,24,1,0,345,4465.000000,125,0,1811.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1758,4438.000000,125,0,1800.800000,extended,lora,180 -on4,0,0,24,1,0,360,4320.000000,125,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4833.000000,125,0,2170.000000,extended,lora,180 -on9,0,0,24,1,0,787,4367.000000,126,0,1772.400000,extended,lora,180 -on11,0,0,24,1,0,2359,4320.000000,126,0,1753.600000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,1756,4436.000000,126,0,1800.000000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,540,4320.000000,126,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4476.000000,126,0,2036.800000,extended,lora,180 -on6,0,0,24,1,0,853,4433.000000,126,0,1798.800000,extended,lora,180 -on2,0,0,24,1,0,927,4327.000000,126,0,1756.400000,extended,lora,180 -on3,0,0,24,1,0,370,4320.000000,126,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1980,4320.000000,126,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3266,4326.000000,126,0,1756.000000,extended,lora,180 -on4,0,0,24,1,0,0,4320.000000,127,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,5016.000000,127,0,2268.800000,extended,lora,180 -on9,0,0,24,1,0,984,4384.000000,127,0,1779.200000,extended,lora,180 -on8,0,0,24,1,0,1131,4351.000000,127,0,1766.000000,extended,lora,180 -on11,0,0,24,1,0,673,4433.000000,127,0,1798.800000,extended,lora,180 -on10,0,0,24,1,0,111,4411.000000,127,0,1790.000000,extended,lora,180 -on2,0,0,24,1,0,1215,4435.000000,127,0,1799.600000,extended,lora,180 -on1,0,0,24,1,0,935,4335.000000,127,0,1759.600000,extended,lora,180 -on7,0,0,24,1,0,1440,4320.000000,127,0,1753.600000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,127,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,2700,4320.000000,127,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,774,4354.000000,127,0,1767.200000,extended,lora,180 -on1,0,0,24,1,0,3780,4320.000000,128,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,435,4375.000000,128,0,1775.600000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,128,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,0,4320.000000,128,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1404,4444.000000,128,0,1803.200000,extended,lora,180 -on8,0,0,24,1,0,1572,4432.000000,128,0,1798.400000,extended,lora,180 -on5,0,0,24,1,0,2258,4398.000000,128,0,1784.800000,extended,lora,180 -on4,0,0,24,1,0,853,4433.000000,128,0,1798.800000,extended,lora,180 -on9,0,0,24,1,0,1744,4424.000000,128,0,1795.200000,extended,lora,180 -on10,0,0,24,1,0,460,4400.000000,128,0,1785.600000,extended,lora,180 -on2,0,0,24,1,0,903,4320.000000,128,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4624.000000,128,0,2124.800000,extended,lora,180 -on1,0,0,24,1,0,756,4336.000000,129,0,1760.000000,extended,lora,180 -on0,1,10,24,0,0,0,4775.000000,129,0,2172.400000,extended,lora,180 -on4,0,0,24,1,0,2032,4352.000000,129,0,1766.400000,extended,lora,180 -on7,0,0,24,1,0,2340,4320.000000,129,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,720,4320.000000,129,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,69,4369.000000,129,0,1773.200000,extended,lora,180 -on3,0,0,24,1,0,313,4433.000000,129,0,1798.800000,extended,lora,180 -on10,0,0,24,1,0,16,4320.000000,129,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,129,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,1620,4320.000000,129,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1001,4401.000000,129,0,1786.000000,extended,lora,180 -on9,0,0,24,1,0,2160,4320.000000,129,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2340,4320.000000,130,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1080,4320.000000,130,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,325,4445.000000,130,0,1803.600000,extended,lora,180 -on9,0,0,24,1,0,922,4322.000000,130,0,1754.400000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,130,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,365,4320.000000,130,0,1753.600000,extended,lora,180 -on10,0,0,23,1,0,540,4278.000000,130,0,1736.800000,extended,lora,180 -on4,0,0,24,1,0,1575,4435.000000,130,0,1799.600000,extended,lora,180 -on5,0,0,23,1,0,419,4330.000000,130,0,1757.600000,extended,lora,180 -on0,1,11,24,0,0,0,4700.000000,130,0,2177.600000,extended,lora,180 -on1,0,0,24,1,0,1439,4479.000000,130,0,1817.200000,extended,lora,180 -on2,0,0,24,1,0,2073,4393.000000,130,0,1782.800000,extended,lora,180 -on4,0,0,24,1,0,514,4454.000000,131,0,1807.200000,extended,lora,180 -on7,0,0,24,1,0,1620,4320.000000,131,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,256,4376.000000,131,0,1776.000000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,131,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,1412,4452.000000,131,0,1806.400000,extended,lora,180 -on11,0,0,24,1,0,2160,4320.000000,131,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2520,4320.000000,131,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,303,4423.000000,131,0,1794.800000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,131,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4602.000000,131,0,2106.400000,extended,lora,180 -on2,0,0,24,1,0,2771,4371.000000,131,0,1774.000000,extended,lora,180 -on10,0,0,24,1,0,540,4320.000000,131,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4914.000000,132,0,2250.400000,extended,lora,180 -on4,0,0,24,1,0,0,4320.000000,132,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1297,4337.000000,132,0,1760.400000,extended,lora,180 -on9,0,0,24,1,0,757,4337.000000,132,0,1760.400000,extended,lora,180 -on11,0,0,24,1,0,1339,4379.000000,132,0,1777.200000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,132,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,3060,4320.000000,132,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,627,4387.000000,132,0,1780.400000,extended,lora,180 -on10,0,0,23,1,0,399,4243.000000,132,0,1722.800000,extended,lora,180 -on1,0,0,24,1,0,423,4363.000000,132,0,1770.800000,extended,lora,180 -on3,0,0,24,1,0,770,4350.000000,132,0,1765.600000,extended,lora,180 -on8,0,0,24,1,0,2700,4320.000000,132,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,58,4358.000000,133,0,1768.800000,extended,lora,180 -on10,0,0,24,1,0,264,4384.000000,133,0,1779.200000,extended,lora,180 -on5,0,0,24,1,0,123,4423.000000,133,0,1794.800000,extended,lora,180 -on8,0,0,24,1,0,1778,4458.000000,133,0,1808.800000,extended,lora,180 -on7,0,0,24,1,0,360,4320.000000,133,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1260,4320.000000,133,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,133,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1904,4404.000000,133,0,1787.200000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,133,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4605.000000,133,0,2087.280000,extended,lora,180 -on9,0,0,24,1,0,2545,4325.000000,133,0,1755.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,133,0,1728.000000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,134,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,3883,4403.000000,134,0,1786.800000,extended,lora,180 -on1,0,0,24,1,0,1816,4320.000000,134,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,180,4320.000000,134,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,134,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1341,4381.000000,134,0,1778.000000,extended,lora,180 -on9,0,0,24,1,0,2030,4350.000000,134,0,1765.600000,extended,lora,180 -on5,0,0,24,1,0,1080,4320.000000,134,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3269,4329.000000,134,0,1757.200000,extended,lora,180 -on8,0,0,24,1,0,2160,4320.000000,134,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1800,4320.000000,134,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4626.000000,134,0,2120.800000,extended,lora,180 -on0,1,10,24,0,0,0,4734.000000,135,0,2165.600000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,135,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,3058,4478.000000,135,0,1816.800000,extended,lora,180 -on3,0,0,24,1,0,900,4320.000000,135,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,3060,4320.000000,135,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1735,4415.000000,135,0,1791.600000,extended,lora,180 -on7,0,0,24,1,0,448,4388.000000,135,0,1780.800000,extended,lora,180 -on10,0,0,24,1,0,2089,4409.000000,135,0,1789.200000,extended,lora,180 -on1,0,0,24,1,0,2160,4320.000000,135,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,303,4423.000000,135,0,1794.800000,extended,lora,180 -on9,0,0,24,1,0,821,4401.000000,135,0,1786.000000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,0,4320.000000,136,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,503,4443.000000,136,0,1802.800000,extended,lora,180 -on2,0,0,24,1,0,352,4472.000000,136,0,1814.400000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,136,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,720,4320.000000,136,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2336,4476.000000,136,0,1816.000000,extended,lora,180 -on3,0,0,24,1,0,2128,4448.000000,136,0,1804.800000,extended,lora,180 -on1,0,0,23,1,0,366,4306.000000,136,0,1748.000000,extended,lora,180 -on4,0,0,24,1,0,2161,4320.000000,136,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1080,4320.000000,136,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,4278,4438.000000,136,0,1800.800000,extended,lora,180 -on0,1,10,24,0,0,0,4701.000000,136,0,2146.000000,extended,lora,180 -on1,0,0,24,1,0,2497,4457.000000,137,0,1808.400000,extended,lora,180 -on9,0,0,24,1,0,675,4435.000000,137,0,1799.600000,extended,lora,180 -on8,0,0,24,1,0,1980,4320.000000,137,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2700,4320.000000,137,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1810,4320.000000,137,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1260,4320.000000,137,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1080,4320.000000,137,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,360,4320.000000,137,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4826.000000,137,0,2221.280000,extended,lora,180 -on11,0,0,24,1,0,180,4320.000000,137,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,297,4417.000000,137,0,1792.400000,extended,lora,180 -on2,0,0,24,1,0,576,4336.000000,137,0,1760.000000,extended,lora,180 -on10,0,0,24,1,0,3555,4435.000000,138,0,1799.600000,extended,lora,180 -on7,0,0,24,1,0,491,4431.000000,138,0,1798.000000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,138,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3938,4458.000000,138,0,1808.800000,extended,lora,180 -on8,0,0,24,1,0,204,4324.000000,138,0,1755.200000,extended,lora,180 -on4,0,0,24,1,0,2332,4472.000000,138,0,1814.400000,extended,lora,180 -on3,0,0,24,1,0,1503,4363.000000,138,0,1770.800000,extended,lora,180 -on9,0,0,24,1,0,1902,4402.000000,138,0,1786.400000,extended,lora,180 -on2,0,0,24,1,0,2231,4371.000000,138,0,1774.000000,extended,lora,180 -on0,1,11,24,0,0,0,4751.000000,138,0,2196.560000,extended,lora,180 -on11,0,0,24,1,0,1683,4363.000000,138,0,1770.800000,extended,lora,180 -on6,0,0,24,1,0,1521,4381.000000,138,0,1778.000000,extended,lora,180 -on0,1,8,24,0,0,0,4605.000000,139,0,2059.600000,extended,lora,180 -on3,0,0,24,1,0,3600,4320.000000,139,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2799,4399.000000,139,0,1785.200000,extended,lora,180 -on7,0,0,24,1,0,37,4337.000000,139,0,1760.400000,extended,lora,180 -on2,0,0,24,1,0,1737,4417.000000,139,0,1792.400000,extended,lora,180 -on9,0,0,24,1,0,1260,4320.000000,139,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,900,4320.000000,139,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,762,4342.000000,139,0,1762.400000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,139,0,1753.600000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,140,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,4128,4468.000000,140,0,1812.800000,extended,lora,180 -on8,0,0,24,1,0,3600,4320.000000,140,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,754,4334.000000,140,0,1759.200000,extended,lora,180 -on11,0,0,24,1,0,1213,4433.000000,140,0,1798.800000,extended,lora,180 -on2,0,0,24,1,0,1800,4320.000000,140,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,513,4453.000000,140,0,1806.800000,extended,lora,180 -on3,0,0,24,1,0,356,4476.000000,140,0,1816.000000,extended,lora,180 -on0,1,11,24,0,0,0,4834.000000,140,0,2224.800000,extended,lora,180 -on6,0,0,24,1,0,1708,4388.000000,140,0,1780.800000,extended,lora,180 -on9,0,0,24,1,0,310,4430.000000,140,0,1797.600000,extended,lora,180 -on4,0,0,24,1,0,478,4418.000000,140,0,1792.800000,extended,lora,180 -on3,0,0,24,1,0,900,4320.000000,141,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,4077,4417.000000,141,0,1792.400000,extended,lora,180 -on10,0,0,24,1,0,3551,4431.000000,141,0,1798.000000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,1679,4359.000000,141,0,1769.200000,extended,lora,180 -on7,0,0,24,1,0,1909,4409.000000,141,0,1789.200000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,extended,lora,180 -on0,1,9,24,0,0,0,4668.000000,141,0,2107.200000,extended,lora,180 -on8,0,0,24,1,0,1815,4320.000000,141,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,2996,4416.000000,141,0,1792.000000,extended,lora,180 -on4,0,0,24,1,0,3054,4474.000000,141,0,1815.200000,extended,lora,180 -on11,0,0,24,1,0,180,4320.000000,141,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2781,4381.000000,142,0,1778.000000,extended,lora,180 -on6,0,0,24,1,0,1210,4430.000000,142,0,1797.600000,extended,lora,180 -on2,0,0,24,1,0,1620,4320.000000,142,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,0,4320.000000,142,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2724,4324.000000,142,0,1755.200000,extended,lora,180 -on3,0,0,24,1,0,215,4335.000000,142,0,1759.600000,extended,lora,180 -on9,0,0,24,1,0,3960,4320.000000,142,0,1753.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,142,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,2880,4320.000000,142,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,900,4320.000000,142,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,142,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,5000.000000,142,0,2264.960000,extended,lora,180 -on1,0,0,24,1,0,1260,4320.000000,143,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,143,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,540,4320.000000,143,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,511,4451.000000,143,0,1806.000000,extended,lora,180 -on0,1,10,24,0,0,0,4797.000000,143,0,2181.200000,extended,lora,180 -on2,0,0,24,1,0,2160,4320.000000,143,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1458,4320.000000,143,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1198,4418.000000,143,0,1792.800000,extended,lora,180 -on8,0,0,24,1,0,3417,4477.000000,143,0,1816.400000,extended,lora,180 -on11,0,0,24,1,0,1173,4393.000000,143,0,1782.800000,extended,lora,180 -on5,0,0,24,1,0,1616,4476.000000,143,0,1816.000000,extended,lora,180 -on6,0,0,24,1,0,1800,4320.000000,144,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,3532,4412.000000,144,0,1790.400000,extended,lora,180 -on8,0,0,24,1,0,42,4342.000000,144,0,1762.400000,extended,lora,180 -on9,0,0,24,1,0,2160,4320.000000,144,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,900,4320.000000,144,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4778.000000,144,0,2176.800000,extended,lora,180 -on10,0,0,24,1,0,3091,4331.000000,144,0,1758.000000,extended,lora,180 -on7,0,0,24,1,0,1348,4388.000000,144,0,1780.800000,extended,lora,180 -on5,0,0,24,1,0,2340,4320.000000,144,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,144,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,720,4320.000000,144,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2989,4409.000000,144,0,1789.200000,extended,lora,180 -on10,0,0,24,1,0,1260,4320.000000,145,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,32,4332.000000,145,0,1758.400000,extended,lora,180 -on8,0,0,24,1,0,1032,4432.000000,145,0,1798.400000,extended,lora,180 -on0,1,11,24,0,0,0,4934.000000,145,0,2262.560000,extended,lora,180 -on5,0,0,24,1,0,1080,4320.000000,145,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,0,4320.000000,145,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,718,4478.000000,145,0,1816.800000,extended,lora,180 -on4,0,0,24,1,0,264,4384.000000,145,0,1779.200000,extended,lora,180 -on7,0,0,24,1,0,1040,4440.000000,145,0,1801.600000,extended,lora,180 -on11,0,0,24,1,0,480,4420.000000,145,0,1793.600000,extended,lora,180 -on9,0,0,24,1,0,3027,4447.000000,145,0,1804.400000,extended,lora,180 -on2,0,0,24,1,0,450,4390.000000,145,0,1781.600000,extended,lora,180 -on0,1,11,24,0,0,0,4930.000000,146,0,2256.800000,extended,lora,180 -on5,0,0,24,1,0,1440,4320.000000,146,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,825,4405.000000,146,0,1787.600000,extended,lora,180 -on10,0,0,24,1,0,861,4441.000000,146,0,1802.000000,extended,lora,180 -on6,0,0,24,1,0,1153,4373.000000,146,0,1774.800000,extended,lora,180 -on7,0,0,24,1,0,3144,4384.000000,146,0,1779.200000,extended,lora,180 -on1,0,0,24,1,0,3359,4419.000000,146,0,1793.200000,extended,lora,180 -on11,0,0,24,1,0,1080,4320.000000,146,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1967,4467.000000,146,0,1812.400000,extended,lora,180 -on9,0,0,24,1,0,580,4340.000000,146,0,1761.600000,extended,lora,180 -on3,0,0,24,1,0,668,4428.000000,146,0,1796.800000,extended,lora,180 -on2,0,0,24,1,0,3116,4356.000000,146,0,1768.000000,extended,lora,180 -on4,0,0,24,1,0,327,4447.000000,147,0,1804.400000,extended,lora,180 -on5,0,0,24,1,0,1295,4335.000000,147,0,1759.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,147,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,2520,4320.000000,147,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,540,4320.000000,147,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,180,4320.000000,147,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,3232,4472.000000,147,0,1814.400000,extended,lora,180 -on7,0,0,24,1,0,2413,4373.000000,147,0,1774.800000,extended,lora,180 -on2,0,0,24,1,0,438,4378.000000,147,0,1776.800000,extended,lora,180 -on8,0,0,24,1,0,3759,4459.000000,147,0,1809.200000,extended,lora,180 -on3,0,0,24,1,0,3149,4389.000000,147,0,1781.200000,extended,lora,180 -on0,1,10,24,0,0,0,4800.000000,147,0,2185.600000,extended,lora,180 -on1,0,0,24,1,0,3046,4466.000000,148,0,1812.000000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,148,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,660,4420.000000,148,0,1793.600000,extended,lora,180 -on10,0,0,24,1,0,180,4320.000000,148,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2,4320.000000,148,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,146,4446.000000,148,0,1804.000000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,148,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,532,4472.000000,148,0,1814.400000,extended,lora,180 -on7,0,0,24,1,0,837,4417.000000,148,0,1792.400000,extended,lora,180 -on0,1,11,24,0,0,0,4994.000000,148,0,2292.000000,extended,lora,180 -on9,0,0,24,1,0,2520,4320.000000,148,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2183,4323.000000,148,0,1754.800000,extended,lora,180 -on4,0,0,24,1,0,1440,4320.000000,149,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,4019,4359.000000,149,0,1769.200000,extended,lora,180 -on6,0,0,24,1,0,1232,4452.000000,149,0,1806.400000,extended,lora,180 -on1,0,0,23,1,0,2602,4382.000000,149,0,1778.400000,extended,lora,180 -on3,0,0,24,1,0,765,4345.000000,149,0,1763.600000,extended,lora,180 -on0,1,10,24,0,0,0,4806.000000,149,0,2192.800000,extended,lora,180 -on10,0,0,24,1,0,1572,4432.000000,149,0,1798.400000,extended,lora,180 -on7,0,0,24,1,0,18,4320.000000,149,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,900,4320.000000,149,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,826,4406.000000,149,0,1788.000000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,149,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1800,4320.000000,149,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3235,4475.000000,150,0,1815.600000,extended,lora,180 -on10,0,0,24,1,0,1080,4320.000000,150,0,1753.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,19,4320.000000,150,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,467,4407.000000,150,0,1788.400000,extended,lora,180 -on6,0,0,24,1,0,2274,4414.000000,150,0,1791.200000,extended,lora,180 -on0,1,9,24,0,0,0,4669.000000,150,0,2114.000000,extended,lora,180 -on8,0,0,24,1,0,4140,4320.000000,150,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1419,4459.000000,150,0,1809.200000,extended,lora,180 -on3,0,0,24,1,0,661,4421.000000,150,0,1794.000000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,507,4447.000000,150,0,1804.400000,extended,lora,180 -on7,0,0,24,1,0,720,4320.000000,151,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1663,4343.000000,151,0,1762.800000,extended,lora,180 -on11,0,0,24,1,0,3240,4320.000000,151,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,67,4367.000000,151,0,1772.400000,extended,lora,180 -on3,0,0,24,1,0,2833,4433.000000,151,0,1798.800000,extended,lora,180 -on5,0,0,24,1,0,2024,4344.000000,151,0,1763.200000,extended,lora,180 -on2,0,0,24,1,0,1208,4428.000000,151,0,1796.800000,extended,lora,180 -on10,0,0,24,1,0,360,4320.000000,151,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1800,4320.000000,151,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4844.000000,151,0,2234.080000,extended,lora,180 -on1,0,0,24,1,0,900,4320.000000,151,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1080,4320.000000,151,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,87,4387.000000,152,0,1780.400000,extended,lora,180 -on9,0,0,24,1,0,669,4429.000000,152,0,1797.200000,extended,lora,180 -on8,0,0,24,1,0,152,4452.000000,152,0,1806.400000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,1705,4385.000000,152,0,1779.600000,extended,lora,180 -on7,0,0,24,1,0,2880,4320.000000,152,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1440,4320.000000,152,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,152,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1310,4350.000000,152,0,1765.600000,extended,lora,180 -on4,0,0,24,1,0,180,4320.000000,152,0,1753.600000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,extended,lora,180 -on0,1,9,24,0,0,0,4713.000000,152,0,2125.200000,extended,lora,180 -on1,0,0,24,1,0,1060,4460.000000,153,0,1809.600000,extended,lora,180 -on10,0,0,24,1,0,1800,4320.000000,153,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,297,4417.000000,153,0,1792.400000,extended,lora,180 -on9,0,0,24,1,0,2520,4320.000000,153,0,1753.600000,extended,lora,180 -on11,0,0,23,1,0,1396,4276.000000,153,0,1736.000000,extended,lora,180 -on7,0,0,24,1,0,2891,4320.000000,153,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1033,4433.000000,153,0,1798.800000,extended,lora,180 -on0,1,11,24,0,0,0,5043.000000,153,0,2305.200000,extended,lora,180 -on6,0,0,24,1,0,179,4479.000000,153,0,1817.200000,extended,lora,180 -on2,0,0,24,1,0,1620,4320.000000,153,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,720,4320.000000,153,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1980,4320.000000,153,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,628,4388.000000,154,0,1780.800000,extended,lora,180 -on5,0,0,24,1,0,1040,4440.000000,154,0,1801.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,1440,4320.000000,154,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2265,4405.000000,154,0,1787.600000,extended,lora,180 -on3,0,0,24,1,0,667,4427.000000,154,0,1796.400000,extended,lora,180 -on4,0,0,24,1,0,1800,4320.000000,154,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,720,4320.000000,154,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,3060,4320.000000,154,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,extended,lora,180 -on0,1,9,24,0,0,0,4838.000000,154,0,2175.200000,extended,lora,180 -on6,0,0,24,1,0,328,4448.000000,154,0,1804.800000,extended,lora,180 -on0,1,11,24,0,0,0,5025.000000,155,0,2301.200000,extended,lora,180 -on10,0,0,24,1,0,471,4411.000000,155,0,1790.000000,extended,lora,180 -on2,0,0,24,1,0,2417,4377.000000,155,0,1776.400000,extended,lora,180 -on3,0,0,24,1,0,1966,4466.000000,155,0,1812.000000,extended,lora,180 -on6,0,0,24,1,0,2422,4382.000000,155,0,1778.400000,extended,lora,180 -on1,0,0,24,1,0,2880,4320.000000,155,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1669,4349.000000,155,0,1765.200000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,155,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,155,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1440,4320.000000,155,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,359,4479.000000,155,0,1817.200000,extended,lora,180 -on8,0,0,23,1,0,300,4369.000000,155,0,1773.200000,extended,lora,180 -on11,0,0,24,1,0,2160,4320.000000,156,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3960,4320.000000,156,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,194,4320.000000,156,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1800,4320.000000,156,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3420,4320.000000,156,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1,4320.000000,156,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,540,4320.000000,156,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1280,4320.000000,156,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,0,4320.000000,156,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,156,0,1728.000000,extended,lora,180 -on0,1,10,24,0,0,0,4732.000000,156,0,2161.280000,extended,lora,180 -on6,0,0,24,1,0,2340,4320.000000,156,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1620,4320.000000,157,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1440,4320.000000,157,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,407,4347.000000,157,0,1764.400000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,157,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2880,4320.000000,157,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,157,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,180,4320.000000,157,0,1753.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,3240,4320.000000,157,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1556,4416.000000,157,0,1792.000000,extended,lora,180 -on0,1,9,24,0,0,0,4916.000000,157,0,2200.480000,extended,lora,180 -on10,0,0,24,1,0,1620,4320.000000,158,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1468,4328.000000,158,0,1756.800000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,180,4320.000000,158,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,360,4320.000000,158,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2340,4320.000000,158,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2143,4463.000000,158,0,1810.800000,extended,lora,180 -on0,1,8,24,0,0,0,4821.000000,158,0,2142.800000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,158,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,566,4326.000000,158,0,1756.000000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,180,4320.000000,159,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2367,4327.000000,159,0,1756.400000,extended,lora,180 -on0,1,11,24,0,0,0,4989.000000,159,0,2286.800000,extended,lora,180 -on6,0,0,24,1,0,4140,4320.000000,159,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2672,4452.000000,159,0,1806.400000,extended,lora,180 -on7,0,0,24,1,0,516,4456.000000,159,0,1808.000000,extended,lora,180 -on9,0,0,24,1,0,1260,4320.000000,159,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,395,4335.000000,159,0,1759.600000,extended,lora,180 -on5,0,0,24,1,0,721,4320.000000,159,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,2046,4366.000000,159,0,1772.000000,extended,lora,180 -on3,0,0,24,1,0,1440,4320.000000,159,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,730,4320.000000,159,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1398,4438.000000,160,0,1800.800000,extended,lora,180 -on2,0,0,24,1,0,655,4415.000000,160,0,1791.600000,extended,lora,180 -on11,0,0,24,1,0,1071,4471.000000,160,0,1814.000000,extended,lora,180 -on6,0,0,24,1,0,10,4320.000000,160,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1570,4430.000000,160,0,1797.600000,extended,lora,180 -on8,0,0,24,1,0,1029,4429.000000,160,0,1797.200000,extended,lora,180 -on5,0,0,24,1,0,250,4370.000000,160,0,1773.600000,extended,lora,180 -on4,0,0,24,1,0,24,4324.000000,160,0,1755.200000,extended,lora,180 -on0,1,11,24,0,0,0,4748.000000,160,0,2193.600000,extended,lora,180 -on3,0,0,24,1,0,831,4411.000000,160,0,1790.000000,extended,lora,180 -on1,0,0,24,1,0,1576,4436.000000,160,0,1800.000000,extended,lora,180 -on7,0,0,24,1,0,1080,4320.000000,160,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,644,4404.000000,161,0,1787.200000,extended,lora,180 -on2,0,0,24,1,0,1080,4320.000000,161,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,360,4320.000000,161,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2875,4475.000000,161,0,1815.600000,extended,lora,180 -on6,0,0,24,1,0,3036,4456.000000,161,0,1808.000000,extended,lora,180 -on5,0,0,24,1,0,727,4320.000000,161,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4754.000000,161,0,2196.000000,extended,lora,180 -on9,0,0,24,1,0,1011,4411.000000,161,0,1790.000000,extended,lora,180 -on1,0,0,24,1,0,600,4360.000000,161,0,1769.600000,extended,lora,180 -on4,0,0,23,1,0,0,4192.000000,161,0,1702.400000,extended,lora,180 -on3,0,0,24,1,0,1416,4456.000000,161,0,1808.000000,extended,lora,180 -on10,0,0,24,1,0,1440,4320.000000,161,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,751,4331.000000,162,0,1758.000000,extended,lora,180 -on5,0,0,24,1,0,83,4383.000000,162,0,1778.800000,extended,lora,180 -on8,0,0,24,1,0,2160,4320.000000,162,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,162,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3060,4320.000000,162,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1440,4320.000000,162,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,273,4393.000000,162,0,1782.800000,extended,lora,180 -on6,0,0,24,1,0,540,4320.000000,162,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1221,4441.000000,162,0,1802.000000,extended,lora,180 -on11,0,0,24,1,0,436,4376.000000,162,0,1776.000000,extended,lora,180 -on0,1,11,24,0,0,0,4776.000000,162,0,2203.520000,extended,lora,180 -on10,0,0,24,1,0,204,4324.000000,162,0,1755.200000,extended,lora,180 -on1,0,0,24,1,0,2743,4343.000000,163,0,1762.800000,extended,lora,180 -on8,0,0,23,0,0,4280,4280.000000,163,0,1712.000000,extended,lora,180 -on2,0,0,24,1,0,205,4325.000000,163,0,1755.600000,extended,lora,180 -on4,0,0,24,1,0,935,4335.000000,163,0,1759.600000,extended,lora,180 -on3,0,0,24,1,0,3060,4320.000000,163,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4434.000000,163,0,2052.000000,extended,lora,180 -on11,0,0,24,1,0,2494,4454.000000,163,0,1807.200000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,163,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2151,4471.000000,163,0,1814.000000,extended,lora,180 -on10,0,0,24,1,0,1751,4431.000000,163,0,1798.000000,extended,lora,180 -on6,0,0,24,1,0,1086,4320.000000,163,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,163,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,219,4339.000000,164,0,1761.200000,extended,lora,180 -on0,1,11,24,0,0,0,4905.000000,164,0,2249.040000,extended,lora,180 -on11,0,0,24,1,0,1440,4320.000000,164,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,478,4418.000000,164,0,1792.800000,extended,lora,180 -on2,0,0,24,1,0,540,4320.000000,164,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1629,4320.000000,164,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1080,4320.000000,164,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,3670,4370.000000,164,0,1773.600000,extended,lora,180 -on10,0,0,24,1,0,507,4447.000000,164,0,1804.400000,extended,lora,180 -on5,0,0,24,1,0,1260,4320.000000,164,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,0,4320.000000,164,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1651,4331.000000,164,0,1758.000000,extended,lora,180 -on3,0,0,24,1,0,1234,4454.000000,165,0,1807.200000,extended,lora,180 -on9,0,0,24,1,0,2121,4441.000000,165,0,1802.000000,extended,lora,180 -on0,1,9,24,0,0,0,4781.000000,165,0,2157.360000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,83,4383.000000,165,0,1778.800000,extended,lora,180 -on7,0,0,24,1,0,3060,4320.000000,165,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2340,4320.000000,165,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,720,4320.000000,165,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,900,4320.000000,165,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2520,4320.000000,165,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1475,4335.000000,165,0,1759.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,2160,4320.000000,166,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4577.000000,166,0,2105.840000,extended,lora,180 -on11,0,0,24,1,0,180,4320.000000,166,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1260,4320.000000,166,0,1753.600000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,166,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,489,4429.000000,166,0,1797.200000,extended,lora,180 -on6,0,0,24,1,0,2880,4320.000000,166,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,763,4343.000000,166,0,1762.800000,extended,lora,180 -on10,0,0,24,1,0,1838,4338.000000,166,0,1760.800000,extended,lora,180 -on8,0,0,24,1,0,2595,4375.000000,166,0,1775.600000,extended,lora,180 -on4,0,0,24,1,0,912,4320.000000,166,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,279,4399.000000,166,0,1785.200000,extended,lora,180 -on3,0,0,23,1,0,2150,4310.000000,167,0,1749.600000,extended,lora,180 -on7,0,0,24,1,0,1440,4320.000000,167,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,394,4334.000000,167,0,1759.200000,extended,lora,180 -on11,0,0,24,1,0,239,4359.000000,167,0,1769.200000,extended,lora,180 -on4,0,0,24,1,0,900,4320.000000,167,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2700,4320.000000,167,0,1753.600000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,167,0,1728.000000,extended,lora,180 -on5,0,0,23,1,0,2490,4270.000000,167,0,1733.600000,extended,lora,180 -on9,0,0,24,1,0,4095,4435.000000,167,0,1799.600000,extended,lora,180 -on0,1,10,24,0,0,0,4931.000000,167,0,2234.800000,extended,lora,180 -on6,0,0,24,1,0,420,4360.000000,167,0,1769.600000,extended,lora,180 -on2,0,0,24,1,0,2681,4461.000000,167,0,1810.000000,extended,lora,180 -on0,1,9,24,0,0,0,4823.000000,168,0,2162.800000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,168,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,0,4320.000000,168,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1195,4415.000000,168,0,1791.600000,extended,lora,180 -on6,0,0,24,1,0,410,4350.000000,168,0,1765.600000,extended,lora,180 -on2,0,0,24,1,0,180,4320.000000,168,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1677,4357.000000,168,0,1768.400000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,477,4417.000000,168,0,1792.400000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,1624,4320.000000,168,0,1753.600000,extended,lora,180 -on3,0,0,23,1,0,2452,4252.000000,168,0,1726.400000,extended,lora,180 -on4,0,0,24,1,0,3652,4352.000000,169,0,1766.400000,extended,lora,180 -on1,0,0,24,1,0,2340,4320.000000,169,0,1753.600000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,1476,4336.000000,169,0,1760.000000,extended,lora,180 -on5,0,0,24,1,0,565,4325.000000,169,0,1755.600000,extended,lora,180 -on6,0,0,24,1,0,647,4407.000000,169,0,1788.400000,extended,lora,180 -on11,0,0,24,1,0,739,4320.000000,169,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4689.000000,169,0,2115.920000,extended,lora,180 -on10,0,0,24,1,0,2520,4320.000000,169,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1080,4320.000000,169,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1800,4320.000000,169,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,403,4343.000000,170,0,1762.800000,extended,lora,180 -on10,0,0,24,1,0,720,4320.000000,170,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,434,4374.000000,170,0,1775.200000,extended,lora,180 -on6,0,0,24,1,0,1440,4320.000000,170,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,180,4320.000000,170,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,1905,4405.000000,170,0,1787.600000,extended,lora,180 -on4,0,0,24,1,0,635,4395.000000,170,0,1783.600000,extended,lora,180 -on1,0,0,24,1,0,2306,4446.000000,170,0,1804.000000,extended,lora,180 -on11,0,0,24,1,0,2520,4320.000000,170,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4909.000000,170,0,2254.800000,extended,lora,180 -on7,0,0,24,1,0,1401,4441.000000,170,0,1802.000000,extended,lora,180 -on8,0,0,24,1,0,1922,4422.000000,170,0,1794.400000,extended,lora,180 -on6,0,0,24,1,0,720,4320.000000,171,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2709,4320.000000,171,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2783,4383.000000,171,0,1778.800000,extended,lora,180 -on8,0,0,24,1,0,0,4320.000000,171,0,1753.600000,extended,lora,180 -on2,0,0,23,1,0,235,4222.000000,171,0,1714.400000,extended,lora,180 -on10,0,0,24,1,0,1620,4320.000000,171,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,2030,4350.000000,171,0,1765.600000,extended,lora,180 -on11,0,0,24,1,0,245,4365.000000,171,0,1771.600000,extended,lora,180 -on9,0,0,24,1,0,1858,4358.000000,171,0,1768.800000,extended,lora,180 -on5,0,0,24,1,0,1385,4425.000000,171,0,1795.600000,extended,lora,180 -on3,0,0,24,1,0,1254,4474.000000,171,0,1815.200000,extended,lora,180 -on0,1,11,24,0,0,0,4917.000000,171,0,2254.800000,extended,lora,180 -on4,0,0,24,1,0,3420,4320.000000,172,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,172,0,1728.000000,extended,lora,180 -on9,0,0,24,1,0,745,4325.000000,172,0,1755.600000,extended,lora,180 -on0,1,10,24,0,0,0,4757.000000,172,0,2169.360000,extended,lora,180 -on1,0,0,24,1,0,3960,4320.000000,172,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1326,4366.000000,172,0,1772.000000,extended,lora,180 -on10,0,0,24,1,0,360,4320.000000,172,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1514,4374.000000,172,0,1775.200000,extended,lora,180 -on8,0,0,24,1,0,0,4320.000000,172,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2129,4449.000000,172,0,1805.200000,extended,lora,180 -on5,0,0,24,1,0,858,4438.000000,172,0,1800.800000,extended,lora,180 -on3,0,0,24,1,0,180,4320.000000,172,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1980,4320.000000,173,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,994,4394.000000,173,0,1783.200000,extended,lora,180 -on7,0,0,24,1,0,323,4443.000000,173,0,1802.800000,extended,lora,180 -on8,0,0,24,1,0,0,4320.000000,173,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4734.000000,173,0,2187.680000,extended,lora,180 -on5,0,0,24,1,0,3866,4386.000000,173,0,1780.000000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,173,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1440,4320.000000,173,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2880,4320.000000,173,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,19,4320.000000,173,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1620,4320.000000,173,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1860,4360.000000,173,0,1769.600000,extended,lora,180 -on11,0,0,24,1,0,1325,4365.000000,174,0,1771.600000,extended,lora,180 -on0,1,10,24,0,0,0,4611.000000,174,0,2119.600000,extended,lora,180 -on5,0,0,24,1,0,3960,4320.000000,174,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,845,4425.000000,174,0,1795.600000,extended,lora,180 -on1,0,0,23,1,0,180,4301.000000,174,0,1746.000000,extended,lora,180 -on4,0,0,24,1,0,3274,4334.000000,174,0,1759.200000,extended,lora,180 -on7,0,0,24,1,0,540,4320.000000,174,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,174,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,2649,4429.000000,174,0,1797.200000,extended,lora,180 -on6,0,0,24,1,0,3828,4348.000000,174,0,1764.800000,extended,lora,180 -on9,0,0,23,1,0,1980,4212.000000,174,0,1710.400000,extended,lora,180 -on10,0,0,24,1,0,360,4320.000000,174,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1760,4440.000000,175,0,1801.600000,extended,lora,180 -on4,0,0,24,1,0,720,4320.000000,175,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1980,4320.000000,175,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,20,4320.000000,175,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,3600,4320.000000,175,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4965.000000,175,0,2277.200000,extended,lora,180 -on5,0,0,24,1,0,1080,4320.000000,175,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,900,4320.000000,175,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1767,4447.000000,175,0,1804.400000,extended,lora,180 -on6,0,0,24,1,0,3060,4320.000000,175,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,2801,4401.000000,175,0,1786.000000,extended,lora,180 -on8,0,0,24,1,0,302,4422.000000,175,0,1794.400000,extended,lora,180 -on3,0,0,24,1,0,3385,4445.000000,176,0,1803.600000,extended,lora,180 -on0,1,10,24,0,0,0,4810.000000,176,0,2194.720000,extended,lora,180 -on11,0,0,24,1,0,1260,4320.000000,176,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1980,4320.000000,176,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,2484,4444.000000,176,0,1803.200000,extended,lora,180 -on8,0,0,24,1,0,909,4320.000000,176,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,176,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,900,4320.000000,176,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,360,4320.000000,176,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,770,4350.000000,176,0,1765.600000,extended,lora,180 -on6,0,0,24,1,0,1541,4401.000000,176,0,1786.000000,extended,lora,180 -on2,0,0,24,1,0,540,4320.000000,176,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,3780,4320.000000,177,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4477.000000,177,0,2065.520000,extended,lora,180 -on5,0,0,24,1,0,4140,4320.000000,177,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1440,4320.000000,177,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,720,4320.000000,177,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,360,4320.000000,177,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2338,4478.000000,177,0,1816.800000,extended,lora,180 -on3,0,0,23,1,0,547,4250.000000,177,0,1725.600000,extended,lora,180 -on10,0,0,24,1,0,2611,4391.000000,177,0,1782.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,177,0,1728.000000,extended,lora,180 -on8,0,0,24,1,0,230,4350.000000,177,0,1765.600000,extended,lora,180 -on2,0,0,24,1,0,97,4397.000000,177,0,1784.400000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,178,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,1747,4427.000000,178,0,1796.400000,extended,lora,180 -on5,0,0,24,1,0,1798,4478.000000,178,0,1816.800000,extended,lora,180 -on3,0,0,24,1,0,2558,4338.000000,178,0,1760.800000,extended,lora,180 -on8,0,0,24,1,0,180,4320.000000,178,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1391,4431.000000,178,0,1798.000000,extended,lora,180 -on1,0,0,24,1,0,2435,4395.000000,178,0,1783.600000,extended,lora,180 -on0,1,10,24,0,0,0,4672.000000,178,0,2140.800000,extended,lora,180 -on6,0,0,24,1,0,1871,4371.000000,178,0,1774.000000,extended,lora,180 -on2,0,0,24,1,0,0,4320.000000,178,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2115,4435.000000,178,0,1799.600000,extended,lora,180 -on7,0,0,24,1,0,720,4320.000000,178,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,900,4320.000000,179,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1800,4320.000000,179,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,4008,4348.000000,179,0,1764.800000,extended,lora,180 -on4,0,0,24,1,0,2726,4326.000000,179,0,1756.000000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,3060,4320.000000,179,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,180,4320.000000,179,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1980,4320.000000,179,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,2673,4453.000000,179,0,1806.800000,extended,lora,180 -on0,1,9,24,0,0,0,4758.000000,179,0,2143.200000,extended,lora,180 -on9,0,0,24,1,0,2160,4320.000000,179,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1440,4320.000000,180,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4720.000000,180,0,2131.200000,extended,lora,180 -on3,0,0,24,1,0,180,4320.000000,180,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,180,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,720,4320.000000,180,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,636,4396.000000,180,0,1784.000000,extended,lora,180 -on6,0,0,24,1,0,920,4320.000000,180,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2160,4320.000000,180,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1172,4392.000000,180,0,1782.400000,extended,lora,180 -on10,0,0,23,0,0,4289,4289.000000,180,0,1715.600000,extended,lora,180 -on9,0,0,24,1,0,1370,4410.000000,180,0,1789.600000,extended,lora,180 -on2,0,0,24,1,0,0,4320.000000,180,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1097,4320.000000,181,0,1753.600000,extended,lora,180 -on9,0,0,23,1,0,3678,4295.000000,181,0,1743.600000,extended,lora,180 -on1,0,0,24,1,0,540,4320.000000,181,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,144,4444.000000,181,0,1803.200000,extended,lora,180 -on3,0,0,24,1,0,1236,4456.000000,181,0,1808.000000,extended,lora,180 -on8,0,0,24,1,0,979,4379.000000,181,0,1777.200000,extended,lora,180 -on6,0,0,24,1,0,14,4320.000000,181,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,1609,4469.000000,181,0,1813.200000,extended,lora,180 -on7,0,0,24,1,0,405,4345.000000,181,0,1763.600000,extended,lora,180 -on0,1,10,24,0,0,0,4769.000000,181,0,2176.400000,extended,lora,180 -on4,0,0,24,1,0,720,4320.000000,181,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,182,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1754,4434.000000,182,0,1799.200000,extended,lora,180 -on3,0,0,24,1,0,904,4320.000000,182,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,292,4412.000000,182,0,1790.400000,extended,lora,180 -on7,0,0,24,1,0,823,4403.000000,182,0,1786.800000,extended,lora,180 -on11,0,0,24,1,0,3077,4320.000000,182,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4566.000000,182,0,2101.920000,extended,lora,180 -on8,0,0,24,1,0,540,4320.000000,182,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,1440,4320.000000,182,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,540,4320.000000,182,0,1753.600000,extended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,182,0,1728.000000,extended,lora,180 -on10,0,0,24,1,0,1826,4326.000000,182,0,1756.000000,extended,lora,180 -on10,0,0,24,1,0,419,4359.000000,183,0,1769.200000,extended,lora,180 -on1,0,0,24,1,0,1073,4473.000000,183,0,1814.800000,extended,lora,180 -on8,0,0,24,1,0,863,4443.000000,183,0,1802.800000,extended,lora,180 -on4,0,0,24,1,0,2726,4326.000000,183,0,1756.000000,extended,lora,180 -on3,0,0,24,1,0,1040,4440.000000,183,0,1801.600000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,183,0,1728.000000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,183,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,3420,4320.000000,183,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,3780,4320.000000,183,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4661.000000,183,0,2104.400000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,183,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,180,4320.000000,183,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,540,4320.000000,184,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1080,4320.000000,184,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1260,4320.000000,184,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2374,4334.000000,184,0,1759.200000,extended,lora,180 -on2,0,0,24,1,0,1747,4427.000000,184,0,1796.400000,extended,lora,180 -on5,0,0,24,1,0,2160,4320.000000,184,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,1027,4427.000000,184,0,1796.400000,extended,lora,180 -on4,0,0,24,1,0,1980,4320.000000,184,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4680.000000,184,0,2139.680000,extended,lora,180 -on3,0,0,24,1,0,1734,4414.000000,184,0,1791.200000,extended,lora,180 -on11,0,0,24,1,0,1800,4320.000000,184,0,1753.600000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,184,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,3241,4320.000000,185,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,1800,4320.000000,185,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1260,4320.000000,185,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4659.000000,185,0,2129.520000,extended,lora,180 -on4,0,0,24,1,0,117,4417.000000,185,0,1792.400000,extended,lora,180 -on1,0,0,24,1,0,1003,4403.000000,185,0,1786.800000,extended,lora,180 -on10,0,0,24,1,0,115,4415.000000,185,0,1791.600000,extended,lora,180 -on8,0,0,24,1,0,1769,4449.000000,185,0,1805.200000,extended,lora,180 -on5,0,0,24,1,0,540,4320.000000,185,0,1753.600000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,185,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,908,4320.000000,185,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2069,4389.000000,185,0,1781.200000,extended,lora,180 -on9,0,0,24,1,0,0,4320.000000,186,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2520,4320.000000,186,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,1980,4320.000000,186,0,1753.600000,extended,lora,180 -on0,1,11,24,0,0,0,4588.000000,186,0,2136.000000,extended,lora,180 -on1,0,0,24,1,0,4140,4320.000000,186,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1032,4432.000000,186,0,1798.400000,extended,lora,180 -on3,0,0,24,1,0,3318,4378.000000,186,0,1776.800000,extended,lora,180 -on11,0,0,24,1,0,2880,4320.000000,186,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,498,4438.000000,186,0,1800.800000,extended,lora,180 -on8,0,0,24,1,0,1596,4456.000000,186,0,1808.000000,extended,lora,180 -on2,0,0,24,1,0,4082,4422.000000,186,0,1794.400000,extended,lora,180 -on5,0,0,24,1,0,2872,4472.000000,186,0,1814.400000,extended,lora,180 -on9,0,0,24,1,0,8,4320.000000,187,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4678.000000,187,0,2117.120000,extended,lora,180 -on10,0,0,24,1,0,1436,4476.000000,187,0,1816.000000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,extended,lora,180 -on6,0,0,24,1,0,3041,4461.000000,187,0,1810.000000,extended,lora,180 -on5,0,0,24,1,0,900,4320.000000,187,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1567,4427.000000,187,0,1796.400000,extended,lora,180 -on2,0,0,24,1,0,335,4455.000000,187,0,1807.600000,extended,lora,180 -on4,0,0,24,1,0,1620,4320.000000,187,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,540,4320.000000,187,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,54,4354.000000,187,0,1767.200000,extended,lora,180 -on6,0,0,24,1,0,688,4448.000000,188,0,1804.800000,extended,lora,180 -on7,0,0,24,1,0,1751,4431.000000,188,0,1798.000000,extended,lora,180 -on2,0,0,24,1,0,1706,4386.000000,188,0,1780.000000,extended,lora,180 -on0,1,11,24,0,0,0,4813.000000,188,0,2219.760000,extended,lora,180 -on9,0,0,24,1,0,4140,4320.000000,188,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,360,4320.000000,188,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1080,4320.000000,188,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2745,4345.000000,188,0,1763.600000,extended,lora,180 -on11,0,0,24,1,0,1239,4459.000000,188,0,1809.200000,extended,lora,180 -on5,0,0,24,1,0,1499,4359.000000,188,0,1769.200000,extended,lora,180 -on1,0,0,24,1,0,3420,4320.000000,188,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,499,4439.000000,188,0,1801.200000,extended,lora,180 -on1,0,0,24,1,0,3060,4320.000000,189,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,2340,4320.000000,189,0,1753.600000,extended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,189,0,1728.000000,extended,lora,180 -on4,0,0,24,1,0,1525,4385.000000,189,0,1779.600000,extended,lora,180 -on2,0,0,24,1,0,3600,4320.000000,189,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,3060,4320.000000,189,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,180,4320.000000,189,0,1753.600000,extended,lora,180 -on0,1,9,24,0,0,0,4736.000000,189,0,2137.280000,extended,lora,180 -on10,0,0,24,1,0,0,4320.000000,189,0,1753.600000,extended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,189,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,1620,4320.000000,189,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,3833,4353.000000,189,0,1766.800000,extended,lora,180 -on5,0,0,24,1,0,1083,4320.000000,190,0,1753.600000,extended,lora,180 -on0,1,7,24,0,0,0,4462.000000,190,0,1980.000000,extended,lora,180 -on9,0,0,24,1,0,180,4320.000000,190,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,601,4361.000000,190,0,1770.000000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,395,4335.000000,190,0,1759.600000,extended,lora,180 -on2,0,0,24,1,0,1526,4386.000000,190,0,1780.000000,extended,lora,180 -on3,0,0,24,1,0,3060,4320.000000,190,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1868,4368.000000,190,0,1772.800000,extended,lora,180 -on5,0,0,24,1,0,1967,4467.000000,191,0,1812.400000,extended,lora,180 -on2,0,0,24,1,0,180,4320.000000,191,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1532,4392.000000,191,0,1782.400000,extended,lora,180 -on1,0,0,24,1,0,884,4464.000000,191,0,1811.200000,extended,lora,180 -on3,0,0,24,1,0,360,4320.000000,191,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,213,4333.000000,191,0,1758.800000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,191,0,1728.000000,extended,lora,180 -on11,0,0,24,1,0,159,4459.000000,191,0,1809.200000,extended,lora,180 -on9,0,0,24,1,0,2340,4320.000000,191,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4823.000000,191,0,2194.800000,extended,lora,180 -on4,0,0,24,1,0,877,4457.000000,191,0,1808.400000,extended,lora,180 -on8,0,0,24,1,0,1620,4320.000000,191,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,1342,4382.000000,192,0,1778.400000,extended,lora,180 -on4,0,0,24,1,0,1269,4320.000000,192,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,0,4320.000000,192,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,540,4320.000000,192,0,1753.600000,extended,lora,180 -on5,0,0,24,1,0,720,4320.000000,192,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,5025.000000,192,0,2269.200000,extended,lora,180 -on10,0,0,24,1,0,1192,4412.000000,192,0,1790.400000,extended,lora,180 -on1,0,0,24,1,0,180,4320.000000,192,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1076,4476.000000,192,0,1816.000000,extended,lora,180 -on11,0,0,24,1,0,1620,4320.000000,192,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,1494,4354.000000,192,0,1767.200000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,192,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,1260,4320.000000,193,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2160,4320.000000,193,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,3009,4429.000000,193,0,1797.200000,extended,lora,180 -on3,0,0,24,1,0,2700,4320.000000,193,0,1753.600000,extended,lora,180 -on7,0,0,24,1,0,1320,4360.000000,193,0,1769.600000,extended,lora,180 -on5,0,0,24,1,0,2595,4375.000000,193,0,1775.600000,extended,lora,180 -on0,1,11,24,0,0,0,4797.000000,193,0,2206.800000,extended,lora,180 -on4,0,0,24,1,0,3770,4470.000000,193,0,1813.600000,extended,lora,180 -on10,0,0,24,1,0,900,4320.000000,193,0,1753.600000,extended,lora,180 -on2,0,0,24,1,0,360,4320.000000,193,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1697,4377.000000,193,0,1776.400000,extended,lora,180 -on6,0,0,24,1,0,2578,4358.000000,193,0,1768.800000,extended,lora,180 -on7,0,0,24,1,0,900,4320.000000,194,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,720,4320.000000,194,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,2210,4350.000000,194,0,1765.600000,extended,lora,180 -on1,0,0,24,1,0,3000,4420.000000,194,0,1793.600000,extended,lora,180 -on0,1,11,24,0,0,0,4925.000000,194,0,2262.960000,extended,lora,180 -on6,0,0,24,1,0,2019,4339.000000,194,0,1761.200000,extended,lora,180 -on4,0,0,24,1,0,236,4356.000000,194,0,1768.000000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,194,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,2887,4320.000000,194,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,1357,4397.000000,194,0,1784.400000,extended,lora,180 -on3,0,0,24,1,0,1361,4401.000000,194,0,1786.000000,extended,lora,180 -on2,0,0,23,1,0,661,4299.000000,194,0,1745.200000,extended,lora,180 -on6,0,0,24,1,0,2204,4344.000000,195,0,1763.200000,extended,lora,180 -on8,0,0,24,1,0,2645,4425.000000,195,0,1795.600000,extended,lora,180 -on11,0,0,24,1,0,1867,4367.000000,195,0,1772.400000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,195,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,9,4320.000000,195,0,1753.600000,extended,lora,180 -on10,0,0,23,1,0,2723,4163.000000,195,0,1690.800000,extended,lora,180 -on1,0,0,24,1,0,661,4421.000000,195,0,1794.000000,extended,lora,180 -on9,0,0,24,1,0,1401,4441.000000,195,0,1802.000000,extended,lora,180 -on3,0,0,24,1,0,180,4320.000000,195,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,900,4320.000000,195,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4756.000000,195,0,2174.720000,extended,lora,180 -on7,0,0,24,1,0,2696,4476.000000,195,0,1816.000000,extended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,extended,lora,180 -on2,0,0,24,1,0,1440,4320.000000,196,0,1753.600000,extended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,extended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,extended,lora,180 -on5,0,0,24,1,0,360,4320.000000,196,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,3060,4320.000000,196,0,1753.600000,extended,lora,180 -on1,0,0,24,1,0,113,4413.000000,196,0,1790.800000,extended,lora,180 -on10,0,0,24,1,0,3029,4449.000000,196,0,1805.200000,extended,lora,180 -on0,1,7,24,0,0,0,4467.000000,196,0,1975.600000,extended,lora,180 -on3,0,0,24,1,0,3523,4403.000000,196,0,1786.800000,extended,lora,180 -on7,0,0,24,1,0,540,4320.000000,196,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,2036,4356.000000,197,0,1768.000000,extended,lora,180 -on0,1,11,24,0,0,0,4640.000000,197,0,2153.600000,extended,lora,180 -on5,0,0,24,1,0,641,4401.000000,197,0,1786.000000,extended,lora,180 -on7,0,0,24,1,0,1240,4460.000000,197,0,1809.600000,extended,lora,180 -on4,0,0,24,1,0,1396,4436.000000,197,0,1800.000000,extended,lora,180 -on2,0,0,24,1,0,180,4320.000000,197,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,858,4438.000000,197,0,1800.800000,extended,lora,180 -on11,0,0,24,1,0,598,4358.000000,197,0,1768.800000,extended,lora,180 -on6,0,0,24,1,0,413,4353.000000,197,0,1766.800000,extended,lora,180 -on1,0,0,23,1,0,959,4189.000000,197,0,1701.200000,extended,lora,180 -on8,0,0,24,1,0,1900,4400.000000,197,0,1785.600000,extended,lora,180 -on9,0,0,24,1,0,920,4320.000000,197,0,1753.600000,extended,lora,180 -on0,1,8,24,0,0,0,4744.000000,198,0,2118.400000,extended,lora,180 -on5,0,0,24,1,0,463,4403.000000,198,0,1786.800000,extended,lora,180 -on11,0,0,24,1,0,180,4320.000000,198,0,1753.600000,extended,lora,180 -on4,0,0,24,1,0,2160,4320.000000,198,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,extended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,extended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,extended,lora,180 -on3,0,0,24,1,0,816,4396.000000,198,0,1784.000000,extended,lora,180 -on1,0,0,24,1,0,2425,4385.000000,198,0,1779.600000,extended,lora,180 -on8,0,0,24,1,0,2896,4320.000000,198,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,900,4320.000000,198,0,1753.600000,extended,lora,180 -on9,0,0,24,1,0,2829,4429.000000,198,0,1797.200000,extended,lora,180 -on11,0,0,24,1,0,2159,4479.000000,199,0,1817.200000,extended,lora,180 -on3,0,0,24,1,0,2031,4351.000000,199,0,1766.000000,extended,lora,180 -on5,0,0,24,1,0,805,4385.000000,199,0,1779.600000,extended,lora,180 -on9,0,0,24,1,0,540,4320.000000,199,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,305,4425.000000,199,0,1795.600000,extended,lora,180 -on0,1,10,24,0,0,0,4847.000000,199,0,2201.200000,extended,lora,180 -on4,0,0,24,1,0,1440,4320.000000,199,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,3159,4399.000000,199,0,1785.200000,extended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,199,0,1728.000000,extended,lora,180 -on1,0,0,24,1,0,1461,4321.000000,199,0,1754.000000,extended,lora,180 -on2,0,0,24,1,0,783,4363.000000,199,0,1770.800000,extended,lora,180 -on7,0,0,24,1,0,3240,4320.000000,199,0,1753.600000,extended,lora,180 -on3,0,0,24,1,0,360,4320.000000,200,0,1753.600000,extended,lora,180 -on10,0,0,24,1,0,0,4320.000000,200,0,1753.600000,extended,lora,180 -on11,0,0,24,1,0,278,4398.000000,200,0,1784.800000,extended,lora,180 -on1,0,0,24,1,0,2880,4320.000000,200,0,1753.600000,extended,lora,180 -on0,1,10,24,0,0,0,4763.000000,200,0,2173.200000,extended,lora,180 -on5,0,0,24,1,0,1980,4320.000000,200,0,1753.600000,extended,lora,180 -on8,0,0,24,1,0,1620,4320.000000,200,0,1753.600000,extended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,200,0,1728.000000,extended,lora,180 -on7,0,0,24,1,0,348,4468.000000,200,0,1812.800000,extended,lora,180 -on9,0,0,24,1,0,1089,4320.000000,200,0,1753.600000,extended,lora,180 -on6,0,0,24,1,0,1076,4476.000000,200,0,1816.000000,extended,lora,180 -on4,0,0,24,1,0,836,4416.000000,200,0,1792.000000,extended,lora,180 -on6,0,0,27,1,0,2157,4862.900000,1,3,2034.663386,hintandextended,lora,180 -on9,0,0,26,1,0,1560,4682.800000,1,2,1958.095386,hintandextended,lora,180 -on11,0,0,24,1,0,759,4339.001280,1,0,1761.200717,hintandextended,lora,180 -on8,0,0,25,1,0,1013,4502.007680,1,1,1860.003482,hintandextended,lora,180 -on2,0,0,25,1,0,1226,4502.203840,1,1,1858.369741,hintandextended,lora,180 -on10,0,0,25,1,0,1683,4544.610240,1,1,1872.132710,hintandextended,lora,180 -on5,0,0,26,1,0,1481,4681.500000,1,2,1904.599795,hintandextended,lora,180 -on3,0,0,25,1,0,1766,4502.000000,1,1,1858.080000,hintandextended,lora,180 -on4,0,0,28,1,0,1991,5183.103840,1,4,2219.833741,hintandextended,lora,180 -on1,0,0,24,1,0,249,4369.001280,1,0,1773.200717,hintandextended,lora,180 -on7,0,0,25,1,0,900,4503.000000,1,1,1877.888000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4635.811520,1,0,2155.414451,hintandextended,lora,180 -on10,0,0,27,1,0,1629,5001.103840,2,3,2039.017331,hintandextended,lora,180 -on3,0,0,26,1,0,1545,4828.300000,2,3,1993.639795,hintandextended,lora,180 -on4,0,0,28,1,0,1582,5183.500000,2,4,2198.599795,hintandextended,lora,180 -on7,0,0,28,1,0,2108,5076.902560,2,5,2128.888614,hintandextended,lora,180 -on8,0,0,24,1,0,795,4376.006400,2,0,1804.386970,hintandextended,lora,180 -on1,0,0,25,1,0,1185,4558.998720,2,1,1849.199693,hintandextended,lora,180 -on11,0,0,26,1,0,1378,4681.600000,2,2,1901.024000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4740.011520,2,0,2190.406656,hintandextended,lora,180 -on6,0,0,24,1,0,571,4332.001280,2,0,1776.800307,hintandextended,lora,180 -on2,0,0,25,1,0,1221,4612.500000,2,2,1878.599795,hintandextended,lora,180 -on9,0,0,29,1,0,1769,5224.500000,2,6,2207.974566,hintandextended,lora,180 -on5,0,0,25,1,0,848,4502.005120,2,1,1861.874458,hintandextended,lora,180 -on5,0,0,27,1,0,1200,4863.200000,3,3,2085.791795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4666.811520,3,0,2193.734656,hintandextended,lora,180 -on4,0,0,25,1,0,900,4502.008960,3,1,1858.164403,hintandextended,lora,180 -on9,0,0,25,1,0,1088,4501.500000,3,1,1839.016000,hintandextended,lora,180 -on6,0,0,25,1,0,825,4588.798720,3,1,1903.248307,hintandextended,lora,180 -on10,0,0,25,1,0,389,4501.301280,3,1,1878.664512,hintandextended,lora,180 -on1,0,0,26,1,0,515,4682.503840,3,2,1933.849536,hintandextended,lora,180 -on2,0,0,25,1,0,147,4501.998720,3,1,1829.343488,hintandextended,lora,180 -on11,0,0,26,1,0,496,4824.800000,3,2,1983.360614,hintandextended,lora,180 -on7,0,0,24,1,0,0,4322.000000,3,0,1785.824000,hintandextended,lora,180 -on3,0,0,25,1,0,671,4501.600000,3,1,1855.903795,hintandextended,lora,180 -on8,0,0,26,1,0,1532,4764.900000,3,3,1978.279590,hintandextended,lora,180 -on9,0,0,25,1,0,720,4505.602560,4,2,1922.737638,hintandextended,lora,180 -on7,0,0,25,1,0,326,4503.000000,4,1,1884.080410,hintandextended,lora,180 -on0,1,11,24,0,0,0,4611.207680,4,0,2327.876506,hintandextended,lora,180 -on2,0,0,25,1,0,2425,4502.600000,4,1,1886.256205,hintandextended,lora,180 -on5,0,0,25,1,0,1234,4500.001280,4,1,1825.600717,hintandextended,lora,180 -on10,0,0,24,1,0,180,4321.001280,4,0,1756.944717,hintandextended,lora,180 -on3,0,0,24,1,0,17,4321.001280,4,0,1765.424922,hintandextended,lora,180 -on11,0,0,25,1,0,1260,4502.601280,4,1,1831.649126,hintandextended,lora,180 -on4,0,0,25,1,0,2993,4500.001280,4,1,1825.600717,hintandextended,lora,180 -on8,0,0,24,1,0,1800,4322.001280,4,0,1782.785126,hintandextended,lora,180 -on6,0,0,25,1,0,1055,4501.001280,4,1,1827.280922,hintandextended,lora,180 -on1,0,0,25,1,0,3645,4501.300000,4,1,1849.672000,hintandextended,lora,180 -on10,0,0,26,1,0,1160,4820.903840,5,2,1990.825536,hintandextended,lora,180 -on0,1,11,24,0,0,0,4853.615360,5,0,2229.704602,hintandextended,lora,180 -on5,0,0,24,1,0,360,4321.001280,5,0,1771.824717,hintandextended,lora,180 -on4,0,0,24,1,0,627,4387.997440,5,0,1780.799386,hintandextended,lora,180 -on7,0,0,26,1,0,867,4682.802560,5,2,1935.952819,hintandextended,lora,180 -on6,0,0,24,1,0,1440,4320.001280,5,0,1753.600717,hintandextended,lora,180 -on9,0,0,26,1,0,1235,4789.703840,5,4,1965.320922,hintandextended,lora,180 -on2,0,0,26,1,0,756,4820.308960,5,2,1968.444198,hintandextended,lora,180 -on8,0,0,24,1,0,653,4417.202560,5,1,1824.049024,hintandextended,lora,180 -on11,0,0,27,1,0,1297,5004.506400,5,3,2116.938765,hintandextended,lora,180 -on1,0,0,27,1,0,1171,4863.701280,5,3,2093.544307,hintandextended,lora,180 -on3,0,0,24,1,0,0,4320.001280,5,0,1753.600717,hintandextended,lora,180 -on11,0,0,25,1,0,1373,4501.200000,6,1,1829.023795,hintandextended,lora,180 -on8,0,0,25,1,0,1659,4501.300000,6,1,1846.584000,hintandextended,lora,180 -on2,0,0,25,1,0,1346,4567.608960,6,1,1864.707994,hintandextended,lora,180 -on7,0,0,24,1,0,0,4321.997440,6,0,1755.199386,hintandextended,lora,180 -on9,0,0,24,1,0,1080,4321.001280,6,0,1761.264717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4898.614080,6,0,2247.704090,hintandextended,lora,180 -on4,0,0,25,1,0,2073,4641.003840,6,1,1910.641741,hintandextended,lora,180 -on3,0,0,24,1,0,1503,4364.996160,6,0,1798.798874,hintandextended,lora,180 -on1,0,0,28,1,0,2450,5042.401280,6,4,2081.808102,hintandextended,lora,180 -on5,0,0,27,1,0,1994,4862.801280,6,3,2027.616307,hintandextended,lora,180 -on10,0,0,27,1,0,1821,4863.100000,6,4,2030.567181,hintandextended,lora,180 -on6,0,0,27,1,0,2229,5000.903840,6,3,2059.337536,hintandextended,lora,180 -on3,0,0,25,1,0,1373,4501.001280,7,1,1827.760717,hintandextended,lora,180 -on5,0,0,25,1,0,1666,4501.201280,7,1,1854.464717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4654.607680,7,0,2190.580301,hintandextended,lora,180 -on6,0,0,24,1,0,4140,4320.000000,7,0,1753.600000,hintandextended,lora,180 -on4,0,0,25,1,0,301,4500.198720,7,1,1825.679693,hintandextended,lora,180 -on7,0,0,25,1,0,671,4500.001280,7,1,1825.600717,hintandextended,lora,180 -on10,0,0,24,1,0,23,4324.001280,7,0,1758.080922,hintandextended,lora,180 -on8,0,0,25,1,0,360,4503.603840,7,1,1886.514150,hintandextended,lora,180 -on2,0,0,24,1,0,3859,4379.001280,7,0,1777.200717,hintandextended,lora,180 -on1,0,0,25,1,0,235,4536.003840,7,1,1842.401946,hintandextended,lora,180 -on9,0,0,25,1,0,1260,4504.000000,7,1,1873.504000,hintandextended,lora,180 -on11,0,0,25,1,0,1758,4501.001280,7,1,1839.280717,hintandextended,lora,180 -on0,1,11,23,0,0,0,4761.812800,8,0,2353.655168,hintandextended,lora,180 -on3,0,0,24,1,0,1373,4419.201280,8,1,1793.280717,hintandextended,lora,180 -on5,0,0,24,1,0,3240,4320.001280,8,0,1753.600717,hintandextended,lora,180 -on7,0,0,24,1,0,164,4464.002560,8,0,1811.201434,hintandextended,lora,180 -on11,0,0,25,1,0,691,4502.300000,8,1,1862.263590,hintandextended,lora,180 -on10,0,0,25,1,0,1132,4501.301280,8,1,1853.768717,hintandextended,lora,180 -on6,0,0,25,1,0,512,4503.997440,8,1,1877.823181,hintandextended,lora,180 -on1,0,0,26,1,0,439,4824.901280,8,2,2029.272922,hintandextended,lora,180 -on4,0,0,24,1,0,320,4441.997440,8,0,1808.159590,hintandextended,lora,180 -on2,0,0,26,1,0,815,4811.000000,8,2,1978.688819,hintandextended,lora,180 -on9,0,0,25,1,0,503,4658.297440,8,2,1963.126771,hintandextended,lora,180 -on8,0,0,25,1,0,32,4514.600000,8,1,1859.872614,hintandextended,lora,180 -on11,0,0,24,1,0,412,4352.002560,9,0,1766.401434,hintandextended,lora,180 -on6,0,0,25,1,0,757,4500.301280,9,1,1837.880512,hintandextended,lora,180 -on2,0,0,24,1,0,2424,4385.001280,9,0,1808.240717,hintandextended,lora,180 -on7,0,0,24,1,0,2067,4387.001280,9,0,1780.400717,hintandextended,lora,180 -on9,0,0,24,1,0,1260,4322.000000,9,0,1785.984000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4590.006400,9,0,2203.523789,hintandextended,lora,180 -on10,0,0,25,1,0,155,4500.203840,9,1,1825.681741,hintandextended,lora,180 -on1,0,0,24,1,0,154,4455.001280,9,0,1824.080717,hintandextended,lora,180 -on4,0,0,25,1,0,1596,4501.002560,9,1,1840.721434,hintandextended,lora,180 -on5,0,0,24,1,0,1080,4321.003840,9,0,1766.802150,hintandextended,lora,180 -on3,0,0,24,1,0,3,4352.007680,9,1,1773.763686,hintandextended,lora,180 -on8,0,0,24,1,0,560,4321.002560,9,0,1782.641434,hintandextended,lora,180 -on2,0,0,25,1,0,1686,4634.300000,10,2,1883.831795,hintandextended,lora,180 -on10,0,0,25,1,0,1398,4640.303840,10,1,1909.897741,hintandextended,lora,180 -on7,0,0,24,1,0,650,4410.001280,10,0,1789.600717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4741.211520,10,0,2219.718656,hintandextended,lora,180 -on4,0,0,24,1,0,1422,4462.001280,10,0,1810.400717,hintandextended,lora,180 -on6,0,0,24,1,0,937,4337.001280,10,0,1760.400717,hintandextended,lora,180 -on9,0,0,26,1,0,1568,4822.603840,10,2,2011.922150,hintandextended,lora,180 -on8,0,0,25,1,0,473,4500.001280,10,1,1825.600717,hintandextended,lora,180 -on3,0,0,25,1,0,941,4523.602560,10,1,1863.473638,hintandextended,lora,180 -on1,0,0,24,1,0,159,4460.001280,10,0,1834.624717,hintandextended,lora,180 -on5,0,0,25,1,0,1741,4501.000000,10,1,1829.200000,hintandextended,lora,180 -on11,0,0,25,1,0,293,4501.003840,10,1,1832.305946,hintandextended,lora,180 -on3,0,0,25,1,0,1800,4501.000000,11,1,1829.200000,hintandextended,lora,180 -on11,0,0,25,1,0,135,4502.005120,11,1,1871.426458,hintandextended,lora,180 -on6,0,0,24,1,0,992,4394.001280,11,0,1833.920922,hintandextended,lora,180 -on8,0,0,25,1,0,993,4641.203840,11,1,1897.441946,hintandextended,lora,180 -on2,0,0,26,1,0,1156,4821.603840,11,2,2006.609331,hintandextended,lora,180 -on9,0,0,28,1,0,1318,5185.002560,11,4,2205.297024,hintandextended,lora,180 -on1,0,0,24,1,0,34,4334.001280,11,0,1759.200717,hintandextended,lora,180 -on5,0,0,24,1,0,845,4425.003840,11,0,1795.601946,hintandextended,lora,180 -on10,0,0,26,1,0,1116,4683.597440,11,2,1914.622566,hintandextended,lora,180 -on7,0,0,25,1,0,1,4501.996160,11,1,1828.798874,hintandextended,lora,180 -on0,1,11,24,0,0,0,4998.219200,11,0,2362.842752,hintandextended,lora,180 -on4,0,0,25,1,0,1620,4502.602560,11,1,1867.809638,hintandextended,lora,180 -on3,0,0,25,1,0,660,4604.003840,12,1,1895.426355,hintandextended,lora,180 -on10,0,0,24,1,0,366,4321.000000,12,0,1755.983795,hintandextended,lora,180 -on5,0,0,25,1,0,944,4526.003840,12,1,1867.041741,hintandextended,lora,180 -on7,0,0,24,1,0,0,4321.000000,12,0,1756.944000,hintandextended,lora,180 -on9,0,0,26,1,0,634,4822.803840,12,2,1983.105741,hintandextended,lora,180 -on2,0,0,26,1,0,1101,4681.901280,12,2,1970.840512,hintandextended,lora,180 -on6,0,0,25,1,0,141,4501.001280,12,1,1854.128717,hintandextended,lora,180 -on4,0,0,26,1,0,675,4682.600000,12,2,1925.040205,hintandextended,lora,180 -on11,0,0,24,1,0,2456,4416.001280,12,0,1792.000717,hintandextended,lora,180 -on1,0,0,24,1,0,849,4346.000000,12,1,1793.280000,hintandextended,lora,180 -on8,0,0,26,1,0,821,4681.301280,12,2,1929.704512,hintandextended,lora,180 -on0,1,11,24,0,0,0,4845.612800,12,0,2299.943373,hintandextended,lora,180 -on7,0,0,26,1,0,703,4683.001280,13,2,1930.801126,hintandextended,lora,180 -on3,0,0,24,1,0,2120,4355.500000,13,1,1825.240410,hintandextended,lora,180 -on4,0,0,25,1,0,318,4502.300000,13,1,1861.368000,hintandextended,lora,180 -on6,0,0,24,1,0,120,4480.598720,13,1,1840.448922,hintandextended,lora,180 -on2,0,0,26,1,0,818,4992.806400,13,3,2039.731174,hintandextended,lora,180 -on10,0,0,26,1,0,726,4821.302560,13,2,1957.321229,hintandextended,lora,180 -on9,0,0,24,1,0,438,4379.000000,13,0,1777.200410,hintandextended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,hintandextended,lora,180 -on8,0,0,24,1,0,3,4324.000000,13,0,1814.592205,hintandextended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,hintandextended,lora,180 -on0,1,9,24,0,0,0,4818.212800,13,0,2366.679168,hintandextended,lora,180 -on1,0,0,26,1,0,806,4682.901280,13,2,1990.488922,hintandextended,lora,180 -on8,0,0,25,1,0,442,4563.998720,14,1,1879.839898,hintandextended,lora,180 -on7,0,0,25,1,0,411,4501.200000,14,1,1829.328000,hintandextended,lora,180 -on9,0,0,26,1,0,774,4681.600000,14,2,1914.527590,hintandextended,lora,180 -on0,1,11,24,0,0,0,4777.215360,14,0,2206.760806,hintandextended,lora,180 -on3,0,0,25,1,0,0,4500.602560,14,1,1825.889638,hintandextended,lora,180 -on1,0,0,25,1,0,180,4501.000000,14,1,1828.944000,hintandextended,lora,180 -on4,0,0,24,1,0,599,4359.001280,14,0,1769.200717,hintandextended,lora,180 -on11,0,0,25,1,0,1384,4650.300000,14,2,1920.759795,hintandextended,lora,180 -on2,0,0,26,1,0,972,4682.605120,14,2,1934.225843,hintandextended,lora,180 -on10,0,0,27,1,0,1109,5017.200000,14,4,2097.711795,hintandextended,lora,180 -on6,0,0,25,1,0,788,4640.303840,14,1,1888.121741,hintandextended,lora,180 -on5,0,0,28,1,0,1231,5215.500000,14,6,2184.294976,hintandextended,lora,180 -on3,0,0,25,1,0,1013,4502.000000,15,1,1883.744410,hintandextended,lora,180 -on5,0,0,26,1,0,1488,4821.603840,15,2,1977.025536,hintandextended,lora,180 -on1,0,0,24,1,0,959,4395.000000,15,1,1783.600410,hintandextended,lora,180 -on6,0,0,24,1,0,0,4320.001280,15,0,1753.600717,hintandextended,lora,180 -on7,0,0,29,1,0,1797,5222.401280,15,5,2148.271693,hintandextended,lora,180 -on4,0,0,24,1,0,2301,4441.001280,15,0,1802.000717,hintandextended,lora,180 -on11,0,0,24,1,0,540,4323.994880,15,0,1795.422362,hintandextended,lora,180 -on9,0,0,30,1,0,2066,5543.702560,15,7,2275.913024,hintandextended,lora,180 -on0,1,11,24,0,0,0,4885.614080,15,0,2317.544090,hintandextended,lora,180 -on8,0,0,24,1,0,1154,4373.301280,15,2,1833.032922,hintandextended,lora,180 -on2,0,0,25,1,0,993,4641.003840,15,1,1902.481946,hintandextended,lora,180 -on10,0,0,24,1,0,774,4355.001280,15,0,1785.840922,hintandextended,lora,180 -on7,0,0,24,1,0,1108,4433.298720,16,1,1874.504307,hintandextended,lora,180 -on3,0,0,24,1,0,1371,4412.001280,16,0,1818.784717,hintandextended,lora,180 -on8,0,0,25,1,0,900,4502.001280,16,1,1857.280717,hintandextended,lora,180 -on10,0,0,26,1,0,507,4823.902560,16,2,2015.849638,hintandextended,lora,180 -on5,0,0,24,1,0,1515,4378.001280,16,1,1776.800717,hintandextended,lora,180 -on1,0,0,26,1,0,1565,4822.800000,16,2,1983.408614,hintandextended,lora,180 -on11,0,0,25,1,0,526,4504.301280,16,1,1888.408717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4671.210240,16,0,2284.197939,hintandextended,lora,180 -on2,0,0,25,1,0,2993,4502.000000,16,1,1838.080000,hintandextended,lora,180 -on9,0,0,24,1,0,81,4383.001280,16,0,1814.160717,hintandextended,lora,180 -on4,0,0,24,1,0,180,4321.000000,16,0,1756.944000,hintandextended,lora,180 -on6,0,0,25,1,0,1553,4503.997440,16,1,1860.959590,hintandextended,lora,180 -on0,1,11,24,0,0,0,4883.816640,17,0,2369.337318,hintandextended,lora,180 -on6,0,0,25,1,0,949,4503.298720,17,1,1856.439488,hintandextended,lora,180 -on5,0,0,27,1,0,1273,4863.203840,17,3,2039.665331,hintandextended,lora,180 -on11,0,0,25,1,0,848,4610.603840,17,1,1885.794150,hintandextended,lora,180 -on1,0,0,25,1,0,653,4501.200000,17,1,1829.183795,hintandextended,lora,180 -on2,0,0,25,1,0,2198,4824.203840,17,3,2062.369946,hintandextended,lora,180 -on10,0,0,26,1,0,1107,4823.601280,17,2,1957.760922,hintandextended,lora,180 -on3,0,0,24,1,0,180,4321.998720,17,0,1756.960307,hintandextended,lora,180 -on7,0,0,26,1,0,1346,4824.308960,17,2,2017.211994,hintandextended,lora,180 -on8,0,0,25,1,0,1039,4503.000000,17,1,1886.816000,hintandextended,lora,180 -on4,0,0,23,1,0,497,4439.001280,17,0,1838.704717,hintandextended,lora,180 -on9,0,0,26,1,0,2380,4742.900000,17,3,1982.343590,hintandextended,lora,180 -on3,0,0,28,1,0,873,5222.610240,18,5,2201.140710,hintandextended,lora,180 -on5,0,0,28,1,0,883,5071.901280,18,5,2129.383693,hintandextended,lora,180 -on8,0,0,25,1,0,0,4501.006400,18,1,1827.875174,hintandextended,lora,180 -on1,0,0,25,1,0,635,4640.203840,18,1,1881.889741,hintandextended,lora,180 -on10,0,0,26,1,0,1082,4682.600000,18,3,1935.279795,hintandextended,lora,180 -on4,0,0,26,1,0,942,4820.003840,18,2,1953.969741,hintandextended,lora,180 -on2,0,0,26,1,0,389,4681.300000,18,2,1903.719795,hintandextended,lora,180 -on7,0,0,24,1,0,113,4395.200000,18,1,1798.608000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4993.217920,18,0,2282.442240,hintandextended,lora,180 -on6,0,0,28,1,0,837,5042.900000,18,4,2100.839181,hintandextended,lora,180 -on11,0,0,25,1,0,273,4640.203840,18,1,1881.889741,hintandextended,lora,180 -on9,0,0,26,1,0,494,4682.600000,18,2,1959.759181,hintandextended,lora,180 -on7,0,0,24,1,0,1493,4354.001280,19,0,1795.840717,hintandextended,lora,180 -on3,0,0,26,1,0,433,4683.597440,19,2,1925.694976,hintandextended,lora,180 -on10,0,0,24,1,0,0,4321.000000,19,0,1756.688000,hintandextended,lora,180 -on11,0,0,26,1,0,587,4821.005120,19,2,1956.818458,hintandextended,lora,180 -on6,0,0,25,1,0,683,4546.300000,19,2,1847.320000,hintandextended,lora,180 -on0,1,11,24,0,0,0,5156.215360,19,0,2436.760602,hintandextended,lora,180 -on1,0,0,24,1,0,720,4323.002560,19,0,1812.081638,hintandextended,lora,180 -on8,0,0,24,1,0,980,4432.001280,19,1,1798.400717,hintandextended,lora,180 -on9,0,0,24,1,0,1980,4321.000000,19,0,1757.200000,hintandextended,lora,180 -on5,0,0,24,1,0,195,4321.997440,19,0,1754.942976,hintandextended,lora,180 -on2,0,0,24,1,0,274,4638.603840,19,2,1920.145741,hintandextended,lora,180 -on4,0,0,25,1,0,1499,4542.602560,19,1,1886.529638,hintandextended,lora,180 -on8,0,0,25,1,0,1467,4503.298720,20,1,1880.040102,hintandextended,lora,180 -on6,0,0,25,1,0,1622,4505.297440,20,1,1902.087181,hintandextended,lora,180 -on0,1,11,24,0,0,0,4753.812800,20,0,2522.295373,hintandextended,lora,180 -on2,0,0,26,1,0,1353,4823.603840,20,2,2001.810355,hintandextended,lora,180 -on10,0,0,25,1,0,749,4513.602560,20,1,1897.777843,hintandextended,lora,180 -on5,0,0,25,1,0,1190,4503.302560,20,1,1892.553229,hintandextended,lora,180 -on11,0,0,26,1,0,2038,4825.902560,20,2,2024.650048,hintandextended,lora,180 -on1,0,0,24,1,0,360,4324.002560,20,0,1813.121843,hintandextended,lora,180 -on4,0,0,25,1,0,651,4502.297440,20,1,1840.662976,hintandextended,lora,180 -on3,0,0,24,1,0,1766,4446.001280,20,0,1804.000717,hintandextended,lora,180 -on9,0,0,25,1,0,3853,4501.300000,20,1,1846.440000,hintandextended,lora,180 -on7,0,0,24,1,0,358,4482.000000,20,0,1859.680819,hintandextended,lora,180 -on3,0,0,26,1,0,1127,4684.501280,21,2,1962.505126,hintandextended,lora,180 -on4,0,0,25,1,0,330,4502.305120,21,1,1878.010458,hintandextended,lora,180 -on10,0,0,25,1,0,535,4503.194880,21,1,1858.461952,hintandextended,lora,180 -on0,1,11,24,0,0,0,4619.206400,21,0,2254.115789,hintandextended,lora,180 -on7,0,0,24,1,0,3260,4320.001280,21,0,1753.600717,hintandextended,lora,180 -on8,0,0,26,1,0,645,4682.502560,21,2,1958.921229,hintandextended,lora,180 -on6,0,0,25,1,0,1075,4502.000000,21,1,1854.880410,hintandextended,lora,180 -on1,0,0,25,1,0,894,4502.000000,21,1,1841.968000,hintandextended,lora,180 -on5,0,0,25,1,0,0,4502.602560,21,1,1857.473434,hintandextended,lora,180 -on2,0,0,25,1,0,1191,4500.301280,21,1,1836.760717,hintandextended,lora,180 -on9,0,0,26,1,0,642,4823.803840,21,2,1980.609741,hintandextended,lora,180 -on11,0,0,24,1,0,33,4333.602560,21,0,1759.041434,hintandextended,lora,180 -on7,0,0,25,1,0,1719,4501.503840,22,1,1855.673946,hintandextended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,hintandextended,lora,180 -on6,0,0,24,1,0,1440,4323.998720,22,0,1815.423693,hintandextended,lora,180 -on4,0,0,24,1,0,180,4321.001280,22,0,1757.200922,hintandextended,lora,180 -on5,0,0,24,1,0,62,4362.001280,22,0,1770.400717,hintandextended,lora,180 -on1,0,0,24,1,0,564,4326.003840,22,0,1813.026150,hintandextended,lora,180 -on0,1,10,24,0,0,0,4707.606400,22,0,2401.219584,hintandextended,lora,180 -on9,0,0,24,1,0,1260,4322.998720,22,0,1781.520102,hintandextended,lora,180 -on8,0,0,25,1,0,4065,4500.300000,22,1,1837.720000,hintandextended,lora,180 -on3,0,0,24,1,0,898,4482.998720,22,0,1880.240102,hintandextended,lora,180 -on2,0,0,25,1,0,3042,4500.001280,22,1,1825.600717,hintandextended,lora,180 -on11,0,0,25,1,0,553,4501.397440,22,1,1826.208000,hintandextended,lora,180 -on9,0,0,25,1,0,1855,4501.300000,23,1,1849.320000,hintandextended,lora,180 -on10,0,0,26,1,0,510,4683.201280,23,2,1930.672922,hintandextended,lora,180 -on1,0,0,26,1,0,442,4823.196160,23,2,1983.727078,hintandextended,lora,180 -on6,0,0,25,1,0,478,4501.000000,23,1,1829.200000,hintandextended,lora,180 -on8,0,0,28,1,0,789,5043.501280,23,4,2137.879693,hintandextended,lora,180 -on11,0,0,25,1,0,164,4504.000000,23,1,1877.232410,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.615360,23,0,2319.704806,hintandextended,lora,180 -on2,0,0,25,1,0,2089,4501.300000,23,1,1840.680000,hintandextended,lora,180 -on3,0,0,24,1,0,118,4419.001280,23,0,1821.584717,hintandextended,lora,180 -on4,0,0,24,1,0,88,4389.003840,23,0,1809.841741,hintandextended,lora,180 -on7,0,0,24,1,0,744,4403.603840,23,1,1825.649946,hintandextended,lora,180 -on5,0,0,26,1,0,455,4824.300000,23,2,2041.080819,hintandextended,lora,180 -on2,0,0,24,1,0,1923,4425.001280,24,0,1828.784922,hintandextended,lora,180 -on10,0,0,25,1,0,2880,4503.000000,24,1,1870.320205,hintandextended,lora,180 -on6,0,0,24,1,0,540,4430.605120,24,1,1834.370662,hintandextended,lora,180 -on3,0,0,24,1,0,1440,4321.001280,24,0,1782.640717,hintandextended,lora,180 -on11,0,0,24,1,0,261,4381.001280,24,0,1778.000717,hintandextended,lora,180 -on9,0,0,25,1,0,3240,4501.602560,24,1,1839.089434,hintandextended,lora,180 -on1,0,0,24,1,0,1103,4324.998720,24,0,1755.600102,hintandextended,lora,180 -on8,0,0,24,1,0,370,4321.000000,24,0,1755.503795,hintandextended,lora,180 -on5,0,0,25,1,0,444,4570.603840,24,1,1949.954560,hintandextended,lora,180 -on0,1,11,24,0,0,0,4575.208960,24,0,2232.677018,hintandextended,lora,180 -on7,0,0,25,1,0,1374,4502.997440,24,1,1827.919590,hintandextended,lora,180 -on4,0,0,25,1,0,2103,4501.001280,24,1,1854.640717,hintandextended,lora,180 -on3,0,0,25,1,0,62,4543.601280,25,1,1843.089331,hintandextended,lora,180 -on4,0,0,25,1,0,993,4641.003840,25,1,1910.641741,hintandextended,lora,180 -on2,0,0,27,1,0,1166,5003.101280,25,3,2038.841331,hintandextended,lora,180 -on1,0,0,25,1,0,332,4501.000000,25,1,1829.408000,hintandextended,lora,180 -on6,0,0,24,1,0,767,4347.001280,25,0,1764.400717,hintandextended,lora,180 -on9,0,0,26,1,0,463,4681.300000,25,2,1904.423590,hintandextended,lora,180 -on8,0,0,24,1,0,122,4423.001280,25,0,1823.280717,hintandextended,lora,180 -on11,0,0,24,1,0,540,4322.000000,25,0,1759.264000,hintandextended,lora,180 -on7,0,0,25,1,0,867,4502.000000,25,1,1853.072000,hintandextended,lora,180 -on0,1,11,23,0,0,0,4908.816640,25,0,2288.553728,hintandextended,lora,180 -on5,0,0,24,1,0,1620,4376.000000,25,2,1779.152000,hintandextended,lora,180 -on10,0,0,25,1,0,399,4520.603840,25,1,1836.130150,hintandextended,lora,180 -on11,0,0,24,1,0,26,4329.001280,26,0,1792.849126,hintandextended,lora,180 -on7,0,0,26,1,0,814,4821.602560,26,2,1954.289638,hintandextended,lora,180 -on0,1,10,24,0,0,0,4740.208960,26,0,2427.157018,hintandextended,lora,180 -on10,0,0,24,1,0,586,4347.002560,26,0,1772.881229,hintandextended,lora,180 -on6,0,0,25,1,0,2382,4525.605120,26,1,1878.291072,hintandextended,lora,180 -on8,0,0,24,1,0,2340,4323.997440,26,0,1793.502976,hintandextended,lora,180 -on3,0,0,25,1,0,1228,4501.001280,26,1,1826.001126,hintandextended,lora,180 -on1,0,0,24,1,0,3023,4446.001280,26,0,1864.480922,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,hintandextended,lora,180 -on2,0,0,25,1,0,3600,4501.998720,26,1,1829.599693,hintandextended,lora,180 -on9,0,0,25,1,0,293,4500.201280,26,1,1825.680717,hintandextended,lora,180 -on5,0,0,24,1,0,947,4349.998720,26,0,1793.984102,hintandextended,lora,180 -on5,0,0,25,1,0,1311,4501.302560,27,1,1861.961229,hintandextended,lora,180 -on1,0,0,25,1,0,360,4501.000000,27,1,1829.200000,hintandextended,lora,180 -on7,0,0,25,1,0,391,4501.300000,27,1,1850.120000,hintandextended,lora,180 -on8,0,0,26,1,0,633,4823.202560,27,2,1988.961434,hintandextended,lora,180 -on2,0,0,24,1,0,1283,4324.002560,27,0,1783.841434,hintandextended,lora,180 -on10,0,0,26,1,0,491,4821.603840,27,2,1977.330150,hintandextended,lora,180 -on4,0,0,24,1,0,1805,4321.000000,27,0,1772.560205,hintandextended,lora,180 -on6,0,0,25,1,0,2160,4501.602560,27,1,1854.449434,hintandextended,lora,180 -on0,1,11,24,0,0,0,4654.212800,27,0,2245.559168,hintandextended,lora,180 -on3,0,0,25,1,0,130,4502.005120,27,1,1831.586048,hintandextended,lora,180 -on9,0,0,24,1,0,0,4323.000000,27,0,1787.087590,hintandextended,lora,180 -on11,0,0,26,1,0,820,4681.801280,27,2,1920.608922,hintandextended,lora,180 -on1,0,0,25,1,0,1980,4505.598720,28,2,1885.168512,hintandextended,lora,180 -on8,0,0,25,1,0,746,4678.305120,28,2,1998.842458,hintandextended,lora,180 -on3,0,0,24,1,0,1528,4388.001280,28,0,1780.800717,hintandextended,lora,180 -on5,0,0,24,1,0,781,4361.998720,28,0,1770.399898,hintandextended,lora,180 -on7,0,0,24,1,0,1013,4480.000000,28,1,1817.600205,hintandextended,lora,180 -on9,0,0,25,1,0,360,4503.996160,28,1,1831.599078,hintandextended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,hintandextended,lora,180 -on0,1,10,24,0,0,0,4801.812800,28,0,2332.855168,hintandextended,lora,180 -on10,0,0,25,1,0,1800,4502.602560,28,1,1864.609638,hintandextended,lora,180 -on4,0,0,25,1,0,529,4502.001280,28,1,1850.304512,hintandextended,lora,180 -on11,0,0,26,1,0,937,4823.903840,28,2,2008.713946,hintandextended,lora,180 -on6,0,0,26,1,0,939,4683.400000,28,2,1954.975795,hintandextended,lora,180 -on11,0,0,24,1,0,3420,4321.001280,29,0,1782.640717,hintandextended,lora,180 -on1,0,0,24,1,0,1332,4374.001280,29,0,1816.864512,hintandextended,lora,180 -on6,0,0,24,1,0,345,4465.002560,29,0,1811.601434,hintandextended,lora,180 -on8,0,0,27,1,0,1636,4868.193600,29,3,2083.373645,hintandextended,lora,180 -on7,0,0,24,1,0,647,4408.001280,29,0,1817.184717,hintandextended,lora,180 -on4,0,0,24,1,0,1065,4501.002560,29,1,1854.641434,hintandextended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,29,0,1728.000000,hintandextended,lora,180 -on2,0,0,25,1,0,1298,4658.594880,29,2,1957.645747,hintandextended,lora,180 -on5,0,0,24,1,0,536,4478.006400,29,0,1857.123174,hintandextended,lora,180 -on0,1,10,24,0,0,0,4604.207680,29,0,2302.036301,hintandextended,lora,180 -on3,0,0,25,1,0,1080,4502.405120,29,1,1849.042253,hintandextended,lora,180 -on10,0,0,27,1,0,1808,5003.907680,29,3,2043.003277,hintandextended,lora,180 -on1,0,0,25,1,0,323,4502.000000,30,1,1858.192000,hintandextended,lora,180 -on11,0,0,24,1,0,1800,4320.001280,30,0,1753.600717,hintandextended,lora,180 -on10,0,0,25,1,0,958,4503.000000,30,1,1859.008614,hintandextended,lora,180 -on6,0,0,27,1,0,2979,5046.702560,30,4,2147.272614,hintandextended,lora,180 -on0,1,11,24,0,0,0,4879.012800,30,0,2376.567373,hintandextended,lora,180 -on2,0,0,24,1,0,138,4438.001280,30,0,1800.800717,hintandextended,lora,180 -on3,0,0,24,1,0,280,4400.001280,30,0,1785.600717,hintandextended,lora,180 -on8,0,0,25,1,0,635,4640.303840,30,1,1910.361741,hintandextended,lora,180 -on7,0,0,26,1,0,888,4854.803840,30,3,2084.801946,hintandextended,lora,180 -on5,0,0,25,1,0,237,4542.403840,30,1,1881.506970,hintandextended,lora,180 -on9,0,0,26,1,0,859,4682.300000,30,2,1914.039795,hintandextended,lora,180 -on4,0,0,26,1,0,566,4685.497440,30,2,1931.847181,hintandextended,lora,180 -on11,0,0,24,1,0,720,4323.000000,31,0,1786.480410,hintandextended,lora,180 -on0,1,11,24,0,0,0,4863.210240,31,0,2392.197734,hintandextended,lora,180 -on10,0,0,25,1,0,507,4503.002560,31,1,1899.121434,hintandextended,lora,180 -on4,0,0,26,1,0,1200,4826.600000,31,2,1999.184614,hintandextended,lora,180 -on5,0,0,25,1,0,1061,4502.200000,31,1,1858.015795,hintandextended,lora,180 -on8,0,0,24,1,0,360,4322.998720,31,0,1775.343693,hintandextended,lora,180 -on7,0,0,27,1,0,1785,4861.600000,31,3,1976.640000,hintandextended,lora,180 -on9,0,0,24,1,0,987,4413.300000,31,1,1862.440000,hintandextended,lora,180 -on2,0,0,24,1,0,0,4322.002560,31,0,1767.681638,hintandextended,lora,180 -on6,0,0,25,1,0,3420,4501.000000,31,1,1829.152000,hintandextended,lora,180 -on3,0,0,24,1,0,315,4437.002560,31,0,1832.561024,hintandextended,lora,180 -on1,0,0,25,1,0,1195,4504.298720,31,1,1908.279898,hintandextended,lora,180 -on10,0,0,25,1,0,601,4500.301280,32,1,1840.440512,hintandextended,lora,180 -on11,0,0,24,1,0,1260,4321.000000,32,0,1757.200000,hintandextended,lora,180 -on1,0,0,25,1,0,2176,4501.396160,32,1,1849.566874,hintandextended,lora,180 -on5,0,0,24,1,0,1620,4321.000000,32,0,1755.568205,hintandextended,lora,180 -on8,0,0,24,1,0,540,4321.000000,32,0,1756.944000,hintandextended,lora,180 -on7,0,0,24,1,0,1603,4463.001280,32,0,1810.800717,hintandextended,lora,180 -on4,0,0,25,1,0,1809,4503.300000,32,1,1914.759795,hintandextended,lora,180 -on2,0,0,25,1,0,1624,4504.296160,32,1,1915.126464,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.211520,32,0,2246.838451,hintandextended,lora,180 -on6,0,0,24,1,0,419,4359.001280,32,0,1769.200717,hintandextended,lora,180 -on9,0,0,25,1,0,2328,4501.000000,32,1,1829.103795,hintandextended,lora,180 -on3,0,0,26,1,0,1894,4824.606400,32,2,2039.922970,hintandextended,lora,180 -on2,0,0,24,1,0,973,4373.001280,33,0,1774.800717,hintandextended,lora,180 -on9,0,0,25,1,0,1888,4503.202560,33,1,1870.881638,hintandextended,lora,180 -on7,0,0,25,1,0,1620,4503.000000,33,1,1835.776205,hintandextended,lora,180 -on5,0,0,24,1,0,1292,4333.000000,33,0,1758.800410,hintandextended,lora,180 -on3,0,0,24,1,0,327,4449.000000,33,0,1819.664410,hintandextended,lora,180 -on8,0,0,24,1,0,553,4321.998720,33,0,1755.423488,hintandextended,lora,180 -on4,0,0,25,1,0,473,4502.998720,33,1,1870.224102,hintandextended,lora,180 -on10,0,0,24,1,0,3240,4321.001280,33,0,1782.640717,hintandextended,lora,180 -on0,1,10,24,0,0,0,4512.208960,33,0,2191.157018,hintandextended,lora,180 -on11,0,0,24,1,0,0,4320.001280,33,0,1753.600717,hintandextended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,hintandextended,lora,180 -on1,0,0,26,1,0,879,4822.602560,33,2,1983.329638,hintandextended,lora,180 -on6,0,0,27,1,0,1111,4861.600000,34,3,1979.839590,hintandextended,lora,180 -on9,0,0,25,1,0,834,4504.998720,34,1,1880.719898,hintandextended,lora,180 -on0,1,9,24,0,0,0,4837.610240,34,0,2377.541734,hintandextended,lora,180 -on11,0,0,25,1,0,316,4504.198720,34,1,1901.263898,hintandextended,lora,180 -on7,0,0,24,1,0,180,4323.994880,34,0,1777.182362,hintandextended,lora,180 -on8,0,0,25,1,0,740,4504.003840,34,1,1852.002560,hintandextended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,hintandextended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,hintandextended,lora,180 -on4,0,0,24,1,0,473,4456.997440,34,1,1843.503181,hintandextended,lora,180 -on3,0,0,24,1,0,1260,4324.998720,34,0,1821.840102,hintandextended,lora,180 -on2,0,0,25,1,0,1446,4503.298720,34,1,1895.560102,hintandextended,lora,180 -on10,0,0,26,1,0,816,4824.602560,34,2,1985.793434,hintandextended,lora,180 -on4,0,0,24,1,0,537,4478.005120,35,0,1844.002458,hintandextended,lora,180 -on2,0,0,26,1,0,1176,4681.600000,35,2,1932.959590,hintandextended,lora,180 -on8,0,0,23,1,0,333,4374.001280,35,0,1775.200717,hintandextended,lora,180 -on1,0,0,24,1,0,446,4484.300000,35,1,1863.383590,hintandextended,lora,180 -on6,0,0,25,1,0,1169,4503.300000,35,1,1901.959795,hintandextended,lora,180 -on11,0,0,27,1,0,1493,5000.206400,35,3,2026.050970,hintandextended,lora,180 -on9,0,0,25,1,0,239,4541.600000,35,1,1870.928614,hintandextended,lora,180 -on10,0,0,27,1,0,1108,5001.603840,35,3,2083.521331,hintandextended,lora,180 -on5,0,0,24,1,0,802,4383.001280,35,0,1807.184717,hintandextended,lora,180 -on7,0,0,25,1,0,820,4501.600000,35,1,1861.855590,hintandextended,lora,180 -on3,0,0,24,1,0,613,4548.608960,35,1,1856.627994,hintandextended,lora,180 -on0,1,11,24,0,0,0,4882.215360,35,0,2241.240806,hintandextended,lora,180 -on0,1,11,24,0,0,0,4745.211520,36,0,2454.118451,hintandextended,lora,180 -on11,0,0,25,1,0,808,4502.198720,36,1,1846.479898,hintandextended,lora,180 -on1,0,0,24,1,0,1444,4321.998720,36,0,1782.879693,hintandextended,lora,180 -on9,0,0,24,1,0,351,4474.996160,36,0,1844.239283,hintandextended,lora,180 -on4,0,0,25,1,0,154,4637.996160,36,1,1891.839078,hintandextended,lora,180 -on10,0,0,25,1,0,1743,4502.300000,36,1,1864.280410,hintandextended,lora,180 -on2,0,0,25,1,0,1260,4504.598720,36,2,1858.528512,hintandextended,lora,180 -on7,0,0,25,1,0,416,4501.000000,36,1,1828.943795,hintandextended,lora,180 -on8,0,0,23,1,0,3758,4299.000000,36,0,1748.400000,hintandextended,lora,180 -on5,0,0,27,1,0,681,5005.106400,36,3,2098.378765,hintandextended,lora,180 -on3,0,0,24,1,0,138,4439.001280,36,0,1801.201126,hintandextended,lora,180 -on6,0,0,25,1,0,427,4506.298720,36,1,1883.160102,hintandextended,lora,180 -on6,0,0,24,1,0,930,4384.003840,37,1,1790.081741,hintandextended,lora,180 -on7,0,0,24,1,0,180,4321.000000,37,0,1754.000410,hintandextended,lora,180 -on8,0,0,25,1,0,360,4502.000000,37,1,1856.912410,hintandextended,lora,180 -on2,0,0,28,1,0,1158,5041.701280,37,4,2086.360102,hintandextended,lora,180 -on10,0,0,24,1,0,1440,4321.001280,37,0,1774.480717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4938.614080,37,0,2393.624090,hintandextended,lora,180 -on5,0,0,26,1,0,819,4681.300000,37,2,1904.311590,hintandextended,lora,180 -on11,0,0,25,1,0,3183,4501.300000,37,1,1838.440000,hintandextended,lora,180 -on1,0,0,24,1,0,833,4378.002560,37,1,1817.281434,hintandextended,lora,180 -on4,0,0,26,1,0,761,4822.903840,37,2,1988.585536,hintandextended,lora,180 -on3,0,0,24,1,0,813,4529.002560,37,1,1839.121638,hintandextended,lora,180 -on9,0,0,25,1,0,473,4502.200000,37,1,1835.168205,hintandextended,lora,180 -on5,0,0,27,1,0,1221,5005.502560,38,3,2106.313638,hintandextended,lora,180 -on4,0,0,26,1,0,1610,4681.601280,38,2,1924.960512,hintandextended,lora,180 -on10,0,0,24,1,0,773,4356.001280,38,0,1806.561126,hintandextended,lora,180 -on9,0,0,25,1,0,1073,4502.197440,38,1,1829.727181,hintandextended,lora,180 -on6,0,0,24,1,0,2744,4345.000000,38,0,1763.600410,hintandextended,lora,180 -on11,0,0,26,1,0,1256,4682.901280,38,3,1972.680102,hintandextended,lora,180 -on1,0,0,24,1,0,1800,4320.998720,38,0,1753.999898,hintandextended,lora,180 -on3,0,0,24,1,0,749,4350.008960,38,1,1781.764608,hintandextended,lora,180 -on7,0,0,24,1,0,4227,4387.000000,38,0,1780.400000,hintandextended,lora,180 -on0,1,10,24,0,0,0,4742.608960,38,0,2360.661018,hintandextended,lora,180 -on2,0,0,26,1,0,1174,4683.300000,38,2,1927.783795,hintandextended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,hintandextended,lora,180 -on9,0,0,25,1,0,1553,4502.202560,39,1,1875.825434,hintandextended,lora,180 -on4,0,0,24,1,0,1733,4398.001280,39,1,1855.904922,hintandextended,lora,180 -on0,1,11,24,0,0,0,4482.603840,39,0,2219.058150,hintandextended,lora,180 -on5,0,0,23,1,0,4018,4198.000000,39,0,1704.800000,hintandextended,lora,180 -on2,0,0,24,1,0,1420,4465.002560,39,0,1860.593638,hintandextended,lora,180 -on6,0,0,26,1,0,3029,4822.908960,39,2,1998.987994,hintandextended,lora,180 -on7,0,0,24,1,0,1205,4425.001280,39,0,1795.600717,hintandextended,lora,180 -on10,0,0,25,1,0,293,4504.202560,39,1,1866.801434,hintandextended,lora,180 -on1,0,0,25,1,0,3057,4501.000000,39,1,1828.943795,hintandextended,lora,180 -on8,0,0,26,1,0,3295,4683.498720,39,2,1915.319488,hintandextended,lora,180 -on11,0,0,24,1,0,18,4322.996160,39,0,1757.743078,hintandextended,lora,180 -on3,0,0,25,1,0,3130,4502.301280,39,1,1873.080512,hintandextended,lora,180 -on9,0,0,24,1,0,2978,4383.300000,40,1,1795.848000,hintandextended,lora,180 -on3,0,0,26,1,0,827,4681.301280,40,2,1922.760512,hintandextended,lora,180 -on2,0,0,24,1,0,604,4365.002560,40,0,1799.985434,hintandextended,lora,180 -on7,0,0,24,1,0,1308,4348.001280,40,0,1764.800717,hintandextended,lora,180 -on10,0,0,24,1,0,151,4453.001280,40,0,1829.681126,hintandextended,lora,180 -on11,0,0,25,1,0,1175,4503.301280,40,1,1909.545126,hintandextended,lora,180 -on4,0,0,26,1,0,592,4822.303840,40,2,2002.841741,hintandextended,lora,180 -on6,0,0,24,1,0,360,4322.000000,40,0,1766.240205,hintandextended,lora,180 -on0,1,11,24,0,0,0,4784.007680,40,0,2335.364506,hintandextended,lora,180 -on1,0,0,24,1,0,0,4323.998720,40,0,1790.944307,hintandextended,lora,180 -on8,0,0,24,1,0,1440,4321.000000,40,0,1757.200000,hintandextended,lora,180 -on5,0,0,24,1,0,2149,4477.001280,40,1,1825.680922,hintandextended,lora,180 -on5,0,0,26,1,0,994,4824.603840,41,2,1998.545741,hintandextended,lora,180 -on8,0,0,27,1,0,975,4861.101280,41,3,2004.920102,hintandextended,lora,180 -on11,0,0,24,1,0,750,4330.003840,41,0,1757.601741,hintandextended,lora,180 -on1,0,0,24,1,0,176,4601.605120,41,1,1866.290662,hintandextended,lora,180 -on9,0,0,24,1,0,619,4380.001280,41,0,1800.224717,hintandextended,lora,180 -on7,0,0,25,1,0,1014,4501.500000,41,1,1857.943795,hintandextended,lora,180 -on10,0,0,25,1,0,1142,4543.603840,41,1,1867.889946,hintandextended,lora,180 -on6,0,0,24,1,0,117,4417.001280,41,0,1792.400717,hintandextended,lora,180 -on0,1,11,24,0,0,0,5023.419200,41,0,2323.354752,hintandextended,lora,180 -on4,0,0,25,1,0,852,4501.300000,41,1,1836.903590,hintandextended,lora,180 -on2,0,0,25,1,0,450,4571.603840,41,1,1870.449946,hintandextended,lora,180 -on3,0,0,24,1,0,385,4326.001280,41,0,1761.824717,hintandextended,lora,180 -on6,0,0,25,1,0,504,4505.997440,42,1,1883.583181,hintandextended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hintandextended,lora,180 -on3,0,0,24,1,0,1620,4320.001280,42,0,1753.600717,hintandextended,lora,180 -on5,0,0,25,1,0,4018,4501.301280,42,1,1869.480717,hintandextended,lora,180 -on0,1,9,24,0,0,0,4623.606400,42,0,2348.579584,hintandextended,lora,180 -on11,0,0,24,1,0,2880,4322.000000,42,0,1775.520205,hintandextended,lora,180 -on8,0,0,25,1,0,978,4503.296160,42,1,1871.623078,hintandextended,lora,180 -on10,0,0,25,1,0,766,4503.201280,42,1,1877.120922,hintandextended,lora,180 -on7,0,0,26,1,0,700,4826.996160,42,2,1981.791898,hintandextended,lora,180 -on9,0,0,24,1,0,0,4324.600000,42,1,1783.873024,hintandextended,lora,180 -on2,0,0,24,1,0,219,4342.001280,42,0,1821.664922,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hintandextended,lora,180 -on8,0,0,24,1,0,1082,4321.996160,43,0,1757.022464,hintandextended,lora,180 -on9,0,0,25,1,0,2340,4502.000000,43,1,1835.472000,hintandextended,lora,180 -on2,0,0,26,1,0,1333,4824.106400,43,2,1966.970970,hintandextended,lora,180 -on7,0,0,24,1,0,38,4340.996160,43,0,1790.479283,hintandextended,lora,180 -on6,0,0,25,1,0,3060,4501.001280,43,1,1836.880717,hintandextended,lora,180 -on4,0,0,25,1,0,896,4502.200000,43,1,1854.911795,hintandextended,lora,180 -on11,0,0,26,1,0,1008,4681.301280,43,2,1904.520512,hintandextended,lora,180 -on1,0,0,25,1,0,765,4527.601280,43,1,1865.281126,hintandextended,lora,180 -on10,0,0,26,1,0,1447,4681.602560,43,2,1922.529024,hintandextended,lora,180 -on3,0,0,24,1,0,527,4469.000000,43,0,1841.840410,hintandextended,lora,180 -on5,0,0,24,1,0,703,4463.001280,43,0,1810.800717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4823.811520,43,0,2337.334451,hintandextended,lora,180 -on0,1,10,24,0,0,0,4460.003840,44,0,2283.841946,hintandextended,lora,180 -on10,0,0,24,1,0,180,4325.997440,44,0,1825.183795,hintandextended,lora,180 -on2,0,0,24,1,0,1215,4406.998720,44,1,1788.400102,hintandextended,lora,180 -on1,0,0,27,1,0,867,4862.101280,44,3,2015.016102,hintandextended,lora,180 -on8,0,0,24,1,0,3083,4322.300000,44,1,1787.672000,hintandextended,lora,180 -on3,0,0,24,1,0,946,4376.002560,44,1,1804.385434,hintandextended,lora,180 -on9,0,0,24,1,0,1620,4320.001280,44,0,1753.600717,hintandextended,lora,180 -on4,0,0,26,1,0,631,4686.496160,44,2,1976.855488,hintandextended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,hintandextended,lora,180 -on5,0,0,25,1,0,2994,4500.001280,44,1,1825.600717,hintandextended,lora,180 -on7,0,0,25,1,0,488,4501.000000,44,1,1829.248000,hintandextended,lora,180 -on6,0,0,26,1,0,634,4824.998720,44,2,1989.792512,hintandextended,lora,180 -on4,0,0,25,1,0,771,4502.296160,45,1,1845.302464,hintandextended,lora,180 -on6,0,0,24,1,0,540,4322.000000,45,0,1776.832000,hintandextended,lora,180 -on11,0,0,25,1,0,1108,4510.608960,45,1,1842.436198,hintandextended,lora,180 -on0,1,11,24,0,0,0,4733.208960,45,0,2248.517222,hintandextended,lora,180 -on2,0,0,24,1,0,1080,4321.000000,45,0,1757.103795,hintandextended,lora,180 -on1,0,0,24,1,0,2061,4381.001280,45,0,1778.000717,hintandextended,lora,180 -on10,0,0,26,1,0,987,4823.610240,45,2,1989.668915,hintandextended,lora,180 -on9,0,0,24,1,0,205,4325.001280,45,0,1755.600717,hintandextended,lora,180 -on8,0,0,24,1,0,172,4473.000000,45,0,1814.800410,hintandextended,lora,180 -on5,0,0,24,1,0,1396,4436.001280,45,0,1800.000717,hintandextended,lora,180 -on7,0,0,26,1,0,1106,4681.300000,45,2,1904.519795,hintandextended,lora,180 -on3,0,0,26,1,0,1533,4682.302560,45,2,1939.321229,hintandextended,lora,180 -on0,1,11,24,0,0,0,4657.606400,46,0,2335.939584,hintandextended,lora,180 -on8,0,0,24,1,0,3385,4445.001280,46,0,1803.600717,hintandextended,lora,180 -on5,0,0,25,1,0,1674,4503.301280,46,1,1919.208922,hintandextended,lora,180 -on10,0,0,24,1,0,207,4329.001280,46,0,1766.481331,hintandextended,lora,180 -on6,0,0,25,1,0,3600,4501.001280,46,1,1832.560717,hintandextended,lora,180 -on1,0,0,24,1,0,3420,4358.998720,46,1,1800.991693,hintandextended,lora,180 -on2,0,0,25,1,0,2994,4501.000000,46,1,1829.200000,hintandextended,lora,180 -on11,0,0,24,1,0,900,4320.001280,46,0,1753.600717,hintandextended,lora,180 -on3,0,0,25,1,0,1351,4500.997440,46,1,1825.999386,hintandextended,lora,180 -on9,0,0,24,1,0,71,4373.000000,46,0,1793.104410,hintandextended,lora,180 -on4,0,0,24,1,0,1080,4324.002560,46,0,1800.289638,hintandextended,lora,180 -on7,0,0,25,1,0,2273,4502.998720,46,1,1884.079898,hintandextended,lora,180 -on1,0,0,24,1,0,360,4320.005120,47,0,1753.602458,hintandextended,lora,180 -on3,0,0,24,1,0,0,4321.001280,47,0,1774.640102,hintandextended,lora,180 -on6,0,0,24,1,0,1315,4390.300000,47,1,1839.320000,hintandextended,lora,180 -on4,0,0,24,1,0,846,4427.996160,47,0,1825.182874,hintandextended,lora,180 -on5,0,0,24,1,0,966,4366.001280,47,0,1772.000717,hintandextended,lora,180 -on11,0,0,24,1,0,1749,4429.001280,47,0,1797.200717,hintandextended,lora,180 -on8,0,0,25,1,0,1049,4631.203840,47,1,1897.186150,hintandextended,lora,180 -on0,1,11,24,0,0,0,4863.608960,47,0,2242.021222,hintandextended,lora,180 -on9,0,0,25,1,0,1171,4501.303840,47,1,1843.561536,hintandextended,lora,180 -on2,0,0,26,1,0,1195,4683.000000,47,2,1958.927795,hintandextended,lora,180 -on10,0,0,25,1,0,1080,4502.393600,47,2,1849.230054,hintandextended,lora,180 -on7,0,0,27,1,0,1713,4942.000000,47,4,2104.287386,hintandextended,lora,180 -on2,0,0,23,1,0,435,4368.400000,48,1,1829.984819,hintandextended,lora,180 -on0,1,11,24,0,0,0,4942.214080,48,0,2465.496090,hintandextended,lora,180 -on6,0,0,24,1,0,2740,4340.001280,48,0,1761.600717,hintandextended,lora,180 -on4,0,0,24,1,0,327,4585.603840,48,1,1907.313946,hintandextended,lora,180 -on9,0,0,24,1,0,720,4323.001280,48,0,1791.280717,hintandextended,lora,180 -on11,0,0,25,1,0,1126,4504.198720,48,1,1863.647898,hintandextended,lora,180 -on7,0,0,24,1,0,294,4416.001280,48,0,1838.144922,hintandextended,lora,180 -on5,0,0,24,1,0,548,4323.000000,48,0,1793.904000,hintandextended,lora,180 -on3,0,0,24,1,0,1620,4321.000000,48,0,1757.200000,hintandextended,lora,180 -on8,0,0,26,1,0,1352,4682.302560,48,2,1926.361229,hintandextended,lora,180 -on10,0,0,26,1,0,874,4824.802560,48,2,2009.441434,hintandextended,lora,180 -on1,0,0,26,1,0,1044,4994.600000,48,3,2129.200205,hintandextended,lora,180 -on3,0,0,27,1,0,1050,4861.502560,49,3,2002.729024,hintandextended,lora,180 -on7,0,0,24,1,0,1877,4320.300000,49,1,1769.080205,hintandextended,lora,180 -on11,0,0,26,1,0,2393,4747.901280,49,3,1983.208307,hintandextended,lora,180 -on6,0,0,26,1,0,813,4820.006400,49,2,1953.602970,hintandextended,lora,180 -on10,0,0,25,1,0,350,4502.001280,49,1,1883.168717,hintandextended,lora,180 -on1,0,0,25,1,0,487,4502.300000,49,1,1851.480000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4826.212800,49,0,2378.679168,hintandextended,lora,180 -on5,0,0,25,1,0,971,4551.605120,49,1,1846.290867,hintandextended,lora,180 -on8,0,0,24,1,0,89,4390.998720,49,0,1810.639898,hintandextended,lora,180 -on4,0,0,25,1,0,180,4504.000000,49,1,1866.896205,hintandextended,lora,180 -on9,0,0,24,1,0,1080,4330.997440,49,1,1788.719386,hintandextended,lora,180 -on2,0,0,24,1,0,3060,4321.000000,49,0,1754.320000,hintandextended,lora,180 -on4,0,0,25,1,0,1738,4501.200000,50,1,1829.280000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4882.215360,50,0,2296.440806,hintandextended,lora,180 -on2,0,0,24,1,0,24,4325.001280,50,0,1760.464717,hintandextended,lora,180 -on3,0,0,24,1,0,242,4364.002560,50,0,1773.185434,hintandextended,lora,180 -on6,0,0,25,1,0,17,4500.796160,50,1,1826.094259,hintandextended,lora,180 -on1,0,0,26,1,0,868,4682.300000,50,2,1918.903590,hintandextended,lora,180 -on5,0,0,26,1,0,634,4682.500000,50,2,1925.639590,hintandextended,lora,180 -on10,0,0,26,1,0,634,4823.008960,50,2,2005.908198,hintandextended,lora,180 -on9,0,0,24,1,0,45,4346.000000,50,0,1764.000410,hintandextended,lora,180 -on8,0,0,25,1,0,263,4502.300000,50,1,1860.023590,hintandextended,lora,180 -on7,0,0,26,1,0,908,4981.203840,50,4,2077.441331,hintandextended,lora,180 -on11,0,0,28,1,0,1206,5046.401280,50,5,2085.696307,hintandextended,lora,180 -on7,0,0,24,1,0,1620,4323.001280,51,0,1774.801331,hintandextended,lora,180 -on4,0,0,24,1,0,540,4323.001280,51,0,1806.865126,hintandextended,lora,180 -on0,1,11,24,0,0,0,4448.002560,51,0,2252.641638,hintandextended,lora,180 -on6,0,0,25,1,0,1307,4502.001280,51,1,1863.681126,hintandextended,lora,180 -on9,0,0,25,1,0,1981,4500.302560,51,1,1854.361434,hintandextended,lora,180 -on8,0,0,24,1,0,1557,4419.998720,51,0,1822.240102,hintandextended,lora,180 -on11,0,0,24,1,0,506,4449.996160,51,0,1843.518874,hintandextended,lora,180 -on5,0,0,24,1,0,900,4321.001280,51,0,1774.480717,hintandextended,lora,180 -on3,0,0,24,1,0,1078,4479.001280,51,0,1842.704717,hintandextended,lora,180 -on10,0,0,24,1,0,289,4409.001280,51,0,1789.200717,hintandextended,lora,180 -on2,0,0,25,1,0,3757,4501.000000,51,1,1829.200000,hintandextended,lora,180 -on1,0,0,24,1,0,61,4361.003840,51,0,1770.002150,hintandextended,lora,180 -on8,0,0,25,1,0,1106,4511.501280,52,2,1852.984512,hintandextended,lora,180 -on9,0,0,25,1,0,0,4502.596160,52,1,1826.687283,hintandextended,lora,180 -on7,0,0,26,1,0,1346,4822.903840,52,2,1995.290355,hintandextended,lora,180 -on3,0,0,24,1,0,293,4415.002560,52,0,1836.625434,hintandextended,lora,180 -on10,0,0,24,1,0,609,4371.000000,52,0,1802.640410,hintandextended,lora,180 -on0,1,11,24,0,0,0,4752.214080,52,0,2399.960090,hintandextended,lora,180 -on2,0,0,24,1,0,3553,4433.001280,52,0,1798.800717,hintandextended,lora,180 -on5,0,0,26,1,0,406,4823.298720,52,2,2001.800102,hintandextended,lora,180 -on11,0,0,24,1,0,777,4358.001280,52,0,1792.160717,hintandextended,lora,180 -on4,0,0,28,1,0,1080,5184.300000,52,4,2145.400410,hintandextended,lora,180 -on6,0,0,27,1,0,1132,4864.800000,52,3,2043.088000,hintandextended,lora,180 -on1,0,0,24,1,0,461,4405.998720,52,0,1873.664102,hintandextended,lora,180 -on10,0,0,23,1,0,540,4280.998720,53,0,1740.943693,hintandextended,lora,180 -on6,0,0,25,1,0,2633,4501.000000,53,1,1829.200000,hintandextended,lora,180 -on7,0,0,24,1,0,360,4321.000000,53,0,1754.000410,hintandextended,lora,180 -on11,0,0,25,1,0,962,4502.300000,53,1,1859.000205,hintandextended,lora,180 -on2,0,0,24,1,0,293,4414.001280,53,0,1797.280922,hintandextended,lora,180 -on4,0,0,26,1,0,1248,4681.600000,53,2,1908.096000,hintandextended,lora,180 -on3,0,0,25,1,0,662,4504.200000,53,1,1843.344000,hintandextended,lora,180 -on9,0,0,26,1,0,1173,4823.203840,53,2,1998.241741,hintandextended,lora,180 -on5,0,0,24,1,0,2228,4368.001280,53,0,1772.800717,hintandextended,lora,180 -on8,0,0,24,1,0,2142,4463.001280,53,0,1838.000922,hintandextended,lora,180 -on0,1,11,24,0,0,0,4844.610240,53,0,2344.501939,hintandextended,lora,180 -on1,0,0,25,1,0,827,4590.602560,53,1,1898.481434,hintandextended,lora,180 -on6,0,0,24,1,0,0,4320.001280,54,0,1753.600717,hintandextended,lora,180 -on2,0,0,24,1,0,1553,4413.001280,54,0,1790.800717,hintandextended,lora,180 -on5,0,0,24,1,0,1297,4337.001280,54,0,1760.400717,hintandextended,lora,180 -on3,0,0,26,1,0,1785,4682.903840,54,2,1972.105741,hintandextended,lora,180 -on11,0,0,25,1,0,2454,4501.000000,54,1,1829.103795,hintandextended,lora,180 -on7,0,0,27,1,0,1872,5000.503840,54,3,2029.209741,hintandextended,lora,180 -on9,0,0,24,1,0,1157,4378.001280,54,0,1805.184717,hintandextended,lora,180 -on4,0,0,25,1,0,1468,4501.600000,54,1,1879.871590,hintandextended,lora,180 -on8,0,0,25,1,0,1121,4525.598720,54,1,1882.832307,hintandextended,lora,180 -on0,1,11,24,0,0,0,4895.216640,54,0,2272.841318,hintandextended,lora,180 -on1,0,0,25,1,0,2496,4636.603840,54,1,1880.289946,hintandextended,lora,180 -on10,0,0,27,1,0,2000,5001.603840,54,3,2029.057741,hintandextended,lora,180 -on9,0,0,24,1,0,1980,4321.001280,55,0,1774.704717,hintandextended,lora,180 -on11,0,0,25,1,0,2273,4501.200000,55,1,1829.280000,hintandextended,lora,180 -on3,0,0,26,1,0,1565,4824.603840,55,2,2022.321946,hintandextended,lora,180 -on10,0,0,24,1,0,1121,4344.001280,55,0,1833.920717,hintandextended,lora,180 -on5,0,0,23,1,0,164,4410.002560,55,0,1817.985434,hintandextended,lora,180 -on8,0,0,25,1,0,580,4522.602560,55,1,1863.329638,hintandextended,lora,180 -on1,0,0,24,1,0,600,4360.001280,55,0,1769.600717,hintandextended,lora,180 -on6,0,0,25,1,0,1519,4502.300000,55,1,1863.544410,hintandextended,lora,180 -on2,0,0,25,1,0,1422,4501.000000,55,1,1829.103795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4601.207680,55,0,2198.596506,hintandextended,lora,180 -on4,0,0,25,1,0,350,4500.201280,55,1,1825.680717,hintandextended,lora,180 -on7,0,0,25,1,0,1957,4501.201280,55,1,1846.080717,hintandextended,lora,180 -on8,0,0,24,1,0,180,4323.000000,56,0,1795.984410,hintandextended,lora,180 -on4,0,0,24,1,0,1525,4386.002560,56,0,1808.641434,hintandextended,lora,180 -on5,0,0,24,1,0,0,4320.001280,56,0,1753.600717,hintandextended,lora,180 -on10,0,0,24,1,0,437,4377.001280,56,0,1776.400717,hintandextended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,hintandextended,lora,180 -on1,0,0,26,1,0,1173,4822.802560,56,2,1978.609638,hintandextended,lora,180 -on7,0,0,25,1,0,684,4503.301280,56,1,1870.825126,hintandextended,lora,180 -on3,0,0,26,1,0,633,4823.802560,56,2,1992.033638,hintandextended,lora,180 -on0,1,9,24,0,0,0,5003.814080,56,0,2433.815885,hintandextended,lora,180 -on2,0,0,26,1,0,1646,4823.600000,56,2,1955.089024,hintandextended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,hintandextended,lora,180 -on11,0,0,24,1,0,1032,4435.002560,56,0,1870.161638,hintandextended,lora,180 -on3,0,0,24,1,0,1090,4463.392320,57,1,1839.645542,hintandextended,lora,180 -on0,1,11,24,0,0,0,4877.210240,57,0,2365.285939,hintandextended,lora,180 -on10,0,0,24,1,0,1339,4379.001280,57,0,1777.200717,hintandextended,lora,180 -on6,0,0,25,1,0,2520,4502.000000,57,1,1849.120000,hintandextended,lora,180 -on7,0,0,24,1,0,1449,4408.501280,57,1,1801.320512,hintandextended,lora,180 -on5,0,0,26,1,0,993,4823.602560,57,2,2012.209638,hintandextended,lora,180 -on8,0,0,24,1,0,457,4400.002560,57,0,1850.465638,hintandextended,lora,180 -on9,0,0,25,1,0,2813,4501.200000,57,1,1829.280000,hintandextended,lora,180 -on11,0,0,24,1,0,540,4323.000000,57,0,1804.848410,hintandextended,lora,180 -on1,0,0,25,1,0,1082,4501.300000,57,1,1857.703795,hintandextended,lora,180 -on4,0,0,24,1,0,1650,4330.001280,57,0,1757.600717,hintandextended,lora,180 -on2,0,0,25,1,0,735,4503.296160,57,1,1855.174669,hintandextended,lora,180 -on9,0,0,25,1,0,3580,4501.300000,58,1,1846.184000,hintandextended,lora,180 -on11,0,0,25,1,0,175,4657.603840,58,1,1917.170355,hintandextended,lora,180 -on1,0,0,25,1,0,605,4502.301280,58,1,1866.904512,hintandextended,lora,180 -on4,0,0,24,1,0,9,4322.998720,58,0,1767.343488,hintandextended,lora,180 -on5,0,0,25,1,0,757,4501.300000,58,1,1847.879795,hintandextended,lora,180 -on3,0,0,26,1,0,477,4825.001280,58,2,1978.369946,hintandextended,lora,180 -on10,0,0,24,1,0,1620,4320.001280,58,0,1753.600717,hintandextended,lora,180 -on8,0,0,25,1,0,676,4501.200000,58,1,1829.120000,hintandextended,lora,180 -on0,1,11,24,0,0,0,5046.216640,58,0,2582.681523,hintandextended,lora,180 -on2,0,0,25,1,0,900,4505.601280,58,1,1913.809331,hintandextended,lora,180 -on7,0,0,27,1,0,906,5004.403840,58,3,2066.450150,hintandextended,lora,180 -on6,0,0,24,1,0,425,4366.002560,58,0,1783.361638,hintandextended,lora,180 -on8,0,0,25,1,0,139,4620.608960,59,1,1896.996198,hintandextended,lora,180 -on3,0,0,26,1,0,813,4821.208960,59,2,1982.723994,hintandextended,lora,180 -on5,0,0,28,1,0,1271,5043.500000,59,4,2166.839386,hintandextended,lora,180 -on10,0,0,24,1,0,913,4355.300000,59,2,1802.215795,hintandextended,lora,180 -on4,0,0,27,1,0,1203,5002.503840,59,3,2071.369536,hintandextended,lora,180 -on0,1,11,24,0,0,0,4882.215360,59,0,2269.880806,hintandextended,lora,180 -on2,0,0,28,1,0,1026,5043.800000,59,4,2097.375181,hintandextended,lora,180 -on9,0,0,25,1,0,453,4635.300000,59,3,1907.239590,hintandextended,lora,180 -on11,0,0,25,1,0,673,4779.003840,59,2,1965.585741,hintandextended,lora,180 -on7,0,0,27,1,0,740,4863.798720,59,3,2035.055693,hintandextended,lora,180 -on1,0,0,24,1,0,79,4379.001280,59,0,1777.200717,hintandextended,lora,180 -on6,0,0,25,1,0,294,4501.003840,59,1,1829.249741,hintandextended,lora,180 -on1,0,0,29,1,0,1313,5361.406400,60,5,2212.161946,hintandextended,lora,180 -on6,0,0,25,1,0,691,4641.403840,60,2,1901.857331,hintandextended,lora,180 -on4,0,0,27,1,0,1035,4863.900000,60,3,2026.871386,hintandextended,lora,180 -on9,0,0,24,1,0,238,4359.001280,60,0,1783.920717,hintandextended,lora,180 -on2,0,0,27,1,0,1040,4999.500000,60,3,2049.559590,hintandextended,lora,180 -on8,0,0,24,1,0,0,4320.001280,60,0,1753.600717,hintandextended,lora,180 -on10,0,0,26,1,0,816,4682.300000,60,2,1917.559795,hintandextended,lora,180 -on7,0,0,26,1,0,903,4859.500000,60,3,2068.599590,hintandextended,lora,180 -on11,0,0,26,1,0,525,4682.600000,60,2,1961.199795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4978.017920,60,0,2276.170240,hintandextended,lora,180 -on5,0,0,25,1,0,197,4500.405120,60,1,1838.530662,hintandextended,lora,180 -on3,0,0,25,1,0,412,4502.300000,60,1,1863.544000,hintandextended,lora,180 -on5,0,0,26,1,0,1714,4822.600000,61,2,1954.640410,hintandextended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,hintandextended,lora,180 -on6,0,0,24,1,0,1455,4354.300000,61,1,1813.240000,hintandextended,lora,180 -on1,0,0,25,1,0,360,4502.602560,61,1,1855.330048,hintandextended,lora,180 -on10,0,0,24,1,0,1448,4321.002560,61,0,1755.665024,hintandextended,lora,180 -on4,0,0,24,1,0,614,4444.201280,61,1,1806.688717,hintandextended,lora,180 -on8,0,0,26,1,0,813,4685.500000,61,2,1966.968205,hintandextended,lora,180 -on7,0,0,25,1,0,1011,4501.000000,61,1,1826.000410,hintandextended,lora,180 -on9,0,0,24,1,0,180,4437.601280,61,1,1861.073946,hintandextended,lora,180 -on0,1,10,24,0,0,0,4679.208960,61,0,2459.557018,hintandextended,lora,180 -on2,0,0,24,1,0,0,4324.000000,61,0,1795.904614,hintandextended,lora,180 -on11,0,0,24,1,0,1260,4322.000000,61,0,1754.944410,hintandextended,lora,180 -on8,0,0,24,1,0,720,4321.998720,62,0,1754.400102,hintandextended,lora,180 -on11,0,0,25,1,0,1733,4503.997440,62,1,1872.702976,hintandextended,lora,180 -on5,0,0,25,1,0,1440,4502.002560,62,1,1849.777229,hintandextended,lora,180 -on3,0,0,26,1,0,1878,4821.906400,62,2,1981.291379,hintandextended,lora,180 -on9,0,0,24,1,0,4183,4343.000000,62,0,1762.800000,hintandextended,lora,180 -on6,0,0,24,1,0,900,4322.000000,62,0,1783.040410,hintandextended,lora,180 -on0,1,10,24,0,0,0,4924.811520,62,0,2393.574451,hintandextended,lora,180 -on1,0,0,24,1,0,1771,4453.000000,62,0,1835.280410,hintandextended,lora,180 -on4,0,0,24,1,0,195,4321.001280,62,0,1779.600922,hintandextended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,hintandextended,lora,180 -on2,0,0,25,1,0,2520,4503.600000,62,1,1855.728819,hintandextended,lora,180 -on10,0,0,24,1,0,525,4465.001280,62,0,1811.600717,hintandextended,lora,180 -on3,0,0,25,1,0,1094,4503.000000,63,1,1864.352410,hintandextended,lora,180 -on10,0,0,24,1,0,3447,4327.001280,63,0,1756.400717,hintandextended,lora,180 -on7,0,0,24,1,0,99,4399.001280,63,0,1785.200717,hintandextended,lora,180 -on8,0,0,25,1,0,1385,4501.203840,63,1,1852.481946,hintandextended,lora,180 -on2,0,0,24,1,0,893,4474.001280,63,0,1817.280717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4756.811520,63,0,2335.654656,hintandextended,lora,180 -on6,0,0,24,1,0,1013,4366.000000,63,1,1782.303795,hintandextended,lora,180 -on11,0,0,24,1,0,497,4438.998720,63,0,1801.200102,hintandextended,lora,180 -on4,0,0,26,1,0,1672,4825.203840,63,2,2074.386355,hintandextended,lora,180 -on1,0,0,25,1,0,1260,4503.000000,63,2,1860.480000,hintandextended,lora,180 -on9,0,0,24,1,0,540,4322.001280,63,0,1778.241126,hintandextended,lora,180 -on5,0,0,25,1,0,1621,4504.498720,63,1,1897.527693,hintandextended,lora,180 -on0,1,11,24,0,0,0,4780.811520,64,0,2399.750656,hintandextended,lora,180 -on8,0,0,24,1,0,720,4321.001280,64,0,1782.384717,hintandextended,lora,180 -on3,0,0,25,1,0,2964,4503.300000,64,1,1877.415590,hintandextended,lora,180 -on1,0,0,24,1,0,1014,4467.397440,64,1,1840.943590,hintandextended,lora,180 -on4,0,0,24,1,0,540,4320.005120,64,0,1753.602458,hintandextended,lora,180 -on9,0,0,25,1,0,3196,4618.602560,64,1,1901.729638,hintandextended,lora,180 -on2,0,0,26,1,0,1370,4821.602560,64,2,1954.289638,hintandextended,lora,180 -on5,0,0,24,1,0,2076,4396.998720,64,0,1784.399898,hintandextended,lora,180 -on6,0,0,25,1,0,2160,4501.602560,64,1,1826.289843,hintandextended,lora,180 -on7,0,0,24,1,0,1198,4419.000000,64,0,1793.200410,hintandextended,lora,180 -on11,0,0,24,1,0,1623,4323.998720,64,0,1787.359693,hintandextended,lora,180 -on10,0,0,24,1,0,3870,4390.001280,64,0,1781.600717,hintandextended,lora,180 -on10,0,0,25,1,0,994,4502.300000,65,1,1846.712000,hintandextended,lora,180 -on2,0,0,26,1,0,747,4681.300000,65,2,1904.359590,hintandextended,lora,180 -on3,0,0,25,1,0,1031,4612.003840,65,1,1872.801741,hintandextended,lora,180 -on4,0,0,25,1,0,1134,4500.301280,65,1,1835.160512,hintandextended,lora,180 -on9,0,0,28,1,0,873,5184.705120,65,4,2185.914662,hintandextended,lora,180 -on7,0,0,24,1,0,183,4321.001280,65,0,1781.872717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.615360,65,0,2290.424806,hintandextended,lora,180 -on11,0,0,25,1,0,1838,4501.300000,65,2,1844.840000,hintandextended,lora,180 -on5,0,0,24,1,0,764,4370.001280,65,1,1773.600717,hintandextended,lora,180 -on8,0,0,25,1,0,829,4641.303840,65,1,1908.393741,hintandextended,lora,180 -on6,0,0,25,1,0,558,4765.303840,65,2,1995.881946,hintandextended,lora,180 -on1,0,0,25,1,0,474,4504.298720,65,1,1875.079693,hintandextended,lora,180 -on7,0,0,25,1,0,918,4689.301280,66,2,1911.240512,hintandextended,lora,180 -on10,0,0,25,1,0,307,4503.300000,66,1,1893.031795,hintandextended,lora,180 -on11,0,0,25,1,0,1554,4501.000000,66,1,1829.200000,hintandextended,lora,180 -on2,0,0,24,1,0,464,4459.301280,66,1,1837.608717,hintandextended,lora,180 -on1,0,0,24,1,0,67,4370.001280,66,0,1831.104922,hintandextended,lora,180 -on5,0,0,25,1,0,94,4576.600000,66,1,1875.488819,hintandextended,lora,180 -on3,0,0,25,1,0,410,4532.003840,66,1,1852.321331,hintandextended,lora,180 -on4,0,0,26,1,0,635,4823.605120,66,2,2044.802253,hintandextended,lora,180 -on0,1,11,24,0,0,0,4878.615360,66,0,2296.344806,hintandextended,lora,180 -on8,0,0,27,1,0,734,4862.501280,66,3,2062.984512,hintandextended,lora,180 -on9,0,0,25,1,0,1260,4501.001280,66,1,1849.584717,hintandextended,lora,180 -on6,0,0,25,1,0,320,4503.198720,66,1,1858.719693,hintandextended,lora,180 -on7,0,0,24,1,0,1003,4406.000000,67,0,1828.480410,hintandextended,lora,180 -on8,0,0,24,1,0,1980,4322.997440,67,0,1770.479386,hintandextended,lora,180 -on3,0,0,24,1,0,43,4345.003840,67,0,1800.882150,hintandextended,lora,180 -on5,0,0,25,1,0,2880,4502.602560,67,2,1850.049843,hintandextended,lora,180 -on11,0,0,24,1,0,2411,4371.002560,67,0,1774.001434,hintandextended,lora,180 -on0,1,10,24,0,0,0,4722.211520,67,0,2465.398451,hintandextended,lora,180 -on6,0,0,25,1,0,1037,4619.603840,67,1,1895.890560,hintandextended,lora,180 -on1,0,0,25,1,0,152,4635.602560,67,1,1901.553843,hintandextended,lora,180 -on4,0,0,24,1,0,180,4321.000000,67,0,1754.000410,hintandextended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,67,0,1728.000000,hintandextended,lora,180 -on9,0,0,23,1,0,1620,4277.998720,67,0,1736.800512,hintandextended,lora,180 -on2,0,0,24,1,0,407,4348.002560,67,0,1765.121638,hintandextended,lora,180 -on7,0,0,24,1,0,0,4322.000000,68,0,1785.887795,hintandextended,lora,180 -on9,0,0,27,1,0,1119,5005.203840,68,3,2063.681741,hintandextended,lora,180 -on10,0,0,26,1,0,366,4821.303840,68,2,1979.625741,hintandextended,lora,180 -on1,0,0,24,1,0,1800,4321.000000,68,0,1757.200000,hintandextended,lora,180 -on3,0,0,26,1,0,886,4820.603840,68,2,1956.993536,hintandextended,lora,180 -on2,0,0,25,1,0,84,4566.600000,68,1,1880.160614,hintandextended,lora,180 -on0,1,11,24,0,0,0,4965.216640,68,0,2360.361318,hintandextended,lora,180 -on11,0,0,25,1,0,474,4503.998720,68,1,1887.519693,hintandextended,lora,180 -on6,0,0,26,1,0,727,4682.601280,68,2,1938.383898,hintandextended,lora,180 -on5,0,0,25,1,0,343,4501.000000,68,1,1829.200000,hintandextended,lora,180 -on8,0,0,25,1,0,220,4502.300000,68,1,1874.903795,hintandextended,lora,180 -on4,0,0,28,1,0,991,5044.500000,68,4,2135.287590,hintandextended,lora,180 -on6,0,0,24,1,0,540,4410.602560,69,1,1803.489434,hintandextended,lora,180 -on9,0,0,24,1,0,304,4425.001280,69,0,1824.080717,hintandextended,lora,180 -on11,0,0,24,1,0,919,4321.997440,69,0,1754.559181,hintandextended,lora,180 -on0,1,9,24,0,0,0,4638.208960,69,0,2151.317018,hintandextended,lora,180 -on8,0,0,25,1,0,538,4502.998720,69,1,1858.751488,hintandextended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hintandextended,lora,180 -on1,0,0,25,1,0,720,4500.997440,69,1,1825.999386,hintandextended,lora,180 -on3,0,0,24,1,0,3240,4320.001280,69,0,1753.600717,hintandextended,lora,180 -on10,0,0,24,1,0,1311,4352.000000,69,0,1766.400410,hintandextended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hintandextended,lora,180 -on5,0,0,26,1,0,681,4821.602560,69,2,1954.289638,hintandextended,lora,180 -on4,0,0,25,1,0,969,4500.301280,69,1,1843.480512,hintandextended,lora,180 -on8,0,0,26,1,0,460,4684.301280,70,2,1968.456717,hintandextended,lora,180 -on9,0,0,26,1,0,668,4683.802560,70,2,1966.017638,hintandextended,lora,180 -on2,0,0,24,1,0,1260,4321.998720,70,0,1757.599693,hintandextended,lora,180 -on6,0,0,24,1,0,3996,4337.001280,70,0,1789.040717,hintandextended,lora,180 -on10,0,0,25,1,0,56,4537.001280,70,1,1840.401126,hintandextended,lora,180 -on5,0,0,26,1,0,746,4824.298720,70,2,2017.400102,hintandextended,lora,180 -on0,1,11,24,0,0,0,4750.012800,70,0,2387.687373,hintandextended,lora,180 -on11,0,0,26,1,0,294,4822.300000,70,2,1994.744410,hintandextended,lora,180 -on1,0,0,25,1,0,342,4502.997440,70,1,1858.223181,hintandextended,lora,180 -on3,0,0,26,1,0,690,4684.300000,70,2,1966.040000,hintandextended,lora,180 -on4,0,0,26,1,0,916,4772.097440,70,3,1967.270771,hintandextended,lora,180 -on7,0,0,24,1,0,35,4337.001280,70,0,1774.161331,hintandextended,lora,180 -on10,0,0,25,1,0,1733,4503.998720,71,1,1862.303488,hintandextended,lora,180 -on8,0,0,25,1,0,888,4505.000000,71,2,1886.960410,hintandextended,lora,180 -on6,0,0,25,1,0,360,4501.001280,71,1,1828.784717,hintandextended,lora,180 -on1,0,0,28,1,0,1262,5041.701280,71,4,2093.944102,hintandextended,lora,180 -on5,0,0,25,1,0,180,4502.602560,71,1,1855.074048,hintandextended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,hintandextended,lora,180 -on11,0,0,26,1,0,771,4681.300000,71,2,1904.103590,hintandextended,lora,180 -on7,0,0,24,1,0,575,4433.001280,71,1,1834.800717,hintandextended,lora,180 -on0,1,10,24,0,0,0,4898.815360,71,0,2461.416602,hintandextended,lora,180 -on3,0,0,25,1,0,1778,4642.602560,71,1,1939.970048,hintandextended,lora,180 -on2,0,0,25,1,0,857,4641.002560,71,1,1882.001638,hintandextended,lora,180 -on4,0,0,27,1,0,1023,5004.097440,71,3,2030.647386,hintandextended,lora,180 -on8,0,0,25,1,0,473,4501.200000,72,1,1829.391795,hintandextended,lora,180 -on9,0,0,25,1,0,1041,4502.000000,72,1,1858.240000,hintandextended,lora,180 -on4,0,0,25,1,0,838,4501.000000,72,1,1829.103795,hintandextended,lora,180 -on7,0,0,26,1,0,633,4822.600000,72,2,1962.912614,hintandextended,lora,180 -on5,0,0,24,1,0,640,4401.001280,72,0,1814.384717,hintandextended,lora,180 -on1,0,0,25,1,0,28,4510.603840,72,1,1860.673946,hintandextended,lora,180 -on10,0,0,27,1,0,1086,5002.900000,72,3,2058.488410,hintandextended,lora,180 -on2,0,0,24,1,0,170,4470.001280,72,0,1813.600717,hintandextended,lora,180 -on11,0,0,27,1,0,1358,5001.203840,72,3,2058.177741,hintandextended,lora,180 -on6,0,0,24,1,0,1105,4326.001280,72,0,1784.640717,hintandextended,lora,180 -on3,0,0,25,1,0,327,4501.001280,72,1,1829.904717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4882.415360,72,0,2244.552602,hintandextended,lora,180 -on5,0,0,25,1,0,699,4503.300000,73,1,1889.928000,hintandextended,lora,180 -on6,0,0,25,1,0,121,4604.600000,73,1,1924.352614,hintandextended,lora,180 -on10,0,0,24,1,0,414,4354.001280,73,0,1767.200717,hintandextended,lora,180 -on8,0,0,27,1,0,781,4862.300000,73,3,2005.511795,hintandextended,lora,180 -on3,0,0,25,1,0,776,4501.600000,73,1,1875.071795,hintandextended,lora,180 -on2,0,0,25,1,0,638,4640.003840,73,1,1881.809741,hintandextended,lora,180 -on0,1,11,24,0,0,0,4882.216640,73,0,2241.241523,hintandextended,lora,180 -on9,0,0,24,1,0,146,4447.001280,73,0,1832.784717,hintandextended,lora,180 -on11,0,0,26,1,0,815,4956.603840,73,3,2089.633536,hintandextended,lora,180 -on1,0,0,27,1,0,1147,4861.900000,73,3,2008.439590,hintandextended,lora,180 -on7,0,0,26,1,0,846,4822.001280,73,2,1954.608922,hintandextended,lora,180 -on4,0,0,25,1,0,320,4501.200000,73,1,1829.280000,hintandextended,lora,180 -on1,0,0,24,1,0,700,4462.997440,74,0,1839.183590,hintandextended,lora,180 -on9,0,0,28,1,0,1080,5183.403840,74,4,2159.809946,hintandextended,lora,180 -on0,1,11,24,0,0,0,4804.212800,74,0,2275.479373,hintandextended,lora,180 -on2,0,0,24,1,0,89,4390.001280,74,0,1807.584717,hintandextended,lora,180 -on5,0,0,24,1,0,522,4463.000000,74,0,1810.800410,hintandextended,lora,180 -on6,0,0,24,1,0,900,4406.000000,74,1,1830.080410,hintandextended,lora,180 -on11,0,0,25,1,0,427,4549.000000,74,1,1858.480614,hintandextended,lora,180 -on3,0,0,24,1,0,2880,4322.000000,74,0,1764.640000,hintandextended,lora,180 -on8,0,0,24,1,0,1080,4321.000000,74,0,1757.103795,hintandextended,lora,180 -on4,0,0,25,1,0,874,4502.000000,74,1,1858.143795,hintandextended,lora,180 -on10,0,0,25,1,0,293,4501.001280,74,1,1826.544717,hintandextended,lora,180 -on7,0,0,25,1,0,1181,4583.602560,74,1,1879.089638,hintandextended,lora,180 -on5,0,0,24,1,0,249,4369.001280,75,0,1773.200717,hintandextended,lora,180 -on7,0,0,23,1,0,2092,4366.000000,75,0,1772.000410,hintandextended,lora,180 -on10,0,0,24,1,0,3010,4431.001280,75,0,1826.384717,hintandextended,lora,180 -on4,0,0,24,1,0,2104,4487.300000,75,1,1874.344205,hintandextended,lora,180 -on3,0,0,24,1,0,1026,4428.002560,75,0,1825.441638,hintandextended,lora,180 -on2,0,0,25,1,0,2851,4500.201280,75,1,1825.680717,hintandextended,lora,180 -on6,0,0,25,1,0,1207,4501.001280,75,1,1852.560922,hintandextended,lora,180 -on9,0,0,25,1,0,1017,4600.603840,75,1,1925.313946,hintandextended,lora,180 -on8,0,0,25,1,0,3217,4501.200000,75,1,1829.280000,hintandextended,lora,180 -on1,0,0,25,1,0,360,4502.601280,75,1,1835.489331,hintandextended,lora,180 -on11,0,0,25,1,0,1800,4501.997440,75,1,1843.999386,hintandextended,lora,180 -on0,1,11,24,0,0,0,4481.206400,75,0,2211.075789,hintandextended,lora,180 -on6,0,0,24,1,0,604,4365.002560,76,0,1800.081434,hintandextended,lora,180 -on11,0,0,23,1,0,205,4284.001280,76,0,1739.200717,hintandextended,lora,180 -on3,0,0,25,1,0,2291,4503.298720,76,1,1881.320102,hintandextended,lora,180 -on4,0,0,24,1,0,3928,4449.001280,76,0,1830.960717,hintandextended,lora,180 -on10,0,0,24,1,0,2438,4399.002560,76,0,1792.241434,hintandextended,lora,180 -on1,0,0,24,1,0,1027,4429.003840,76,0,1832.402150,hintandextended,lora,180 -on9,0,0,24,1,0,1654,4335.001280,76,0,1782.000922,hintandextended,lora,180 -on0,1,11,24,0,0,0,4654.208960,76,0,2351.477222,hintandextended,lora,180 -on5,0,0,25,1,0,274,4577.605120,76,1,1872.531072,hintandextended,lora,180 -on8,0,0,26,1,0,1869,4827.898720,76,2,2061.352717,hintandextended,lora,180 -on2,0,0,24,1,0,469,4410.002560,76,0,1805.761434,hintandextended,lora,180 -on7,0,0,24,1,0,2645,4324.600000,76,1,1794.960000,hintandextended,lora,180 -on2,0,0,26,1,0,920,4822.906400,77,2,2002.250970,hintandextended,lora,180 -on7,0,0,25,1,0,168,4650.605120,77,1,1922.914867,hintandextended,lora,180 -on10,0,0,25,1,0,408,4501.300000,77,1,1839.719795,hintandextended,lora,180 -on6,0,0,26,1,0,460,4821.005120,77,2,1954.642662,hintandextended,lora,180 -on3,0,0,25,1,0,1214,4502.200000,77,1,1839.600410,hintandextended,lora,180 -on4,0,0,26,1,0,1098,4682.698720,77,2,1933.927283,hintandextended,lora,180 -on5,0,0,25,1,0,2521,4501.300000,77,1,1857.960000,hintandextended,lora,180 -on11,0,0,25,1,0,875,4502.201280,77,1,1849.584717,hintandextended,lora,180 -on1,0,0,25,1,0,345,4502.998720,77,1,1858.479693,hintandextended,lora,180 -on8,0,0,24,1,0,168,4470.996160,77,0,1842.383078,hintandextended,lora,180 -on0,1,11,24,0,0,0,4854.212800,77,0,2328.439373,hintandextended,lora,180 -on9,0,0,24,1,0,540,4323.998720,77,0,1809.407693,hintandextended,lora,180 -on8,0,0,25,1,0,1030,4501.000000,78,1,1829.200000,hintandextended,lora,180 -on4,0,0,28,1,0,1003,5185.503840,78,4,2194.521331,hintandextended,lora,180 -on5,0,0,25,1,0,55,4538.603840,78,1,1873.601946,hintandextended,lora,180 -on2,0,0,24,1,0,763,4537.303840,78,1,1853.289741,hintandextended,lora,180 -on7,0,0,25,1,0,293,4501.001280,78,1,1854.384717,hintandextended,lora,180 -on10,0,0,28,1,0,980,5042.402560,78,4,2132.016819,hintandextended,lora,180 -on1,0,0,26,1,0,648,4683.000000,78,2,1941.744000,hintandextended,lora,180 -on11,0,0,24,1,0,154,4455.001280,78,0,1829.264717,hintandextended,lora,180 -on3,0,0,25,1,0,671,4640.203840,78,1,1881.681741,hintandextended,lora,180 -on9,0,0,27,1,0,638,4863.301280,78,3,2060.504102,hintandextended,lora,180 -on6,0,0,25,1,0,375,4501.300000,78,1,1854.440000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4882.215360,78,0,2241.240806,hintandextended,lora,180 -on9,0,0,25,1,0,934,4500.301280,79,1,1846.008717,hintandextended,lora,180 -on3,0,0,25,1,0,2341,4501.300000,79,1,1857.960000,hintandextended,lora,180 -on8,0,0,25,1,0,463,4585.001280,79,1,1859.601536,hintandextended,lora,180 -on5,0,0,25,1,0,1606,4501.000000,79,1,1829.103795,hintandextended,lora,180 -on4,0,0,24,1,0,516,4459.001280,79,0,1829.104922,hintandextended,lora,180 -on10,0,0,26,1,0,1479,4683.198720,79,2,1930.767693,hintandextended,lora,180 -on1,0,0,24,1,0,561,4438.297440,79,1,1831.543181,hintandextended,lora,180 -on11,0,0,25,1,0,1806,4879.303840,79,3,1996.617946,hintandextended,lora,180 -on2,0,0,26,1,0,1354,4822.000000,79,2,1982.288614,hintandextended,lora,180 -on6,0,0,24,1,0,1173,4393.001280,79,0,1782.800717,hintandextended,lora,180 -on7,0,0,25,1,0,608,4501.000000,79,1,1829.200000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4740.611520,79,0,2304.822656,hintandextended,lora,180 -on9,0,0,24,1,0,900,4324.001280,80,0,1781.601126,hintandextended,lora,180 -on6,0,0,24,1,0,1254,4474.001280,80,0,1815.200717,hintandextended,lora,180 -on11,0,0,25,1,0,3147,4501.300000,80,2,1857.960000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4464.003840,80,0,2178.946355,hintandextended,lora,180 -on2,0,0,24,1,0,540,4321.001280,80,0,1773.488717,hintandextended,lora,180 -on7,0,0,24,1,0,82,4382.001280,80,0,1778.400717,hintandextended,lora,180 -on5,0,0,24,1,0,1682,4362.001280,80,0,1770.400717,hintandextended,lora,180 -on1,0,0,24,1,0,2792,4379.301280,80,1,1802.920717,hintandextended,lora,180 -on3,0,0,24,1,0,392,4332.001280,80,0,1758.400717,hintandextended,lora,180 -on4,0,0,24,1,0,1328,4368.998720,80,0,1773.199898,hintandextended,lora,180 -on8,0,0,24,1,0,1800,4322.000000,80,0,1764.640205,hintandextended,lora,180 -on10,0,0,24,1,0,796,4440.601280,80,1,1833.697126,hintandextended,lora,180 -on10,0,0,25,1,0,1705,4502.301280,81,1,1899.000512,hintandextended,lora,180 -on6,0,0,25,1,0,540,4505.598720,81,2,1865.968512,hintandextended,lora,180 -on1,0,0,25,1,0,1512,4501.300000,81,1,1846.600000,hintandextended,lora,180 -on8,0,0,24,1,0,394,4336.002560,81,0,1788.641843,hintandextended,lora,180 -on5,0,0,26,1,0,566,4825.600000,81,2,2010.096819,hintandextended,lora,180 -on4,0,0,24,1,0,305,4427.001280,81,0,1820.880717,hintandextended,lora,180 -on11,0,0,23,1,0,1371,4244.998720,81,0,1752.080102,hintandextended,lora,180 -on9,0,0,24,1,0,1102,4323.003840,81,0,1754.802150,hintandextended,lora,180 -on3,0,0,24,1,0,1724,4404.001280,81,0,1787.200717,hintandextended,lora,180 -on7,0,0,25,1,0,4253,4500.000000,81,1,1825.600000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4617.207680,81,0,2406.116301,hintandextended,lora,180 -on2,0,0,24,1,0,0,4322.000000,81,0,1764.480410,hintandextended,lora,180 -on10,0,0,26,1,0,1335,4955.203840,82,3,2099.089946,hintandextended,lora,180 -on7,0,0,24,1,0,802,4382.003840,82,0,1778.401741,hintandextended,lora,180 -on11,0,0,25,1,0,1255,4503.200000,82,1,1887.263795,hintandextended,lora,180 -on6,0,0,24,1,0,540,4321.001280,82,0,1782.384717,hintandextended,lora,180 -on9,0,0,26,1,0,1009,4823.600000,82,2,2012.064819,hintandextended,lora,180 -on1,0,0,24,1,0,2025,4345.001280,82,0,1763.600717,hintandextended,lora,180 -on4,0,0,25,1,0,1620,4501.601280,82,1,1826.289126,hintandextended,lora,180 -on3,0,0,24,1,0,438,4380.998720,82,0,1806.640102,hintandextended,lora,180 -on8,0,0,26,1,0,1012,4682.000000,82,2,1920.767795,hintandextended,lora,180 -on5,0,0,25,1,0,1037,4501.000000,82,1,1829.200000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4928.815360,82,0,2330.216806,hintandextended,lora,180 -on2,0,0,24,1,0,755,4335.001280,82,0,1759.600717,hintandextended,lora,180 -on6,0,0,24,1,0,204,4326.001280,83,0,1809.600717,hintandextended,lora,180 -on1,0,0,24,1,0,996,4397.000000,83,0,1784.400410,hintandextended,lora,180 -on7,0,0,26,1,0,821,4822.802560,83,2,1983.617638,hintandextended,lora,180 -on9,0,0,24,1,0,2160,4320.001280,83,0,1753.600717,hintandextended,lora,180 -on8,0,0,25,1,0,2453,4502.001280,83,1,1839.040717,hintandextended,lora,180 -on11,0,0,24,1,0,2887,4388.300000,83,1,1849.080000,hintandextended,lora,180 -on10,0,0,25,1,0,703,4501.201280,83,1,1829.184512,hintandextended,lora,180 -on3,0,0,24,1,0,18,4321.006400,83,0,1754.226970,hintandextended,lora,180 -on4,0,0,24,1,0,2094,4415.001280,83,0,1820.240717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4616.210240,83,0,2236.757939,hintandextended,lora,180 -on2,0,0,25,1,0,52,4535.605120,83,1,1869.010867,hintandextended,lora,180 -on5,0,0,24,1,0,360,4322.000000,83,0,1785.824000,hintandextended,lora,180 -on6,0,0,25,1,0,775,4537.601280,84,1,1868.049536,hintandextended,lora,180 -on11,0,0,25,1,0,1372,4503.302560,84,1,1865.321843,hintandextended,lora,180 -on5,0,0,26,1,0,1082,4768.694880,84,2,2030.470566,hintandextended,lora,180 -on2,0,0,24,1,0,940,4343.001280,84,0,1827.761126,hintandextended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,84,0,1728.000000,hintandextended,lora,180 -on8,0,0,26,1,0,1761,4849.202560,84,3,2134.577843,hintandextended,lora,180 -on4,0,0,25,1,0,1952,4502.298720,84,1,1833.047488,hintandextended,lora,180 -on7,0,0,24,1,0,180,4324.001280,84,0,1812.289331,hintandextended,lora,180 -on0,1,10,24,0,0,0,4822.415360,84,0,2440.712602,hintandextended,lora,180 -on9,0,0,25,1,0,1440,4503.000000,84,1,1868.832205,hintandextended,lora,180 -on10,0,0,24,1,0,977,4431.298720,84,1,1891.847078,hintandextended,lora,180 -on3,0,0,25,1,0,653,4502.998720,84,1,1858.543488,hintandextended,lora,180 -on7,0,0,26,1,0,1191,4682.301280,85,2,1920.504512,hintandextended,lora,180 -on2,0,0,24,1,0,1193,4468.197440,85,1,1867.662976,hintandextended,lora,180 -on6,0,0,26,1,0,1542,4685.498720,85,2,1971.959488,hintandextended,lora,180 -on8,0,0,26,1,0,1013,4825.900000,85,2,2032.328819,hintandextended,lora,180 -on9,0,0,24,1,0,849,4431.000000,85,0,1826.480410,hintandextended,lora,180 -on10,0,0,25,1,0,1047,4501.000000,85,1,1829.408000,hintandextended,lora,180 -on11,0,0,24,1,0,612,4373.005120,85,0,1803.282458,hintandextended,lora,180 -on0,1,11,24,0,0,0,4742.811520,85,0,2330.694656,hintandextended,lora,180 -on4,0,0,24,1,0,58,4484.601280,85,1,1819.489331,hintandextended,lora,180 -on5,0,0,24,1,0,93,4395.001280,85,0,1826.960922,hintandextended,lora,180 -on1,0,0,25,1,0,1468,4802.803840,85,2,1964.737536,hintandextended,lora,180 -on3,0,0,24,1,0,2474,4435.001280,85,0,1828.240717,hintandextended,lora,180 -on7,0,0,24,1,0,669,4429.001280,86,0,1797.200717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.615360,86,0,2268.984806,hintandextended,lora,180 -on2,0,0,26,1,0,808,4821.303840,86,2,1985.801536,hintandextended,lora,180 -on9,0,0,24,1,0,1265,4321.000000,86,0,1756.400000,hintandextended,lora,180 -on8,0,0,24,1,0,805,4385.001280,86,0,1779.600717,hintandextended,lora,180 -on1,0,0,24,1,0,70,4370.998720,86,0,1773.999898,hintandextended,lora,180 -on10,0,0,25,1,0,382,4501.500000,86,1,1844.007590,hintandextended,lora,180 -on4,0,0,28,1,0,872,5182.805120,86,4,2176.258253,hintandextended,lora,180 -on6,0,0,25,1,0,11,4501.996160,86,1,1854.991078,hintandextended,lora,180 -on5,0,0,25,1,0,633,4640.003840,86,1,1881.601741,hintandextended,lora,180 -on3,0,0,24,1,0,261,4382.000000,86,0,1778.400410,hintandextended,lora,180 -on11,0,0,28,1,0,995,5042.102560,86,4,2157.321434,hintandextended,lora,180 -on10,0,0,25,1,0,1800,4501.000000,87,1,1826.000410,hintandextended,lora,180 -on1,0,0,24,1,0,2124,4445.001280,87,0,1832.240717,hintandextended,lora,180 -on4,0,0,24,1,0,459,4400.001280,87,0,1812.544717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4791.608960,87,0,2306.181018,hintandextended,lora,180 -on8,0,0,25,1,0,2082,4584.602560,87,1,1873.249638,hintandextended,lora,180 -on2,0,0,25,1,0,1004,4502.300000,87,1,1867.320410,hintandextended,lora,180 -on7,0,0,24,1,0,180,4320.001280,87,0,1753.600717,hintandextended,lora,180 -on11,0,0,24,1,0,922,4322.001280,87,0,1754.400717,hintandextended,lora,180 -on3,0,0,24,1,0,2520,4321.000000,87,0,1757.200000,hintandextended,lora,180 -on6,0,0,24,1,0,58,4359.996160,87,0,1769.599078,hintandextended,lora,180 -on9,0,0,25,1,0,653,4500.201280,87,1,1825.680717,hintandextended,lora,180 -on5,0,0,24,1,0,540,4321.998720,87,0,1757.599898,hintandextended,lora,180 -on10,0,0,26,1,0,1174,4823.998720,88,2,1994.464102,hintandextended,lora,180 -on3,0,0,24,1,0,358,4479.998720,88,0,1846.239898,hintandextended,lora,180 -on5,0,0,25,1,0,1553,4501.000000,88,1,1829.200000,hintandextended,lora,180 -on11,0,0,24,1,0,0,4320.002560,88,0,1753.601434,hintandextended,lora,180 -on0,1,11,24,0,0,0,4659.610240,88,0,2331.941939,hintandextended,lora,180 -on9,0,0,25,1,0,1175,4501.301280,88,1,1850.024717,hintandextended,lora,180 -on4,0,0,25,1,0,1049,4503.997440,88,1,1878.607386,hintandextended,lora,180 -on2,0,0,24,1,0,552,4323.000000,88,0,1784.624410,hintandextended,lora,180 -on6,0,0,24,1,0,643,4532.603840,88,1,1873.409946,hintandextended,lora,180 -on1,0,0,24,1,0,4133,4473.001280,88,0,1814.800717,hintandextended,lora,180 -on8,0,0,26,1,0,1185,4686.498720,88,2,1968.839898,hintandextended,lora,180 -on7,0,0,25,1,0,720,4503.996160,88,1,1870.142669,hintandextended,lora,180 -on6,0,0,24,1,0,482,4423.002560,89,0,1823.121434,hintandextended,lora,180 -on7,0,0,25,1,0,2996,4501.200000,89,1,1829.280000,hintandextended,lora,180 -on2,0,0,25,1,0,1696,4501.300000,89,1,1845.863795,hintandextended,lora,180 -on11,0,0,26,1,0,1796,4823.905120,89,2,2026.218867,hintandextended,lora,180 -on9,0,0,25,1,0,465,4586.606400,89,1,1869.731174,hintandextended,lora,180 -on3,0,0,25,1,0,1980,4502.601280,89,2,1855.073126,hintandextended,lora,180 -on10,0,0,25,1,0,1913,4502.003840,89,1,1858.241741,hintandextended,lora,180 -on8,0,0,24,1,0,155,4456.000000,89,0,1808.000410,hintandextended,lora,180 -on4,0,0,24,1,0,180,4322.998720,89,0,1781.904102,hintandextended,lora,180 -on1,0,0,25,1,0,2296,4501.201280,89,1,1854.720717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4664.811520,89,0,2304.294042,hintandextended,lora,180 -on5,0,0,24,1,0,698,4459.001280,89,0,1824.400717,hintandextended,lora,180 -on9,0,0,25,1,0,1374,4501.000000,90,1,1826.000410,hintandextended,lora,180 -on8,0,0,25,1,0,2601,4502.300000,90,1,1862.200000,hintandextended,lora,180 -on6,0,0,25,1,0,360,4502.601280,90,1,1842.209331,hintandextended,lora,180 -on1,0,0,25,1,0,2124,4500.301280,90,1,1831.480717,hintandextended,lora,180 -on5,0,0,23,1,0,1736,4358.001280,90,0,1768.800717,hintandextended,lora,180 -on7,0,0,24,1,0,140,4440.003840,90,0,1801.602150,hintandextended,lora,180 -on10,0,0,25,1,0,1657,4502.301280,90,1,1906.520512,hintandextended,lora,180 -on3,0,0,23,1,0,2160,4277.001280,90,0,1736.400717,hintandextended,lora,180 -on4,0,0,24,1,0,1080,4321.001280,90,0,1765.584717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4776.606400,90,0,2308.979789,hintandextended,lora,180 -on11,0,0,24,1,0,1440,4322.001280,90,0,1775.520512,hintandextended,lora,180 -on2,0,0,24,1,0,900,4321.001280,90,0,1772.080717,hintandextended,lora,180 -on1,0,0,24,1,0,540,4321.000000,91,0,1757.200000,hintandextended,lora,180 -on10,0,0,26,1,0,927,4825.000000,91,2,2003.232410,hintandextended,lora,180 -on11,0,0,26,1,0,1173,4821.603840,91,2,1982.929946,hintandextended,lora,180 -on0,1,11,24,0,0,0,5032.416640,91,0,2328.393318,hintandextended,lora,180 -on9,0,0,24,1,0,444,4384.001280,91,0,1779.200717,hintandextended,lora,180 -on7,0,0,25,1,0,195,4501.300000,91,1,1854.568000,hintandextended,lora,180 -on6,0,0,25,1,0,856,4501.000000,91,1,1828.943795,hintandextended,lora,180 -on4,0,0,25,1,0,841,4502.300000,91,1,1867.799795,hintandextended,lora,180 -on5,0,0,27,1,0,613,5003.902560,91,3,2067.273434,hintandextended,lora,180 -on3,0,0,24,1,0,130,4431.001280,91,0,1826.640717,hintandextended,lora,180 -on2,0,0,25,1,0,31,4513.600000,91,1,1855.376614,hintandextended,lora,180 -on8,0,0,25,1,0,922,4501.300000,91,1,1854.503590,hintandextended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hintandextended,lora,180 -on10,0,0,25,1,0,311,4501.000000,92,1,1829.151795,hintandextended,lora,180 -on2,0,0,24,1,0,0,4325.000000,92,0,1789.488819,hintandextended,lora,180 -on5,0,0,26,1,0,633,4822.003840,92,2,1981.601741,hintandextended,lora,180 -on3,0,0,26,1,0,993,4821.602560,92,2,1954.289638,hintandextended,lora,180 -on0,1,9,24,0,0,0,4860.214080,92,0,2401.399885,hintandextended,lora,180 -on11,0,0,25,1,0,437,4505.300000,92,1,1927.144614,hintandextended,lora,180 -on1,0,0,24,1,0,3060,4321.000000,92,0,1754.000410,hintandextended,lora,180 -on4,0,0,25,1,0,500,4730.606400,92,2,1931.603174,hintandextended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hintandextended,lora,180 -on8,0,0,26,1,0,565,4682.500000,92,2,1905.048000,hintandextended,lora,180 -on6,0,0,25,1,0,766,4503.196160,92,1,1830.190669,hintandextended,lora,180 -on1,0,0,25,1,0,1013,4502.000000,93,1,1843.200000,hintandextended,lora,180 -on11,0,0,24,1,0,1320,4328.301280,93,1,1779.352717,hintandextended,lora,180 -on7,0,0,25,1,0,360,4502.996160,93,1,1829.854669,hintandextended,lora,180 -on4,0,0,25,1,0,886,4502.300000,93,1,1835.927386,hintandextended,lora,180 -on9,0,0,28,1,0,1204,5182.900000,93,4,2182.920000,hintandextended,lora,180 -on3,0,0,24,1,0,852,4432.001280,93,0,1820.224922,hintandextended,lora,180 -on6,0,0,24,1,0,180,4320.001280,93,0,1753.600717,hintandextended,lora,180 -on5,0,0,25,1,0,395,4517.207680,93,1,1854.195686,hintandextended,lora,180 -on2,0,0,26,1,0,970,4823.905120,93,2,2003.754458,hintandextended,lora,180 -on10,0,0,23,1,0,0,4276.005120,93,0,1736.002458,hintandextended,lora,180 -on0,1,11,24,0,0,0,4821.815360,93,0,2246.136806,hintandextended,lora,180 -on8,0,0,26,1,0,1359,4682.300000,93,2,1933.559795,hintandextended,lora,180 -on7,0,0,25,1,0,1040,4501.000000,94,1,1829.408000,hintandextended,lora,180 -on10,0,0,28,1,0,1822,5043.102560,94,4,2092.696819,hintandextended,lora,180 -on1,0,0,25,1,0,360,4504.996160,94,1,1888.575078,hintandextended,lora,180 -on2,0,0,24,1,0,132,4432.002560,94,0,1798.401434,hintandextended,lora,180 -on9,0,0,25,1,0,540,4501.003840,94,1,1854.641946,hintandextended,lora,180 -on6,0,0,25,1,0,900,4502.996160,94,1,1848.350669,hintandextended,lora,180 -on4,0,0,23,1,0,793,4426.001280,94,1,1796.000717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4701.210240,94,0,2225.797939,hintandextended,lora,180 -on3,0,0,23,1,0,312,4427.001280,94,0,1796.400717,hintandextended,lora,180 -on5,0,0,25,1,0,1306,4501.000000,94,1,1829.248000,hintandextended,lora,180 -on8,0,0,25,1,0,1284,4501.600000,94,1,1882.047590,hintandextended,lora,180 -on11,0,0,26,1,0,1466,4823.000000,94,2,2003.920410,hintandextended,lora,180 -on10,0,0,24,1,0,926,4327.001280,95,0,1757.680922,hintandextended,lora,180 -on1,0,0,26,1,0,1503,4681.301280,95,2,1909.800512,hintandextended,lora,180 -on5,0,0,25,1,0,1184,4642.002560,95,1,1911.249434,hintandextended,lora,180 -on9,0,0,24,1,0,302,4422.001280,95,0,1794.400717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4693.608960,95,0,2230.661222,hintandextended,lora,180 -on4,0,0,24,1,0,0,4322.001280,95,0,1799.520922,hintandextended,lora,180 -on3,0,0,27,1,0,1413,5001.908960,95,3,2055.212198,hintandextended,lora,180 -on2,0,0,24,1,0,800,4381.001280,95,0,1806.224717,hintandextended,lora,180 -on8,0,0,25,1,0,1235,4503.298720,95,1,1862.759488,hintandextended,lora,180 -on11,0,0,24,1,0,360,4322.001280,95,0,1801.920717,hintandextended,lora,180 -on7,0,0,24,1,0,2560,4340.001280,95,0,1761.600717,hintandextended,lora,180 -on6,0,0,26,1,0,1217,4682.000000,95,2,1929.727795,hintandextended,lora,180 -on8,0,0,24,1,0,103,4581.601280,96,1,1886.673331,hintandextended,lora,180 -on11,0,0,25,1,0,1148,4656.301280,96,2,1906.520512,hintandextended,lora,180 -on2,0,0,24,1,0,1727,4408.001280,96,0,1812.160717,hintandextended,lora,180 -on10,0,0,24,1,0,282,4404.001280,96,0,1802.624922,hintandextended,lora,180 -on4,0,0,26,1,0,633,4821.000000,96,2,1954.000410,hintandextended,lora,180 -on7,0,0,26,1,0,667,4749.502560,96,3,1960.809024,hintandextended,lora,180 -on6,0,0,25,1,0,946,4502.200000,96,1,1838.368205,hintandextended,lora,180 -on9,0,0,24,1,0,0,4321.998720,96,0,1757.503488,hintandextended,lora,180 -on0,1,11,24,0,0,0,4757.211520,96,0,2283.398656,hintandextended,lora,180 -on3,0,0,28,1,0,1067,5183.400000,96,4,2134.096000,hintandextended,lora,180 -on5,0,0,25,1,0,656,4502.200000,96,1,1833.967795,hintandextended,lora,180 -on1,0,0,25,1,0,336,4503.498720,96,1,1880.807283,hintandextended,lora,180 -on3,0,0,24,1,0,285,4405.001280,97,0,1787.600717,hintandextended,lora,180 -on6,0,0,26,1,0,508,4682.702560,97,2,1948.233229,hintandextended,lora,180 -on1,0,0,26,1,0,468,4681.300000,97,2,1929.800000,hintandextended,lora,180 -on11,0,0,25,1,0,1260,4503.300000,97,2,1893.048000,hintandextended,lora,180 -on5,0,0,26,1,0,633,4822.000000,97,2,1977.504410,hintandextended,lora,180 -on8,0,0,28,1,0,1007,5184.103840,97,5,2178.057536,hintandextended,lora,180 -on2,0,0,24,1,0,735,4324.001280,97,1,1755.200717,hintandextended,lora,180 -on9,0,0,24,1,0,282,4403.003840,97,0,1815.185741,hintandextended,lora,180 -on0,1,11,24,0,0,0,4889.012800,97,0,2302.327373,hintandextended,lora,180 -on7,0,0,24,1,0,56,4357.997440,97,0,1790.463386,hintandextended,lora,180 -on10,0,0,26,1,0,1006,4681.202560,97,2,1926.721434,hintandextended,lora,180 -on4,0,0,24,1,0,0,4321.000000,97,0,1756.944000,hintandextended,lora,180 -on4,0,0,25,1,0,657,4563.200000,98,2,1858.672000,hintandextended,lora,180 -on9,0,0,26,1,0,688,4820.808960,98,2,1953.924198,hintandextended,lora,180 -on2,0,0,25,1,0,766,4501.000000,98,1,1829.040000,hintandextended,lora,180 -on7,0,0,25,1,0,294,4501.001280,98,1,1854.480717,hintandextended,lora,180 -on5,0,0,24,1,0,497,4438.001280,98,0,1804.000922,hintandextended,lora,180 -on6,0,0,27,1,0,1106,5003.903840,98,3,2086.249331,hintandextended,lora,180 -on11,0,0,25,1,0,2136,4501.000000,98,1,1829.200000,hintandextended,lora,180 -on8,0,0,25,1,0,958,4641.302560,98,1,1891.113434,hintandextended,lora,180 -on10,0,0,26,1,0,855,4684.898720,98,2,1965.319283,hintandextended,lora,180 -on0,1,11,24,0,0,0,4798.612800,98,0,2262.583373,hintandextended,lora,180 -on1,0,0,24,1,0,0,4321.001280,98,0,1782.384717,hintandextended,lora,180 -on3,0,0,27,1,0,1302,4864.500000,98,3,2068.840000,hintandextended,lora,180 -on1,0,0,27,1,0,703,5002.203840,99,3,2043.553331,hintandextended,lora,180 -on8,0,0,25,1,0,0,4502.000000,99,1,1857.679795,hintandextended,lora,180 -on11,0,0,24,1,0,203,4324.003840,99,0,1783.842150,hintandextended,lora,180 -on2,0,0,25,1,0,690,4504.296160,99,1,1860.150874,hintandextended,lora,180 -on6,0,0,25,1,0,2146,4502.200000,99,1,1858.320000,hintandextended,lora,180 -on7,0,0,25,1,0,688,4501.600000,99,1,1863.359795,hintandextended,lora,180 -on4,0,0,25,1,0,857,4504.298720,99,1,1891.479898,hintandextended,lora,180 -on5,0,0,25,1,0,499,4640.003840,99,1,1881.601741,hintandextended,lora,180 -on10,0,0,25,1,0,256,4506.097440,99,1,1922.086976,hintandextended,lora,180 -on3,0,0,25,1,0,53,4537.205120,99,1,1883.522662,hintandextended,lora,180 -on0,1,11,24,0,0,0,4891.816640,99,0,2379.097523,hintandextended,lora,180 -on9,0,0,26,1,0,579,4824.600000,99,2,2060.192614,hintandextended,lora,180 -on5,0,0,25,1,0,1557,4501.600000,100,1,1866.400000,hintandextended,lora,180 -on1,0,0,24,1,0,2156,4459.000000,100,0,1834.960000,hintandextended,lora,180 -on2,0,0,24,1,0,127,4428.000000,100,0,1796.800410,hintandextended,lora,180 -on8,0,0,26,1,0,2194,4682.601280,100,2,1968.560307,hintandextended,lora,180 -on9,0,0,25,1,0,2700,4501.000000,100,1,1828.192000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4634.207680,100,0,2212.916301,hintandextended,lora,180 -on6,0,0,25,1,0,1937,4502.200000,100,1,1830.703795,hintandextended,lora,180 -on4,0,0,27,1,0,2121,5003.408960,100,3,2066.371789,hintandextended,lora,180 -on11,0,0,24,1,0,555,4321.998720,100,0,1754.400102,hintandextended,lora,180 -on10,0,0,24,1,0,1439,4481.005120,100,0,1857.042662,hintandextended,lora,180 -on3,0,0,24,1,0,369,4320.001280,100,0,1753.600717,hintandextended,lora,180 -on7,0,0,24,1,0,1260,4320.001280,100,0,1753.600717,hintandextended,lora,180 -on4,0,0,26,1,0,589,4682.200000,101,3,1905.248000,hintandextended,lora,180 -on10,0,0,24,1,0,2801,4402.001280,101,0,1815.040717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4886.614080,101,0,2361.144090,hintandextended,lora,180 -on7,0,0,26,1,0,993,4824.005120,101,2,2048.002662,hintandextended,lora,180 -on3,0,0,24,1,0,73,4374.001280,101,0,1803.584717,hintandextended,lora,180 -on9,0,0,24,1,0,360,4351.000000,101,1,1815.600410,hintandextended,lora,180 -on1,0,0,25,1,0,49,4533.603840,101,1,1925.778150,hintandextended,lora,180 -on6,0,0,26,1,0,880,4765.201280,101,3,2047.936307,hintandextended,lora,180 -on8,0,0,26,1,0,874,4820.003840,101,2,1953.601741,hintandextended,lora,180 -on5,0,0,25,1,0,353,4501.001280,101,1,1835.120717,hintandextended,lora,180 -on11,0,0,24,1,0,263,4385.001280,101,0,1831.600717,hintandextended,lora,180 -on2,0,0,25,1,0,896,4503.000000,101,1,1865.200205,hintandextended,lora,180 -on8,0,0,28,1,0,2975,5042.800000,102,4,2131.807386,hintandextended,lora,180 -on6,0,0,24,1,0,653,4474.000000,102,1,1815.200205,hintandextended,lora,180 -on4,0,0,26,1,0,2371,4821.903840,102,2,1987.338150,hintandextended,lora,180 -on10,0,0,26,1,0,2912,4823.900000,102,2,1984.408410,hintandextended,lora,180 -on7,0,0,24,1,0,2813,4496.200000,102,1,1862.160000,hintandextended,lora,180 -on3,0,0,24,1,0,2554,4335.996160,102,0,1776.158874,hintandextended,lora,180 -on2,0,0,24,1,0,2290,4436.001280,102,1,1800.000717,hintandextended,lora,180 -on1,0,0,24,1,0,1980,4322.000000,102,0,1785.728000,hintandextended,lora,180 -on5,0,0,24,1,0,464,4405.002560,102,0,1792.721638,hintandextended,lora,180 -on0,1,11,24,0,0,0,4760.210240,102,0,2264.117939,hintandextended,lora,180 -on11,0,0,25,1,0,2340,4501.197440,102,1,1826.079386,hintandextended,lora,180 -on9,0,0,26,1,0,2637,4682.600000,102,2,1934.463386,hintandextended,lora,180 -on9,0,0,24,0,0,4320,4320.000000,103,0,1728.000000,hintandextended,lora,180 -on7,0,0,24,1,0,2080,4400.001280,103,0,1785.600717,hintandextended,lora,180 -on1,0,0,26,1,0,841,4687.297440,103,2,1982.071386,hintandextended,lora,180 -on5,0,0,23,1,0,529,4432.001280,103,0,1905.345126,hintandextended,lora,180 -on2,0,0,26,1,0,814,4820.007680,103,2,1953.603686,hintandextended,lora,180 -on4,0,0,25,1,0,1103,4502.301280,103,1,1887.160717,hintandextended,lora,180 -on0,1,10,24,0,0,0,4614.608960,103,0,2328.181018,hintandextended,lora,180 -on8,0,0,25,1,0,692,4503.996160,103,1,1837.598669,hintandextended,lora,180 -on3,0,0,25,1,0,991,4502.301280,103,1,1895.800717,hintandextended,lora,180 -on6,0,0,24,1,0,1800,4321.000000,103,0,1757.200000,hintandextended,lora,180 -on10,0,0,25,1,0,883,4507.201280,103,1,1951.521331,hintandextended,lora,180 -on11,0,0,25,1,0,404,4526.603840,103,1,1882.850150,hintandextended,lora,180 -on5,0,0,25,1,0,1800,4503.601280,104,1,1884.369126,hintandextended,lora,180 -on3,0,0,25,1,0,537,4504.000000,104,1,1870.288614,hintandextended,lora,180 -on4,0,0,25,1,0,2994,4502.000000,104,1,1843.360000,hintandextended,lora,180 -on0,1,11,24,0,0,0,5125.417920,104,0,2530.714240,hintandextended,lora,180 -on8,0,0,26,1,0,633,4823.997440,104,2,1983.839795,hintandextended,lora,180 -on7,0,0,25,1,0,696,4501.301280,104,1,1833.064512,hintandextended,lora,180 -on6,0,0,28,1,0,915,5185.802560,104,4,2200.833638,hintandextended,lora,180 -on10,0,0,24,1,0,339,4462.000000,104,0,1856.544614,hintandextended,lora,180 -on2,0,0,24,1,0,595,4355.001280,104,0,1767.600717,hintandextended,lora,180 -on11,0,0,26,1,0,412,4820.803840,104,2,1953.969946,hintandextended,lora,180 -on1,0,0,25,1,0,1080,4502.603840,104,1,1831.970355,hintandextended,lora,180 -on9,0,0,24,1,0,0,4321.001280,104,0,1782.384717,hintandextended,lora,180 -on3,0,0,26,1,0,909,4820.503840,105,2,1956.729536,hintandextended,lora,180 -on8,0,0,24,1,0,252,4372.001280,105,0,1774.400717,hintandextended,lora,180 -on6,0,0,25,1,0,453,4640.003840,105,1,1881.601741,hintandextended,lora,180 -on9,0,0,25,1,0,663,4542.500000,105,2,1855.031795,hintandextended,lora,180 -on4,0,0,29,1,0,1170,5225.002560,105,5,2234.048205,hintandextended,lora,180 -on0,1,11,24,0,0,0,4950.016640,105,0,2264.809523,hintandextended,lora,180 -on10,0,0,25,1,0,651,4640.303840,105,1,1884.201741,hintandextended,lora,180 -on1,0,0,28,1,0,1113,5042.902560,105,4,2117.208819,hintandextended,lora,180 -on7,0,0,24,1,0,0,4322.000000,105,0,1764.608000,hintandextended,lora,180 -on5,0,0,26,1,0,484,4682.500000,105,2,1939.768000,hintandextended,lora,180 -on2,0,0,27,1,0,770,4863.400000,105,3,2041.759590,hintandextended,lora,180 -on11,0,0,27,1,0,1100,5002.200000,105,3,2055.120410,hintandextended,lora,180 -on1,0,0,25,1,0,2298,4500.001280,106,1,1825.600717,hintandextended,lora,180 -on5,0,0,24,1,0,2340,4322.000000,106,0,1786.240000,hintandextended,lora,180 -on6,0,0,25,1,0,473,4502.200000,106,1,1828.560614,hintandextended,lora,180 -on8,0,0,25,1,0,1049,4622.302560,106,2,1915.865229,hintandextended,lora,180 -on9,0,0,24,1,0,825,4406.001280,106,0,1816.384717,hintandextended,lora,180 -on2,0,0,24,1,0,35,4338.000000,106,0,1795.264410,hintandextended,lora,180 -on4,0,0,25,1,0,833,4501.000000,106,1,1829.040000,hintandextended,lora,180 -on11,0,0,25,1,0,1172,4502.300000,106,1,1863.799795,hintandextended,lora,180 -on7,0,0,25,1,0,964,4546.003840,106,1,1872.865741,hintandextended,lora,180 -on3,0,0,24,1,0,197,4327.001280,106,1,1757.424717,hintandextended,lora,180 -on10,0,0,26,1,0,1353,4824.603840,106,2,2041.154355,hintandextended,lora,180 -on0,1,11,24,0,0,0,4600.607680,106,0,2223.380506,hintandextended,lora,180 -on1,0,0,25,1,0,1027,4608.603840,107,1,1897.569946,hintandextended,lora,180 -on0,1,10,24,0,0,0,4600.607680,107,0,2273.620301,hintandextended,lora,180 -on8,0,0,24,1,0,1068,4470.001280,107,0,1859.104922,hintandextended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,hintandextended,lora,180 -on6,0,0,25,1,0,1138,4542.002560,107,1,1900.385434,hintandextended,lora,180 -on5,0,0,26,1,0,1516,4680.301280,107,2,1901.128512,hintandextended,lora,180 -on2,0,0,26,1,0,3358,4681.301280,107,2,1926.600512,hintandextended,lora,180 -on11,0,0,25,1,0,1248,4502.005120,107,1,1858.082458,hintandextended,lora,180 -on7,0,0,24,1,0,3991,4331.001280,107,0,1758.000717,hintandextended,lora,180 -on3,0,0,24,1,0,484,4424.001280,107,0,1795.200717,hintandextended,lora,180 -on9,0,0,25,1,0,3146,4501.301280,107,1,1841.960717,hintandextended,lora,180 -on4,0,0,25,1,0,1616,4504.202560,107,1,1893.265843,hintandextended,lora,180 -on7,0,0,26,1,0,746,4682.703840,108,2,1933.673331,hintandextended,lora,180 -on6,0,0,24,1,0,243,4363.001280,108,0,1770.800717,hintandextended,lora,180 -on4,0,0,25,1,0,231,4535.601280,108,1,1873.873536,hintandextended,lora,180 -on2,0,0,24,1,0,1620,4320.001280,108,0,1753.600717,hintandextended,lora,180 -on11,0,0,26,1,0,739,4821.906400,108,2,1973.594970,hintandextended,lora,180 -on1,0,0,24,1,0,901,4482.005120,108,1,1874.626253,hintandextended,lora,180 -on3,0,0,24,1,0,1360,4400.001280,108,0,1785.600717,hintandextended,lora,180 -on5,0,0,26,1,0,925,4862.800000,108,3,2051.856000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.810240,108,0,2291.973734,hintandextended,lora,180 -on10,0,0,24,1,0,384,4324.801280,108,0,1755.520717,hintandextended,lora,180 -on9,0,0,27,1,0,1448,4862.201280,108,3,2062.800307,hintandextended,lora,180 -on8,0,0,24,1,0,1086,4321.998720,108,0,1756.639693,hintandextended,lora,180 -on7,0,0,25,1,0,293,4501.000000,109,1,1829.103795,hintandextended,lora,180 -on11,0,0,27,1,0,944,4862.802560,109,3,2028.401024,hintandextended,lora,180 -on10,0,0,27,1,0,1274,5004.302560,109,3,2090.041024,hintandextended,lora,180 -on2,0,0,24,1,0,101,4402.001280,109,0,1802.784717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4774.214080,109,0,2238.040090,hintandextended,lora,180 -on6,0,0,25,1,0,2119,4502.300000,109,1,1864.920000,hintandextended,lora,180 -on4,0,0,25,1,0,333,4635.602560,109,1,1887.377638,hintandextended,lora,180 -on1,0,0,26,1,0,1095,4682.900000,109,2,1974.280205,hintandextended,lora,180 -on9,0,0,26,1,0,747,4682.500000,109,2,1933.223795,hintandextended,lora,180 -on8,0,0,26,1,0,775,4821.603840,109,3,2012.481536,hintandextended,lora,180 -on3,0,0,25,1,0,360,4503.608960,109,1,1906.356403,hintandextended,lora,180 -on5,0,0,25,1,0,473,4501.000000,109,1,1829.248000,hintandextended,lora,180 -on0,1,9,24,0,0,0,4642.608960,110,0,2305.941018,hintandextended,lora,180 -on11,0,0,24,1,0,539,4481.001280,110,0,1850.160922,hintandextended,lora,180 -on6,0,0,26,1,0,1480,4681.302560,110,2,1929.961229,hintandextended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,hintandextended,lora,180 -on5,0,0,25,1,0,1537,4640.003840,110,1,1881.601741,hintandextended,lora,180 -on4,0,0,24,1,0,1316,4358.001280,110,0,1804.480922,hintandextended,lora,180 -on3,0,0,24,1,0,27,4328.001280,110,0,1756.801126,hintandextended,lora,180 -on10,0,0,24,1,0,332,4456.005120,110,0,1848.962458,hintandextended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,hintandextended,lora,180 -on7,0,0,24,1,0,900,4323.997440,110,0,1816.863386,hintandextended,lora,180 -on1,0,0,27,1,0,1753,4861.802560,110,3,2028.177638,hintandextended,lora,180 -on9,0,0,25,1,0,342,4645.603840,110,1,1891.890765,hintandextended,lora,180 -on0,1,11,24,0,0,0,4597.206400,111,0,2302.755789,hintandextended,lora,180 -on4,0,0,25,1,0,1440,4503.000000,111,1,1860.784410,hintandextended,lora,180 -on5,0,0,26,1,0,2074,4824.601280,111,2,2009.153331,hintandextended,lora,180 -on10,0,0,24,1,0,1120,4341.000000,111,0,1762.000410,hintandextended,lora,180 -on1,0,0,25,1,0,2364,4501.301280,111,1,1861.704512,hintandextended,lora,180 -on11,0,0,24,1,0,459,4402.994880,111,0,1815.182771,hintandextended,lora,180 -on9,0,0,25,1,0,3521,4501.300000,111,1,1832.520000,hintandextended,lora,180 -on8,0,0,25,1,0,2689,4502.300000,111,1,1869.880410,hintandextended,lora,180 -on3,0,0,25,1,0,3399,4501.001280,111,1,1846.224717,hintandextended,lora,180 -on2,0,0,24,1,0,1260,4476.601280,111,1,1837.729331,hintandextended,lora,180 -on6,0,0,26,1,0,2238,4682.598720,111,2,1939.855693,hintandextended,lora,180 -on7,0,0,24,1,0,1971,4472.003840,111,0,1839.681946,hintandextended,lora,180 -on2,0,0,25,1,0,1373,4502.201280,112,1,1864.208922,hintandextended,lora,180 -on0,1,9,24,0,0,0,4639.810240,112,0,2342.453734,hintandextended,lora,180 -on11,0,0,26,1,0,1714,4827.601280,112,2,2044.705126,hintandextended,lora,180 -on9,0,0,24,1,0,37,4338.000000,112,0,1760.800410,hintandextended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,hintandextended,lora,180 -on8,0,0,26,1,0,1386,4824.607680,112,2,2043.076096,hintandextended,lora,180 -on1,0,0,24,1,0,1328,4368.002560,112,0,1772.801434,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,hintandextended,lora,180 -on3,0,0,24,1,0,1626,4481.300000,112,1,1845.832000,hintandextended,lora,180 -on5,0,0,26,1,0,1722,4681.801280,112,2,1928.320922,hintandextended,lora,180 -on7,0,0,25,1,0,900,4503.601280,112,1,1855.473536,hintandextended,lora,180 -on10,0,0,25,1,0,3032,4500.201280,112,1,1825.680717,hintandextended,lora,180 -on10,0,0,26,1,0,2082,4823.900000,113,2,2021.608410,hintandextended,lora,180 -on2,0,0,25,1,0,935,4502.600000,113,1,1905.360205,hintandextended,lora,180 -on3,0,0,24,1,0,2700,4321.000000,113,0,1757.200000,hintandextended,lora,180 -on5,0,0,24,1,0,1800,4321.000000,113,0,1757.040000,hintandextended,lora,180 -on1,0,0,24,1,0,677,4439.997440,113,0,1801.599795,hintandextended,lora,180 -on6,0,0,24,1,0,784,4364.001280,113,0,1771.200717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4827.211520,113,0,2300.518451,hintandextended,lora,180 -on4,0,0,24,1,0,900,4321.000000,113,0,1756.944000,hintandextended,lora,180 -on9,0,0,24,1,0,2348,4322.000000,113,0,1777.663795,hintandextended,lora,180 -on8,0,0,24,1,0,2055,4375.001280,113,0,1775.600717,hintandextended,lora,180 -on7,0,0,24,1,0,2233,4374.001280,113,0,1803.840717,hintandextended,lora,180 -on11,0,0,27,1,0,2457,5003.503840,113,3,2121.609946,hintandextended,lora,180 -on2,0,0,25,1,0,1062,4502.000000,114,1,1852.480000,hintandextended,lora,180 -on5,0,0,25,1,0,474,4501.000000,114,1,1829.248000,hintandextended,lora,180 -on7,0,0,25,1,0,180,4502.000000,114,1,1854.320000,hintandextended,lora,180 -on9,0,0,26,1,0,593,4682.500000,114,2,1933.111795,hintandextended,lora,180 -on6,0,0,25,1,0,633,4640.203840,114,1,1881.681741,hintandextended,lora,180 -on8,0,0,24,1,0,87,4387.001280,114,0,1780.400717,hintandextended,lora,180 -on11,0,0,28,1,0,963,5043.100000,114,4,2124.983590,hintandextended,lora,180 -on10,0,0,25,1,0,1025,4867.203840,114,3,2054.833946,hintandextended,lora,180 -on3,0,0,26,1,0,879,4821.807680,114,2,2000.771277,hintandextended,lora,180 -on1,0,0,25,1,0,836,4501.000000,114,1,1829.039795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4923.219200,114,0,2254.282957,hintandextended,lora,180 -on4,0,0,26,1,0,866,4822.003840,114,2,1985.825331,hintandextended,lora,180 -on1,0,0,25,1,0,678,4501.000000,115,1,1829.040000,hintandextended,lora,180 -on4,0,0,25,1,0,335,4501.200000,115,1,1829.183795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4783.814080,115,0,2233.816090,hintandextended,lora,180 -on10,0,0,26,1,0,927,4681.901280,115,2,1976.472512,hintandextended,lora,180 -on5,0,0,26,1,0,493,4821.603840,115,2,1982.881946,hintandextended,lora,180 -on2,0,0,25,1,0,1193,4501.001280,115,1,1854.384717,hintandextended,lora,180 -on8,0,0,26,1,0,994,4824.603840,115,2,1996.881741,hintandextended,lora,180 -on11,0,0,25,1,0,0,4502.601280,115,1,1855.169126,hintandextended,lora,180 -on6,0,0,25,1,0,682,4624.000000,115,1,1903.328410,hintandextended,lora,180 -on3,0,0,25,1,0,856,4502.300000,115,1,1846.423590,hintandextended,lora,180 -on9,0,0,25,1,0,776,4501.300000,115,1,1838.439795,hintandextended,lora,180 -on7,0,0,25,1,0,1607,4501.000000,115,1,1829.200000,hintandextended,lora,180 -on4,0,0,25,1,0,633,4745.603840,116,2,1970.833946,hintandextended,lora,180 -on8,0,0,24,1,0,3370,4430.001280,116,0,1797.600717,hintandextended,lora,180 -on5,0,0,24,1,0,1080,4320.001280,116,0,1753.600717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4839.210240,116,0,2439.493939,hintandextended,lora,180 -on2,0,0,24,1,0,180,4323.997440,116,0,1786.559386,hintandextended,lora,180 -on1,0,0,24,1,0,884,4464.001280,116,0,1811.200717,hintandextended,lora,180 -on11,0,0,24,1,0,1807,4322.000000,116,0,1783.040410,hintandextended,lora,180 -on6,0,0,23,1,0,68,4296.001280,116,0,1744.000717,hintandextended,lora,180 -on3,0,0,24,1,0,633,4434.400000,116,1,1827.840819,hintandextended,lora,180 -on10,0,0,25,1,0,2455,4500.301280,116,1,1836.120717,hintandextended,lora,180 -on7,0,0,24,1,0,463,4405.998720,116,0,1816.640102,hintandextended,lora,180 -on9,0,0,24,1,0,49,4385.602560,116,1,1801.073638,hintandextended,lora,180 -on8,0,0,24,1,0,84,4384.001280,117,0,1779.200717,hintandextended,lora,180 -on11,0,0,24,1,0,704,4464.996160,117,0,1811.598874,hintandextended,lora,180 -on5,0,0,24,1,0,1260,4322.000000,117,0,1782.624410,hintandextended,lora,180 -on2,0,0,24,1,0,180,4321.002560,117,0,1763.441638,hintandextended,lora,180 -on4,0,0,24,1,0,1594,4454.001280,117,0,1807.200717,hintandextended,lora,180 -on1,0,0,26,1,0,2907,4681.600000,117,2,1932.863590,hintandextended,lora,180 -on0,1,11,24,0,0,0,4819.210240,117,0,2336.997939,hintandextended,lora,180 -on10,0,0,27,1,0,3101,5002.203840,117,3,2052.913536,hintandextended,lora,180 -on3,0,0,25,1,0,1620,4502.998720,117,1,1858.111693,hintandextended,lora,180 -on9,0,0,26,1,0,2883,4682.200000,117,3,1986.767386,hintandextended,lora,180 -on6,0,0,24,1,0,900,4321.998720,117,0,1757.599693,hintandextended,lora,180 -on7,0,0,24,1,0,2678,4441.300000,117,1,1827.800000,hintandextended,lora,180 -on2,0,0,24,1,0,3971,4320.000000,118,0,1753.600205,hintandextended,lora,180 -on6,0,0,26,1,0,846,4682.200000,118,2,1901.888205,hintandextended,lora,180 -on4,0,0,28,1,0,868,5044.800000,118,4,2176.366771,hintandextended,lora,180 -on10,0,0,25,1,0,0,4501.005120,118,1,1828.898253,hintandextended,lora,180 -on8,0,0,27,1,0,1238,4971.300000,118,4,2109.816205,hintandextended,lora,180 -on11,0,0,26,1,0,443,4684.903840,118,2,1962.953741,hintandextended,lora,180 -on9,0,0,24,1,0,698,4461.002560,118,0,1824.401638,hintandextended,lora,180 -on7,0,0,24,1,0,4174,4334.000000,118,0,1759.200000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4745.610240,118,0,2335.301734,hintandextended,lora,180 -on5,0,0,25,1,0,814,4643.002560,118,2,1892.561843,hintandextended,lora,180 -on1,0,0,25,1,0,380,4502.300000,118,1,1855.864000,hintandextended,lora,180 -on3,0,0,24,1,0,267,4389.003840,118,0,1809.842150,hintandextended,lora,180 -on4,0,0,24,1,0,962,4364.003840,119,0,1809.442560,hintandextended,lora,180 -on8,0,0,25,1,0,361,4775.297440,119,2,2025.992000,hintandextended,lora,180 -on2,0,0,25,1,0,1005,4587.602560,119,1,1860.690048,hintandextended,lora,180 -on9,0,0,24,1,0,1080,4320.001280,119,0,1753.600717,hintandextended,lora,180 -on5,0,0,24,1,0,611,4374.998720,119,0,1823.280307,hintandextended,lora,180 -on6,0,0,24,1,0,39,4340.001280,119,0,1776.768717,hintandextended,lora,180 -on7,0,0,25,1,0,465,4576.998720,119,2,1871.599693,hintandextended,lora,180 -on0,1,11,24,0,0,0,4777.212800,119,0,2424.039168,hintandextended,lora,180 -on11,0,0,25,1,0,3600,4500.001280,119,1,1825.600717,hintandextended,lora,180 -on10,0,0,24,1,0,254,4377.000000,119,0,1813.264410,hintandextended,lora,180 -on3,0,0,27,1,0,794,5003.902560,119,3,2074.409638,hintandextended,lora,180 -on1,0,0,24,1,0,2384,4344.001280,119,0,1763.200717,hintandextended,lora,180 -on2,0,0,25,1,0,2136,4501.000000,120,1,1829.200000,hintandextended,lora,180 -on11,0,0,26,1,0,767,4898.203840,120,3,2088.353741,hintandextended,lora,180 -on10,0,0,24,1,0,286,4408.001280,120,0,1818.720717,hintandextended,lora,180 -on5,0,0,25,1,0,215,4517.000000,120,1,1860.784614,hintandextended,lora,180 -on8,0,0,26,1,0,796,4682.301280,120,2,1939.272717,hintandextended,lora,180 -on7,0,0,25,1,0,867,4641.202560,120,1,1882.081434,hintandextended,lora,180 -on9,0,0,24,1,0,601,4364.001280,120,0,1856.320922,hintandextended,lora,180 -on3,0,0,25,1,0,778,4502.301280,120,1,1884.920922,hintandextended,lora,180 -on1,0,0,24,1,0,0,4323.002560,120,0,1822.769638,hintandextended,lora,180 -on6,0,0,26,1,0,618,4681.000000,120,2,1901.200000,hintandextended,lora,180 -on4,0,0,25,1,0,1914,4501.201280,120,1,1854.464717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4795.612800,120,0,2271.303373,hintandextended,lora,180 -on8,0,0,24,1,0,631,4356.298720,121,1,1773.719693,hintandextended,lora,180 -on11,0,0,25,1,0,281,4503.001280,121,1,1883.920922,hintandextended,lora,180 -on1,0,0,24,1,0,1175,4452.001280,121,1,1834.880717,hintandextended,lora,180 -on2,0,0,24,1,0,1754,4435.001280,121,0,1828.240717,hintandextended,lora,180 -on3,0,0,26,1,0,1740,4820.603840,121,2,1954.097946,hintandextended,lora,180 -on7,0,0,26,1,0,1078,4823.903840,121,2,2015.657946,hintandextended,lora,180 -on10,0,0,25,1,0,1588,4502.000000,121,1,1858.143795,hintandextended,lora,180 -on6,0,0,24,1,0,0,4323.996160,121,0,1778.846874,hintandextended,lora,180 -on9,0,0,25,1,0,1316,4502.300000,121,1,1876.920205,hintandextended,lora,180 -on5,0,0,26,1,0,666,4681.301280,121,2,1905.704512,hintandextended,lora,180 -on0,1,11,24,0,0,0,4697.208960,121,0,2182.437222,hintandextended,lora,180 -on4,0,0,25,1,0,518,4501.000000,121,1,1829.408000,hintandextended,lora,180 -on4,0,0,25,1,0,2814,4501.001280,122,1,1854.640717,hintandextended,lora,180 -on2,0,0,25,1,0,2520,4502.601280,122,1,1832.513126,hintandextended,lora,180 -on0,1,11,24,0,0,0,4851.811520,122,0,2484.694451,hintandextended,lora,180 -on7,0,0,25,1,0,892,4501.001280,122,1,1833.520717,hintandextended,lora,180 -on5,0,0,24,1,0,137,4441.002560,122,0,1864.690048,hintandextended,lora,180 -on1,0,0,24,1,0,3060,4321.000000,122,0,1757.200000,hintandextended,lora,180 -on9,0,0,26,1,0,813,4823.603840,122,2,1999.153946,hintandextended,lora,180 -on10,0,0,25,1,0,363,4504.603840,122,1,1878.594355,hintandextended,lora,180 -on11,0,0,25,1,0,293,4500.201280,122,1,1825.680717,hintandextended,lora,180 -on3,0,0,24,1,0,360,4325.001280,122,0,1820.624922,hintandextended,lora,180 -on8,0,0,25,1,0,1767,4500.998720,122,1,1825.999898,hintandextended,lora,180 -on6,0,0,24,1,0,898,4479.000000,122,0,1817.200410,hintandextended,lora,180 -on8,0,0,24,1,0,344,4464.002560,123,0,1811.201434,hintandextended,lora,180 -on11,0,0,26,1,0,2874,4821.903840,123,2,1998.889741,hintandextended,lora,180 -on3,0,0,24,1,0,0,4320.001280,123,0,1753.600717,hintandextended,lora,180 -on2,0,0,24,1,0,918,4322.002560,123,0,1782.785638,hintandextended,lora,180 -on7,0,0,25,1,0,2634,4501.000000,123,1,1829.040000,hintandextended,lora,180 -on1,0,0,25,1,0,2465,4502.000000,123,1,1857.984000,hintandextended,lora,180 -on9,0,0,25,1,0,720,4500.610240,123,1,1825.892915,hintandextended,lora,180 -on5,0,0,25,1,0,1733,4502.198720,123,1,1834.223898,hintandextended,lora,180 -on6,0,0,26,1,0,2859,4683.500000,123,2,1943.863590,hintandextended,lora,180 -on4,0,0,24,1,0,1495,4356.005120,123,0,1785.346458,hintandextended,lora,180 -on10,0,0,24,1,0,1271,4321.000000,123,0,1770.159795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4544.207680,123,0,2175.316301,hintandextended,lora,180 -on1,0,0,26,1,0,458,4820.003840,124,2,1953.601741,hintandextended,lora,180 -on2,0,0,24,1,0,329,4422.000000,124,1,1813.600000,hintandextended,lora,180 -on11,0,0,27,1,0,661,4863.200000,124,3,1980.895386,hintandextended,lora,180 -on5,0,0,27,1,0,1091,4862.200000,124,3,2016.143386,hintandextended,lora,180 -on10,0,0,27,1,0,908,4862.600000,124,3,2008.399590,hintandextended,lora,180 -on9,0,0,25,1,0,581,4640.006400,124,1,1881.970970,hintandextended,lora,180 -on6,0,0,27,1,0,1212,4864.002560,124,3,2041.873024,hintandextended,lora,180 -on8,0,0,24,1,0,0,4321.000000,124,0,1754.384205,hintandextended,lora,180 -on3,0,0,25,1,0,1071,4797.700000,124,3,1948.136205,hintandextended,lora,180 -on7,0,0,26,1,0,796,4820.603840,124,2,1985.729536,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.015360,124,0,2238.888806,hintandextended,lora,180 -on4,0,0,24,1,0,113,4418.200000,124,1,1839.872000,hintandextended,lora,180 -on6,0,0,24,1,0,32,4333.001280,125,0,1765.584717,hintandextended,lora,180 -on2,0,0,25,1,0,633,4672.003840,125,2,1894.401741,hintandextended,lora,180 -on8,0,0,26,1,0,759,4682.401280,125,2,1902.384922,hintandextended,lora,180 -on3,0,0,25,1,0,794,4502.300000,125,1,1875.223590,hintandextended,lora,180 -on7,0,0,25,1,0,73,4554.600000,125,1,1847.488614,hintandextended,lora,180 -on9,0,0,26,1,0,813,4682.300000,125,2,1909.079795,hintandextended,lora,180 -on5,0,0,26,1,0,453,4681.500000,125,2,1904.439795,hintandextended,lora,180 -on1,0,0,24,1,0,345,4466.001280,125,0,1812.544717,hintandextended,lora,180 -on10,0,0,26,1,0,1014,4760.200000,125,2,1972.448614,hintandextended,lora,180 -on11,0,0,24,1,0,1758,4439.001280,125,0,1829.840717,hintandextended,lora,180 -on4,0,0,26,1,0,678,4822.300000,125,2,2004.504000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4881.215360,125,0,2269.320806,hintandextended,lora,180 -on9,0,0,25,1,0,787,4551.000000,126,1,1862.593024,hintandextended,lora,180 -on11,0,0,25,1,0,2304,4500.002560,126,2,1825.809434,hintandextended,lora,180 -on8,0,0,26,1,0,3400,4820.903840,126,2,1968.921946,hintandextended,lora,180 -on10,0,0,24,1,0,1756,4436.001280,126,0,1800.000717,hintandextended,lora,180 -on1,0,0,25,1,0,3533,4501.000000,126,1,1829.200000,hintandextended,lora,180 -on7,0,0,24,1,0,540,4323.001280,126,0,1819.760717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4606.608960,126,0,2314.357222,hintandextended,lora,180 -on6,0,0,24,1,0,842,4434.402560,126,1,1827.745434,hintandextended,lora,180 -on3,0,0,24,1,0,370,4321.998720,126,0,1754.400102,hintandextended,lora,180 -on2,0,0,24,1,0,927,4329.000000,126,0,1785.840410,hintandextended,lora,180 -on5,0,0,26,1,0,1191,4683.602560,126,2,1997.665434,hintandextended,lora,180 -on4,0,0,24,1,0,3158,4348.300000,126,1,1804.327795,hintandextended,lora,180 -on4,0,0,24,1,0,0,4322.000000,127,0,1771.007795,hintandextended,lora,180 -on0,1,10,24,0,0,0,4721.208960,127,0,2392.677018,hintandextended,lora,180 -on9,0,0,26,1,0,566,4683.298720,127,2,1922.599898,hintandextended,lora,180 -on8,0,0,24,1,0,1131,4353.998720,127,0,1778.720307,hintandextended,lora,180 -on11,0,0,24,1,0,673,4435.998720,127,0,1856.160102,hintandextended,lora,180 -on10,0,0,25,1,0,111,4593.600000,127,1,1869.968819,hintandextended,lora,180 -on2,0,0,25,1,0,294,4505.993600,127,1,1832.206259,hintandextended,lora,180 -on1,0,0,25,1,0,935,4517.600000,127,1,1861.328614,hintandextended,lora,180 -on7,0,0,24,1,0,1440,4321.001280,127,0,1754.001126,hintandextended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,127,0,1728.000000,hintandextended,lora,180 -on5,0,0,25,1,0,1013,4502.200000,127,1,1857.744000,hintandextended,lora,180 -on6,0,0,24,1,0,774,4357.001280,127,0,1816.145126,hintandextended,lora,180 -on1,0,0,26,1,0,1459,4821.203840,128,2,1967.569946,hintandextended,lora,180 -on7,0,0,24,1,0,435,4375.001280,128,0,1775.600717,hintandextended,lora,180 -on11,0,0,26,1,0,936,4681.901280,128,2,1974.264512,hintandextended,lora,180 -on6,0,0,24,1,0,0,4322.000000,128,0,1771.104000,hintandextended,lora,180 -on3,0,0,24,1,0,1404,4444.001280,128,0,1803.200717,hintandextended,lora,180 -on8,0,0,24,1,0,1572,4432.001280,128,0,1798.400717,hintandextended,lora,180 -on5,0,0,24,1,0,960,4360.001280,128,0,1769.600717,hintandextended,lora,180 -on4,0,0,26,1,0,485,4757.996160,128,2,1946.942464,hintandextended,lora,180 -on9,0,0,26,1,0,765,4682.301280,128,2,1942.424512,hintandextended,lora,180 -on10,0,0,24,1,0,528,4350.002560,128,1,1768.801024,hintandextended,lora,180 -on2,0,0,25,1,0,131,4501.206400,128,1,1854.466970,hintandextended,lora,180 -on0,1,11,24,0,0,0,4717.608960,128,0,2184.741222,hintandextended,lora,180 -on1,0,0,27,1,0,907,4863.597440,129,3,2009.118566,hintandextended,lora,180 -on0,1,11,24,0,0,0,4998.216640,129,0,2337.881318,hintandextended,lora,180 -on4,0,0,25,1,0,535,4501.200000,129,1,1829.120000,hintandextended,lora,180 -on7,0,0,26,1,0,814,4821.000000,129,2,1954.000410,hintandextended,lora,180 -on11,0,0,25,1,0,789,4502.300000,129,1,1876.023590,hintandextended,lora,180 -on6,0,0,25,1,0,69,4551.606400,129,1,1877.619379,hintandextended,lora,180 -on3,0,0,24,1,0,313,4434.001280,129,0,1827.584717,hintandextended,lora,180 -on10,0,0,24,1,0,16,4322.996160,129,0,1783.982464,hintandextended,lora,180 -on5,0,0,24,1,0,1620,4320.001280,129,0,1753.600717,hintandextended,lora,180 -on8,0,0,26,1,0,633,4823.202560,129,2,2008.753434,hintandextended,lora,180 -on2,0,0,25,1,0,1001,4584.603840,129,1,1945.409946,hintandextended,lora,180 -on9,0,0,26,1,0,766,4681.802560,129,2,1905.825229,hintandextended,lora,180 -on8,0,0,26,1,0,833,4682.501280,130,3,1931.624307,hintandextended,lora,180 -on3,0,0,27,1,0,708,4862.101280,130,3,2008.776307,hintandextended,lora,180 -on11,0,0,24,1,0,226,4467.998720,130,1,1826.191693,hintandextended,lora,180 -on9,0,0,24,1,0,280,4401.003840,130,0,1786.001741,hintandextended,lora,180 -on7,0,0,24,1,0,0,4321.400000,130,0,1757.200000,hintandextended,lora,180 -on6,0,0,26,1,0,809,4820.705120,130,2,1983.098253,hintandextended,lora,180 -on10,0,0,25,1,0,821,4780.903840,130,2,1969.369741,hintandextended,lora,180 -on4,0,0,25,1,0,560,4641.303840,130,1,1929.513741,hintandextended,lora,180 -on5,0,0,23,1,0,419,4330.001280,130,0,1757.600717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4958.616640,130,0,2297.145523,hintandextended,lora,180 -on1,0,0,24,1,0,1439,4479.001280,130,0,1817.200717,hintandextended,lora,180 -on2,0,0,29,1,0,942,5223.205120,130,5,2240.769843,hintandextended,lora,180 -on4,0,0,24,1,0,1022,4476.300000,131,1,1893.240614,hintandextended,lora,180 -on7,0,0,27,1,0,987,4864.100000,131,3,2056.520410,hintandextended,lora,180 -on1,0,0,25,1,0,256,4560.001280,131,1,1891.777331,hintandextended,lora,180 -on5,0,0,24,1,0,1412,4453.000000,131,0,1806.800410,hintandextended,lora,180 -on11,0,0,25,1,0,518,4505.196160,131,1,1845.166874,hintandextended,lora,180 -on8,0,0,26,1,0,825,4683.405120,131,2,1945.314253,hintandextended,lora,180 -on9,0,0,24,1,0,303,4424.003840,131,0,1795.841946,hintandextended,lora,180 -on6,0,0,27,1,0,908,5005.102560,131,3,2061.929229,hintandextended,lora,180 -on3,0,0,25,1,0,4254,4500.000000,131,1,1825.600000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4895.612800,131,0,2504.423168,hintandextended,lora,180 -on2,0,0,25,1,0,639,4643.303840,131,1,1961.322150,hintandextended,lora,180 -on10,0,0,25,1,0,663,4587.500000,131,2,1892.600000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4792.812800,132,0,2237.255373,hintandextended,lora,180 -on4,0,0,24,1,0,0,4321.000000,132,0,1756.944000,hintandextended,lora,180 -on5,0,0,26,1,0,947,4683.603840,132,2,1974.625331,hintandextended,lora,180 -on9,0,0,24,1,0,757,4337.001280,132,0,1760.400717,hintandextended,lora,180 -on11,0,0,24,1,0,1339,4380.001280,132,0,1800.480717,hintandextended,lora,180 -on7,0,0,25,1,0,319,4620.600000,132,1,1873.888614,hintandextended,lora,180 -on2,0,0,26,1,0,1706,4681.500000,132,2,1904.599795,hintandextended,lora,180 -on6,0,0,24,1,0,627,4388.001280,132,0,1807.744717,hintandextended,lora,180 -on10,0,0,23,1,0,318,4264.000000,132,1,1734.400000,hintandextended,lora,180 -on1,0,0,26,1,0,583,4822.900000,132,2,2002.168410,hintandextended,lora,180 -on3,0,0,26,1,0,931,4823.902560,132,2,2032.873229,hintandextended,lora,180 -on8,0,0,25,1,0,149,4502.201280,132,1,1845.488307,hintandextended,lora,180 -on1,0,0,24,1,0,58,4358.001280,133,0,1768.800717,hintandextended,lora,180 -on10,0,0,24,1,0,579,4322.300000,133,1,1779.320410,hintandextended,lora,180 -on5,0,0,24,1,0,123,4484.603840,133,1,1894.722560,hintandextended,lora,180 -on8,0,0,26,1,0,993,4822.602560,133,2,1955.969843,hintandextended,lora,180 -on7,0,0,24,1,0,360,4323.000000,133,0,1784.880410,hintandextended,lora,180 -on3,0,0,24,1,0,1260,4322.998720,133,0,1783.440102,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,133,0,1728.000000,hintandextended,lora,180 -on11,0,0,24,1,0,1904,4405.001280,133,0,1816.240717,hintandextended,lora,180 -on6,0,0,24,1,0,205,4341.002560,133,1,1780.241638,hintandextended,lora,180 -on0,1,10,24,0,0,0,4789.210240,133,0,2410.757734,hintandextended,lora,180 -on9,0,0,25,1,0,758,4504.298720,133,1,1881.431693,hintandextended,lora,180 -on2,0,0,25,1,0,3372,4500.001280,133,1,1825.600717,hintandextended,lora,180 -on10,0,0,25,1,0,3461,4501.300000,134,1,1851.560000,hintandextended,lora,180 -on7,0,0,25,1,0,1733,4501.000000,134,1,1829.040000,hintandextended,lora,180 -on1,0,0,25,1,0,1815,4502.298720,134,1,1855.863283,hintandextended,lora,180 -on11,0,0,24,1,0,180,4323.001280,134,0,1793.904922,hintandextended,lora,180 -on6,0,0,24,1,0,720,4320.005120,134,0,1753.602458,hintandextended,lora,180 -on2,0,0,24,1,0,1341,4382.001280,134,0,1785.280922,hintandextended,lora,180 -on9,0,0,25,1,0,514,4500.002560,134,1,1825.601434,hintandextended,lora,180 -on5,0,0,24,1,0,1080,4322.996160,134,0,1793.103078,hintandextended,lora,180 -on3,0,0,25,1,0,337,4502.002560,134,1,1883.265434,hintandextended,lora,180 -on8,0,0,25,1,0,2319,4558.300000,134,2,1852.120000,hintandextended,lora,180 -on4,0,0,26,1,0,2234,4824.903840,134,2,2018.441536,hintandextended,lora,180 -on0,1,11,24,0,0,0,4588.606400,134,0,2255.219789,hintandextended,lora,180 -on0,1,10,24,0,0,0,4858.612800,135,0,2519.223168,hintandextended,lora,180 -on6,0,0,25,1,0,812,4647.308960,135,2,1917.484403,hintandextended,lora,180 -on11,0,0,27,1,0,1238,5003.902560,135,3,2032.809229,hintandextended,lora,180 -on3,0,0,25,1,0,993,4651.501280,135,2,1930.520512,hintandextended,lora,180 -on2,0,0,26,1,0,646,4684.200000,135,2,1957.360614,hintandextended,lora,180 -on5,0,0,26,1,0,813,4686.502560,135,2,1941.433434,hintandextended,lora,180 -on7,0,0,24,1,0,448,4389.005120,135,0,1781.202662,hintandextended,lora,180 -on10,0,0,26,1,0,654,4700.300000,135,2,1966.232410,hintandextended,lora,180 -on1,0,0,24,1,0,2160,4320.002560,135,0,1753.601434,hintandextended,lora,180 -on8,0,0,24,1,0,303,4425.001280,135,0,1843.248922,hintandextended,lora,180 -on9,0,0,25,1,0,874,4569.297440,135,2,1894.823181,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,hintandextended,lora,180 -on5,0,0,24,1,0,0,4323.001280,136,0,1798.129126,hintandextended,lora,180 -on6,0,0,24,1,0,503,4447.998720,136,0,1865.760307,hintandextended,lora,180 -on2,0,0,24,1,0,201,4472.998720,136,1,1837.439898,hintandextended,lora,180 -on11,0,0,24,0,0,4228,4320.300000,136,1,1734.456000,hintandextended,lora,180 -on10,0,0,24,1,0,720,4321.998720,136,0,1754.400102,hintandextended,lora,180 -on8,0,0,24,1,0,2336,4478.000000,136,0,1837.120410,hintandextended,lora,180 -on3,0,0,26,1,0,1569,4681.800000,136,2,1904.256205,hintandextended,lora,180 -on1,0,0,24,1,0,356,4487.605120,136,2,1820.690867,hintandextended,lora,180 -on4,0,0,26,1,0,1433,4827.100000,136,2,1997.384819,hintandextended,lora,180 -on9,0,0,24,1,0,1080,4321.000000,136,0,1756.944000,hintandextended,lora,180 -on7,0,0,25,1,0,1409,4501.200000,136,1,1829.023795,hintandextended,lora,180 -on0,1,10,24,0,0,0,4703.211520,136,0,2387.238451,hintandextended,lora,180 -on1,0,0,24,1,0,2498,4458.001280,137,0,1837.440717,hintandextended,lora,180 -on9,0,0,24,1,0,464,4457.300000,137,1,1854.376000,hintandextended,lora,180 -on8,0,0,26,1,0,640,4822.303840,137,2,1991.481946,hintandextended,lora,180 -on6,0,0,25,1,0,1235,4502.300000,137,1,1887.000000,hintandextended,lora,180 -on7,0,0,25,1,0,1486,4501.001280,137,1,1832.720922,hintandextended,lora,180 -on3,0,0,25,1,0,324,4503.997440,137,1,1857.150362,hintandextended,lora,180 -on5,0,0,25,1,0,1080,4504.998720,137,1,1857.535488,hintandextended,lora,180 -on10,0,0,25,1,0,473,4593.603840,137,1,1863.041741,hintandextended,lora,180 -on0,1,11,24,0,0,0,4762.211520,137,0,2257.238656,hintandextended,lora,180 -on11,0,0,24,1,0,180,4321.000000,137,0,1756.944000,hintandextended,lora,180 -on4,0,0,24,1,0,297,4417.001280,137,0,1792.400717,hintandextended,lora,180 -on2,0,0,24,1,0,571,4558.593600,137,2,1921.357645,hintandextended,lora,180 -on10,0,0,28,1,0,1265,5043.101280,138,4,2108.792307,hintandextended,lora,180 -on7,0,0,24,1,0,491,4432.801280,138,0,1822.560922,hintandextended,lora,180 -on5,0,0,24,1,0,360,4321.998720,138,0,1757.343693,hintandextended,lora,180 -on1,0,0,25,1,0,585,4502.201280,138,1,1852.096512,hintandextended,lora,180 -on8,0,0,24,1,0,204,4325.000000,138,0,1755.600410,hintandextended,lora,180 -on4,0,0,26,1,0,1087,4820.303840,138,2,1956.761536,hintandextended,lora,180 -on3,0,0,25,1,0,1440,4501.000000,138,1,1829.152000,hintandextended,lora,180 -on9,0,0,26,1,0,1005,4682.401280,138,2,1930.512307,hintandextended,lora,180 -on2,0,0,25,1,0,1207,4502.001280,138,1,1883.680717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4830.211520,138,0,2243.958451,hintandextended,lora,180 -on11,0,0,27,1,0,1171,5003.506400,138,3,2090.074765,hintandextended,lora,180 -on6,0,0,26,1,0,846,4682.702560,138,3,1940.216819,hintandextended,lora,180 -on0,1,9,24,0,0,0,4748.608960,139,0,2405.461018,hintandextended,lora,180 -on3,0,0,25,1,0,1680,4736.603840,139,2,2008.625946,hintandextended,lora,180 -on1,0,0,26,1,0,1819,4682.298720,139,2,1924.967898,hintandextended,lora,180 -on7,0,0,24,1,0,37,4338.998720,139,0,1761.200102,hintandextended,lora,180 -on2,0,0,24,1,0,1946,4324.000000,139,1,1827.840205,hintandextended,lora,180 -on9,0,0,24,1,0,1260,4325.002560,139,0,1787.282253,hintandextended,lora,180 -on5,0,0,24,1,0,900,4322.001280,139,0,1754.401331,hintandextended,lora,180 -on10,0,0,24,1,0,762,4343.000000,139,0,1762.800410,hintandextended,lora,180 -on4,0,0,25,1,0,1435,4501.200000,139,1,1829.023795,hintandextended,lora,180 -on11,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,hintandextended,lora,180 -on6,0,0,25,1,0,1080,4502.998720,139,1,1855.024102,hintandextended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,hintandextended,lora,180 -on5,0,0,24,1,0,540,4323.001280,140,0,1803.441126,hintandextended,lora,180 -on10,0,0,24,1,0,4128,4468.001280,140,0,1812.800717,hintandextended,lora,180 -on8,0,0,25,1,0,1062,4501.001280,140,1,1835.760717,hintandextended,lora,180 -on7,0,0,24,1,0,754,4338.000000,140,0,1833.024614,hintandextended,lora,180 -on11,0,0,24,1,0,1213,4433.001280,140,0,1798.800717,hintandextended,lora,180 -on2,0,0,24,1,0,1800,4320.001280,140,0,1753.600717,hintandextended,lora,180 -on1,0,0,25,1,0,626,4500.303840,140,1,1830.041741,hintandextended,lora,180 -on3,0,0,25,1,0,356,4661.601280,140,1,1968.049536,hintandextended,lora,180 -on0,1,11,24,0,0,0,4638.606400,140,0,2371.859789,hintandextended,lora,180 -on6,0,0,24,1,0,1708,4388.001280,140,0,1780.800717,hintandextended,lora,180 -on9,0,0,24,1,0,310,4432.000000,140,0,1824.640410,hintandextended,lora,180 -on4,0,0,24,1,0,478,4420.003840,140,0,1836.002150,hintandextended,lora,180 -on6,0,0,26,1,0,555,4683.302560,141,2,1969.000819,hintandextended,lora,180 -on3,0,0,25,1,0,986,4544.500000,141,2,1885.047795,hintandextended,lora,180 -on10,0,0,25,1,0,645,4640.303840,141,1,1907.481741,hintandextended,lora,180 -on2,0,0,26,1,0,1315,4681.300000,141,2,1904.103590,hintandextended,lora,180 -on9,0,0,25,1,0,349,4503.197440,141,1,1869.806976,hintandextended,lora,180 -on7,0,0,27,1,0,1164,5001.203840,141,3,2065.889331,hintandextended,lora,180 -on1,0,0,28,1,0,1499,5042.001280,141,4,2077.648307,hintandextended,lora,180 -on0,1,11,24,0,0,0,4928.217920,141,0,2256.442240,hintandextended,lora,180 -on8,0,0,26,1,0,942,4822.005120,141,2,2006.338253,hintandextended,lora,180 -on5,0,0,28,1,0,1508,5182.405120,141,4,2129.746048,hintandextended,lora,180 -on4,0,0,26,1,0,849,4682.301280,141,2,1906.904512,hintandextended,lora,180 -on11,0,0,24,1,0,180,4330.996160,141,1,1771.390669,hintandextended,lora,180 -on1,0,0,25,1,0,113,4503.198720,142,1,1886.687488,hintandextended,lora,180 -on6,0,0,28,1,0,1212,5173.100000,142,5,2193.719181,hintandextended,lora,180 -on2,0,0,29,1,0,1035,5363.008960,142,5,2238.722970,hintandextended,lora,180 -on4,0,0,24,1,0,0,4321.000000,142,0,1757.040000,hintandextended,lora,180 -on8,0,0,28,1,0,1082,5043.102560,142,4,2109.288819,hintandextended,lora,180 -on3,0,0,26,1,0,777,4856.006400,142,3,2000.514765,hintandextended,lora,180 -on9,0,0,25,1,0,628,4640.003840,142,1,1883.249741,hintandextended,lora,180 -on7,0,0,26,1,0,463,4820.003840,142,2,1953.601741,hintandextended,lora,180 -on11,0,0,27,1,0,994,4861.900000,142,3,1986.359590,hintandextended,lora,180 -on10,0,0,25,1,0,394,4501.996160,142,1,1851.438669,hintandextended,lora,180 -on5,0,0,25,1,0,527,4501.300000,142,1,1849.063795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4985.016640,142,0,2278.809523,hintandextended,lora,180 -on1,0,0,24,0,0,4096,4449.600000,143,1,1829.855795,hintandextended,lora,180 -on7,0,0,24,1,0,900,4322.000000,143,0,1782.784410,hintandextended,lora,180 -on10,0,0,24,1,0,540,4321.598720,143,0,1777.344102,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,hintandextended,lora,180 -on9,0,0,24,1,0,511,4452.001280,143,0,1810.400922,hintandextended,lora,180 -on0,1,9,24,0,0,0,4582.607680,143,0,2302.996301,hintandextended,lora,180 -on2,0,0,24,1,0,2160,4320.001280,143,0,1753.600717,hintandextended,lora,180 -on3,0,0,25,1,0,1461,4522.600000,143,3,1868.559590,hintandextended,lora,180 -on6,0,0,24,1,0,1163,4421.394880,143,1,1822.798566,hintandextended,lora,180 -on8,0,0,25,1,0,834,4501.002560,143,1,1836.881434,hintandextended,lora,180 -on11,0,0,25,1,0,1287,4504.498720,143,1,1874.103898,hintandextended,lora,180 -on5,0,0,26,1,0,1704,4841.100000,143,3,1993.769024,hintandextended,lora,180 -on6,0,0,24,1,0,1800,4458.001280,144,1,1834.240922,hintandextended,lora,180 -on4,0,0,25,1,0,2422,4502.000000,144,1,1858.080000,hintandextended,lora,180 -on8,0,0,24,1,0,42,4344.000000,144,0,1791.840410,hintandextended,lora,180 -on9,0,0,25,1,0,2160,4501.000000,144,1,1828.896000,hintandextended,lora,180 -on3,0,0,25,1,0,952,4533.602560,144,1,1839.089638,hintandextended,lora,180 -on0,1,11,24,0,0,0,4963.816640,144,0,2385.977318,hintandextended,lora,180 -on10,0,0,25,1,0,3091,4511.603840,144,1,1830.289946,hintandextended,lora,180 -on7,0,0,25,1,0,881,4502.998720,144,1,1851.343693,hintandextended,lora,180 -on5,0,0,25,1,0,2514,4501.601280,144,1,1854.144717,hintandextended,lora,180 -on1,0,0,25,1,0,2440,4581.003840,144,1,1860.401741,hintandextended,lora,180 -on2,0,0,24,1,0,720,4321.000000,144,0,1756.944000,hintandextended,lora,180 -on11,0,0,24,1,0,2989,4410.001280,144,0,1790.880717,hintandextended,lora,180 -on10,0,0,29,1,0,1188,5361.405120,145,5,2217.409638,hintandextended,lora,180 -on3,0,0,24,1,0,32,4333.001280,145,0,1780.944717,hintandextended,lora,180 -on8,0,0,25,1,0,508,4640.803840,145,1,1881.921741,hintandextended,lora,180 -on0,1,11,24,0,0,0,5026.016640,145,0,2292.969523,hintandextended,lora,180 -on5,0,0,27,1,0,1013,5001.506400,145,3,2057.882560,hintandextended,lora,180 -on1,0,0,24,1,0,0,4321.000000,145,0,1756.784000,hintandextended,lora,180 -on6,0,0,24,1,0,584,4499.000000,145,1,1828.240000,hintandextended,lora,180 -on4,0,0,28,1,0,916,5126.805120,145,5,2165.410048,hintandextended,lora,180 -on7,0,0,25,1,0,511,4640.003840,145,1,1881.601741,hintandextended,lora,180 -on11,0,0,25,1,0,439,4622.502560,145,2,1897.689024,hintandextended,lora,180 -on9,0,0,25,1,0,125,4502.300000,145,1,1866.407795,hintandextended,lora,180 -on2,0,0,26,1,0,894,4682.301280,145,2,1932.760307,hintandextended,lora,180 -on0,1,11,24,0,0,0,5021.619200,146,0,2290.506957,hintandextended,lora,180 -on5,0,0,27,1,0,1199,4863.800000,146,3,2031.439386,hintandextended,lora,180 -on4,0,0,24,1,0,825,4406.001280,146,0,1814.240717,hintandextended,lora,180 -on10,0,0,25,1,0,862,4501.300000,146,1,1835.303590,hintandextended,lora,180 -on6,0,0,25,1,0,1134,4535.003840,146,1,1867.985741,hintandextended,lora,180 -on7,0,0,26,1,0,1174,4821.603840,146,2,1954.241741,hintandextended,lora,180 -on1,0,0,26,1,0,1481,4821.003840,146,2,1982.641741,hintandextended,lora,180 -on11,0,0,25,1,0,1221,4501.300000,146,1,1835.399795,hintandextended,lora,180 -on8,0,0,25,1,0,813,4642.003840,146,1,1939.681741,hintandextended,lora,180 -on9,0,0,24,1,0,580,4341.001280,146,0,1790.640717,hintandextended,lora,180 -on3,0,0,25,1,0,668,4608.003840,146,1,1868.801946,hintandextended,lora,180 -on2,0,0,26,1,0,1588,4682.600000,146,2,1962.319795,hintandextended,lora,180 -on4,0,0,24,1,0,327,4448.001280,147,0,1833.184717,hintandextended,lora,180 -on5,0,0,25,1,0,511,4501.998720,147,1,1829.599693,hintandextended,lora,180 -on10,0,0,25,1,0,1079,4500.301280,147,1,1825.880717,hintandextended,lora,180 -on11,0,0,24,1,0,2520,4320.001280,147,0,1753.600717,hintandextended,lora,180 -on1,0,0,25,1,0,711,4501.300000,147,1,1848.743590,hintandextended,lora,180 -on9,0,0,24,1,0,180,4321.000000,147,0,1756.944000,hintandextended,lora,180 -on6,0,0,24,1,0,2467,4427.001280,147,0,1796.400717,hintandextended,lora,180 -on7,0,0,24,1,0,1410,4450.001280,147,0,1805.600717,hintandextended,lora,180 -on2,0,0,25,1,0,438,4563.597440,147,1,1880.752205,hintandextended,lora,180 -on8,0,0,26,1,0,822,4823.103840,147,2,2012.329946,hintandextended,lora,180 -on3,0,0,25,1,0,303,4500.001280,147,1,1825.600717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4719.210240,147,0,2219.237734,hintandextended,lora,180 -on1,0,0,25,1,0,1553,4500.001280,148,1,1825.600717,hintandextended,lora,180 -on11,0,0,25,1,0,946,4644.303840,148,1,1950.874150,hintandextended,lora,180 -on4,0,0,25,1,0,642,4623.301280,148,2,1910.664717,hintandextended,lora,180 -on10,0,0,25,1,0,180,4503.992320,148,1,1853.341542,hintandextended,lora,180 -on8,0,0,24,1,0,2,4322.001280,148,0,1785.824512,hintandextended,lora,180 -on3,0,0,25,1,0,146,4627.603840,148,1,1902.194150,hintandextended,lora,180 -on6,0,0,26,1,0,750,4681.601280,148,2,1933.536512,hintandextended,lora,180 -on5,0,0,24,1,0,532,4472.001280,148,0,1814.400717,hintandextended,lora,180 -on7,0,0,27,1,0,1042,5120.503840,148,4,2184.217946,hintandextended,lora,180 -on0,1,11,24,0,0,0,4899.212800,148,0,2393.959373,hintandextended,lora,180 -on9,0,0,26,1,0,1056,4682.300000,148,2,1926.263590,hintandextended,lora,180 -on2,0,0,25,1,0,2119,4623.301280,148,3,1922.392717,hintandextended,lora,180 -on4,0,0,25,1,0,1440,4501.602560,149,1,1826.289843,hintandextended,lora,180 -on2,0,0,25,1,0,1933,4503.001280,149,1,1887.184512,hintandextended,lora,180 -on6,0,0,24,1,0,1232,4454.000000,149,0,1818.560410,hintandextended,lora,180 -on1,0,0,24,1,0,922,4474.300000,149,1,1872.184410,hintandextended,lora,180 -on3,0,0,24,1,0,765,4348.998720,149,0,1794.864307,hintandextended,lora,180 -on0,1,10,24,0,0,0,4891.814080,149,0,2467.735885,hintandextended,lora,180 -on10,0,0,26,1,0,1353,4823.202560,149,2,1994.561843,hintandextended,lora,180 -on7,0,0,24,1,0,18,4320.998720,149,0,1753.999898,hintandextended,lora,180 -on9,0,0,25,1,0,2638,4603.600000,149,3,1923.520205,hintandextended,lora,180 -on5,0,0,25,1,0,826,4588.600000,149,1,1889.568614,hintandextended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,149,0,1728.000000,hintandextended,lora,180 -on11,0,0,25,1,0,1806,4504.603840,149,1,1897.570355,hintandextended,lora,180 -on1,0,0,25,1,0,1069,4500.201280,150,1,1825.680717,hintandextended,lora,180 -on10,0,0,24,1,0,1080,4321.000000,150,0,1754.000410,hintandextended,lora,180 -on7,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,hintandextended,lora,180 -on5,0,0,24,1,0,19,4320.998720,150,0,1753.999693,hintandextended,lora,180 -on2,0,0,24,1,0,467,4408.998720,150,0,1789.200102,hintandextended,lora,180 -on6,0,0,26,1,0,1019,4823.801280,150,2,1957.777331,hintandextended,lora,180 -on0,1,10,24,0,0,0,4708.208960,150,0,2309.717018,hintandextended,lora,180 -on8,0,0,24,1,0,3134,4374.001280,150,0,1775.200717,hintandextended,lora,180 -on11,0,0,24,1,0,1419,4459.002560,150,0,1809.201434,hintandextended,lora,180 -on3,0,0,24,1,0,661,4422.001280,150,0,1822.880717,hintandextended,lora,180 -on9,0,0,25,1,0,861,4502.000000,150,1,1857.887795,hintandextended,lora,180 -on4,0,0,25,1,0,507,4629.605120,150,1,1906.130867,hintandextended,lora,180 -on7,0,0,25,1,0,360,4502.994880,151,1,1855.182566,hintandextended,lora,180 -on8,0,0,26,1,0,927,4682.500000,151,2,1933.479795,hintandextended,lora,180 -on11,0,0,25,1,0,1193,4501.000000,151,1,1829.200000,hintandextended,lora,180 -on6,0,0,24,1,0,67,4369.006400,151,0,1830.226970,hintandextended,lora,180 -on3,0,0,25,1,0,655,4501.200000,151,1,1829.120000,hintandextended,lora,180 -on5,0,0,28,1,0,1129,5043.400000,151,4,2108.799181,hintandextended,lora,180 -on2,0,0,24,1,0,1200,4428.001280,151,1,1796.800717,hintandextended,lora,180 -on10,0,0,25,1,0,168,4502.001280,151,1,1849.824922,hintandextended,lora,180 -on9,0,0,26,1,0,1245,4682.900000,151,2,1983.111795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4614.606400,151,0,2148.979789,hintandextended,lora,180 -on1,0,0,25,1,0,913,4501.400000,151,1,1827.328819,hintandextended,lora,180 -on4,0,0,25,1,0,294,4501.001280,151,1,1851.008922,hintandextended,lora,180 -on1,0,0,24,1,0,87,4388.000000,152,0,1780.800410,hintandextended,lora,180 -on9,0,0,24,1,0,669,4430.002560,152,0,1823.841434,hintandextended,lora,180 -on8,0,0,24,1,0,152,4484.603840,152,1,1847.458355,hintandextended,lora,180 -on11,0,0,27,1,0,775,4864.200000,152,3,2063.343386,hintandextended,lora,180 -on10,0,0,25,1,0,633,4641.005120,152,1,1910.642458,hintandextended,lora,180 -on7,0,0,25,1,0,476,4505.297440,152,1,1854.343590,hintandextended,lora,180 -on2,0,0,28,1,0,1012,5187.706400,152,4,2185.899174,hintandextended,lora,180 -on5,0,0,25,1,0,598,4641.305120,152,1,1901.802253,hintandextended,lora,180 -on3,0,0,27,1,0,1056,4865.998720,152,3,2021.760102,hintandextended,lora,180 -on4,0,0,24,1,0,180,4321.000000,152,0,1754.000410,hintandextended,lora,180 -on6,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,hintandextended,lora,180 -on0,1,10,24,0,0,0,4919.216640,152,0,2477.801318,hintandextended,lora,180 -on1,0,0,25,1,0,1194,4501.502560,153,2,1857.881434,hintandextended,lora,180 -on10,0,0,25,1,0,1800,4500.602560,153,1,1825.889434,hintandextended,lora,180 -on8,0,0,24,1,0,297,4418.001280,153,0,1821.184717,hintandextended,lora,180 -on9,0,0,25,1,0,1431,4503.300000,153,1,1875.303795,hintandextended,lora,180 -on11,0,0,24,1,0,1468,4510.602560,153,1,1858.529638,hintandextended,lora,180 -on7,0,0,26,1,0,1238,4681.301280,153,2,1929.704717,hintandextended,lora,180 -on4,0,0,25,1,0,676,4502.005120,153,1,1872.002458,hintandextended,lora,180 -on0,1,11,24,0,0,0,4861.208960,153,0,2293.797018,hintandextended,lora,180 -on6,0,0,24,1,0,179,4479.001280,153,0,1817.200717,hintandextended,lora,180 -on2,0,0,24,1,0,1620,4321.000000,153,0,1754.000410,hintandextended,lora,180 -on5,0,0,24,1,0,720,4322.002560,153,0,1785.729229,hintandextended,lora,180 -on3,0,0,25,1,0,1001,4501.201280,153,1,1829.488512,hintandextended,lora,180 -on9,0,0,25,1,0,628,4572.597440,154,1,1868.448000,hintandextended,lora,180 -on5,0,0,24,1,0,1040,4445.001280,154,0,1907.825331,hintandextended,lora,180 -on10,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,hintandextended,lora,180 -on2,0,0,26,1,0,1568,4834.800000,154,3,1985.360205,hintandextended,lora,180 -on11,0,0,25,1,0,849,4502.998720,154,1,1858.479898,hintandextended,lora,180 -on3,0,0,24,1,0,667,4428.002560,154,0,1825.185434,hintandextended,lora,180 -on4,0,0,25,1,0,1786,4501.000000,154,1,1826.000410,hintandextended,lora,180 -on7,0,0,26,1,0,1065,4685.594880,154,2,1927.630362,hintandextended,lora,180 -on8,0,0,25,1,0,1224,4642.002560,154,1,1901.009843,hintandextended,lora,180 -on1,0,0,26,1,0,1354,4823.603840,154,2,1970.721741,hintandextended,lora,180 -on0,1,10,24,0,0,0,4742.211520,154,0,2398.198246,hintandextended,lora,180 -on6,0,0,24,1,0,328,4449.000000,154,0,1805.200410,hintandextended,lora,180 -on0,1,11,24,0,0,0,5026.212800,155,0,2372.599168,hintandextended,lora,180 -on10,0,0,24,1,0,471,4411.998720,155,0,1790.399898,hintandextended,lora,180 -on2,0,0,24,1,0,2417,4378.001280,155,0,1794.400717,hintandextended,lora,180 -on3,0,0,24,1,0,1966,4466.001280,155,0,1812.000717,hintandextended,lora,180 -on6,0,0,25,1,0,2422,4563.602560,155,1,1851.089638,hintandextended,lora,180 -on1,0,0,24,1,0,2880,4322.000000,155,0,1767.520000,hintandextended,lora,180 -on9,0,0,24,1,0,1669,4350.001280,155,0,1771.680717,hintandextended,lora,180 -on7,0,0,24,1,0,900,4321.000000,155,0,1757.200000,hintandextended,lora,180 -on5,0,0,24,1,0,540,4320.001280,155,0,1753.600717,hintandextended,lora,180 -on4,0,0,24,1,0,1440,4320.001280,155,0,1753.600717,hintandextended,lora,180 -on11,0,0,24,1,0,359,4480.001280,155,0,1817.601126,hintandextended,lora,180 -on8,0,0,24,1,0,300,4549.606400,155,1,1845.491174,hintandextended,lora,180 -on11,0,0,26,1,0,790,4821.303840,156,2,1988.553741,hintandextended,lora,180 -on1,0,0,26,1,0,566,4821.603840,156,2,1955.313946,hintandextended,lora,180 -on7,0,0,24,1,0,194,4320.998720,156,0,1753.999898,hintandextended,lora,180 -on9,0,0,25,1,0,860,4501.200000,156,1,1829.120000,hintandextended,lora,180 -on3,0,0,25,1,0,1790,4501.000000,156,1,1829.200000,hintandextended,lora,180 -on4,0,0,24,1,0,1,4322.000000,156,0,1773.824000,hintandextended,lora,180 -on10,0,0,26,1,0,926,4681.601280,156,2,1940.800307,hintandextended,lora,180 -on8,0,0,25,1,0,671,4503.000000,156,1,1869.264205,hintandextended,lora,180 -on5,0,0,25,1,0,0,4504.603840,156,1,1887.841946,hintandextended,lora,180 -on2,0,0,26,1,0,993,4821.003840,156,2,1956.401741,hintandextended,lora,180 -on0,1,11,24,0,0,0,4896.215360,156,0,2294.200806,hintandextended,lora,180 -on6,0,0,25,1,0,334,4502.300000,156,1,1879.191795,hintandextended,lora,180 -on2,0,0,24,1,0,1620,4321.001280,157,0,1756.944717,hintandextended,lora,180 -on11,0,0,24,1,0,1440,4320.001280,157,0,1753.600717,hintandextended,lora,180 -on1,0,0,24,1,0,407,4349.000000,157,0,1766.000614,hintandextended,lora,180 -on6,0,0,25,1,0,1080,4503.601280,157,1,1877.009126,hintandextended,lora,180 -on8,0,0,26,1,0,2246,4682.501280,157,2,1923.080512,hintandextended,lora,180 -on5,0,0,24,1,0,540,4320.001280,157,0,1753.600717,hintandextended,lora,180 -on7,0,0,24,1,0,180,4322.001280,157,0,1781.920922,hintandextended,lora,180 -on9,0,0,25,1,0,1977,4501.000000,157,1,1829.151795,hintandextended,lora,180 -on3,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,hintandextended,lora,180 -on10,0,0,26,1,0,1900,4824.905120,157,2,2003.722458,hintandextended,lora,180 -on4,0,0,24,1,0,1556,4418.000000,157,0,1792.800819,hintandextended,lora,180 -on0,1,10,24,0,0,0,4862.211520,157,0,2370.678451,hintandextended,lora,180 -on10,0,0,25,1,0,1620,4503.996160,158,1,1884.718669,hintandextended,lora,180 -on5,0,0,25,1,0,1426,4501.001280,158,1,1854.640717,hintandextended,lora,180 -on3,0,0,25,1,0,1068,4501.000000,158,1,1829.311795,hintandextended,lora,180 -on11,0,0,25,1,0,190,4501.000000,158,1,1829.248614,hintandextended,lora,180 -on4,0,0,26,1,0,1212,4822.802560,158,2,1983.153638,hintandextended,lora,180 -on8,0,0,25,1,0,164,4502.998720,158,1,1840.303488,hintandextended,lora,180 -on2,0,0,26,1,0,2075,4680.601280,158,2,1929.680512,hintandextended,lora,180 -on6,0,0,24,1,0,2143,4463.001280,158,0,1810.800717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4752.811520,158,0,2307.974656,hintandextended,lora,180 -on9,0,0,24,1,0,0,4322.998720,158,0,1786.223693,hintandextended,lora,180 -on7,0,0,24,1,0,566,4326.002560,158,0,1756.001434,hintandextended,lora,180 -on1,0,0,25,1,0,1697,4502.600000,158,1,1899.919590,hintandextended,lora,180 -on2,0,0,24,1,0,180,4323.998720,159,0,1783.967693,hintandextended,lora,180 -on10,0,0,28,1,0,1278,5043.206400,159,4,2086.114765,hintandextended,lora,180 -on0,1,11,24,0,0,0,4811.612800,159,0,2324.263373,hintandextended,lora,180 -on6,0,0,25,1,0,483,4641.308960,159,1,1939.403994,hintandextended,lora,180 -on8,0,0,25,1,0,1734,4502.000000,159,1,1847.680410,hintandextended,lora,180 -on7,0,0,26,1,0,692,4789.996160,159,2,1964.862259,hintandextended,lora,180 -on9,0,0,26,1,0,1173,4823.602560,159,2,1985.969638,hintandextended,lora,180 -on1,0,0,24,1,0,395,4335.001280,159,0,1759.600717,hintandextended,lora,180 -on5,0,0,26,1,0,847,4840.802560,159,3,2015.536614,hintandextended,lora,180 -on11,0,0,26,1,0,646,4684.198720,159,2,1959.599693,hintandextended,lora,180 -on3,0,0,25,1,0,1228,4501.305120,159,1,1840.906662,hintandextended,lora,180 -on4,0,0,24,1,0,2616,4427.301280,159,1,1825.960717,hintandextended,lora,180 -on9,0,0,25,1,0,1193,4502.000000,160,1,1858.240000,hintandextended,lora,180 -on2,0,0,24,1,0,655,4418.002560,160,0,1824.609843,hintandextended,lora,180 -on11,0,0,25,1,0,2410,4673.600000,160,2,1959.455795,hintandextended,lora,180 -on6,0,0,24,1,0,10,4323.000000,160,0,1806.128000,hintandextended,lora,180 -on10,0,0,27,1,0,793,5004.896160,160,3,2063.607283,hintandextended,lora,180 -on8,0,0,24,1,0,900,4320.001280,160,0,1753.600717,hintandextended,lora,180 -on5,0,0,24,1,0,250,4372.000000,160,0,1798.240410,hintandextended,lora,180 -on4,0,0,25,1,0,24,4506.600000,160,1,1835.552614,hintandextended,lora,180 -on0,1,11,24,0,0,0,4806.814080,160,0,2310.055885,hintandextended,lora,180 -on3,0,0,24,1,0,831,4411.001280,160,0,1790.000717,hintandextended,lora,180 -on1,0,0,26,1,0,784,4955.902560,160,3,2097.721434,hintandextended,lora,180 -on7,0,0,25,1,0,406,4501.202560,160,1,1829.233024,hintandextended,lora,180 -on11,0,0,25,1,0,644,4586.007680,161,1,1888.643686,hintandextended,lora,180 -on2,0,0,25,1,0,613,4504.297440,161,1,1882.839181,hintandextended,lora,180 -on8,0,0,25,1,0,425,4502.300000,161,1,1876.343795,hintandextended,lora,180 -on7,0,0,27,1,0,1154,5002.301280,161,3,2058.200922,hintandextended,lora,180 -on6,0,0,24,1,0,3036,4456.001280,161,0,1808.000717,hintandextended,lora,180 -on5,0,0,25,1,0,190,4502.303840,161,1,1884.281536,hintandextended,lora,180 -on0,1,11,24,0,0,0,4779.214080,161,0,2327.656090,hintandextended,lora,180 -on9,0,0,24,1,0,903,4432.000000,161,1,1801.440000,hintandextended,lora,180 -on1,0,0,25,1,0,453,4702.603840,161,2,1913.201946,hintandextended,lora,180 -on4,0,0,24,1,0,0,4374.601280,161,1,1803.617126,hintandextended,lora,180 -on3,0,0,24,1,0,1393,4456.401280,161,1,1808.160717,hintandextended,lora,180 -on10,0,0,28,1,0,1103,5046.697440,161,4,2167.494771,hintandextended,lora,180 -on1,0,0,24,1,0,616,4353.301280,162,1,1801.064307,hintandextended,lora,180 -on5,0,0,24,1,0,83,4383.005120,162,0,1778.802458,hintandextended,lora,180 -on8,0,0,24,1,0,2160,4321.000000,162,0,1757.200000,hintandextended,lora,180 -on7,0,0,25,1,0,0,4502.994880,162,1,1829.694362,hintandextended,lora,180 -on3,0,0,25,1,0,484,4503.000000,162,1,1862.320205,hintandextended,lora,180 -on4,0,0,24,1,0,1440,4323.998720,162,0,1801.600307,hintandextended,lora,180 -on2,0,0,24,1,0,3982,4345.001280,162,1,1772.080717,hintandextended,lora,180 -on6,0,0,26,1,0,872,4822.902560,162,2,2002.809434,hintandextended,lora,180 -on9,0,0,24,1,0,179,4386.997440,162,1,1812.447795,hintandextended,lora,180 -on11,0,0,24,1,0,436,4379.003840,162,0,1861.362355,hintandextended,lora,180 -on0,1,11,24,0,0,0,4836.812800,162,0,2494.695373,hintandextended,lora,180 -on10,0,0,25,1,0,364,4711.907680,162,2,1963.755686,hintandextended,lora,180 -on1,0,0,26,1,0,1355,4682.600000,163,2,1956.079795,hintandextended,lora,180 -on8,0,0,25,1,0,699,4642.300000,163,2,1942.840000,hintandextended,lora,180 -on2,0,0,24,1,0,205,4327.001280,163,0,1789.712717,hintandextended,lora,180 -on4,0,0,27,1,0,1036,4898.500000,163,4,2070.407386,hintandextended,lora,180 -on3,0,0,30,1,0,1162,5546.302560,163,7,2364.824819,hintandextended,lora,180 -on0,1,11,24,0,0,0,4801.612800,163,0,2212.103373,hintandextended,lora,180 -on11,0,0,27,1,0,1001,5000.603840,163,3,2031.920922,hintandextended,lora,180 -on5,0,0,24,1,0,484,4383.200000,163,1,1797.391386,hintandextended,lora,180 -on9,0,0,26,1,0,337,4822.300000,163,2,1995.288410,hintandextended,lora,180 -on10,0,0,25,1,0,109,4501.600000,163,1,1863.695795,hintandextended,lora,180 -on6,0,0,27,1,0,988,4862.905120,163,3,2033.833638,hintandextended,lora,180 -on7,0,0,24,1,0,0,4321.000000,163,0,1756.688000,hintandextended,lora,180 -on1,0,0,24,1,0,219,4341.996160,164,0,1791.039078,hintandextended,lora,180 -on0,1,11,24,0,0,0,4906.611520,164,0,2446.742656,hintandextended,lora,180 -on11,0,0,25,1,0,1440,4502.997440,164,1,1877.679590,hintandextended,lora,180 -on9,0,0,26,1,0,640,4825.905120,164,2,2022.842662,hintandextended,lora,180 -on2,0,0,25,1,0,804,4502.298720,164,1,1834.359488,hintandextended,lora,180 -on8,0,0,27,1,0,740,4863.297440,164,3,2005.702771,hintandextended,lora,180 -on6,0,0,25,1,0,1080,4503.001280,164,1,1873.041126,hintandextended,lora,180 -on3,0,0,25,1,0,3101,4501.300000,164,1,1851.560000,hintandextended,lora,180 -on10,0,0,24,1,0,507,4449.000000,164,0,1808.720614,hintandextended,lora,180 -on5,0,0,26,1,0,454,4823.998720,164,2,1987.408307,hintandextended,lora,180 -on7,0,0,24,1,0,0,4322.001280,164,0,1783.584922,hintandextended,lora,180 -on4,0,0,24,1,0,1651,4336.001280,164,0,1847.361126,hintandextended,lora,180 -on3,0,0,25,1,0,1173,4795.205120,165,2,1989.282458,hintandextended,lora,180 -on9,0,0,24,1,0,2121,4441.001280,165,0,1802.000717,hintandextended,lora,180 -on0,1,10,24,0,0,0,4904.416640,165,0,2456.873318,hintandextended,lora,180 -on1,0,0,26,1,0,1418,4823.803840,165,2,2035.810150,hintandextended,lora,180 -on10,0,0,24,1,0,83,4385.000000,165,0,1787.600410,hintandextended,lora,180 -on7,0,0,26,1,0,2230,4822.902560,165,2,1982.809843,hintandextended,lora,180 -on2,0,0,25,1,0,2340,4502.000000,165,2,1856.752205,hintandextended,lora,180 -on8,0,0,25,1,0,720,4503.997440,165,1,1858.479386,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,hintandextended,lora,180 -on6,0,0,25,1,0,1060,4505.197440,165,1,1887.743386,hintandextended,lora,180 -on11,0,0,24,1,0,1475,4339.998720,165,0,1806.784102,hintandextended,lora,180 -on5,0,0,26,1,0,1228,4681.497440,165,2,1904.918566,hintandextended,lora,180 -on2,0,0,25,1,0,2160,4505.994880,166,1,1876.958771,hintandextended,lora,180 -on0,1,11,24,0,0,0,4572.003840,166,0,2366.562355,hintandextended,lora,180 -on11,0,0,24,1,0,180,4321.002560,166,0,1776.625434,hintandextended,lora,180 -on1,0,0,25,1,0,1004,4505.298720,166,1,1904.520307,hintandextended,lora,180 -on3,0,0,25,1,0,4073,4501.200000,166,1,1829.280000,hintandextended,lora,180 -on9,0,0,24,1,0,489,4430.001280,166,0,1826.240717,hintandextended,lora,180 -on6,0,0,25,1,0,2880,4503.998720,166,1,1860.799898,hintandextended,lora,180 -on7,0,0,24,1,0,763,4347.997440,166,0,1818.399590,hintandextended,lora,180 -on10,0,0,24,1,0,1838,4341.996160,166,0,1769.919283,hintandextended,lora,180 -on8,0,0,24,1,0,2595,4377.998720,166,0,1808.159898,hintandextended,lora,180 -on4,0,0,24,1,0,912,4321.002560,166,0,1782.481434,hintandextended,lora,180 -on5,0,0,24,1,0,279,4400.002560,166,0,1814.241434,hintandextended,lora,180 -on3,0,0,26,1,0,1448,4852.600000,167,4,2004.559181,hintandextended,lora,180 -on7,0,0,26,1,0,793,4683.600000,167,2,1939.903590,hintandextended,lora,180 -on1,0,0,24,1,0,394,4335.001280,167,0,1788.080717,hintandextended,lora,180 -on11,0,0,24,1,0,239,4360.001280,167,0,1797.024717,hintandextended,lora,180 -on4,0,0,25,1,0,1394,4707.102560,167,3,1973.928819,hintandextended,lora,180 -on8,0,0,26,1,0,1353,4823.000000,167,2,2012.080410,hintandextended,lora,180 -on10,0,0,26,1,0,1076,4682.600000,167,2,1951.759795,hintandextended,lora,180 -on5,0,0,25,1,0,1004,4771.608960,167,2,1944.195994,hintandextended,lora,180 -on9,0,0,26,1,0,925,4681.600000,167,2,1907.519795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4741.611520,167,0,2191.302656,hintandextended,lora,180 -on6,0,0,24,1,0,495,4487.002560,167,1,1878.385024,hintandextended,lora,180 -on2,0,0,26,1,0,633,4822.200000,167,2,1982.864614,hintandextended,lora,180 -on0,1,11,24,0,0,0,4884.814080,168,0,2559.976090,hintandextended,lora,180 -on5,0,0,25,1,0,645,4589.602560,168,1,1886.561638,hintandextended,lora,180 -on1,0,0,24,1,0,0,4324.003840,168,0,1792.066355,hintandextended,lora,180 -on9,0,0,24,1,0,1195,4416.001280,168,0,1817.600922,hintandextended,lora,180 -on6,0,0,25,1,0,411,4506.297440,168,1,1884.407386,hintandextended,lora,180 -on2,0,0,24,1,0,275,4413.608960,168,1,1807.252403,hintandextended,lora,180 -on8,0,0,26,1,0,638,4683.902560,168,2,2004.953229,hintandextended,lora,180 -on7,0,0,25,1,0,294,4501.000000,168,1,1829.103795,hintandextended,lora,180 -on4,0,0,24,1,0,477,4419.001280,168,0,1817.041126,hintandextended,lora,180 -on11,0,0,25,1,0,3944,4501.300000,168,1,1845.160000,hintandextended,lora,180 -on10,0,0,26,1,0,1370,4824.801280,168,2,1975.089741,hintandextended,lora,180 -on3,0,0,23,1,0,2452,4255.001280,168,0,1772.721126,hintandextended,lora,180 -on4,0,0,25,1,0,1063,4503.301280,169,1,1894.600922,hintandextended,lora,180 -on1,0,0,24,1,0,2340,4321.000000,169,0,1757.200000,hintandextended,lora,180 -on8,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,hintandextended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,hintandextended,lora,180 -on7,0,0,24,1,0,1476,4339.001280,169,0,1813.201126,hintandextended,lora,180 -on5,0,0,24,1,0,565,4325.001280,169,0,1755.600717,hintandextended,lora,180 -on6,0,0,25,1,0,647,4589.601280,169,1,1889.873331,hintandextended,lora,180 -on11,0,0,24,1,0,739,4321.997440,169,0,1754.559181,hintandextended,lora,180 -on0,1,9,24,0,0,0,4689.607680,169,0,2282.180301,hintandextended,lora,180 -on10,0,0,25,1,0,2520,4502.000000,169,1,1836.480410,hintandextended,lora,180 -on9,0,0,26,1,0,1057,4684.298720,169,2,1936.184102,hintandextended,lora,180 -on3,0,0,24,1,0,1800,4320.001280,169,0,1753.600717,hintandextended,lora,180 -on2,0,0,25,1,0,503,4543.002560,170,2,1880.017638,hintandextended,lora,180 -on10,0,0,26,1,0,501,4683.596160,170,2,1935.390259,hintandextended,lora,180 -on3,0,0,24,1,0,407,4374.001280,170,1,1775.200717,hintandextended,lora,180 -on6,0,0,29,1,0,1415,5361.608960,170,5,2218.515584,hintandextended,lora,180 -on9,0,0,24,1,0,180,4322.000000,170,0,1765.568000,hintandextended,lora,180 -on5,0,0,26,1,0,1039,4821.303840,170,3,2004.041331,hintandextended,lora,180 -on4,0,0,25,1,0,612,4641.003840,170,1,1910.689741,hintandextended,lora,180 -on1,0,0,25,1,0,1242,4501.300000,170,1,1830.120000,hintandextended,lora,180 -on11,0,0,28,1,0,1383,5043.400000,170,4,2106.527181,hintandextended,lora,180 -on0,1,11,24,0,0,0,5016.016640,170,0,2291.209523,hintandextended,lora,180 -on7,0,0,25,1,0,835,4503.000000,170,1,1871.504000,hintandextended,lora,180 -on8,0,0,25,1,0,676,4641.303840,170,1,1890.345741,hintandextended,lora,180 -on6,0,0,25,1,0,113,4503.200000,171,1,1866.192410,hintandextended,lora,180 -on4,0,0,26,1,0,387,4683.500000,171,2,1952.535590,hintandextended,lora,180 -on7,0,0,28,1,0,1184,5041.201280,171,4,2079.679898,hintandextended,lora,180 -on8,0,0,24,1,0,0,4320.000000,171,0,1753.600205,hintandextended,lora,180 -on2,0,0,26,1,0,970,4834.802560,171,4,1997.057229,hintandextended,lora,180 -on10,0,0,25,1,0,534,4641.303840,171,1,1928.681741,hintandextended,lora,180 -on1,0,0,27,1,0,810,5001.808960,171,3,2086.643789,hintandextended,lora,180 -on11,0,0,24,1,0,1101,4345.001280,171,1,1763.600717,hintandextended,lora,180 -on9,0,0,26,1,0,721,4681.300000,171,2,1904.663795,hintandextended,lora,180 -on5,0,0,25,1,0,1260,4500.001280,171,1,1825.600717,hintandextended,lora,180 -on3,0,0,26,1,0,386,4822.202560,171,2,1983.329434,hintandextended,lora,180 -on0,1,11,24,0,0,0,4799.014080,171,0,2216.247885,hintandextended,lora,180 -on4,0,0,25,1,0,3354,4501.000000,172,1,1829.200000,hintandextended,lora,180 -on2,0,0,24,1,0,1425,4353.201280,172,1,1795.264717,hintandextended,lora,180 -on9,0,0,24,1,0,745,4328.000000,172,0,1783.584614,hintandextended,lora,180 -on0,1,11,24,0,0,0,4777.210240,172,0,2437.797939,hintandextended,lora,180 -on1,0,0,25,1,0,1744,4500.001280,172,1,1825.600717,hintandextended,lora,180 -on11,0,0,24,1,0,1326,4366.002560,172,0,1772.001434,hintandextended,lora,180 -on10,0,0,25,1,0,236,4503.001280,172,1,1877.008717,hintandextended,lora,180 -on6,0,0,25,1,0,587,4501.001280,172,1,1829.200717,hintandextended,lora,180 -on8,0,0,24,1,0,0,4323.001280,172,0,1810.928717,hintandextended,lora,180 -on7,0,0,25,1,0,360,4503.001280,172,1,1857.361126,hintandextended,lora,180 -on5,0,0,25,1,0,858,4621.601280,172,1,1902.929331,hintandextended,lora,180 -on3,0,0,25,1,0,258,4560.603840,172,1,1868.674150,hintandextended,lora,180 -on2,0,0,26,1,0,634,4825.600000,173,2,2024.384614,hintandextended,lora,180 -on10,0,0,24,1,0,994,4394.001280,173,0,1783.200717,hintandextended,lora,180 -on7,0,0,24,1,0,323,4446.002560,173,0,1832.865434,hintandextended,lora,180 -on8,0,0,25,1,0,0,4501.606400,173,1,1854.419174,hintandextended,lora,180 -on0,1,11,24,0,0,0,4929.814080,173,0,2425.335885,hintandextended,lora,180 -on5,0,0,25,1,0,718,4502.000000,173,1,1853.184000,hintandextended,lora,180 -on1,0,0,24,1,0,259,4372.300000,173,1,1828.535795,hintandextended,lora,180 -on3,0,0,25,1,0,833,4503.198720,173,1,1858.623488,hintandextended,lora,180 -on9,0,0,25,1,0,2880,4501.001280,173,1,1854.640717,hintandextended,lora,180 -on6,0,0,24,1,0,19,4321.398720,173,0,1782.863693,hintandextended,lora,180 -on11,0,0,25,1,0,1620,4502.000000,173,1,1855.040410,hintandextended,lora,180 -on4,0,0,28,1,0,962,5184.807680,173,4,2178.259891,hintandextended,lora,180 -on11,0,0,25,1,0,406,4506.997440,174,1,1919.023386,hintandextended,lora,180 -on0,1,10,24,0,0,0,4634.608960,174,0,2428.981018,hintandextended,lora,180 -on5,0,0,25,1,0,993,4642.002560,174,1,1902.561434,hintandextended,lora,180 -on3,0,0,24,1,0,845,4426.000000,174,0,1796.000410,hintandextended,lora,180 -on1,0,0,23,1,0,180,4302.997440,174,0,1747.663590,hintandextended,lora,180 -on4,0,0,25,1,0,705,4502.998720,174,1,1846.383693,hintandextended,lora,180 -on7,0,0,27,1,0,1225,4862.100000,174,3,2006.872000,hintandextended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,174,0,1728.000000,hintandextended,lora,180 -on8,0,0,26,1,0,1007,4682.000000,174,2,1901.808614,hintandextended,lora,180 -on6,0,0,24,1,0,3828,4348.001280,174,0,1764.800717,hintandextended,lora,180 -on9,0,0,24,1,0,1524,4395.300000,174,1,1831.720410,hintandextended,lora,180 -on10,0,0,25,1,0,454,4577.602560,174,1,1909.873843,hintandextended,lora,180 -on10,0,0,26,1,0,1073,4820.605120,175,2,1954.050253,hintandextended,lora,180 -on4,0,0,24,1,0,695,4388.200000,175,1,1823.120000,hintandextended,lora,180 -on9,0,0,26,1,0,466,4683.000000,175,2,1958.768000,hintandextended,lora,180 -on7,0,0,24,1,0,20,4320.401280,175,0,1758.368717,hintandextended,lora,180 -on1,0,0,25,1,0,813,4641.003840,175,1,1910.641741,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.015360,175,0,2240.008806,hintandextended,lora,180 -on5,0,0,25,1,0,642,4502.400000,175,1,1858.192000,hintandextended,lora,180 -on11,0,0,27,1,0,1230,4949.002560,175,4,2036.096819,hintandextended,lora,180 -on3,0,0,27,1,0,1117,4862.701280,175,3,2005.976307,hintandextended,lora,180 -on6,0,0,27,1,0,1267,5000.303840,175,3,2028.761536,hintandextended,lora,180 -on2,0,0,26,1,0,359,4821.306400,175,2,2006.507174,hintandextended,lora,180 -on8,0,0,24,1,0,302,4422.997440,175,0,1794.799386,hintandextended,lora,180 -on3,0,0,26,1,0,1753,4684.598720,176,2,1953.199283,hintandextended,lora,180 -on0,1,10,24,0,0,0,5007.812800,176,0,2463.735168,hintandextended,lora,180 -on11,0,0,25,1,0,1260,4503.996160,176,1,1881.518669,hintandextended,lora,180 -on10,0,0,25,1,0,668,4502.998720,176,1,1843.343693,hintandextended,lora,180 -on7,0,0,27,1,0,1987,5002.905120,176,3,2058.490458,hintandextended,lora,180 -on8,0,0,24,1,0,906,4322.002560,176,1,1792.161434,hintandextended,lora,180 -on1,0,0,24,0,0,4320,4320.000000,176,0,1728.000000,hintandextended,lora,180 -on5,0,0,24,1,0,900,4320.001280,176,0,1753.600717,hintandextended,lora,180 -on4,0,0,24,1,0,360,4322.000000,176,0,1782.784410,hintandextended,lora,180 -on9,0,0,24,1,0,770,4351.001280,176,0,1778.544717,hintandextended,lora,180 -on6,0,0,24,1,0,1541,4403.001280,176,0,1816.880922,hintandextended,lora,180 -on2,0,0,25,1,0,670,4611.605120,176,1,1870.290867,hintandextended,lora,180 -on6,0,0,26,1,0,1467,4682.600000,177,2,1948.720000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4483.605120,177,0,2361.858867,hintandextended,lora,180 -on5,0,0,24,1,0,4140,4320.000000,177,0,1753.600000,hintandextended,lora,180 -on9,0,0,25,1,0,1619,4501.601280,177,1,1853.088922,hintandextended,lora,180 -on11,0,0,25,1,0,758,4501.302560,177,1,1877.225229,hintandextended,lora,180 -on1,0,0,24,1,0,360,4322.998720,177,0,1811.824102,hintandextended,lora,180 -on4,0,0,26,1,0,866,4824.800000,177,2,2001.553024,hintandextended,lora,180 -on3,0,0,23,1,0,547,4255.000000,177,0,1809.584205,hintandextended,lora,180 -on10,0,0,25,1,0,833,4503.996160,177,1,1840.318874,hintandextended,lora,180 -on7,0,0,25,1,0,1436,4502.000000,177,1,1858.240000,hintandextended,lora,180 -on8,0,0,24,1,0,230,4354.001280,177,0,1810.081536,hintandextended,lora,180 -on2,0,0,24,1,0,97,4400.996160,177,0,1803.759283,hintandextended,lora,180 -on4,0,0,25,1,0,701,4501.000000,178,1,1829.200000,hintandextended,lora,180 -on11,0,0,24,1,0,1747,4428.001280,178,0,1825.440717,hintandextended,lora,180 -on5,0,0,25,1,0,1713,4819.603840,178,2,1994.769946,hintandextended,lora,180 -on3,0,0,24,1,0,2558,4339.001280,178,0,1789.840717,hintandextended,lora,180 -on8,0,0,25,1,0,180,4502.601280,178,1,1855.169126,hintandextended,lora,180 -on10,0,0,25,1,0,686,4504.000000,178,1,1876.032205,hintandextended,lora,180 -on1,0,0,26,1,0,845,4822.797440,178,2,1954.975795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4802.811520,178,0,2330.374656,hintandextended,lora,180 -on6,0,0,25,1,0,1554,4501.997440,178,1,1829.710976,hintandextended,lora,180 -on2,0,0,24,1,0,0,4321.000000,178,0,1754.000410,hintandextended,lora,180 -on9,0,0,24,1,0,2115,4436.002560,178,0,1810.401434,hintandextended,lora,180 -on7,0,0,25,1,0,849,4501.301280,178,1,1860.040512,hintandextended,lora,180 -on10,0,0,26,1,0,1099,4822.303840,179,2,1988.089126,hintandextended,lora,180 -on8,0,0,30,1,0,1489,5543.300000,179,6,2316.727590,hintandextended,lora,180 -on7,0,0,30,1,0,1884,5404.001280,179,6,2226.670669,hintandextended,lora,180 -on4,0,0,26,1,0,633,4681.300000,179,3,1903.943590,hintandextended,lora,180 -on3,0,0,26,1,0,847,4821.303840,179,2,1985.081536,hintandextended,lora,180 -on11,0,0,25,1,0,1251,4501.000000,179,1,1829.040000,hintandextended,lora,180 -on5,0,0,25,1,0,180,4502.005120,179,1,1857.682253,hintandextended,lora,180 -on6,0,0,25,1,0,528,4501.000000,179,1,1829.040000,hintandextended,lora,180 -on2,0,0,29,1,0,1599,5223.403840,179,6,2168.673331,hintandextended,lora,180 -on1,0,0,26,1,0,827,4683.200000,179,2,1913.344000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4851.614080,179,0,2231.944090,hintandextended,lora,180 -on9,0,0,25,1,0,814,4501.905120,179,1,1834.234048,hintandextended,lora,180 -on11,0,0,25,1,0,1440,4502.601280,180,2,1855.329126,hintandextended,lora,180 -on0,1,9,24,0,0,0,4720.607680,180,0,2347.060301,hintandextended,lora,180 -on3,0,0,24,1,0,180,4321.000000,180,0,1756.944000,hintandextended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,180,0,1728.000000,hintandextended,lora,180 -on4,0,0,24,1,0,720,4320.003840,180,0,1753.602150,hintandextended,lora,180 -on7,0,0,24,1,0,636,4398.000000,180,0,1813.440410,hintandextended,lora,180 -on6,0,0,24,1,0,920,4322.000000,180,0,1768.704410,hintandextended,lora,180 -on8,0,0,24,1,0,2160,4320.002560,180,0,1753.601434,hintandextended,lora,180 -on1,0,0,25,1,0,323,4502.000000,180,1,1831.200614,hintandextended,lora,180 -on10,0,0,23,0,0,4289,4289.000000,180,0,1715.600000,hintandextended,lora,180 -on9,0,0,24,1,0,1370,4410.998720,180,0,1789.999898,hintandextended,lora,180 -on2,0,0,24,1,0,0,4322.002560,180,0,1810.881638,hintandextended,lora,180 -on11,0,0,25,1,0,3887,4517.501280,181,2,1863.960717,hintandextended,lora,180 -on9,0,0,24,1,0,586,4477.000000,181,1,1819.600410,hintandextended,lora,180 -on1,0,0,25,1,0,666,4506.300000,181,1,1920.664410,hintandextended,lora,180 -on10,0,0,25,1,0,144,4626.598720,181,1,1876.288307,hintandextended,lora,180 -on3,0,0,25,1,0,332,4505.997440,181,1,1895.727795,hintandextended,lora,180 -on8,0,0,24,1,0,979,4380.998720,181,0,1778.000102,hintandextended,lora,180 -on6,0,0,24,1,0,14,4323.998720,181,0,1813.183488,hintandextended,lora,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,hintandextended,lora,180 -on2,0,0,27,1,0,625,5005.894880,181,3,2069.510976,hintandextended,lora,180 -on7,0,0,24,1,0,405,4346.000000,181,0,1764.000410,hintandextended,lora,180 -on0,1,10,24,0,0,0,4794.212800,181,0,2427.799168,hintandextended,lora,180 -on4,0,0,26,1,0,1066,4823.603840,181,2,2054.689946,hintandextended,lora,180 -on9,0,0,24,1,0,0,4321.001280,182,0,1781.648717,hintandextended,lora,180 -on2,0,0,29,1,0,1316,5223.502560,182,5,2198.264410,hintandextended,lora,180 -on3,0,0,24,1,0,814,4395.997440,182,0,1796.799386,hintandextended,lora,180 -on6,0,0,24,1,0,292,4413.001280,182,0,1794.224717,hintandextended,lora,180 -on7,0,0,26,1,0,628,4820.303840,182,2,1982.361741,hintandextended,lora,180 -on11,0,0,25,1,0,474,4501.000000,182,1,1829.248000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4901.016640,182,0,2245.209523,hintandextended,lora,180 -on8,0,0,26,1,0,942,4683.000000,182,2,1944.975386,hintandextended,lora,180 -on1,0,0,27,1,0,907,5001.303840,182,3,2057.961536,hintandextended,lora,180 -on4,0,0,25,1,0,653,4669.300000,182,2,1926.487795,hintandextended,lora,180 -on5,0,0,26,1,0,416,4820.303840,182,2,1963.161946,hintandextended,lora,180 -on10,0,0,25,1,0,900,4640.303840,182,1,1905.401741,hintandextended,lora,180 -on10,0,0,24,1,0,419,4360.001280,183,0,1770.144717,hintandextended,lora,180 -on1,0,0,26,1,0,814,4821.003840,183,2,1971.985741,hintandextended,lora,180 -on8,0,0,24,1,0,863,4443.001280,183,0,1802.800717,hintandextended,lora,180 -on4,0,0,26,1,0,1076,4820.406400,183,2,1954.338970,hintandextended,lora,180 -on3,0,0,26,1,0,1353,4682.600000,183,2,1958.959795,hintandextended,lora,180 -on7,0,0,27,1,0,1280,4862.702560,183,3,1991.112410,hintandextended,lora,180 -on9,0,0,24,1,0,1022,4422.001280,183,0,1794.400717,hintandextended,lora,180 -on11,0,0,26,1,0,1211,4821.803840,183,2,2000.401331,hintandextended,lora,180 -on6,0,0,25,1,0,610,4550.500000,183,2,1860.087795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4889.616640,183,0,2240.905523,hintandextended,lora,180 -on5,0,0,28,1,0,1348,5183.303840,183,4,2149.688922,hintandextended,lora,180 -on2,0,0,24,1,0,180,4321.996160,183,0,1757.342669,hintandextended,lora,180 -on9,0,0,24,1,0,540,4321.001280,184,0,1782.128717,hintandextended,lora,180 -on8,0,0,25,1,0,1239,4504.300000,184,1,1891.767590,hintandextended,lora,180 -on7,0,0,26,1,0,1761,4681.605120,184,2,1914.881638,hintandextended,lora,180 -on6,0,0,26,1,0,1713,4823.200000,184,2,2012.160410,hintandextended,lora,180 -on2,0,0,26,1,0,1174,4682.300000,184,2,1925.943386,hintandextended,lora,180 -on5,0,0,25,1,0,1427,4500.998720,184,1,1825.999693,hintandextended,lora,180 -on10,0,0,24,1,0,1027,4427.001280,184,0,1796.400717,hintandextended,lora,180 -on4,0,0,25,1,0,770,4502.300000,184,1,1847.991795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4815.212800,184,0,2217.639373,hintandextended,lora,180 -on11,0,0,24,1,0,1800,4322.000000,184,0,1786.240000,hintandextended,lora,180 -on3,0,0,27,1,0,1336,5004.900000,184,3,2062.167590,hintandextended,lora,180 -on1,0,0,26,1,0,993,4821.600000,184,2,1954.288614,hintandextended,lora,180 -on7,0,0,28,1,0,1440,5042.101280,185,4,2080.520102,hintandextended,lora,180 -on2,0,0,27,1,0,1321,4862.900000,185,3,2024.375590,hintandextended,lora,180 -on9,0,0,25,1,0,1360,4502.300000,185,1,1852.439795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4600.007680,185,0,2140.804506,hintandextended,lora,180 -on4,0,0,24,1,0,117,4417.001280,185,0,1792.400717,hintandextended,lora,180 -on1,0,0,25,1,0,972,4605.501280,185,2,1924.808512,hintandextended,lora,180 -on10,0,0,25,1,0,115,4598.202560,185,1,1884.370048,hintandextended,lora,180 -on8,0,0,25,1,0,712,4502.000000,185,1,1845.760000,hintandextended,lora,180 -on5,0,0,25,1,0,176,4505.992320,185,1,1867.101542,hintandextended,lora,180 -on3,0,0,26,1,0,433,4682.698720,185,2,1958.375488,hintandextended,lora,180 -on11,0,0,25,1,0,875,4502.005120,185,1,1836.162458,hintandextended,lora,180 -on6,0,0,26,1,0,837,4821.203840,185,2,2003.745536,hintandextended,lora,180 -on9,0,0,24,1,0,0,4321.000000,186,0,1756.944000,hintandextended,lora,180 -on10,0,0,24,1,0,2520,4320.001280,186,0,1753.600717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4996.217920,186,0,2365.082035,hintandextended,lora,180 -on4,0,0,26,1,0,273,4826.602560,186,2,2055.041843,hintandextended,lora,180 -on1,0,0,26,1,0,543,4682.900000,186,2,1963.559590,hintandextended,lora,180 -on7,0,0,27,1,0,982,4861.702560,186,3,1976.632614,hintandextended,lora,180 -on3,0,0,28,1,0,993,5185.705120,186,4,2194.698048,hintandextended,lora,180 -on11,0,0,26,1,0,909,4821.503840,186,2,1985.721331,hintandextended,lora,180 -on6,0,0,24,1,0,498,4439.001280,186,0,1829.840717,hintandextended,lora,180 -on8,0,0,25,1,0,114,4502.998720,186,1,1858.335488,hintandextended,lora,180 -on2,0,0,25,1,0,675,4640.003840,186,1,1881.809741,hintandextended,lora,180 -on5,0,0,28,1,0,1216,5041.901280,186,4,2065.079898,hintandextended,lora,180 -on9,0,0,25,1,0,8,4502.000000,187,1,1848.719795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4956.216640,187,0,2328.121318,hintandextended,lora,180 -on10,0,0,28,1,0,903,5044.100000,187,4,2091.351590,hintandextended,lora,180 -on3,0,0,26,1,0,417,4682.496160,187,2,1933.158054,hintandextended,lora,180 -on7,0,0,28,1,0,1026,5184.905120,187,4,2165.178253,hintandextended,lora,180 -on6,0,0,25,1,0,692,4502.000000,187,1,1858.080000,hintandextended,lora,180 -on5,0,0,25,1,0,633,4641.203840,187,1,1882.082150,hintandextended,lora,180 -on11,0,0,29,1,0,1261,5223.801280,187,6,2204.815693,hintandextended,lora,180 -on2,0,0,24,1,0,335,4455.001280,187,0,1807.600717,hintandextended,lora,180 -on4,0,0,24,1,0,1620,4322.000000,187,0,1786.240000,hintandextended,lora,180 -on1,0,0,25,1,0,491,4641.198720,187,1,1882.287898,hintandextended,lora,180 -on8,0,0,24,1,0,54,4355.001280,187,0,1796.080717,hintandextended,lora,180 -on6,0,0,24,1,0,580,4470.998720,188,1,1839.023693,hintandextended,lora,180 -on7,0,0,25,1,0,833,4502.203840,188,1,1839.026150,hintandextended,lora,180 -on0,1,11,24,0,0,0,4619.605120,188,0,2322.339072,hintandextended,lora,180 -on2,0,0,24,1,0,1706,4387.002560,188,0,1781.681434,hintandextended,lora,180 -on9,0,0,26,1,0,816,4680.601280,188,2,1906.768512,hintandextended,lora,180 -on10,0,0,24,1,0,360,4322.000000,188,0,1785.888000,hintandextended,lora,180 -on3,0,0,24,1,0,990,4339.301280,188,1,1773.608717,hintandextended,lora,180 -on8,0,0,24,1,0,2745,4346.002560,188,0,1792.641434,hintandextended,lora,180 -on11,0,0,26,1,0,736,4823.908960,188,2,2001.148198,hintandextended,lora,180 -on5,0,0,26,1,0,1063,4683.901280,188,2,2016.728922,hintandextended,lora,180 -on1,0,0,24,1,0,3420,4322.000000,188,0,1786.240000,hintandextended,lora,180 -on4,0,0,24,1,0,499,4440.998720,188,0,1830.127898,hintandextended,lora,180 -on1,0,0,25,1,0,344,4502.001280,189,1,1883.264717,hintandextended,lora,180 -on6,0,0,24,1,0,2340,4321.000000,189,0,1757.200000,hintandextended,lora,180 -on3,0,0,24,1,0,1546,4406.001280,189,0,1788.000717,hintandextended,lora,180 -on4,0,0,25,1,0,527,4503.000000,189,1,1862.000000,hintandextended,lora,180 -on2,0,0,26,1,0,1007,4822.203840,189,2,1985.521741,hintandextended,lora,180 -on5,0,0,26,1,0,884,4682.702560,189,2,1946.569229,hintandextended,lora,180 -on11,0,0,25,1,0,180,4504.994880,189,1,1856.222362,hintandextended,lora,180 -on0,1,11,24,0,0,0,4760.611520,189,0,2236.662656,hintandextended,lora,180 -on10,0,0,24,1,0,0,4321.000000,189,0,1754.000410,hintandextended,lora,180 -on9,0,0,26,1,0,954,4820.003840,189,2,1959.457741,hintandextended,lora,180 -on7,0,0,26,1,0,828,4683.600000,189,2,1952.384000,hintandextended,lora,180 -on8,0,0,27,1,0,1370,4861.101280,189,3,1978.808102,hintandextended,lora,180 -on5,0,0,25,1,0,1065,4503.997440,190,1,1830.399795,hintandextended,lora,180 -on0,1,10,24,0,0,0,4748.812800,190,0,2383.175168,hintandextended,lora,180 -on9,0,0,24,1,0,180,4321.997440,190,0,1757.343181,hintandextended,lora,180 -on11,0,0,24,1,0,578,4365.994880,190,1,1823.262771,hintandextended,lora,180 -on8,0,0,25,1,0,868,4501.000000,190,1,1828.943795,hintandextended,lora,180 -on1,0,0,26,1,0,994,4823.600000,190,2,1983.424410,hintandextended,lora,180 -on4,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,hintandextended,lora,180 -on10,0,0,26,1,0,1537,4823.602560,190,2,2007.569638,hintandextended,lora,180 -on7,0,0,24,1,0,395,4338.994880,190,0,1792.942566,hintandextended,lora,180 -on2,0,0,26,1,0,501,4825.600000,190,2,1985.777229,hintandextended,lora,180 -on3,0,0,28,1,0,1373,5045.198720,190,4,2139.583078,hintandextended,lora,180 -on6,0,0,25,1,0,1438,4502.000000,190,1,1844.864000,hintandextended,lora,180 -on5,0,0,26,1,0,1273,4683.601280,191,2,1957.984102,hintandextended,lora,180 -on2,0,0,24,1,0,180,4324.002560,191,0,1812.129434,hintandextended,lora,180 -on7,0,0,24,1,0,1447,4466.500000,191,1,1855.560410,hintandextended,lora,180 -on1,0,0,24,1,0,884,4641.602560,191,1,1893.169638,hintandextended,lora,180 -on3,0,0,25,1,0,360,4502.601280,191,1,1855.329126,hintandextended,lora,180 -on6,0,0,25,1,0,213,4514.603840,191,1,1831.490355,hintandextended,lora,180 -on10,0,0,25,1,0,3466,4502.200000,191,1,1858.320000,hintandextended,lora,180 -on11,0,0,24,1,0,159,4463.001280,191,0,1893.841126,hintandextended,lora,180 -on9,0,0,26,1,0,1490,4824.603840,191,2,2012.770560,hintandextended,lora,180 -on0,1,11,24,0,0,0,4811.414080,191,0,2473.592090,hintandextended,lora,180 -on4,0,0,24,1,0,877,4459.001280,191,0,1837.841126,hintandextended,lora,180 -on8,0,0,25,1,0,1013,4504.198720,191,1,1887.711693,hintandextended,lora,180 -on3,0,0,27,1,0,1588,4944.802560,192,4,2056.209024,hintandextended,lora,180 -on4,0,0,26,1,0,1431,4681.900000,192,2,1960.759590,hintandextended,lora,180 -on6,0,0,24,1,0,0,4391.000000,192,1,1798.336000,hintandextended,lora,180 -on2,0,0,25,1,0,540,4501.607680,192,1,1854.515686,hintandextended,lora,180 -on5,0,0,26,1,0,1255,4821.603840,192,3,2026.081331,hintandextended,lora,180 -on0,1,11,24,0,0,0,4963.216640,192,0,2288.841523,hintandextended,lora,180 -on10,0,0,24,1,0,1192,4412.001280,192,0,1790.400717,hintandextended,lora,180 -on1,0,0,24,1,0,166,4371.200000,192,1,1774.080410,hintandextended,lora,180 -on8,0,0,24,1,0,1076,4476.001280,192,0,1816.000717,hintandextended,lora,180 -on11,0,0,26,1,0,1283,4821.303840,192,2,1985.753536,hintandextended,lora,180 -on9,0,0,26,1,0,1627,4820.506400,192,3,1958.682765,hintandextended,lora,180 -on7,0,0,25,1,0,889,4501.200000,192,1,1829.120000,hintandextended,lora,180 -on1,0,0,25,1,0,993,4641.203840,193,1,1907.841946,hintandextended,lora,180 -on9,0,0,28,1,0,1385,5183.207680,193,4,2102.067482,hintandextended,lora,180 -on11,0,0,25,1,0,813,4640.003840,193,1,1881.601741,hintandextended,lora,180 -on3,0,0,27,1,0,1322,4861.702560,193,3,2002.489024,hintandextended,lora,180 -on7,0,0,24,1,0,1260,4412.000000,193,1,1790.400410,hintandextended,lora,180 -on5,0,0,25,1,0,2596,4501.600000,193,1,1874.879795,hintandextended,lora,180 -on0,1,11,24,0,0,0,4863.614080,193,0,2358.664090,hintandextended,lora,180 -on4,0,0,26,1,0,722,4683.501280,193,2,1985.560512,hintandextended,lora,180 -on10,0,0,26,1,0,1088,4722.000000,193,3,1930.447386,hintandextended,lora,180 -on2,0,0,24,1,0,360,4322.000000,193,0,1773.248000,hintandextended,lora,180 -on8,0,0,25,1,0,488,4502.000000,193,1,1829.440410,hintandextended,lora,180 -on6,0,0,24,1,0,2578,4359.001280,193,0,1797.840717,hintandextended,lora,180 -on7,0,0,25,1,0,959,4542.607680,194,1,1876.883482,hintandextended,lora,180 -on9,0,0,24,1,0,720,4321.000000,194,0,1756.880000,hintandextended,lora,180 -on10,0,0,26,1,0,1025,4681.901280,194,2,1972.600512,hintandextended,lora,180 -on1,0,0,25,1,0,861,4503.298720,194,1,1882.823283,hintandextended,lora,180 -on0,1,11,24,0,0,0,4838.208960,194,0,2303.637018,hintandextended,lora,180 -on6,0,0,24,1,0,2019,4340.000000,194,0,1761.600410,hintandextended,lora,180 -on4,0,0,24,1,0,236,4357.001280,194,0,1791.280717,hintandextended,lora,180 -on5,0,0,24,1,0,360,4320.001280,194,0,1753.600717,hintandextended,lora,180 -on8,0,0,25,1,0,2880,4500.602560,194,1,1825.889434,hintandextended,lora,180 -on11,0,0,25,1,0,1358,4502.600000,194,1,1897.200205,hintandextended,lora,180 -on3,0,0,24,1,0,1361,4401.001280,194,0,1786.000717,hintandextended,lora,180 -on2,0,0,23,1,0,661,4299.001280,194,0,1745.200717,hintandextended,lora,180 -on6,0,0,26,1,0,1287,4685.497440,195,2,1963.526976,hintandextended,lora,180 -on8,0,0,27,1,0,1528,4863.803840,195,3,2034.753946,hintandextended,lora,180 -on11,0,0,27,1,0,1736,4864.901280,195,3,2091.944512,hintandextended,lora,180 -on2,0,0,24,0,0,4320,4320.000000,195,0,1728.000000,hintandextended,lora,180 -on5,0,0,24,1,0,9,4321.993600,195,0,1754.398054,hintandextended,lora,180 -on10,0,0,24,1,0,2706,4344.200000,195,1,1763.280410,hintandextended,lora,180 -on1,0,0,25,1,0,1126,4503.598720,195,2,1876.415693,hintandextended,lora,180 -on9,0,0,25,1,0,1386,4783.194880,195,2,1966.718771,hintandextended,lora,180 -on3,0,0,25,1,0,180,4503.601280,195,1,1869.457126,hintandextended,lora,180 -on4,0,0,26,1,0,587,4682.505120,195,2,1970.250458,hintandextended,lora,180 -on0,1,10,24,0,0,0,4460.003840,195,0,2259.362150,hintandextended,lora,180 -on7,0,0,24,1,0,1905,4432.000000,195,1,1816.960410,hintandextended,lora,180 -on11,0,0,25,1,0,752,4821.603840,196,2,2085.378150,hintandextended,lora,180 -on6,0,0,27,1,0,1293,4862.502560,196,3,2003.929229,hintandextended,lora,180 -on2,0,0,28,1,0,1488,5042.102560,196,4,2080.776614,hintandextended,lora,180 -on4,0,0,25,1,0,496,4501.200000,196,1,1829.183795,hintandextended,lora,180 -on8,0,0,25,1,0,900,4501.000000,196,1,1828.944000,hintandextended,lora,180 -on5,0,0,25,1,0,452,4575.603840,196,1,1904.594150,hintandextended,lora,180 -on9,0,0,25,1,0,926,4640.203840,196,1,1881.889741,hintandextended,lora,180 -on1,0,0,24,1,0,113,4414.001280,196,0,1819.584717,hintandextended,lora,180 -on10,0,0,28,1,0,1450,5181.903840,196,4,2161.881126,hintandextended,lora,180 -on0,1,11,24,0,0,0,4880.615360,196,0,2268.984806,hintandextended,lora,180 -on3,0,0,26,1,0,812,4682.600000,196,2,1963.264000,hintandextended,lora,180 -on7,0,0,25,1,0,355,4502.200000,196,1,1854.864410,hintandextended,lora,180 -on3,0,0,29,1,0,1982,5222.700000,197,5,2162.695386,hintandextended,lora,180 -on0,1,11,24,0,0,0,4641.208960,197,0,2154.181222,hintandextended,lora,180 -on5,0,0,25,1,0,641,4583.206400,197,1,1872.915174,hintandextended,lora,180 -on7,0,0,24,1,0,1240,4460.001280,197,0,1809.600717,hintandextended,lora,180 -on4,0,0,24,1,0,1289,4457.200000,197,1,1811.680000,hintandextended,lora,180 -on2,0,0,24,1,0,180,4320.005120,197,0,1753.602458,hintandextended,lora,180 -on10,0,0,24,1,0,858,4440.001280,197,0,1852.800307,hintandextended,lora,180 -on11,0,0,24,1,0,595,4360.597440,197,1,1798.479386,hintandextended,lora,180 -on6,0,0,24,1,0,413,4354.001280,197,0,1795.584717,hintandextended,lora,180 -on1,0,0,24,1,0,959,4370.003840,197,1,1773.602355,hintandextended,lora,180 -on8,0,0,25,1,0,1619,4501.200000,197,1,1829.280000,hintandextended,lora,180 -on9,0,0,24,1,0,920,4321.007680,197,0,1782.387482,hintandextended,lora,180 -on0,1,11,24,0,0,0,4885.810240,198,0,2381.973939,hintandextended,lora,180 -on5,0,0,24,1,0,463,4404.001280,198,0,1795.360922,hintandextended,lora,180 -on11,0,0,25,1,0,180,4503.598720,198,1,1855.952307,hintandextended,lora,180 -on4,0,0,24,1,0,2160,4323.000000,198,0,1807.504205,hintandextended,lora,180 -on2,0,0,26,1,0,2555,4821.903840,198,2,1981.706150,hintandextended,lora,180 -on7,0,0,25,1,0,3471,4501.600000,198,1,1874.176000,hintandextended,lora,180 -on10,0,0,26,1,0,634,4681.301280,198,2,1929.960512,hintandextended,lora,180 -on3,0,0,24,1,0,816,4397.000000,198,0,1784.400410,hintandextended,lora,180 -on1,0,0,24,1,0,2425,4386.001280,198,0,1793.440922,hintandextended,lora,180 -on8,0,0,24,1,0,2896,4320.998720,198,0,1753.999693,hintandextended,lora,180 -on6,0,0,24,1,0,900,4389.603840,198,1,1810.130560,hintandextended,lora,180 -on9,0,0,24,1,0,2829,4430.001280,198,0,1826.240717,hintandextended,lora,180 -on11,0,0,27,1,0,1412,5002.202560,199,3,2038.273434,hintandextended,lora,180 -on3,0,0,26,1,0,1131,4684.202560,199,2,1962.177434,hintandextended,lora,180 -on5,0,0,25,1,0,805,4568.598720,199,1,1881.680307,hintandextended,lora,180 -on9,0,0,24,1,0,540,4321.001280,199,0,1782.384717,hintandextended,lora,180 -on8,0,0,24,1,0,305,4425.001280,199,0,1795.600717,hintandextended,lora,180 -on0,1,11,24,0,0,0,4814.212800,199,0,2344.919168,hintandextended,lora,180 -on4,0,0,24,1,0,1440,4320.001280,199,0,1753.600717,hintandextended,lora,180 -on10,0,0,24,1,0,3159,4399.001280,199,0,1785.200717,hintandextended,lora,180 -on6,0,0,25,1,0,1864,4500.301280,199,1,1844.280717,hintandextended,lora,180 -on1,0,0,25,1,0,1173,4505.298720,199,1,1903.751488,hintandextended,lora,180 -on2,0,0,24,1,0,783,4363.001280,199,0,1770.800717,hintandextended,lora,180 -on7,0,0,25,1,0,3389,4686.603840,199,2,1900.289946,hintandextended,lora,180 -on3,0,0,25,1,0,493,4501.600000,200,1,1857.439795,hintandextended,lora,180 -on10,0,0,25,1,0,0,4502.598720,200,1,1855.072102,hintandextended,lora,180 -on11,0,0,24,1,0,278,4399.000000,200,0,1785.200410,hintandextended,lora,180 -on1,0,0,25,1,0,872,4501.300000,200,1,1857.960000,hintandextended,lora,180 -on0,1,11,24,0,0,0,4814.214080,200,0,2239.383885,hintandextended,lora,180 -on5,0,0,27,1,0,902,5003.908960,200,3,2106.411789,hintandextended,lora,180 -on8,0,0,25,1,0,1620,4501.000000,200,1,1829.152000,hintandextended,lora,180 -on2,0,0,27,1,0,615,5002.303840,200,3,2042.585331,hintandextended,lora,180 -on7,0,0,25,1,0,349,4502.300000,200,1,1842.103795,hintandextended,lora,180 -on9,0,0,27,1,0,1367,4870.501280,200,4,1983.816102,hintandextended,lora,180 -on6,0,0,26,1,0,814,4681.500000,200,2,1904.391590,hintandextended,lora,180 -on4,0,0,25,1,0,813,4643.000000,200,1,1940.080410,hintandextended,lora,180 -on6,0,0,24,1,0,3467,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2880,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,759,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1279,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1443,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2030,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,1,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,3206,4320.000000,1,0,1776.756500,baseline,nbiot,180 -on1,0,0,24,1,0,249,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,780,4320.000000,1,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,1,0,2671.150000,baseline,nbiot,180 -on10,0,0,24,1,0,3053,4320.000000,2,0,1778.706500,baseline,nbiot,180 -on3,0,0,24,0,0,4272,4320.000000,2,0,1962.000000,baseline,nbiot,180 -on4,0,0,24,1,0,2193,4320.000000,2,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1800,4320.000000,2,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,795,4320.000000,2,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,2,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1980,4320.000000,2,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,2,0,2487.850000,baseline,nbiot,180 -on6,0,0,24,1,0,571,4320.000000,2,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,1,0,2090,4250.000000,2,0,1726.006500,baseline,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,2,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,736,4320.000000,2,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,3,0,2361.100000,baseline,nbiot,180 -on4,0,0,24,1,0,894,4320.000000,3,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,903,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1440,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,443,4320.000000,3,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,3,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,1343,4320.000000,3,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,686,4320.000000,4,0,1776.750000,baseline,nbiot,180 -on7,0,0,24,1,0,3240,4320.000000,4,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,4,0,2268.150000,baseline,nbiot,180 -on2,0,0,24,1,0,2700,4320.000000,4,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,4,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,17,4320.000000,4,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,4,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,4,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2096,4320.000000,4,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,4192,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,5,0,2656.206500,baseline,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,627,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1103,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1440,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3005,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on8,0,0,23,1,0,3596,4235.000000,5,0,1720.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2747,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3746,4320.000000,5,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,5,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1756,4320.000000,6,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,6,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,6,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,6,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,6,0,2541.150000,baseline,nbiot,180 -on4,0,0,24,1,0,3347,4320.000000,6,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1503,4320.000000,6,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,1946,4320.000000,6,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3773,4320.000000,6,0,1759.206500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,baseline,nbiot,180 -on0,1,6,24,0,0,0,4320.000000,7,0,2264.900000,baseline,nbiot,180 -on6,0,0,24,1,0,4140,4320.000000,7,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4286,4320.000000,7,0,1840.443500,baseline,nbiot,180 -on7,0,0,24,0,0,4316,4320.000000,7,0,1731.250000,baseline,nbiot,180 -on10,0,0,24,1,0,23,4320.000000,7,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,7,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3859,4320.000000,7,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,7,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,7,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,baseline,nbiot,180 -on0,1,8,23,0,0,0,4313.000000,8,0,2516.250000,baseline,nbiot,180 -on3,0,0,23,0,0,4239,4239.000000,8,0,1695.600000,baseline,nbiot,180 -on5,0,0,24,1,0,3228,4320.000000,8,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4275,4320.000000,8,0,1758.550000,baseline,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,8,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,8,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1889,4320.000000,8,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,8,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,887,4320.000000,8,0,1780.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1918,4320.000000,8,0,1754.006500,baseline,nbiot,180 -on9,0,0,23,1,0,132,4293.000000,8,0,1743.206500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,8,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,412,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2424,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2067,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,9,0,2550.900000,baseline,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,401,4320.000000,9,0,1770.906500,baseline,nbiot,180 -on4,0,0,24,0,0,4294,4320.000000,9,0,1845.000000,baseline,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,158,4320.000000,9,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,560,4320.000000,9,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1573,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2733,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,650,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,10,0,2794.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3763,4320.000000,10,0,1765.706500,baseline,nbiot,180 -on6,0,0,24,1,0,937,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2880,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,604,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1707,4320.000000,10,0,1767.656500,baseline,nbiot,180 -on5,0,0,24,1,0,2003,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,10,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1800,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,992,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1646,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4301,4320.000000,11,0,1741.000000,baseline,nbiot,180 -on9,0,0,24,1,0,3291,4320.000000,11,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,34,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,845,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,880,4320.000000,11,0,1871.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,11,0,2523.600000,baseline,nbiot,180 -on4,0,0,24,1,0,1620,4320.000000,11,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,540,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,366,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2520,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3016,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,12,0,1728.650000,baseline,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2456,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,924,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2911,4320.000000,12,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,12,0,2547.650000,baseline,nbiot,180 -on7,0,0,24,1,0,1551,4320.000000,13,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,753,4320.000000,13,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,13,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,0,0,4310,4310.000000,13,0,1724.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4313,4320.000000,13,0,1733.200000,baseline,nbiot,180 -on9,0,0,24,1,0,438,4320.000000,13,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,3,4320.000000,13,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,baseline,nbiot,180 -on0,1,6,24,0,0,0,4320.000000,13,0,2313.000000,baseline,nbiot,180 -on1,0,0,24,1,0,428,4320.000000,13,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,14,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4307,4320.000000,14,0,1737.100000,baseline,nbiot,180 -on9,0,0,24,1,0,1973,4320.000000,14,0,1871.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,14,0,2727.050000,baseline,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,14,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,14,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,599,4320.000000,14,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4289,4320.000000,14,0,1748.800000,baseline,nbiot,180 -on2,0,0,24,1,0,1094,4320.000000,14,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,14,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2383,4320.000000,14,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,14,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,1263,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3036,4320.000000,15,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1034,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3960,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2511,4320.000000,15,0,1779.356500,baseline,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4295,4320.000000,15,0,1858.000000,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,15,0,2807.000000,baseline,nbiot,180 -on8,0,0,24,1,0,999,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1983,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,774,4320.000000,15,0,1754.006500,baseline,nbiot,180 -on7,0,0,23,1,0,1902,4249.000000,16,0,1842.606500,baseline,nbiot,180 -on3,0,0,24,1,0,1371,4320.000000,16,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,900,4320.000000,16,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,198,4320.000000,16,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1518,4320.000000,16,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2421,4320.000000,16,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,16,0,2592.500000,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,baseline,nbiot,180 -on9,0,0,24,1,0,81,4320.000000,16,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,16,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3764,4320.000000,16,0,1767.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,17,0,2784.250000,baseline,nbiot,180 -on6,0,0,24,1,0,1980,4320.000000,17,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4289,4320.000000,17,0,1748.800000,baseline,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,17,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3602,4320.000000,17,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,1,0,1392,4190.000000,17,0,1702.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1715,4320.000000,17,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,17,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2160,4320.000000,17,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,17,0,1728.000000,baseline,nbiot,180 -on4,0,0,23,1,0,1668,4306.000000,17,0,1767.256500,baseline,nbiot,180 -on9,0,0,24,1,0,1501,4320.000000,17,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,399,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,371,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2700,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1098,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3411,4320.000000,18,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,18,0,2387.100000,baseline,nbiot,180 -on6,0,0,24,1,0,1750,4320.000000,18,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4313,4320.000000,18,0,1845.000000,baseline,nbiot,180 -on9,0,0,24,1,0,1723,4320.000000,18,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1493,4320.000000,19,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1182,4320.000000,19,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4290,4320.000000,19,0,1845.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,19,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,294,4320.000000,19,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,19,0,2521.650000,baseline,nbiot,180 -on1,0,0,24,1,0,1057,4320.000000,19,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,499,4320.000000,19,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2288,4320.000000,19,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,195,4320.000000,19,0,1754.006500,baseline,nbiot,180 -on2,0,0,22,1,0,1972,4136.000000,19,0,1680.406500,baseline,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,19,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4269,4320.000000,20,0,1863.200000,baseline,nbiot,180 -on6,0,0,24,1,0,2586,4320.000000,20,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,20,0,2795.950000,baseline,nbiot,180 -on2,0,0,24,1,0,3829,4320.000000,20,0,1871.006500,baseline,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,20,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2441,4320.000000,20,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1639,4320.000000,20,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,20,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2195,4320.000000,20,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4287,4320.000000,20,0,1750.100000,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,20,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,751,4320.000000,20,0,1755.306500,baseline,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,21,0,2644.500000,baseline,nbiot,180 -on7,0,0,24,1,0,3260,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,4132,4320.000000,21,0,1759.856500,baseline,nbiot,180 -on6,0,0,24,0,0,4299,4320.000000,21,0,1845.000000,baseline,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,574,4320.000000,21,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3960,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,33,4320.000000,21,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,4067,4320.000000,22,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,3028,4320.000000,22,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,22,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,62,4320.000000,22,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,564,4320.000000,22,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,22,0,2717.950000,baseline,nbiot,180 -on9,0,0,24,1,0,1941,4320.000000,22,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,1757,4320.000000,22,0,1755.306500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2541,4320.000000,22,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2464,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,69,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1980,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1153,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,15,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,23,0,2331.856500,baseline,nbiot,180 -on2,0,0,24,1,0,2520,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,118,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,48,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on7,0,0,23,1,0,720,4217.000000,23,0,1712.806500,baseline,nbiot,180 -on5,0,0,24,1,0,1003,4320.000000,23,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2883,4320.000000,24,0,1765.050000,baseline,nbiot,180 -on10,0,0,24,1,0,2895,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on6,0,0,23,1,0,540,4248.000000,24,0,1725.206500,baseline,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,261,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3240,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1103,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,370,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,24,0,2580.806500,baseline,nbiot,180 -on7,0,0,24,1,0,1805,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3420,4320.000000,24,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1669,4320.000000,25,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2081,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,767,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,25,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,122,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on0,1,10,23,0,0,0,4316.000000,25,0,2316.600000,baseline,nbiot,180 -on5,0,0,24,1,0,1645,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,25,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,26,4320.000000,26,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1130,4320.000000,26,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,26,0,2662.050000,baseline,nbiot,180 -on10,0,0,24,1,0,586,4320.000000,26,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,26,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2340,4320.000000,26,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1675,4320.000000,26,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3560,4320.000000,26,0,1895.056500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,0,0,4281,4320.000000,26,0,1845.000000,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,947,4320.000000,26,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1263,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,398,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,922,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1283,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,3453,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1805,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2160,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,27,0,2382.556500,baseline,nbiot,180 -on3,0,0,24,1,0,1252,4320.000000,27,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,389,4320.000000,27,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2013,4320.000000,28,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,28,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1528,4320.000000,28,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,781,4320.000000,28,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4301,4320.000000,28,0,1845.000000,baseline,nbiot,180 -on9,0,0,24,1,0,1409,4320.000000,28,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,28,0,2212.900000,baseline,nbiot,180 -on10,0,0,24,1,0,1800,4320.000000,28,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,28,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,2002,4320.000000,28,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3420,4320.000000,29,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1357,4320.000000,29,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1793,4320.000000,29,0,1763.756500,baseline,nbiot,180 -on8,0,0,24,1,0,2037,4320.000000,29,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,416,4320.000000,29,0,1754.006500,baseline,nbiot,180 -on4,0,0,23,1,0,2999,4320.000000,29,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,29,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2042,4320.000000,29,0,1770.256500,baseline,nbiot,180 -on5,0,0,24,1,0,1617,4320.000000,29,0,1756.606500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,29,0,2707.550000,baseline,nbiot,180 -on3,0,0,24,0,0,4289,4320.000000,29,0,1845.000000,baseline,nbiot,180 -on10,0,0,24,1,0,3027,4320.000000,29,0,1776.100000,baseline,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,30,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4300,4320.000000,30,0,1845.000000,baseline,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,30,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2945,4320.000000,30,0,1774.806500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,30,0,2525.550000,baseline,nbiot,180 -on2,0,0,24,1,0,138,4320.000000,30,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,280,4320.000000,30,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4281,4320.000000,30,0,1754.000000,baseline,nbiot,180 -on7,0,0,24,1,0,931,4320.000000,30,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,199,4320.000000,30,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3177,4320.000000,30,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4249,4320.000000,30,0,1962.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2339,4320.000000,31,0,1871.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,31,0,2372.813000,baseline,nbiot,180 -on10,0,0,24,1,0,1980,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2420,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3441,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1950,4320.000000,31,0,1780.000000,baseline,nbiot,180 -on9,0,0,24,1,0,900,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1617,4320.000000,31,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3420,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,315,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1505,4320.000000,31,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2763,4320.000000,32,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2421,4320.000000,32,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2878,4320.000000,32,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1620,4320.000000,32,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,32,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2953,4320.000000,32,0,1778.056500,baseline,nbiot,180 -on4,0,0,24,0,0,4285,4320.000000,32,0,1850.200000,baseline,nbiot,180 -on2,0,0,24,1,0,2674,4320.000000,32,0,1871.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,32,0,2745.250000,baseline,nbiot,180 -on6,0,0,24,1,0,419,4320.000000,32,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3370,4320.000000,32,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3240,4320.000000,32,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,973,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1620,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1292,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4280,4320.000000,33,0,1866.450000,baseline,nbiot,180 -on8,0,0,24,1,0,553,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1260,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,3240,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,33,0,2480.700000,baseline,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,33,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,baseline,nbiot,180 -on9,0,0,24,1,0,2700,4320.000000,34,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,34,0,2377.350000,baseline,nbiot,180 -on11,0,0,24,1,0,2816,4320.000000,34,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,34,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2498,4320.000000,34,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,34,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,34,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2490,4320.000000,34,0,1774.156500,baseline,nbiot,180 -on10,0,0,24,1,0,3060,4320.000000,34,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,718,4320.000000,35,0,1755.956500,baseline,nbiot,180 -on2,0,0,24,1,0,1515,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on8,0,0,23,1,0,790,4241.000000,35,0,1739.956500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1841,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,540,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,842,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1612,4320.000000,35,0,1861.250000,baseline,nbiot,180 -on3,0,0,24,1,0,540,4320.000000,35,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,35,0,2407.256500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,36,0,2576.250000,baseline,nbiot,180 -on11,0,0,24,1,0,2934,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1444,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2149,4320.000000,36,0,1762.456500,baseline,nbiot,180 -on4,0,0,24,1,0,34,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1990,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,36,0,1728.000000,baseline,nbiot,180 -on8,0,0,23,0,0,4262,4298.000000,36,0,1836.200000,baseline,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,138,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,36,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2160,4320.000000,37,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,37,0,2522.300000,baseline,nbiot,180 -on5,0,0,24,1,0,3729,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4319,4320.000000,37,0,1845.000000,baseline,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on3,0,0,23,1,0,1324,4207.000000,37,0,1708.806500,baseline,nbiot,180 -on9,0,0,24,1,0,2460,4320.000000,37,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,38,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,773,4320.000000,38,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1833,4320.000000,38,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2744,4320.000000,38,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,900,4320.000000,38,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2273,4320.000000,38,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,880,4320.000000,38,0,1865.150000,baseline,nbiot,180 -on7,0,0,24,1,0,4227,4320.000000,38,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,38,0,2547.000000,baseline,nbiot,180 -on2,0,0,24,1,0,1341,4320.000000,38,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,baseline,nbiot,180 -on9,0,0,24,1,0,2363,4320.000000,39,0,1754.006500,baseline,nbiot,180 -on4,0,0,23,1,0,2726,4215.000000,39,0,1712.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,39,0,2613.300000,baseline,nbiot,180 -on5,0,0,23,1,0,1208,4198.000000,39,0,1705.206500,baseline,nbiot,180 -on2,0,0,24,1,0,2596,4320.000000,39,0,1767.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,1205,4320.000000,39,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,39,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,0,0,4296,4320.000000,39,0,1854.100000,baseline,nbiot,180 -on11,0,0,24,1,0,18,4320.000000,39,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,39,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3122,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2069,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,604,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1308,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,332,4320.000000,40,0,1772.856500,baseline,nbiot,180 -on11,0,0,24,1,0,1620,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,40,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,40,0,2740.700000,baseline,nbiot,180 -on1,0,0,24,1,0,877,4320.000000,40,0,1988.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1440,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,788,4320.000000,40,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3240,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4313,4320.000000,41,0,1845.000000,baseline,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,56,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,619,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,41,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,117,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,41,0,2196.650000,baseline,nbiot,180 -on4,0,0,24,1,0,731,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,385,4320.000000,41,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,42,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,0,0,4319,4320.000000,42,0,1845.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,42,0,2363.700000,baseline,nbiot,180 -on11,0,0,24,1,0,2880,4320.000000,42,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1260,4320.000000,42,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1351,4320.000000,42,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,42,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,42,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,219,4320.000000,42,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,1082,4320.000000,43,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2340,4320.000000,43,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,43,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,38,4320.000000,43,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3414,4320.000000,43,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,43,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2525,4320.000000,43,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,720,4320.000000,43,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4255,4320.000000,43,0,1962.000000,baseline,nbiot,180 -on3,0,0,24,0,0,4308,4320.000000,43,0,1736.450000,baseline,nbiot,180 -on5,0,0,24,1,0,4176,4320.000000,43,0,1765.056500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,43,0,2795.300000,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,44,0,2573.000000,baseline,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,44,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,1,0,1260,4225.000000,44,0,1716.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1021,4320.000000,44,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3240,4320.000000,44,0,1754.643500,baseline,nbiot,180 -on3,0,0,24,1,0,975,4320.000000,44,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1620,4320.000000,44,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2462,4320.000000,44,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1853,4320.000000,44,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4292,4320.000000,45,0,1845.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1080,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,45,0,2708.850000,baseline,nbiot,180 -on2,0,0,24,1,0,1071,4320.000000,45,0,1760.500000,baseline,nbiot,180 -on1,0,0,24,1,0,2061,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1260,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,205,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1613,4320.000000,45,0,1759.206500,baseline,nbiot,180 -on5,0,0,24,1,0,1396,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2592,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1825,4320.000000,45,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,46,0,2445.600000,baseline,nbiot,180 -on8,0,0,24,0,0,4286,4320.000000,46,0,1750.750000,baseline,nbiot,180 -on5,0,0,24,1,0,2160,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,207,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3600,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3420,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4291,4320.000000,46,0,1845.000000,baseline,nbiot,180 -on11,0,0,24,1,0,900,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,71,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1080,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2880,4320.000000,46,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1068,4320.000000,47,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1508,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,846,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,966,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1749,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,929,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,47,0,2456.656500,baseline,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2929,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2364,4320.000000,47,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,782,4320.000000,47,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,1,0,479,4265.000000,48,0,1732.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,48,0,2560.663000,baseline,nbiot,180 -on6,0,0,24,1,0,2780,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,207,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1056,4320.000000,48,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,294,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,548,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2385,4320.000000,48,0,1774.156500,baseline,nbiot,180 -on10,0,0,24,1,0,2832,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,48,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,804,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,102,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,212,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3806,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,49,0,2303.900000,baseline,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,89,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,49,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2700,4320.000000,50,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,50,0,2669.850000,baseline,nbiot,180 -on2,0,0,24,1,0,24,4320.000000,50,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,50,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2112,4320.000000,50,0,1882.706500,baseline,nbiot,180 -on1,0,0,24,0,0,4285,4320.000000,50,0,1751.400000,baseline,nbiot,180 -on5,0,0,24,0,0,4303,4320.000000,50,0,1739.700000,baseline,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,50,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,45,4320.000000,50,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,124,4320.000000,50,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3316,4320.000000,50,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,374,4320.000000,50,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,51,0,2632.800000,baseline,nbiot,180 -on6,0,0,24,1,0,1629,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1557,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1407,4320.000000,51,0,1776.106500,baseline,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4319,4320.000000,51,0,1729.300000,baseline,nbiot,180 -on10,0,0,24,1,0,289,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,51,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,1,0,61,4320.000000,51,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4286,4320.000000,52,0,1750.750000,baseline,nbiot,180 -on3,0,0,24,1,0,293,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,609,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,52,0,2745.900000,baseline,nbiot,180 -on2,0,0,24,1,0,3553,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,777,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2700,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,461,4320.000000,52,0,1754.006500,baseline,nbiot,180 -on10,0,0,23,1,0,540,4279.000000,53,0,1737.606500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,53,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,1603,4320.000000,53,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,53,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,293,4320.000000,53,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,53,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1800,4320.000000,53,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4315,4320.000000,53,0,1825.493500,baseline,nbiot,180 -on5,0,0,24,1,0,2228,4320.000000,53,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2503,4320.000000,53,0,1765.706500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,53,0,2556.750000,baseline,nbiot,180 -on1,0,0,24,1,0,725,4320.000000,53,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1553,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1297,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1390,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,54,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,3060,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1157,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4302,4320.000000,54,0,1845.000000,baseline,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,54,0,2518.400000,baseline,nbiot,180 -on1,0,0,24,1,0,2340,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2766,4320.000000,54,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,55,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1161,4320.000000,55,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2755,4320.000000,55,0,1871.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1102,4320.000000,55,0,1767.006500,baseline,nbiot,180 -on5,0,0,23,1,0,1493,4265.000000,55,0,1765.156500,baseline,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,55,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,600,4320.000000,55,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1620,4320.000000,55,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2340,4320.000000,55,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,55,0,2693.250000,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,2870,4320.000000,56,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1525,4320.000000,56,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,56,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,437,4320.000000,56,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,2803,4320.000000,56,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,56,0,2309.750000,baseline,nbiot,180 -on2,0,0,24,1,0,1800,4320.000000,56,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1032,4320.000000,56,0,1754.006500,baseline,nbiot,180 -on3,0,0,23,1,0,1416,4281.000000,57,0,1947.056500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,57,0,2439.100000,baseline,nbiot,180 -on10,0,0,24,1,0,1339,4320.000000,57,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3433,4320.000000,57,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1275,4320.000000,57,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,457,4320.000000,57,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3356,4320.000000,57,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2130,4320.000000,57,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,1650,4320.000000,57,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1601,4320.000000,57,0,1767.000000,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,55,4320.000000,58,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,58,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,9,4320.000000,58,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,1209,4320.000000,58,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4297,4320.000000,58,0,1962.000000,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,58,0,2339.650000,baseline,nbiot,180 -on2,0,0,24,1,0,2507,4320.000000,58,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1919,4320.000000,58,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,425,4320.000000,58,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,19,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3582,4320.000000,59,0,1766.356500,baseline,nbiot,180 -on5,0,0,24,1,0,2568,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1039,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,754,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,59,0,2638.650000,baseline,nbiot,180 -on2,0,0,24,1,0,1505,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on11,0,0,23,1,0,1620,4278.000000,59,0,1737.206500,baseline,nbiot,180 -on7,0,0,24,0,0,4305,4320.000000,59,0,1738.393500,baseline,nbiot,180 -on1,0,0,24,1,0,79,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,59,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,197,4320.000000,60,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,60,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3960,4320.000000,60,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,238,4320.000000,60,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3420,4320.000000,60,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,60,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,60,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,2179,4320.000000,60,0,1872.956500,baseline,nbiot,180 -on11,0,0,24,0,0,4318,4320.000000,60,0,1729.950000,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,60,0,2568.450000,baseline,nbiot,180 -on5,0,0,24,1,0,1547,4320.000000,60,0,1988.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4307,4320.000000,60,0,1737.100000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1586,4320.000000,61,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,61,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1448,4320.000000,61,0,1754.006500,baseline,nbiot,180 -on4,0,0,23,0,0,4257,4263.000000,61,0,1709.750000,baseline,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,61,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2700,4320.000000,61,0,1754.006500,baseline,nbiot,180 -on9,0,0,23,1,0,180,4251.000000,61,0,1726.406500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,61,0,2504.750000,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,61,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,61,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1202,4320.000000,62,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2751,4320.000000,62,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1440,4320.000000,62,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3344,4320.000000,62,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,4183,4320.000000,62,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1161,4320.000000,62,0,1871.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,62,0,2705.600000,baseline,nbiot,180 -on1,0,0,24,1,0,1952,4320.000000,62,0,1772.856500,baseline,nbiot,180 -on4,0,0,24,1,0,195,4320.000000,62,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2520,4320.000000,62,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4306,4320.000000,62,0,1737.750000,baseline,nbiot,180 -on3,0,0,24,0,0,4260,4320.000000,63,0,1962.000000,baseline,nbiot,180 -on10,0,0,24,1,0,3447,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,99,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1661,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4288,4320.000000,63,0,1849.550000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,63,0,2603.550000,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,497,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,807,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,753,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1917,4320.000000,63,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,64,0,2781.000000,baseline,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3420,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1425,4320.000000,64,0,1764.406500,baseline,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3060,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,64,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,2076,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3233,4320.000000,64,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1198,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1623,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,3870,4320.000000,64,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,65,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2736,4320.000000,65,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,930,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1696,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,183,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,65,0,2565.200000,baseline,nbiot,180 -on11,0,0,24,1,0,581,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,830,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,822,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4284,4320.000000,65,0,1971.743500,baseline,nbiot,180 -on1,0,0,24,1,0,1182,4320.000000,65,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4307,4320.000000,66,0,1737.100000,baseline,nbiot,180 -on10,0,0,24,1,0,171,4320.000000,66,0,1760.500000,baseline,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,678,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,67,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,360,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,66,0,2408.550000,baseline,nbiot,180 -on8,0,0,24,1,0,3625,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,66,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1003,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,43,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2880,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2411,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,67,0,2541.800000,baseline,nbiot,180 -on6,0,0,24,1,0,917,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,32,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,67,0,1728.000000,baseline,nbiot,180 -on9,0,0,23,1,0,1620,4275.000000,67,0,1736.006500,baseline,nbiot,180 -on2,0,0,24,1,0,407,4320.000000,67,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1460,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1980,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3780,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,68,0,2496.306500,baseline,nbiot,180 -on11,0,0,24,1,0,1110,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1736,4320.000000,68,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3366,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,180,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,68,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,69,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,304,4320.000000,69,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,919,4320.000000,69,0,1754.006500,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,69,0,2347.450000,baseline,nbiot,180 -on8,0,0,24,0,0,4281,4320.000000,69,0,1754.000000,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,1,0,720,4320.000000,69,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,992,4320.000000,69,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1311,4320.000000,69,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,69,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3996,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,995,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,70,0,2537.906500,baseline,nbiot,180 -on11,0,0,24,1,0,1225,4320.000000,70,0,1848.900000,baseline,nbiot,180 -on1,0,0,24,1,0,2333,4320.000000,70,0,1763.756500,baseline,nbiot,180 -on3,0,0,24,1,0,847,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,35,4320.000000,70,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4294,4320.000000,71,0,1962.000000,baseline,nbiot,180 -on8,0,0,24,1,0,573,4320.000000,71,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2155,4320.000000,71,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,71,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,1411,4320.000000,71,0,1773.500000,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,71,0,2372.800000,baseline,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,71,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,782,4320.000000,71,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3060,4320.000000,71,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2094,4320.000000,72,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1571,4320.000000,72,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1397,4320.000000,72,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3740,4320.000000,72,0,1782.606500,baseline,nbiot,180 -on5,0,0,24,1,0,640,4320.000000,72,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,72,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2511,4320.000000,72,0,1760.506500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1105,4320.000000,72,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2340,4320.000000,72,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,72,0,2916.850000,baseline,nbiot,180 -on5,0,0,24,1,0,1800,4320.000000,73,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,73,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,414,4320.000000,73,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,73,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,2648,4320.000000,73,0,1848.900000,baseline,nbiot,180 -on2,0,0,24,1,0,1693,4320.000000,73,0,1871.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,73,0,2635.400000,baseline,nbiot,180 -on9,0,0,24,1,0,2127,4320.000000,73,0,1776.106500,baseline,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,73,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3009,4320.000000,73,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3485,4320.000000,73,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4281,4320.000000,73,0,1845.000000,baseline,nbiot,180 -on1,0,0,24,1,0,1268,4320.000000,74,0,1767.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,74,0,2562.600000,baseline,nbiot,180 -on2,0,0,24,1,0,89,4320.000000,74,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2683,4320.000000,74,0,1765.706500,baseline,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,74,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,74,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2880,4320.000000,74,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,74,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3600,4320.000000,74,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,1080,4320.000000,74,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,249,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on7,0,0,23,1,0,2092,4273.000000,75,0,1735.206500,baseline,nbiot,180 -on10,0,0,24,1,0,3010,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1026,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3960,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2350,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,921,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3806,4320.000000,75,0,1886.600000,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1800,4320.000000,75,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,75,0,2671.156500,baseline,nbiot,180 -on6,0,0,24,1,0,604,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on11,0,0,23,1,0,205,4279.000000,76,0,1737.606500,baseline,nbiot,180 -on3,0,0,24,1,0,2520,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4289,4320.000000,76,0,1748.800000,baseline,nbiot,180 -on10,0,0,24,1,0,2438,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1027,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1654,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,76,0,2699.750000,baseline,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1981,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,469,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2023,4320.000000,76,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1214,4320.000000,77,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,20,4320.000000,77,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,77,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2293,4320.000000,77,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2323,4320.000000,77,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2513,4320.000000,77,0,1846.300000,baseline,nbiot,180 -on5,0,0,24,0,0,4304,4320.000000,77,0,1845.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2035,4320.000000,77,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,4195,4320.000000,77,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,886,4320.000000,77,0,1878.806500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,77,0,2580.800000,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,77,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2160,4320.000000,78,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2713,4320.000000,78,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,78,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,1,0,3804,4217.000000,78,0,1712.806500,baseline,nbiot,180 -on7,0,0,24,0,0,4301,4320.000000,78,0,1741.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,3765,4320.000000,78,0,1770.906500,baseline,nbiot,180 -on3,0,0,24,1,0,1827,4320.000000,78,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,979,4320.000000,78,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,4149,4320.000000,78,0,1777.406500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,78,0,2730.300000,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,79,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2520,4320.000000,79,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,877,4320.000000,79,0,1769.606500,baseline,nbiot,180 -on10,0,0,24,1,0,2164,4320.000000,79,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,79,0,1754.006500,baseline,nbiot,180 -on11,0,0,23,1,0,1190,4302.000000,79,0,1746.806500,baseline,nbiot,180 -on2,0,0,24,1,0,3600,4320.000000,79,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1173,4320.000000,79,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,79,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,79,0,2304.550000,baseline,nbiot,180 -on9,0,0,24,1,0,1787,4320.000000,80,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,4220,4320.000000,80,0,1757.906500,baseline,nbiot,180 -on11,0,0,24,1,0,793,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,80,0,2695.856500,baseline,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,82,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1682,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,853,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,392,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1328,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1807,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1362,4320.000000,80,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1830,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,394,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,831,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,81,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,305,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on11,0,0,23,1,0,1371,4152.000000,81,0,1686.806500,baseline,nbiot,180 -on9,0,0,24,1,0,1102,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1724,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,81,0,2653.600000,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,81,0,1754.006500,baseline,nbiot,180 -on10,0,0,23,0,0,4271,4271.000000,82,0,1708.400000,baseline,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3960,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,721,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2025,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3565,4320.000000,82,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,438,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1333,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,82,0,1728.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,82,0,2461.200000,baseline,nbiot,180 -on2,0,0,24,1,0,755,4320.000000,82,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,204,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,996,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3240,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,83,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,387,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,18,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2094,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,83,0,2548.300000,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,83,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2700,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,940,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,84,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,1282,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,966,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,84,0,2266.850000,baseline,nbiot,180 -on9,0,0,24,1,0,1440,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,84,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4310,4320.000000,84,0,1845.000000,baseline,nbiot,180 -on7,0,0,24,1,0,1341,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1522,4320.000000,85,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1676,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1989,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,849,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2700,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,612,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,85,0,2779.056500,baseline,nbiot,180 -on4,0,0,23,1,0,0,4264.000000,85,0,1731.606500,baseline,nbiot,180 -on5,0,0,24,1,0,93,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2760,4320.000000,85,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2474,4320.000000,85,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,669,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,86,0,2573.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1265,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,805,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,70,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,203,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1638,4320.000000,86,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,782,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,261,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1088,4320.000000,86,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1800,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2697,4320.000000,87,0,1777.406500,baseline,nbiot,180 -on4,0,0,24,1,0,459,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,87,0,2610.706500,baseline,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,922,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2520,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,58,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1104,4320.000000,87,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1429,4320.000000,87,0,1871.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4301,4320.000000,88,0,1741.000000,baseline,nbiot,180 -on3,0,0,24,1,0,1198,4320.000000,88,0,1755.306500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,88,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,88,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,88,0,2591.850000,baseline,nbiot,180 -on9,0,0,24,0,0,4315,4320.000000,88,0,1845.000000,baseline,nbiot,180 -on4,0,0,24,1,0,1099,4320.000000,88,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,552,4320.000000,88,0,1754.006500,baseline,nbiot,180 -on6,0,0,23,1,0,540,4267.000000,88,0,1732.806500,baseline,nbiot,180 -on1,0,0,24,1,0,250,4320.000000,88,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1440,4320.000000,88,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,88,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,482,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,89,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,3537,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2788,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,49,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,696,4320.000000,89,0,1770.256500,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2880,4320.000000,89,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,89,0,2834.950000,baseline,nbiot,180 -on5,0,0,24,1,0,4093,4320.000000,89,0,1785.856500,baseline,nbiot,180 -on9,0,0,24,1,0,1470,4320.000000,90,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,4140,4320.000000,90,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2281,4320.000000,90,0,1892.456500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,90,0,1728.000000,baseline,nbiot,180 -on5,0,0,23,1,0,1736,4262.000000,90,0,1730.806500,baseline,nbiot,180 -on7,0,0,24,1,0,1106,4320.000000,90,0,1780.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,90,0,1754.006500,baseline,nbiot,180 -on3,0,0,23,1,0,2160,4277.000000,90,0,1736.806500,baseline,nbiot,180 -on4,0,0,24,1,0,1103,4320.000000,90,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,90,0,2571.050000,baseline,nbiot,180 -on11,0,0,24,1,0,1619,4320.000000,90,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,90,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4271,4320.000000,91,0,1871.000000,baseline,nbiot,180 -on10,0,0,24,1,0,2040,4320.000000,91,0,1760.506500,baseline,nbiot,180 -on11,0,0,24,1,0,3960,4320.000000,91,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,91,0,2462.500000,baseline,nbiot,180 -on9,0,0,24,1,0,444,4320.000000,91,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,91,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,0,0,4315,4320.000000,91,0,1845.000000,baseline,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,91,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3060,4320.000000,91,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,130,4320.000000,91,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,91,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,900,4320.000000,91,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,92,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,nbiot,180 -on0,1,6,24,0,0,0,4320.000000,92,0,2227.200000,baseline,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,92,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,92,0,1754.006500,baseline,nbiot,180 -on4,0,0,23,1,0,3143,4228.000000,92,0,1732.156500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,3240,4320.000000,92,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1027,4320.000000,92,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,93,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1444,4320.000000,93,0,1770.256500,baseline,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,93,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,764,4320.000000,93,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,852,4320.000000,93,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,93,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,93,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,baseline,nbiot,180 -on10,0,0,23,1,0,0,4276.000000,93,0,1736.406500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,93,0,2559.350000,baseline,nbiot,180 -on8,0,0,24,1,0,2921,4320.000000,93,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4283,4320.000000,94,0,1845.000000,baseline,nbiot,180 -on10,0,0,24,1,0,2340,4320.000000,94,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,919,4320.000000,94,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,1,0,132,4320.000000,94,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,94,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,94,0,1754.006500,baseline,nbiot,180 -on4,0,0,23,0,0,4267,4304.000000,94,0,1746.300000,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,94,0,2506.050000,baseline,nbiot,180 -on3,0,0,23,1,0,312,4315.000000,94,0,1752.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,94,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,0,0,4291,4320.000000,94,0,1845.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2789,4320.000000,94,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,926,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2942,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1620,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,302,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,95,0,2551.550000,baseline,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,800,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,256,4320.000000,95,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,baseline,nbiot,180 -on8,0,0,23,1,0,0,4316.000000,96,0,1752.406500,baseline,nbiot,180 -on11,0,0,23,1,0,2926,4295.000000,96,0,1744.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1727,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,282,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,427,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1503,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,96,0,2552.850000,baseline,nbiot,180 -on3,0,0,24,0,0,4296,4320.000000,96,0,1845.000000,baseline,nbiot,180 -on5,0,0,24,1,0,2440,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,96,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,285,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2098,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,97,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,778,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,784,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,97,0,2546.350000,baseline,nbiot,180 -on7,0,0,24,1,0,56,4320.000000,97,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4308,4320.000000,97,0,1736.450000,baseline,nbiot,180 -on4,0,0,24,1,0,1502,4320.000000,97,0,1871.006500,baseline,nbiot,180 -on4,0,0,23,1,0,3234,4201.000000,98,0,1839.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4283,4320.000000,98,0,1859.950000,baseline,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,98,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1180,4320.000000,98,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,497,4320.000000,98,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2325,4320.000000,98,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3060,4320.000000,98,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2340,4320.000000,98,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,4127,4320.000000,98,0,1871.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,98,0,2897.350000,baseline,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,98,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1320,4320.000000,98,0,1770.900000,baseline,nbiot,180 -on1,0,0,24,1,0,36,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,203,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1149,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3698,4320.000000,99,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,99,0,2518.406500,baseline,nbiot,180 -on9,0,0,24,1,0,1847,4320.000000,99,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,100,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,1,0,3131,4320.000000,100,0,1873.606500,baseline,nbiot,180 -on2,0,0,24,1,0,127,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2700,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,100,0,2760.850000,baseline,nbiot,180 -on6,0,0,24,1,0,3902,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,490,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,555,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,100,0,1754.656500,baseline,nbiot,180 -on3,0,0,24,1,0,369,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,494,4320.000000,100,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3780,4320.000000,101,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,316,4320.000000,101,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,101,0,2595.750000,baseline,nbiot,180 -on7,0,0,24,1,0,3154,4320.000000,101,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,73,4320.000000,101,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,554,4320.000000,101,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,101,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,951,4320.000000,101,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4319,4320.000000,101,0,1729.300000,baseline,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,101,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,263,4320.000000,101,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2160,4320.000000,101,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3341,4320.000000,102,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4295,4320.000000,102,0,1845.000000,baseline,nbiot,180 -on4,0,0,24,0,0,4273,4320.000000,102,0,1962.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,102,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,0,0,4305,4320.000000,102,0,1852.150000,baseline,nbiot,180 -on3,0,0,24,1,0,2554,4320.000000,102,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2296,4320.000000,102,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1980,4320.000000,102,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,464,4320.000000,102,0,1754.006500,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,102,0,2556.100000,baseline,nbiot,180 -on11,0,0,24,1,0,2340,4320.000000,102,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3802,4320.000000,102,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,103,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,2080,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2168,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on5,0,0,23,1,0,1092,4279.000000,103,0,1744.756500,baseline,nbiot,180 -on2,0,0,24,0,0,4304,4320.000000,103,0,1739.050000,baseline,nbiot,180 -on4,0,0,24,1,0,2520,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,103,0,2693.900000,baseline,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1800,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1260,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,103,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1800,4320.000000,104,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1127,4320.000000,104,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,104,0,1728.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,104,0,2813.500000,baseline,nbiot,180 -on8,0,0,24,1,0,742,4320.000000,104,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3042,4320.000000,104,0,1766.356500,baseline,nbiot,180 -on6,0,0,24,1,0,1440,4320.000000,104,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1106,4320.000000,104,0,1767.656500,baseline,nbiot,180 -on2,0,0,24,1,0,595,4320.000000,104,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3139,4320.000000,104,0,1775.456500,baseline,nbiot,180 -on1,0,0,24,1,0,2355,4320.000000,104,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,104,0,1845.000000,baseline,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,105,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,252,4320.000000,105,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1414,4320.000000,105,0,1771.556500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,105,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3297,4320.000000,105,0,1871.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,105,0,2642.550000,baseline,nbiot,180 -on10,0,0,24,1,0,4140,4320.000000,105,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,4096,4320.000000,105,0,1890.506500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,105,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,105,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,1978,4320.000000,105,0,1755.956500,baseline,nbiot,180 -on11,0,0,24,1,0,3571,4320.000000,105,0,1988.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3142,4320.000000,106,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2340,4320.000000,106,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,687,4320.000000,106,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,98,4320.000000,106,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,825,4320.000000,106,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,35,4320.000000,106,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,106,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,206,4320.000000,106,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2327,4320.000000,106,0,1767.656500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,106,0,2509.300000,baseline,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,107,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,107,0,2424.150000,baseline,nbiot,180 -on8,0,0,24,1,0,2869,4320.000000,107,0,1761.806500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,107,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1743,4320.000000,107,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3991,4320.000000,107,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,484,4320.000000,107,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,492,4320.000000,107,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2261,4320.000000,107,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1260,4320.000000,108,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,243,4320.000000,108,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,108,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2482,4320.000000,108,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1546,4320.000000,108,0,1754.006500,baseline,nbiot,180 -on1,0,0,23,0,0,4297,4300.000000,108,0,1837.000000,baseline,nbiot,180 -on3,0,0,24,1,0,1360,4320.000000,108,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2403,4320.000000,108,0,1754.656500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,108,0,2764.100000,baseline,nbiot,180 -on10,0,0,24,1,0,384,4320.000000,108,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2212,4320.000000,108,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1082,4320.000000,108,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,935,4320.000000,109,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,1910,4320.000000,109,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,101,4320.000000,109,0,1754.006500,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,109,0,2452.100000,baseline,nbiot,180 -on6,0,0,24,0,0,4292,4320.000000,109,0,1746.850000,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,109,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,109,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,109,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,109,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,110,0,2719.250000,baseline,nbiot,180 -on11,0,0,24,1,0,1758,4320.000000,110,0,1754.656500,baseline,nbiot,180 -on6,0,0,24,1,0,3378,4320.000000,110,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,1316,4320.000000,110,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,27,4320.000000,110,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,821,4320.000000,110,0,1772.206500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,868,4320.000000,110,0,1775.450000,baseline,nbiot,180 -on1,0,0,24,1,0,2870,4320.000000,110,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,210,4320.000000,110,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,111,0,2692.600000,baseline,nbiot,180 -on4,0,0,24,1,0,1448,4320.000000,111,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4308,4320.000000,111,0,1736.450000,baseline,nbiot,180 -on10,0,0,24,1,0,1120,4320.000000,111,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2340,4320.000000,111,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,459,4320.000000,111,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,3092,4320.000000,111,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2112,4320.000000,111,0,1887.906500,baseline,nbiot,180 -on6,0,0,24,1,0,2899,4320.000000,111,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2102,4320.000000,111,0,1759.856500,baseline,nbiot,180 -on2,0,0,24,1,0,2064,4320.000000,112,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,112,0,2626.950000,baseline,nbiot,180 -on11,0,0,24,1,0,1980,4320.000000,112,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,37,4320.000000,112,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,1984,4320.000000,112,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1328,4320.000000,112,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,2355,4320.000000,112,0,1767.656500,baseline,nbiot,180 -on5,0,0,24,1,0,3792,4320.000000,112,0,1765.706500,baseline,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,112,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4319,4320.000000,113,0,1845.000000,baseline,nbiot,180 -on2,0,0,24,0,0,4301,4320.000000,113,0,1845.000000,baseline,nbiot,180 -on3,0,0,24,1,0,2700,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4281,4320.000000,113,0,1845.000000,baseline,nbiot,180 -on1,0,0,24,1,0,677,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,784,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,113,0,2609.400000,baseline,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2348,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2055,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2233,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3197,4320.000000,113,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4285,4320.000000,114,0,1751.400000,baseline,nbiot,180 -on5,0,0,24,1,0,645,4320.000000,114,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,114,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3028,4320.000000,114,0,1967.850000,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,114,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,87,4320.000000,114,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4300,4320.000000,114,0,1741.650000,baseline,nbiot,180 -on10,0,0,24,1,0,1077,4320.000000,114,0,1759.206500,baseline,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,114,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2331,4320.000000,114,0,1871.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,114,0,2708.200000,baseline,nbiot,180 -on4,0,0,24,1,0,2160,4320.000000,114,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4303,4320.000000,115,0,1845.000000,baseline,nbiot,180 -on4,0,0,24,0,0,4256,4320.000000,115,0,1770.900000,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,115,0,2608.750000,baseline,nbiot,180 -on10,0,0,24,1,0,1491,4320.000000,115,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,115,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2735,4320.000000,115,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3162,4320.000000,115,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,115,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,115,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,720,4320.000000,115,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,561,4320.000000,115,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4316,4320.000000,115,0,1845.000000,baseline,nbiot,180 -on4,0,0,24,1,0,643,4320.000000,116,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,116,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,116,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,116,0,2604.200000,baseline,nbiot,180 -on2,0,0,24,1,0,1602,4320.000000,116,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3228,4320.000000,116,0,1764.406500,baseline,nbiot,180 -on11,0,0,24,1,0,1807,4320.000000,116,0,1754.006500,baseline,nbiot,180 -on6,0,0,23,1,0,68,4248.000000,116,0,1725.206500,baseline,nbiot,180 -on3,0,0,24,1,0,712,4320.000000,116,0,1759.850000,baseline,nbiot,180 -on10,0,0,24,1,0,3303,4320.000000,116,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,463,4320.000000,116,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,116,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,84,4320.000000,117,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2685,4320.000000,117,0,1764.406500,baseline,nbiot,180 -on5,0,0,24,0,0,4286,4320.000000,117,0,1856.700000,baseline,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,117,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4295,4320.000000,117,0,1744.900000,baseline,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,117,0,1754.006500,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,117,0,2573.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,117,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,3029,4320.000000,117,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4301,4320.000000,117,0,1835.893500,baseline,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,117,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2700,4320.000000,117,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3971,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3612,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4302,4320.000000,118,0,1845.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4306,4320.000000,118,0,1845.000000,baseline,nbiot,180 -on8,0,0,24,1,0,728,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,4174,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,118,0,2491.100000,baseline,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,118,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,267,4320.000000,118,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,962,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on8,0,0,23,1,0,827,4270.000000,119,0,1734.006500,baseline,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1047,4320.000000,119,0,1776.100000,baseline,nbiot,180 -on5,0,0,24,1,0,611,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,39,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,119,0,2663.356500,baseline,nbiot,180 -on11,0,0,24,1,0,3600,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,254,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2384,4320.000000,119,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2160,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,286,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1260,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,601,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,120,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4301,4320.000000,120,0,1845.000000,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,120,0,2468.350000,baseline,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3975,4320.000000,121,0,1969.800000,baseline,nbiot,180 -on1,0,0,24,0,0,4292,4320.000000,121,0,1746.850000,baseline,nbiot,180 -on2,0,0,24,1,0,1754,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2220,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,121,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2258,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2436,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,121,0,2519.700000,baseline,nbiot,180 -on4,0,0,24,1,0,3600,4320.000000,121,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,3420,4320.000000,122,0,1871.006500,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,122,0,2660.750000,baseline,nbiot,180 -on7,0,0,24,1,0,4127,4320.000000,122,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,137,4320.000000,122,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,122,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,2374,4320.000000,122,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,122,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2777,4320.000000,122,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4314,4320.000000,122,0,1733.200000,baseline,nbiot,180 -on8,0,0,24,0,0,4277,4320.000000,123,0,1757.900000,baseline,nbiot,180 -on11,0,0,24,1,0,1569,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,918,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,123,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2355,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4276,4320.000000,123,0,1757.887000,baseline,nbiot,180 -on4,0,0,24,1,0,1495,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1271,4320.000000,123,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,123,0,2851.850000,baseline,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,124,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,124,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4283,4320.000000,124,0,1752.693500,baseline,nbiot,180 -on5,0,0,24,1,0,1800,4320.000000,124,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2787,4320.000000,124,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,124,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1643,4320.000000,124,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,124,0,1754.006500,baseline,nbiot,180 -on3,0,0,23,1,0,840,4260.000000,124,0,1730.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4308,4320.000000,124,0,1736.450000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,124,0,2777.750000,baseline,nbiot,180 -on4,0,0,23,1,0,2290,4236.000000,124,0,1743.806500,baseline,nbiot,180 -on6,0,0,24,1,0,32,4320.000000,125,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,591,4320.000000,125,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,125,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,720,4320.000000,125,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,125,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,1955,4320.000000,125,0,1771.556500,baseline,nbiot,180 -on1,0,0,24,0,0,4263,4320.000000,125,0,1869.700000,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1758,4320.000000,125,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,360,4320.000000,125,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,125,0,2587.950000,baseline,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,798,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,1756,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,126,0,2510.600000,baseline,nbiot,180 -on6,0,0,24,1,0,853,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,927,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,370,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3266,4320.000000,126,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,127,0,2341.600000,baseline,nbiot,180 -on9,0,0,24,1,0,984,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1131,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,673,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1095,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,127,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4317,4320.000000,127,0,1845.000000,baseline,nbiot,180 -on6,0,0,24,1,0,774,4320.000000,127,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3780,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,435,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,128,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1779,4320.000000,128,0,1777.406500,baseline,nbiot,180 -on8,0,0,24,1,0,1572,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1000,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,853,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1744,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,903,4320.000000,128,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,128,0,2648.400000,baseline,nbiot,180 -on1,0,0,24,1,0,756,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,129,0,2454.056500,baseline,nbiot,180 -on4,0,0,24,1,0,2032,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2340,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,313,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,16,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1620,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,129,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2034,4320.000000,130,0,1762.456500,baseline,nbiot,180 -on3,0,0,24,1,0,2,4320.000000,130,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1579,4320.000000,130,0,1781.956500,baseline,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,130,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,130,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1568,4320.000000,130,0,1889.856500,baseline,nbiot,180 -on10,0,0,23,1,0,1977,4278.000000,130,0,1854.206500,baseline,nbiot,180 -on4,0,0,24,1,0,1575,4320.000000,130,0,1754.006500,baseline,nbiot,180 -on5,0,0,23,1,0,419,4291.000000,130,0,1742.406500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,130,0,2608.756500,baseline,nbiot,180 -on1,0,0,24,1,0,2542,4320.000000,130,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2073,4320.000000,130,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1804,4320.000000,131,0,2004.906500,baseline,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,131,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4286,4320.000000,131,0,1863.200000,baseline,nbiot,180 -on11,0,0,24,1,0,2160,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,258,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,303,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,131,0,2662.700000,baseline,nbiot,180 -on2,0,0,24,1,0,2771,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,540,4320.000000,131,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,132,0,2396.206500,baseline,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1260,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,757,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1339,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,627,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on10,0,0,23,1,0,399,4224.000000,132,0,1715.606500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,720,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,132,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,58,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,264,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4299,4320.000000,133,0,1742.300000,baseline,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,133,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1904,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,260,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,133,0,2496.300000,baseline,nbiot,180 -on9,0,0,24,1,0,2513,4320.000000,133,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1874,4320.000000,133,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,134,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,3883,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2486,4320.000000,134,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1341,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2030,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2160,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,134,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,134,0,2613.950000,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,135,0,2525.550000,baseline,nbiot,180 -on6,0,0,24,1,0,294,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4319,4320.000000,135,0,1729.300000,baseline,nbiot,180 -on3,0,0,24,0,0,4291,4320.000000,135,0,1845.000000,baseline,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1735,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,448,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2089,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2160,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,303,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,135,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,136,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2925,4320.000000,136,0,1895.056500,baseline,nbiot,180 -on2,0,0,24,1,0,1842,4320.000000,136,0,1759.206500,baseline,nbiot,180 -on11,0,0,24,0,0,4315,4320.000000,136,0,1731.900000,baseline,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,136,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2757,4320.000000,136,0,1756.606500,baseline,nbiot,180 -on3,0,0,24,0,0,4289,4320.000000,136,0,1748.800000,baseline,nbiot,180 -on1,0,0,23,1,0,220,4253.000000,136,0,1727.206500,baseline,nbiot,180 -on4,0,0,24,1,0,2889,4320.000000,136,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,136,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,4278,4320.000000,136,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,136,0,2910.350000,baseline,nbiot,180 -on1,0,0,24,1,0,3578,4320.000000,137,0,1768.956500,baseline,nbiot,180 -on9,0,0,24,1,0,675,4320.000000,137,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,137,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1072,4320.000000,137,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1827,4320.000000,137,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4243,4320.000000,137,0,1982.150000,baseline,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,137,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,137,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,137,0,2812.850000,baseline,nbiot,180 -on11,0,0,24,1,0,3180,4320.000000,137,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,1,0,297,4320.000000,137,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,137,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,3555,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,491,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1982,4320.000000,138,0,1988.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4299,4320.000000,138,0,1742.300000,baseline,nbiot,180 -on8,0,0,24,1,0,204,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2212,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1902,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2231,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,138,0,2782.300000,baseline,nbiot,180 -on11,0,0,24,1,0,1683,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1521,4320.000000,138,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,139,0,2374.750000,baseline,nbiot,180 -on3,0,0,24,1,0,1752,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2799,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,37,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1737,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,762,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,139,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,3232,4320.000000,140,0,1871.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1711,4320.000000,140,0,1760.493500,baseline,nbiot,180 -on8,0,0,24,1,0,3600,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,754,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1213,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1800,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,393,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,236,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,140,0,2532.056500,baseline,nbiot,180 -on6,0,0,24,1,0,1708,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,310,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,478,4320.000000,140,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,141,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,4048,4320.000000,141,0,1871.006500,baseline,nbiot,180 -on10,0,0,24,1,0,3551,4320.000000,141,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,baseline,nbiot,180 -on9,0,0,24,1,0,210,4320.000000,141,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1909,4320.000000,141,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,141,0,2476.800000,baseline,nbiot,180 -on8,0,0,24,1,0,3633,4320.000000,141,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2996,4320.000000,141,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2934,4320.000000,141,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,141,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2700,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1210,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4285,4320.000000,142,0,1950.293500,baseline,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2724,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,215,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4292,4320.000000,142,0,1845.000000,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,142,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2880,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,142,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,142,0,2362.400000,baseline,nbiot,180 -on1,0,0,24,1,0,1260,4320.000000,143,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,143,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,508,4320.000000,143,0,1775.456500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,baseline,nbiot,180 -on9,0,0,24,1,0,4071,4320.000000,143,0,1772.856500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,143,0,2600.950000,baseline,nbiot,180 -on2,0,0,24,1,0,2160,4320.000000,143,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,143,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1198,4320.000000,143,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4318,4320.000000,143,0,1729.950000,baseline,nbiot,180 -on11,0,0,24,1,0,1117,4320.000000,143,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1456,4320.000000,143,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1800,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3530,4320.000000,144,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,42,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,144,0,2418.306500,baseline,nbiot,180 -on10,0,0,24,1,0,3060,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1317,4320.000000,144,0,1865.800000,baseline,nbiot,180 -on5,0,0,24,1,0,2340,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2348,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,720,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2989,4320.000000,144,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1260,4320.000000,145,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,32,4320.000000,145,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,911,4320.000000,145,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,145,0,2940.906500,baseline,nbiot,180 -on5,0,0,24,1,0,2688,4320.000000,145,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,707,4320.000000,145,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1460,4320.000000,145,0,1780.656500,baseline,nbiot,180 -on4,0,0,24,1,0,264,4320.000000,145,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1177,4320.000000,145,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,480,4320.000000,145,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3028,4320.000000,145,0,1775.456500,baseline,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,145,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,146,0,2392.956500,baseline,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,825,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,741,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1065,4320.000000,146,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3060,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3359,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1080,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2148,4320.000000,146,0,1762.456500,baseline,nbiot,180 -on9,0,0,24,1,0,580,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,548,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3116,4320.000000,146,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2857,4320.000000,147,0,1775.456500,baseline,nbiot,180 -on5,0,0,24,1,0,1295,4320.000000,147,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,147,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2520,4320.000000,147,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,147,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,147,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4301,4320.000000,147,0,1741.643500,baseline,nbiot,180 -on7,0,0,24,1,0,2413,4320.000000,147,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,147,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4300,4320.000000,147,0,1741.650000,baseline,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,147,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,147,0,2612.000000,baseline,nbiot,180 -on1,0,0,24,1,0,3705,4320.000000,148,0,1763.106500,baseline,nbiot,180 -on11,0,0,24,1,0,1958,4320.000000,148,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,1,0,660,4320.000000,148,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,539,4320.000000,148,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2,4320.000000,148,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,26,4320.000000,148,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,148,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2693,4320.000000,148,0,1759.206500,baseline,nbiot,180 -on7,0,0,24,1,0,837,4320.000000,148,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,148,0,2781.000000,baseline,nbiot,180 -on9,0,0,24,0,0,4302,4320.000000,148,0,1845.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2164,4320.000000,148,0,1767.000000,baseline,nbiot,180 -on4,0,0,24,1,0,1820,4320.000000,149,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,1,0,4019,4320.000000,149,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1494,4320.000000,149,0,1783.906500,baseline,nbiot,180 -on1,0,0,23,1,0,2602,4290.000000,149,0,1742.006500,baseline,nbiot,180 -on3,0,0,24,1,0,765,4320.000000,149,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,149,0,2799.200000,baseline,nbiot,180 -on10,0,0,24,1,0,1572,4320.000000,149,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,18,4320.000000,149,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,900,4320.000000,149,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,149,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,149,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,2675,4320.000000,149,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4316,4320.000000,150,0,1731.250000,baseline,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,150,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,19,4320.000000,150,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,467,4320.000000,150,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2274,4320.000000,150,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,150,0,2581.450000,baseline,nbiot,180 -on8,0,0,24,1,0,3139,4320.000000,150,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1611,4320.000000,150,0,1767.656500,baseline,nbiot,180 -on3,0,0,24,1,0,661,4320.000000,150,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,387,4320.000000,150,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,715,4320.000000,151,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1663,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3240,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,67,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2833,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1142,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1208,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1800,4320.000000,151,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,151,0,2615.906500,baseline,nbiot,180 -on1,0,0,24,1,0,1228,4320.000000,151,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3386,4320.000000,151,0,1889.856500,baseline,nbiot,180 -on1,0,0,24,1,0,87,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,669,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,32,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,1705,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2880,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3250,4320.000000,152,0,1988.006500,baseline,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,383,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,152,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,152,0,2447.550000,baseline,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,153,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1800,4320.000000,153,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,297,4320.000000,153,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2520,4320.000000,153,0,1754.006500,baseline,nbiot,180 -on11,0,0,23,1,0,1396,4276.000000,153,0,1736.406500,baseline,nbiot,180 -on7,0,0,24,1,0,2891,4320.000000,153,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,913,4320.000000,153,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,153,0,2552.206500,baseline,nbiot,180 -on6,0,0,24,1,0,4140,4320.000000,153,0,1754.656500,baseline,nbiot,180 -on2,0,0,24,1,0,1872,4320.000000,153,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,996,4320.000000,153,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,153,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,154,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1406,4320.000000,154,0,1780.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,1528,4320.000000,154,0,1828.106500,baseline,nbiot,180 -on11,0,0,24,1,0,2265,4320.000000,154,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,667,4320.000000,154,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,154,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,704,4320.000000,154,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3616,4320.000000,154,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,154,0,2684.800000,baseline,nbiot,180 -on6,0,0,24,1,0,3075,4320.000000,154,0,1774.806500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,155,0,2686.750000,baseline,nbiot,180 -on10,0,0,24,1,0,471,4320.000000,155,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2417,4320.000000,155,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3692,4320.000000,155,0,1763.106500,baseline,nbiot,180 -on6,0,0,24,1,0,2332,4320.000000,155,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4308,4320.000000,155,0,1848.243500,baseline,nbiot,180 -on9,0,0,24,1,0,1669,4320.000000,155,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,155,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,906,4320.000000,155,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,155,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,737,4320.000000,155,0,1754.656500,baseline,nbiot,180 -on8,0,0,23,1,0,180,4269.000000,155,0,1733.606500,baseline,nbiot,180 -on11,0,0,24,1,0,2160,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3960,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,194,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1800,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3420,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,540,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1280,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1433,4320.000000,156,0,1873.606500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,156,0,1728.000000,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,156,0,2649.050000,baseline,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,156,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1620,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4304,4320.000000,157,0,1845.000000,baseline,nbiot,180 -on1,0,0,24,1,0,407,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2880,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,3240,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1556,4320.000000,157,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,157,0,2291.550000,baseline,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,158,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1468,4320.000000,158,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,0,0,4291,4320.000000,158,0,1845.000000,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,1244,4320.000000,158,0,1895.056500,baseline,nbiot,180 -on2,0,0,24,1,0,2340,4320.000000,158,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2504,4320.000000,158,0,1765.056500,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,158,0,2720.550000,baseline,nbiot,180 -on9,0,0,24,1,0,688,4320.000000,158,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,566,4320.000000,158,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4309,4320.000000,158,0,1845.000000,baseline,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2367,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,159,0,2452.756500,baseline,nbiot,180 -on6,0,0,24,1,0,761,4320.000000,159,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2066,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,396,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2813,4320.000000,159,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,395,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1622,4320.000000,159,0,1871.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2046,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,730,4320.000000,159,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1398,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,655,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2332,4320.000000,160,0,1759.856500,baseline,nbiot,180 -on6,0,0,24,1,0,10,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,900,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,250,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,160,0,2656.206500,baseline,nbiot,180 -on3,0,0,24,1,0,831,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1431,4320.000000,160,0,1760.500000,baseline,nbiot,180 -on7,0,0,24,1,0,1080,4320.000000,160,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,161,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1303,4320.000000,161,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,161,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4316,4320.000000,161,0,1731.250000,baseline,nbiot,180 -on6,0,0,24,1,0,4066,4320.000000,161,0,1769.606500,baseline,nbiot,180 -on5,0,0,24,1,0,727,4320.000000,161,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,161,0,2771.900000,baseline,nbiot,180 -on9,0,0,24,1,0,1011,4320.000000,161,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,600,4320.000000,161,0,1754.006500,baseline,nbiot,180 -on4,0,0,23,1,0,0,4192.000000,161,0,1702.806500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,161,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,161,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,713,4320.000000,162,0,1846.950000,baseline,nbiot,180 -on5,0,0,24,1,0,83,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2160,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2513,4320.000000,162,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,273,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,282,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,436,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,162,0,2488.506500,baseline,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,162,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2743,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on8,0,0,23,0,0,4280,4280.000000,163,0,1712.000000,baseline,nbiot,180 -on2,0,0,24,1,0,205,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,935,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,163,0,2959.750000,baseline,nbiot,180 -on11,0,0,24,1,0,4115,4320.000000,163,0,1770.906500,baseline,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2602,4320.000000,163,0,1759.856500,baseline,nbiot,180 -on10,0,0,24,1,0,1751,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1086,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,163,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,219,4320.000000,164,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,164,0,2686.750000,baseline,nbiot,180 -on11,0,0,24,1,0,1969,4320.000000,164,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,164,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,164,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4292,4320.000000,164,0,1845.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1776,4320.000000,164,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3670,4320.000000,164,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1969,4320.000000,164,0,1775.456500,baseline,nbiot,180 -on5,0,0,24,1,0,1260,4320.000000,164,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,164,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1651,4320.000000,164,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1712,4320.000000,165,0,1770.906500,baseline,nbiot,180 -on9,0,0,24,1,0,2302,4320.000000,165,0,1779.356500,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,165,0,2774.500000,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,83,4320.000000,165,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4316,4320.000000,165,0,1845.000000,baseline,nbiot,180 -on2,0,0,24,1,0,2340,4320.000000,165,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3306,4320.000000,165,0,1884.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4305,4320.000000,165,0,1845.000000,baseline,nbiot,180 -on6,0,0,24,1,0,2520,4320.000000,165,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1475,4320.000000,165,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,859,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,166,0,2612.650000,baseline,nbiot,180 -on11,0,0,24,0,0,4308,4320.000000,166,0,2079.000000,baseline,nbiot,180 -on1,0,0,24,1,0,1260,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,166,0,1728.000000,baseline,nbiot,180 -on9,0,0,24,1,0,489,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2880,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,763,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1838,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2595,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,912,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,279,4320.000000,166,0,1754.006500,baseline,nbiot,180 -on3,0,0,23,1,0,2150,4310.000000,167,0,1750.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,167,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,394,4320.000000,167,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,239,4320.000000,167,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,167,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4306,4320.000000,167,0,1845.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4282,4320.000000,167,0,1753.343500,baseline,nbiot,180 -on5,0,0,23,1,0,2468,4268.000000,167,0,1733.206500,baseline,nbiot,180 -on9,0,0,24,0,0,4316,4320.000000,167,0,1731.243500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,167,0,2389.700000,baseline,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,167,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3993,4320.000000,167,0,1766.356500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,168,0,2446.900000,baseline,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,168,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,330,4320.000000,168,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1195,4320.000000,168,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,168,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,168,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1648,4320.000000,168,0,1859.300000,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,477,4320.000000,168,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,3373,4320.000000,168,0,1988.006500,baseline,nbiot,180 -on3,0,0,23,1,0,2452,4252.000000,168,0,1726.806500,baseline,nbiot,180 -on4,0,0,24,1,0,3652,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2340,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,1476,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,565,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,739,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,169,0,2487.200000,baseline,nbiot,180 -on10,0,0,24,0,0,4282,4320.000000,169,0,1962.000000,baseline,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1800,4320.000000,169,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,170,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,170,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,434,4320.000000,170,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1429,4320.000000,170,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2497,4320.000000,170,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,170,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,635,4320.000000,170,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3231,4320.000000,170,0,1776.106500,baseline,nbiot,180 -on11,0,0,24,0,0,4307,4320.000000,170,0,1842.393500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,170,0,2684.150000,baseline,nbiot,180 -on7,0,0,24,1,0,2662,4320.000000,170,0,1779.356500,baseline,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,170,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3430,4320.000000,171,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,2783,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,1,0,180,4187.000000,171,0,1700.806500,baseline,nbiot,180 -on10,0,0,24,1,0,1642,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2030,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,245,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1858,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1260,4320.000000,171,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1615,4320.000000,171,0,1757.906500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,171,0,2547.656500,baseline,nbiot,180 -on4,0,0,24,0,0,4284,4320.000000,172,0,1845.000000,baseline,nbiot,180 -on2,0,0,24,1,0,1532,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,745,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,172,0,2409.850000,baseline,nbiot,180 -on1,0,0,24,1,0,3960,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1326,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1514,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,738,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,172,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,994,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1044,4320.000000,173,0,1778.056500,baseline,nbiot,180 -on8,0,0,24,0,0,4301,4320.000000,173,0,1845.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,173,0,2712.750000,baseline,nbiot,180 -on5,0,0,24,1,0,3866,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4292,4320.000000,173,0,1845.000000,baseline,nbiot,180 -on6,0,0,24,1,0,19,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1620,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,1860,4320.000000,173,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1325,4320.000000,174,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,174,0,2735.500000,baseline,nbiot,180 -on5,0,0,24,1,0,4100,4320.000000,174,0,1891.800000,baseline,nbiot,180 -on3,0,0,24,1,0,845,4320.000000,174,0,1754.006500,baseline,nbiot,180 -on1,0,0,23,1,0,180,4301.000000,174,0,1746.406500,baseline,nbiot,180 -on4,0,0,24,1,0,3274,4320.000000,174,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,174,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,174,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,2649,4320.000000,174,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3828,4320.000000,174,0,1754.006500,baseline,nbiot,180 -on9,0,0,23,1,0,1980,4212.000000,174,0,1710.806500,baseline,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,174,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1633,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4318,4320.000000,175,0,1845.000000,baseline,nbiot,180 -on7,0,0,24,1,0,20,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,920,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,175,0,2573.650000,baseline,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,900,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2850,4320.000000,175,0,1775.456500,baseline,nbiot,180 -on6,0,0,24,1,0,3060,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,2801,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,302,4320.000000,175,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3575,4320.000000,176,0,1796.256500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,176,0,2743.300000,baseline,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,176,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1980,4320.000000,176,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4285,4320.000000,176,0,1751.400000,baseline,nbiot,180 -on8,0,0,24,1,0,909,4320.000000,176,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,176,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4313,4320.000000,176,0,1845.000000,baseline,nbiot,180 -on4,0,0,24,1,0,4001,4320.000000,176,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,770,4320.000000,176,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1541,4320.000000,176,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,176,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,3780,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,177,0,2742.650000,baseline,nbiot,180 -on5,0,0,24,1,0,4140,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1440,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4319,4320.000000,177,0,1846.300000,baseline,nbiot,180 -on3,0,0,23,1,0,547,4250.000000,177,0,1726.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2611,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,177,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,1,0,230,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,97,4320.000000,177,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,178,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1747,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3959,4320.000000,178,0,1755.306500,baseline,nbiot,180 -on3,0,0,24,1,0,2558,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,180,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1391,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2435,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,178,0,2701.700000,baseline,nbiot,180 -on6,0,0,24,1,0,1800,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2115,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,178,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,4008,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2726,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,3060,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1980,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,0,0,4294,4320.000000,179,0,1745.550000,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,179,0,2355.900000,baseline,nbiot,180 -on9,0,0,24,1,0,2019,4320.000000,179,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,180,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,180,0,2573.000000,baseline,nbiot,180 -on3,0,0,24,0,0,4295,4320.000000,180,0,1845.000000,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,180,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,180,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,636,4320.000000,180,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,920,4320.000000,180,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3459,4320.000000,180,0,1871.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1172,4320.000000,180,0,1754.006500,baseline,nbiot,180 -on10,0,0,23,0,0,4289,4289.000000,180,0,1715.600000,baseline,nbiot,180 -on9,0,0,24,1,0,1370,4320.000000,180,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,180,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1097,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on9,0,0,23,1,0,1500,4295.000000,181,0,1744.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1725,4320.000000,181,0,1900.250000,baseline,nbiot,180 -on10,0,0,24,1,0,24,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1154,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,979,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,14,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,baseline,nbiot,180 -on2,0,0,24,1,0,720,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,405,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,181,0,2561.300000,baseline,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,181,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1754,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,854,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,292,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,823,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3077,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,182,0,2687.400000,baseline,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1440,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3995,4320.000000,182,0,1871.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,182,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,1,0,1826,4320.000000,182,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,419,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1464,4320.000000,183,0,1758.556500,baseline,nbiot,180 -on8,0,0,24,1,0,2504,4320.000000,183,0,1778.056500,baseline,nbiot,180 -on4,0,0,24,1,0,2726,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,927,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,183,0,1728.000000,baseline,nbiot,180 -on9,0,0,24,1,0,1029,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3420,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,183,0,2710.800000,baseline,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,183,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1260,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2397,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1747,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2160,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,1027,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,3096,4320.000000,184,0,1885.956500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,184,0,2698.450000,baseline,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1800,4320.000000,184,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,184,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,3241,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1800,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,185,0,2587.950000,baseline,nbiot,180 -on4,0,0,24,1,0,117,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1003,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,35,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4290,4320.000000,185,0,1748.150000,baseline,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,6,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1252,4320.000000,185,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2069,4320.000000,185,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2520,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,186,0,2777.106500,baseline,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2880,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1032,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3318,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2880,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,498,4320.000000,186,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3937,4320.000000,186,0,1769.606500,baseline,nbiot,180 -on2,0,0,24,1,0,4082,4320.000000,186,0,1854.750000,baseline,nbiot,180 -on5,0,0,24,1,0,3665,4320.000000,186,0,1759.206500,baseline,nbiot,180 -on9,0,0,24,0,0,4255,4320.000000,187,0,1976.300000,baseline,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,187,0,2899.300000,baseline,nbiot,180 -on10,0,0,24,1,0,3777,4320.000000,187,0,1756.606500,baseline,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,0,0,4302,4320.000000,187,0,1740.350000,baseline,nbiot,180 -on5,0,0,24,1,0,3228,4320.000000,187,0,1988.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1567,4320.000000,187,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,1752,4320.000000,187,0,1786.506500,baseline,nbiot,180 -on4,0,0,24,1,0,1620,4320.000000,187,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,562,4320.000000,187,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,54,4320.000000,187,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,0,0,4264,4320.000000,188,0,1880.100000,baseline,nbiot,180 -on7,0,0,24,1,0,1631,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,188,0,2724.450000,baseline,nbiot,180 -on2,0,0,24,1,0,1706,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,4140,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,631,4320.000000,188,0,1871.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2745,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1119,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1499,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3420,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,499,4320.000000,188,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,197,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4287,4320.000000,189,0,1750.093500,baseline,nbiot,180 -on4,0,0,24,1,0,1525,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,3600,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3060,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,189,0,2444.300000,baseline,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,189,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3833,4320.000000,189,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,1083,4320.000000,190,0,1754.006500,baseline,nbiot,180 -on0,1,6,24,0,0,0,4320.000000,190,0,2311.700000,baseline,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,190,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,601,4320.000000,190,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,395,4320.000000,190,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,187,4320.000000,190,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,0,0,4297,4320.000000,190,0,1845.000000,baseline,nbiot,180 -on6,0,0,24,1,0,1868,4320.000000,190,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,0,0,4308,4320.000000,191,0,1736.450000,baseline,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,191,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1532,4320.000000,191,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,747,4320.000000,191,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,191,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,191,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,191,0,1728.000000,baseline,nbiot,180 -on11,0,0,24,1,0,1060,4320.000000,191,0,1767.656500,baseline,nbiot,180 -on9,0,0,24,1,0,2340,4320.000000,191,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,191,0,2716.000000,baseline,nbiot,180 -on4,0,0,24,1,0,3362,4320.000000,191,0,1906.106500,baseline,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,191,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,1342,4320.000000,192,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2349,4320.000000,192,0,1891.156500,baseline,nbiot,180 -on6,0,0,24,1,0,184,4320.000000,192,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,192,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,192,0,1754.006500,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,192,0,2647.750000,baseline,nbiot,180 -on10,0,0,24,1,0,1192,4320.000000,192,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,192,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,0,0,4317,4320.000000,192,0,1730.600000,baseline,nbiot,180 -on11,0,0,24,1,0,2710,4320.000000,192,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1440,4320.000000,192,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,192,0,1728.000000,baseline,nbiot,180 -on1,0,0,24,1,0,1260,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,3009,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,3035,4320.000000,193,0,1871.006500,baseline,nbiot,180 -on7,0,0,24,1,0,1260,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,2520,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,193,0,2717.950000,baseline,nbiot,180 -on4,0,0,24,0,0,4311,4320.000000,193,0,1734.500000,baseline,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1681,4320.000000,193,0,1871.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2578,4320.000000,193,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,194,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,194,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,2210,4320.000000,194,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,3000,4320.000000,194,0,1754.006500,baseline,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,194,0,2667.906500,baseline,nbiot,180 -on6,0,0,24,1,0,2019,4320.000000,194,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,236,4320.000000,194,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,3347,4320.000000,194,0,1871.006500,baseline,nbiot,180 -on8,0,0,24,1,0,3919,4320.000000,194,0,1881.406500,baseline,nbiot,180 -on11,0,0,24,1,0,1249,4320.000000,194,0,1761.800000,baseline,nbiot,180 -on3,0,0,24,1,0,1361,4320.000000,194,0,1754.006500,baseline,nbiot,180 -on2,0,0,23,1,0,661,4198.000000,194,0,1705.206500,baseline,nbiot,180 -on6,0,0,24,1,0,2204,4320.000000,195,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2520,4320.000000,195,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,1867,4320.000000,195,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,195,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,9,4320.000000,195,0,1754.006500,baseline,nbiot,180 -on10,0,0,23,0,0,4144,4163.000000,195,0,1782.200000,baseline,nbiot,180 -on1,0,0,24,1,0,661,4320.000000,195,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,0,0,4254,4320.000000,195,0,1772.200000,baseline,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,195,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,1,0,2696,4320.000000,195,0,1988.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,195,0,2767.350000,baseline,nbiot,180 -on7,0,0,24,1,0,4131,4320.000000,195,0,1760.500000,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,baseline,nbiot,180 -on6,0,0,24,0,0,4293,4320.000000,196,0,1845.000000,baseline,nbiot,180 -on2,0,0,24,1,0,1440,4320.000000,196,0,1754.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,baseline,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,baseline,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,196,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,3060,4320.000000,196,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,113,4320.000000,196,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4290,4320.000000,196,0,1748.150000,baseline,nbiot,180 -on0,1,6,24,0,0,0,4320.000000,196,0,2399.450000,baseline,nbiot,180 -on3,0,0,24,1,0,3523,4320.000000,196,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,196,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,2036,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,197,0,2744.600000,baseline,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,0,0,4298,4320.000000,197,0,1858.000000,baseline,nbiot,180 -on4,0,0,24,1,0,1396,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,858,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,598,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,413,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on1,0,0,23,1,0,900,4150.000000,197,0,1686.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1900,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,920,4320.000000,197,0,1754.006500,baseline,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,198,0,2539.850000,baseline,nbiot,180 -on5,0,0,24,1,0,463,4320.000000,198,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,2606,4320.000000,198,0,1871.006500,baseline,nbiot,180 -on4,0,0,24,0,0,4289,4320.000000,198,0,1962.000000,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,2800,4320.000000,198,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,baseline,nbiot,180 -on3,0,0,24,1,0,816,4320.000000,198,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,2425,4320.000000,198,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,2896,4320.000000,198,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,1049,4320.000000,198,0,1871.006500,baseline,nbiot,180 -on9,0,0,24,1,0,452,4320.000000,198,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,199,0,1728.650000,baseline,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,305,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,199,0,2568.450000,baseline,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,3159,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,312,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,1,0,1716,4320.000000,199,0,1871.006500,baseline,nbiot,180 -on2,0,0,24,1,0,783,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on7,0,0,24,1,0,3240,4320.000000,199,0,1754.006500,baseline,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on11,0,0,24,1,0,278,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on1,0,0,24,0,0,4249,4320.000000,200,0,1962.000000,baseline,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,200,0,2645.800000,baseline,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,200,0,1728.000000,baseline,nbiot,180 -on7,0,0,24,1,0,228,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on9,0,0,24,1,0,1089,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on6,0,0,24,1,0,2817,4320.000000,200,0,1756.606500,baseline,nbiot,180 -on4,0,0,24,1,0,836,4320.000000,200,0,1754.006500,baseline,nbiot,180 -on6,0,0,27,1,0,2037,4862.900000,1,3,2387.153084,hint,nbiot,180 -on9,0,0,26,1,0,1440,4682.810000,1,2,2259.275376,hint,nbiot,180 -on11,0,0,24,1,0,759,4322.000000,1,0,1826.546584,hint,nbiot,180 -on8,0,0,25,1,0,1013,4503.041280,1,1,2044.336636,hint,nbiot,180 -on2,0,0,25,1,0,1226,4502.250960,1,1,2034.465092,hint,nbiot,180 -on10,0,0,25,1,0,1620,4502.641280,1,1,1991.721636,hint,nbiot,180 -on5,0,0,26,1,0,1361,4681.520000,1,2,2080.607792,hint,nbiot,180 -on3,0,0,25,1,0,1766,4502.000000,1,1,2033.506500,hint,nbiot,180 -on4,0,0,27,1,0,1709,4862.900000,1,3,2398.794584,hint,nbiot,180 -on1,0,0,24,1,0,249,4320.010320,1,0,1754.010836,hint,nbiot,180 -on7,0,0,24,1,0,780,4376.600640,1,1,1893.862088,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,1,0,2688.706708,hint,nbiot,180 -on10,0,0,25,1,0,833,4502.000000,2,1,1929.760000,hint,nbiot,180 -on3,0,0,25,1,0,1103,4647.969040,2,3,1905.370740,hint,nbiot,180 -on4,0,0,26,1,0,1168,4682.300000,2,2,2168.871292,hint,nbiot,180 -on7,0,0,25,1,0,1272,4502.210000,2,1,2007.974000,hint,nbiot,180 -on8,0,0,24,1,0,795,4322.989680,2,0,1900.665872,hint,nbiot,180 -on1,0,0,27,1,0,1333,4863.110000,2,3,2475.637084,hint,nbiot,180 -on11,0,0,26,1,0,1270,4681.041280,2,2,1936.759804,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,2,0,2339.006708,hint,nbiot,180 -on6,0,0,24,1,0,571,4321.989680,2,0,1856.045748,hint,nbiot,180 -on2,0,0,25,1,0,1100,4612.490000,2,2,2060.795792,hint,nbiot,180 -on9,0,0,25,1,0,720,4504.000000,2,1,2181.388292,hint,nbiot,180 -on5,0,0,25,1,0,736,4503.000000,2,1,2025.925124,hint,nbiot,180 -on5,0,0,25,1,0,882,4502.000000,3,1,1960.056500,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,3,0,3520.050000,hint,nbiot,180 -on4,0,0,27,1,0,482,4869.058400,3,3,2719.213400,hint,nbiot,180 -on9,0,0,24,1,0,900,4325.000000,3,0,1928.536832,hint,nbiot,180 -on6,0,0,25,1,0,491,4504.179040,3,1,1918.301532,hint,nbiot,180 -on10,0,0,24,1,0,360,4322.010320,3,0,1795.117544,hint,nbiot,180 -on1,0,0,26,1,0,395,4683.480000,3,2,2235.650000,hint,nbiot,180 -on2,0,0,25,1,0,1,4505.269040,3,1,2330.830824,hint,nbiot,180 -on11,0,0,26,1,0,376,4684.220000,3,2,2190.907708,hint,nbiot,180 -on7,0,0,24,1,0,0,4323.989680,3,0,2033.815996,hint,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,3,0,1728.000000,hint,nbiot,180 -on8,0,0,25,1,0,1193,4502.010320,3,1,1864.537460,hint,nbiot,180 -on9,0,0,26,1,0,185,4684.638720,4,2,2076.480612,hint,nbiot,180 -on7,0,0,25,1,0,293,4502.000000,4,1,2034.156500,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,4,0,2456.006708,hint,nbiot,180 -on2,0,0,25,1,0,167,4501.000000,4,1,1924.666376,hint,nbiot,180 -on5,0,0,25,1,0,573,4502.300000,4,1,2117.080000,hint,nbiot,180 -on10,0,0,25,1,0,181,4501.020640,4,1,1893.884964,hint,nbiot,180 -on3,0,0,24,1,0,17,4322.000000,4,0,1880.516500,hint,nbiot,180 -on11,0,0,26,1,0,1167,4681.510000,4,2,2079.947084,hint,nbiot,180 -on4,0,0,25,1,0,877,4501.300000,4,1,2033.226500,hint,nbiot,180 -on8,0,0,27,1,0,871,4860.810000,4,4,2180.235416,hint,nbiot,180 -on6,0,0,25,1,0,473,4501.010320,4,1,1891.937336,hint,nbiot,180 -on1,0,0,26,1,0,987,4681.210000,4,2,1963.938376,hint,nbiot,180 -on10,0,0,25,1,0,889,4502.180000,5,1,2035.080000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,5,0,2694.556708,hint,nbiot,180 -on5,0,0,24,1,0,360,4321.010320,5,0,1826.820836,hint,nbiot,180 -on4,0,0,24,1,0,627,4322.000000,5,0,1902.603292,hint,nbiot,180 -on7,0,0,26,1,0,905,4682.310320,5,2,2178.040628,hint,nbiot,180 -on6,0,0,24,1,0,1440,4320.010320,5,0,1754.010836,hint,nbiot,180 -on9,0,0,25,1,0,540,4503.041280,5,1,2078.786844,hint,nbiot,180 -on2,0,0,26,1,0,636,4681.279040,5,2,1958.539740,hint,nbiot,180 -on8,0,0,24,1,0,1396,4415.010320,5,1,1792.017336,hint,nbiot,180 -on11,0,0,24,1,0,2747,4322.000000,5,0,1888.700000,hint,nbiot,180 -on1,0,0,25,1,0,1054,4502.289680,5,1,2058.595788,hint,nbiot,180 -on3,0,0,24,1,0,0,4321.000000,5,0,1754.413416,hint,nbiot,180 -on11,0,0,25,1,0,1373,4501.251280,6,1,1848.867012,hint,nbiot,180 -on8,0,0,25,1,0,1659,4501.300000,6,1,1987.661500,hint,nbiot,180 -on2,0,0,24,1,0,1260,4321.000000,6,0,1825.503292,hint,nbiot,180 -on7,0,0,24,1,0,0,4322.020640,6,0,1870.138380,hint,nbiot,180 -on9,0,0,24,1,0,1080,4321.010320,6,0,1783.920836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,6,0,2444.956708,hint,nbiot,180 -on4,0,0,25,1,0,1953,4502.000000,6,1,2008.143084,hint,nbiot,180 -on3,0,0,24,1,0,1503,4322.010320,6,0,1915.360836,hint,nbiot,180 -on1,0,0,27,1,0,1949,4862.200000,6,4,2338.311168,hint,nbiot,180 -on5,0,0,27,1,0,1989,4862.300000,6,3,2212.479708,hint,nbiot,180 -on10,0,0,27,1,0,1658,4863.799680,6,4,2363.657748,hint,nbiot,180 -on6,0,0,27,1,0,1989,4863.200000,6,3,2483.206584,hint,nbiot,180 -on3,0,0,25,1,0,1373,4502.000000,7,1,1924.950000,hint,nbiot,180 -on5,0,0,25,1,0,1666,4501.220320,7,1,1941.811336,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,7,0,2867.456500,hint,nbiot,180 -on6,0,0,24,1,0,4140,4320.000000,7,0,1754.006500,hint,nbiot,180 -on4,0,0,25,1,0,272,4500.210320,7,1,1848.769128,hint,nbiot,180 -on7,0,0,25,1,0,483,4501.000000,7,1,1913.519708,hint,nbiot,180 -on10,0,0,24,1,0,23,4326.000000,7,0,1990.920000,hint,nbiot,180 -on8,0,0,25,1,0,360,4503.000000,7,1,2029.376832,hint,nbiot,180 -on2,0,0,24,1,0,3859,4320.989680,7,0,1754.402580,hint,nbiot,180 -on1,0,0,24,1,0,180,4322.979360,7,0,1956.431952,hint,nbiot,180 -on9,0,0,25,1,0,1260,4503.969040,7,1,2019.604324,hint,nbiot,180 -on11,0,0,25,1,0,1758,4501.020320,7,1,1880.371336,hint,nbiot,180 -on0,1,11,23,0,0,0,4313.000000,8,0,3197.456708,hint,nbiot,180 -on3,0,0,25,1,0,1102,4600.320320,8,2,2072.444628,hint,nbiot,180 -on5,0,0,24,1,0,3228,4321.000000,8,0,1962.400000,hint,nbiot,180 -on7,0,0,25,1,0,1566,4500.030640,8,1,1836.432172,hint,nbiot,180 -on11,0,0,25,1,0,571,4502.300000,8,1,2128.513292,hint,nbiot,180 -on10,0,0,25,1,0,1412,4501.010320,8,1,1941.727336,hint,nbiot,180 -on6,0,0,25,1,0,512,4503.979360,8,1,2110.224744,hint,nbiot,180 -on1,0,0,25,1,0,180,4504.610320,8,1,2121.079252,hint,nbiot,180 -on4,0,0,26,1,0,700,4683.238080,8,2,1954.838564,hint,nbiot,180 -on2,0,0,26,1,0,807,4682.310000,8,2,2080.937208,hint,nbiot,180 -on9,0,0,24,1,0,132,4477.579360,8,1,2014.060160,hint,nbiot,180 -on8,0,0,24,1,0,0,4320.010320,8,0,1754.010836,hint,nbiot,180 -on11,0,0,24,1,0,412,4322.010320,9,0,1855.820836,hint,nbiot,180 -on6,0,0,25,1,0,540,4502.000000,9,2,1888.765124,hint,nbiot,180 -on2,0,0,24,1,0,2424,4322.000000,9,0,1907.550000,hint,nbiot,180 -on7,0,0,24,1,0,2067,4320.010320,9,0,1754.010836,hint,nbiot,180 -on9,0,0,24,1,0,1260,4321.010320,9,0,1869.727544,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,9,0,2966.906708,hint,nbiot,180 -on10,0,0,25,1,0,0,4501.000000,9,1,1914.364916,hint,nbiot,180 -on1,0,0,25,1,0,401,4503.620640,9,1,2014.220088,hint,nbiot,180 -on4,0,0,25,1,0,1596,4501.020640,9,1,1886.228172,hint,nbiot,180 -on5,0,0,24,1,0,1080,4323.030960,9,0,1946.982508,hint,nbiot,180 -on3,0,0,24,1,0,2,4354.300000,9,1,2131.525000,hint,nbiot,180 -on8,0,0,24,1,0,560,4322.010320,9,0,1948.114128,hint,nbiot,180 -on2,0,0,24,1,0,1573,4321.000000,10,0,1758.553292,hint,nbiot,180 -on10,0,0,27,1,0,1373,4862.600000,10,3,2338.731584,hint,nbiot,180 -on7,0,0,24,1,0,650,4321.000000,10,0,1773.503292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,10,0,2481.760124,hint,nbiot,180 -on4,0,0,26,1,0,1114,4683.500000,10,2,2311.486584,hint,nbiot,180 -on6,0,0,24,1,0,923,4321.000000,10,1,1820.706500,hint,nbiot,180 -on9,0,0,26,1,0,1036,4748.800000,10,3,2351.444876,hint,nbiot,180 -on8,0,0,27,1,0,1096,4862.641280,10,4,2274.756428,hint,nbiot,180 -on3,0,0,25,1,0,604,4503.020640,10,1,2069.963132,hint,nbiot,180 -on1,0,0,27,1,0,894,4862.869040,10,3,2292.422284,hint,nbiot,180 -on5,0,0,25,1,0,1011,4500.979040,10,1,1826.404824,hint,nbiot,180 -on11,0,0,25,1,0,540,4502.738080,10,1,1990.980564,hint,nbiot,180 -on3,0,0,27,1,0,1274,4863.669040,11,3,2370.125824,hint,nbiot,180 -on11,0,0,25,1,0,0,4503.051600,11,1,2098.108972,hint,nbiot,180 -on6,0,0,24,1,0,992,4323.000000,11,0,1991.806708,hint,nbiot,180 -on8,0,0,28,1,0,1131,5044.730000,11,4,2636.873376,hint,nbiot,180 -on2,0,0,26,1,0,1128,4842.600000,11,3,2351.927876,hint,nbiot,180 -on9,0,0,27,1,0,939,4863.861280,11,3,2283.095596,hint,nbiot,180 -on1,0,0,24,1,0,34,4322.000000,11,0,1838.239876,hint,nbiot,180 -on5,0,0,24,1,0,845,4322.000000,11,0,1877.650000,hint,nbiot,180 -on10,0,0,24,1,0,720,4322.020640,11,0,1833.074964,hint,nbiot,180 -on7,0,0,25,1,0,1,4501.310320,11,1,2039.750960,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,11,0,2674.803416,hint,nbiot,180 -on4,0,0,25,1,0,1620,4501.000000,11,1,1917.205000,hint,nbiot,180 -on3,0,0,25,1,0,540,4504.030960,12,1,2020.305716,hint,nbiot,180 -on10,0,0,24,1,0,366,4322.000000,12,0,1903.909792,hint,nbiot,180 -on5,0,0,24,1,0,900,4321.010320,12,0,1870.760836,hint,nbiot,180 -on7,0,0,24,1,0,0,4321.000000,12,0,1814.466708,hint,nbiot,180 -on9,0,0,26,1,0,514,4682.210000,12,2,2075.943792,hint,nbiot,180 -on2,0,0,26,1,0,913,4684.999680,12,2,2233.671496,hint,nbiot,180 -on6,0,0,25,1,0,113,4501.010320,12,1,1940.687336,hint,nbiot,180 -on4,0,0,26,1,0,555,4682.600000,12,2,2162.296708,hint,nbiot,180 -on11,0,0,24,1,0,2456,4321.000000,12,0,1770.000000,hint,nbiot,180 -on1,0,0,24,1,0,849,4346.000000,12,1,1961.609792,hint,nbiot,180 -on8,0,0,26,1,0,700,4681.320320,12,2,2104.844628,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,12,0,2777.106708,hint,nbiot,180 -on7,0,0,26,1,0,571,4682.720320,13,2,2081.309544,hint,nbiot,180 -on3,0,0,24,1,0,2011,4355.600000,13,1,2108.593416,hint,nbiot,180 -on4,0,0,25,1,0,318,4502.300000,13,1,2046.483500,hint,nbiot,180 -on6,0,0,24,1,0,0,4380.589680,13,1,1870.127828,hint,nbiot,180 -on2,0,0,26,1,0,803,4852.130320,13,4,2251.545004,hint,nbiot,180 -on10,0,0,26,1,0,486,4682.289680,13,2,2054.902456,hint,nbiot,180 -on9,0,0,24,1,0,438,4321.989680,13,0,1794.452580,hint,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,hint,nbiot,180 -on8,0,0,24,1,0,3,4324.000000,13,0,2074.886708,hint,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,13,0,3072.850000,hint,nbiot,180 -on1,0,0,25,1,0,452,4505.020640,13,1,2107.989880,hint,nbiot,180 -on8,0,0,25,1,0,361,4504.000000,14,1,2142.939752,hint,nbiot,180 -on7,0,0,25,1,0,406,4501.420320,14,1,1917.386128,hint,nbiot,180 -on9,0,0,26,1,0,654,4682.600000,14,2,2215.453500,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,14,0,2437.806708,hint,nbiot,180 -on3,0,0,25,1,0,0,4500.630640,14,1,1826.473880,hint,nbiot,180 -on1,0,0,25,1,0,180,4503.630320,14,1,2010.368836,hint,nbiot,180 -on4,0,0,26,1,0,562,4740.569040,14,4,2068.491032,hint,nbiot,180 -on11,0,0,25,1,0,1019,4501.000000,14,1,1917.406500,hint,nbiot,180 -on2,0,0,25,1,0,472,4502.300000,14,1,2025.618292,hint,nbiot,180 -on10,0,0,26,1,0,708,4695.300000,14,3,2186.277876,hint,nbiot,180 -on6,0,0,25,1,0,668,4501.269040,14,1,1852.514324,hint,nbiot,180 -on5,0,0,27,1,0,712,5035.200000,14,4,2631.826168,hint,nbiot,180 -on3,0,0,25,1,0,1013,4502.051600,15,1,2059.800556,hint,nbiot,180 -on5,0,0,28,1,0,1399,5042.200000,15,4,2369.218168,hint,nbiot,180 -on1,0,0,24,1,0,958,4321.000000,15,1,1784.300000,hint,nbiot,180 -on6,0,0,24,1,0,0,4320.010320,15,0,1754.010836,hint,nbiot,180 -on7,0,0,26,1,0,806,4683.430000,15,2,2094.644584,hint,nbiot,180 -on4,0,0,26,1,0,1270,4682.110000,15,2,2276.747084,hint,nbiot,180 -on11,0,0,24,1,0,540,4323.000000,15,0,1954.353292,hint,nbiot,180 -on9,0,0,26,1,0,717,4683.000000,15,3,2011.299832,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,15,0,2362.160124,hint,nbiot,180 -on8,0,0,24,1,0,1154,4322.300000,15,2,2029.746500,hint,nbiot,180 -on2,0,0,28,1,0,1067,5042.610320,15,4,2318.260420,hint,nbiot,180 -on10,0,0,24,1,0,774,4322.000000,15,0,1884.156708,hint,nbiot,180 -on7,0,0,24,1,0,1108,4433.289680,16,1,2106.395996,hint,nbiot,180 -on3,0,0,24,1,0,1371,4322.000000,16,0,1888.563292,hint,nbiot,180 -on8,0,0,25,1,0,900,4502.020320,16,1,2030.271336,hint,nbiot,180 -on10,0,0,25,1,0,198,4504.630960,16,1,2161.510800,hint,nbiot,180 -on5,0,0,24,1,0,1515,4320.010320,16,1,1754.017336,hint,nbiot,180 -on1,0,0,26,1,0,1445,4682.559040,16,2,2103.338532,hint,nbiot,180 -on11,0,0,25,1,0,526,4503.310640,16,1,2062.904380,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,16,0,2994.206708,hint,nbiot,180 -on2,0,0,25,1,0,2993,4502.000000,16,1,1952.250000,hint,nbiot,180 -on9,0,0,24,1,0,81,4322.020320,16,0,1898.471336,hint,nbiot,180 -on4,0,0,24,1,0,180,4321.000000,16,0,1845.003292,hint,nbiot,180 -on6,0,0,25,1,0,1553,4503.979360,16,1,1964.768368,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,17,0,3244.840208,hint,nbiot,180 -on6,0,0,26,1,0,1756,4739.258720,17,3,2230.479904,hint,nbiot,180 -on5,0,0,25,1,0,2145,4501.310320,17,2,2007.237336,hint,nbiot,180 -on11,0,0,24,1,0,720,4321.000000,17,0,1754.413416,hint,nbiot,180 -on1,0,0,25,1,0,1751,4502.300000,17,1,1955.229792,hint,nbiot,180 -on2,0,0,23,1,0,1392,4192.000000,17,0,1767.423416,hint,nbiot,180 -on10,0,0,25,1,0,946,4502.051600,17,1,2056.947264,hint,nbiot,180 -on3,0,0,24,1,0,180,4323.000000,17,0,1880.923416,hint,nbiot,180 -on7,0,0,24,1,0,2160,4323.989680,17,0,1944.109288,hint,nbiot,180 -on8,0,0,25,1,0,3691,4502.300000,17,1,2057.020000,hint,nbiot,180 -on4,0,0,23,1,0,1628,4307.000000,17,0,1826.150000,hint,nbiot,180 -on9,0,0,24,1,0,1493,4321.590000,17,1,1808.475916,hint,nbiot,180 -on3,0,0,26,1,0,317,4719.591280,18,4,2033.417844,hint,nbiot,180 -on5,0,0,28,1,0,440,5071.710000,18,5,2712.924960,hint,nbiot,180 -on8,0,0,25,1,0,0,4504.000000,18,1,2010.321708,hint,nbiot,180 -on1,0,0,25,1,0,515,4501.180000,18,1,1891.919876,hint,nbiot,180 -on10,0,0,26,1,0,962,4682.600000,18,3,2203.896292,hint,nbiot,180 -on4,0,0,28,1,0,845,5042.600000,18,5,2371.296084,hint,nbiot,180 -on2,0,0,26,1,0,269,4681.300000,18,2,2076.873292,hint,nbiot,180 -on7,0,0,24,1,0,113,4395.220000,18,1,1923.396000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,18,0,2370.856708,hint,nbiot,180 -on6,0,0,28,1,0,501,5043.200000,18,4,2564.507668,hint,nbiot,180 -on11,0,0,25,1,0,153,4501.229040,18,1,1827.356324,hint,nbiot,180 -on9,0,0,26,1,0,285,4682.889680,18,2,2248.335664,hint,nbiot,180 -on7,0,0,24,1,0,1493,4321.990000,19,0,1871.159208,hint,nbiot,180 -on3,0,0,24,1,0,1182,4321.000000,19,0,1754.413416,hint,nbiot,180 -on10,0,0,25,1,0,1650,4501.300000,19,1,2090.290000,hint,nbiot,180 -on11,0,0,26,1,0,514,4680.320640,19,2,1989.992964,hint,nbiot,180 -on6,0,0,25,1,0,294,4503.600000,19,1,1970.915124,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,19,0,2841.456708,hint,nbiot,180 -on1,0,0,24,1,0,1057,4320.010320,19,0,1871.010836,hint,nbiot,180 -on8,0,0,24,1,0,446,4321.969360,19,1,1755.450952,hint,nbiot,180 -on9,0,0,25,1,0,2018,4501.300000,19,1,1996.033292,hint,nbiot,180 -on5,0,0,24,1,0,195,4321.000000,19,0,1835.253292,hint,nbiot,180 -on2,0,0,24,1,0,1773,4498.490000,19,2,2039.492584,hint,nbiot,180 -on4,0,0,25,1,0,1440,4502.989360,19,1,2002.845660,hint,nbiot,180 -on8,0,0,25,1,0,1467,4502.300000,20,1,2132.679792,hint,nbiot,180 -on6,0,0,26,1,0,1309,4682.600000,20,2,2215.329792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,20,0,2594.456708,hint,nbiot,180 -on2,0,0,26,1,0,874,4682.189040,20,2,1901.098824,hint,nbiot,180 -on10,0,0,25,1,0,720,4502.041280,20,1,1984.448220,hint,nbiot,180 -on5,0,0,25,1,0,742,4503.300000,20,1,2185.066584,hint,nbiot,180 -on11,0,0,27,1,0,1028,4860.641280,20,3,2177.619720,hint,nbiot,180 -on1,0,0,24,1,0,360,4323.969040,20,0,1985.961240,hint,nbiot,180 -on4,0,0,27,1,0,1077,4862.900000,20,3,2393.769876,hint,nbiot,180 -on3,0,0,26,1,0,1577,4827.900000,20,3,2313.606584,hint,nbiot,180 -on9,0,0,27,1,0,1480,4860.600000,20,3,2151.590000,hint,nbiot,180 -on7,0,0,24,1,0,689,4353.300000,20,1,1889.974792,hint,nbiot,180 -on3,0,0,27,1,0,669,4863.869040,21,3,2433.892200,hint,nbiot,180 -on4,0,0,25,1,0,351,4504.000000,21,1,2200.778000,hint,nbiot,180 -on10,0,0,25,1,0,535,4502.190320,21,1,2033.589336,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,21,0,2456.006708,hint,nbiot,180 -on7,0,0,26,1,0,1079,4681.600000,21,2,2099.483292,hint,nbiot,180 -on8,0,0,26,1,0,525,4682.520000,21,2,2196.707792,hint,nbiot,180 -on6,0,0,26,1,0,628,4681.600000,21,2,2196.333292,hint,nbiot,180 -on1,0,0,25,1,0,901,4562.600000,21,2,2085.039792,hint,nbiot,180 -on5,0,0,26,1,0,336,4683.369040,21,2,2230.248992,hint,nbiot,180 -on2,0,0,26,1,0,537,4682.548400,21,2,2133.819276,hint,nbiot,180 -on9,0,0,26,1,0,521,4682.149040,21,2,1990.067408,hint,nbiot,180 -on11,0,0,24,1,0,33,4321.010320,21,0,1870.104336,hint,nbiot,180 -on7,0,0,25,1,0,2274,4502.010320,22,1,2033.972128,hint,nbiot,180 -on10,0,0,26,1,0,2736,4682.579040,22,2,2052.003240,hint,nbiot,180 -on6,0,0,26,1,0,2281,4684.348400,22,2,2248.627692,hint,nbiot,180 -on4,0,0,24,1,0,180,4321.010320,22,0,1767.417544,hint,nbiot,180 -on5,0,0,24,1,0,62,4320.000000,22,0,1754.006708,hint,nbiot,180 -on1,0,0,24,1,0,564,4323.000000,22,0,1986.880124,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,22,0,3608.456500,hint,nbiot,180 -on9,0,0,24,1,0,1941,4322.000000,22,0,1979.323416,hint,nbiot,180 -on8,0,0,25,1,0,4065,4500.300000,22,1,1874.876500,hint,nbiot,180 -on3,0,0,24,1,0,1757,4322.989680,22,0,1872.865996,hint,nbiot,180 -on2,0,0,25,1,0,3042,4500.020320,22,1,1826.021336,hint,nbiot,180 -on11,0,0,24,1,0,2541,4321.989680,22,0,1927.955872,hint,nbiot,180 -on9,0,0,27,1,0,556,4862.600000,23,3,2358.888084,hint,nbiot,180 -on10,0,0,27,1,0,419,4863.269040,23,3,2242.220492,hint,nbiot,180 -on1,0,0,25,1,0,30,4502.948400,23,1,1954.702444,hint,nbiot,180 -on6,0,0,25,1,0,477,4501.010000,23,1,1916.760500,hint,nbiot,180 -on8,0,0,26,1,0,279,4683.600000,23,2,2355.083292,hint,nbiot,180 -on11,0,0,25,1,0,15,4502.300000,23,1,2079.373292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,23,0,2248.410124,hint,nbiot,180 -on2,0,0,25,1,0,266,4501.000000,23,1,1891.393084,hint,nbiot,180 -on3,0,0,24,1,0,118,4322.000000,23,0,1883.369792,hint,nbiot,180 -on4,0,0,25,1,0,9,4502.041280,23,1,1878.895136,hint,nbiot,180 -on7,0,0,26,1,0,398,4759.341280,23,4,2192.369636,hint,nbiot,180 -on5,0,0,27,1,0,377,4863.200000,23,3,2592.269668,hint,nbiot,180 -on2,0,0,24,1,0,1923,4322.010320,24,0,1889.627544,hint,nbiot,180 -on10,0,0,25,1,0,2880,4503.000000,24,1,1995.569916,hint,nbiot,180 -on6,0,0,24,1,0,540,4431.641280,24,1,2065.371636,hint,nbiot,180 -on3,0,0,24,1,0,1440,4321.010320,24,0,1870.760836,hint,nbiot,180 -on11,0,0,24,1,0,261,4320.010320,24,0,1754.010836,hint,nbiot,180 -on9,0,0,25,1,0,3240,4502.000000,24,1,1969.605000,hint,nbiot,180 -on1,0,0,24,1,0,1103,4321.979360,24,0,1754.811868,hint,nbiot,180 -on8,0,0,24,1,0,370,4321.000000,24,0,1815.103292,hint,nbiot,180 -on5,0,0,25,1,0,360,4508.610320,24,1,2416.472752,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,24,0,3155.153416,hint,nbiot,180 -on7,0,0,25,1,0,1374,4503.000000,24,1,1916.269916,hint,nbiot,180 -on4,0,0,25,1,0,2103,4502.000000,24,1,1967.213208,hint,nbiot,180 -on3,0,0,24,1,0,0,4320.020640,25,0,1754.021672,hint,nbiot,180 -on4,0,0,26,1,0,873,4682.979040,25,2,2079.111200,hint,nbiot,180 -on2,0,0,26,1,0,865,4682.810000,25,2,2205.325584,hint,nbiot,180 -on1,0,0,25,1,0,332,4501.000000,25,1,1917.861292,hint,nbiot,180 -on6,0,0,24,1,0,767,4321.000000,25,0,1813.809792,hint,nbiot,180 -on9,0,0,26,1,0,343,4681.358720,25,2,1898.765112,hint,nbiot,180 -on8,0,0,24,1,0,122,4321.000000,25,0,1870.100208,hint,nbiot,180 -on11,0,0,24,1,0,540,4322.000000,25,0,1803.413292,hint,nbiot,180 -on7,0,0,25,1,0,732,4501.769040,25,1,1921.822740,hint,nbiot,180 -on0,1,11,23,0,0,0,4316.000000,25,0,2434.009916,hint,nbiot,180 -on5,0,0,24,1,0,1620,4376.000000,25,2,1867.205000,hint,nbiot,180 -on10,0,0,24,1,0,360,4320.010320,25,0,1754.010836,hint,nbiot,180 -on11,0,0,24,1,0,26,4323.000000,26,0,1900.040124,hint,nbiot,180 -on7,0,0,26,1,0,694,4682.327760,26,2,1899.159436,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,26,0,3614.300000,hint,nbiot,180 -on10,0,0,24,1,0,586,4322.989680,26,0,1850.362580,hint,nbiot,180 -on6,0,0,25,1,0,2340,4504.010320,26,1,2057.282668,hint,nbiot,180 -on8,0,0,24,1,0,2340,4323.979360,26,0,1938.501744,hint,nbiot,180 -on3,0,0,25,1,0,1227,4502.010000,26,1,1917.823916,hint,nbiot,180 -on1,0,0,24,1,0,3560,4321.000000,26,0,1975.666708,hint,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,hint,nbiot,180 -on2,0,0,25,1,0,3719,4500.310320,26,1,1938.125836,hint,nbiot,180 -on9,0,0,25,1,0,293,4500.220320,26,1,1826.101336,hint,nbiot,180 -on5,0,0,24,1,0,947,4322.979360,26,0,1870.521868,hint,nbiot,180 -on5,0,0,25,1,0,1260,4501.661600,27,2,1888.642972,hint,nbiot,180 -on1,0,0,25,1,0,360,4503.000000,27,1,2075.883500,hint,nbiot,180 -on7,0,0,25,1,0,384,4501.969040,27,1,1892.431116,hint,nbiot,180 -on8,0,0,25,1,0,473,4502.000000,27,1,1978.913208,hint,nbiot,180 -on2,0,0,24,1,0,1283,4322.010320,27,0,1901.971044,hint,nbiot,180 -on10,0,0,26,1,0,371,4681.369040,27,2,1992.369240,hint,nbiot,180 -on4,0,0,24,1,0,1805,4320.000000,27,0,1754.006708,hint,nbiot,180 -on6,0,0,25,1,0,2160,4502.000000,27,1,2032.005000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,27,0,2876.953416,hint,nbiot,180 -on3,0,0,25,1,0,108,4502.989680,27,1,2016.209164,hint,nbiot,180 -on9,0,0,24,1,0,0,4323.000000,27,0,2010.110084,hint,nbiot,180 -on11,0,0,25,1,0,389,4503.051600,27,1,1931.676056,hint,nbiot,180 -on1,0,0,25,1,0,1980,4505.599680,28,2,2061.174912,hint,nbiot,180 -on8,0,0,25,1,0,541,4503.441280,28,1,2060.096636,hint,nbiot,180 -on3,0,0,24,1,0,1528,4321.000000,28,0,1768.056708,hint,nbiot,180 -on5,0,0,24,1,0,781,4321.979360,28,0,1806.148452,hint,nbiot,180 -on7,0,0,24,1,0,1013,4480.000000,28,1,1818.013208,hint,nbiot,180 -on9,0,0,25,1,0,454,4503.010320,28,1,1944.347336,hint,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,28,0,3089.100000,hint,nbiot,180 -on10,0,0,25,1,0,1800,4502.620640,28,1,2055.660172,hint,nbiot,180 -on4,0,0,26,1,0,521,4684.169360,28,2,2172.492868,hint,nbiot,180 -on11,0,0,26,1,0,817,4683.669040,28,2,2195.036032,hint,nbiot,180 -on6,0,0,26,1,0,806,4683.720000,28,2,2296.052584,hint,nbiot,180 -on11,0,0,25,1,0,685,4504.989680,29,1,2213.322372,hint,nbiot,180 -on1,0,0,24,1,0,1332,4323.000000,29,0,2010.519792,hint,nbiot,180 -on6,0,0,24,1,0,1793,4320.989680,29,0,1764.152580,hint,nbiot,180 -on8,0,0,26,1,0,1355,4685.858720,29,2,2366.810112,hint,nbiot,180 -on7,0,0,25,1,0,416,4501.989680,29,1,1942.704496,hint,nbiot,180 -on4,0,0,23,1,0,2999,4321.000000,29,0,1870.756708,hint,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,29,0,1728.000000,hint,nbiot,180 -on2,0,0,26,1,0,722,4683.507760,29,2,1988.232936,hint,nbiot,180 -on5,0,0,24,1,0,1617,4322.020640,29,0,1921.221672,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,29,0,3522.000000,hint,nbiot,180 -on3,0,0,25,1,0,868,4502.310320,29,1,2093.834044,hint,nbiot,180 -on10,0,0,26,1,0,1414,4682.989680,29,2,2005.815788,hint,nbiot,180 -on1,0,0,24,1,0,180,4321.000000,30,0,1843.963292,hint,nbiot,180 -on11,0,0,25,1,0,3154,4501.000000,30,1,2034.406500,hint,nbiot,180 -on10,0,0,25,1,0,720,4503.630960,30,1,1961.580924,hint,nbiot,180 -on6,0,0,25,1,0,648,4504.279360,30,1,2028.314952,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,30,0,3245.756708,hint,nbiot,180 -on2,0,0,24,1,0,138,4320.010320,30,0,1754.010836,hint,nbiot,180 -on3,0,0,24,1,0,280,4321.020640,30,0,1754.421672,hint,nbiot,180 -on8,0,0,26,1,0,516,4682.320640,30,2,2218.364672,hint,nbiot,180 -on7,0,0,26,1,0,596,4684.889680,30,2,2481.309164,hint,nbiot,180 -on5,0,0,25,1,0,199,4507.210000,30,1,2140.065832,hint,nbiot,180 -on9,0,0,25,1,0,1058,4501.000000,30,1,1917.406500,hint,nbiot,180 -on4,0,0,25,1,0,293,4504.989680,30,1,1998.575996,hint,nbiot,180 -on11,0,0,26,1,0,852,4682.600000,31,2,2189.569668,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,31,0,2341.606708,hint,nbiot,180 -on10,0,0,25,1,0,473,4501.000000,31,1,1917.406500,hint,nbiot,180 -on4,0,0,26,1,0,1079,4683.300000,31,2,2259.419792,hint,nbiot,180 -on5,0,0,25,1,0,1061,4502.220000,31,1,2034.055792,hint,nbiot,180 -on8,0,0,25,1,0,363,4501.041280,31,1,1898.214680,hint,nbiot,180 -on7,0,0,26,1,0,467,4682.248400,31,3,1999.180736,hint,nbiot,180 -on9,0,0,24,1,0,900,4410.748400,31,1,1790.507776,hint,nbiot,180 -on2,0,0,26,1,0,424,4683.300000,31,2,2376.386460,hint,nbiot,180 -on6,0,0,25,1,0,448,4501.180000,31,1,1945.363500,hint,nbiot,180 -on3,0,0,24,1,0,315,4321.000000,31,0,1757.253292,hint,nbiot,180 -on1,0,0,27,1,0,667,4863.600000,31,3,2312.273168,hint,nbiot,180 -on10,0,0,25,1,0,595,4501.310320,32,1,1943.270836,hint,nbiot,180 -on11,0,0,26,1,0,2086,4681.810640,32,2,2204.880548,hint,nbiot,180 -on1,0,0,25,1,0,2272,4501.300000,32,1,2036.059876,hint,nbiot,180 -on5,0,0,24,1,0,1620,4321.000000,32,0,1760.776708,hint,nbiot,180 -on8,0,0,24,1,0,540,4322.989680,32,0,1893.262580,hint,nbiot,180 -on7,0,0,25,1,0,2601,4662.900000,32,2,2437.809792,hint,nbiot,180 -on4,0,0,25,1,0,1895,4503.000000,32,1,2071.210000,hint,nbiot,180 -on2,0,0,25,1,0,1624,4506.289680,32,1,2427.959080,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,32,0,2820.656708,hint,nbiot,180 -on6,0,0,24,1,0,419,4320.000000,32,0,1754.006708,hint,nbiot,180 -on9,0,0,26,1,0,2369,4681.979040,32,2,1921.411200,hint,nbiot,180 -on3,0,0,26,1,0,1773,4684.369040,32,2,2267.862740,hint,nbiot,180 -on2,0,0,24,1,0,973,4320.989680,33,0,1754.402580,hint,nbiot,180 -on9,0,0,25,1,0,1620,4504.738080,33,1,2005.833772,hint,nbiot,180 -on7,0,0,25,1,0,1620,4502.020640,33,1,1928.279964,hint,nbiot,180 -on5,0,0,24,1,0,1292,4321.989680,33,0,1768.055872,hint,nbiot,180 -on3,0,0,25,1,0,2787,4502.300000,33,1,1971.889916,hint,nbiot,180 -on8,0,0,24,1,0,553,4321.979360,33,0,1754.805160,hint,nbiot,180 -on4,0,0,25,1,0,1260,4502.620640,33,1,1888.370088,hint,nbiot,180 -on10,0,0,24,1,0,3240,4321.010320,33,0,1870.760836,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,33,0,3171.650000,hint,nbiot,180 -on11,0,0,24,1,0,0,4320.010320,33,0,1754.010836,hint,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,hint,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,hint,nbiot,180 -on6,0,0,25,1,0,2980,4501.300000,34,1,1969.520000,hint,nbiot,180 -on9,0,0,26,1,0,1540,4683.289680,34,2,2105.379496,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,34,0,2933.106708,hint,nbiot,180 -on11,0,0,26,1,0,1684,4685.648400,34,2,2341.954484,hint,nbiot,180 -on7,0,0,24,1,0,900,4390.630960,34,1,1975.777508,hint,nbiot,180 -on8,0,0,25,1,0,1435,4503.300000,34,1,2222.910208,hint,nbiot,180 -on1,0,0,26,1,0,1412,4683.020000,34,2,2007.556084,hint,nbiot,180 -on5,0,0,27,1,0,1658,4861.900000,34,3,2334.856876,hint,nbiot,180 -on4,0,0,24,1,0,540,4321.979360,34,0,1798.355160,hint,nbiot,180 -on3,0,0,25,1,0,1260,4504.610320,34,1,2101.299336,hint,nbiot,180 -on2,0,0,26,1,0,1685,4684.499360,34,2,2273.829452,hint,nbiot,180 -on10,0,0,25,1,0,1374,4502.000000,34,1,2034.611292,hint,nbiot,180 -on4,0,0,27,1,0,936,4861.900000,35,3,2390.276500,hint,nbiot,180 -on2,0,0,26,1,0,755,4683.041280,35,2,2262.781220,hint,nbiot,180 -on8,0,0,23,1,0,790,4242.000000,35,0,1768.300000,hint,nbiot,180 -on1,0,0,24,1,0,369,4484.728080,35,1,1956.599648,hint,nbiot,180 -on6,0,0,26,1,0,1004,4752.600000,35,5,2243.842460,hint,nbiot,180 -on11,0,0,25,1,0,1048,4501.000000,35,1,1916.756500,hint,nbiot,180 -on9,0,0,24,1,0,180,4321.000000,35,0,1775.466708,hint,nbiot,180 -on10,0,0,25,1,0,296,4641.220000,35,2,2121.304500,hint,nbiot,180 -on5,0,0,27,1,0,1038,4863.410000,35,3,2423.945376,hint,nbiot,180 -on7,0,0,26,1,0,321,4684.220000,35,3,2258.084376,hint,nbiot,180 -on3,0,0,24,1,0,540,4495.010320,35,1,1968.967544,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,35,0,2455.356708,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,36,0,3750.800000,hint,nbiot,180 -on11,0,0,27,1,0,1747,4863.638080,36,3,2143.926856,hint,nbiot,180 -on1,0,0,24,1,0,1444,4322.000000,36,0,1958.900000,hint,nbiot,180 -on9,0,0,25,1,0,2083,4503.289360,36,2,1925.505576,hint,nbiot,180 -on4,0,0,25,1,0,34,4504.989680,36,1,2031.127580,hint,nbiot,180 -on10,0,0,25,1,0,1743,4503.289680,36,1,2071.325872,hint,nbiot,180 -on2,0,0,25,1,0,1260,4504.579040,36,2,1944.430072,hint,nbiot,180 -on7,0,0,25,1,0,416,4500.010320,36,1,1826.017336,hint,nbiot,180 -on8,0,0,23,0,0,4262,4298.000000,36,0,1836.200000,hint,nbiot,180 -on5,0,0,25,1,0,0,4504.738080,36,1,2100.590356,hint,nbiot,180 -on3,0,0,24,1,0,138,4322.000000,36,0,1755.716708,hint,nbiot,180 -on6,0,0,24,1,0,360,4325.979360,36,0,1862.375284,hint,nbiot,180 -on6,0,0,24,1,0,900,4321.000000,37,0,1754.413416,hint,nbiot,180 -on7,0,0,27,1,0,778,4863.459040,37,3,2356.443200,hint,nbiot,180 -on8,0,0,25,1,0,360,4503.000000,37,1,2011.865000,hint,nbiot,180 -on2,0,0,28,1,0,798,5043.420000,37,4,2450.599500,hint,nbiot,180 -on10,0,0,25,1,0,924,4501.300000,37,1,2018.920000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,37,0,2330.556708,hint,nbiot,180 -on5,0,0,26,1,0,698,4681.320000,37,2,2080.079292,hint,nbiot,180 -on11,0,0,27,1,0,1164,4862.200000,37,3,2398.573084,hint,nbiot,180 -on1,0,0,24,1,0,833,4377.000000,37,1,1903.556500,hint,nbiot,180 -on4,0,0,25,1,0,540,4502.651600,37,1,1947.765640,hint,nbiot,180 -on3,0,0,24,1,0,692,4388.020000,37,1,1832.154376,hint,nbiot,180 -on9,0,0,25,1,0,473,4501.220000,37,1,1917.696000,hint,nbiot,180 -on5,0,0,25,1,0,720,4505.938400,38,1,2168.260360,hint,nbiot,180 -on4,0,0,26,1,0,1415,4682.600000,38,2,2176.713084,hint,nbiot,180 -on10,0,0,24,1,0,773,4324.000000,38,0,1929.416708,hint,nbiot,180 -on9,0,0,25,1,0,1065,4502.279360,38,1,1925.458452,hint,nbiot,180 -on6,0,0,24,1,0,2744,4320.989680,38,0,1754.409288,hint,nbiot,180 -on11,0,0,26,1,0,1056,4682.910320,38,2,2408.094004,hint,nbiot,180 -on1,0,0,24,1,0,2273,4320.000000,38,0,1871.006708,hint,nbiot,180 -on3,0,0,25,1,0,863,4524.300000,38,2,2273.936584,hint,nbiot,180 -on7,0,0,26,1,0,1594,4681.358720,38,2,1898.765112,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,38,0,3336.750000,hint,nbiot,180 -on2,0,0,26,1,0,1053,4685.000000,38,2,2138.173208,hint,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,hint,nbiot,180 -on9,0,0,24,1,0,2363,4321.000000,39,0,1870.756708,hint,nbiot,180 -on4,0,0,23,1,0,2726,4216.989680,39,0,1828.119288,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,39,0,3005.263416,hint,nbiot,180 -on5,0,0,24,1,0,1321,4379.310320,39,1,1896.290836,hint,nbiot,180 -on2,0,0,25,1,0,1714,4502.230640,39,1,1962.638880,hint,nbiot,180 -on6,0,0,26,1,0,2909,4682.300000,39,2,2141.006416,hint,nbiot,180 -on7,0,0,24,1,0,1205,4320.000000,39,0,1754.006708,hint,nbiot,180 -on10,0,0,25,1,0,293,4504.220320,39,1,2026.628168,hint,nbiot,180 -on1,0,0,25,1,0,3057,4501.000000,39,1,1916.366292,hint,nbiot,180 -on8,0,0,26,1,0,3175,4681.500000,39,2,2054.586584,hint,nbiot,180 -on11,0,0,24,1,0,18,4323.020640,39,0,1808.788380,hint,nbiot,180 -on3,0,0,25,1,0,3060,4501.000000,39,1,1917.393292,hint,nbiot,180 -on9,0,0,24,1,0,2978,4383.300000,40,1,1926.090000,hint,nbiot,180 -on3,0,0,26,1,0,740,4683.279360,40,2,2107.955036,hint,nbiot,180 -on2,0,0,24,1,0,604,4322.010320,40,0,1918.870836,hint,nbiot,180 -on7,0,0,24,1,0,1308,4320.010320,40,0,1754.010836,hint,nbiot,180 -on10,0,0,24,1,0,332,4323.030960,40,0,1971.552508,hint,nbiot,180 -on11,0,0,25,1,0,1175,4503.310320,40,1,2163.004252,hint,nbiot,180 -on4,0,0,26,1,0,402,4682.269040,40,2,2078.560700,hint,nbiot,180 -on6,0,0,24,1,0,360,4322.000000,40,0,1868.816916,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,40,0,3128.756708,hint,nbiot,180 -on1,0,0,26,1,0,429,4684.351600,40,3,2275.819096,hint,nbiot,180 -on8,0,0,24,1,0,1440,4321.000000,40,0,1823.950000,hint,nbiot,180 -on5,0,0,25,1,0,820,4503.289680,40,2,1913.785788,hint,nbiot,180 -on5,0,0,26,1,0,873,4682.969040,41,2,2099.407324,hint,nbiot,180 -on8,0,0,26,1,0,693,4683.210000,41,2,2080.640292,hint,nbiot,180 -on11,0,0,24,1,0,720,4320.010320,41,0,1754.010836,hint,nbiot,180 -on1,0,0,24,1,0,56,4445.010320,41,1,1804.219252,hint,nbiot,180 -on9,0,0,24,1,0,619,4323.990000,41,0,2002.869208,hint,nbiot,180 -on7,0,0,26,1,0,808,4681.610320,41,2,2189.454128,hint,nbiot,180 -on10,0,0,25,1,0,1080,4502.000000,41,1,1942.500000,hint,nbiot,180 -on6,0,0,24,1,0,117,4321.000000,41,0,1768.953292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,41,0,2518.413208,hint,nbiot,180 -on4,0,0,25,1,0,731,4501.300000,41,1,2026.713292,hint,nbiot,180 -on2,0,0,25,1,0,360,4503.630960,41,1,2070.357384,hint,nbiot,180 -on3,0,0,24,1,0,385,4322.000000,41,0,1833.313292,hint,nbiot,180 -on6,0,0,25,1,0,504,4505.979360,42,1,2209.174952,hint,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hint,nbiot,180 -on3,0,0,25,1,0,3596,4500.010320,42,1,1943.017336,hint,nbiot,180 -on5,0,0,26,1,0,4020,4680.900000,42,2,2190.866500,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,42,0,3791.750000,hint,nbiot,180 -on11,0,0,24,1,0,2880,4322.000000,42,0,1840.606708,hint,nbiot,180 -on8,0,0,25,1,0,978,4503.269040,42,1,2008.937740,hint,nbiot,180 -on10,0,0,25,1,0,766,4503.220320,42,1,2004.114752,hint,nbiot,180 -on7,0,0,26,1,0,580,4686.687120,42,2,2003.883304,hint,nbiot,180 -on9,0,0,24,1,0,0,4324.620640,42,1,1959.780088,hint,nbiot,180 -on2,0,0,24,1,0,219,4324.989680,42,0,2003.925996,hint,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hint,nbiot,180 -on8,0,0,24,1,0,1082,4321.989680,43,0,1843.852580,hint,nbiot,180 -on9,0,0,25,1,0,2340,4501.620640,43,1,1850.906672,hint,nbiot,180 -on2,0,0,26,1,0,1053,4685.510000,43,2,2240.218584,hint,nbiot,180 -on7,0,0,24,1,0,38,4324.969040,43,0,1966.867948,hint,nbiot,180 -on6,0,0,25,1,0,3238,4501.300000,43,1,1967.765000,hint,nbiot,180 -on4,0,0,25,1,0,896,4502.220000,43,1,2021.049292,hint,nbiot,180 -on11,0,0,26,1,0,888,4681.979360,43,2,1939.813244,hint,nbiot,180 -on1,0,0,25,1,0,720,4501.779360,43,1,1942.243576,hint,nbiot,180 -on10,0,0,26,1,0,1308,4682.020640,43,3,1998.694796,hint,nbiot,180 -on3,0,0,26,1,0,1263,4683.589680,43,2,2321.935664,hint,nbiot,180 -on5,0,0,25,1,0,2740,4501.310320,43,1,2013.074128,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,43,0,3199.606708,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,44,0,3674.093292,hint,nbiot,180 -on10,0,0,24,1,0,180,4325.989680,44,0,2069.332912,hint,nbiot,180 -on2,0,0,24,1,0,1255,4445.358720,44,2,1852.471820,hint,nbiot,180 -on1,0,0,26,1,0,514,4682.560960,44,2,2122.624176,hint,nbiot,180 -on8,0,0,25,1,0,1039,4505.300000,44,1,2288.573292,hint,nbiot,180 -on3,0,0,24,1,0,975,4323.010320,44,0,1975.820836,hint,nbiot,180 -on9,0,0,24,1,0,1620,4320.010320,44,0,1754.010836,hint,nbiot,180 -on4,0,0,26,1,0,523,4685.289680,44,3,2198.779536,hint,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,hint,nbiot,180 -on5,0,0,25,1,0,2994,4500.010320,44,1,1826.017336,hint,nbiot,180 -on7,0,0,25,1,0,488,4501.000000,44,1,1917.608000,hint,nbiot,180 -on6,0,0,26,1,0,514,4685.958720,44,2,2103.918196,hint,nbiot,180 -on4,0,0,24,1,0,900,4320.010320,45,0,1754.010836,hint,nbiot,180 -on6,0,0,25,1,0,1525,4501.210000,45,1,2034.490500,hint,nbiot,180 -on11,0,0,24,1,0,1080,4322.010320,45,0,1805.777544,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,45,0,2775.560124,hint,nbiot,180 -on2,0,0,25,1,0,351,4501.000000,45,1,1832.711708,hint,nbiot,180 -on1,0,0,25,1,0,2070,4501.000000,45,2,1838.554792,hint,nbiot,180 -on10,0,0,25,1,0,1275,4501.769040,45,1,1826.929448,hint,nbiot,180 -on9,0,0,24,1,0,205,4321.000000,45,0,1828.753292,hint,nbiot,180 -on8,0,0,25,1,0,1629,4502.300000,45,1,2075.220000,hint,nbiot,180 -on5,0,0,24,1,0,1396,4321.000000,45,0,1756.603292,hint,nbiot,180 -on7,0,0,25,1,0,1936,4502.510000,45,1,2128.278792,hint,nbiot,180 -on3,0,0,26,1,0,1413,4684.020640,45,2,2187.233048,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,46,0,3410.603416,hint,nbiot,180 -on8,0,0,25,1,0,3509,4502.300000,46,1,2137.209876,hint,nbiot,180 -on5,0,0,25,1,0,1674,4503.310320,46,1,2202.257544,hint,nbiot,180 -on10,0,0,24,1,0,207,4322.010320,46,0,1792.530960,hint,nbiot,180 -on6,0,0,25,1,0,3600,4502.000000,46,2,1943.605000,hint,nbiot,180 -on1,0,0,24,1,0,3420,4359.000000,46,1,2021.851584,hint,nbiot,180 -on2,0,0,25,1,0,2994,4501.000000,46,1,1917.406500,hint,nbiot,180 -on11,0,0,24,1,0,900,4320.030960,46,0,1754.025800,hint,nbiot,180 -on3,0,0,25,1,0,1080,4502.958720,46,1,1913.010320,hint,nbiot,180 -on9,0,0,24,1,0,71,4321.989680,46,0,1829.169288,hint,nbiot,180 -on4,0,0,24,1,0,1080,4323.020640,46,0,1938.801588,hint,nbiot,180 -on7,0,0,25,1,0,2273,4502.989680,46,1,2059.909288,hint,nbiot,180 -on1,0,0,24,1,0,360,4321.010320,47,0,1758.317544,hint,nbiot,180 -on3,0,0,25,1,0,1068,4503.000000,47,1,2210.525124,hint,nbiot,180 -on6,0,0,24,1,0,1315,4389.310320,47,1,2002.737544,hint,nbiot,180 -on4,0,0,24,1,0,846,4322.989680,47,0,1879.215872,hint,nbiot,180 -on5,0,0,24,1,0,966,4321.000000,47,0,1801.850000,hint,nbiot,180 -on11,0,0,24,1,0,1749,4321.000000,47,0,1761.550000,hint,nbiot,180 -on8,0,0,25,1,0,929,4503.300000,47,1,2205.216584,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,47,0,2384.506708,hint,nbiot,180 -on9,0,0,25,1,0,1080,4502.030640,47,2,1951.444088,hint,nbiot,180 -on2,0,0,26,1,0,1062,4683.969040,47,2,2204.443908,hint,nbiot,180 -on10,0,0,25,1,0,1189,4502.000000,47,1,2014.910000,hint,nbiot,180 -on7,0,0,25,1,0,782,4501.000000,47,1,1888.345000,hint,nbiot,180 -on2,0,0,23,1,0,435,4266.989680,48,1,1848.125788,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,48,0,2585.740208,hint,nbiot,180 -on6,0,0,26,1,0,986,4681.579040,48,2,1940.453240,hint,nbiot,180 -on4,0,0,24,1,0,207,4458.630960,48,1,2002.320800,hint,nbiot,180 -on9,0,0,25,1,0,834,4502.289680,48,1,2033.875872,hint,nbiot,180 -on11,0,0,24,1,0,1260,4321.000000,48,0,1772.606708,hint,nbiot,180 -on7,0,0,24,1,0,294,4323.000000,48,0,1981.249876,hint,nbiot,180 -on5,0,0,24,1,0,548,4323.000000,48,0,2068.609876,hint,nbiot,180 -on3,0,0,24,1,0,1620,4321.000000,48,0,1845.400000,hint,nbiot,180 -on8,0,0,25,1,0,653,4503.000000,48,1,2047.823208,hint,nbiot,180 -on10,0,0,26,1,0,753,4684.210000,48,2,2251.548916,hint,nbiot,180 -on1,0,0,24,1,0,541,4493.979360,48,1,2067.868452,hint,nbiot,180 -on3,0,0,25,1,0,303,4502.000000,49,1,2032.076500,hint,nbiot,180 -on7,0,0,24,1,0,804,4323.989680,49,0,1915.509288,hint,nbiot,180 -on11,0,0,25,1,0,102,4502.651600,49,1,2033.195764,hint,nbiot,180 -on6,0,0,26,1,0,693,4681.338080,49,2,1898.750356,hint,nbiot,180 -on10,0,0,25,1,0,212,4503.220320,49,1,2060.203252,hint,nbiot,180 -on1,0,0,25,1,0,487,4502.300000,49,1,2006.579792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,49,0,3076.106708,hint,nbiot,180 -on5,0,0,24,1,0,900,4321.010320,49,0,1784.317544,hint,nbiot,180 -on8,0,0,24,1,0,89,4322.989680,49,0,1904.305872,hint,nbiot,180 -on4,0,0,25,1,0,180,4503.020640,49,2,2057.379964,hint,nbiot,180 -on9,0,0,24,1,0,1080,4323.000000,49,0,1880.663416,hint,nbiot,180 -on2,0,0,24,1,0,3060,4321.000000,49,0,1845.400000,hint,nbiot,180 -on4,0,0,25,1,0,1738,4501.190000,50,1,1917.482500,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,50,0,2680.256708,hint,nbiot,180 -on2,0,0,24,1,0,24,4322.000000,50,0,1812.266708,hint,nbiot,180 -on3,0,0,25,1,0,180,4504.030960,50,1,1965.555800,hint,nbiot,180 -on6,0,0,24,1,0,322,4483.300000,50,1,2063.973292,hint,nbiot,180 -on1,0,0,26,1,0,771,4681.969040,50,2,1958.159032,hint,nbiot,180 -on5,0,0,26,1,0,514,4682.510000,50,2,2164.853792,hint,nbiot,180 -on10,0,0,27,1,0,676,4864.900000,50,4,2542.522876,hint,nbiot,180 -on9,0,0,24,1,0,45,4321.989680,50,0,1816.155872,hint,nbiot,180 -on8,0,0,24,1,0,124,4399.369040,50,1,1869.799324,hint,nbiot,180 -on7,0,0,25,1,0,693,4501.989680,50,1,1891.795664,hint,nbiot,180 -on11,0,0,27,1,0,769,4863.410000,50,4,2388.851876,hint,nbiot,180 -on7,0,0,24,1,0,1620,4324.979360,51,0,1922.931868,hint,nbiot,180 -on4,0,0,24,1,0,540,4323.010320,51,0,1967.774252,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,51,0,3613.000000,hint,nbiot,180 -on6,0,0,25,1,0,1629,4505.969040,51,1,2229.256032,hint,nbiot,180 -on9,0,0,25,1,0,1981,4500.320640,51,1,1942.491672,hint,nbiot,180 -on8,0,0,24,1,0,1557,4323.000000,51,0,1871.576832,hint,nbiot,180 -on11,0,0,24,1,0,1407,4323.958720,51,0,1931.753612,hint,nbiot,180 -on5,0,0,24,1,0,900,4320.020640,51,0,1754.021672,hint,nbiot,180 -on3,0,0,24,0,0,4319,4320.000000,51,0,1729.300000,hint,nbiot,180 -on10,0,0,24,1,0,289,4320.989680,51,0,1754.402580,hint,nbiot,180 -on2,0,0,25,1,0,1846,4500.010320,51,1,1826.010836,hint,nbiot,180 -on1,0,0,24,1,0,61,4321.010320,51,0,1754.424252,hint,nbiot,180 -on8,0,0,25,1,0,834,4502.020640,52,1,1913.934880,hint,nbiot,180 -on9,0,0,25,1,0,0,4502.600000,52,1,1915.005124,hint,nbiot,180 -on7,0,0,25,1,0,1879,4501.010320,52,1,1965.517336,hint,nbiot,180 -on3,0,0,24,1,0,293,4322.010320,52,0,1936.687544,hint,nbiot,180 -on10,0,0,24,1,0,609,4322.989680,52,0,1917.702580,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,52,0,3275.656708,hint,nbiot,180 -on2,0,0,24,1,0,3553,4321.000000,52,0,1758.950000,hint,nbiot,180 -on5,0,0,24,1,0,180,4321.000000,52,0,1754.413416,hint,nbiot,180 -on11,0,0,24,1,0,777,4322.000000,52,0,1903.253292,hint,nbiot,180 -on4,0,0,26,1,0,513,4682.338080,52,2,1904.363564,hint,nbiot,180 -on6,0,0,27,1,0,765,4865.349040,52,3,2415.264532,hint,nbiot,180 -on1,0,0,24,1,0,461,4325.979360,52,0,2129.368452,hint,nbiot,180 -on10,0,0,23,1,0,540,4280.989680,53,0,1765.962580,hint,nbiot,180 -on6,0,0,25,1,0,2633,4501.000000,53,1,1917.400000,hint,nbiot,180 -on7,0,0,25,1,0,1603,4502.020320,53,1,2161.578044,hint,nbiot,180 -on11,0,0,25,1,0,962,4502.300000,53,1,2037.526708,hint,nbiot,180 -on2,0,0,24,1,0,293,4320.010000,53,0,1754.023916,hint,nbiot,180 -on4,0,0,25,1,0,741,4503.958720,53,1,2018.618488,hint,nbiot,180 -on3,0,0,25,1,0,653,4504.210000,53,1,1971.600500,hint,nbiot,180 -on9,0,0,26,1,0,1082,4681.820320,53,2,2171.078128,hint,nbiot,180 -on5,0,0,24,1,0,2228,4320.000000,53,0,1754.006708,hint,nbiot,180 -on8,0,0,24,1,0,2503,4321.000000,53,0,1838.906708,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,53,0,2976.656708,hint,nbiot,180 -on1,0,0,25,1,0,746,4504.272240,53,1,1976.787436,hint,nbiot,180 -on6,0,0,24,1,0,0,4320.010320,54,0,1754.010836,hint,nbiot,180 -on2,0,0,24,1,0,1553,4321.000000,54,0,1770.909792,hint,nbiot,180 -on5,0,0,24,1,0,1297,4321.000000,54,0,1821.350000,hint,nbiot,180 -on3,0,0,26,1,0,1543,4849.510320,54,3,2573.157420,hint,nbiot,180 -on11,0,0,25,1,0,2454,4501.000000,54,1,1917.009792,hint,nbiot,180 -on7,0,0,25,1,0,1479,4501.969040,54,1,1871.910824,hint,nbiot,180 -on9,0,0,24,1,0,1157,4321.958720,54,0,1885.713612,hint,nbiot,180 -on4,0,0,25,1,0,1566,4501.300000,54,1,2022.170000,hint,nbiot,180 -on8,0,0,24,1,0,1080,4323.989680,54,0,1991.819288,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,54,0,2568.210124,hint,nbiot,180 -on1,0,0,25,1,0,2376,4501.000000,54,1,1893.798292,hint,nbiot,180 -on10,0,0,26,1,0,1594,4681.779040,54,2,1898.738032,hint,nbiot,180 -on9,0,0,26,1,0,717,4682.041280,55,3,2033.626096,hint,nbiot,180 -on11,0,0,27,1,0,788,4863.500000,55,3,2500.934668,hint,nbiot,180 -on3,0,0,25,1,0,1373,4501.010320,55,1,1935.877336,hint,nbiot,180 -on10,0,0,26,1,0,314,4685.548080,55,2,2257.167564,hint,nbiot,180 -on5,0,0,24,1,0,838,4446.190000,55,1,1905.882500,hint,nbiot,180 -on8,0,0,25,1,0,540,4502.676160,55,1,1942.595588,hint,nbiot,180 -on1,0,0,24,1,0,600,4321.000000,55,0,1805.750000,hint,nbiot,180 -on6,0,0,25,1,0,1519,4501.300000,55,1,1952.626500,hint,nbiot,180 -on2,0,0,26,1,0,987,4682.358720,55,2,1983.275112,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,55,0,2688.706708,hint,nbiot,180 -on4,0,0,26,1,0,757,4683.000000,55,2,2107.049460,hint,nbiot,180 -on7,0,0,25,1,0,306,4501.000000,55,1,1917.009792,hint,nbiot,180 -on8,0,0,26,1,0,1629,4685.289680,56,2,2378.287332,hint,nbiot,180 -on4,0,0,26,1,0,1658,4683.610320,56,4,2259.855712,hint,nbiot,180 -on5,0,0,24,1,0,0,4320.010320,56,0,1754.010836,hint,nbiot,180 -on10,0,0,24,1,0,437,4320.000000,56,0,1754.006708,hint,nbiot,180 -on9,0,0,27,1,0,1883,4863.258720,56,3,2364.631904,hint,nbiot,180 -on1,0,0,27,1,0,1739,4863.869040,56,3,2270.677616,hint,nbiot,180 -on7,0,0,25,1,0,1797,4503.000000,56,1,1963.719916,hint,nbiot,180 -on3,0,0,25,1,0,2112,4501.000000,56,1,1917.009792,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,56,0,2994.850000,hint,nbiot,180 -on2,0,0,25,1,0,1486,4502.979360,56,1,1917.561660,hint,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,hint,nbiot,180 -on11,0,0,24,1,0,1032,4323.820640,56,0,2039.845172,hint,nbiot,180 -on3,0,0,24,1,0,1330,4507.300000,57,2,2146.339752,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,57,0,2456.006708,hint,nbiot,180 -on10,0,0,25,1,0,1233,4580.948400,57,2,1922.982444,hint,nbiot,180 -on6,0,0,27,1,0,1215,4862.790000,57,3,2359.802376,hint,nbiot,180 -on7,0,0,25,1,0,852,4503.010000,57,1,2113.197084,hint,nbiot,180 -on5,0,0,26,1,0,874,4683.300000,57,2,2313.356584,hint,nbiot,180 -on8,0,0,24,1,0,457,4321.000000,57,0,1781.953292,hint,nbiot,180 -on9,0,0,26,1,0,1250,4681.341280,57,3,1943.639596,hint,nbiot,180 -on11,0,0,26,1,0,774,4684.169040,57,2,2229.340700,hint,nbiot,180 -on1,0,0,25,1,0,1024,4501.600000,57,1,2070.390000,hint,nbiot,180 -on4,0,0,26,1,0,830,4681.251280,57,3,2016.781844,hint,nbiot,180 -on2,0,0,25,1,0,521,4502.000000,57,1,1959.731500,hint,nbiot,180 -on9,0,0,25,1,0,3580,4501.300000,58,1,1986.036500,hint,nbiot,180 -on11,0,0,25,1,0,55,4502.369040,58,1,1942.862948,hint,nbiot,180 -on1,0,0,24,1,0,540,4321.000000,58,0,1791.710000,hint,nbiot,180 -on4,0,0,24,1,0,9,4322.989680,58,0,1884.155872,hint,nbiot,180 -on5,0,0,25,1,0,790,4501.300000,58,1,1902.433292,hint,nbiot,180 -on3,0,0,26,1,0,470,4686.300000,58,2,2178.948124,hint,nbiot,180 -on10,0,0,26,1,0,693,4683.979040,58,2,2192.956532,hint,nbiot,180 -on8,0,0,26,1,0,716,4683.490000,58,2,2312.659084,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,58,0,3470.006708,hint,nbiot,180 -on2,0,0,25,1,0,1005,4504.000000,58,1,2185.756708,hint,nbiot,180 -on7,0,0,26,1,0,501,4685.220000,58,2,2189.631124,hint,nbiot,180 -on6,0,0,24,1,0,425,4322.010320,58,0,1848.677336,hint,nbiot,180 -on8,0,0,25,1,0,132,4501.510000,59,1,2022.448792,hint,nbiot,180 -on3,0,0,26,1,0,693,4682.300000,59,2,2197.263292,hint,nbiot,180 -on5,0,0,27,1,0,1028,4862.900000,59,3,2476.853084,hint,nbiot,180 -on10,0,0,24,1,0,1039,4320.000000,59,0,1754.013208,hint,nbiot,180 -on4,0,0,26,1,0,760,4682.269040,59,2,2042.557408,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,59,0,2456.006708,hint,nbiot,180 -on2,0,0,27,1,0,487,4864.448080,59,3,2263.271940,hint,nbiot,180 -on9,0,0,25,1,0,308,4502.000000,59,1,2022.026252,hint,nbiot,180 -on11,0,0,25,1,0,566,4639.600000,59,2,2167.709792,hint,nbiot,180 -on7,0,0,26,1,0,444,4682.600000,59,3,2197.636376,hint,nbiot,180 -on1,0,0,24,1,0,79,4321.000000,59,0,1793.009792,hint,nbiot,180 -on6,0,0,26,1,0,358,4682.958720,59,2,2079.642988,hint,nbiot,180 -on1,0,0,25,1,0,197,4503.000000,60,1,2024.188168,hint,nbiot,180 -on6,0,0,24,1,0,360,4321.000000,60,0,1884.276708,hint,nbiot,180 -on4,0,0,27,1,0,794,4861.810000,60,3,2141.817000,hint,nbiot,180 -on9,0,0,24,1,0,238,4322.000000,60,0,1867.503292,hint,nbiot,180 -on2,0,0,26,1,0,760,4683.510000,60,2,2243.506876,hint,nbiot,180 -on8,0,0,24,1,0,0,4321.010320,60,0,1829.167544,hint,nbiot,180 -on10,0,0,25,1,0,694,4500.010320,60,1,1826.017544,hint,nbiot,180 -on7,0,0,24,1,0,473,4476.000000,60,1,2007.506500,hint,nbiot,180 -on11,0,0,26,1,0,404,4682.300000,60,2,2096.526292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,60,0,2262.956708,hint,nbiot,180 -on5,0,0,25,1,0,382,4502.300000,60,1,1946.298376,hint,nbiot,180 -on3,0,0,28,1,0,763,5043.410000,60,4,2585.203376,hint,nbiot,180 -on5,0,0,26,1,0,1593,4680.410320,61,2,1898.385752,hint,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,hint,nbiot,180 -on6,0,0,24,1,0,1532,4354.000000,61,1,1947.656708,hint,nbiot,180 -on1,0,0,25,1,0,360,4503.589680,61,1,1944.021120,hint,nbiot,180 -on10,0,0,24,1,0,1448,4321.020640,61,0,1839.818256,hint,nbiot,180 -on4,0,0,24,1,0,614,4444.220320,61,1,1895.552836,hint,nbiot,180 -on8,0,0,26,1,0,693,4685.490000,61,2,2251.079208,hint,nbiot,180 -on7,0,0,25,1,0,1011,4501.000000,61,1,1826.419916,hint,nbiot,180 -on9,0,0,24,1,0,180,4437.620640,61,1,2072.846796,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,61,0,3882.750000,hint,nbiot,180 -on2,0,0,24,1,0,0,4326.000000,61,0,2033.573416,hint,nbiot,180 -on11,0,0,24,1,0,1260,4322.000000,61,0,1757.023416,hint,nbiot,180 -on8,0,0,24,1,0,1202,4321.020640,62,0,1872.318256,hint,nbiot,180 -on11,0,0,25,1,0,1733,4502.989680,62,1,1999.465788,hint,nbiot,180 -on5,0,0,25,1,0,1440,4502.989680,62,1,1970.917580,hint,nbiot,180 -on3,0,0,25,1,0,2816,4502.310320,62,1,1963.444252,hint,nbiot,180 -on9,0,0,24,1,0,4183,4320.000000,62,0,1754.006500,hint,nbiot,180 -on6,0,0,25,1,0,1161,4502.348400,62,1,1944.161192,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,62,0,3416.700000,hint,nbiot,180 -on1,0,0,25,1,0,1952,4502.979680,62,1,1961.371788,hint,nbiot,180 -on4,0,0,24,1,0,195,4321.010320,62,0,1812.917544,hint,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,hint,nbiot,180 -on2,0,0,25,1,0,2520,4503.600000,62,1,1942.971832,hint,nbiot,180 -on10,0,0,25,1,0,2492,4500.200320,62,1,1835.843336,hint,nbiot,180 -on3,0,0,25,1,0,1175,4501.600000,63,1,2020.346708,hint,nbiot,180 -on10,0,0,25,1,0,1014,4501.000000,63,1,1917.406500,hint,nbiot,180 -on7,0,0,24,1,0,99,4320.010320,63,0,1754.010836,hint,nbiot,180 -on8,0,0,25,1,0,1373,4501.020640,63,1,1933.684880,hint,nbiot,180 -on2,0,0,25,1,0,2063,4501.300000,63,1,1947.940000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,63,0,2972.756708,hint,nbiot,180 -on6,0,0,24,1,0,1013,4365.000000,63,1,1772.019708,hint,nbiot,180 -on11,0,0,24,1,0,497,4320.969040,63,0,1754.401032,hint,nbiot,180 -on4,0,0,25,1,0,792,4504.651280,63,2,1975.248844,hint,nbiot,180 -on1,0,0,25,1,0,753,4504.000000,63,1,2091.766708,hint,nbiot,180 -on9,0,0,24,1,0,540,4321.030960,63,0,1820.732508,hint,nbiot,180 -on5,0,0,24,1,0,1917,4322.000000,63,0,1813.950000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,64,0,3216.240208,hint,nbiot,180 -on8,0,0,24,1,0,720,4321.010320,64,0,1869.720836,hint,nbiot,180 -on3,0,0,25,1,0,2993,4503.230320,64,1,2080.609920,hint,nbiot,180 -on1,0,0,24,1,0,1375,4321.000000,64,1,1764.553416,hint,nbiot,180 -on4,0,0,24,1,0,540,4321.010320,64,0,1849.310836,hint,nbiot,180 -on9,0,0,25,1,0,3077,4502.000000,64,1,2030.913208,hint,nbiot,180 -on2,0,0,26,1,0,2956,4681.210320,64,2,2303.680920,hint,nbiot,180 -on5,0,0,24,1,0,2076,4321.010320,64,0,1763.510836,hint,nbiot,180 -on6,0,0,25,1,0,2269,4501.010320,64,1,1945.360836,hint,nbiot,180 -on7,0,0,24,1,0,1198,4321.979360,64,0,1754.805160,hint,nbiot,180 -on11,0,0,24,1,0,1623,4323.989680,64,0,1955.809288,hint,nbiot,180 -on10,0,0,24,1,0,3870,4321.000000,64,0,1786.900000,hint,nbiot,180 -on10,0,0,25,1,0,1773,4501.000000,65,1,1917.406500,hint,nbiot,180 -on2,0,0,26,1,0,626,4681.310000,65,2,2079.860584,hint,nbiot,180 -on3,0,0,25,1,0,911,4500.969040,65,1,1826.407532,hint,nbiot,180 -on4,0,0,25,1,0,1014,4501.300000,65,1,2033.863292,hint,nbiot,180 -on9,0,0,26,1,0,431,4681.341280,65,3,2113.323344,hint,nbiot,180 -on7,0,0,24,1,0,183,4321.010320,65,0,1867.640836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,65,0,2543.106708,hint,nbiot,180 -on11,0,0,26,1,0,647,4683.600000,65,3,2337.533084,hint,nbiot,180 -on5,0,0,24,1,0,764,4321.000000,65,1,1798.866292,hint,nbiot,180 -on8,0,0,26,1,0,814,4783.900000,65,3,2224.961376,hint,nbiot,180 -on6,0,0,25,1,0,438,4627.248400,65,2,2124.152652,hint,nbiot,180 -on1,0,0,25,1,0,474,4505.310320,65,1,2176.472544,hint,nbiot,180 -on7,0,0,25,1,0,1377,4501.190000,66,1,1926.582500,hint,nbiot,180 -on10,0,0,24,1,0,171,4354.989680,66,1,1886.354164,hint,nbiot,180 -on11,0,0,26,1,0,640,4725.320640,66,3,2232.288048,hint,nbiot,180 -on2,0,0,24,1,0,626,4321.969680,66,1,1761.944372,hint,nbiot,180 -on1,0,0,24,1,0,67,4322.000000,66,0,1917.163292,hint,nbiot,180 -on5,0,0,24,1,0,0,4321.010320,66,0,1810.557628,hint,nbiot,180 -on3,0,0,25,1,0,360,4503.000000,66,1,1939.735124,hint,nbiot,180 -on4,0,0,25,1,0,360,4502.000000,66,2,1949.715000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,66,0,2571.706708,hint,nbiot,180 -on8,0,0,25,1,0,1075,4501.310320,66,1,1946.130836,hint,nbiot,180 -on9,0,0,27,1,0,555,4863.240960,66,4,2294.567800,hint,nbiot,180 -on6,0,0,26,1,0,360,4685.579040,66,2,2351.683240,hint,nbiot,180 -on7,0,0,24,1,0,1003,4323.989680,67,0,1943.062372,hint,nbiot,180 -on8,0,0,24,1,0,1980,4320.010320,67,0,1754.010836,hint,nbiot,180 -on3,0,0,24,1,0,43,4322.979360,67,0,1934.201744,hint,nbiot,180 -on5,0,0,25,1,0,2880,4501.000000,67,2,1917.205000,hint,nbiot,180 -on11,0,0,25,1,0,1079,4503.000000,67,1,2003.213084,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,67,0,3120.709916,hint,nbiot,180 -on6,0,0,26,1,0,1070,4682.669040,67,2,2120.932740,hint,nbiot,180 -on1,0,0,25,1,0,32,4501.989680,67,1,1887.720996,hint,nbiot,180 -on4,0,0,24,1,0,180,4322.010320,67,0,1933.560836,hint,nbiot,180 -on10,0,0,25,1,0,1429,4500.310320,67,1,1906.730836,hint,nbiot,180 -on9,0,0,23,1,0,1620,4276.020640,67,0,1839.375172,hint,nbiot,180 -on2,0,0,24,1,0,407,4321.010320,67,0,1755.724252,hint,nbiot,180 -on7,0,0,24,1,0,0,4322.000000,68,0,1937.313292,hint,nbiot,180 -on9,0,0,27,1,0,878,4862.569040,68,4,2127.047116,hint,nbiot,180 -on10,0,0,26,1,0,359,4682.810000,68,2,2287.368792,hint,nbiot,180 -on1,0,0,25,1,0,900,4501.000000,68,1,1917.406500,hint,nbiot,180 -on3,0,0,25,1,0,331,4502.300000,68,1,2041.159792,hint,nbiot,180 -on2,0,0,25,1,0,0,4502.630960,68,1,2028.240800,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,68,0,2446.256708,hint,nbiot,180 -on11,0,0,27,1,0,728,4893.900000,68,4,2697.187876,hint,nbiot,180 -on6,0,0,26,1,0,605,4682.600000,68,2,2218.682960,hint,nbiot,180 -on5,0,0,25,1,0,343,4500.010320,68,1,1826.017336,hint,nbiot,180 -on8,0,0,24,1,0,180,4320.010320,68,0,1754.010836,hint,nbiot,180 -on4,0,0,26,1,0,334,4682.041280,68,2,2017.239596,hint,nbiot,180 -on6,0,0,24,1,0,540,4410.620640,69,1,1847.013380,hint,nbiot,180 -on9,0,0,24,1,0,304,4321.989680,69,0,1870.496080,hint,nbiot,180 -on11,0,0,24,1,0,919,4321.989680,69,0,1833.452580,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,69,0,2723.150000,hint,nbiot,180 -on8,0,0,25,1,0,538,4502.989680,69,1,2035.013872,hint,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hint,nbiot,180 -on1,0,0,25,1,0,720,4501.990000,69,1,1855.409208,hint,nbiot,180 -on3,0,0,25,1,0,992,4502.300000,69,1,2000.476708,hint,nbiot,180 -on10,0,0,24,1,0,1311,4321.000000,69,0,1754.413416,hint,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hint,nbiot,180 -on5,0,0,26,1,0,561,4681.369040,69,2,1919.815824,hint,nbiot,180 -on4,0,0,24,1,0,900,4320.010320,69,0,1754.010836,hint,nbiot,180 -on8,0,0,26,1,0,340,4684.310320,70,2,2336.998836,hint,nbiot,180 -on9,0,0,25,1,0,509,4504.000000,70,1,2160.419916,hint,nbiot,180 -on2,0,0,24,1,0,1260,4321.000000,70,0,1754.420124,hint,nbiot,180 -on6,0,0,24,1,0,3996,4322.000000,70,0,1938.750000,hint,nbiot,180 -on10,0,0,25,1,0,0,4504.969040,70,1,1992.307824,hint,nbiot,180 -on5,0,0,26,1,0,675,4682.900000,70,2,2243.153208,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,70,0,3351.056708,hint,nbiot,180 -on11,0,0,26,1,0,134,4683.289680,70,2,2147.680872,hint,nbiot,180 -on1,0,0,25,1,0,342,4503.958720,70,1,2034.303404,hint,nbiot,180 -on3,0,0,26,1,0,427,4685.269040,70,2,2227.070616,hint,nbiot,180 -on4,0,0,27,1,0,488,4864.569040,70,3,2376.355532,hint,nbiot,180 -on7,0,0,24,1,0,35,4323.000000,70,0,1832.186832,hint,nbiot,180 -on10,0,0,25,1,0,1733,4503.989680,71,1,2048.212372,hint,nbiot,180 -on8,0,0,26,1,0,753,4684.910320,71,3,2288.547336,hint,nbiot,180 -on6,0,0,26,1,0,722,4682.610320,71,2,2134.149128,hint,nbiot,180 -on1,0,0,26,1,0,570,4681.941280,71,2,2022.523512,hint,nbiot,180 -on5,0,0,25,1,0,180,4502.630640,71,1,1942.597296,hint,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,hint,nbiot,180 -on11,0,0,25,1,0,596,4501.000000,71,1,1923.835000,hint,nbiot,180 -on7,0,0,24,1,0,575,4433.010320,71,1,2022.440336,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,71,0,3390.700000,hint,nbiot,180 -on3,0,0,25,1,0,1658,4503.989680,71,1,2060.524412,hint,nbiot,180 -on2,0,0,26,1,0,1120,4743.600000,71,4,2079.193208,hint,nbiot,180 -on4,0,0,26,1,0,563,4682.410000,71,2,1900.485624,hint,nbiot,180 -on8,0,0,26,1,0,454,4680.341280,72,2,1959.386428,hint,nbiot,180 -on9,0,0,29,1,0,725,5222.710000,72,6,2598.443292,hint,nbiot,180 -on4,0,0,25,1,0,497,4501.210000,72,1,1916.840500,hint,nbiot,180 -on7,0,0,26,1,0,267,4684.020000,72,2,2089.660460,hint,nbiot,180 -on5,0,0,24,1,0,640,4322.000000,72,0,1896.500000,hint,nbiot,180 -on1,0,0,24,1,0,0,4322.000000,72,0,1872.320000,hint,nbiot,180 -on10,0,0,27,1,0,848,4861.900000,72,4,2358.796168,hint,nbiot,180 -on2,0,0,25,1,0,606,4501.300000,72,1,1964.976500,hint,nbiot,180 -on11,0,0,25,1,0,226,4502.000000,72,1,1983.716500,hint,nbiot,180 -on6,0,0,28,1,0,709,5042.110000,72,4,2405.133460,hint,nbiot,180 -on3,0,0,26,1,0,391,4682.000000,72,3,1977.463000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,72,0,2339.006708,hint,nbiot,180 -on5,0,0,26,1,0,1054,4684.510000,73,2,2285.527000,hint,nbiot,180 -on6,0,0,24,1,0,0,4321.010320,73,0,1869.720836,hint,nbiot,180 -on10,0,0,24,1,0,414,4323.020640,73,0,2051.238380,hint,nbiot,180 -on8,0,0,25,1,0,833,4501.000000,73,1,1916.750000,hint,nbiot,180 -on3,0,0,26,1,0,844,4683.589680,73,3,2170.577288,hint,nbiot,180 -on2,0,0,25,1,0,1053,4502.200320,73,1,1932.823420,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,73,0,3308.156708,hint,nbiot,180 -on9,0,0,27,1,0,1150,4865.869040,73,4,2466.867408,hint,nbiot,180 -on11,0,0,24,1,0,720,4325.020640,73,0,2105.844964,hint,nbiot,180 -on1,0,0,24,1,0,3009,4321.010320,73,0,1777.160836,hint,nbiot,180 -on7,0,0,25,1,0,3089,4501.300000,73,1,2005.595000,hint,nbiot,180 -on4,0,0,25,1,0,320,4502.210000,73,1,1828.203916,hint,nbiot,180 -on1,0,0,25,1,0,1237,4501.979360,74,1,1930.408244,hint,nbiot,180 -on9,0,0,26,1,0,491,4681.650960,74,2,1898.882008,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,74,0,2689.356708,hint,nbiot,180 -on2,0,0,24,1,0,89,4323.000000,74,0,2020.666708,hint,nbiot,180 -on5,0,0,25,1,0,804,4500.310320,74,1,1850.960836,hint,nbiot,180 -on6,0,0,24,1,0,900,4405.630960,74,1,1958.370800,hint,nbiot,180 -on11,0,0,25,1,0,360,4502.600000,74,1,1880.165124,hint,nbiot,180 -on3,0,0,25,1,0,1383,4501.510000,74,1,2033.960500,hint,nbiot,180 -on8,0,0,25,1,0,1101,4502.969040,74,1,2019.255908,hint,nbiot,180 -on4,0,0,25,1,0,956,4501.300000,74,1,1982.123292,hint,nbiot,180 -on10,0,0,25,1,0,293,4501.010320,74,1,1828.627336,hint,nbiot,180 -on7,0,0,25,1,0,1082,4502.251600,74,1,2024.709056,hint,nbiot,180 -on5,0,0,24,1,0,249,4320.010320,75,0,1754.010836,hint,nbiot,180 -on7,0,0,23,1,0,2092,4274.000000,75,0,1753.800000,hint,nbiot,180 -on10,0,0,25,1,0,1374,4502.000000,75,1,2033.759792,hint,nbiot,180 -on4,0,0,25,1,0,1652,4501.310320,75,1,2027.770836,hint,nbiot,180 -on3,0,0,24,1,0,1026,4323.990000,75,0,1930.062500,hint,nbiot,180 -on2,0,0,26,1,0,1453,4683.669040,75,2,2275.324032,hint,nbiot,180 -on6,0,0,26,1,0,1247,4681.310320,75,2,2019.040628,hint,nbiot,180 -on9,0,0,25,1,0,921,4503.589680,75,1,2059.310996,hint,nbiot,180 -on8,0,0,25,1,0,1098,4501.300000,75,1,2007.668292,hint,nbiot,180 -on1,0,0,25,1,0,360,4501.610320,75,1,1826.859252,hint,nbiot,180 -on11,0,0,25,1,0,1800,4501.020320,75,1,1897.921336,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,75,0,2779.706708,hint,nbiot,180 -on6,0,0,24,1,0,604,4322.000000,76,0,1870.513416,hint,nbiot,180 -on11,0,0,23,1,0,205,4279.989680,76,0,1738.002580,hint,nbiot,180 -on3,0,0,25,1,0,2291,4503.289680,76,1,2048.335996,hint,nbiot,180 -on4,0,0,24,0,0,4289,4320.000000,76,0,1748.800000,hint,nbiot,180 -on10,0,0,24,1,0,2438,4321.010320,76,0,1783.017544,hint,nbiot,180 -on1,0,0,24,1,0,1027,4323.010320,76,0,1898.224252,hint,nbiot,180 -on9,0,0,24,1,0,1654,4323.020640,76,0,2011.964964,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,76,0,3514.200000,hint,nbiot,180 -on5,0,0,24,1,0,180,4322.030960,76,0,1800.339216,hint,nbiot,180 -on8,0,0,26,1,0,1749,4686.569040,76,2,2398.157740,hint,nbiot,180 -on2,0,0,24,1,0,469,4322.000000,76,0,1820.463416,hint,nbiot,180 -on7,0,0,24,1,0,2645,4323.610320,76,1,1903.014044,hint,nbiot,180 -on2,0,0,26,1,0,799,4683.300000,77,2,2186.743084,hint,nbiot,180 -on7,0,0,25,1,0,20,4503.000000,77,1,2063.624916,hint,nbiot,180 -on10,0,0,25,1,0,180,4502.000000,77,1,1995.819916,hint,nbiot,180 -on6,0,0,25,1,0,300,4500.020640,77,1,1826.028172,hint,nbiot,180 -on3,0,0,25,1,0,1197,4502.210000,77,1,1997.203916,hint,nbiot,180 -on4,0,0,26,1,0,826,4682.210000,77,3,2052.193832,hint,nbiot,180 -on5,0,0,25,1,0,2521,4501.300000,77,1,2033.870000,hint,nbiot,180 -on11,0,0,25,1,0,875,4502.220320,77,1,1999.158044,hint,nbiot,180 -on1,0,0,26,1,0,882,4683.589680,77,2,2305.679164,hint,nbiot,180 -on8,0,0,25,1,0,460,4502.010000,77,1,1866.090624,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,77,0,2873.956708,hint,nbiot,180 -on9,0,0,24,1,0,540,4323.989680,77,0,2053.562788,hint,nbiot,180 -on8,0,0,25,1,0,2160,4501.020320,78,1,1941.731336,hint,nbiot,180 -on4,0,0,25,1,0,1650,4501.300000,78,1,2015.020000,hint,nbiot,180 -on5,0,0,24,1,0,0,4321.000320,78,0,1754.420044,hint,nbiot,180 -on2,0,0,24,1,0,1914,4399.010320,78,1,2018.317336,hint,nbiot,180 -on7,0,0,25,1,0,2427,4501.210000,78,2,1930.497000,hint,nbiot,180 -on10,0,0,25,1,0,1067,4501.220320,78,1,1941.811336,hint,nbiot,180 -on1,0,0,25,1,0,1430,4502.300000,78,1,2102.266292,hint,nbiot,180 -on11,0,0,26,1,0,1393,4682.010320,78,2,1919.825752,hint,nbiot,180 -on3,0,0,25,1,0,1221,4502.010320,78,1,1944.987336,hint,nbiot,180 -on9,0,0,24,1,0,979,4321.989680,78,0,1870.112580,hint,nbiot,180 -on6,0,0,27,1,0,1702,4861.910320,78,4,2260.273712,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,78,0,2806.356708,hint,nbiot,180 -on9,0,0,25,1,0,934,4501.300000,79,1,1980.043292,hint,nbiot,180 -on3,0,0,25,1,0,2341,4501.300000,79,1,2033.870000,hint,nbiot,180 -on8,0,0,24,1,0,360,4321.020640,79,0,1754.428380,hint,nbiot,180 -on5,0,0,26,1,0,1646,4682.300000,79,2,2121.233208,hint,nbiot,180 -on4,0,0,25,1,0,877,4502.672240,79,1,1868.500728,hint,nbiot,180 -on10,0,0,27,1,0,1386,4864.589680,79,4,2476.235456,hint,nbiot,180 -on1,0,0,24,1,0,540,4438.600000,79,1,1822.728540,hint,nbiot,180 -on11,0,0,25,1,0,1233,4664.589680,79,2,2169.015788,hint,nbiot,180 -on2,0,0,26,1,0,1235,4682.300000,79,2,2192.531084,hint,nbiot,180 -on6,0,0,24,1,0,1173,4321.000000,79,0,1784.300000,hint,nbiot,180 -on7,0,0,24,1,0,360,4320.010320,79,0,1754.010836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,79,0,2946.106708,hint,nbiot,180 -on9,0,0,24,1,0,1787,4323.979360,80,0,2018.458452,hint,nbiot,180 -on6,0,0,25,1,0,3879,4501.300000,80,1,1970.820000,hint,nbiot,180 -on11,0,0,25,1,0,806,4502.220640,80,2,1942.413380,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,80,0,3582.066708,hint,nbiot,180 -on2,0,0,24,1,0,540,4321.010320,80,0,1833.580836,hint,nbiot,180 -on7,0,0,24,1,0,82,4322.989680,80,0,1907.309288,hint,nbiot,180 -on5,0,0,24,1,0,1682,4323.989680,80,0,2077.365996,hint,nbiot,180 -on1,0,0,25,1,0,1746,4502.310320,80,2,2088.237544,hint,nbiot,180 -on3,0,0,24,1,0,392,4321.000000,80,0,1845.413416,hint,nbiot,180 -on4,0,0,25,1,0,1056,4571.610320,80,2,2079.115752,hint,nbiot,180 -on8,0,0,25,1,0,1807,4504.989680,80,1,2120.327704,hint,nbiot,180 -on10,0,0,24,1,0,796,4323.759040,80,1,1885.452032,hint,nbiot,180 -on10,0,0,24,1,0,1620,4320.010320,81,0,1754.010836,hint,nbiot,180 -on6,0,0,25,1,0,540,4506.599680,81,2,1986.824912,hint,nbiot,180 -on1,0,0,25,1,0,1512,4501.300000,81,1,1896.733416,hint,nbiot,180 -on8,0,0,24,1,0,394,4323.989680,81,0,1940.475996,hint,nbiot,180 -on5,0,0,26,1,0,446,4685.338080,81,2,2120.583564,hint,nbiot,180 -on4,0,0,24,1,0,305,4322.000000,81,0,1854.256708,hint,nbiot,180 -on11,0,0,23,1,0,1371,4154.020640,81,0,1917.071672,hint,nbiot,180 -on9,0,0,24,1,0,1102,4322.979360,81,0,1848.805160,hint,nbiot,180 -on3,0,0,24,1,0,1724,4320.000000,81,0,1754.006708,hint,nbiot,180 -on7,0,0,25,1,0,4253,4500.000000,81,1,1826.013000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,81,0,3728.056500,hint,nbiot,180 -on2,0,0,24,1,0,0,4322.020640,81,0,1909.521672,hint,nbiot,180 -on10,0,0,25,1,0,1054,4634.369040,82,2,2286.862532,hint,nbiot,180 -on7,0,0,25,1,0,722,4503.948400,82,1,2009.247652,hint,nbiot,180 -on11,0,0,25,1,0,3560,4501.000000,82,1,1917.406500,hint,nbiot,180 -on6,0,0,24,1,0,540,4323.000000,82,0,1985.833416,hint,nbiot,180 -on9,0,0,25,1,0,724,4502.127760,82,1,2058.719520,hint,nbiot,180 -on1,0,0,24,1,0,2025,4321.000000,82,0,1754.413416,hint,nbiot,180 -on4,0,0,25,1,0,1824,4500.010320,82,1,1849.410836,hint,nbiot,180 -on3,0,0,24,1,0,438,4322.989680,82,0,1871.565996,hint,nbiot,180 -on8,0,0,26,1,0,879,4683.000000,82,2,2041.881500,hint,nbiot,180 -on5,0,0,25,1,0,1037,4501.000000,82,1,1917.009792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,82,0,3007.856708,hint,nbiot,180 -on2,0,0,24,1,0,755,4321.000000,82,0,1822.253292,hint,nbiot,180 -on6,0,0,24,1,0,204,4322.010320,83,0,1972.560836,hint,nbiot,180 -on1,0,0,24,1,0,996,4321.000000,83,0,1780.406708,hint,nbiot,180 -on7,0,0,26,1,0,814,4681.490320,83,2,2106.804128,hint,nbiot,180 -on9,0,0,24,1,0,2160,4320.010320,83,0,1754.010836,hint,nbiot,180 -on8,0,0,25,1,0,2453,4503.000000,83,1,1969.556500,hint,nbiot,180 -on11,0,0,24,1,0,387,4387.630960,83,1,1940.510800,hint,nbiot,180 -on10,0,0,25,1,0,703,4501.190320,83,1,1917.489336,hint,nbiot,180 -on3,0,0,24,1,0,18,4322.979360,83,0,1818.268576,hint,nbiot,180 -on4,0,0,24,1,0,2094,4321.010320,83,0,1870.760836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,83,0,2810.256708,hint,nbiot,180 -on2,0,0,24,1,0,0,4322.000000,83,0,1854.263416,hint,nbiot,180 -on5,0,0,24,1,0,360,4322.000000,83,0,1961.096792,hint,nbiot,180 -on6,0,0,24,1,0,720,4320.020640,84,0,1754.021672,hint,nbiot,180 -on11,0,0,26,1,0,1412,4683.600000,84,2,2214.703416,hint,nbiot,180 -on5,0,0,25,1,0,900,4504.948400,84,1,2043.481192,hint,nbiot,180 -on2,0,0,24,1,0,940,4324.000000,84,0,2083.076708,hint,nbiot,180 -on1,0,0,25,1,0,1126,4501.000000,84,1,1917.400000,hint,nbiot,180 -on8,0,0,24,1,0,2674,4344.300000,84,1,2101.726500,hint,nbiot,180 -on4,0,0,25,1,0,966,4504.030960,84,1,2035.834216,hint,nbiot,180 -on7,0,0,24,1,0,180,4323.000000,84,0,1915.113416,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,84,0,2985.106708,hint,nbiot,180 -on9,0,0,26,1,0,1084,4682.600000,84,2,2189.179876,hint,nbiot,180 -on10,0,0,24,1,0,901,4431.989680,84,1,2242.219164,hint,nbiot,180 -on3,0,0,25,1,0,653,4500.010320,84,1,1826.017336,hint,nbiot,180 -on7,0,0,26,1,0,1071,4683.310320,85,2,2075.727212,hint,nbiot,180 -on2,0,0,24,1,0,1193,4469.220000,85,1,2231.007916,hint,nbiot,180 -on6,0,0,26,1,0,1422,4685.499680,85,2,2349.356372,hint,nbiot,180 -on8,0,0,26,1,0,893,4685.638080,85,2,2210.527064,hint,nbiot,180 -on9,0,0,24,1,0,849,4322.989680,85,0,1877.649372,hint,nbiot,180 -on10,0,0,25,1,0,1047,4501.000000,85,1,1918.258000,hint,nbiot,180 -on11,0,0,24,1,0,612,4321.041280,85,0,1870.129928,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,85,0,3136.556708,hint,nbiot,180 -on4,0,0,24,1,0,0,4446.600000,85,1,1804.861832,hint,nbiot,180 -on5,0,0,24,1,0,93,4322.010320,85,0,1930.967544,hint,nbiot,180 -on1,0,0,25,1,0,1347,4662.179040,85,2,2021.301032,hint,nbiot,180 -on3,0,0,24,1,0,2474,4322.000000,85,0,1875.050000,hint,nbiot,180 -on7,0,0,24,1,0,669,4321.000000,86,0,1760.900000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,86,0,2572.356708,hint,nbiot,180 -on2,0,0,27,1,0,592,4862.269040,86,4,2179.330740,hint,nbiot,180 -on9,0,0,24,1,0,1265,4321.000000,86,0,1842.150000,hint,nbiot,180 -on8,0,0,24,1,0,797,4321.000000,86,1,1790.156500,hint,nbiot,180 -on1,0,0,24,1,0,70,4321.969040,86,0,1754.801032,hint,nbiot,180 -on10,0,0,24,1,0,180,4322.000000,86,0,1921.583292,hint,nbiot,180 -on4,0,0,25,1,0,194,4502.041280,86,2,1961.438012,hint,nbiot,180 -on6,0,0,28,1,0,709,5042.210320,86,4,2520.614004,hint,nbiot,180 -on5,0,0,26,1,0,486,4705.300000,86,4,2309.019460,hint,nbiot,180 -on3,0,0,24,1,0,261,4321.969040,86,0,1760.261032,hint,nbiot,180 -on11,0,0,25,1,0,365,4502.300000,86,1,2140.610000,hint,nbiot,180 -on10,0,0,25,1,0,1800,4501.010000,87,1,1826.423916,hint,nbiot,180 -on1,0,0,24,1,0,2697,4321.000000,87,0,1848.000000,hint,nbiot,180 -on4,0,0,24,1,0,459,4321.010320,87,0,1863.870836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,87,0,3134.606708,hint,nbiot,180 -on8,0,0,25,1,0,1374,4502.000000,87,1,1943.169916,hint,nbiot,180 -on2,0,0,25,1,0,900,4503.969040,87,1,1943.964448,hint,nbiot,180 -on7,0,0,24,1,0,180,4320.010320,87,0,1754.010836,hint,nbiot,180 -on11,0,0,24,1,0,922,4321.000000,87,0,1820.706708,hint,nbiot,180 -on3,0,0,24,1,0,2520,4321.000000,87,0,1803.806708,hint,nbiot,180 -on6,0,0,24,1,0,58,4322.979360,87,0,1776.648452,hint,nbiot,180 -on9,0,0,25,1,0,653,4501.240960,87,1,1836.526300,hint,nbiot,180 -on5,0,0,24,1,0,1429,4321.010320,87,0,1884.410836,hint,nbiot,180 -on10,0,0,27,1,0,818,4861.900000,88,3,2274.140168,hint,nbiot,180 -on3,0,0,28,1,0,956,5042.410000,88,4,2421.510168,hint,nbiot,180 -on5,0,0,26,1,0,672,4682.000000,88,2,1987.069584,hint,nbiot,180 -on11,0,0,24,1,0,0,4321.010320,88,0,1760.260836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,88,0,2439.756708,hint,nbiot,180 -on9,0,0,27,1,0,874,4860.600000,88,4,2180.359416,hint,nbiot,180 -on4,0,0,26,1,0,777,4681.900000,88,2,2227.009792,hint,nbiot,180 -on2,0,0,24,1,0,480,4334.200320,88,1,1855.469796,hint,nbiot,180 -on6,0,0,24,1,0,564,4449.000000,88,1,1845.725124,hint,nbiot,180 -on1,0,0,25,1,0,250,4502.369040,88,1,1941.432740,hint,nbiot,180 -on8,0,0,25,1,0,754,4502.300000,88,1,2043.564584,hint,nbiot,180 -on7,0,0,24,1,0,673,4396.300000,88,1,1941.690000,hint,nbiot,180 -on6,0,0,24,1,0,482,4323.979360,89,0,1872.865160,hint,nbiot,180 -on7,0,0,25,1,0,2996,4501.210000,89,1,1917.490500,hint,nbiot,180 -on2,0,0,25,1,0,1697,4501.310320,89,1,1984.734128,hint,nbiot,180 -on11,0,0,26,1,0,1676,4684.648400,89,2,2189.584692,hint,nbiot,180 -on9,0,0,25,1,0,360,4502.620640,89,1,1827.276796,hint,nbiot,180 -on3,0,0,25,1,0,1980,4502.620320,89,2,1942.579752,hint,nbiot,180 -on10,0,0,25,1,0,49,4503.338080,89,1,1928.307064,hint,nbiot,180 -on8,0,0,24,1,0,696,4321.010320,89,0,1812.267544,hint,nbiot,180 -on4,0,0,24,1,0,180,4322.989680,89,0,1892.625996,hint,nbiot,180 -on1,0,0,25,1,0,2296,4503.231280,89,1,2151.012428,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,89,0,3746.249792,hint,nbiot,180 -on5,0,0,24,1,0,4093,4320.000000,89,0,1785.856500,hint,nbiot,180 -on9,0,0,25,1,0,1374,4501.000000,90,1,1826.419916,hint,nbiot,180 -on8,0,0,25,1,0,2601,4502.300000,90,1,2049.870000,hint,nbiot,180 -on6,0,0,25,1,0,456,4501.010320,90,1,1907.667544,hint,nbiot,180 -on1,0,0,25,1,0,2124,4500.310320,90,1,1849.530836,hint,nbiot,180 -on5,0,0,23,1,0,1736,4262.000000,90,0,1730.806708,hint,nbiot,180 -on7,0,0,24,1,0,1106,4321.010320,90,0,1828.764128,hint,nbiot,180 -on10,0,0,25,1,0,1620,4503.989680,90,1,2145.465996,hint,nbiot,180 -on3,0,0,23,1,0,2160,4277.010320,90,0,1736.810836,hint,nbiot,180 -on4,0,0,25,1,0,1103,4502.000000,90,1,1961.818416,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,90,0,2972.106708,hint,nbiot,180 -on11,0,0,24,1,0,1619,4322.000000,90,0,1957.619916,hint,nbiot,180 -on2,0,0,24,1,0,900,4321.010320,90,0,1827.860836,hint,nbiot,180 -on1,0,0,25,1,0,1368,4502.000000,91,1,2175.719792,hint,nbiot,180 -on10,0,0,26,1,0,1404,4683.579040,91,2,2178.496532,hint,nbiot,180 -on11,0,0,25,1,0,2050,4502.300000,91,1,2079.126500,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,91,0,2844.706708,hint,nbiot,180 -on9,0,0,24,1,0,444,4320.020640,91,0,1754.021672,hint,nbiot,180 -on7,0,0,25,1,0,195,4501.300000,91,1,2019.693292,hint,nbiot,180 -on6,0,0,25,1,0,1591,4501.200320,91,1,1942.843336,hint,nbiot,180 -on4,0,0,24,1,0,720,4322.979360,91,0,1807.458452,hint,nbiot,180 -on5,0,0,26,1,0,333,4682.369040,91,2,2081.806032,hint,nbiot,180 -on3,0,0,24,1,0,130,4325.000000,91,0,2170.310000,hint,nbiot,180 -on2,0,0,24,1,0,0,4322.000000,91,0,1853.483416,hint,nbiot,180 -on8,0,0,24,1,0,900,4320.010320,91,0,1754.010836,hint,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hint,nbiot,180 -on10,0,0,25,1,0,293,4501.220000,92,1,1917.305792,hint,nbiot,180 -on2,0,0,24,1,0,0,4325.000000,92,0,1939.853540,hint,nbiot,180 -on5,0,0,26,1,0,513,4681.310320,92,2,2090.280628,hint,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hint,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,92,0,3118.350000,hint,nbiot,180 -on11,0,0,24,1,0,360,4324.000000,92,0,1992.876832,hint,nbiot,180 -on1,0,0,24,1,0,3060,4321.000000,92,0,1754.413416,hint,nbiot,180 -on4,0,0,25,1,0,380,4590.020640,92,2,1951.741380,hint,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hint,nbiot,180 -on8,0,0,26,1,0,446,4682.499680,92,2,2081.857872,hint,nbiot,180 -on6,0,0,24,1,0,1027,4321.979360,92,0,1754.805160,hint,nbiot,180 -on1,0,0,25,1,0,1013,4502.000000,93,1,1972.666292,hint,nbiot,180 -on11,0,0,24,1,0,1320,4321.300000,93,1,1918.450000,hint,nbiot,180 -on7,0,0,25,1,0,360,4502.969040,93,1,1835.209448,hint,nbiot,180 -on4,0,0,25,1,0,766,4501.300000,93,1,1930.780000,hint,nbiot,180 -on9,0,0,26,1,0,695,4683.000000,93,2,2217.706292,hint,nbiot,180 -on3,0,0,24,1,0,852,4321.000000,93,0,1847.226500,hint,nbiot,180 -on6,0,0,24,1,0,180,4321.010320,93,0,1794.704128,hint,nbiot,180 -on5,0,0,25,1,0,360,4502.020640,93,1,1981.781672,hint,nbiot,180 -on2,0,0,27,1,0,1055,4862.869040,93,3,2204.719032,hint,nbiot,180 -on10,0,0,23,1,0,0,4277.010320,93,0,1833.257420,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,93,0,2613.306708,hint,nbiot,180 -on8,0,0,26,1,0,1167,4682.600000,93,2,2164.883292,hint,nbiot,180 -on7,0,0,25,1,0,989,4501.220000,94,1,1942.383000,hint,nbiot,180 -on10,0,0,28,1,0,1332,5042.169040,94,4,2371.695908,hint,nbiot,180 -on1,0,0,25,1,0,433,4505.289680,94,1,2128.169080,hint,nbiot,180 -on2,0,0,24,1,0,132,4320.020640,94,0,1754.021672,hint,nbiot,180 -on9,0,0,25,1,0,540,4502.010320,94,1,2028.974252,hint,nbiot,180 -on6,0,0,25,1,0,900,4503.000000,94,1,1967.425124,hint,nbiot,180 -on4,0,0,25,1,0,1535,4665.900000,94,3,2193.699792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,94,0,2805.706708,hint,nbiot,180 -on3,0,0,23,1,0,312,4315.010320,94,0,1752.010836,hint,nbiot,180 -on5,0,0,25,1,0,1306,4501.000000,94,1,1917.217792,hint,nbiot,180 -on8,0,0,25,1,0,1282,4501.600000,94,1,2128.999876,hint,nbiot,180 -on11,0,0,26,1,0,1347,4684.000000,94,2,2178.949460,hint,nbiot,180 -on10,0,0,24,1,0,926,4321.000000,95,0,1827.850000,hint,nbiot,180 -on1,0,0,25,1,0,1102,4500.969040,95,1,1826.400824,hint,nbiot,180 -on5,0,0,27,1,0,1104,4862.320000,95,3,2242.425668,hint,nbiot,180 -on9,0,0,24,1,0,302,4323.000000,95,0,1901.313292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,95,0,2563.906708,hint,nbiot,180 -on4,0,0,24,1,0,0,4320.010320,95,0,1754.010836,hint,nbiot,180 -on3,0,0,27,1,0,1160,4861.920000,95,3,2359.454376,hint,nbiot,180 -on2,0,0,24,1,0,800,4321.000000,95,0,1869.066708,hint,nbiot,180 -on8,0,0,25,1,0,1139,4500.651600,95,2,1827.977264,hint,nbiot,180 -on11,0,0,25,1,0,360,4502.968720,95,1,1943.564112,hint,nbiot,180 -on7,0,0,25,1,0,256,4500.379040,95,1,1826.373240,hint,nbiot,180 -on6,0,0,26,1,0,1085,4682.300000,95,2,2195.969792,hint,nbiot,180 -on8,0,0,23,1,0,0,4318.010320,96,0,1903.237544,hint,nbiot,180 -on11,0,0,24,1,0,389,4477.020320,96,1,1907.821336,hint,nbiot,180 -on2,0,0,25,1,0,938,4502.310320,96,1,1962.794252,hint,nbiot,180 -on10,0,0,25,1,0,608,4605.610320,96,2,2220.830752,hint,nbiot,180 -on4,0,0,26,1,0,513,4683.530320,96,2,2134.751960,hint,nbiot,180 -on7,0,0,25,1,0,293,4505.948400,96,1,2128.309276,hint,nbiot,180 -on6,0,0,24,1,0,1503,4320.010320,96,0,1754.010836,hint,nbiot,180 -on9,0,0,24,1,0,0,4325.000000,96,0,1937.370124,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,96,0,3494.056708,hint,nbiot,180 -on3,0,0,25,1,0,3447,4502.300000,96,1,2054.745000,hint,nbiot,180 -on5,0,0,24,1,0,2440,4322.969040,96,0,1755.207740,hint,nbiot,180 -on1,0,0,25,1,0,180,4504.969040,96,1,2192.962616,hint,nbiot,180 -on3,0,0,24,1,0,285,4321.000000,97,0,1776.753292,hint,nbiot,180 -on6,0,0,26,1,0,513,4682.300000,97,2,2151.373292,hint,nbiot,180 -on1,0,0,26,1,0,334,4682.969040,97,2,2077.872408,hint,nbiot,180 -on11,0,0,25,1,0,1260,4503.300000,97,1,2174.420000,hint,nbiot,180 -on5,0,0,26,1,0,703,4739.600000,97,3,2193.994376,hint,nbiot,180 -on8,0,0,25,1,0,720,4503.717440,97,1,1994.758808,hint,nbiot,180 -on2,0,0,25,1,0,776,4502.020640,97,2,1956.027840,hint,nbiot,180 -on9,0,0,25,1,0,202,4502.010320,97,1,1942.335960,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,97,0,2688.706708,hint,nbiot,180 -on7,0,0,24,1,0,56,4321.020640,97,0,1842.431672,hint,nbiot,180 -on10,0,0,26,1,0,873,4682.520320,97,2,2197.364628,hint,nbiot,180 -on4,0,0,25,1,0,435,4501.300000,97,1,2076.776500,hint,nbiot,180 -on4,0,0,25,1,0,678,4741.990000,98,3,2427.195376,hint,nbiot,180 -on9,0,0,26,1,0,568,4681.969040,98,2,1915.714032,hint,nbiot,180 -on2,0,0,26,1,0,820,4683.300000,98,2,2222.038292,hint,nbiot,180 -on7,0,0,25,1,0,294,4501.010320,98,1,1942.110836,hint,nbiot,180 -on5,0,0,24,1,0,497,4323.000000,98,0,1958.636584,hint,nbiot,180 -on6,0,0,27,1,0,822,4862.500000,98,3,2505.293084,hint,nbiot,180 -on11,0,0,26,1,0,1011,4682.310000,98,2,2107.826876,hint,nbiot,180 -on8,0,0,25,1,0,837,4501.269040,98,1,1863.564324,hint,nbiot,180 -on10,0,0,27,1,0,733,4862.900000,98,4,2371.969916,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,98,0,2405.956708,hint,nbiot,180 -on1,0,0,24,1,0,0,4321.010320,98,0,1869.720836,hint,nbiot,180 -on3,0,0,25,1,0,530,4502.000000,98,1,1939.068208,hint,nbiot,180 -on1,0,0,25,1,0,36,4503.000000,99,1,2008.198168,hint,nbiot,180 -on8,0,0,25,1,0,0,4503.000000,99,1,2094.675000,hint,nbiot,180 -on11,0,0,24,1,0,203,4322.020640,99,0,1946.174964,hint,nbiot,180 -on2,0,0,25,1,0,690,4504.269040,99,1,2038.710824,hint,nbiot,180 -on6,0,0,25,1,0,2146,4502.190000,99,1,2034.232500,hint,nbiot,180 -on7,0,0,25,1,0,568,4501.600000,99,1,2133.433292,hint,nbiot,180 -on4,0,0,25,1,0,737,4504.289680,99,1,2166.379288,hint,nbiot,180 -on5,0,0,26,1,0,379,4681.310320,99,2,2105.880628,hint,nbiot,180 -on10,0,0,25,1,0,180,4506.789360,99,2,2229.597576,hint,nbiot,180 -on3,0,0,25,1,0,0,4504.861920,99,1,2064.739768,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,99,0,2994.206708,hint,nbiot,180 -on9,0,0,26,1,0,460,4684.569040,99,2,2325.409240,hint,nbiot,180 -on5,0,0,26,1,0,2176,4681.010000,100,2,1963.208792,hint,nbiot,180 -on1,0,0,23,1,0,2024,4459.000000,100,1,1993.361292,hint,nbiot,180 -on2,0,0,24,1,0,127,4320.989680,100,0,1754.402580,hint,nbiot,180 -on8,0,0,24,1,0,1800,4320.010320,100,0,1754.010836,hint,nbiot,180 -on9,0,0,26,1,0,919,4680.310320,100,2,1989.130628,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,100,0,2759.310124,hint,nbiot,180 -on6,0,0,26,1,0,676,4683.569040,100,2,2251.344324,hint,nbiot,180 -on4,0,0,25,1,0,451,4502.338080,100,1,1943.305148,hint,nbiot,180 -on11,0,0,24,1,0,555,4321.000000,100,0,1835.650000,hint,nbiot,180 -on10,0,0,25,1,0,1620,4502.989680,100,1,1963.520996,hint,nbiot,180 -on3,0,0,24,1,0,369,4321.000000,100,0,1838.509792,hint,nbiot,180 -on7,0,0,26,1,0,648,4684.579360,100,2,2229.134744,hint,nbiot,180 -on4,0,0,25,1,0,3218,4502.000000,101,1,2034.156500,hint,nbiot,180 -on10,0,0,26,1,0,582,4683.351600,101,2,2113.860556,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,101,0,3165.806708,hint,nbiot,180 -on7,0,0,26,1,0,806,4684.310320,101,3,2411.540212,hint,nbiot,180 -on3,0,0,24,1,0,73,4321.969040,101,0,1754.801032,hint,nbiot,180 -on9,0,0,25,1,0,520,4532.300000,101,2,2376.788292,hint,nbiot,180 -on1,0,0,24,1,0,0,4324.979360,101,0,2131.035036,hint,nbiot,180 -on6,0,0,26,1,0,846,4765.420320,101,3,2403.164420,hint,nbiot,180 -on8,0,0,25,1,0,714,4501.989680,101,1,1917.159080,hint,nbiot,180 -on5,0,0,27,1,0,255,4863.800000,101,3,2209.166292,hint,nbiot,180 -on11,0,0,24,1,0,263,4322.989680,101,0,1907.562372,hint,nbiot,180 -on2,0,0,27,1,0,978,4865.300000,101,3,2431.689708,hint,nbiot,180 -on8,0,0,27,1,0,3027,4861.600000,102,3,2243.633084,hint,nbiot,180 -on6,0,0,24,1,0,653,4474.000000,102,1,1815.613208,hint,nbiot,180 -on4,0,0,25,1,0,2157,4501.300000,102,1,1968.993292,hint,nbiot,180 -on10,0,0,26,1,0,2837,4682.210000,102,2,2076.113416,hint,nbiot,180 -on7,0,0,24,1,0,2813,4496.210000,102,1,2057.190500,hint,nbiot,180 -on3,0,0,24,1,0,2554,4322.979360,102,0,1820.855160,hint,nbiot,180 -on2,0,0,25,1,0,2444,4500.000000,102,2,1828.418000,hint,nbiot,180 -on1,0,0,24,1,0,1980,4322.000000,102,0,1922.376708,hint,nbiot,180 -on5,0,0,24,1,0,464,4321.010320,102,0,1775.224252,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,102,0,2827.156708,hint,nbiot,180 -on11,0,0,25,1,0,2340,4503.000000,102,1,2116.456916,hint,nbiot,180 -on9,0,0,25,1,0,2648,4502.000000,102,1,1944.326292,hint,nbiot,180 -on9,0,0,25,1,0,1891,4501.000000,103,1,1917.009792,hint,nbiot,180 -on7,0,0,26,1,0,1592,4683.299680,103,2,2221.993080,hint,nbiot,180 -on1,0,0,26,1,0,721,4682.369040,103,2,2077.730740,hint,nbiot,180 -on5,0,0,23,1,0,1092,4281.989680,103,0,1941.595872,hint,nbiot,180 -on2,0,0,25,1,0,1550,4501.220000,103,1,1918.346000,hint,nbiot,180 -on4,0,0,25,1,0,1103,4502.300000,103,1,2119.036708,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,103,0,2715.760124,hint,nbiot,180 -on8,0,0,25,1,0,692,4502.010320,103,1,2031.827336,hint,nbiot,180 -on3,0,0,25,1,0,901,4503.000000,103,1,2062.110000,hint,nbiot,180 -on6,0,0,25,1,0,1806,4501.000000,103,1,1913.298292,hint,nbiot,180 -on10,0,0,25,1,0,883,4503.210640,103,1,2017.370880,hint,nbiot,180 -on11,0,0,24,1,0,360,4321.010320,103,0,1870.104336,hint,nbiot,180 -on5,0,0,25,1,0,1580,4502.020640,104,1,2033.774756,hint,nbiot,180 -on3,0,0,24,1,0,1127,4323.948400,104,0,1930.956068,hint,nbiot,180 -on4,0,0,25,1,0,2994,4502.000000,104,1,1973.309792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,104,0,3006.960124,hint,nbiot,180 -on8,0,0,24,1,0,742,4323.589360,104,0,1831.095744,hint,nbiot,180 -on7,0,0,27,1,0,1493,4862.830640,104,3,2267.805464,hint,nbiot,180 -on6,0,0,25,1,0,1440,4504.610320,104,1,2088.585960,hint,nbiot,180 -on10,0,0,24,1,0,1106,4482.030960,104,1,1854.127508,hint,nbiot,180 -on2,0,0,24,1,0,595,4320.989680,104,0,1754.402580,hint,nbiot,180 -on11,0,0,25,1,0,1854,4500.200320,104,1,1826.100044,hint,nbiot,180 -on1,0,0,25,1,0,1282,4501.220320,104,1,1943.891336,hint,nbiot,180 -on9,0,0,26,1,0,3064,4681.000000,104,2,2080.204792,hint,nbiot,180 -on3,0,0,26,1,0,668,4681.540000,105,2,2053.244292,hint,nbiot,180 -on8,0,0,24,1,0,252,4321.000000,105,0,1797.559792,hint,nbiot,180 -on6,0,0,26,1,0,334,4680.948400,105,2,1898.405776,hint,nbiot,180 -on9,0,0,25,1,0,543,4542.470000,105,2,2050.539292,hint,nbiot,180 -on4,0,0,27,1,0,627,4864.217760,105,4,2321.147020,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,105,0,2280.506708,hint,nbiot,180 -on10,0,0,25,1,0,531,4501.300000,105,1,1901.575084,hint,nbiot,180 -on1,0,0,28,1,0,741,5042.980000,105,4,2669.128376,hint,nbiot,180 -on7,0,0,24,1,0,0,4322.041280,105,0,1811.249928,hint,nbiot,180 -on5,0,0,26,1,0,342,4682.810000,105,2,2235.375292,hint,nbiot,180 -on2,0,0,27,1,0,530,4863.390000,105,3,2493.611084,hint,nbiot,180 -on11,0,0,26,1,0,719,4681.231280,105,2,1936.835804,hint,nbiot,180 -on1,0,0,24,1,0,3142,4321.000000,106,0,1792.100000,hint,nbiot,180 -on5,0,0,24,1,0,2340,4322.000000,106,0,1961.753292,hint,nbiot,180 -on6,0,0,25,1,0,473,4502.210000,106,1,1835.360624,hint,nbiot,180 -on8,0,0,25,1,0,98,4502.989680,106,1,1990.820996,hint,nbiot,180 -on9,0,0,25,1,0,293,4502.979360,106,1,1968.918160,hint,nbiot,180 -on2,0,0,24,1,0,35,4323.020640,106,0,1963.084964,hint,nbiot,180 -on4,0,0,25,1,0,833,4501.000000,106,1,1877.763208,hint,nbiot,180 -on11,0,0,25,1,0,2646,4500.010320,106,1,1826.017336,hint,nbiot,180 -on7,0,0,24,1,0,900,4322.989680,106,0,1941.102580,hint,nbiot,180 -on3,0,0,25,1,0,237,4503.030960,106,2,1962.042092,hint,nbiot,180 -on10,0,0,25,1,0,2327,4504.000000,106,1,2207.668416,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,106,0,2907.106708,hint,nbiot,180 -on1,0,0,25,1,0,900,4502.620640,107,1,1993.656880,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,107,0,3305.550000,hint,nbiot,180 -on8,0,0,25,1,0,2869,4502.620640,107,1,2038.116672,hint,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,hint,nbiot,180 -on6,0,0,25,1,0,1080,4504.010320,107,1,2141.177544,hint,nbiot,180 -on5,0,0,26,1,0,1395,4680.330320,107,2,1989.990128,hint,nbiot,180 -on2,0,0,25,1,0,3198,4500.010320,107,1,1826.017336,hint,nbiot,180 -on11,0,0,25,1,0,1248,4502.020640,107,1,2097.228172,hint,nbiot,180 -on7,0,0,24,1,0,3991,4320.989680,107,0,1754.402580,hint,nbiot,180 -on3,0,0,24,1,0,484,4321.000000,107,0,1764.403292,hint,nbiot,180 -on9,0,0,25,1,0,492,4501.630960,107,1,1826.874216,hint,nbiot,180 -on4,0,0,25,1,0,1616,4504.240960,107,1,2210.176300,hint,nbiot,180 -on7,0,0,27,1,0,667,4864.020000,108,4,2415.759084,hint,nbiot,180 -on6,0,0,24,1,0,243,4321.000000,108,0,1759.203292,hint,nbiot,180 -on4,0,0,25,1,0,180,4505.000000,108,1,2036.748540,hint,nbiot,180 -on2,0,0,25,1,0,1823,4501.000000,108,1,1942.756500,hint,nbiot,180 -on11,0,0,25,1,0,618,4502.289680,108,1,1970.032664,hint,nbiot,180 -on1,0,0,26,1,0,624,4842.269040,108,3,2073.629032,hint,nbiot,180 -on3,0,0,24,1,0,1360,4320.010320,108,0,1754.017544,hint,nbiot,180 -on5,0,0,26,1,0,868,4862.820000,108,4,2327.132376,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,108,0,2769.306708,hint,nbiot,180 -on10,0,0,24,1,0,384,4321.820000,108,0,1829.478000,hint,nbiot,180 -on9,0,0,25,1,0,1127,4501.000000,108,1,1917.406500,hint,nbiot,180 -on8,0,0,26,1,0,525,4682.620640,108,2,2154.446464,hint,nbiot,180 -on7,0,0,25,1,0,293,4501.958720,109,1,1917.399988,hint,nbiot,180 -on11,0,0,26,1,0,538,4681.341280,109,2,2051.019596,hint,nbiot,180 -on10,0,0,27,1,0,1034,4862.900000,109,3,2385.866500,hint,nbiot,180 -on2,0,0,24,1,0,101,4322.030960,109,0,1937.735800,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,109,0,2688.706708,hint,nbiot,180 -on6,0,0,25,1,0,2119,4502.300000,109,1,2060.920000,hint,nbiot,180 -on4,0,0,25,1,0,213,4502.630960,109,1,1912.534092,hint,nbiot,180 -on1,0,0,25,1,0,879,4502.999680,109,1,2034.563080,hint,nbiot,180 -on9,0,0,26,1,0,626,4682.480000,109,2,2196.301792,hint,nbiot,180 -on8,0,0,25,1,0,540,4503.620640,109,1,1996.020088,hint,nbiot,180 -on3,0,0,25,1,0,360,4504.630960,109,1,2211.814092,hint,nbiot,180 -on5,0,0,25,1,0,473,4501.000000,109,1,1917.601500,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,110,0,2767.356708,hint,nbiot,180 -on11,0,0,24,1,0,1639,4459.010320,110,1,1849.527336,hint,nbiot,180 -on6,0,0,26,1,0,1233,4683.000000,110,2,2171.146168,hint,nbiot,180 -on2,0,0,25,1,0,321,4501.000000,110,1,1899.199792,hint,nbiot,180 -on5,0,0,26,1,0,1531,4682.300000,110,2,2136.163084,hint,nbiot,180 -on4,0,0,24,1,0,1316,4321.000000,110,0,1808.350000,hint,nbiot,180 -on3,0,0,24,1,0,27,4321.000000,110,0,1827.453292,hint,nbiot,180 -on10,0,0,24,1,0,821,4321.000000,110,0,1786.256708,hint,nbiot,180 -on8,0,0,25,1,0,1913,4501.000000,110,1,1917.406500,hint,nbiot,180 -on7,0,0,27,1,0,316,4866.110000,110,4,2582.417000,hint,nbiot,180 -on1,0,0,26,1,0,1257,4682.190000,110,3,2042.507332,hint,nbiot,180 -on9,0,0,25,1,0,235,4501.979360,110,1,1876.413368,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,111,0,3354.956708,hint,nbiot,180 -on4,0,0,25,1,0,1462,4503.348400,111,1,1892.171192,hint,nbiot,180 -on5,0,0,26,1,0,1923,4684.600000,111,2,2201.921624,hint,nbiot,180 -on10,0,0,24,1,0,1120,4321.989680,111,0,1787.569288,hint,nbiot,180 -on1,0,0,25,1,0,2340,4502.620640,111,1,1870.423380,hint,nbiot,180 -on11,0,0,24,1,0,459,4323.989680,111,0,1946.975996,hint,nbiot,180 -on9,0,0,25,1,0,3521,4501.300000,111,1,1930.526500,hint,nbiot,180 -on8,0,0,25,1,0,2689,4503.289680,111,1,2056.785788,hint,nbiot,180 -on3,0,0,25,1,0,3399,4501.020320,111,1,1908.581336,hint,nbiot,180 -on2,0,0,24,1,0,1455,4476.989680,111,1,2010.105872,hint,nbiot,180 -on6,0,0,26,1,0,2238,4682.589680,111,2,2081.685872,hint,nbiot,180 -on7,0,0,24,1,0,2102,4321.989680,111,0,1863.352580,hint,nbiot,180 -on2,0,0,25,1,0,1373,4502.220320,112,1,1980.178044,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,112,0,3496.650000,hint,nbiot,180 -on11,0,0,26,1,0,1594,4685.979360,112,2,2336.184868,hint,nbiot,180 -on9,0,0,24,1,0,37,4321.979360,112,0,1754.805160,hint,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,hint,nbiot,180 -on8,0,0,26,1,0,1266,4684.400000,112,2,2333.805040,hint,nbiot,180 -on1,0,0,24,1,0,1328,4321.010320,112,0,1800.814128,hint,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,hint,nbiot,180 -on3,0,0,24,1,0,1626,4481.300000,112,1,2009.106500,hint,nbiot,180 -on5,0,0,26,1,0,1602,4681.790320,112,2,2098.611044,hint,nbiot,180 -on7,0,0,25,1,0,900,4503.610320,112,1,1942.982668,hint,nbiot,180 -on10,0,0,25,1,0,3032,4500.220320,112,1,1826.101336,hint,nbiot,180 -on10,0,0,25,1,0,2633,4502.210000,113,1,1931.547208,hint,nbiot,180 -on2,0,0,25,1,0,930,4502.600000,113,1,2147.366708,hint,nbiot,180 -on3,0,0,24,1,0,2700,4323.000000,113,0,1926.806708,hint,nbiot,180 -on5,0,0,24,0,0,4281,4320.000000,113,0,1845.000000,hint,nbiot,180 -on1,0,0,24,1,0,677,4325.958720,113,0,1879.267028,hint,nbiot,180 -on6,0,0,24,1,0,784,4320.989680,113,0,1754.402580,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,113,0,3351.050000,hint,nbiot,180 -on4,0,0,24,1,0,900,4321.000000,113,0,1774.160000,hint,nbiot,180 -on9,0,0,24,1,0,2348,4321.020640,113,0,1840.481672,hint,nbiot,180 -on8,0,0,24,1,0,2055,4320.010320,113,0,1754.010836,hint,nbiot,180 -on7,0,0,24,1,0,2233,4322.989680,113,0,1873.502580,hint,nbiot,180 -on11,0,0,25,1,0,2709,4503.300000,113,1,2113.203416,hint,nbiot,180 -on2,0,0,25,1,0,1062,4502.000000,114,1,2010.756500,hint,nbiot,180 -on5,0,0,25,1,0,474,4502.051600,114,1,1936.235348,hint,nbiot,180 -on7,0,0,25,1,0,180,4503.000000,114,1,2027.485124,hint,nbiot,180 -on9,0,0,26,1,0,429,4682.251280,114,2,2097.865304,hint,nbiot,180 -on6,0,0,26,1,0,513,4681.490000,114,3,2079.295584,hint,nbiot,180 -on8,0,0,24,1,0,87,4320.010320,114,0,1754.010836,hint,nbiot,180 -on11,0,0,27,1,0,750,4862.110000,114,3,2291.338460,hint,nbiot,180 -on10,0,0,25,1,0,729,4674.300000,114,3,2227.701832,hint,nbiot,180 -on3,0,0,25,1,0,385,4502.369040,114,2,2033.842616,hint,nbiot,180 -on1,0,0,26,1,0,874,4680.320320,114,2,1989.134628,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,114,0,2416.356708,hint,nbiot,180 -on4,0,0,26,1,0,858,4681.520000,114,2,2080.419292,hint,nbiot,180 -on1,0,0,25,1,0,678,4501.000000,115,1,1916.756500,hint,nbiot,180 -on4,0,0,25,1,0,335,4501.220000,115,1,1917.097792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,115,0,2532.706708,hint,nbiot,180 -on10,0,0,26,1,0,806,4683.320640,115,2,2268.261340,hint,nbiot,180 -on5,0,0,26,1,0,373,4683.369040,115,2,2193.810616,hint,nbiot,180 -on2,0,0,25,1,0,1193,4502.000000,115,1,2034.150000,hint,nbiot,180 -on8,0,0,26,1,0,897,4682.600000,115,2,2239.496584,hint,nbiot,180 -on11,0,0,25,1,0,0,4502.641280,115,1,1942.971844,hint,nbiot,180 -on6,0,0,25,1,0,562,4502.041280,115,1,1952.806428,hint,nbiot,180 -on3,0,0,26,1,0,801,4682.269040,115,3,2046.874240,hint,nbiot,180 -on9,0,0,26,1,0,720,4681.300000,115,2,2171.701584,hint,nbiot,180 -on7,0,0,25,1,0,652,4501.300000,115,1,2036.470000,hint,nbiot,180 -on4,0,0,25,1,0,513,4605.369040,116,2,2166.315824,hint,nbiot,180 -on8,0,0,24,1,0,3370,4321.000000,116,0,1760.900000,hint,nbiot,180 -on5,0,0,24,1,0,1080,4320.010320,116,0,1754.010836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,116,0,3476.890208,hint,nbiot,180 -on2,0,0,25,1,0,1227,4504.279360,116,1,2082.531868,hint,nbiot,180 -on1,0,0,25,1,0,3228,4501.300000,116,1,2042.963292,hint,nbiot,180 -on11,0,0,24,1,0,1807,4322.000000,116,0,1871.163416,hint,nbiot,180 -on6,0,0,23,1,0,68,4248.000000,116,0,1725.206708,hint,nbiot,180 -on3,0,0,24,1,0,633,4322.989680,116,1,1870.929204,hint,nbiot,180 -on10,0,0,25,1,0,2455,4500.341280,116,1,1868.399928,hint,nbiot,180 -on7,0,0,24,1,0,463,4324.979360,116,0,2011.708452,hint,nbiot,180 -on9,0,0,24,1,0,0,4322.000000,116,0,1840.873416,hint,nbiot,180 -on8,0,0,24,1,0,84,4320.010320,117,0,1754.010836,hint,nbiot,180 -on11,0,0,25,1,0,998,4503.989680,117,1,2005.975788,hint,nbiot,180 -on5,0,0,24,0,0,4286,4320.000000,117,0,1856.700000,hint,nbiot,180 -on2,0,0,24,1,0,180,4322.030960,117,0,1870.149216,hint,nbiot,180 -on4,0,0,24,0,0,4295,4320.000000,117,0,1744.900000,hint,nbiot,180 -on1,0,0,25,1,0,882,4501.010320,117,1,1826.430752,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,117,0,3312.050000,hint,nbiot,180 -on10,0,0,25,1,0,1933,4501.300000,117,1,1918.423292,hint,nbiot,180 -on3,0,0,26,1,0,1744,4684.948400,117,2,2241.522900,hint,nbiot,180 -on9,0,0,25,1,0,1193,4503.010320,117,1,2047.177336,hint,nbiot,180 -on6,0,0,24,1,0,900,4321.979360,117,0,1807.708452,hint,nbiot,180 -on7,0,0,26,1,0,1425,4683.310000,117,2,2322.708832,hint,nbiot,180 -on2,0,0,26,1,0,874,4681.300000,118,2,2079.869792,hint,nbiot,180 -on6,0,0,26,1,0,713,4682.000000,118,2,1981.596168,hint,nbiot,180 -on4,0,0,25,1,0,281,4502.200000,118,1,2045.540000,hint,nbiot,180 -on10,0,0,28,1,0,363,5042.900000,118,5,2407.186416,hint,nbiot,180 -on8,0,0,25,1,0,720,4502.989680,118,1,2046.259288,hint,nbiot,180 -on11,0,0,26,1,0,270,4682.590000,118,2,2055.972416,hint,nbiot,180 -on9,0,0,27,1,0,994,5040.500000,118,5,2686.381460,hint,nbiot,180 -on7,0,0,25,1,0,1161,4502.000000,118,1,2034.156500,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,118,0,2465.756708,hint,nbiot,180 -on5,0,0,24,1,0,654,4396.030960,118,1,1923.525592,hint,nbiot,180 -on1,0,0,25,1,0,380,4503.300000,118,1,2140.886500,hint,nbiot,180 -on3,0,0,24,1,0,267,4321.989680,118,0,1788.212372,hint,nbiot,180 -on4,0,0,24,1,0,962,4324.020640,119,0,1994.431672,hint,nbiot,180 -on8,0,0,25,1,0,258,4634.879360,119,2,2429.598452,hint,nbiot,180 -on2,0,0,25,1,0,900,4502.630960,119,1,1939.080924,hint,nbiot,180 -on9,0,0,25,1,0,686,4502.289680,119,1,1940.015872,hint,nbiot,180 -on5,0,0,24,1,0,611,4324.979360,119,0,1993.521660,hint,nbiot,180 -on6,0,0,24,1,0,39,4321.010320,119,0,1816.030836,hint,nbiot,180 -on7,0,0,25,1,0,333,4576.671920,119,2,1856.702100,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,119,0,3461.563208,hint,nbiot,180 -on11,0,0,25,1,0,3600,4501.000000,119,1,1917.400000,hint,nbiot,180 -on10,0,0,24,1,0,254,4323.989680,119,0,1964.382372,hint,nbiot,180 -on3,0,0,27,1,0,554,4863.269040,119,3,2241.077532,hint,nbiot,180 -on1,0,0,24,1,0,2384,4320.000000,119,0,1754.006708,hint,nbiot,180 -on2,0,0,25,1,0,2136,4501.010000,120,1,1917.410500,hint,nbiot,180 -on11,0,0,24,1,0,293,4411.000000,120,1,2093.306500,hint,nbiot,180 -on10,0,0,24,1,0,286,4323.000000,120,0,1976.453292,hint,nbiot,180 -on5,0,0,25,1,0,180,4502.020640,120,1,2006.129840,hint,nbiot,180 -on8,0,0,26,1,0,663,4681.620640,120,2,2141.754964,hint,nbiot,180 -on7,0,0,26,1,0,748,4684.199680,120,2,2141.506288,hint,nbiot,180 -on9,0,0,24,1,0,601,4324.000000,120,0,2151.716500,hint,nbiot,180 -on3,0,0,25,1,0,813,4502.310320,120,1,2062.887544,hint,nbiot,180 -on1,0,0,24,1,0,0,4323.020640,120,0,2031.348380,hint,nbiot,180 -on6,0,0,26,1,0,372,4681.969040,120,2,1933.952408,hint,nbiot,180 -on4,0,0,25,1,0,1913,4501.220320,120,1,1941.811336,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,120,0,2775.156708,hint,nbiot,180 -on8,0,0,24,1,0,631,4357.289680,121,1,1791.685996,hint,nbiot,180 -on11,0,0,25,1,0,222,4504.020640,121,1,2205.915172,hint,nbiot,180 -on2,0,0,24,1,0,1754,4323.000000,121,0,1929.023416,hint,nbiot,180 -on3,0,0,24,1,0,1980,4323.000000,121,0,1896.913416,hint,nbiot,180 -on7,0,0,26,1,0,947,4684.310320,121,2,2252.115960,hint,nbiot,180 -on10,0,0,25,1,0,1980,4500.010320,121,1,1826.017336,hint,nbiot,180 -on6,0,0,24,1,0,0,4325.948400,121,0,2037.069484,hint,nbiot,180 -on9,0,0,24,1,0,2218,4322.989680,121,0,1924.852580,hint,nbiot,180 -on5,0,0,26,1,0,546,4682.279360,121,2,2007.734952,hint,nbiot,180 -on1,0,0,25,1,0,4178,4500.300000,121,2,1860.453000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,121,0,3718.306500,hint,nbiot,180 -on4,0,0,25,1,0,518,4502.010320,121,1,1936.218836,hint,nbiot,180 -on4,0,0,25,1,0,2814,4502.000000,122,1,2008.163208,hint,nbiot,180 -on2,0,0,25,1,0,2633,4502.000000,122,1,1851.123416,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,122,0,3762.500000,hint,nbiot,180 -on7,0,0,25,1,0,891,4503.010000,122,1,2062.510500,hint,nbiot,180 -on5,0,0,24,1,0,137,4324.030960,122,0,2010.322632,hint,nbiot,180 -on1,0,0,24,1,0,3060,4321.000000,122,0,1819.406708,hint,nbiot,180 -on9,0,0,26,1,0,655,4682.969040,122,2,2068.669240,hint,nbiot,180 -on10,0,0,25,1,0,461,4503.000000,122,1,1979.573416,hint,nbiot,180 -on11,0,0,25,1,0,293,4500.220320,122,1,1826.101336,hint,nbiot,180 -on3,0,0,24,1,0,360,4325.010320,122,0,2089.727544,hint,nbiot,180 -on8,0,0,25,1,0,1767,4502.010000,122,1,1864.523916,hint,nbiot,180 -on6,0,0,24,0,0,4314,4320.000000,122,0,1733.200000,hint,nbiot,180 -on8,0,0,24,0,0,4277,4320.000000,123,0,1757.900000,hint,nbiot,180 -on11,0,0,25,1,0,1569,4503.300000,123,1,2163.363500,hint,nbiot,180 -on3,0,0,24,1,0,0,4320.010320,123,0,1754.010836,hint,nbiot,180 -on2,0,0,24,1,0,918,4323.979360,123,0,1871.968576,hint,nbiot,180 -on7,0,0,26,1,0,1918,4682.341280,123,2,2070.296428,hint,nbiot,180 -on1,0,0,25,1,0,1725,4504.300000,123,1,2191.720208,hint,nbiot,180 -on9,0,0,25,1,0,720,4502.620640,123,1,1915.020088,hint,nbiot,180 -on5,0,0,27,1,0,1940,4863.820320,123,4,2291.984420,hint,nbiot,180 -on6,0,0,25,1,0,1565,4500.989680,123,1,1826.422496,hint,nbiot,180 -on4,0,0,24,1,0,1495,4326.010320,123,0,2269.144044,hint,nbiot,180 -on10,0,0,24,1,0,1271,4322.989680,123,0,1849.465996,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,123,0,3591.550000,hint,nbiot,180 -on1,0,0,26,1,0,491,4785.341280,124,3,2147.506220,hint,nbiot,180 -on2,0,0,24,1,0,329,4422.000000,124,1,1950.806500,hint,nbiot,180 -on11,0,0,26,1,0,267,4683.390000,124,2,2081.660252,hint,nbiot,180 -on5,0,0,27,1,0,880,4862.300000,124,3,2158.366168,hint,nbiot,180 -on10,0,0,26,1,0,514,4681.480000,124,2,2079.291792,hint,nbiot,180 -on9,0,0,25,1,0,180,4501.748400,124,1,1917.244360,hint,nbiot,180 -on6,0,0,25,1,0,868,4502.190000,124,1,2021.882500,hint,nbiot,180 -on8,0,0,24,1,0,0,4321.000000,124,0,1755.966708,hint,nbiot,180 -on3,0,0,25,1,0,855,4656.690000,124,4,1983.095416,hint,nbiot,180 -on7,0,0,28,1,0,710,5044.420000,124,5,2756.348960,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,124,0,2334.456708,hint,nbiot,180 -on4,0,0,24,1,0,113,4418.220000,124,1,2061.815792,hint,nbiot,180 -on6,0,0,24,1,0,32,4321.000000,125,0,1781.966708,hint,nbiot,180 -on2,0,0,24,1,0,560,4321.989680,125,1,1825.009080,hint,nbiot,180 -on8,0,0,25,1,0,814,4502.289680,125,1,1937.429080,hint,nbiot,180 -on3,0,0,25,1,0,720,4502.020640,125,1,1946.883380,hint,nbiot,180 -on7,0,0,24,1,0,0,4323.979360,125,0,1877.421868,hint,nbiot,180 -on9,0,0,26,1,0,1884,4681.610320,125,2,2193.360836,hint,nbiot,180 -on5,0,0,26,1,0,333,4683.579360,125,3,2057.213368,hint,nbiot,180 -on1,0,0,25,1,0,2042,4501.190000,125,2,1942.189000,hint,nbiot,180 -on10,0,0,27,1,0,716,4862.269040,125,3,2141.422532,hint,nbiot,180 -on11,0,0,26,1,0,241,4684.200000,125,2,2139.621208,hint,nbiot,180 -on4,0,0,25,1,0,360,4501.020320,125,1,1829.028044,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,125,0,2862.256708,hint,nbiot,180 -on9,0,0,25,1,0,720,4504.938080,126,1,1907.983940,hint,nbiot,180 -on11,0,0,25,1,0,787,4502.051600,126,2,1973.590640,hint,nbiot,180 -on8,0,0,26,1,0,1170,4681.600000,126,2,2146.283292,hint,nbiot,180 -on10,0,0,25,1,0,1195,4502.289680,126,1,1933.782372,hint,nbiot,180 -on1,0,0,25,1,0,3533,4501.000000,126,1,1917.406500,hint,nbiot,180 -on7,0,0,24,1,0,540,4323.010320,126,0,2019.104336,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,126,0,3379.383708,hint,nbiot,180 -on6,0,0,24,1,0,842,4322.010320,126,1,1874.007628,hint,nbiot,180 -on3,0,0,24,1,0,370,4322.979360,126,0,1844.248452,hint,nbiot,180 -on2,0,0,24,1,0,927,4322.989680,126,0,1945.002580,hint,nbiot,180 -on5,0,0,27,1,0,1111,4864.661600,126,3,2472.397764,hint,nbiot,180 -on4,0,0,24,1,0,3124,4347.310320,126,1,1946.540836,hint,nbiot,180 -on4,0,0,24,1,0,0,4322.000000,127,0,1894.413292,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,127,0,3515.500000,hint,nbiot,180 -on9,0,0,26,1,0,446,4684.289680,127,2,2107.085788,hint,nbiot,180 -on8,0,0,24,1,0,1131,4323.979360,127,0,1860.261868,hint,nbiot,180 -on11,0,0,24,1,0,673,4324.010320,127,0,1983.780960,hint,nbiot,180 -on10,0,0,25,1,0,0,4502.600000,127,1,1855.211832,hint,nbiot,180 -on2,0,0,25,1,0,294,4505.969040,127,1,2030.759032,hint,nbiot,180 -on1,0,0,25,1,0,900,4502.041280,127,1,2028.986636,hint,nbiot,180 -on7,0,0,24,1,0,1440,4321.010320,127,0,1754.424252,hint,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,127,0,1728.000000,hint,nbiot,180 -on5,0,0,25,1,0,1013,4501.210000,127,1,1940.910416,hint,nbiot,180 -on6,0,0,24,1,0,774,4323.010320,127,0,1949.184252,hint,nbiot,180 -on1,0,0,24,1,0,3780,4321.010320,128,0,1870.760836,hint,nbiot,180 -on7,0,0,24,1,0,435,4321.010320,128,0,1796.264128,hint,nbiot,180 -on11,0,0,26,1,0,1954,4683.989680,128,2,2060.367496,hint,nbiot,180 -on6,0,0,24,1,0,0,4322.000000,128,0,1807.066708,hint,nbiot,180 -on3,0,0,24,1,0,1779,4322.020640,128,0,1976.074964,hint,nbiot,180 -on8,0,0,24,0,0,4074,4452.300000,128,1,1983.076500,hint,nbiot,180 -on5,0,0,24,1,0,960,4324.989680,128,0,1984.165996,hint,nbiot,180 -on4,0,0,26,1,0,365,4684.969040,128,2,2153.182532,hint,nbiot,180 -on9,0,0,25,1,0,587,4503.979360,128,1,2024.171660,hint,nbiot,180 -on10,0,0,24,1,0,380,4350.292880,128,1,1847.588984,hint,nbiot,180 -on2,0,0,25,1,0,113,4505.210000,128,1,2108.520624,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,128,0,3687.100000,hint,nbiot,180 -on1,0,0,26,1,0,627,4683.300000,129,2,2240.173084,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,129,0,2660.106708,hint,nbiot,180 -on4,0,0,25,1,0,535,4501.190000,129,1,1916.832500,hint,nbiot,180 -on7,0,0,26,1,0,775,4681.600000,129,2,2080.243084,hint,nbiot,180 -on11,0,0,25,1,0,720,4502.630960,129,1,2021.864300,hint,nbiot,180 -on6,0,0,25,1,0,0,4503.630960,129,1,2042.687508,hint,nbiot,180 -on3,0,0,24,1,0,313,4321.989680,129,0,1870.112580,hint,nbiot,180 -on10,0,0,24,1,0,16,4322.020640,129,0,1918.218256,hint,nbiot,180 -on5,0,0,24,1,0,1620,4321.000000,129,0,1845.400000,hint,nbiot,180 -on8,0,0,26,1,0,513,4685.179040,129,2,2227.086200,hint,nbiot,180 -on2,0,0,25,1,0,900,4503.620320,129,2,2060.369752,hint,nbiot,180 -on9,0,0,26,1,0,548,4681.341280,129,3,1917.166344,hint,nbiot,180 -on8,0,0,26,1,0,656,4684.289680,130,3,2272.172164,hint,nbiot,180 -on3,0,0,25,1,0,2,4503.010320,130,1,2015.522544,hint,nbiot,180 -on11,0,0,25,1,0,248,4650.958720,130,3,2115.079904,hint,nbiot,180 -on9,0,0,25,1,0,208,4504.041280,130,1,2054.394804,hint,nbiot,180 -on7,0,0,24,1,0,0,4321.410000,130,0,1844.127292,hint,nbiot,180 -on6,0,0,27,1,0,540,4863.717760,130,3,2198.527060,hint,nbiot,180 -on10,0,0,25,1,0,672,4641.610320,130,2,2361.057544,hint,nbiot,180 -on4,0,0,26,1,0,442,4682.920640,130,2,2311.021464,hint,nbiot,180 -on5,0,0,23,1,0,419,4293.000000,130,0,1819.256708,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,130,0,3129.406708,hint,nbiot,180 -on1,0,0,24,1,0,2542,4321.000000,130,0,1831.750000,hint,nbiot,180 -on2,0,0,25,1,0,215,4503.300000,130,1,2141.016708,hint,nbiot,180 -on4,0,0,24,1,0,1598,4475.279360,131,1,2174.268660,hint,nbiot,180 -on7,0,0,26,1,0,693,4685.948400,131,2,2182.102360,hint,nbiot,180 -on1,0,0,25,1,0,180,4503.979360,131,1,2035.748576,hint,nbiot,180 -on5,0,0,25,1,0,2964,4502.289680,131,1,1938.729080,hint,nbiot,180 -on11,0,0,25,1,0,518,4505.189040,131,1,1976.107032,hint,nbiot,180 -on8,0,0,25,1,0,258,4501.072240,131,1,1885.163936,hint,nbiot,180 -on9,0,0,24,1,0,303,4321.020640,131,0,1765.068256,hint,nbiot,180 -on6,0,0,26,1,0,650,4682.220320,131,3,2017.819668,hint,nbiot,180 -on3,0,0,25,1,0,4254,4500.000000,131,1,1826.013000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,131,0,3379.006500,hint,nbiot,180 -on2,0,0,26,1,0,520,4684.600000,131,2,2399.690000,hint,nbiot,180 -on10,0,0,25,1,0,543,4587.520000,131,2,2147.014500,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,132,0,2396.206708,hint,nbiot,180 -on4,0,0,24,1,0,0,4320.010320,132,0,1754.010836,hint,nbiot,180 -on5,0,0,27,1,0,732,4862.900000,132,3,2409.253084,hint,nbiot,180 -on9,0,0,24,1,0,757,4321.000000,132,0,1820.310000,hint,nbiot,180 -on11,0,0,26,1,0,1099,4681.300000,132,2,2080.519792,hint,nbiot,180 -on7,0,0,24,1,0,180,4320.010320,132,0,1754.010836,hint,nbiot,180 -on2,0,0,26,1,0,542,4682.489040,132,2,2032.603532,hint,nbiot,180 -on6,0,0,24,1,0,627,4322.000000,132,0,1899.100000,hint,nbiot,180 -on10,0,0,23,1,0,399,4225.000000,132,0,1744.203292,hint,nbiot,180 -on1,0,0,25,1,0,360,4503.000000,132,1,2038.255000,hint,nbiot,180 -on3,0,0,25,1,0,721,4501.969040,132,1,1865.014324,hint,nbiot,180 -on8,0,0,24,1,0,0,4320.010320,132,0,1754.010836,hint,nbiot,180 -on1,0,0,24,1,0,58,4322.969040,133,0,1923.797616,hint,nbiot,180 -on10,0,0,24,1,0,579,4322.300000,133,1,1933.293624,hint,nbiot,180 -on5,0,0,24,1,0,3,4378.630960,133,1,1928.980800,hint,nbiot,180 -on8,0,0,26,1,0,873,4682.358720,133,2,1904.365320,hint,nbiot,180 -on7,0,0,24,1,0,360,4320.010320,133,0,1754.010836,hint,nbiot,180 -on3,0,0,24,1,0,1260,4321.000000,133,0,1754.413416,hint,nbiot,180 -on4,0,0,26,1,0,2193,4682.300000,133,2,2084.618292,hint,nbiot,180 -on11,0,0,24,1,0,1904,4322.000000,133,0,1894.550000,hint,nbiot,180 -on6,0,0,24,1,0,205,4322.989680,133,1,1859.209288,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,133,0,2847.060124,hint,nbiot,180 -on9,0,0,25,1,0,749,4502.300000,133,1,2121.948292,hint,nbiot,180 -on2,0,0,25,1,0,1987,4501.300000,133,1,1986.016584,hint,nbiot,180 -on10,0,0,25,1,0,3461,4501.300000,134,1,2007.870000,hint,nbiot,180 -on7,0,0,25,1,0,1733,4501.000000,134,1,1915.963292,hint,nbiot,180 -on1,0,0,25,1,0,1893,4501.989680,134,1,1939.707580,hint,nbiot,180 -on11,0,0,24,1,0,180,4323.010320,134,0,2068.770836,hint,nbiot,180 -on6,0,0,24,1,0,720,4321.010320,134,0,1857.117544,hint,nbiot,180 -on2,0,0,24,1,0,1341,4321.010320,134,0,1782.367544,hint,nbiot,180 -on9,0,0,25,1,0,514,4501.030960,134,1,1826.439008,hint,nbiot,180 -on5,0,0,24,1,0,1080,4323.010320,134,0,2014.424128,hint,nbiot,180 -on3,0,0,25,1,0,180,4503.630960,134,1,2058.684216,hint,nbiot,180 -on8,0,0,25,1,0,2199,4558.300000,134,2,1940.326500,hint,nbiot,180 -on4,0,0,25,1,0,1839,4501.979360,134,1,1864.713576,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,134,0,3180.106708,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,135,0,3716.350000,hint,nbiot,180 -on6,0,0,25,1,0,294,4505.620640,135,1,2125.143504,hint,nbiot,180 -on11,0,0,27,1,0,998,4862.289680,135,3,2149.887080,hint,nbiot,180 -on3,0,0,25,1,0,873,4651.520320,135,2,2144.664628,hint,nbiot,180 -on2,0,0,26,1,0,513,4684.490000,135,3,2304.102708,hint,nbiot,180 -on5,0,0,26,1,0,694,4686.289680,135,2,2222.539080,hint,nbiot,180 -on7,0,0,24,1,0,448,4322.938080,135,0,1788.338648,hint,nbiot,180 -on10,0,0,27,1,0,688,4865.810000,135,3,2446.485168,hint,nbiot,180 -on1,0,0,27,1,0,578,4862.510000,135,4,2154.070416,hint,nbiot,180 -on8,0,0,24,1,0,303,4323.000000,135,0,1959.430000,hint,nbiot,180 -on9,0,0,25,1,0,754,4569.279360,135,2,2178.341452,hint,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,hint,nbiot,180 -on5,0,0,24,1,0,0,4323.010320,136,0,1931.244252,hint,nbiot,180 -on6,0,0,25,1,0,1848,4503.589680,136,1,2115.925996,hint,nbiot,180 -on2,0,0,24,1,0,1691,4320.989680,136,1,1851.577580,hint,nbiot,180 -on11,0,0,24,0,0,4228,4320.300000,136,1,1753.853500,hint,nbiot,180 -on10,0,0,24,1,0,720,4322.000000,136,0,1839.580124,hint,nbiot,180 -on8,0,0,24,1,0,2757,4321.010320,136,0,1839.560836,hint,nbiot,180 -on3,0,0,26,1,0,1449,4680.990000,136,2,2000.524000,hint,nbiot,180 -on1,0,0,24,1,0,203,4434.989680,136,2,1851.560996,hint,nbiot,180 -on4,0,0,26,1,0,1305,4685.469040,136,2,2144.568948,hint,nbiot,180 -on9,0,0,24,1,0,1080,4321.000000,136,0,1780.010000,hint,nbiot,180 -on7,0,0,25,1,0,1409,4501.210000,136,1,1916.450292,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,136,0,3536.293500,hint,nbiot,180 -on1,0,0,24,1,0,3578,4321.000000,137,0,1860.350000,hint,nbiot,180 -on9,0,0,24,1,0,675,4323.989680,137,0,1952.552580,hint,nbiot,180 -on8,0,0,26,1,0,1233,4683.358720,137,2,2039.328528,hint,nbiot,180 -on6,0,0,25,1,0,762,4504.989680,137,2,2263.118664,hint,nbiot,180 -on7,0,0,26,1,0,874,4685.989680,137,2,2212.702412,hint,nbiot,180 -on3,0,0,25,1,0,1014,4503.979040,137,1,1966.718240,hint,nbiot,180 -on5,0,0,26,1,0,993,4707.099680,137,3,2327.621456,hint,nbiot,180 -on10,0,0,25,1,0,360,4504.041280,137,1,1955.354928,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,137,0,3531.756708,hint,nbiot,180 -on11,0,0,24,1,0,3180,4320.989680,137,0,1871.402580,hint,nbiot,180 -on4,0,0,24,1,0,297,4322.000000,137,0,1871.163416,hint,nbiot,180 -on2,0,0,24,1,0,360,4451.748400,137,1,2273.861068,hint,nbiot,180 -on10,0,0,26,1,0,877,4682.020640,138,2,2102.752880,hint,nbiot,180 -on7,0,0,24,1,0,491,4325.410960,138,0,2016.724632,hint,nbiot,180 -on5,0,0,25,1,0,757,4503.189680,138,1,2141.044080,hint,nbiot,180 -on1,0,0,25,1,0,4073,4502.300000,138,1,2052.340000,hint,nbiot,180 -on8,0,0,24,1,0,204,4322.000000,138,0,1754.826832,hint,nbiot,180 -on4,0,0,25,1,0,1755,4502.968720,138,1,1918.207404,hint,nbiot,180 -on3,0,0,25,1,0,1440,4502.969040,138,1,1877.035908,hint,nbiot,180 -on9,0,0,24,1,0,1864,4321.010320,138,1,1870.767336,hint,nbiot,180 -on2,0,0,24,1,0,2231,4321.000000,138,0,1799.250000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,138,0,3445.306708,hint,nbiot,180 -on11,0,0,26,1,0,923,4683.600000,138,2,2241.996500,hint,nbiot,180 -on6,0,0,24,1,0,1521,4322.020640,138,0,1871.028256,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,139,0,3621.450000,hint,nbiot,180 -on3,0,0,25,1,0,1560,4595.000000,139,2,2223.086416,hint,nbiot,180 -on1,0,0,26,1,0,1699,4683.279360,139,2,2175.379744,hint,nbiot,180 -on7,0,0,24,1,0,37,4322.969040,139,0,1755.207740,hint,nbiot,180 -on2,0,0,25,1,0,1743,4504.010320,139,2,2159.579044,hint,nbiot,180 -on9,0,0,24,1,0,1260,4325.020640,139,0,1884.748504,hint,nbiot,180 -on5,0,0,24,1,0,900,4322.000320,139,0,1754.833460,hint,nbiot,180 -on10,0,0,24,1,0,762,4321.000000,139,0,1754.413416,hint,nbiot,180 -on4,0,0,25,1,0,1435,4501.180000,139,1,1916.438292,hint,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,hint,nbiot,180 -on6,0,0,25,1,0,1080,4502.999680,139,1,1941.886496,hint,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,hint,nbiot,180 -on5,0,0,24,1,0,3232,4322.000000,140,0,2075.250000,hint,nbiot,180 -on10,0,0,25,1,0,490,4502.969040,140,1,1963.700824,hint,nbiot,180 -on8,0,0,25,1,0,1062,4500.010320,140,1,1826.017336,hint,nbiot,180 -on7,0,0,24,1,0,754,4324.979360,140,0,2024.071868,hint,nbiot,180 -on11,0,0,24,1,0,1213,4320.989680,140,0,1754.402580,hint,nbiot,180 -on2,0,0,24,1,0,1800,4320.010320,140,0,1754.010836,hint,nbiot,180 -on1,0,0,25,1,0,506,4500.330960,140,1,1921.689092,hint,nbiot,180 -on3,0,0,25,1,0,236,4505.989680,140,1,2283.597580,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,140,0,3140.456708,hint,nbiot,180 -on6,0,0,24,1,0,1708,4320.989680,140,0,1754.402580,hint,nbiot,180 -on9,0,0,24,1,0,310,4321.000000,140,0,1760.503292,hint,nbiot,180 -on4,0,0,24,1,0,478,4323.020640,140,0,1941.121672,hint,nbiot,180 -on6,0,0,25,1,0,275,4502.000000,141,1,2051.413168,hint,nbiot,180 -on3,0,0,25,1,0,938,4502.020640,141,1,1955.723380,hint,nbiot,180 -on10,0,0,26,1,0,565,4682.900000,141,2,2268.990084,hint,nbiot,180 -on2,0,0,25,1,0,1041,4501.000000,141,1,1917.009792,hint,nbiot,180 -on9,0,0,25,1,0,210,4503.979360,141,1,2056.710036,hint,nbiot,180 -on7,0,0,26,1,0,538,4680.979360,141,3,1901.824784,hint,nbiot,180 -on1,0,0,27,1,0,847,4863.799680,141,3,2360.479456,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,141,0,2650.356708,hint,nbiot,180 -on8,0,0,25,1,0,426,4503.300000,141,1,2088.230000,hint,nbiot,180 -on5,0,0,24,1,0,2996,4322.000000,141,0,1886.750000,hint,nbiot,180 -on4,0,0,26,1,0,604,4682.341280,141,2,2102.633096,hint,nbiot,180 -on11,0,0,24,1,0,180,4331.010320,141,1,1891.062836,hint,nbiot,180 -on1,0,0,25,1,0,113,4503.000000,142,1,2148.170000,hint,nbiot,180 -on6,0,0,28,1,0,531,5043.800000,142,4,2756.549876,hint,nbiot,180 -on2,0,0,26,1,0,339,4681.510000,142,2,2149.671960,hint,nbiot,180 -on4,0,0,24,1,0,0,4321.000000,142,0,1843.963292,hint,nbiot,180 -on8,0,0,27,1,0,670,4862.100000,142,3,2357.179876,hint,nbiot,180 -on3,0,0,25,1,0,160,4538.300000,142,3,2055.983332,hint,nbiot,180 -on9,0,0,28,1,0,695,5042.200000,142,5,2450.046084,hint,nbiot,180 -on7,0,0,26,1,0,343,4682.000000,142,2,2008.882752,hint,nbiot,180 -on11,0,0,26,1,0,600,4681.600000,142,2,2107.283292,hint,nbiot,180 -on10,0,0,25,1,0,394,4501.000000,142,1,2005.728292,hint,nbiot,180 -on5,0,0,25,1,0,360,4500.420640,142,2,1826.383380,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,142,0,2257.756708,hint,nbiot,180 -on1,0,0,24,1,0,1260,4450.010320,143,1,1934.060836,hint,nbiot,180 -on7,0,0,24,1,0,900,4322.000000,143,0,1870.123416,hint,nbiot,180 -on10,0,0,24,1,0,508,4400.020640,143,1,2001.620172,hint,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,hint,nbiot,180 -on9,0,0,24,1,0,4071,4320.989680,143,0,1773.252580,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,143,0,3400.833500,hint,nbiot,180 -on2,0,0,24,1,0,2160,4320.010320,143,0,1754.010836,hint,nbiot,180 -on3,0,0,24,1,0,1080,4324.989680,143,0,1905.775996,hint,nbiot,180 -on6,0,0,24,1,0,1163,4323.569360,143,1,1979.047660,hint,nbiot,180 -on8,0,0,25,1,0,834,4501.020640,143,1,1870.628172,hint,nbiot,180 -on11,0,0,25,1,0,1117,4505.358720,143,1,2021.032028,hint,nbiot,180 -on5,0,0,25,1,0,1373,4505.189360,143,1,2116.059076,hint,nbiot,180 -on6,0,0,24,1,0,1800,4458.020320,144,1,1912.578044,hint,nbiot,180 -on4,0,0,25,1,0,2385,4502.000000,144,1,2034.656584,hint,nbiot,180 -on8,0,0,24,1,0,42,4322.000000,144,0,1871.163416,hint,nbiot,180 -on9,0,0,25,1,0,2160,4502.000000,144,1,1979.615000,hint,nbiot,180 -on3,0,0,24,1,0,900,4320.010320,144,0,1754.010836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,144,0,2812.856708,hint,nbiot,180 -on10,0,0,24,1,0,3060,4321.000000,144,0,1845.400000,hint,nbiot,180 -on7,0,0,25,1,0,817,4503.000000,144,1,1944.206708,hint,nbiot,180 -on5,0,0,25,1,0,2394,4501.610320,144,1,2018.010836,hint,nbiot,180 -on1,0,0,25,1,0,2341,4501.389680,144,1,1914.312580,hint,nbiot,180 -on2,0,0,24,1,0,720,4321.000000,144,0,1845.003292,hint,nbiot,180 -on11,0,0,24,1,0,2989,4321.989680,144,0,1760.002580,hint,nbiot,180 -on10,0,0,25,1,0,1260,4503.979360,145,1,1890.018368,hint,nbiot,180 -on3,0,0,24,1,0,32,4321.989680,145,0,1844.769288,hint,nbiot,180 -on8,0,0,25,1,0,911,4501.000000,145,1,1839.426624,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,145,0,3145.656708,hint,nbiot,180 -on5,0,0,26,1,0,333,4682.358720,145,2,1986.915112,hint,nbiot,180 -on1,0,0,24,1,0,707,4321.010320,145,0,1987.760836,hint,nbiot,180 -on6,0,0,24,1,0,1438,4322.000000,145,1,1895.213208,hint,nbiot,180 -on4,0,0,24,1,0,264,4322.010320,145,0,1906.514128,hint,nbiot,180 -on7,0,0,25,1,0,1321,4600.300000,145,2,2137.839916,hint,nbiot,180 -on11,0,0,24,1,0,480,4321.020320,145,0,1842.438044,hint,nbiot,180 -on9,0,0,25,1,0,2518,4502.300000,145,1,2035.570000,hint,nbiot,180 -on2,0,0,25,1,0,360,4501.620640,145,1,1826.870088,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,146,0,2339.006708,hint,nbiot,180 -on5,0,0,25,1,0,540,4504.000000,146,1,1978.731708,hint,nbiot,180 -on4,0,0,24,1,0,825,4322.000000,146,0,1883.500000,hint,nbiot,180 -on10,0,0,25,1,0,741,4501.300000,146,2,2020.213292,hint,nbiot,180 -on6,0,0,25,1,0,962,4608.300000,146,2,2115.864584,hint,nbiot,180 -on7,0,0,25,1,0,986,4501.190000,146,1,1891.469084,hint,nbiot,180 -on1,0,0,26,1,0,1414,4682.600000,146,2,2245.489792,hint,nbiot,180 -on11,0,0,25,1,0,1101,4501.300000,146,1,2020.863292,hint,nbiot,180 -on8,0,0,27,1,0,872,4862.900000,146,4,2449.546168,hint,nbiot,180 -on9,0,0,24,1,0,580,4322.000000,146,0,1935.753292,hint,nbiot,180 -on3,0,0,25,1,0,548,4502.041280,146,1,1962.094928,hint,nbiot,180 -on2,0,0,27,1,0,1140,4864.538080,146,3,2411.234940,hint,nbiot,180 -on4,0,0,24,1,0,2857,4320.010320,147,0,1775.460836,hint,nbiot,180 -on5,0,0,24,1,0,1295,4320.989680,147,0,1754.409288,hint,nbiot,180 -on10,0,0,25,1,0,2634,4502.010000,147,1,2004.513792,hint,nbiot,180 -on11,0,0,25,1,0,2520,4504.620640,147,1,2035.420088,hint,nbiot,180 -on1,0,0,24,1,0,540,4320.010320,147,0,1754.010836,hint,nbiot,180 -on9,0,0,24,1,0,180,4324.958720,147,0,1912.250404,hint,nbiot,180 -on6,0,0,26,1,0,1070,4684.538720,147,2,2016.602028,hint,nbiot,180 -on7,0,0,25,1,0,1063,4506.969040,147,1,2292.127532,hint,nbiot,180 -on2,0,0,24,1,0,360,4323.010320,147,0,1813.094376,hint,nbiot,180 -on8,0,0,24,0,0,4300,4320.000000,147,0,1741.650000,hint,nbiot,180 -on3,0,0,25,1,0,293,4501.020640,147,1,1942.778172,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,147,0,3502.500000,hint,nbiot,180 -on1,0,0,25,1,0,1553,4501.000000,148,1,1917.406500,hint,nbiot,180 -on11,0,0,25,1,0,866,4503.289680,148,1,1986.449288,hint,nbiot,180 -on4,0,0,25,1,0,327,4622.620320,148,3,1990.586252,hint,nbiot,180 -on10,0,0,25,1,0,300,4548.158720,148,2,2031.248612,hint,nbiot,180 -on8,0,0,24,1,0,2,4322.979360,148,0,1960.851744,hint,nbiot,180 -on3,0,0,25,1,0,26,4501.010000,148,1,1930.235624,hint,nbiot,180 -on6,0,0,27,1,0,861,4981.168720,148,4,2279.916780,hint,nbiot,180 -on5,0,0,25,1,0,851,4502.000000,148,1,2039.356500,hint,nbiot,180 -on7,0,0,25,1,0,589,4502.289680,148,1,2084.712996,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,148,0,2688.056708,hint,nbiot,180 -on9,0,0,26,1,0,936,4682.300000,148,2,2167.623084,hint,nbiot,180 -on2,0,0,25,1,0,696,4621.320000,148,2,2132.382792,hint,nbiot,180 -on4,0,0,24,1,0,1820,4321.000000,149,0,1942.900000,hint,nbiot,180 -on2,0,0,26,1,0,1973,4682.000000,149,2,2079.752876,hint,nbiot,180 -on6,0,0,25,1,0,1426,4503.289680,149,3,2117.307496,hint,nbiot,180 -on1,0,0,24,1,0,920,4472.300000,149,1,2071.793292,hint,nbiot,180 -on3,0,0,24,1,0,765,4321.989680,149,0,1870.119288,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,149,0,2688.570208,hint,nbiot,180 -on10,0,0,26,1,0,1418,4813.810000,149,3,2257.998792,hint,nbiot,180 -on7,0,0,24,1,0,18,4322.989680,149,0,1942.019288,hint,nbiot,180 -on9,0,0,25,1,0,900,4502.610320,149,1,1942.959252,hint,nbiot,180 -on5,0,0,24,1,0,720,4320.620320,149,0,1754.254836,hint,nbiot,180 -on8,0,0,26,1,0,1806,4682.900000,149,2,2398.346584,hint,nbiot,180 -on11,0,0,25,1,0,1823,4654.648400,149,3,1906.085984,hint,nbiot,180 -on1,0,0,25,1,0,1069,4500.200320,150,1,1826.093336,hint,nbiot,180 -on10,0,0,24,1,0,1080,4321.000000,150,0,1754.413416,hint,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,hint,nbiot,180 -on5,0,0,24,1,0,19,4320.989680,150,0,1754.402580,hint,nbiot,180 -on2,0,0,24,1,0,467,4322.989680,150,0,1776.269288,hint,nbiot,180 -on6,0,0,26,1,0,899,4683.528400,150,2,1988.241192,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,150,0,3208.700000,hint,nbiot,180 -on8,0,0,24,1,0,3134,4320.000000,150,0,1754.006708,hint,nbiot,180 -on11,0,0,24,1,0,1611,4320.000000,150,0,1767.656708,hint,nbiot,180 -on3,0,0,24,1,0,661,4321.989680,150,0,1870.496080,hint,nbiot,180 -on9,0,0,25,1,0,861,4502.000000,150,1,2032.719792,hint,nbiot,180 -on4,0,0,25,1,0,387,4503.620640,150,1,2031.763380,hint,nbiot,180 -on7,0,0,25,1,0,624,4620.520320,151,2,1969.114628,hint,nbiot,180 -on8,0,0,26,1,0,693,4683.210000,151,2,2161.903708,hint,nbiot,180 -on11,0,0,25,1,0,1192,4501.010000,151,1,1916.363792,hint,nbiot,180 -on6,0,0,24,1,0,67,4323.979360,151,0,1987.265160,hint,nbiot,180 -on3,0,0,25,1,0,655,4501.190000,151,1,1916.832500,hint,nbiot,180 -on5,0,0,26,1,0,333,4686.000000,151,2,2258.621500,hint,nbiot,180 -on2,0,0,24,1,0,1208,4320.000000,151,0,1754.006708,hint,nbiot,180 -on10,0,0,25,1,0,168,4503.030640,151,1,1992.838756,hint,nbiot,180 -on9,0,0,26,1,0,1238,4680.300000,151,2,2011.363208,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,151,0,2689.356708,hint,nbiot,180 -on1,0,0,25,1,0,1231,4501.300000,151,1,2149.563292,hint,nbiot,180 -on4,0,0,25,1,0,294,4502.000000,151,1,2008.878000,hint,nbiot,180 -on1,0,0,24,1,0,87,4321.989680,152,0,1788.855872,hint,nbiot,180 -on9,0,0,24,1,0,669,4322.010320,152,0,1868.560836,hint,nbiot,180 -on8,0,0,24,1,0,32,4353.010320,152,1,1986.079252,hint,nbiot,180 -on11,0,0,26,1,0,485,4683.300000,152,2,2220.204668,hint,nbiot,180 -on10,0,0,26,1,0,514,4682.051600,152,2,2067.197264,hint,nbiot,180 -on7,0,0,25,1,0,454,4505.279360,152,1,2026.199660,hint,nbiot,180 -on2,0,0,25,1,0,110,4504.010320,152,1,2018.334460,hint,nbiot,180 -on5,0,0,25,1,0,360,4502.958720,152,1,1930.755320,hint,nbiot,180 -on3,0,0,26,1,0,617,4686.279360,152,3,2191.075160,hint,nbiot,180 -on4,0,0,24,1,0,180,4321.989680,152,0,1754.815996,hint,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,152,0,3410.850000,hint,nbiot,180 -on1,0,0,25,1,0,1800,4501.989680,153,1,1912.615996,hint,nbiot,180 -on10,0,0,24,1,0,1800,4321.000000,153,0,1840.206916,hint,nbiot,180 -on8,0,0,24,1,0,297,4321.010320,153,0,1869.720836,hint,nbiot,180 -on9,0,0,24,1,0,2520,4321.000000,153,0,1845.400000,hint,nbiot,180 -on11,0,0,23,1,0,1396,4278.989680,153,0,1826.912580,hint,nbiot,180 -on7,0,0,25,1,0,1666,4500.000000,153,1,1826.019708,hint,nbiot,180 -on4,0,0,25,1,0,675,4504.020320,153,1,2158.478044,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,153,0,2939.346708,hint,nbiot,180 -on6,0,0,25,1,0,2210,4500.310320,153,1,1911.280836,hint,nbiot,180 -on2,0,0,24,1,0,1778,4400.200000,153,1,2020.938208,hint,nbiot,180 -on5,0,0,24,1,0,996,4320.989680,153,0,1871.409288,hint,nbiot,180 -on3,0,0,24,1,0,1980,4322.000000,153,0,1875.700000,hint,nbiot,180 -on9,0,0,24,1,0,540,4323.979360,154,0,1866.878452,hint,nbiot,180 -on5,0,0,24,1,0,1401,4324.020640,154,0,2206.078380,hint,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,hint,nbiot,180 -on2,0,0,26,1,0,1148,4835.479360,154,3,2320.805244,hint,nbiot,180 -on11,0,0,27,1,0,1045,4863.589680,154,3,2332.438956,hint,nbiot,180 -on3,0,0,24,1,0,667,4322.000000,154,0,1870.123416,hint,nbiot,180 -on4,0,0,26,1,0,806,4683.948400,154,2,2060.909152,hint,nbiot,180 -on7,0,0,24,1,0,549,4393.258720,154,1,2027.196904,hint,nbiot,180 -on8,0,0,25,1,0,1024,4503.289680,154,1,1996.842788,hint,nbiot,180 -on1,0,0,27,1,0,1186,4862.310000,154,3,2228.018708,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,154,0,3373.143292,hint,nbiot,180 -on6,0,0,26,1,0,866,4682.020640,154,3,2037.694796,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,155,0,2733.556708,hint,nbiot,180 -on10,0,0,24,1,0,471,4321.989680,155,0,1773.002580,hint,nbiot,180 -on2,0,0,25,1,0,1193,4501.010320,155,1,1942.760836,hint,nbiot,180 -on3,0,0,26,1,0,333,4683.958720,155,2,2076.649988,hint,nbiot,180 -on6,0,0,27,1,0,577,4863.658080,155,3,2204.390940,hint,nbiot,180 -on1,0,0,25,1,0,874,4501.000000,155,1,1917.406500,hint,nbiot,180 -on9,0,0,24,1,0,1669,4321.989680,155,0,1779.502580,hint,nbiot,180 -on7,0,0,25,1,0,900,4503.000000,155,1,2065.548292,hint,nbiot,180 -on5,0,0,24,1,0,533,4482.210000,155,1,2141.537084,hint,nbiot,180 -on4,0,0,26,1,0,882,4682.289680,155,2,2064.925664,hint,nbiot,180 -on11,0,0,25,1,0,2221,4519.600000,155,2,2203.689792,hint,nbiot,180 -on8,0,0,24,1,0,180,4453.000000,155,1,2091.301584,hint,nbiot,180 -on11,0,0,26,1,0,670,4683.269040,156,2,2102.620700,hint,nbiot,180 -on1,0,0,28,1,0,752,5043.110000,156,4,2502.578668,hint,nbiot,180 -on7,0,0,24,1,0,194,4321.989680,156,0,1836.305872,hint,nbiot,180 -on9,0,0,25,1,0,860,4501.000000,156,1,1916.756500,hint,nbiot,180 -on3,0,0,25,1,0,1790,4501.000000,156,1,1917.406500,hint,nbiot,180 -on4,0,0,24,1,0,1,4322.000000,156,0,1833.710000,hint,nbiot,180 -on10,0,0,25,1,0,574,4501.041280,156,1,1942.981636,hint,nbiot,180 -on8,0,0,25,1,0,671,4503.000000,156,1,2077.333000,hint,nbiot,180 -on5,0,0,26,1,0,150,4684.338080,156,2,2138.623648,hint,nbiot,180 -on2,0,0,27,1,0,914,4861.658720,156,3,2061.228404,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,156,0,2755.656708,hint,nbiot,180 -on6,0,0,25,1,0,334,4502.300000,156,1,2119.290000,hint,nbiot,180 -on2,0,0,24,1,0,1620,4362.000000,157,1,1856.626832,hint,nbiot,180 -on11,0,0,25,1,0,1656,4500.000000,157,1,1837.063208,hint,nbiot,180 -on1,0,0,24,1,0,407,4321.979680,157,0,1754.818496,hint,nbiot,180 -on6,0,0,25,1,0,1080,4503.610320,157,1,2030.459252,hint,nbiot,180 -on8,0,0,25,1,0,2880,4501.989680,157,1,1880.752580,hint,nbiot,180 -on5,0,0,24,1,0,540,4320.010320,157,0,1754.010836,hint,nbiot,180 -on7,0,0,24,1,0,180,4322.010320,157,0,1866.617544,hint,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,hint,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,hint,nbiot,180 -on10,0,0,24,1,0,3240,4321.000000,157,0,1761.550000,hint,nbiot,180 -on4,0,0,24,1,0,1556,4322.958720,157,0,1755.210320,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,157,0,3034.500000,hint,nbiot,180 -on10,0,0,25,1,0,1620,4504.000000,158,1,2147.054876,hint,nbiot,180 -on5,0,0,25,1,0,1483,4528.310320,158,2,1928.330628,hint,nbiot,180 -on3,0,0,26,1,0,1130,4681.989680,158,3,1932.375496,hint,nbiot,180 -on11,0,0,26,1,0,1857,4680.820320,158,2,2222.684628,hint,nbiot,180 -on4,0,0,26,1,0,1089,4682.240640,158,2,2080.772756,hint,nbiot,180 -on8,0,0,24,1,0,1244,4321.000000,158,0,1961.100000,hint,nbiot,180 -on2,0,0,26,1,0,1954,4682.979360,158,2,2103.318160,hint,nbiot,180 -on6,0,0,24,1,0,2504,4321.000000,158,0,1856.450000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,158,0,2990.956708,hint,nbiot,180 -on9,0,0,24,1,0,688,4321.010320,158,0,1987.104336,hint,nbiot,180 -on7,0,0,24,1,0,566,4321.969040,158,0,1855.551032,hint,nbiot,180 -on1,0,0,25,1,0,1727,4502.310000,158,1,2158.222084,hint,nbiot,180 -on2,0,0,24,1,0,180,4322.000000,159,0,1843.713292,hint,nbiot,180 -on10,0,0,27,1,0,628,4861.930320,159,3,2272.580128,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,159,0,2569.106708,hint,nbiot,180 -on6,0,0,26,1,0,334,4684.600000,159,2,2412.026584,hint,nbiot,180 -on8,0,0,25,1,0,1734,4500.010320,159,1,1826.017336,hint,nbiot,180 -on7,0,0,25,1,0,422,4502.041280,159,1,1983.063304,hint,nbiot,180 -on9,0,0,25,1,0,1013,4502.210000,159,1,1942.603916,hint,nbiot,180 -on1,0,0,24,1,0,395,4321.000000,159,0,1822.000000,hint,nbiot,180 -on5,0,0,26,1,0,575,4684.938400,159,3,2179.905192,hint,nbiot,180 -on11,0,0,25,1,0,513,4501.000000,159,1,1891.140000,hint,nbiot,180 -on3,0,0,25,1,0,1228,4501.320640,159,1,1886.601672,hint,nbiot,180 -on4,0,0,25,1,0,1609,4512.600000,159,2,2204.146500,hint,nbiot,180 -on9,0,0,25,1,0,1193,4502.000000,160,1,2034.156500,hint,nbiot,180 -on2,0,0,26,1,0,379,4685.458400,160,2,2211.618068,hint,nbiot,180 -on11,0,0,25,1,0,925,4672.369040,160,2,2013.462532,hint,nbiot,180 -on6,0,0,24,1,0,10,4322.000000,160,0,1891.813292,hint,nbiot,180 -on10,0,0,26,1,0,513,4680.969040,160,2,1898.414032,hint,nbiot,180 -on8,0,0,24,1,0,900,4320.010320,160,0,1754.010836,hint,nbiot,180 -on5,0,0,24,1,0,250,4322.000000,160,0,1839.929876,hint,nbiot,180 -on4,0,0,25,1,0,0,4503.000000,160,1,1992.365000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,160,0,2455.356708,hint,nbiot,180 -on3,0,0,26,1,0,624,4793.110000,160,3,2332.190376,hint,nbiot,180 -on1,0,0,26,1,0,390,4682.969040,160,2,2105.893908,hint,nbiot,180 -on7,0,0,26,1,0,447,4683.510000,160,2,2222.655292,hint,nbiot,180 -on11,0,0,25,1,0,540,4503.369040,161,2,2057.669448,hint,nbiot,180 -on2,0,0,25,1,0,613,4504.289680,161,1,2131.922580,hint,nbiot,180 -on8,0,0,25,1,0,360,4504.989680,161,1,2158.514164,hint,nbiot,180 -on7,0,0,27,1,0,913,4862.889360,161,3,2191.727368,hint,nbiot,180 -on6,0,0,24,1,0,4066,4321.000000,161,0,1777.150000,hint,nbiot,180 -on5,0,0,25,1,0,190,4505.248400,161,1,2254.752652,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,161,0,3364.440208,hint,nbiot,180 -on9,0,0,24,1,0,903,4432.000000,161,1,1889.409792,hint,nbiot,180 -on1,0,0,25,1,0,332,4566.010000,161,2,2234.005584,hint,nbiot,180 -on4,0,0,24,1,0,0,4374.610320,161,1,1890.329252,hint,nbiot,180 -on3,0,0,25,1,0,1704,4501.310320,161,2,1990.720836,hint,nbiot,180 -on10,0,0,25,1,0,491,4505.979360,161,1,2211.124952,hint,nbiot,180 -on1,0,0,24,1,0,648,4352.010320,162,2,1838.304128,hint,nbiot,180 -on5,0,0,24,1,0,83,4321.000000,162,0,1838.913416,hint,nbiot,180 -on8,0,0,24,1,0,2160,4321.000000,162,0,1845.400000,hint,nbiot,180 -on7,0,0,26,1,0,1406,4682.358720,162,2,2132.508612,hint,nbiot,180 -on3,0,0,25,1,0,1371,4501.300000,162,1,1921.679792,hint,nbiot,180 -on4,0,0,24,1,0,1440,4322.000000,162,0,1871.163416,hint,nbiot,180 -on2,0,0,24,1,0,273,4321.000000,162,0,1784.553292,hint,nbiot,180 -on6,0,0,25,1,0,540,4503.000000,162,1,2121.903292,hint,nbiot,180 -on9,0,0,25,1,0,282,4501.641280,162,1,1914.621636,hint,nbiot,180 -on11,0,0,24,1,0,436,4323.010320,162,0,1985.844252,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,162,0,2875.906708,hint,nbiot,180 -on10,0,0,24,1,0,180,4321.010320,162,0,1790.167544,hint,nbiot,180 -on1,0,0,26,1,0,876,4682.900000,163,2,2430.203292,hint,nbiot,180 -on8,0,0,24,1,0,565,4461.300000,163,1,1991.863084,hint,nbiot,180 -on2,0,0,24,1,0,205,4323.000000,163,0,1965.273500,hint,nbiot,180 -on4,0,0,26,1,0,596,4682.330960,163,2,2085.580508,hint,nbiot,180 -on3,0,0,26,1,0,294,4681.041280,163,3,2081.431344,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,163,0,2404.006708,hint,nbiot,180 -on11,0,0,28,1,0,664,5042.900000,163,5,2462.636252,hint,nbiot,180 -on5,0,0,24,1,0,484,4383.180000,163,1,1933.536708,hint,nbiot,180 -on9,0,0,26,1,0,217,4683.459040,163,2,2129.600200,hint,nbiot,180 -on10,0,0,25,1,0,93,4501.600000,163,1,2056.285000,hint,nbiot,180 -on6,0,0,27,1,0,747,4862.900000,163,3,2463.716584,hint,nbiot,180 -on7,0,0,24,1,0,0,4321.000000,163,0,1793.926708,hint,nbiot,180 -on1,0,0,24,1,0,219,4323.030960,164,0,1936.185592,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,164,0,3322.456708,hint,nbiot,180 -on11,0,0,25,1,0,767,4503.989680,164,1,2143.840788,hint,nbiot,180 -on9,0,0,24,1,0,360,4323.979360,164,0,1977.528576,hint,nbiot,180 -on2,0,0,25,1,0,571,4502.327760,164,1,1827.152936,hint,nbiot,180 -on8,0,0,26,1,0,334,4681.989680,164,2,1959.272288,hint,nbiot,180 -on6,0,0,26,1,0,848,4839.090000,164,3,2533.232584,hint,nbiot,180 -on3,0,0,25,1,0,3101,4501.300000,164,1,2007.870000,hint,nbiot,180 -on10,0,0,26,1,0,1208,4684.358720,164,2,2048.178528,hint,nbiot,180 -on5,0,0,27,1,0,480,4865.589680,164,3,2494.517164,hint,nbiot,180 -on7,0,0,24,1,0,0,4323.010320,164,0,1986.467420,hint,nbiot,180 -on4,0,0,26,1,0,600,4687.910320,164,2,2768.791044,hint,nbiot,180 -on3,0,0,28,1,0,1654,5314.030000,165,7,3007.647960,hint,nbiot,180 -on9,0,0,27,1,0,1686,4862.958720,165,3,2293.408404,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,165,0,2595.106708,hint,nbiot,180 -on1,0,0,25,1,0,1259,4501.138400,165,1,1827.131984,hint,nbiot,180 -on10,0,0,24,1,0,83,4323.000000,165,0,1891.673168,hint,nbiot,180 -on7,0,0,27,1,0,1322,4864.310320,165,3,2408.790420,hint,nbiot,180 -on2,0,0,26,1,0,1663,4682.810000,165,2,2174.587084,hint,nbiot,180 -on8,0,0,25,1,0,811,4502.230640,165,1,2057.850464,hint,nbiot,180 -on4,0,0,26,1,0,1119,4682.510000,165,2,2232.265500,hint,nbiot,180 -on6,0,0,26,1,0,1124,4682.190000,165,3,2106.245708,hint,nbiot,180 -on11,0,0,24,1,0,1475,4321.010320,165,0,1822.010836,hint,nbiot,180 -on5,0,0,26,1,0,987,4681.061920,165,2,1964.737352,hint,nbiot,180 -on2,0,0,26,1,0,1012,4686.810000,166,2,2438.078792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,166,0,3228.206708,hint,nbiot,180 -on11,0,0,25,1,0,1164,4503.300000,166,1,2081.340000,hint,nbiot,180 -on1,0,0,26,1,0,1197,4709.200000,166,3,2050.301832,hint,nbiot,180 -on3,0,0,25,1,0,3106,4502.000000,166,1,2034.156500,hint,nbiot,180 -on9,0,0,24,1,0,489,4321.010320,166,0,1870.760836,hint,nbiot,180 -on6,0,0,26,1,0,1053,4681.979040,166,2,2006.724740,hint,nbiot,180 -on7,0,0,24,1,0,763,4324.000000,166,0,2164.696584,hint,nbiot,180 -on10,0,0,24,1,0,1838,4323.010320,166,0,1861.830960,hint,nbiot,180 -on8,0,0,24,1,0,2595,4321.010320,166,0,1765.467544,hint,nbiot,180 -on4,0,0,24,1,0,912,4322.979360,166,0,1953.058244,hint,nbiot,180 -on5,0,0,24,1,0,279,4322.979360,166,0,1873.511868,hint,nbiot,180 -on3,0,0,23,1,0,2150,4311.000000,167,0,1841.400000,hint,nbiot,180 -on7,0,0,26,1,0,674,4684.589680,167,2,2221.195664,hint,nbiot,180 -on1,0,0,24,1,0,394,4323.000000,167,0,2039.256708,hint,nbiot,180 -on11,0,0,24,1,0,239,4322.000000,167,0,1918.463292,hint,nbiot,180 -on4,0,0,26,1,0,846,4743.030320,167,3,2127.526836,hint,nbiot,180 -on8,0,0,25,1,0,1193,4500.010320,167,1,1826.017336,hint,nbiot,180 -on10,0,0,26,1,0,475,4683.210000,167,2,2195.526752,hint,nbiot,180 -on5,0,0,25,1,0,811,4631.300000,167,2,2019.713208,hint,nbiot,180 -on9,0,0,26,1,0,514,4681.510000,167,2,2079.297084,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,167,0,2590.556708,hint,nbiot,180 -on6,0,0,24,1,0,380,4486.440960,167,1,1820.791508,hint,nbiot,180 -on2,0,0,26,1,0,537,4682.158400,167,3,1938.772944,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,168,0,2433.906708,hint,nbiot,180 -on5,0,0,25,1,0,540,4502.948400,168,1,1879.192776,hint,nbiot,180 -on1,0,0,24,1,0,330,4322.020640,168,0,2173.675172,hint,nbiot,180 -on9,0,0,24,1,0,1195,4321.000000,168,0,1770.650000,hint,nbiot,180 -on6,0,0,25,1,0,360,4505.000000,168,1,2243.076584,hint,nbiot,180 -on2,0,0,24,1,0,180,4322.010320,168,0,1853.604128,hint,nbiot,180 -on8,0,0,25,1,0,455,4502.000000,168,2,1961.356708,hint,nbiot,180 -on7,0,0,25,1,0,833,4501.000000,168,1,1917.406500,hint,nbiot,180 -on4,0,0,24,1,0,477,4320.010320,168,0,1754.010836,hint,nbiot,180 -on11,0,0,25,1,0,1053,4501.000000,168,1,1917.861292,hint,nbiot,180 -on10,0,0,26,1,0,1286,4681.790000,168,2,2160.665792,hint,nbiot,180 -on3,0,0,25,1,0,1054,4613.338080,168,2,1871.556856,hint,nbiot,180 -on4,0,0,25,1,0,1063,4503.310320,169,1,2102.294044,hint,nbiot,180 -on1,0,0,24,1,0,2340,4321.000000,169,0,1807.706708,hint,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,hint,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,hint,nbiot,180 -on7,0,0,24,1,0,1476,4322.000000,169,0,1849.713416,hint,nbiot,180 -on5,0,0,24,1,0,565,4320.010000,169,0,1754.017208,hint,nbiot,180 -on6,0,0,25,1,0,540,4502.979360,169,1,2028.328576,hint,nbiot,180 -on11,0,0,24,1,0,739,4321.989680,169,0,1833.452580,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,169,0,3139.150000,hint,nbiot,180 -on10,0,0,25,1,0,2743,4502.180000,169,1,1871.923708,hint,nbiot,180 -on9,0,0,26,1,0,937,4685.289680,169,2,2265.702496,hint,nbiot,180 -on3,0,0,24,1,0,1800,4320.010320,169,0,1754.010836,hint,nbiot,180 -on2,0,0,24,1,0,360,4322.989680,170,0,1945.256080,hint,nbiot,180 -on10,0,0,24,1,0,720,4321.979360,170,0,1821.748660,hint,nbiot,180 -on3,0,0,24,1,0,434,4322.000000,170,0,1871.806708,hint,nbiot,180 -on6,0,0,26,1,0,507,4685.368720,170,2,2281.815736,hint,nbiot,180 -on9,0,0,25,1,0,2483,4503.620640,170,2,2217.669880,hint,nbiot,180 -on5,0,0,25,1,0,720,4505.000000,170,1,1991.456540,hint,nbiot,180 -on4,0,0,24,1,0,620,4323.020640,170,1,1961.069756,hint,nbiot,180 -on1,0,0,25,1,0,3194,4501.000000,170,1,1939.506500,hint,nbiot,180 -on11,0,0,25,1,0,2024,4502.300000,170,1,2100.693292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,170,0,3187.906708,hint,nbiot,180 -on7,0,0,25,1,0,1719,4500.020640,170,1,1851.378172,hint,nbiot,180 -on8,0,0,25,1,0,1800,4500.989360,170,1,1826.415660,hint,nbiot,180 -on6,0,0,25,1,0,113,4504.220000,171,1,2221.652584,hint,nbiot,180 -on4,0,0,25,1,0,266,4501.210000,171,1,1893.180084,hint,nbiot,180 -on7,0,0,28,1,0,759,5043.258720,171,5,2405.288488,hint,nbiot,180 -on8,0,0,24,1,0,0,4320.051600,171,0,1754.040556,hint,nbiot,180 -on2,0,0,25,1,0,387,4653.900000,171,3,2261.693084,hint,nbiot,180 -on10,0,0,26,1,0,440,4682.341280,171,2,2126.807012,hint,nbiot,180 -on1,0,0,27,1,0,571,4862.410000,171,3,2474.960376,hint,nbiot,180 -on11,0,0,25,1,0,398,4501.010320,171,2,1939.952004,hint,nbiot,180 -on9,0,0,25,1,0,487,4501.000000,171,1,1893.694500,hint,nbiot,180 -on5,0,0,25,1,0,1260,4501.000000,171,1,1917.400000,hint,nbiot,180 -on3,0,0,27,1,0,381,4864.270960,171,4,2361.714260,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,171,0,2552.213208,hint,nbiot,180 -on4,0,0,25,1,0,3354,4501.000000,172,1,1917.406500,hint,nbiot,180 -on2,0,0,24,1,0,1425,4322.199680,172,1,1870.203080,hint,nbiot,180 -on9,0,0,24,1,0,745,4323.989680,172,0,1938.772580,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,172,0,3493.406708,hint,nbiot,180 -on1,0,0,25,1,0,1744,4500.010320,172,1,1826.017336,hint,nbiot,180 -on11,0,0,24,1,0,1326,4320.020640,172,0,1754.021672,hint,nbiot,180 -on10,0,0,25,1,0,226,4503.010320,172,1,2081.887336,hint,nbiot,180 -on6,0,0,25,1,0,587,4502.010320,172,1,1879.467336,hint,nbiot,180 -on8,0,0,24,1,0,0,4323.010320,172,0,2000.137544,hint,nbiot,180 -on7,0,0,25,1,0,360,4503.010320,172,1,2029.374252,hint,nbiot,180 -on5,0,0,25,1,0,738,4503.610320,172,1,1944.015960,hint,nbiot,180 -on3,0,0,25,1,0,180,4502.630960,172,1,1903.577508,hint,nbiot,180 -on2,0,0,24,1,0,1980,4322.000000,173,0,1824.610000,hint,nbiot,180 -on10,0,0,24,1,0,994,4320.989680,173,0,1754.402580,hint,nbiot,180 -on7,0,0,26,1,0,712,4683.669040,173,2,2048.936156,hint,nbiot,180 -on8,0,0,26,1,0,138,4682.758400,173,2,2026.581776,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,173,0,3200.906708,hint,nbiot,180 -on5,0,0,25,1,0,2273,4500.220320,173,1,1826.101336,hint,nbiot,180 -on1,0,0,24,1,0,259,4372.300000,173,1,2072.360000,hint,nbiot,180 -on3,0,0,24,1,0,1440,4320.989680,173,0,1754.409288,hint,nbiot,180 -on9,0,0,25,1,0,2976,4501.490000,173,1,2052.991000,hint,nbiot,180 -on6,0,0,24,1,0,19,4322.348400,173,0,1871.569276,hint,nbiot,180 -on11,0,0,25,1,0,1620,4502.010000,173,1,1943.173916,hint,nbiot,180 -on4,0,0,26,1,0,479,4686.630640,173,2,2497.612256,hint,nbiot,180 -on11,0,0,25,1,0,406,4505.989680,174,1,2183.979204,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,174,0,3743.000000,hint,nbiot,180 -on5,0,0,26,1,0,874,4683.168720,174,2,1981.200612,hint,nbiot,180 -on3,0,0,24,1,0,845,4321.989680,174,0,1763.512372,hint,nbiot,180 -on1,0,0,23,1,0,180,4302.030960,174,0,1750.342508,hint,nbiot,180 -on4,0,0,25,1,0,705,4502.000000,174,1,1893.379916,hint,nbiot,180 -on7,0,0,24,1,0,540,4322.000000,174,0,1864.273416,hint,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,174,0,1728.000000,hint,nbiot,180 -on8,0,0,26,1,0,874,4682.300000,174,2,2080.933208,hint,nbiot,180 -on6,0,0,24,1,0,3828,4320.010320,174,0,1754.010836,hint,nbiot,180 -on9,0,0,24,1,0,1524,4395.300000,174,1,1979.133416,hint,nbiot,180 -on10,0,0,24,1,0,360,4322.030960,174,0,1970.885800,hint,nbiot,180 -on10,0,0,26,1,0,822,4681.720000,175,2,2054.225876,hint,nbiot,180 -on4,0,0,24,1,0,695,4388.210000,175,1,2030.890500,hint,nbiot,180 -on9,0,0,26,1,0,334,4682.020640,175,2,2129.448172,hint,nbiot,180 -on7,0,0,24,1,0,20,4320.390000,175,0,1772.882708,hint,nbiot,180 -on1,0,0,25,1,0,693,4503.958720,175,1,2060.303404,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,175,0,2456.006708,hint,nbiot,180 -on5,0,0,25,1,0,642,4502.380000,175,1,2033.470000,hint,nbiot,180 -on11,0,0,26,1,0,831,4768.900000,175,4,2278.566168,hint,nbiot,180 -on3,0,0,27,1,0,889,4862.510000,175,3,2226.870208,hint,nbiot,180 -on6,0,0,27,1,0,1027,4863.600000,175,3,2472.583084,hint,nbiot,180 -on2,0,0,26,1,0,239,4682.600000,175,2,2293.849792,hint,nbiot,180 -on8,0,0,24,1,0,302,4322.969040,175,0,1798.990700,hint,nbiot,180 -on3,0,0,26,1,0,1632,4684.589680,176,2,2274.249288,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,176,0,3367.293500,hint,nbiot,180 -on11,0,0,25,1,0,1260,4504.000000,176,1,2146.815000,hint,nbiot,180 -on10,0,0,26,1,0,1815,4683.510000,176,2,2059.973916,hint,nbiot,180 -on7,0,0,26,1,0,1593,4681.958720,176,2,1898.810112,hint,nbiot,180 -on8,0,0,24,1,0,906,4322.030640,176,1,1947.095464,hint,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,176,0,1728.000000,hint,nbiot,180 -on5,0,0,25,1,0,1205,4500.010320,176,1,1943.017336,hint,nbiot,180 -on4,0,0,25,1,0,2605,4501.300000,176,1,1990.333416,hint,nbiot,180 -on9,0,0,24,1,0,770,4321.000000,176,0,1805.366708,hint,nbiot,180 -on6,0,0,24,1,0,1541,4323.000000,176,0,1901.066708,hint,nbiot,180 -on2,0,0,24,1,0,540,4321.000000,176,0,1754.413416,hint,nbiot,180 -on6,0,0,26,1,0,1347,4682.600000,177,2,2258.099792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,177,0,3851.556500,hint,nbiot,180 -on5,0,0,24,1,0,4140,4320.000000,177,0,1754.006500,hint,nbiot,180 -on9,0,0,25,1,0,1476,4503.630960,177,1,2025.930924,hint,nbiot,180 -on11,0,0,25,1,0,720,4502.010320,177,1,1942.134252,hint,nbiot,180 -on1,0,0,24,1,0,360,4323.020640,177,0,2076.828256,hint,nbiot,180 -on4,0,0,26,1,0,746,4683.559040,177,2,2136.511948,hint,nbiot,180 -on3,0,0,23,1,0,547,4254.989680,177,0,2118.269288,hint,nbiot,180 -on10,0,0,25,1,0,833,4503.969040,177,1,1905.614240,hint,nbiot,180 -on7,0,0,25,1,0,1436,4502.000000,177,1,2034.156500,hint,nbiot,180 -on8,0,0,24,1,0,230,4324.000000,177,0,1929.833540,hint,nbiot,180 -on2,0,0,24,1,0,97,4324.948400,177,0,1828.156192,hint,nbiot,180 -on4,0,0,25,1,0,701,4501.000000,178,1,1917.406500,hint,nbiot,180 -on11,0,0,24,1,0,1747,4323.989680,178,0,2039.009288,hint,nbiot,180 -on5,0,0,25,1,0,3816,4680.600000,178,2,2299.809792,hint,nbiot,180 -on3,0,0,24,1,0,2558,4321.000000,178,0,1870.756708,hint,nbiot,180 -on8,0,0,25,1,0,180,4502.610320,178,1,1942.952752,hint,nbiot,180 -on10,0,0,25,1,0,686,4505.979360,178,1,2221.141660,hint,nbiot,180 -on1,0,0,26,1,0,725,4683.497440,178,2,1900.492224,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,178,0,3687.106708,hint,nbiot,180 -on6,0,0,25,1,0,1554,4502.989680,178,1,1919.073996,hint,nbiot,180 -on2,0,0,24,1,0,0,4322.989680,178,0,1776.665996,hint,nbiot,180 -on9,0,0,24,1,0,2115,4321.020640,178,0,1796.671672,hint,nbiot,180 -on7,0,0,25,1,0,729,4502.279360,178,1,2042.718452,hint,nbiot,180 -on10,0,0,26,1,0,897,4716.889680,179,4,2396.608956,hint,nbiot,180 -on8,0,0,29,1,0,805,5224.689360,179,5,2707.057452,hint,nbiot,180 -on7,0,0,26,1,0,694,4681.600000,179,2,2092.976792,hint,nbiot,180 -on4,0,0,26,1,0,513,4683.289680,179,3,2195.332164,hint,nbiot,180 -on3,0,0,26,1,0,602,4682.300000,179,2,2167.460792,hint,nbiot,180 -on11,0,0,24,1,0,3060,4321.000000,179,0,1845.400000,hint,nbiot,180 -on5,0,0,25,1,0,180,4505.010320,179,1,2080.952668,hint,nbiot,180 -on6,0,0,25,1,0,528,4504.000000,179,1,2150.669916,hint,nbiot,180 -on2,0,0,26,1,0,743,4682.482560,179,2,1972.014440,hint,nbiot,180 -on1,0,0,26,1,0,719,4684.199360,179,2,1984.836452,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,179,0,3085.206708,hint,nbiot,180 -on9,0,0,26,1,0,855,4682.889680,179,2,2217.142580,hint,nbiot,180 -on11,0,0,25,1,0,1440,4502.610320,180,2,1943.609252,hint,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,180,0,3215.850000,hint,nbiot,180 -on3,0,0,24,0,0,4295,4320.000000,180,0,1845.000000,hint,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,180,0,1728.000000,hint,nbiot,180 -on4,0,0,24,1,0,720,4321.020640,180,0,1868.171672,hint,nbiot,180 -on7,0,0,24,1,0,636,4322.000000,180,0,1871.163416,hint,nbiot,180 -on6,0,0,24,1,0,920,4321.989680,180,0,1812.919288,hint,nbiot,180 -on8,0,0,24,1,0,3459,4320.000000,180,0,1871.006708,hint,nbiot,180 -on1,0,0,24,1,0,1172,4320.989680,180,0,1754.409288,hint,nbiot,180 -on10,0,0,23,0,0,4289,4289.000000,180,0,1715.600000,hint,nbiot,180 -on9,0,0,24,1,0,1370,4320.979360,180,0,1754.405160,hint,nbiot,180 -on2,0,0,24,1,0,0,4322.020640,180,0,1984.278380,hint,nbiot,180 -on11,0,0,27,1,0,1387,4879.710000,181,4,2417.817208,hint,nbiot,180 -on9,0,0,24,1,0,586,4475.041280,181,1,1816.043136,hint,nbiot,180 -on1,0,0,25,1,0,790,4505.179680,181,1,2180.664996,hint,nbiot,180 -on10,0,0,25,1,0,24,4502.589680,181,1,1827.257704,hint,nbiot,180 -on3,0,0,25,1,0,332,4505.979360,181,1,2181.576576,hint,nbiot,180 -on8,0,0,24,1,0,979,4322.979360,181,0,1794.855160,hint,nbiot,180 -on6,0,0,24,1,0,14,4323.989680,181,0,2069.149372,hint,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,hint,nbiot,180 -on2,0,0,27,1,0,385,4865.679360,181,3,2464.413576,hint,nbiot,180 -on7,0,0,24,1,0,405,4321.020320,181,0,1815.768128,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,181,0,3609.100000,hint,nbiot,180 -on4,0,0,25,1,0,720,4504.979360,181,1,2151.985076,hint,nbiot,180 -on9,0,0,24,1,0,0,4321.010320,182,0,1866.730836,hint,nbiot,180 -on2,0,0,25,1,0,525,4502.189040,182,1,1855.098824,hint,nbiot,180 -on3,0,0,24,1,0,814,4321.969040,182,0,1784.044324,hint,nbiot,180 -on6,0,0,24,1,0,292,4322.000000,182,0,1785.869792,hint,nbiot,180 -on7,0,0,26,1,0,334,4683.030960,182,2,2193.012384,hint,nbiot,180 -on11,0,0,28,1,0,846,5042.200000,182,5,2498.060960,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,182,0,2429.356708,hint,nbiot,180 -on8,0,0,24,1,0,574,4322.000000,182,0,1940.036584,hint,nbiot,180 -on1,0,0,29,1,0,752,5224.100000,182,5,3018.469668,hint,nbiot,180 -on4,0,0,25,1,0,533,4669.300000,182,2,2183.821292,hint,nbiot,180 -on5,0,0,26,1,0,296,4682.600000,182,2,2179.443292,hint,nbiot,180 -on10,0,0,26,1,0,538,4681.041280,182,2,2016.287928,hint,nbiot,180 -on10,0,0,24,1,0,419,4323.989680,183,0,1833.212580,hint,nbiot,180 -on1,0,0,27,1,0,832,5037.889680,183,5,2705.814204,hint,nbiot,180 -on8,0,0,24,1,0,2504,4321.000000,183,0,1856.450000,hint,nbiot,180 -on4,0,0,25,1,0,631,4502.000000,183,1,1943.936292,hint,nbiot,180 -on3,0,0,24,1,0,920,4322.000000,183,0,1935.089876,hint,nbiot,180 -on7,0,0,25,1,0,870,4501.189360,183,1,1826.488952,hint,nbiot,180 -on9,0,0,24,1,0,976,4321.000000,183,1,1765.060000,hint,nbiot,180 -on11,0,0,27,1,0,993,4860.910320,183,3,2305.445628,hint,nbiot,180 -on6,0,0,25,1,0,180,4502.651600,183,1,2035.132348,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,183,0,3112.506708,hint,nbiot,180 -on5,0,0,25,1,0,541,4506.358720,183,1,1999.136820,hint,nbiot,180 -on2,0,0,24,1,0,180,4322.958720,183,0,1843.850196,hint,nbiot,180 -on9,0,0,24,1,0,540,4321.969040,184,0,1869.071032,hint,nbiot,180 -on8,0,0,25,1,0,1119,4503.300000,184,1,2121.646500,hint,nbiot,180 -on7,0,0,25,1,0,1260,4502.969040,184,1,2011.417740,hint,nbiot,180 -on6,0,0,26,1,0,1706,4682.510000,184,2,2173.310500,hint,nbiot,180 -on2,0,0,26,1,0,1053,4683.938080,184,2,1991.901648,hint,nbiot,180 -on5,0,0,25,1,0,1427,4501.000000,184,1,1917.406500,hint,nbiot,180 -on10,0,0,24,1,0,1027,4321.000000,184,0,1762.200000,hint,nbiot,180 -on4,0,0,25,1,0,770,4502.300000,184,1,1992.143292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,184,0,2512.556708,hint,nbiot,180 -on11,0,0,24,1,0,1800,4322.000000,184,0,1962.150000,hint,nbiot,180 -on3,0,0,26,1,0,1054,4683.300000,184,2,2312.271292,hint,nbiot,180 -on1,0,0,26,1,0,873,4681.369040,184,2,1960.492616,hint,nbiot,180 -on7,0,0,25,1,0,873,4500.969040,185,1,1826.400824,hint,nbiot,180 -on2,0,0,27,1,0,1080,4863.099680,185,3,2331.411372,hint,nbiot,180 -on9,0,0,25,1,0,1260,4501.000000,185,2,1839.205000,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,185,0,2528.156708,hint,nbiot,180 -on4,0,0,24,1,0,117,4321.000000,185,0,1768.953292,hint,nbiot,180 -on1,0,0,25,1,0,890,4605.500000,185,2,2217.444792,hint,nbiot,180 -on10,0,0,25,1,0,35,4503.461920,185,1,1978.263184,hint,nbiot,180 -on8,0,0,27,1,0,946,4863.869040,185,3,2301.104116,hint,nbiot,180 -on5,0,0,25,1,0,176,4505.020640,185,1,2161.348172,hint,nbiot,180 -on3,0,0,25,1,0,6,4502.969040,185,1,2029.005908,hint,nbiot,180 -on11,0,0,25,1,0,875,4503.000000,185,1,2132.289876,hint,nbiot,180 -on6,0,0,25,1,0,1373,4502.000000,185,1,2034.150000,hint,nbiot,180 -on9,0,0,24,1,0,0,4321.000000,186,0,1767.666708,hint,nbiot,180 -on10,0,0,26,1,0,821,4682.300000,186,2,2197.269792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,186,0,2260.356708,hint,nbiot,180 -on4,0,0,26,1,0,153,4683.369040,186,2,2128.479116,hint,nbiot,180 -on1,0,0,27,1,0,488,4862.900000,186,3,2361.998084,hint,nbiot,180 -on7,0,0,27,1,0,731,4861.780000,186,3,2241.755084,hint,nbiot,180 -on3,0,0,28,1,0,739,5042.869040,186,5,2395.316992,hint,nbiot,180 -on11,0,0,26,1,0,669,4682.490000,186,2,2169.369376,hint,nbiot,180 -on6,0,0,24,1,0,498,4321.969680,186,0,1871.787872,hint,nbiot,180 -on8,0,0,25,1,0,113,4502.220000,186,1,2033.009292,hint,nbiot,180 -on2,0,0,26,1,0,556,4683.300000,186,2,2311.881292,hint,nbiot,180 -on5,0,0,25,1,0,546,4500.969040,186,1,1826.400824,hint,nbiot,180 -on9,0,0,26,1,0,828,4681.341280,187,2,2104.189596,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,187,0,2456.006708,hint,nbiot,180 -on10,0,0,25,1,0,718,4500.969040,187,1,1826.400824,hint,nbiot,180 -on3,0,0,26,1,0,694,4682.300000,187,2,2195.969792,hint,nbiot,180 -on7,0,0,25,1,0,418,4502.300000,187,1,2090.300000,hint,nbiot,180 -on6,0,0,28,1,0,897,5043.500000,187,4,2671.474668,hint,nbiot,180 -on5,0,0,26,1,0,626,4681.710320,187,2,2080.885628,hint,nbiot,180 -on11,0,0,26,1,0,395,4682.989040,187,3,2129.003740,hint,nbiot,180 -on2,0,0,26,1,0,698,4838.300000,187,4,2312.353124,hint,nbiot,180 -on4,0,0,25,1,0,1039,4501.000000,187,1,1917.406500,hint,nbiot,180 -on1,0,0,26,1,0,356,4684.221280,187,2,2270.253096,hint,nbiot,180 -on8,0,0,24,1,0,54,4321.010320,187,0,1870.104336,hint,nbiot,180 -on6,0,0,25,1,0,604,4650.510000,188,2,2066.923916,hint,nbiot,180 -on7,0,0,24,1,0,1620,4321.000000,188,0,1754.413416,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,188,0,3381.606708,hint,nbiot,180 -on2,0,0,25,1,0,1013,4502.020640,188,1,1854.778172,hint,nbiot,180 -on9,0,0,25,1,0,656,4501.300000,188,1,1939.750000,hint,nbiot,180 -on10,0,0,25,1,0,499,4563.000000,188,3,2176.233332,hint,nbiot,180 -on3,0,0,25,1,0,1080,4501.020320,188,1,1826.434752,hint,nbiot,180 -on8,0,0,24,1,0,2745,4321.020640,188,0,1870.771672,hint,nbiot,180 -on11,0,0,25,1,0,615,4502.310320,188,1,2061.157712,hint,nbiot,180 -on5,0,0,24,1,0,1499,4321.989680,188,0,1871.159288,hint,nbiot,180 -on1,0,0,24,1,0,3420,4322.000000,188,0,1962.150000,hint,nbiot,180 -on4,0,0,24,1,0,499,4323.989680,188,0,2027.835788,hint,nbiot,180 -on1,0,0,25,1,0,197,4503.230960,189,1,2058.517508,hint,nbiot,180 -on6,0,0,24,1,0,2340,4321.000000,189,0,1845.400000,hint,nbiot,180 -on3,0,0,24,1,0,1546,4320.989680,189,0,1754.402580,hint,nbiot,180 -on4,0,0,25,1,0,527,4505.000000,189,1,2197.453292,hint,nbiot,180 -on2,0,0,26,1,0,1000,4681.500320,189,2,2105.956628,hint,nbiot,180 -on5,0,0,25,1,0,712,4501.300000,189,1,2018.666500,hint,nbiot,180 -on11,0,0,25,1,0,180,4504.010320,189,1,2125.492420,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,189,0,2713.406708,hint,nbiot,180 -on10,0,0,24,1,0,0,4321.000000,189,0,1754.413416,hint,nbiot,180 -on9,0,0,26,1,0,834,4681.300000,189,2,2104.316292,hint,nbiot,180 -on7,0,0,26,1,0,708,4683.669040,189,2,2152.779324,hint,nbiot,180 -on8,0,0,26,1,0,873,4684.138080,189,2,2025.125148,hint,nbiot,180 -on5,0,0,24,1,0,1082,4322.010320,190,1,1754.837460,hint,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,190,0,3314.650000,hint,nbiot,180 -on9,0,0,24,1,0,180,4321.979360,190,0,1845.401744,hint,nbiot,180 -on11,0,0,24,1,0,578,4325.989680,190,1,2206.065872,hint,nbiot,180 -on8,0,0,25,1,0,868,4501.000000,190,1,1917.406500,hint,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,hint,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,hint,nbiot,180 -on10,0,0,25,1,0,1377,4500.010320,190,1,1826.017336,hint,nbiot,180 -on7,0,0,24,1,0,395,4325.000000,190,0,1916.440332,hint,nbiot,180 -on2,0,0,25,1,0,187,4506.338080,190,1,2037.933772,hint,nbiot,180 -on3,0,0,26,1,0,593,4684.627760,190,2,2235.992936,hint,nbiot,180 -on6,0,0,24,1,0,1868,4320.000000,190,0,1754.006708,hint,nbiot,180 -on5,0,0,26,1,0,346,4681.620640,191,2,2174.774964,hint,nbiot,180 -on2,0,0,24,1,0,180,4324.020640,191,0,2008.341672,hint,nbiot,180 -on7,0,0,24,1,0,1544,4394.300000,191,2,1840.296624,hint,nbiot,180 -on1,0,0,24,1,0,747,4497.610320,191,1,1869.459252,hint,nbiot,180 -on3,0,0,24,1,0,360,4320.020640,191,0,1754.021672,hint,nbiot,180 -on6,0,0,25,1,0,180,4502.010320,191,1,1938.039252,hint,nbiot,180 -on10,0,0,25,1,0,3466,4502.210000,191,1,2034.240500,hint,nbiot,180 -on11,0,0,25,1,0,273,4506.190000,191,1,2371.239416,hint,nbiot,180 -on9,0,0,25,1,0,1330,4503.010320,191,1,2098.527336,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,191,0,3562.306708,hint,nbiot,180 -on4,0,0,26,1,0,1443,4683.689680,191,2,2087.814412,hint,nbiot,180 -on8,0,0,25,1,0,956,4503.320640,191,1,2151.294964,hint,nbiot,180 -on3,0,0,26,1,0,914,4682.300000,192,2,2151.119792,hint,nbiot,180 -on4,0,0,25,1,0,474,4503.000000,192,1,2010.129916,hint,nbiot,180 -on6,0,0,24,1,0,102,4390.000000,192,1,1930.459792,hint,nbiot,180 -on2,0,0,25,1,0,540,4503.000000,192,1,1982.816708,hint,nbiot,180 -on5,0,0,24,1,0,720,4320.010320,192,0,1754.010836,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,192,0,2467.706708,hint,nbiot,180 -on10,0,0,24,1,0,1192,4321.000000,192,0,1772.600000,hint,nbiot,180 -on1,0,0,25,1,0,154,4554.358720,192,2,1961.975112,hint,nbiot,180 -on8,0,0,25,1,0,689,4502.000000,192,1,2032.466500,hint,nbiot,180 -on11,0,0,28,1,0,1280,5042.200000,192,5,2436.310960,hint,nbiot,180 -on9,0,0,26,1,0,1049,4683.000000,192,2,2089.259584,hint,nbiot,180 -on7,0,0,27,1,0,994,4862.449040,192,4,2160.552740,hint,nbiot,180 -on1,0,0,27,1,0,924,4862.910320,193,4,2385.220420,hint,nbiot,180 -on9,0,0,26,1,0,718,4681.051600,193,2,2004.410264,hint,nbiot,180 -on11,0,0,25,1,0,693,4501.000000,193,1,1891.393084,hint,nbiot,180 -on3,0,0,27,1,0,1072,4862.490000,193,3,2266.109000,hint,nbiot,180 -on7,0,0,24,1,0,1261,4414.979680,193,1,1940.861788,hint,nbiot,180 -on5,0,0,25,1,0,2520,4502.000000,193,1,2033.948292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,193,0,2914.010124,hint,nbiot,180 -on4,0,0,26,1,0,614,4682.600000,193,3,2277.709876,hint,nbiot,180 -on10,0,0,26,1,0,848,4721.990000,193,3,2214.003376,hint,nbiot,180 -on2,0,0,24,1,0,360,4322.000000,193,0,1846.326708,hint,nbiot,180 -on8,0,0,25,1,0,463,4502.210000,193,1,1928.303916,hint,nbiot,180 -on6,0,0,24,1,0,2578,4322.000000,193,0,1894.803292,hint,nbiot,180 -on7,0,0,25,1,0,900,4504.369040,194,2,2045.062740,hint,nbiot,180 -on9,0,0,25,1,0,720,4502.000000,194,1,1907.485124,hint,nbiot,180 -on10,0,0,26,1,0,876,4680.910320,194,2,2221.024128,hint,nbiot,180 -on1,0,0,25,1,0,837,4501.300000,194,1,2029.306792,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,194,0,2689.356708,hint,nbiot,180 -on6,0,0,25,1,0,1733,4501.000000,194,1,1917.406500,hint,nbiot,180 -on4,0,0,24,1,0,236,4321.000000,194,0,1809.656708,hint,nbiot,180 -on5,0,0,25,1,0,468,4500.010320,194,1,1831.860836,hint,nbiot,180 -on8,0,0,26,1,0,734,4683.000000,194,2,2098.144668,hint,nbiot,180 -on11,0,0,25,1,0,708,4503.300000,194,1,2122.023292,hint,nbiot,180 -on3,0,0,24,1,0,1361,4321.000000,194,0,1754.420124,hint,nbiot,180 -on2,0,0,23,1,0,661,4199.000000,194,0,1716.909792,hint,nbiot,180 -on6,0,0,26,1,0,1167,4685.489360,195,2,2315.103744,hint,nbiot,180 -on8,0,0,26,1,0,1257,4683.979360,195,3,2132.345200,hint,nbiot,180 -on11,0,0,26,1,0,1456,4684.600000,195,2,2286.596708,hint,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,195,0,1728.000000,hint,nbiot,180 -on5,0,0,24,1,0,9,4321.948400,195,0,1754.799484,hint,nbiot,180 -on10,0,0,24,1,0,2706,4344.190000,195,1,1763.695916,hint,nbiot,180 -on1,0,0,25,1,0,1126,4503.589680,195,2,2106.032580,hint,nbiot,180 -on9,0,0,25,1,0,1266,4644.189360,195,2,2074.385328,hint,nbiot,180 -on3,0,0,25,1,0,180,4503.610320,195,1,1999.779252,hint,nbiot,180 -on4,0,0,26,1,0,587,4685.510000,195,2,2343.393916,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,195,0,3451.150000,hint,nbiot,180 -on7,0,0,24,1,0,1930,4322.979360,195,0,1830.605160,hint,nbiot,180 -on11,0,0,25,0,0,3909,4681.200000,196,3,2340.570584,hint,nbiot,180 -on6,0,0,26,1,0,898,4683.968720,196,2,2054.684196,hint,nbiot,180 -on2,0,0,26,1,0,920,4683.350320,196,2,2198.113044,hint,nbiot,180 -on4,0,0,25,1,0,496,4500.190000,196,1,1826.095708,hint,nbiot,180 -on8,0,0,25,1,0,900,4501.989680,196,1,1916.762580,hint,nbiot,180 -on5,0,0,25,1,0,360,4506.979360,196,1,2190.491992,hint,nbiot,180 -on9,0,0,25,1,0,806,4503.199680,196,1,1933.184788,hint,nbiot,180 -on1,0,0,24,1,0,113,4321.010320,196,0,1869.727544,hint,nbiot,180 -on10,0,0,27,1,0,1049,4863.879360,196,3,2386.264952,hint,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,196,0,3638.993292,hint,nbiot,180 -on3,0,0,26,1,0,729,4684.071920,196,2,2266.190392,hint,nbiot,180 -on7,0,0,25,1,0,355,4509.159040,196,1,2362.977072,hint,nbiot,180 -on3,0,0,28,1,0,1202,5044.269040,197,4,2583.155824,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,197,0,2651.006708,hint,nbiot,180 -on5,0,0,26,1,0,581,4682.669040,197,2,2094.536032,hint,nbiot,180 -on7,0,0,25,1,0,1768,4501.210000,197,1,1930.490500,hint,nbiot,180 -on4,0,0,24,1,0,1289,4457.190000,197,1,1899.485792,hint,nbiot,180 -on2,0,0,24,1,0,180,4321.000000,197,0,1754.413416,hint,nbiot,180 -on10,0,0,24,1,0,858,4322.989680,197,0,1872.455872,hint,nbiot,180 -on11,0,0,24,1,0,594,4323.000000,197,1,2025.209792,hint,nbiot,180 -on6,0,0,24,1,0,413,4320.979360,197,0,1797.565160,hint,nbiot,180 -on1,0,0,23,1,0,900,4151.000000,197,0,1686.413416,hint,nbiot,180 -on8,0,0,25,1,0,1619,4501.210000,197,1,1912.947208,hint,nbiot,180 -on9,0,0,24,1,0,920,4323.000000,197,0,1998.566708,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,198,0,2583.406708,hint,nbiot,180 -on5,0,0,24,1,0,463,4321.000000,198,0,1777.800000,hint,nbiot,180 -on11,0,0,26,1,0,443,4685.159040,198,2,2211.744908,hint,nbiot,180 -on4,0,0,26,1,0,873,4685.020640,198,2,2377.374548,hint,nbiot,180 -on2,0,0,26,1,0,2388,4681.669040,198,2,2009.779240,hint,nbiot,180 -on7,0,0,24,1,0,2800,4321.000000,198,0,1780.400000,hint,nbiot,180 -on10,0,0,26,1,0,514,4681.300000,198,2,2079.863084,hint,nbiot,180 -on3,0,0,24,1,0,816,4321.000000,198,0,1782.350000,hint,nbiot,180 -on1,0,0,24,1,0,2425,4322.000000,198,0,1844.760000,hint,nbiot,180 -on8,0,0,26,1,0,833,4682.269040,198,3,2066.777448,hint,nbiot,180 -on6,0,0,25,1,0,886,4652.489360,198,2,2280.902244,hint,nbiot,180 -on9,0,0,25,1,0,476,4501.672240,198,2,1943.702228,hint,nbiot,180 -on11,0,0,27,1,0,1254,4861.479040,199,3,2062.456116,hint,nbiot,180 -on3,0,0,25,1,0,533,4502.210000,199,1,2031.763792,hint,nbiot,180 -on5,0,0,26,1,0,906,4757.700000,199,3,2247.781084,hint,nbiot,180 -on9,0,0,25,1,0,541,4502.358720,199,1,1942.266904,hint,nbiot,180 -on8,0,0,24,1,0,305,4321.000000,199,0,1763.753292,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,199,0,2455.356708,hint,nbiot,180 -on4,0,0,25,1,0,1252,4501.000000,199,1,1916.756500,hint,nbiot,180 -on10,0,0,25,1,0,1061,4502.000000,199,1,2032.076292,hint,nbiot,180 -on6,0,0,25,1,0,312,4503.620640,199,1,2058.283380,hint,nbiot,180 -on1,0,0,26,1,0,1343,4681.600000,199,2,2141.739792,hint,nbiot,180 -on2,0,0,24,1,0,783,4321.000000,199,0,1804.450000,hint,nbiot,180 -on7,0,0,26,1,0,711,4681.251280,199,2,1955.272136,hint,nbiot,180 -on3,0,0,24,1,0,360,4320.010320,200,0,1754.017544,hint,nbiot,180 -on10,0,0,25,1,0,0,4507.620640,200,1,2310.523380,hint,nbiot,180 -on11,0,0,24,1,0,278,4324.979360,200,0,1998.715160,hint,nbiot,180 -on1,0,0,25,1,0,2071,4501.479680,200,1,2058.655080,hint,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,200,0,2918.806708,hint,nbiot,180 -on5,0,0,25,1,0,657,4502.300000,200,1,1951.850000,hint,nbiot,180 -on8,0,0,25,1,0,1620,4501.620640,200,1,1914.606672,hint,nbiot,180 -on2,0,0,26,1,0,334,4683.979040,200,2,2114.631324,hint,nbiot,180 -on7,0,0,25,1,0,228,4502.300000,200,1,2097.970000,hint,nbiot,180 -on9,0,0,24,1,0,1089,4320.010320,200,0,1754.010836,hint,nbiot,180 -on6,0,0,25,1,0,1860,4501.300000,200,1,1952.626708,hint,nbiot,180 -on4,0,0,25,1,0,693,4617.620320,200,2,2272.148128,hint,nbiot,180 -on6,0,0,24,1,0,3467,4320.000000,1,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2880,4320.000000,1,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,759,4320.000000,1,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1279,4320.000000,1,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1443,4320.000000,1,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,1,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2030,4320.000000,1,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,1,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,2845,4325.010000,1,0,1756.010500,extended,nbiot,180 -on1,0,0,24,1,0,249,4320.000000,1,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,780,4320.000000,1,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,1,0,2634.100000,extended,nbiot,180 -on10,0,0,24,1,0,3022,4322.010000,2,0,1754.810500,extended,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,2,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2193,4320.000000,2,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1800,4320.000000,2,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,795,4320.000000,2,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,2,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1980,4320.000000,2,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4326.010000,2,0,2366.760500,extended,nbiot,180 -on6,0,0,24,1,0,571,4320.000000,2,0,1754.006500,extended,nbiot,180 -on2,0,0,23,1,0,2090,4250.000000,2,0,1726.006500,extended,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,2,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,736,4320.000000,2,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,3,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4362.020000,3,0,2292.121000,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,3,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,903,4320.000000,3,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,3,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,3,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1440,4320.000000,3,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,3,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,3,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,3,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,3,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,1343,4320.000000,3,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,145,4325.020000,4,0,1756.014500,extended,nbiot,180 -on7,0,0,24,1,0,3240,4320.000000,4,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,4,0,2194.050000,extended,nbiot,180 -on2,0,0,24,1,0,2700,4320.000000,4,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,4,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,17,4320.000000,4,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,4,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,4,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2096,4320.000000,4,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,4192,4320.000000,5,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4325.010000,5,0,2606.217000,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,5,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,627,4320.000000,5,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1103,4320.000000,5,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1440,4320.000000,5,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,5,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3005,4320.000000,5,0,1754.006500,extended,nbiot,180 -on8,0,0,23,1,0,3596,4235.000000,5,0,1720.006500,extended,nbiot,180 -on11,0,0,24,1,0,2747,4320.000000,5,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3420,4320.000000,5,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,5,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1756,4320.000000,6,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,6,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,6,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,6,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4325.010000,6,0,2375.460500,extended,nbiot,180 -on4,0,0,24,1,0,3347,4320.000000,6,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1503,4320.000000,6,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,6,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,1260,4320.000000,6,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2872,4352.010000,6,0,1766.810500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,extended,nbiot,180 -on0,1,8,24,0,0,0,4325.020000,7,0,2270.171000,extended,nbiot,180 -on6,0,0,24,1,0,4140,4320.000000,7,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,187,4320.000000,7,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1795,4355.010000,7,0,1768.010500,extended,nbiot,180 -on10,0,0,24,1,0,23,4320.000000,7,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,7,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3859,4320.000000,7,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,7,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,7,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,7,0,1728.000000,extended,nbiot,180 -on0,1,9,23,0,0,0,4340.010000,8,0,2224.160500,extended,nbiot,180 -on3,0,0,23,0,0,4239,4239.000000,8,0,1695.600000,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,8,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,164,4344.010000,8,0,1763.610500,extended,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,8,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,8,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,1889,4320.000000,8,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,8,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,320,4320.010000,8,0,1754.010500,extended,nbiot,180 -on2,0,0,24,1,0,1918,4320.000000,8,0,1754.006500,extended,nbiot,180 -on9,0,0,23,1,0,156,4309.020000,8,0,1749.614500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,8,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,412,4320.000000,9,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,9,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2424,4320.000000,9,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2067,4320.000000,9,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,9,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4350.020000,9,0,2394.577500,extended,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,9,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,154,4334.010000,9,0,1759.610500,extended,nbiot,180 -on4,0,0,24,1,0,1620,4320.000000,9,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,9,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,9,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,560,4320.000000,9,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1573,4320.000000,10,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2733,4320.000000,10,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,650,4320.000000,10,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,10,0,2573.006500,extended,nbiot,180 -on4,0,0,24,1,0,1422,4342.010000,10,0,1762.810500,extended,nbiot,180 -on6,0,0,24,1,0,937,4320.000000,10,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,10,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2880,4320.000000,10,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,604,4320.000000,10,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,159,4339.010000,10,0,1761.610500,extended,nbiot,180 -on5,0,0,24,1,0,2003,4320.000000,10,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,10,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1800,4320.000000,11,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,11,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,992,4320.000000,11,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1646,4320.000000,11,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1240,4340.010000,11,0,1762.010500,extended,nbiot,180 -on9,0,0,24,1,0,2340,4320.000000,11,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,34,4320.000000,11,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,845,4320.000000,11,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,11,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,11,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4375.020000,11,0,2464.371000,extended,nbiot,180 -on4,0,0,24,1,0,1620,4320.000000,11,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,540,4320.000000,12,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,366,4320.000000,12,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,12,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,12,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2520,4320.000000,12,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3016,4320.000000,12,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1799,4359.010000,12,0,1769.610500,extended,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,12,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2456,4320.000000,12,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,924,4320.000000,12,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2911,4320.000000,12,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,12,0,2482.663000,extended,nbiot,180 -on7,0,0,24,1,0,1551,4320.000000,13,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,753,4320.000000,13,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,13,0,1754.006500,extended,nbiot,180 -on2,0,0,23,0,0,4310,4310.000000,13,0,1724.000000,extended,nbiot,180 -on10,0,0,24,1,0,3952,4352.010000,13,0,1766.810500,extended,nbiot,180 -on9,0,0,24,1,0,438,4320.000000,13,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,3,4320.000000,13,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,extended,nbiot,180 -on0,1,7,24,0,0,0,4320.000000,13,0,2313.000000,extended,nbiot,180 -on1,0,0,24,1,0,428,4320.000000,13,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,14,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,4306,4346.010000,14,0,1764.410500,extended,nbiot,180 -on9,0,0,24,1,0,900,4320.000000,14,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4352.010000,14,0,2712.560500,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,14,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,14,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,599,4320.000000,14,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1408,4328.010000,14,0,1757.210500,extended,nbiot,180 -on2,0,0,24,1,0,1094,4320.000000,14,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,14,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2383,4320.000000,14,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,14,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,1263,4320.000000,15,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2700,4320.000000,15,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1034,4320.000000,15,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,15,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,3960,4320.000000,15,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2301,4321.010000,15,0,1754.410500,extended,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,15,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2520,4320.000000,15,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4368.020000,15,0,2523.977500,extended,nbiot,180 -on8,0,0,24,1,0,999,4320.000000,15,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1983,4320.000000,15,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,774,4320.000000,15,0,1754.006500,extended,nbiot,180 -on7,0,0,23,1,0,1369,4249.000000,16,0,1725.606500,extended,nbiot,180 -on3,0,0,24,1,0,1371,4320.000000,16,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,900,4320.000000,16,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,198,4320.000000,16,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1518,4320.000000,16,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,2421,4320.000000,16,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4327.010000,16,0,2482.860500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,16,0,1728.000000,extended,nbiot,180 -on9,0,0,24,1,0,81,4320.000000,16,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,16,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2100,4320.000000,16,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,17,0,2784.250000,extended,nbiot,180 -on6,0,0,24,1,0,1980,4320.000000,17,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2488,4328.010000,17,0,1757.210500,extended,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,17,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3602,4320.000000,17,0,1754.006500,extended,nbiot,180 -on2,0,0,23,1,0,1392,4190.000000,17,0,1702.006500,extended,nbiot,180 -on10,0,0,24,1,0,1715,4320.000000,17,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,17,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2160,4320.000000,17,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,17,0,1728.000000,extended,nbiot,180 -on4,0,0,23,1,0,497,4317.010000,17,0,1752.810500,extended,nbiot,180 -on9,0,0,24,1,0,1501,4320.000000,17,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,399,4320.000000,18,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,371,4320.000000,18,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,18,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2700,4320.000000,18,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,18,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1098,4320.000000,18,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2160,4320.000000,18,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,18,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4389.030000,18,0,2354.281500,extended,nbiot,180 -on6,0,0,24,1,0,1710,4320.000000,18,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3420,4320.000000,18,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,900,4320.000000,18,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1493,4320.000000,19,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1182,4320.000000,19,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,19,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,19,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,294,4320.000000,19,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4374.030000,19,0,2370.388000,extended,nbiot,180 -on1,0,0,24,1,0,720,4320.000000,19,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,499,4320.000000,19,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,19,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,195,4320.000000,19,0,1754.006500,extended,nbiot,180 -on2,0,0,22,1,0,1972,4136.000000,19,0,1680.406500,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,19,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2520,4320.000000,20,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2586,4320.000000,20,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4345.020000,20,0,2503.071000,extended,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,20,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,20,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2441,4320.000000,20,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1645,4320.000000,20,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,20,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2195,4320.000000,20,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1766,4326.010000,20,0,1756.410500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,20,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,358,4358.010000,20,0,1769.210500,extended,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,21,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,21,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,21,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4375.020000,21,0,2464.377500,extended,nbiot,180 -on7,0,0,24,1,0,3260,4320.000000,21,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2331,4351.010000,21,0,1766.410500,extended,nbiot,180 -on6,0,0,24,1,0,1440,4320.000000,21,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,21,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,21,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3960,4320.000000,21,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,21,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,33,4320.000000,21,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,4067,4320.000000,22,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,1440,4320.000000,22,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,22,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,62,4320.000000,22,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,564,4320.000000,22,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4334.030000,22,0,2370.631500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,22,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,898,4358.010000,22,0,1769.210500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,22,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2464,4320.000000,23,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,23,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,69,4320.000000,23,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1980,4320.000000,23,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1153,4320.000000,23,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,15,4320.000000,23,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,23,0,2331.856500,extended,nbiot,180 -on2,0,0,24,1,0,2520,4320.000000,23,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,118,4320.000000,23,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,48,4320.000000,23,0,1754.006500,extended,nbiot,180 -on7,0,0,23,1,0,720,4217.000000,23,0,1712.806500,extended,nbiot,180 -on5,0,0,24,1,0,1003,4320.000000,23,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1963,4343.020000,24,0,1763.214500,extended,nbiot,180 -on10,0,0,24,1,0,2880,4320.000000,24,0,1754.006500,extended,nbiot,180 -on6,0,0,23,1,0,540,4248.000000,24,0,1725.206500,extended,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,24,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,261,4320.000000,24,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3240,4320.000000,24,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1103,4320.000000,24,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,370,4320.000000,24,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,24,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,24,0,2564.556500,extended,nbiot,180 -on7,0,0,24,1,0,1805,4320.000000,24,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,3420,4320.000000,24,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,25,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,25,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,25,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2081,4320.000000,25,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,767,4320.000000,25,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,25,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,122,4320.000000,25,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,25,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,25,0,1754.006500,extended,nbiot,180 -on0,1,10,23,0,0,0,4342.010000,25,0,2334.160500,extended,nbiot,180 -on5,0,0,24,1,0,1620,4320.000000,25,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,25,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,26,4320.000000,26,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1130,4320.000000,26,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.010000,26,0,2560.660500,extended,nbiot,180 -on10,0,0,24,1,0,586,4320.000000,26,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,26,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2340,4320.000000,26,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1675,4320.000000,26,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3023,4323.010000,26,0,1755.210500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,3600,4320.000000,26,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,947,4320.000000,26,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1260,4320.000000,27,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,27,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,398,4320.000000,27,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,922,4320.000000,27,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1283,4320.000000,27,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3453,4320.000000,27,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1805,4320.000000,27,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2160,4320.000000,27,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4351.010000,27,0,2415.117000,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,27,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,27,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,389,4320.000000,27,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2013,4320.000000,28,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,28,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1528,4320.000000,28,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,781,4320.000000,28,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1080,4320.000000,28,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,28,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,extended,nbiot,180 -on0,1,9,24,0,0,0,4348.020000,28,0,2242.321000,extended,nbiot,180 -on10,0,0,24,1,0,1800,4320.000000,28,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,28,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,2002,4320.000000,28,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3420,4320.000000,29,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1372,4320.000000,29,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,345,4345.010000,29,0,1764.010500,extended,nbiot,180 -on8,0,0,24,1,0,2037,4320.000000,29,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,452,4320.000000,29,0,1754.006500,extended,nbiot,180 -on4,0,0,23,1,0,2999,4320.000000,29,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,29,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,1415,4335.010000,29,0,1760.010500,extended,nbiot,180 -on5,0,0,24,1,0,536,4356.010000,29,0,1768.410500,extended,nbiot,180 -on0,1,10,24,0,0,0,4328.010000,29,0,2554.110500,extended,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,29,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1906,4320.000000,29,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,30,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1800,4320.000000,30,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,30,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1228,4328.010000,30,0,1757.210500,extended,nbiot,180 -on0,1,11,24,0,0,0,4341.020000,30,0,2433.877500,extended,nbiot,180 -on2,0,0,24,1,0,138,4320.000000,30,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,280,4320.000000,30,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3020,4320.010000,30,0,1754.010500,extended,nbiot,180 -on7,0,0,24,1,0,931,4320.000000,30,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,199,4320.000000,30,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3177,4320.000000,30,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1260,4320.000000,30,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,31,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4382.020000,31,0,2350.184000,extended,nbiot,180 -on10,0,0,24,1,0,1980,4320.000000,31,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2420,4320.000000,31,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3441,4320.000000,31,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,31,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,320,4320.020000,31,0,1754.014500,extended,nbiot,180 -on9,0,0,24,1,0,900,4320.000000,31,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,31,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3420,4320.000000,31,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,315,4320.000000,31,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1505,4320.000000,31,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2763,4320.000000,32,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,32,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2160,4320.000000,32,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1620,4320.000000,32,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,32,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1603,4343.010000,32,0,1763.210500,extended,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,32,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,32,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4363.040000,32,0,2407.598500,extended,nbiot,180 -on6,0,0,24,1,0,419,4320.000000,32,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3370,4320.000000,32,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3240,4320.000000,32,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,973,4320.000000,33,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1620,4320.000000,33,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,33,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1292,4320.000000,33,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,327,4327.010000,33,0,1756.810500,extended,nbiot,180 -on8,0,0,24,1,0,553,4320.000000,33,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1260,4320.000000,33,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3240,4320.000000,33,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,33,0,2474.850000,extended,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,33,0,1754.006500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,extended,nbiot,180 -on9,0,0,24,1,0,2700,4320.000000,34,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4359.020000,34,0,2228.521000,extended,nbiot,180 -on11,0,0,24,1,0,2816,4320.000000,34,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,34,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,34,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,34,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,34,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2309,4329.010000,34,0,1757.610500,extended,nbiot,180 -on10,0,0,24,1,0,3060,4320.000000,34,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,537,4357.010000,35,0,1768.810500,extended,nbiot,180 -on2,0,0,24,1,0,1515,4320.000000,35,0,1754.006500,extended,nbiot,180 -on8,0,0,23,1,0,333,4254.010000,35,0,1727.610500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,35,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,35,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1841,4320.000000,35,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,35,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,540,4320.000000,35,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,802,4320.000000,35,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,35,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,540,4320.000000,35,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4336.010000,35,0,2369.467000,extended,nbiot,180 -on0,1,10,24,0,0,0,4323.010000,36,0,2487.760500,extended,nbiot,180 -on11,0,0,24,1,0,2934,4320.000000,36,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1444,4320.000000,36,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,351,4351.010000,36,0,1766.410500,extended,nbiot,180 -on4,0,0,24,1,0,34,4320.000000,36,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1990,4320.000000,36,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,36,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,36,0,1728.000000,extended,nbiot,180 -on8,0,0,23,1,0,3758,4298.000000,36,0,1745.206500,extended,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,36,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,138,4320.000000,36,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,36,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,37,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,37,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,37,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,37,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,37,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3729,4320.000000,37,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4397.020000,37,0,2531.021000,extended,nbiot,180 -on11,0,0,24,1,0,4140,4320.000000,37,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,37,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,37,0,1754.006500,extended,nbiot,180 -on3,0,0,23,1,0,1324,4207.000000,37,0,1708.806500,extended,nbiot,180 -on9,0,0,24,1,0,2460,4320.000000,37,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,38,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,773,4320.000000,38,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1833,4320.000000,38,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2744,4320.000000,38,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,900,4320.000000,38,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,38,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,729,4320.000000,38,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,4227,4320.000000,38,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4341.030000,38,0,2401.381500,extended,nbiot,180 -on2,0,0,24,1,0,1341,4320.000000,38,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,extended,nbiot,180 -on9,0,0,24,1,0,2363,4320.000000,39,0,1754.006500,extended,nbiot,180 -on4,0,0,23,1,0,2726,4215.000000,39,0,1712.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,39,0,2488.500000,extended,nbiot,180 -on5,0,0,23,1,0,1228,4198.000000,39,0,1705.206500,extended,nbiot,180 -on2,0,0,24,1,0,1420,4340.010000,39,0,1762.010500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,1205,4320.000000,39,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,39,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,39,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,3406,4346.010000,39,0,1764.410500,extended,nbiot,180 -on11,0,0,24,1,0,18,4320.000000,39,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,39,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3122,4320.000000,40,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2069,4320.000000,40,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,604,4320.000000,40,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1308,4320.000000,40,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,151,4331.010000,40,0,1758.410500,extended,nbiot,180 -on11,0,0,24,1,0,1620,4320.000000,40,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,40,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,40,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4355.010000,40,0,2674.110500,extended,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,40,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1440,4320.000000,40,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,788,4320.000000,40,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3240,4320.000000,41,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,41,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,41,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,56,4320.000000,41,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,619,4320.000000,41,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,41,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,41,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,117,4320.000000,41,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4352.010000,41,0,2230.260500,extended,nbiot,180 -on4,0,0,24,1,0,731,4320.000000,41,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,41,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,385,4320.000000,41,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,42,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,42,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,extended,nbiot,180 -on0,1,8,24,0,0,0,4358.010000,42,0,2403.610500,extended,nbiot,180 -on11,0,0,24,1,0,2880,4320.000000,42,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1260,4320.000000,42,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1351,4320.000000,42,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,42,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,42,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,219,4320.000000,42,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,1082,4320.000000,43,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2340,4320.000000,43,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,43,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,38,4320.000000,43,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3060,4320.000000,43,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,43,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,2525,4320.000000,43,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,720,4320.000000,43,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2340,4320.000000,43,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,527,4347.010000,43,0,1764.810500,extended,nbiot,180 -on5,0,0,24,1,0,703,4343.010000,43,0,1763.210500,extended,nbiot,180 -on0,1,10,24,0,0,0,4356.020000,43,0,2597.821000,extended,nbiot,180 -on0,1,8,24,0,0,0,4324.010000,44,0,2287.960500,extended,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,44,0,1754.006500,extended,nbiot,180 -on2,0,0,23,1,0,1260,4225.000000,44,0,1716.006500,extended,nbiot,180 -on1,0,0,24,1,0,1021,4320.000000,44,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1079,4359.030000,44,0,1769.618500,extended,nbiot,180 -on3,0,0,24,1,0,975,4320.000000,44,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1620,4320.000000,44,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1260,4320.000000,44,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,1853,4320.000000,44,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,45,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,45,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1080,4320.000000,45,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4331.010000,45,0,2442.217000,extended,nbiot,180 -on2,0,0,24,1,0,350,4350.020000,45,0,1766.014500,extended,nbiot,180 -on1,0,0,24,1,0,2061,4320.000000,45,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1260,4320.000000,45,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,205,4320.000000,45,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,172,4352.010000,45,0,1766.810500,extended,nbiot,180 -on5,0,0,24,1,0,1396,4320.000000,45,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2592,4320.000000,45,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1825,4320.000000,45,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4330.010000,46,0,2456.110500,extended,nbiot,180 -on8,0,0,24,1,0,3385,4325.010000,46,0,1756.010500,extended,nbiot,180 -on5,0,0,24,1,0,2160,4320.000000,46,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,207,4320.000000,46,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3600,4320.000000,46,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3420,4320.000000,46,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3960,4320.000000,46,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,900,4320.000000,46,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,46,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,71,4320.000000,46,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1080,4320.000000,46,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2880,4320.000000,46,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,47,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,47,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1508,4320.000000,47,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,846,4320.000000,47,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,966,4320.000000,47,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1749,4320.000000,47,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,929,4320.000000,47,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4379.020000,47,0,2401.627500,extended,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,47,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2929,4320.000000,47,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,47,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,782,4320.000000,47,0,1754.006500,extended,nbiot,180 -on2,0,0,23,1,0,479,4265.000000,48,0,1732.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4335.010000,48,0,2417.823500,extended,nbiot,180 -on6,0,0,24,1,0,2780,4320.000000,48,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,207,4320.000000,48,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,48,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,48,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,294,4320.000000,48,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,548,4320.000000,48,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,48,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2129,4329.010000,48,0,1757.610500,extended,nbiot,180 -on10,0,0,24,1,0,2832,4320.000000,48,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,48,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,804,4320.000000,49,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,102,4320.000000,49,0,1754.006500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,49,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,212,4320.000000,49,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3806,4320.000000,49,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,49,0,2303.900000,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,49,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,89,4320.000000,49,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,49,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,49,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,49,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2700,4320.000000,50,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4341.020000,50,0,2390.334000,extended,nbiot,180 -on2,0,0,24,1,0,24,4320.000000,50,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,50,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,50,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1944,4324.010000,50,0,1755.610500,extended,nbiot,180 -on5,0,0,24,1,0,2862,4342.010000,50,0,1762.810500,extended,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,50,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,45,4320.000000,50,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,124,4320.000000,50,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,50,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,50,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,51,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,51,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,51,0,2632.800000,extended,nbiot,180 -on6,0,0,24,1,0,1629,4320.000000,51,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,51,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1557,4320.000000,51,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,506,4326.010000,51,0,1756.410500,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,51,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1078,4358.010000,51,0,1769.210500,extended,nbiot,180 -on10,0,0,24,1,0,289,4320.000000,51,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,51,0,1728.000000,extended,nbiot,180 -on1,0,0,24,1,0,61,4320.000000,51,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,52,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,52,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1405,4325.010000,52,0,1756.010500,extended,nbiot,180 -on3,0,0,24,1,0,293,4320.000000,52,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,609,4320.000000,52,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,52,0,2654.906500,extended,nbiot,180 -on2,0,0,24,1,0,3553,4320.000000,52,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,52,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,777,4320.000000,52,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,52,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2700,4320.000000,52,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,461,4320.000000,52,0,1754.006500,extended,nbiot,180 -on10,0,0,23,1,0,540,4279.000000,53,0,1737.606500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,53,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,53,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,53,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,293,4320.000000,53,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,53,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1800,4320.000000,53,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2520,4320.000000,53,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2228,4320.000000,53,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2142,4342.010000,53,0,1762.810500,extended,nbiot,180 -on0,1,10,24,0,0,0,4346.020000,53,0,2496.971000,extended,nbiot,180 -on1,0,0,24,1,0,725,4320.000000,53,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,54,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1553,4320.000000,54,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1297,4320.000000,54,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1390,4320.000000,54,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,54,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,3060,4320.000000,54,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1157,4320.000000,54,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,54,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,54,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4341.010000,54,0,2540.460500,extended,nbiot,180 -on1,0,0,24,1,0,2340,4320.000000,54,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2766,4320.000000,54,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,55,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1161,4320.000000,55,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,55,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1121,4320.000000,55,0,1754.006500,extended,nbiot,180 -on5,0,0,23,1,0,164,4289.010000,55,0,1741.610500,extended,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,55,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,600,4320.000000,55,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1620,4320.000000,55,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2340,4320.000000,55,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4331.010000,55,0,2353.810500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,55,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,180,4320.000000,56,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1525,4320.000000,56,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,56,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,437,4320.000000,56,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,2803,4320.000000,56,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,nbiot,180 -on0,1,7,24,0,0,0,4349.010000,56,0,2310.960500,extended,nbiot,180 -on2,0,0,24,1,0,1800,4320.000000,56,0,1754.006500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1032,4320.000000,56,0,1754.006500,extended,nbiot,180 -on3,0,0,23,1,0,1080,4281.000000,57,0,1738.406500,extended,nbiot,180 -on0,1,9,24,0,0,0,4366.030000,57,0,2292.431500,extended,nbiot,180 -on10,0,0,24,1,0,1339,4320.000000,57,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2520,4320.000000,57,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1275,4320.000000,57,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,457,4320.000000,57,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3316,4320.000000,57,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,57,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,57,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,1650,4320.000000,57,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,520,4340.020000,57,0,1762.014500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,55,4320.000000,58,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,58,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,9,4320.000000,58,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,1209,4320.000000,58,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,58,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,58,0,1728.000000,extended,nbiot,180 -on0,1,8,24,0,0,0,4385.020000,58,0,2329.271000,extended,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,58,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1919,4320.000000,58,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,425,4320.000000,58,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,19,4320.000000,59,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2501,4341.010000,59,0,1762.410500,extended,nbiot,180 -on5,0,0,24,1,0,2568,4320.000000,59,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1039,4320.000000,59,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,754,4320.000000,59,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,59,0,2452.106500,extended,nbiot,180 -on2,0,0,24,1,0,1505,4320.000000,59,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,59,0,1754.006500,extended,nbiot,180 -on11,0,0,23,1,0,1620,4278.000000,59,0,1737.206500,extended,nbiot,180 -on7,0,0,24,1,0,1064,4344.020000,59,0,1763.614500,extended,nbiot,180 -on1,0,0,24,1,0,79,4320.000000,59,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,59,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,197,4320.000000,60,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,60,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,3960,4320.000000,60,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,238,4320.000000,60,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3420,4320.000000,60,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,60,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,60,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,60,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,4137,4357.010000,60,0,1768.810500,extended,nbiot,180 -on0,1,10,24,0,0,0,4338.020000,60,0,2318.271000,extended,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,60,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2686,4346.010000,60,0,1764.410500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,1440,4320.000000,61,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,61,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1448,4320.000000,61,0,1754.006500,extended,nbiot,180 -on4,0,0,23,1,0,2636,4296.010000,61,0,1744.410500,extended,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,61,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2700,4320.000000,61,0,1754.006500,extended,nbiot,180 -on9,0,0,23,1,0,180,4251.000000,61,0,1726.406500,extended,nbiot,180 -on0,1,9,24,0,0,0,4325.010000,61,0,2413.810500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,61,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,61,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,62,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2751,4320.000000,62,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1440,4320.000000,62,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3344,4320.000000,62,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,4183,4320.000000,62,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,62,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4357.020000,62,0,2583.921000,extended,nbiot,180 -on1,0,0,24,1,0,1771,4331.010000,62,0,1758.410500,extended,nbiot,180 -on4,0,0,24,1,0,195,4320.000000,62,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,2520,4320.000000,62,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,525,4345.010000,62,0,1764.010500,extended,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,63,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3447,4320.000000,63,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,99,4320.000000,63,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1661,4320.000000,63,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,893,4353.010000,63,0,1767.210500,extended,nbiot,180 -on0,1,11,24,0,0,0,4326.010000,63,0,2483.117000,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,63,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,497,4320.000000,63,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,800,4320.000000,63,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,826,4320.000000,63,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,63,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1917,4320.000000,63,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4352.010000,64,0,2687.860500,extended,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,64,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3420,4320.000000,64,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1064,4344.010000,64,0,1763.610500,extended,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,64,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3060,4320.000000,64,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,64,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,2076,4320.000000,64,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2160,4320.000000,64,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1198,4320.000000,64,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1623,4320.000000,64,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3870,4320.000000,64,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,65,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,2520,4320.000000,65,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,65,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,930,4320.000000,65,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1696,4320.000000,65,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,183,4320.000000,65,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4327.010000,65,0,2439.960500,extended,nbiot,180 -on11,0,0,24,1,0,581,4320.000000,65,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,830,4320.000000,65,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,822,4320.000000,65,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,705,4345.020000,65,0,1764.014500,extended,nbiot,180 -on1,0,0,24,1,0,1182,4320.000000,65,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,886,4346.010000,66,0,1764.410500,extended,nbiot,180 -on10,0,0,24,1,0,170,4350.020000,66,0,1766.014500,extended,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,66,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,678,4320.000000,66,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,67,4320.000000,66,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,14,4320.000000,66,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,66,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,360,4320.000000,66,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,66,0,2222.006500,extended,nbiot,180 -on8,0,0,24,1,0,3625,4320.000000,66,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,66,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,66,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1003,4320.000000,67,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,67,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,43,4320.000000,67,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2880,4320.000000,67,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2411,4320.000000,67,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,67,0,2541.800000,extended,nbiot,180 -on6,0,0,24,1,0,917,4320.000000,67,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,32,4320.000000,67,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,67,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,67,0,1728.000000,extended,nbiot,180 -on9,0,0,23,1,0,1620,4275.000000,67,0,1736.006500,extended,nbiot,180 -on2,0,0,24,1,0,407,4320.000000,67,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,68,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1460,4320.000000,68,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1980,4320.000000,68,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,68,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3780,4320.000000,68,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,68,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4354.010000,68,0,2415.017000,extended,nbiot,180 -on11,0,0,24,1,0,1110,4320.000000,68,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,68,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3366,4320.000000,68,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,180,4320.000000,68,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,68,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,69,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,304,4320.000000,69,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,919,4320.000000,69,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,69,0,2347.450000,extended,nbiot,180 -on8,0,0,24,1,0,2660,4320.010000,69,0,1754.010500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,extended,nbiot,180 -on1,0,0,24,1,0,720,4320.000000,69,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,992,4320.000000,69,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1311,4320.000000,69,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,69,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,70,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,70,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,70,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3996,4320.000000,70,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,70,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1020,4320.000000,70,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4324.020000,70,0,2425.127500,extended,nbiot,180 -on11,0,0,24,1,0,34,4320.000000,70,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1065,4345.010000,70,0,1764.010500,extended,nbiot,180 -on3,0,0,24,1,0,847,4320.000000,70,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,70,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,35,4320.000000,70,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2340,4320.000000,71,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,573,4320.000000,71,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,71,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,71,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,690,4330.020000,71,0,1758.014500,extended,nbiot,180 -on0,1,8,24,0,0,0,4370.020000,71,0,2279.721000,extended,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,71,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,782,4320.000000,71,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,3060,4320.000000,71,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2094,4320.000000,72,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1571,4320.000000,72,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1397,4320.000000,72,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1771,4331.010000,72,0,1758.410500,extended,nbiot,180 -on5,0,0,24,1,0,640,4320.000000,72,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,72,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,170,4350.010000,72,0,1766.010500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,72,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,1105,4320.000000,72,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2340,4320.000000,72,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,72,0,2625.000000,extended,nbiot,180 -on5,0,0,24,1,0,1800,4320.000000,73,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1,4320.000000,73,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,414,4320.000000,73,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,73,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,754,4320.000000,73,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1440,4320.000000,73,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4376.050000,73,0,2276.952500,extended,nbiot,180 -on9,0,0,24,1,0,146,4326.010000,73,0,1756.410500,extended,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,73,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3009,4320.000000,73,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,3060,4320.000000,73,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1260,4320.000000,73,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,700,4340.010000,74,0,1762.010500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,74,0,2409.850000,extended,nbiot,180 -on2,0,0,24,1,0,89,4320.000000,74,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,522,4342.010000,74,0,1762.810500,extended,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,74,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,74,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2880,4320.000000,74,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,74,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,3600,4320.000000,74,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,74,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,1080,4320.000000,74,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,249,4320.000000,75,0,1754.006500,extended,nbiot,180 -on7,0,0,23,1,0,2092,4273.000000,75,0,1735.206500,extended,nbiot,180 -on10,0,0,24,1,0,3010,4320.000000,75,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,75,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1026,4320.000000,75,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3960,4320.000000,75,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2350,4320.000000,75,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,937,4320.000000,75,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1056,4336.020000,75,0,1760.414500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,75,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1800,4320.000000,75,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,75,0,2539.206500,extended,nbiot,180 -on6,0,0,24,1,0,604,4320.000000,76,0,1754.006500,extended,nbiot,180 -on11,0,0,23,1,0,205,4279.000000,76,0,1737.606500,extended,nbiot,180 -on3,0,0,24,1,0,2520,4320.000000,76,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,3928,4328.010000,76,0,1757.210500,extended,nbiot,180 -on10,0,0,24,1,0,2438,4320.000000,76,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1027,4320.000000,76,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1654,4320.000000,76,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,76,0,2608.756500,extended,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,76,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1981,4320.000000,76,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,469,4320.000000,76,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2023,4320.000000,76,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1214,4320.000000,77,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,48,4320.000000,77,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,77,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2293,4320.000000,77,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,77,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,578,4320.000000,77,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3780,4320.000000,77,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,77,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2160,4320.000000,77,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,168,4348.010000,77,0,1765.210500,extended,nbiot,180 -on0,1,11,24,0,0,0,4428.060000,77,0,2338.713000,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,77,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2160,4320.000000,78,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2713,4320.000000,78,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,78,0,1754.006500,extended,nbiot,180 -on2,0,0,23,1,0,3804,4217.000000,78,0,1712.806500,extended,nbiot,180 -on7,0,0,24,1,0,1600,4340.010000,78,0,1762.010500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,78,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,154,4334.010000,78,0,1759.610500,extended,nbiot,180 -on3,0,0,24,1,0,1827,4320.000000,78,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,979,4320.000000,78,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3024,4324.010000,78,0,1755.610500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,78,0,2613.300000,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,79,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,79,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2520,4320.000000,79,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,516,4336.010000,79,0,1760.410500,extended,nbiot,180 -on10,0,0,24,1,0,2164,4320.000000,79,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,79,0,1754.006500,extended,nbiot,180 -on11,0,0,23,1,0,1190,4302.000000,79,0,1746.806500,extended,nbiot,180 -on2,0,0,24,1,0,3600,4320.000000,79,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1173,4320.000000,79,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,79,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,79,0,2233.050000,extended,nbiot,180 -on9,0,0,24,1,0,900,4320.000000,80,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1254,4354.010000,80,0,1767.610500,extended,nbiot,180 -on11,0,0,24,1,0,793,4320.000000,80,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4327.010000,80,0,2586.217000,extended,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,80,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,82,4320.000000,80,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1682,4320.000000,80,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,853,4320.000000,80,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,392,4320.000000,80,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1328,4320.000000,80,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,80,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1362,4320.000000,80,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,81,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,81,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1830,4320.000000,81,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,394,4320.000000,81,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,831,4320.000000,81,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,81,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,305,4320.000000,81,0,1754.006500,extended,nbiot,180 -on11,0,0,23,1,0,1371,4152.000000,81,0,1686.806500,extended,nbiot,180 -on9,0,0,24,1,0,1102,4320.000000,81,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1724,4320.000000,81,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,81,0,2653.600000,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,81,0,1754.006500,extended,nbiot,180 -on10,0,0,23,0,0,4271,4271.000000,82,0,1708.400000,extended,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,82,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3960,4320.000000,82,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,82,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,721,4320.000000,82,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2025,4320.000000,82,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1620,4320.000000,82,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,438,4320.000000,82,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1333,4320.000000,82,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,82,0,1728.000000,extended,nbiot,180 -on0,1,9,24,0,0,0,4324.010000,82,0,2351.660500,extended,nbiot,180 -on2,0,0,24,1,0,755,4320.000000,82,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,204,4320.000000,83,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,996,4320.000000,83,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,3240,4320.000000,83,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,83,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,83,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,387,4320.000000,83,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,83,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,18,4320.000000,83,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2094,4320.000000,83,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,83,0,2548.300000,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,83,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,83,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,84,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2700,4320.000000,84,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,84,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,940,4320.000000,84,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,84,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,1282,4320.000000,84,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,966,4320.000000,84,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,84,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4349.010000,84,0,2297.310500,extended,nbiot,180 -on9,0,0,24,1,0,1440,4320.000000,84,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,84,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3240,4320.000000,84,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1341,4320.000000,85,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,85,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1676,4320.000000,85,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1989,4320.000000,85,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,849,4320.000000,85,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2700,4320.000000,85,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,612,4320.000000,85,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4345.020000,85,0,2612.277500,extended,nbiot,180 -on4,0,0,23,1,0,0,4264.000000,85,0,1731.606500,extended,nbiot,180 -on5,0,0,24,1,0,93,4320.000000,85,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1440,4320.000000,85,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2474,4320.000000,85,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,669,4320.000000,86,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4329.010000,86,0,2465.467000,extended,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,86,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1265,4320.000000,86,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,805,4320.000000,86,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,70,4320.000000,86,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,86,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,203,4320.000000,86,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,86,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,782,4320.000000,86,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,261,4320.000000,86,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1088,4320.000000,86,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1800,4320.000000,87,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2124,4324.010000,87,0,1755.610500,extended,nbiot,180 -on4,0,0,24,1,0,459,4320.000000,87,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4348.010000,87,0,2528.317000,extended,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,87,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,87,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,87,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,922,4320.000000,87,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2520,4320.000000,87,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,58,4320.000000,87,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1104,4320.000000,87,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,87,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1960,4340.010000,88,0,1762.010500,extended,nbiot,180 -on3,0,0,24,1,0,358,4358.010000,88,0,1769.210500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,88,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,88,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4354.010000,88,0,2510.560500,extended,nbiot,180 -on9,0,0,24,1,0,2880,4320.000000,88,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1099,4320.000000,88,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,552,4320.000000,88,0,1754.006500,extended,nbiot,180 -on6,0,0,23,1,0,540,4267.000000,88,0,1732.806500,extended,nbiot,180 -on1,0,0,24,1,0,288,4320.000000,88,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1440,4320.000000,88,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,88,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,482,4320.000000,89,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,89,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,3537,4320.000000,89,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2788,4320.000000,89,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,89,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,89,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,64,4320.000000,89,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,155,4335.010000,89,0,1760.010500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,89,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2880,4320.000000,89,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,89,0,2595.100000,extended,nbiot,180 -on5,0,0,24,1,0,698,4338.010000,89,0,1761.210500,extended,nbiot,180 -on9,0,0,24,1,0,1470,4320.000000,90,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,4140,4320.000000,90,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,90,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,90,0,1728.000000,extended,nbiot,180 -on5,0,0,23,1,0,1736,4262.000000,90,0,1730.806500,extended,nbiot,180 -on7,0,0,24,1,0,140,4320.010000,90,0,1754.010500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,90,0,1754.006500,extended,nbiot,180 -on3,0,0,23,1,0,2160,4277.000000,90,0,1736.806500,extended,nbiot,180 -on4,0,0,24,1,0,1080,4320.000000,90,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4370.020000,90,0,2446.771000,extended,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,90,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,90,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,91,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1210,4320.000000,91,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3960,4320.000000,91,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4383.020000,91,0,2411.671000,extended,nbiot,180 -on9,0,0,24,1,0,444,4320.000000,91,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,91,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,3240,4320.000000,91,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,91,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3060,4320.000000,91,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,130,4320.000000,91,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,91,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,900,4320.000000,91,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,92,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,nbiot,180 -on0,1,6,24,0,0,0,4320.000000,92,0,2227.200000,extended,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,92,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,92,0,1754.006500,extended,nbiot,180 -on4,0,0,23,1,0,1597,4245.010000,92,0,1724.010500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,3240,4320.000000,92,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1027,4320.000000,92,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,93,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1055,4335.010000,93,0,1760.010500,extended,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,93,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,764,4320.000000,93,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,852,4320.000000,93,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,93,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,93,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,93,0,1728.000000,extended,nbiot,180 -on10,0,0,23,1,0,0,4276.000000,93,0,1736.406500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,93,0,2442.350000,extended,nbiot,180 -on8,0,0,24,1,0,2921,4320.000000,93,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,94,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2340,4320.000000,94,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,94,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,132,4320.000000,94,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,94,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,94,0,1754.006500,extended,nbiot,180 -on4,0,0,23,1,0,846,4306.010000,94,0,1748.410500,extended,nbiot,180 -on0,1,10,24,0,0,0,4341.030000,94,0,2493.681500,extended,nbiot,180 -on3,0,0,23,1,0,312,4315.000000,94,0,1752.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,94,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,1260,4320.000000,94,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2789,4320.000000,94,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,926,4320.000000,95,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2942,4320.000000,95,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1620,4320.000000,95,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,302,4320.000000,95,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,95,0,2551.550000,extended,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,95,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,800,4320.000000,95,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,95,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,95,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,256,4320.000000,95,0,1754.006500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,95,0,1728.000000,extended,nbiot,180 -on8,0,0,23,1,0,0,4316.000000,96,0,1752.406500,extended,nbiot,180 -on11,0,0,23,1,0,2926,4295.000000,96,0,1744.006500,extended,nbiot,180 -on2,0,0,24,1,0,1727,4320.000000,96,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,282,4320.000000,96,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,96,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,427,4320.000000,96,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1503,4320.000000,96,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,96,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4335.010000,96,0,2568.610500,extended,nbiot,180 -on3,0,0,24,1,0,3240,4320.000000,96,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2440,4320.000000,96,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,96,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,285,4320.000000,97,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2098,4320.000000,97,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,97,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,97,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,778,4320.000000,97,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,97,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,784,4320.000000,97,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,97,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4349.010000,97,0,2459.810500,extended,nbiot,180 -on7,0,0,24,1,0,56,4320.000000,97,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1247,4347.010000,97,0,1764.810500,extended,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,97,0,1754.006500,extended,nbiot,180 -on4,0,0,23,1,0,720,4201.000000,98,0,1706.406500,extended,nbiot,180 -on9,0,0,24,1,0,3240,4320.000000,98,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,98,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1180,4320.000000,98,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,497,4320.000000,98,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,98,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3060,4320.000000,98,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1436,4356.010000,98,0,1768.410500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,98,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4424.040000,98,0,2431.992000,extended,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,98,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,514,4334.020000,98,0,1759.614500,extended,nbiot,180 -on1,0,0,24,1,0,36,4320.000000,99,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,99,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,203,4320.000000,99,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1149,4320.000000,99,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3060,4320.000000,99,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,99,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,99,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,99,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,99,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,99,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4355.010000,99,0,2529.160500,extended,nbiot,180 -on9,0,0,24,1,0,1847,4320.000000,99,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,100,0,1728.000000,extended,nbiot,180 -on1,0,0,24,1,0,2156,4356.010000,100,0,1768.410500,extended,nbiot,180 -on2,0,0,24,1,0,127,4320.000000,100,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,100,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2700,4320.000000,100,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,100,0,2573.000000,extended,nbiot,180 -on6,0,0,24,1,0,3902,4320.000000,100,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,490,4320.000000,100,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,555,4320.000000,100,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1439,4359.010000,100,0,1769.610500,extended,nbiot,180 -on3,0,0,24,1,0,369,4320.000000,100,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,494,4320.000000,100,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,3780,4320.000000,101,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,316,4320.000000,101,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4391.030000,101,0,2338.838000,extended,nbiot,180 -on7,0,0,24,1,0,2160,4320.000000,101,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,73,4320.000000,101,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,101,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,101,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,101,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3058,4358.010000,101,0,1769.210500,extended,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,101,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,263,4320.000000,101,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2160,4320.000000,101,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3341,4320.000000,102,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,102,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,102,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,102,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,2880,4320.000000,102,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2554,4320.000000,102,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2296,4320.000000,102,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1980,4320.000000,102,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,464,4320.000000,102,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4376.030000,102,0,2497.931500,extended,nbiot,180 -on11,0,0,24,1,0,2340,4320.000000,102,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3802,4320.000000,102,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,103,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,2080,4320.000000,103,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2168,4320.000000,103,0,1754.006500,extended,nbiot,180 -on5,0,0,23,1,0,529,4308.010000,103,0,1749.210500,extended,nbiot,180 -on2,0,0,24,1,0,3223,4343.010000,103,0,1763.210500,extended,nbiot,180 -on4,0,0,24,1,0,2520,4320.000000,103,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,103,0,2576.900000,extended,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,103,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,103,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1800,4320.000000,103,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1260,4320.000000,103,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,103,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1800,4320.000000,104,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1127,4320.000000,104,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,104,0,1728.000000,extended,nbiot,180 -on0,1,10,24,0,0,0,4360.020000,104,0,2514.921000,extended,nbiot,180 -on8,0,0,24,1,0,742,4320.000000,104,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1961,4341.010000,104,0,1762.410500,extended,nbiot,180 -on6,0,0,24,1,0,1440,4320.000000,104,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,339,4339.010000,104,0,1761.610500,extended,nbiot,180 -on2,0,0,24,1,0,595,4320.000000,104,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3027,4327.010000,104,0,1756.810500,extended,nbiot,180 -on1,0,0,24,1,0,1080,4320.000000,104,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,104,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,105,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,252,4320.000000,105,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1413,4333.010000,105,0,1759.210500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,105,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,105,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4337.030000,105,0,2425.781500,extended,nbiot,180 -on10,0,0,24,1,0,4140,4320.000000,105,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,105,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,105,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,105,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,1977,4357.010000,105,0,1768.810500,extended,nbiot,180 -on11,0,0,24,1,0,1080,4320.000000,105,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3142,4320.000000,106,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2340,4320.000000,106,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,106,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,98,4320.000000,106,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,825,4320.000000,106,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,35,4320.000000,106,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,106,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,106,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,206,4320.000000,106,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2139,4339.010000,106,0,1761.610500,extended,nbiot,180 -on0,1,9,24,0,0,0,4322.010000,106,0,2511.410500,extended,nbiot,180 -on1,0,0,24,1,0,907,4320.000000,107,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,107,0,2363.700000,extended,nbiot,180 -on8,0,0,24,1,0,1068,4348.010000,107,0,1765.210500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,107,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1743,4320.000000,107,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,3991,4320.000000,107,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,484,4320.000000,107,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,492,4320.000000,107,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2261,4320.000000,107,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1260,4320.000000,108,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,243,4320.000000,108,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,108,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1620,4320.000000,108,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1546,4320.000000,108,0,1754.006500,extended,nbiot,180 -on1,0,0,23,1,0,900,4300.000000,108,0,1746.006500,extended,nbiot,180 -on3,0,0,24,1,0,1360,4320.000000,108,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,899,4359.010000,108,0,1769.610500,extended,nbiot,180 -on0,1,11,24,0,0,0,4392.030000,108,0,2442.588000,extended,nbiot,180 -on10,0,0,24,1,0,384,4320.000000,108,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2212,4320.000000,108,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,180,4320.000000,108,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,935,4320.000000,109,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,1910,4320.000000,109,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,101,4320.000000,109,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,109,0,2452.100000,extended,nbiot,180 -on6,0,0,24,1,0,2311,4331.010000,109,0,1758.410500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,109,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,109,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,109,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,109,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,109,0,1728.000000,extended,nbiot,180 -on0,1,8,24,0,0,0,4349.010000,110,0,2350.610500,extended,nbiot,180 -on11,0,0,24,1,0,539,4359.010000,110,0,1769.610500,extended,nbiot,180 -on6,0,0,24,1,0,3378,4320.000000,110,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,1316,4320.000000,110,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,27,4320.000000,110,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,332,4332.010000,110,0,1758.810500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,110,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,147,4327.020000,110,0,1756.814500,extended,nbiot,180 -on1,0,0,24,1,0,2340,4320.000000,110,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,222,4320.000000,110,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4336.010000,111,0,2479.310500,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,111,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3047,4347.010000,111,0,1764.810500,extended,nbiot,180 -on10,0,0,24,1,0,1120,4320.000000,111,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2340,4320.000000,111,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,459,4320.000000,111,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,3092,4320.000000,111,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,111,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,1260,4320.000000,111,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2926,4320.000000,111,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1971,4351.010000,111,0,1766.410500,extended,nbiot,180 -on2,0,0,24,1,0,2064,4320.000000,112,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,112,0,2392.950000,extended,nbiot,180 -on11,0,0,24,1,0,1980,4320.000000,112,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,37,4320.000000,112,0,1754.006500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,1984,4320.000000,112,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1328,4320.000000,112,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,1779,4339.010000,112,0,1761.610500,extended,nbiot,180 -on5,0,0,24,1,0,3042,4342.010000,112,0,1762.810500,extended,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,112,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,3600,4320.000000,113,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1620,4320.000000,113,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2700,4320.000000,113,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1800,4320.000000,113,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,677,4320.000000,113,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,784,4320.000000,113,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4378.030000,113,0,2670.331500,extended,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,113,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2348,4320.000000,113,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2055,4320.000000,113,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2233,4320.000000,113,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3197,4320.000000,113,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3204,4324.010000,114,0,1755.610500,extended,nbiot,180 -on5,0,0,24,1,0,645,4320.000000,114,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,114,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,114,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,114,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,87,4320.000000,114,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1959,4339.010000,114,0,1761.610500,extended,nbiot,180 -on10,0,0,24,1,0,892,4352.010000,114,0,1766.810500,extended,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,114,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1440,4320.000000,114,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4361.020000,114,0,2546.527500,extended,nbiot,180 -on4,0,0,24,1,0,2160,4320.000000,114,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3600,4320.000000,115,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1409,4329.010000,115,0,1757.610500,extended,nbiot,180 -on0,1,10,24,0,0,0,4377.020000,115,0,2551.621000,extended,nbiot,180 -on10,0,0,24,1,0,1491,4320.000000,115,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,115,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,2735,4320.000000,115,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3162,4320.000000,115,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,0,4320.000000,115,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,115,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,720,4320.000000,115,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,561,4320.000000,115,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,115,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,643,4320.000000,116,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3410,4350.020000,116,0,1766.014500,extended,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,116,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4341.010000,116,0,2440.373500,extended,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,116,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,884,4344.010000,116,0,1763.610500,extended,nbiot,180 -on11,0,0,24,1,0,1807,4320.000000,116,0,1754.006500,extended,nbiot,180 -on6,0,0,23,1,0,68,4248.000000,116,0,1725.206500,extended,nbiot,180 -on3,0,0,24,1,0,711,4351.020000,116,0,1766.414500,extended,nbiot,180 -on10,0,0,24,1,0,3303,4320.000000,116,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,463,4320.000000,116,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,116,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,84,4320.000000,117,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,704,4344.010000,117,0,1763.610500,extended,nbiot,180 -on5,0,0,24,1,0,1260,4320.000000,117,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,117,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1594,4334.010000,117,0,1759.610500,extended,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,117,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4370.040000,117,0,2412.342000,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,117,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,117,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2714,4320.000000,117,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,117,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2700,4320.000000,117,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3971,4320.000000,118,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3612,4320.000000,118,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,118,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,118,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,728,4320.000000,118,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,118,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,118,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,4174,4320.000000,118,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4366.020000,118,0,2539.421000,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,118,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,118,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,267,4320.000000,118,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,962,4320.000000,119,0,1754.006500,extended,nbiot,180 -on8,0,0,23,1,0,827,4270.000000,119,0,1734.006500,extended,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,119,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,686,4326.020000,119,0,1756.414500,extended,nbiot,180 -on5,0,0,24,1,0,611,4320.000000,119,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,39,4320.000000,119,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,119,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,119,0,2550.906500,extended,nbiot,180 -on11,0,0,24,1,0,3600,4320.000000,119,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,254,4320.000000,119,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,119,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2384,4320.000000,119,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2160,4320.000000,120,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,360,4320.000000,120,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,286,4320.000000,120,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,120,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1260,4320.000000,120,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,120,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,601,4320.000000,120,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,120,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,120,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,120,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2880,4320.000000,120,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4340.010000,120,0,2489.360500,extended,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,121,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,28,4320.000000,121,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1231,4331.010000,121,0,1758.410500,extended,nbiot,180 -on2,0,0,24,1,0,1754,4320.000000,121,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,121,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2220,4320.000000,121,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,121,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,121,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2258,4320.000000,121,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2436,4320.000000,121,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4336.020000,121,0,2411.071000,extended,nbiot,180 -on4,0,0,24,1,0,3600,4320.000000,121,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,2520,4320.000000,122,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4405.030000,122,0,2330.781500,extended,nbiot,180 -on7,0,0,24,1,0,3060,4320.000000,122,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,137,4320.000000,122,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,122,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,122,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,122,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,122,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2777,4320.000000,122,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,898,4358.010000,122,0,1769.210500,extended,nbiot,180 -on8,0,0,24,1,0,344,4344.010000,123,0,1763.610500,extended,nbiot,180 -on11,0,0,24,1,0,1569,4320.000000,123,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,0,4320.000000,123,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,918,4320.000000,123,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,123,0,1728.000000,extended,nbiot,180 -on1,0,0,24,1,0,3060,4320.000000,123,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,123,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2355,4320.000000,123,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1604,4344.030000,123,0,1763.618500,extended,nbiot,180 -on4,0,0,24,1,0,1495,4320.000000,123,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1271,4320.000000,123,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,123,0,2500.850000,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,124,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,124,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1762,4322.020000,124,0,1754.814500,extended,nbiot,180 -on5,0,0,24,1,0,1800,4320.000000,124,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2787,4320.000000,124,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,124,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1643,4320.000000,124,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,124,0,1754.006500,extended,nbiot,180 -on3,0,0,23,1,0,840,4260.000000,124,0,1730.006500,extended,nbiot,180 -on7,0,0,24,1,0,2867,4347.010000,124,0,1764.810500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,124,0,2569.756500,extended,nbiot,180 -on4,0,0,23,1,0,2040,4240.010000,124,0,1722.010500,extended,nbiot,180 -on6,0,0,24,1,0,32,4320.000000,125,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,612,4320.000000,125,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,125,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,720,4320.000000,125,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,125,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,701,4341.010000,125,0,1762.410500,extended,nbiot,180 -on1,0,0,24,1,0,345,4345.010000,125,0,1764.010500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,125,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1758,4320.000000,125,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,360,4320.000000,125,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,125,0,2356.550000,extended,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,126,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,798,4320.000000,126,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,1756,4320.000000,126,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,126,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,126,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,126,0,2510.600000,extended,nbiot,180 -on6,0,0,24,1,0,853,4320.000000,126,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,927,4320.000000,126,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,370,4320.000000,126,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,126,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,3266,4320.000000,126,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,127,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4356.010000,127,0,2379.410500,extended,nbiot,180 -on9,0,0,24,1,0,984,4320.000000,127,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1131,4320.000000,127,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,673,4320.000000,127,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,127,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1095,4320.000000,127,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,127,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,127,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,127,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,2700,4320.000000,127,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,774,4320.000000,127,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3780,4320.000000,128,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,435,4320.000000,128,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,128,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,128,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1404,4324.010000,128,0,1755.610500,extended,nbiot,180 -on8,0,0,24,1,0,1572,4320.000000,128,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1000,4320.000000,128,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,853,4320.000000,128,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1744,4320.000000,128,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,128,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,903,4320.000000,128,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,128,0,2531.400000,extended,nbiot,180 -on1,0,0,24,1,0,756,4320.000000,129,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,129,0,2454.056500,extended,nbiot,180 -on4,0,0,24,1,0,2032,4320.000000,129,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2340,4320.000000,129,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,129,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,129,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,313,4320.000000,129,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,16,4320.000000,129,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1620,4320.000000,129,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,129,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,900,4320.000000,129,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,129,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,352,4352.020000,130,0,1766.814500,extended,nbiot,180 -on3,0,0,24,1,0,2,4320.000000,130,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,325,4325.010000,130,0,1756.010500,extended,nbiot,180 -on9,0,0,24,1,0,200,4320.000000,130,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,130,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,130,0,1754.006500,extended,nbiot,180 -on10,0,0,23,1,0,540,4278.000000,130,0,1737.206500,extended,nbiot,180 -on4,0,0,24,1,0,1575,4320.000000,130,0,1754.006500,extended,nbiot,180 -on5,0,0,23,1,0,419,4291.000000,130,0,1742.406500,extended,nbiot,180 -on0,1,11,24,0,0,0,4338.020000,130,0,2318.927500,extended,nbiot,180 -on1,0,0,24,1,0,1439,4359.010000,130,0,1769.610500,extended,nbiot,180 -on2,0,0,24,1,0,2073,4320.000000,130,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,131,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,131,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,131,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,131,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,1412,4332.010000,131,0,1758.810500,extended,nbiot,180 -on11,0,0,24,1,0,2160,4320.000000,131,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,258,4320.000000,131,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,303,4320.000000,131,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,131,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4322.010000,131,0,2425.610500,extended,nbiot,180 -on2,0,0,24,1,0,2771,4320.000000,131,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,540,4320.000000,131,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,132,0,2396.206500,extended,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,132,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1260,4320.000000,132,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,757,4320.000000,132,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1339,4320.000000,132,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,132,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,132,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,627,4320.000000,132,0,1754.006500,extended,nbiot,180 -on10,0,0,23,1,0,399,4224.000000,132,0,1715.606500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,132,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,720,4320.000000,132,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,132,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,58,4320.000000,133,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,264,4320.000000,133,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3,4320.000000,133,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1778,4338.010000,133,0,1761.210500,extended,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,133,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,133,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,133,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1904,4320.000000,133,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,260,4320.000000,133,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4327.010000,133,0,2386.660500,extended,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,133,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1874,4320.000000,133,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,134,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,3883,4320.000000,134,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1800,4320.000000,134,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,134,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,134,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1341,4320.000000,134,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2030,4320.000000,134,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,134,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,134,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2160,4320.000000,134,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,134,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4325.010000,134,0,2515.860500,extended,nbiot,180 -on0,1,10,24,0,0,0,4330.010000,135,0,2536.060500,extended,nbiot,180 -on6,0,0,24,1,0,294,4320.000000,135,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3058,4358.010000,135,0,1769.210500,extended,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,135,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3060,4320.000000,135,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1735,4320.000000,135,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,448,4320.000000,135,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2089,4320.000000,135,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2160,4320.000000,135,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,303,4320.000000,135,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,135,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,136,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,503,4323.010000,136,0,1755.210500,extended,nbiot,180 -on2,0,0,24,1,0,352,4352.010000,136,0,1766.810500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,136,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,136,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2336,4356.010000,136,0,1768.410500,extended,nbiot,180 -on3,0,0,24,1,0,2128,4328.010000,136,0,1757.210500,extended,nbiot,180 -on1,0,0,23,1,0,246,4253.000000,136,0,1727.206500,extended,nbiot,180 -on4,0,0,24,1,0,2160,4320.000000,136,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,136,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,4278,4320.000000,136,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4339.010000,136,0,2579.310500,extended,nbiot,180 -on1,0,0,24,1,0,2497,4337.010000,137,0,1760.810500,extended,nbiot,180 -on9,0,0,24,1,0,675,4320.000000,137,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1980,4320.000000,137,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,137,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1810,4320.000000,137,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1260,4320.000000,137,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,137,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,137,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4389.030000,137,0,2482.988000,extended,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,137,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,297,4320.000000,137,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,137,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3555,4320.000000,138,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,491,4320.000000,138,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,138,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3938,4338.010000,138,0,1761.210500,extended,nbiot,180 -on8,0,0,24,1,0,204,4320.000000,138,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2212,4320.000000,138,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,138,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1902,4320.000000,138,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2231,4320.000000,138,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4351.010000,138,0,2605.567000,extended,nbiot,180 -on11,0,0,24,1,0,1683,4320.000000,138,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1521,4320.000000,138,0,1754.006500,extended,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,139,0,2374.750000,extended,nbiot,180 -on3,0,0,24,1,0,1752,4320.000000,139,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2799,4320.000000,139,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,37,4320.000000,139,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1737,4320.000000,139,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,139,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,139,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,762,4320.000000,139,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,139,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,140,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,530,4350.030000,140,0,1766.018500,extended,nbiot,180 -on8,0,0,24,1,0,3600,4320.000000,140,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,754,4320.000000,140,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1213,4320.000000,140,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1800,4320.000000,140,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,393,4320.000000,140,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,236,4320.000000,140,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4351.010000,140,0,2463.867000,extended,nbiot,180 -on6,0,0,24,1,0,1708,4320.000000,140,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,310,4320.000000,140,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,478,4320.000000,140,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,141,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,141,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3551,4320.000000,141,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,extended,nbiot,180 -on9,0,0,24,1,0,210,4320.000000,141,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1909,4320.000000,141,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,141,0,1728.000000,extended,nbiot,180 -on0,1,9,24,0,0,0,4335.020000,141,0,2258.571000,extended,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,141,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2996,4320.000000,141,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2934,4320.000000,141,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,141,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2700,4320.000000,142,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1210,4320.000000,142,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,18,4320.000000,142,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,142,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2724,4320.000000,142,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,215,4320.000000,142,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3960,4320.000000,142,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,142,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,2880,4320.000000,142,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,142,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,142,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4356.030000,142,0,2385.931500,extended,nbiot,180 -on1,0,0,24,1,0,1260,4320.000000,143,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,143,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,518,4338.020000,143,0,1761.214500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,extended,nbiot,180 -on9,0,0,24,1,0,511,4331.010000,143,0,1758.410500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,143,0,2417.650000,extended,nbiot,180 -on2,0,0,24,1,0,2160,4320.000000,143,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,143,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1198,4320.000000,143,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3417,4357.010000,143,0,1768.810500,extended,nbiot,180 -on11,0,0,24,1,0,1117,4320.000000,143,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1456,4320.000000,143,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1800,4320.000000,144,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2160,4320.000000,144,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,42,4320.000000,144,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,144,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,900,4320.000000,144,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4365.030000,144,0,2315.438000,extended,nbiot,180 -on10,0,0,24,1,0,3060,4320.000000,144,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,728,4320.000000,144,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2340,4320.000000,144,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2348,4320.000000,144,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,720,4320.000000,144,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2989,4320.000000,144,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1260,4320.000000,145,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,32,4320.000000,145,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,912,4320.000000,145,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4365.020000,145,0,2472.077500,extended,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,145,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,145,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,718,4358.010000,145,0,1769.210500,extended,nbiot,180 -on4,0,0,24,1,0,264,4320.000000,145,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1040,4320.010000,145,0,1754.010500,extended,nbiot,180 -on11,0,0,24,1,0,480,4320.000000,145,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3027,4327.010000,145,0,1756.810500,extended,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,145,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4344.010000,146,0,2351.867000,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,146,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,825,4320.000000,146,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,741,4320.000000,146,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,146,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,3060,4320.000000,146,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3359,4320.000000,146,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1080,4320.000000,146,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1967,4347.010000,146,0,1764.810500,extended,nbiot,180 -on9,0,0,24,1,0,580,4320.000000,146,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,548,4320.000000,146,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3116,4320.000000,146,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,327,4327.010000,147,0,1756.810500,extended,nbiot,180 -on5,0,0,24,1,0,1295,4320.000000,147,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,147,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,2520,4320.000000,147,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,147,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,147,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2507,4347.020000,147,0,1764.814500,extended,nbiot,180 -on7,0,0,24,1,0,2413,4320.000000,147,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,147,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3759,4339.010000,147,0,1761.610500,extended,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,147,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,147,0,2448.850000,extended,nbiot,180 -on1,0,0,24,1,0,3046,4346.010000,148,0,1764.410500,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,148,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,660,4320.000000,148,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,148,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2,4320.000000,148,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,26,4320.000000,148,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,148,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,532,4352.010000,148,0,1766.810500,extended,nbiot,180 -on7,0,0,24,1,0,837,4320.000000,148,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4396.030000,148,0,2370.738000,extended,nbiot,180 -on9,0,0,24,1,0,2520,4320.000000,148,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,880,4340.020000,148,0,1762.014500,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,149,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,4019,4320.000000,149,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1232,4332.010000,149,0,1758.810500,extended,nbiot,180 -on1,0,0,23,1,0,2602,4290.000000,149,0,1742.006500,extended,nbiot,180 -on3,0,0,24,1,0,765,4320.000000,149,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4364.020000,149,0,2556.821000,extended,nbiot,180 -on10,0,0,24,1,0,1572,4320.000000,149,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,18,4320.000000,149,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,900,4320.000000,149,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,149,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,149,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1800,4320.000000,149,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3235,4355.010000,150,0,1768.010500,extended,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,150,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,19,4320.000000,150,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,467,4320.000000,150,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2274,4320.000000,150,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,150,0,2464.450000,extended,nbiot,180 -on8,0,0,24,1,0,3174,4320.000000,150,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1419,4339.010000,150,0,1761.610500,extended,nbiot,180 -on3,0,0,24,1,0,661,4320.000000,150,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,387,4320.000000,150,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,151,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1663,4320.000000,151,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3240,4320.000000,151,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,67,4320.000000,151,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2833,4320.000000,151,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1142,4320.000000,151,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1208,4320.000000,151,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,151,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1800,4320.000000,151,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4394.030000,151,0,2444.688000,extended,nbiot,180 -on1,0,0,24,1,0,900,4320.000000,151,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1080,4320.000000,151,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,87,4320.000000,152,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,669,4320.000000,152,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,32,4320.000000,152,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,1705,4320.000000,152,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2880,4320.000000,152,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,152,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,152,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,383,4320.000000,152,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,180,4320.000000,152,0,1754.006500,extended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,152,0,1728.000000,extended,nbiot,180 -on0,1,9,24,0,0,0,4355.010000,152,0,2362.760500,extended,nbiot,180 -on1,0,0,24,1,0,1060,4340.010000,153,0,1762.010500,extended,nbiot,180 -on10,0,0,24,1,0,1800,4320.000000,153,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,297,4320.000000,153,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2520,4320.000000,153,0,1754.006500,extended,nbiot,180 -on11,0,0,23,1,0,1396,4276.000000,153,0,1736.406500,extended,nbiot,180 -on7,0,0,24,1,0,2891,4320.000000,153,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,913,4320.000000,153,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4369.020000,153,0,2401.527500,extended,nbiot,180 -on6,0,0,24,1,0,179,4359.010000,153,0,1769.610500,extended,nbiot,180 -on2,0,0,24,1,0,1620,4320.000000,153,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,153,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,153,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,154,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1040,4320.010000,154,0,1754.010500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,1440,4320.000000,154,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2265,4320.000000,154,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,667,4320.000000,154,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1800,4320.000000,154,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,154,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3060,4320.000000,154,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,extended,nbiot,180 -on0,1,9,24,0,0,0,4392.030000,154,0,2339.881500,extended,nbiot,180 -on6,0,0,24,1,0,328,4328.010000,154,0,1757.210500,extended,nbiot,180 -on0,1,11,24,0,0,0,4401.030000,155,0,2537.831500,extended,nbiot,180 -on10,0,0,24,1,0,471,4320.000000,155,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2417,4320.000000,155,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1966,4346.010000,155,0,1764.410500,extended,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,155,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2880,4320.000000,155,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1669,4320.000000,155,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,155,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,155,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,155,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,359,4359.010000,155,0,1769.610500,extended,nbiot,180 -on8,0,0,23,1,0,180,4269.000000,155,0,1733.606500,extended,nbiot,180 -on11,0,0,24,1,0,2160,4320.000000,156,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3960,4320.000000,156,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,194,4320.000000,156,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1800,4320.000000,156,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3420,4320.000000,156,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1,4320.000000,156,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,540,4320.000000,156,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1280,4320.000000,156,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,0,4320.000000,156,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,156,0,1728.000000,extended,nbiot,180 -on0,1,10,24,0,0,0,4355.010000,156,0,2587.660500,extended,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,156,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1620,4320.000000,157,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,157,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,407,4320.000000,157,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,157,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2880,4320.000000,157,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,157,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,180,4320.000000,157,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,3240,4320.000000,157,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1556,4320.000000,157,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4343.010000,157,0,2315.710500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,158,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1468,4320.000000,158,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,158,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,158,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,158,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2340,4320.000000,158,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2143,4343.010000,158,0,1763.210500,extended,nbiot,180 -on0,1,9,24,0,0,0,4385.040000,158,0,2341.642000,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,158,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,566,4320.000000,158,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1620,4320.000000,158,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,159,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2367,4320.000000,159,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4404.030000,159,0,2306.988000,extended,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,159,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2066,4320.000000,159,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,396,4320.000000,159,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,159,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,395,4320.000000,159,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,159,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2046,4320.000000,159,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,159,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,730,4320.000000,159,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1398,4320.000000,160,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,655,4320.000000,160,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1071,4351.010000,160,0,1766.410500,extended,nbiot,180 -on6,0,0,24,1,0,10,4320.000000,160,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1080,4320.000000,160,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,909,4320.000000,160,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,250,4320.000000,160,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,0,4320.000000,160,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,160,0,2437.806500,extended,nbiot,180 -on3,0,0,24,1,0,831,4320.000000,160,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,710,4350.020000,160,0,1766.014500,extended,nbiot,180 -on7,0,0,24,1,0,1080,4320.000000,160,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,540,4320.000000,161,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1080,4320.000000,161,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,161,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2875,4355.010000,161,0,1768.010500,extended,nbiot,180 -on6,0,0,24,1,0,3036,4336.010000,161,0,1760.410500,extended,nbiot,180 -on5,0,0,24,1,0,727,4320.000000,161,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4339.010000,161,0,2583.867000,extended,nbiot,180 -on9,0,0,24,1,0,1011,4320.000000,161,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,600,4320.000000,161,0,1754.006500,extended,nbiot,180 -on4,0,0,23,1,0,0,4192.000000,161,0,1702.806500,extended,nbiot,180 -on3,0,0,24,1,0,1416,4336.010000,161,0,1760.410500,extended,nbiot,180 -on10,0,0,24,1,0,1440,4320.000000,161,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,577,4320.000000,162,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,83,4320.000000,162,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2160,4320.000000,162,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,162,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,162,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,162,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,273,4320.000000,162,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,162,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,282,4320.000000,162,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,436,4320.000000,162,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4353.030000,162,0,2345.088000,extended,nbiot,180 -on10,0,0,24,1,0,180,4320.000000,162,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2743,4320.000000,163,0,1754.006500,extended,nbiot,180 -on8,0,0,23,0,0,4280,4280.000000,163,0,1712.000000,extended,nbiot,180 -on2,0,0,24,1,0,205,4320.000000,163,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,935,4320.000000,163,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,163,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,163,0,2784.900000,extended,nbiot,180 -on11,0,0,24,1,0,2494,4334.010000,163,0,1759.610500,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,163,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2151,4351.010000,163,0,1766.410500,extended,nbiot,180 -on10,0,0,24,1,0,1751,4320.000000,163,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1086,4320.000000,163,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,163,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,219,4320.000000,164,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4353.030000,164,0,2470.538000,extended,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,164,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,360,4320.000000,164,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,164,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,164,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1080,4320.000000,164,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3670,4320.000000,164,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,507,4327.010000,164,0,1756.810500,extended,nbiot,180 -on5,0,0,24,1,0,1260,4320.000000,164,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,0,4320.000000,164,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1651,4320.000000,164,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1234,4334.010000,165,0,1759.610500,extended,nbiot,180 -on9,0,0,24,1,0,2121,4321.010000,165,0,1754.410500,extended,nbiot,180 -on0,1,9,24,0,0,0,4383.030000,165,0,2489.681500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,83,4320.000000,165,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,3060,4320.000000,165,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2340,4320.000000,165,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,720,4320.000000,165,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,165,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2520,4320.000000,165,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1475,4320.000000,165,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,165,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,859,4320.000000,166,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4359.010000,166,0,2652.310500,extended,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,166,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1260,4320.000000,166,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,166,0,1728.000000,extended,nbiot,180 -on9,0,0,24,1,0,489,4320.000000,166,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2880,4320.000000,166,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,763,4320.000000,166,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1838,4320.000000,166,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2595,4320.000000,166,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,912,4320.000000,166,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,279,4320.000000,166,0,1754.006500,extended,nbiot,180 -on3,0,0,23,1,0,2150,4310.000000,167,0,1750.006500,extended,nbiot,180 -on7,0,0,24,1,0,1440,4320.000000,167,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,394,4320.000000,167,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,239,4320.000000,167,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,167,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2700,4320.000000,167,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,321,4321.020000,167,0,1754.414500,extended,nbiot,180 -on5,0,0,23,1,0,2468,4268.000000,167,0,1733.206500,extended,nbiot,180 -on9,0,0,24,1,0,4095,4320.000000,167,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4345.010000,167,0,2324.967000,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,167,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2681,4341.010000,167,0,1762.410500,extended,nbiot,180 -on0,1,9,24,0,0,0,4355.040000,168,0,2285.442000,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,168,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,0,4320.000000,168,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1195,4320.000000,168,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,168,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,168,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,378,4320.000000,168,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,477,4320.000000,168,0,1754.006500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,168,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,168,0,1754.006500,extended,nbiot,180 -on3,0,0,23,1,0,2452,4252.000000,168,0,1726.806500,extended,nbiot,180 -on4,0,0,24,1,0,3652,4320.000000,169,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2340,4320.000000,169,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,1476,4320.000000,169,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,565,4320.000000,169,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,540,4320.000000,169,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,739,4320.000000,169,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4355.010000,169,0,2501.210500,extended,nbiot,180 -on10,0,0,24,1,0,2520,4320.000000,169,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1080,4320.000000,169,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1800,4320.000000,169,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,170,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,720,4320.000000,170,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,434,4320.000000,170,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,360,4320.000000,170,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,170,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,170,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,635,4320.000000,170,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2306,4326.010000,170,0,1756.410500,extended,nbiot,180 -on11,0,0,24,1,0,2520,4320.000000,170,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4386.030000,170,0,2477.881500,extended,nbiot,180 -on7,0,0,24,1,0,1401,4321.010000,170,0,1754.410500,extended,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,170,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,720,4320.000000,171,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2700,4320.000000,171,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2783,4320.000000,171,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,171,0,1754.006500,extended,nbiot,180 -on2,0,0,23,1,0,180,4187.000000,171,0,1700.806500,extended,nbiot,180 -on10,0,0,24,1,0,1620,4320.000000,171,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2030,4320.000000,171,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,245,4320.000000,171,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1858,4320.000000,171,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1265,4320.000000,171,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1254,4354.010000,171,0,1767.610500,extended,nbiot,180 -on0,1,11,24,0,0,0,4331.010000,171,0,2521.510500,extended,nbiot,180 -on4,0,0,24,1,0,3420,4320.000000,172,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1532,4320.000000,172,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,745,4320.000000,172,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4323.010000,172,0,2331.117000,extended,nbiot,180 -on1,0,0,24,1,0,3960,4320.000000,172,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1326,4320.000000,172,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,172,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1514,4320.000000,172,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,172,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,360,4320.000000,172,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,738,4320.000000,172,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,172,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1980,4320.000000,173,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,994,4320.000000,173,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,323,4323.010000,173,0,1755.210500,extended,nbiot,180 -on8,0,0,24,1,0,0,4320.000000,173,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4351.020000,173,0,2608.177500,extended,nbiot,180 -on5,0,0,24,1,0,3866,4320.000000,173,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,173,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1440,4320.000000,173,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2880,4320.000000,173,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,19,4320.000000,173,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1620,4320.000000,173,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1860,4320.000000,173,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1325,4320.000000,174,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,174,0,2650.350000,extended,nbiot,180 -on5,0,0,24,1,0,1408,4328.020000,174,0,1757.214500,extended,nbiot,180 -on3,0,0,24,1,0,845,4320.000000,174,0,1754.006500,extended,nbiot,180 -on1,0,0,23,1,0,180,4301.000000,174,0,1746.406500,extended,nbiot,180 -on4,0,0,24,1,0,3274,4320.000000,174,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,174,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,174,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,2649,4320.000000,174,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3828,4320.000000,174,0,1754.006500,extended,nbiot,180 -on9,0,0,23,1,0,1980,4212.000000,174,0,1710.806500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,174,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1640,4320.000000,175,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,175,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1980,4320.000000,175,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,20,4320.000000,175,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,920,4320.000000,175,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4357.010000,175,0,2436.367000,extended,nbiot,180 -on5,0,0,24,1,0,1080,4320.000000,175,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,900,4320.000000,175,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1767,4327.010000,175,0,1756.810500,extended,nbiot,180 -on6,0,0,24,1,0,3060,4320.000000,175,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,2801,4320.000000,175,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,302,4320.000000,175,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2494,4334.020000,176,0,1759.614500,extended,nbiot,180 -on0,1,10,24,0,0,0,4368.020000,176,0,2442.721000,extended,nbiot,180 -on11,0,0,24,1,0,1260,4320.000000,176,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1980,4320.000000,176,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,2484,4324.010000,176,0,1755.610500,extended,nbiot,180 -on8,0,0,24,1,0,909,4320.000000,176,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,176,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,176,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,360,4320.000000,176,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,770,4320.000000,176,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1541,4320.000000,176,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,176,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,3780,4320.000000,177,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,177,0,2742.000000,extended,nbiot,180 -on5,0,0,24,1,0,4140,4320.000000,177,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1440,4320.000000,177,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,720,4320.000000,177,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,360,4320.000000,177,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2338,4358.010000,177,0,1769.210500,extended,nbiot,180 -on3,0,0,23,1,0,547,4250.000000,177,0,1726.006500,extended,nbiot,180 -on10,0,0,24,1,0,2611,4320.000000,177,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,177,0,1728.000000,extended,nbiot,180 -on8,0,0,24,1,0,230,4320.000000,177,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,97,4320.000000,177,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,178,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,1747,4320.000000,178,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1798,4358.010000,178,0,1769.210500,extended,nbiot,180 -on3,0,0,24,1,0,2558,4320.000000,178,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,180,4320.000000,178,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1391,4320.000000,178,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2435,4320.000000,178,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,178,0,2604.200000,extended,nbiot,180 -on6,0,0,24,1,0,1800,4320.000000,178,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,178,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2115,4320.000000,178,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,720,4320.000000,178,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,179,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1800,4320.000000,179,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,4008,4320.000000,179,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2726,4320.000000,179,0,1754.006500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,3060,4320.000000,179,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,180,4320.000000,179,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1980,4320.000000,179,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,179,0,1728.000000,extended,nbiot,180 -on1,0,0,24,1,0,2673,4333.010000,179,0,1759.210500,extended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,179,0,2355.900000,extended,nbiot,180 -on9,0,0,24,1,0,2019,4320.000000,179,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1440,4320.000000,180,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4341.020000,180,0,2478.071000,extended,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,180,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,180,0,1728.000000,extended,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,180,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,636,4320.000000,180,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,920,4320.000000,180,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2160,4320.000000,180,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1172,4320.000000,180,0,1754.006500,extended,nbiot,180 -on10,0,0,23,0,0,4289,4289.000000,180,0,1715.600000,extended,nbiot,180 -on9,0,0,24,1,0,1370,4320.000000,180,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,0,4320.000000,180,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1097,4320.000000,181,0,1754.006500,extended,nbiot,180 -on9,0,0,23,1,0,1500,4295.000000,181,0,1744.006500,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,181,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,24,4320.000000,181,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1116,4320.000000,181,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,979,4320.000000,181,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,14,4320.000000,181,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,extended,nbiot,180 -on2,0,0,24,1,0,720,4320.000000,181,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,405,4320.000000,181,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4327.010000,181,0,2418.510500,extended,nbiot,180 -on4,0,0,24,1,0,720,4320.000000,181,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,182,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1754,4320.000000,182,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,854,4320.000000,182,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,292,4320.000000,182,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,823,4320.000000,182,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3077,4320.000000,182,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4348.010000,182,0,2599.810500,extended,nbiot,180 -on8,0,0,24,1,0,540,4320.000000,182,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1440,4320.000000,182,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,540,4320.000000,182,0,1754.006500,extended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,182,0,1728.000000,extended,nbiot,180 -on10,0,0,24,1,0,1826,4320.000000,182,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,419,4320.000000,183,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1073,4353.010000,183,0,1767.210500,extended,nbiot,180 -on8,0,0,24,1,0,863,4323.010000,183,0,1755.210500,extended,nbiot,180 -on4,0,0,24,1,0,2726,4320.000000,183,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,960,4320.000000,183,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,183,0,1728.000000,extended,nbiot,180 -on9,0,0,24,1,0,1062,4342.020000,183,0,1762.814500,extended,nbiot,180 -on11,0,0,24,1,0,3420,4320.000000,183,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,183,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,183,0,2476.800000,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,183,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,183,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,184,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1080,4320.000000,184,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1260,4320.000000,184,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2374,4320.000000,184,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1747,4320.000000,184,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2160,4320.000000,184,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,1027,4320.000000,184,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,184,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4323.010000,184,0,2584.610500,extended,nbiot,180 -on3,0,0,24,1,0,1620,4320.000000,184,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1800,4320.000000,184,0,1754.006500,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,184,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,3241,4320.000000,185,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1800,4320.000000,185,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1260,4320.000000,185,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4332.010000,185,0,2509.567000,extended,nbiot,180 -on4,0,0,24,1,0,117,4320.000000,185,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1003,4320.000000,185,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,35,4320.000000,185,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1769,4329.010000,185,0,1757.610500,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,185,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,6,4320.000000,185,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,900,4320.000000,185,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2069,4320.000000,185,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,186,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2520,4320.000000,186,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4359.020000,186,0,2544.427500,extended,nbiot,180 -on4,0,0,24,1,0,1980,4320.000000,186,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2880,4320.000000,186,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1032,4320.000000,186,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3318,4320.000000,186,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2880,4320.000000,186,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,498,4320.000000,186,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1596,4336.010000,186,0,1760.410500,extended,nbiot,180 -on2,0,0,24,1,0,2905,4320.000000,186,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2872,4352.010000,186,0,1766.810500,extended,nbiot,180 -on9,0,0,24,1,0,0,4320.000000,187,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4356.020000,187,0,2532.171000,extended,nbiot,180 -on10,0,0,24,1,0,1436,4356.010000,187,0,1768.410500,extended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,187,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,3041,4341.010000,187,0,1762.410500,extended,nbiot,180 -on5,0,0,24,1,0,900,4320.000000,187,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1567,4320.000000,187,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,335,4335.010000,187,0,1760.010500,extended,nbiot,180 -on4,0,0,24,1,0,1620,4320.000000,187,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,540,4320.000000,187,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,54,4320.000000,187,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,688,4328.010000,188,0,1757.210500,extended,nbiot,180 -on7,0,0,24,1,0,1631,4320.000000,188,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4358.010000,188,0,2590.167000,extended,nbiot,180 -on2,0,0,24,1,0,1706,4320.000000,188,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,4140,4320.000000,188,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,360,4320.000000,188,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1080,4320.000000,188,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2745,4320.000000,188,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1119,4320.000000,188,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1499,4320.000000,188,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3420,4320.000000,188,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,499,4320.000000,188,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,197,4320.000000,189,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2340,4320.000000,189,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1586,4326.020000,189,0,1756.414500,extended,nbiot,180 -on4,0,0,24,1,0,1525,4320.000000,189,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,3600,4320.000000,189,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,3060,4320.000000,189,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,189,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,189,0,2444.300000,extended,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,189,0,1754.006500,extended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,189,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,1620,4320.000000,189,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,3833,4320.000000,189,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1083,4320.000000,190,0,1754.006500,extended,nbiot,180 -on0,1,7,24,0,0,0,4336.010000,190,0,2328.510500,extended,nbiot,180 -on9,0,0,24,1,0,180,4320.000000,190,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,601,4320.000000,190,0,1754.006500,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,395,4320.000000,190,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,187,4320.000000,190,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,3060,4320.000000,190,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1868,4320.000000,190,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,1967,4347.010000,191,0,1764.810500,extended,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,191,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1532,4320.000000,191,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,764,4320.000000,191,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,191,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,180,4320.000000,191,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,191,0,1728.000000,extended,nbiot,180 -on11,0,0,24,1,0,159,4339.010000,191,0,1761.610500,extended,nbiot,180 -on9,0,0,24,1,0,2340,4320.000000,191,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,191,0,2480.050000,extended,nbiot,180 -on4,0,0,24,1,0,877,4337.010000,191,0,1760.810500,extended,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,191,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,1342,4320.000000,192,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,1260,4320.000000,192,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,0,4320.000000,192,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,540,4320.000000,192,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,192,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4352.030000,192,0,2356.381500,extended,nbiot,180 -on10,0,0,24,1,0,1192,4320.000000,192,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,180,4320.000000,192,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1076,4356.010000,192,0,1768.410500,extended,nbiot,180 -on11,0,0,24,1,0,1620,4320.000000,192,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1440,4320.000000,192,0,1754.006500,extended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,192,0,1728.000000,extended,nbiot,180 -on1,0,0,24,1,0,1260,4320.000000,193,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,2160,4320.000000,193,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,3009,4320.000000,193,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2700,4320.000000,193,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1260,4320.000000,193,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,2520,4320.000000,193,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4343.020000,193,0,2417.127500,extended,nbiot,180 -on4,0,0,24,1,0,3770,4350.010000,193,0,1766.010500,extended,nbiot,180 -on10,0,0,24,1,0,900,4320.000000,193,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,360,4320.000000,193,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,360,4320.000000,193,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,2578,4320.000000,193,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,900,4320.000000,194,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,720,4320.000000,194,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,2210,4320.000000,194,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,3000,4320.000000,194,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4364.020000,194,0,2571.121000,extended,nbiot,180 -on6,0,0,24,1,0,2019,4320.000000,194,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,236,4320.000000,194,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,194,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2880,4320.000000,194,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,708,4348.020000,194,0,1765.214500,extended,nbiot,180 -on3,0,0,24,1,0,1361,4320.000000,194,0,1754.006500,extended,nbiot,180 -on2,0,0,23,1,0,661,4198.000000,194,0,1705.206500,extended,nbiot,180 -on6,0,0,24,1,0,2204,4320.000000,195,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2520,4320.000000,195,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,1867,4320.000000,195,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,195,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,9,4320.000000,195,0,1754.006500,extended,nbiot,180 -on10,0,0,23,1,0,2723,4163.000000,195,0,1691.206500,extended,nbiot,180 -on1,0,0,24,1,0,661,4320.000000,195,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1401,4321.010000,195,0,1754.410500,extended,nbiot,180 -on3,0,0,24,1,0,180,4320.000000,195,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,900,4320.000000,195,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4376.020000,195,0,2586.971000,extended,nbiot,180 -on7,0,0,24,1,0,1970,4350.020000,195,0,1766.014500,extended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,extended,nbiot,180 -on6,0,0,24,1,0,3060,4320.000000,196,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,1440,4320.000000,196,0,1754.006500,extended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,extended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,196,0,1728.000000,extended,nbiot,180 -on5,0,0,24,1,0,360,4320.000000,196,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,3060,4320.000000,196,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,113,4320.000000,196,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3029,4329.010000,196,0,1757.610500,extended,nbiot,180 -on0,1,8,24,0,0,0,4332.010000,196,0,2412.060500,extended,nbiot,180 -on3,0,0,24,1,0,3523,4320.000000,196,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,540,4320.000000,196,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,2036,4320.000000,197,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,197,0,2651.006500,extended,nbiot,180 -on5,0,0,24,1,0,540,4320.000000,197,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,1240,4340.010000,197,0,1762.010500,extended,nbiot,180 -on4,0,0,24,1,0,1396,4320.000000,197,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,180,4320.000000,197,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,858,4320.000000,197,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,598,4320.000000,197,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,413,4320.000000,197,0,1754.006500,extended,nbiot,180 -on1,0,0,23,1,0,900,4150.000000,197,0,1686.006500,extended,nbiot,180 -on8,0,0,24,1,0,1900,4320.000000,197,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,920,4320.000000,197,0,1754.006500,extended,nbiot,180 -on0,1,9,24,0,0,0,4384.030000,198,0,2416.631500,extended,nbiot,180 -on5,0,0,24,1,0,463,4320.000000,198,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,180,4320.000000,198,0,1754.006500,extended,nbiot,180 -on4,0,0,24,1,0,2160,4320.000000,198,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,2800,4320.000000,198,0,1754.006500,extended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,198,0,1728.000000,extended,nbiot,180 -on3,0,0,24,1,0,816,4320.000000,198,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,2425,4320.000000,198,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,2896,4320.000000,198,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,900,4320.000000,198,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,452,4320.000000,198,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,2159,4359.010000,199,0,1769.610500,extended,nbiot,180 -on3,0,0,24,1,0,1980,4320.000000,199,0,1754.006500,extended,nbiot,180 -on5,0,0,24,1,0,720,4320.000000,199,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,540,4320.000000,199,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,305,4320.000000,199,0,1754.006500,extended,nbiot,180 -on0,1,11,24,0,0,0,4327.010000,199,0,2397.717000,extended,nbiot,180 -on4,0,0,24,1,0,1440,4320.000000,199,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,3159,4320.000000,199,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,312,4320.000000,199,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1440,4320.000000,199,0,1754.006500,extended,nbiot,180 -on2,0,0,24,1,0,783,4320.000000,199,0,1754.006500,extended,nbiot,180 -on7,0,0,24,1,0,3240,4320.000000,199,0,1754.006500,extended,nbiot,180 -on3,0,0,24,1,0,360,4320.000000,200,0,1754.006500,extended,nbiot,180 -on10,0,0,24,1,0,0,4320.000000,200,0,1754.006500,extended,nbiot,180 -on11,0,0,24,1,0,278,4320.000000,200,0,1754.006500,extended,nbiot,180 -on1,0,0,24,1,0,1980,4320.000000,200,0,1754.006500,extended,nbiot,180 -on0,1,10,24,0,0,0,4322.010000,200,0,2508.160500,extended,nbiot,180 -on5,0,0,24,1,0,1980,4320.000000,200,0,1754.006500,extended,nbiot,180 -on8,0,0,24,1,0,1620,4320.000000,200,0,1754.006500,extended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,200,0,1728.000000,extended,nbiot,180 -on7,0,0,24,1,0,228,4320.000000,200,0,1754.006500,extended,nbiot,180 -on9,0,0,24,1,0,1089,4320.000000,200,0,1754.006500,extended,nbiot,180 -on6,0,0,24,1,0,1076,4356.010000,200,0,1768.410500,extended,nbiot,180 -on4,0,0,24,1,0,836,4320.000000,200,0,1754.006500,extended,nbiot,180 -on6,0,0,27,1,0,2037,4862.900000,1,3,2387.153084,hintandextended,nbiot,180 -on9,0,0,26,1,0,1440,4682.810000,1,2,2259.275376,hintandextended,nbiot,180 -on11,0,0,24,1,0,759,4322.000000,1,0,1826.546584,hintandextended,nbiot,180 -on8,0,0,25,1,0,1013,4503.041280,1,1,2044.336636,hintandextended,nbiot,180 -on2,0,0,25,1,0,1226,4502.250960,1,1,2034.465092,hintandextended,nbiot,180 -on10,0,0,25,1,0,1620,4502.641280,1,1,1991.721636,hintandextended,nbiot,180 -on5,0,0,26,1,0,1361,4681.520000,1,2,2080.607792,hintandextended,nbiot,180 -on3,0,0,25,1,0,1766,4502.000000,1,1,2033.506500,hintandextended,nbiot,180 -on4,0,0,27,1,0,1709,4862.900000,1,3,2398.794584,hintandextended,nbiot,180 -on1,0,0,24,1,0,249,4320.010320,1,0,1754.010836,hintandextended,nbiot,180 -on7,0,0,24,1,0,780,4376.600640,1,1,1893.862088,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,1,0,2688.706708,hintandextended,nbiot,180 -on10,0,0,25,1,0,833,4502.000000,2,1,1929.760000,hintandextended,nbiot,180 -on3,0,0,25,1,0,1103,4647.969040,2,3,1905.370740,hintandextended,nbiot,180 -on4,0,0,26,1,0,1168,4682.300000,2,2,2168.871292,hintandextended,nbiot,180 -on7,0,0,25,1,0,1272,4502.210000,2,1,2007.974000,hintandextended,nbiot,180 -on8,0,0,24,1,0,795,4322.989680,2,0,1900.665872,hintandextended,nbiot,180 -on1,0,0,27,1,0,1333,4863.110000,2,3,2475.637084,hintandextended,nbiot,180 -on11,0,0,26,1,0,1270,4681.041280,2,2,1936.759804,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,2,0,2339.006708,hintandextended,nbiot,180 -on6,0,0,24,1,0,571,4321.989680,2,0,1856.045748,hintandextended,nbiot,180 -on2,0,0,25,1,0,1100,4612.490000,2,2,2060.795792,hintandextended,nbiot,180 -on9,0,0,25,1,0,720,4504.000000,2,1,2181.388292,hintandextended,nbiot,180 -on5,0,0,25,1,0,736,4503.000000,2,1,2025.925124,hintandextended,nbiot,180 -on5,0,0,25,1,0,900,4501.000000,3,1,1916.886500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4362.030640,3,0,2446.188880,hintandextended,nbiot,180 -on4,0,0,24,1,0,180,4322.010320,3,0,1960.211044,hintandextended,nbiot,180 -on9,0,0,25,1,0,902,4502.000000,3,2,1844.818416,hintandextended,nbiot,180 -on6,0,0,25,1,0,720,4503.630960,3,1,2090.924008,hintandextended,nbiot,180 -on10,0,0,25,1,0,360,4503.989680,3,1,2072.275996,hintandextended,nbiot,180 -on1,0,0,25,1,0,355,4501.180000,3,1,1918.330000,hintandextended,nbiot,180 -on2,0,0,25,1,0,0,4502.959040,3,1,1841.503532,hintandextended,nbiot,180 -on11,0,0,26,1,0,375,4681.520000,3,2,2066.971000,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4322.000000,3,0,1915.350208,hintandextended,nbiot,180 -on3,0,0,25,1,0,671,4501.600000,3,1,2015.393292,hintandextended,nbiot,180 -on8,0,0,25,1,0,1193,4502.000000,3,1,2012.706500,hintandextended,nbiot,180 -on9,0,0,25,1,0,145,4503.320640,4,1,2058.358380,hintandextended,nbiot,180 -on7,0,0,25,1,0,293,4503.000000,4,1,2059.919916,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,4,0,3477.800000,hintandextended,nbiot,180 -on2,0,0,25,1,0,166,4529.620640,4,1,2021.428172,hintandextended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,4,0,1728.000000,hintandextended,nbiot,180 -on10,0,0,24,1,0,180,4321.020640,4,0,1822.931672,hintandextended,nbiot,180 -on3,0,0,24,1,0,17,4322.010320,4,0,1880.527336,hintandextended,nbiot,180 -on11,0,0,25,1,0,1260,4502.610320,4,1,1847.409252,hintandextended,nbiot,180 -on4,0,0,25,1,0,2993,4501.000000,4,1,1881.663208,hintandextended,nbiot,180 -on8,0,0,24,1,0,1800,4322.010320,4,0,1870.134252,hintandextended,nbiot,180 -on6,0,0,25,1,0,1055,4501.010320,4,1,1831.624044,hintandextended,nbiot,180 -on1,0,0,25,1,0,3645,4500.310320,4,1,1908.810836,hintandextended,nbiot,180 -on10,0,0,25,1,0,889,4502.180000,5,1,2035.080000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,5,0,2694.556708,hintandextended,nbiot,180 -on5,0,0,24,1,0,360,4321.010320,5,0,1826.820836,hintandextended,nbiot,180 -on4,0,0,24,1,0,627,4322.000000,5,0,1902.603292,hintandextended,nbiot,180 -on7,0,0,26,1,0,905,4682.310320,5,2,2178.040628,hintandextended,nbiot,180 -on6,0,0,24,1,0,1440,4320.010320,5,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,25,1,0,540,4503.041280,5,1,2078.786844,hintandextended,nbiot,180 -on2,0,0,26,1,0,636,4681.279040,5,2,1958.539740,hintandextended,nbiot,180 -on8,0,0,24,1,0,1396,4415.010320,5,1,1792.017336,hintandextended,nbiot,180 -on11,0,0,24,1,0,2747,4322.000000,5,0,1888.700000,hintandextended,nbiot,180 -on1,0,0,25,1,0,1054,4502.289680,5,1,2058.595788,hintandextended,nbiot,180 -on3,0,0,24,1,0,0,4321.000000,5,0,1754.413416,hintandextended,nbiot,180 -on11,0,0,25,1,0,1373,4501.210000,6,1,1848.843792,hintandextended,nbiot,180 -on8,0,0,25,1,0,1659,4501.300000,6,1,1987.661500,hintandextended,nbiot,180 -on2,0,0,24,1,0,1260,4321.000000,6,0,1825.503292,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4321.030960,6,0,1869.735800,hintandextended,nbiot,180 -on9,0,0,24,1,0,1080,4321.010320,6,0,1783.920836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4325.630960,6,0,2333.869216,hintandextended,nbiot,180 -on4,0,0,26,1,0,1953,4681.969040,6,2,2015.157324,hintandextended,nbiot,180 -on3,0,0,24,1,0,1503,4322.989680,6,0,1915.746080,hintandextended,nbiot,180 -on1,0,0,27,1,0,1924,4863.200000,6,3,2481.068084,hintandextended,nbiot,180 -on5,0,0,26,1,0,1817,4683.000000,6,2,2000.216292,hintandextended,nbiot,180 -on10,0,0,25,1,0,1260,4502.600000,6,1,1942.565124,hintandextended,nbiot,180 -on6,0,0,25,1,0,1907,4502.300000,6,1,2040.510000,hintandextended,nbiot,180 -on3,0,0,25,1,0,1373,4502.000000,7,1,1924.950000,hintandextended,nbiot,180 -on5,0,0,25,1,0,1666,4501.220320,7,1,1941.811336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4325.430640,7,0,2872.508672,hintandextended,nbiot,180 -on6,0,0,24,1,0,4140,4320.000000,7,0,1754.006500,hintandextended,nbiot,180 -on4,0,0,25,1,0,185,4501.559040,7,1,1826.643532,hintandextended,nbiot,180 -on7,0,0,25,1,0,483,4501.000000,7,1,1913.519708,hintandextended,nbiot,180 -on10,0,0,24,1,0,23,4325.979360,7,0,1985.718452,hintandextended,nbiot,180 -on8,0,0,25,1,0,360,4503.000000,7,1,2029.376832,hintandextended,nbiot,180 -on2,0,0,24,1,0,3859,4320.989680,7,0,1754.402580,hintandextended,nbiot,180 -on1,0,0,24,1,0,180,4322.979360,7,0,1956.431952,hintandextended,nbiot,180 -on9,0,0,25,1,0,1260,4503.969040,7,1,2019.604324,hintandextended,nbiot,180 -on11,0,0,25,1,0,1758,4501.020320,7,1,1880.371336,hintandextended,nbiot,180 -on0,1,10,23,0,0,0,4340.010320,8,0,3351.260836,hintandextended,nbiot,180 -on3,0,0,24,1,0,1062,4419.020320,8,1,1793.621336,hintandextended,nbiot,180 -on5,0,0,24,1,0,360,4322.989680,8,0,1767.572704,hintandextended,nbiot,180 -on7,0,0,24,1,0,164,4344.020640,8,0,1763.621672,hintandextended,nbiot,180 -on11,0,0,25,1,0,571,4502.338080,8,1,1868.100356,hintandextended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,8,0,1728.000000,hintandextended,nbiot,180 -on6,0,0,25,1,0,512,4503.979360,8,1,2110.868244,hintandextended,nbiot,180 -on1,0,0,25,1,0,180,4503.630960,8,1,2059.340924,hintandextended,nbiot,180 -on4,0,0,24,1,0,320,4322.010320,8,0,1849.067544,hintandextended,nbiot,180 -on2,0,0,25,1,0,654,4503.010000,8,1,2014.430624,hintandextended,nbiot,180 -on9,0,0,24,1,0,156,4494.600000,8,1,2020.875124,hintandextended,nbiot,180 -on8,0,0,24,1,0,0,4320.010320,8,0,1754.010836,hintandextended,nbiot,180 -on11,0,0,24,1,0,412,4322.000000,9,0,1799.020124,hintandextended,nbiot,180 -on6,0,0,25,1,0,540,4502.000000,9,1,1887.906708,hintandextended,nbiot,180 -on2,0,0,24,1,0,2424,4322.000000,9,0,1907.550000,hintandextended,nbiot,180 -on7,0,0,24,1,0,2067,4320.010320,9,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,24,1,0,1260,4321.010320,9,0,1869.727544,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4337.020320,9,0,2984.128044,hintandextended,nbiot,180 -on10,0,0,24,1,0,0,4321.000000,9,0,1771.956708,hintandextended,nbiot,180 -on1,0,0,24,1,0,154,4336.000000,9,0,1831.263416,hintandextended,nbiot,180 -on4,0,0,25,1,0,1596,4501.020640,9,1,1886.228172,hintandextended,nbiot,180 -on5,0,0,24,1,0,1080,4323.030960,9,0,1946.982508,hintandextended,nbiot,180 -on3,0,0,24,1,0,0,4356.000320,9,1,2057.663336,hintandextended,nbiot,180 -on8,0,0,24,1,0,560,4322.010320,9,0,1938.767544,hintandextended,nbiot,180 -on2,0,0,24,1,0,1573,4320.989680,10,0,1754.402580,hintandextended,nbiot,180 -on10,0,0,25,1,0,1293,4502.279360,10,1,1995.521744,hintandextended,nbiot,180 -on7,0,0,24,1,0,650,4322.000000,10,0,1816.803292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,10,0,3411.506708,hintandextended,nbiot,180 -on4,0,0,25,1,0,3251,4664.600000,10,2,2368.816500,hintandextended,nbiot,180 -on6,0,0,24,1,0,937,4321.000000,10,0,1821.350000,hintandextended,nbiot,180 -on9,0,0,25,1,0,1260,4504.641280,10,1,2263.831636,hintandextended,nbiot,180 -on8,0,0,25,1,0,473,4502.000000,10,1,1943.169916,hintandextended,nbiot,180 -on3,0,0,25,1,0,604,4502.369040,10,1,1942.479448,hintandextended,nbiot,180 -on1,0,0,24,1,0,159,4341.030960,10,0,1980.442508,hintandextended,nbiot,180 -on5,0,0,26,1,0,899,4683.630640,10,2,2351.475464,hintandextended,nbiot,180 -on11,0,0,25,1,0,293,4504.041280,10,1,2001.693012,hintandextended,nbiot,180 -on3,0,0,27,1,0,1274,4863.669040,11,3,2370.125824,hintandextended,nbiot,180 -on11,0,0,25,1,0,0,4503.072240,11,1,2061.067436,hintandextended,nbiot,180 -on6,0,0,24,1,0,992,4323.000000,11,0,1991.806708,hintandextended,nbiot,180 -on8,0,0,28,1,0,1131,5044.730000,11,4,2636.873376,hintandextended,nbiot,180 -on2,0,0,26,1,0,1128,4842.600000,11,3,2351.927876,hintandextended,nbiot,180 -on9,0,0,27,1,0,939,4863.861280,11,3,2283.095596,hintandextended,nbiot,180 -on1,0,0,24,1,0,34,4322.000000,11,0,1838.239876,hintandextended,nbiot,180 -on5,0,0,24,1,0,845,4322.000000,11,0,1877.650000,hintandextended,nbiot,180 -on10,0,0,24,1,0,720,4322.020640,11,0,1833.074964,hintandextended,nbiot,180 -on7,0,0,25,1,0,0,4502.979680,11,1,1923.431912,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4339.020320,11,0,2694.124752,hintandextended,nbiot,180 -on4,0,0,25,1,0,1620,4501.000000,11,1,1917.205000,hintandextended,nbiot,180 -on3,0,0,25,1,0,540,4504.030960,12,1,2020.305716,hintandextended,nbiot,180 -on10,0,0,24,1,0,366,4322.000000,12,0,1903.909792,hintandextended,nbiot,180 -on5,0,0,24,1,0,900,4321.010320,12,0,1870.760836,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4321.000000,12,0,1814.466708,hintandextended,nbiot,180 -on9,0,0,26,1,0,514,4682.210000,12,2,2075.943792,hintandextended,nbiot,180 -on2,0,0,26,1,0,913,4684.999680,12,2,2233.671496,hintandextended,nbiot,180 -on6,0,0,25,1,0,113,4501.010320,12,1,1940.687336,hintandextended,nbiot,180 -on4,0,0,26,1,0,555,4682.600000,12,2,2162.296708,hintandextended,nbiot,180 -on11,0,0,24,1,0,2456,4321.000000,12,0,1770.000000,hintandextended,nbiot,180 -on1,0,0,24,1,0,849,4346.000000,12,1,1961.609792,hintandextended,nbiot,180 -on8,0,0,26,1,0,700,4681.320320,12,2,2104.844628,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,12,0,2777.106708,hintandextended,nbiot,180 -on7,0,0,26,1,0,571,4682.720320,13,2,2081.309544,hintandextended,nbiot,180 -on3,0,0,24,1,0,2011,4355.600000,13,1,2108.593416,hintandextended,nbiot,180 -on4,0,0,25,1,0,318,4502.300000,13,1,2046.483500,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4380.589680,13,1,1870.127828,hintandextended,nbiot,180 -on2,0,0,26,1,0,803,4852.130320,13,4,2251.545004,hintandextended,nbiot,180 -on10,0,0,26,1,0,486,4682.289680,13,2,2054.902456,hintandextended,nbiot,180 -on9,0,0,24,1,0,438,4321.989680,13,0,1794.452580,hintandextended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,hintandextended,nbiot,180 -on8,0,0,24,1,0,3,4324.000000,13,0,2074.886708,hintandextended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,13,0,1728.000000,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,13,0,3072.850000,hintandextended,nbiot,180 -on1,0,0,25,1,0,452,4505.020640,13,1,2107.989880,hintandextended,nbiot,180 -on8,0,0,25,1,0,361,4504.000000,14,1,2142.939752,hintandextended,nbiot,180 -on7,0,0,25,1,0,406,4501.420320,14,1,1917.386128,hintandextended,nbiot,180 -on9,0,0,26,1,0,654,4682.600000,14,2,2215.453500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,14,0,2437.806708,hintandextended,nbiot,180 -on3,0,0,25,1,0,0,4500.630640,14,1,1826.473880,hintandextended,nbiot,180 -on1,0,0,25,1,0,180,4503.630320,14,1,2010.368836,hintandextended,nbiot,180 -on4,0,0,26,1,0,562,4740.569040,14,4,2068.491032,hintandextended,nbiot,180 -on11,0,0,25,1,0,1019,4501.000000,14,1,1917.406500,hintandextended,nbiot,180 -on2,0,0,25,1,0,472,4502.300000,14,1,2025.618292,hintandextended,nbiot,180 -on10,0,0,26,1,0,708,4695.300000,14,3,2186.277876,hintandextended,nbiot,180 -on6,0,0,25,1,0,668,4501.269040,14,1,1852.514324,hintandextended,nbiot,180 -on5,0,0,27,1,0,712,5035.200000,14,4,2631.826168,hintandextended,nbiot,180 -on3,0,0,25,1,0,1013,4502.051600,15,1,2059.800556,hintandextended,nbiot,180 -on5,0,0,28,1,0,1399,5042.200000,15,4,2369.218168,hintandextended,nbiot,180 -on1,0,0,24,1,0,958,4321.000000,15,1,1784.300000,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4320.010320,15,0,1754.010836,hintandextended,nbiot,180 -on7,0,0,26,1,0,806,4683.430000,15,2,2094.644584,hintandextended,nbiot,180 -on4,0,0,26,1,0,1270,4682.110000,15,2,2276.747084,hintandextended,nbiot,180 -on11,0,0,24,1,0,540,4323.000000,15,0,1954.353292,hintandextended,nbiot,180 -on9,0,0,26,1,0,717,4683.000000,15,3,2011.299832,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,15,0,2362.160124,hintandextended,nbiot,180 -on8,0,0,24,1,0,1154,4322.300000,15,2,2029.746500,hintandextended,nbiot,180 -on2,0,0,28,1,0,1067,5042.610320,15,4,2318.260420,hintandextended,nbiot,180 -on10,0,0,24,1,0,774,4322.000000,15,0,1884.156708,hintandextended,nbiot,180 -on7,0,0,24,1,0,1108,4433.289680,16,1,2106.395996,hintandextended,nbiot,180 -on3,0,0,24,1,0,1371,4322.000000,16,0,1888.563292,hintandextended,nbiot,180 -on8,0,0,25,1,0,900,4502.020320,16,1,2030.271336,hintandextended,nbiot,180 -on10,0,0,25,1,0,198,4504.630960,16,1,2161.510800,hintandextended,nbiot,180 -on5,0,0,24,1,0,1515,4320.010320,16,1,1754.017336,hintandextended,nbiot,180 -on1,0,0,26,1,0,1445,4682.559040,16,2,2103.338532,hintandextended,nbiot,180 -on11,0,0,25,1,0,526,4503.310640,16,1,2062.904380,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,16,0,2994.206708,hintandextended,nbiot,180 -on2,0,0,25,1,0,2993,4502.000000,16,1,1952.250000,hintandextended,nbiot,180 -on9,0,0,24,1,0,81,4322.020320,16,0,1898.471336,hintandextended,nbiot,180 -on4,0,0,24,1,0,180,4321.000000,16,0,1845.003292,hintandextended,nbiot,180 -on6,0,0,25,1,0,1553,4503.979360,16,1,1964.768368,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,17,0,2558.706708,hintandextended,nbiot,180 -on6,0,0,25,1,0,949,4501.300000,17,1,1984.144792,hintandextended,nbiot,180 -on5,0,0,28,1,0,1242,5043.800000,17,4,2763.621876,hintandextended,nbiot,180 -on11,0,0,25,1,0,728,4502.000000,17,1,1891.625124,hintandextended,nbiot,180 -on1,0,0,25,1,0,653,4501.210000,17,1,1917.093792,hintandextended,nbiot,180 -on2,0,0,23,1,0,1284,4323.000000,17,1,1845.556500,hintandextended,nbiot,180 -on10,0,0,26,1,0,987,4683.000000,17,2,2162.456292,hintandextended,nbiot,180 -on3,0,0,24,1,0,180,4322.051600,17,0,1881.590764,hintandextended,nbiot,180 -on7,0,0,26,1,0,1226,4684.217440,17,2,2047.770392,hintandextended,nbiot,180 -on8,0,0,25,1,0,1038,4503.020000,17,1,2149.036000,hintandextended,nbiot,180 -on4,0,0,23,1,0,497,4318.010320,17,0,1821.720836,hintandextended,nbiot,180 -on9,0,0,25,1,0,1465,4562.010000,17,2,1915.803584,hintandextended,nbiot,180 -on3,0,0,26,1,0,317,4719.591280,18,4,2033.417844,hintandextended,nbiot,180 -on5,0,0,28,1,0,440,5071.710000,18,5,2712.924960,hintandextended,nbiot,180 -on8,0,0,25,1,0,0,4504.000000,18,1,2010.321708,hintandextended,nbiot,180 -on1,0,0,25,1,0,515,4501.180000,18,1,1891.919876,hintandextended,nbiot,180 -on10,0,0,26,1,0,962,4682.600000,18,3,2203.896292,hintandextended,nbiot,180 -on4,0,0,28,1,0,845,5042.600000,18,5,2371.296084,hintandextended,nbiot,180 -on2,0,0,26,1,0,269,4681.300000,18,2,2076.873292,hintandextended,nbiot,180 -on7,0,0,24,1,0,113,4395.220000,18,1,1923.396000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,18,0,2370.856708,hintandextended,nbiot,180 -on6,0,0,28,1,0,501,5043.200000,18,4,2564.507668,hintandextended,nbiot,180 -on11,0,0,25,1,0,153,4501.229040,18,1,1827.356324,hintandextended,nbiot,180 -on9,0,0,26,1,0,285,4682.889680,18,2,2248.335664,hintandextended,nbiot,180 -on7,0,0,24,1,0,1493,4321.990000,19,0,1871.159208,hintandextended,nbiot,180 -on3,0,0,26,1,0,74,4684.248400,19,2,2046.729152,hintandextended,nbiot,180 -on10,0,0,24,1,0,0,4321.000000,19,0,1788.720000,hintandextended,nbiot,180 -on11,0,0,27,1,0,395,4861.989360,19,3,2246.233868,hintandextended,nbiot,180 -on6,0,0,25,1,0,318,4515.692880,19,2,1925.247068,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4345.030640,19,0,2683.145380,hintandextended,nbiot,180 -on1,0,0,25,1,0,720,4502.979040,19,1,1943.568240,hintandextended,nbiot,180 -on8,0,0,24,1,0,499,4320.020640,19,0,1754.028172,hintandextended,nbiot,180 -on9,0,0,25,1,0,761,4502.300000,19,1,2109.800000,hintandextended,nbiot,180 -on5,0,0,24,1,0,195,4321.979360,19,0,1835.398452,hintandextended,nbiot,180 -on2,0,0,25,1,0,349,4678.969680,19,3,2286.722540,hintandextended,nbiot,180 -on4,0,0,25,1,0,1440,4502.000000,19,1,1979.550000,hintandextended,nbiot,180 -on8,0,0,25,1,0,1467,4503.289680,20,1,2043.135996,hintandextended,nbiot,180 -on6,0,0,25,1,0,1156,4505.279360,20,1,2110.881452,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,20,0,3774.206708,hintandextended,nbiot,180 -on2,0,0,26,1,0,1233,4684.289680,20,2,2271.515872,hintandextended,nbiot,180 -on10,0,0,25,1,0,720,4504.969040,20,1,2142.471032,hintandextended,nbiot,180 -on5,0,0,25,1,0,742,4504.320640,20,1,2284.294964,hintandextended,nbiot,180 -on11,0,0,27,1,0,1028,4866.558720,20,3,2445.213528,hintandextended,nbiot,180 -on1,0,0,24,1,0,360,4324.020640,20,0,1990.935088,hintandextended,nbiot,180 -on4,0,0,25,1,0,651,4502.279360,20,1,1903.625160,hintandextended,nbiot,180 -on3,0,0,24,1,0,1766,4326.010320,20,0,1756.410836,hintandextended,nbiot,180 -on9,0,0,25,1,0,3853,4501.300000,20,1,1987.070000,hintandextended,nbiot,180 -on7,0,0,24,1,0,358,4362.030960,20,0,1994.439216,hintandextended,nbiot,180 -on3,0,0,26,1,0,894,4685.589040,21,2,2221.577364,hintandextended,nbiot,180 -on4,0,0,25,1,0,330,4503.310320,21,1,2140.097420,hintandextended,nbiot,180 -on10,0,0,25,1,0,535,4503.180000,21,1,2146.934876,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4357.010320,21,0,3144.867544,hintandextended,nbiot,180 -on7,0,0,24,1,0,3260,4321.000000,21,0,1832.400000,hintandextended,nbiot,180 -on8,0,0,26,1,0,525,4683.530320,21,2,2313.462128,hintandextended,nbiot,180 -on6,0,0,25,1,0,1013,4502.989680,21,1,1976.715788,hintandextended,nbiot,180 -on1,0,0,25,1,0,894,4502.000000,21,1,1940.368000,hintandextended,nbiot,180 -on5,0,0,24,1,0,0,4321.030960,21,0,1869.735800,hintandextended,nbiot,180 -on2,0,0,25,1,0,1191,4500.310320,21,1,1870.980836,hintandextended,nbiot,180 -on9,0,0,26,1,0,522,4682.138720,21,2,1899.740112,hintandextended,nbiot,180 -on11,0,0,24,1,0,33,4322.630640,21,0,1920.815672,hintandextended,nbiot,180 -on7,0,0,25,1,0,1674,4501.540960,22,1,1946.366300,hintandextended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,22,0,1728.000000,hintandextended,nbiot,180 -on6,0,0,24,1,0,1440,4323.989680,22,0,2078.262580,hintandextended,nbiot,180 -on4,0,0,24,1,0,180,4321.010320,22,0,1767.417544,hintandextended,nbiot,180 -on5,0,0,24,1,0,62,4320.000000,22,0,1754.006708,hintandextended,nbiot,180 -on1,0,0,24,1,0,564,4322.030960,22,0,1986.492508,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4334.030960,22,0,3479.532508,hintandextended,nbiot,180 -on9,0,0,24,1,0,1260,4322.989680,22,0,1863.765996,hintandextended,nbiot,180 -on8,0,0,25,1,0,4065,4500.300000,22,1,1874.876500,hintandextended,nbiot,180 -on3,0,0,24,1,0,898,4363.010320,22,0,2020.830960,hintandextended,nbiot,180 -on2,0,0,25,1,0,3042,4500.020320,22,1,1826.021336,hintandextended,nbiot,180 -on11,0,0,24,1,0,540,4320.030960,22,0,1754.032508,hintandextended,nbiot,180 -on9,0,0,27,1,0,556,4862.600000,23,3,2358.888084,hintandextended,nbiot,180 -on10,0,0,27,1,0,419,4863.269040,23,3,2242.220492,hintandextended,nbiot,180 -on1,0,0,25,1,0,30,4502.948400,23,1,1954.702444,hintandextended,nbiot,180 -on6,0,0,25,1,0,477,4501.010000,23,1,1916.760500,hintandextended,nbiot,180 -on8,0,0,26,1,0,279,4683.600000,23,2,2355.083292,hintandextended,nbiot,180 -on11,0,0,25,1,0,15,4502.300000,23,1,2079.373292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,23,0,2248.410124,hintandextended,nbiot,180 -on2,0,0,25,1,0,266,4501.000000,23,1,1891.393084,hintandextended,nbiot,180 -on3,0,0,24,1,0,118,4322.000000,23,0,1883.369792,hintandextended,nbiot,180 -on4,0,0,25,1,0,9,4502.041280,23,1,1878.895136,hintandextended,nbiot,180 -on7,0,0,26,1,0,398,4759.341280,23,4,2192.369636,hintandextended,nbiot,180 -on5,0,0,27,1,0,377,4863.200000,23,3,2592.269668,hintandextended,nbiot,180 -on2,0,0,24,1,0,1923,4322.010320,24,0,1889.627544,hintandextended,nbiot,180 -on10,0,0,25,1,0,2880,4503.000000,24,1,1995.569916,hintandextended,nbiot,180 -on6,0,0,24,1,0,540,4431.641280,24,1,2065.371636,hintandextended,nbiot,180 -on3,0,0,24,1,0,1440,4321.010320,24,0,1870.760836,hintandextended,nbiot,180 -on11,0,0,24,1,0,261,4320.010320,24,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,25,1,0,3240,4502.000000,24,1,1969.605000,hintandextended,nbiot,180 -on1,0,0,24,1,0,1103,4321.979360,24,0,1754.811868,hintandextended,nbiot,180 -on8,0,0,24,1,0,370,4321.000000,24,0,1815.103292,hintandextended,nbiot,180 -on5,0,0,25,1,0,360,4508.610320,24,1,2416.472752,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,24,0,3155.153416,hintandextended,nbiot,180 -on7,0,0,25,1,0,1374,4503.000000,24,1,1916.269916,hintandextended,nbiot,180 -on4,0,0,25,1,0,2103,4502.000000,24,1,1967.213208,hintandextended,nbiot,180 -on3,0,0,24,1,0,0,4320.020640,25,0,1754.021672,hintandextended,nbiot,180 -on4,0,0,26,1,0,874,4680.610320,25,2,2105.600628,hintandextended,nbiot,180 -on2,0,0,25,1,0,540,4504.630960,25,1,2077.524300,hintandextended,nbiot,180 -on1,0,0,25,1,0,332,4501.000000,25,1,1917.861292,hintandextended,nbiot,180 -on6,0,0,24,1,0,767,4321.000000,25,0,1814.850000,hintandextended,nbiot,180 -on9,0,0,26,1,0,343,4681.358720,25,2,1898.765112,hintandextended,nbiot,180 -on8,0,0,24,1,0,122,4321.000000,25,0,1870.100208,hintandextended,nbiot,180 -on11,0,0,24,1,0,540,4322.000000,25,0,1803.413292,hintandextended,nbiot,180 -on7,0,0,24,1,0,720,4320.010320,25,0,1754.010836,hintandextended,nbiot,180 -on0,1,11,23,0,0,0,4342.630960,25,0,2461.972424,hintandextended,nbiot,180 -on5,0,0,24,1,0,1620,4376.000000,25,2,1867.205000,hintandextended,nbiot,180 -on10,0,0,24,1,0,360,4320.010320,25,0,1754.010836,hintandextended,nbiot,180 -on11,0,0,24,1,0,26,4323.000000,26,0,1900.040124,hintandextended,nbiot,180 -on7,0,0,26,1,0,694,4682.327760,26,2,1899.159436,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.010320,26,0,3612.360836,hintandextended,nbiot,180 -on10,0,0,24,1,0,586,4322.989680,26,0,1850.362580,hintandextended,nbiot,180 -on6,0,0,25,1,0,2340,4504.010320,26,1,2057.282668,hintandextended,nbiot,180 -on8,0,0,24,1,0,2340,4323.979360,26,0,1938.501744,hintandextended,nbiot,180 -on3,0,0,25,1,0,1227,4502.010000,26,1,1917.823916,hintandextended,nbiot,180 -on1,0,0,24,1,0,3023,4326.010320,26,0,2002.117544,hintandextended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,26,0,1728.000000,hintandextended,nbiot,180 -on2,0,0,25,1,0,3600,4501.989680,26,1,1913.902580,hintandextended,nbiot,180 -on9,0,0,25,1,0,293,4500.220320,26,1,1826.101336,hintandextended,nbiot,180 -on5,0,0,24,1,0,947,4322.979360,26,0,1870.521868,hintandextended,nbiot,180 -on5,0,0,25,1,0,1260,4501.661600,27,2,1888.642972,hintandextended,nbiot,180 -on1,0,0,24,1,0,360,4322.000000,27,0,1912.353292,hintandextended,nbiot,180 -on7,0,0,25,1,0,398,4501.020640,27,1,1892.116548,hintandextended,nbiot,180 -on8,0,0,25,1,0,473,4502.000000,27,1,1978.913208,hintandextended,nbiot,180 -on2,0,0,24,1,0,1283,4322.010320,27,0,1901.971044,hintandextended,nbiot,180 -on10,0,0,25,1,0,331,4500.010320,27,1,1826.017336,hintandextended,nbiot,180 -on4,0,0,24,1,0,1805,4320.000000,27,0,1754.006708,hintandextended,nbiot,180 -on6,0,0,25,1,0,2160,4502.000000,27,1,2032.005000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4351.630960,27,0,2888.715924,hintandextended,nbiot,180 -on3,0,0,25,1,0,0,4503.620640,27,1,2007.973380,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4323.000000,27,0,2010.110084,hintandextended,nbiot,180 -on11,0,0,25,1,0,389,4503.979360,27,1,1931.916744,hintandextended,nbiot,180 -on1,0,0,25,1,0,1980,4505.599680,28,2,2061.174912,hintandextended,nbiot,180 -on8,0,0,24,1,0,540,4322.000000,28,0,1871.170124,hintandextended,nbiot,180 -on3,0,0,24,1,0,1528,4321.000000,28,0,1768.056708,hintandextended,nbiot,180 -on5,0,0,24,1,0,781,4321.979360,28,0,1805.751744,hintandextended,nbiot,180 -on7,0,0,24,1,0,1013,4480.000000,28,1,1818.013208,hintandextended,nbiot,180 -on9,0,0,25,1,0,360,4504.010320,28,1,2011.242544,hintandextended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,28,0,1728.000000,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4328.620640,28,0,3098.151672,hintandextended,nbiot,180 -on10,0,0,25,1,0,1800,4502.620640,28,1,2055.660172,hintandextended,nbiot,180 -on4,0,0,25,1,0,484,4501.020640,28,1,1939.774964,hintandextended,nbiot,180 -on11,0,0,25,1,0,778,4503.300000,28,1,2125.150000,hintandextended,nbiot,180 -on6,0,0,26,1,0,693,4684.548080,28,2,2131.960856,hintandextended,nbiot,180 -on11,0,0,25,1,0,685,4504.989680,29,1,2213.322372,hintandextended,nbiot,180 -on1,0,0,24,1,0,1332,4322.989680,29,0,1896.772372,hintandextended,nbiot,180 -on6,0,0,24,1,0,345,4345.989680,29,0,1764.409288,hintandextended,nbiot,180 -on8,0,0,26,1,0,1355,4685.858720,29,2,2366.810112,hintandextended,nbiot,180 -on7,0,0,25,1,0,452,4501.989680,29,1,1942.704496,hintandextended,nbiot,180 -on4,0,0,23,1,0,2999,4321.000000,29,0,1870.756708,hintandextended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,29,0,1728.000000,hintandextended,nbiot,180 -on2,0,0,26,1,0,722,4683.507760,29,2,1988.232936,hintandextended,nbiot,180 -on5,0,0,24,1,0,536,4359.020640,29,0,2001.028380,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,29,0,3520.700000,hintandextended,nbiot,180 -on3,0,0,25,1,0,868,4502.310320,29,1,2093.834044,hintandextended,nbiot,180 -on10,0,0,26,1,0,1414,4682.979360,29,2,1986.968368,hintandextended,nbiot,180 -on1,0,0,24,1,0,180,4321.000000,30,0,1843.963292,hintandextended,nbiot,180 -on11,0,0,24,1,0,1800,4320.010320,30,0,1754.010836,hintandextended,nbiot,180 -on10,0,0,25,1,0,720,4501.641280,30,1,1844.428344,hintandextended,nbiot,180 -on6,0,0,25,1,0,648,4502.289680,30,1,1921.952372,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4339.010320,30,0,2870.510836,hintandextended,nbiot,180 -on2,0,0,24,1,0,138,4320.010320,30,0,1754.010836,hintandextended,nbiot,180 -on3,0,0,24,1,0,280,4321.020640,30,0,1754.421672,hintandextended,nbiot,180 -on8,0,0,26,1,0,516,4682.300000,30,2,2218.349708,hintandextended,nbiot,180 -on7,0,0,26,1,0,596,4684.889680,30,2,2481.309164,hintandextended,nbiot,180 -on5,0,0,25,1,0,199,4505.199680,30,1,2070.998288,hintandextended,nbiot,180 -on9,0,0,25,1,0,1058,4501.000000,30,1,1917.406500,hintandextended,nbiot,180 -on4,0,0,25,1,0,293,4503.000000,30,1,1951.623416,hintandextended,nbiot,180 -on11,0,0,24,1,0,720,4322.000000,31,0,1887.393500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4382.020640,31,0,2415.178380,hintandextended,nbiot,180 -on10,0,0,25,1,0,473,4501.010320,31,1,1942.767336,hintandextended,nbiot,180 -on4,0,0,26,1,0,1079,4683.989680,31,2,2043.727496,hintandextended,nbiot,180 -on5,0,0,25,1,0,1061,4502.220000,31,1,2033.659292,hintandextended,nbiot,180 -on8,0,0,24,1,0,360,4321.000000,31,0,1826.166708,hintandextended,nbiot,180 -on7,0,0,25,1,0,320,4502.630960,31,1,2030.320800,hintandextended,nbiot,180 -on9,0,0,24,1,0,901,4410.410320,31,1,1790.177544,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4320.010320,31,0,1754.010836,hintandextended,nbiot,180 -on6,0,0,25,1,0,418,4500.310320,31,1,1884.760836,hintandextended,nbiot,180 -on3,0,0,24,1,0,315,4321.000000,31,0,1757.253292,hintandextended,nbiot,180 -on1,0,0,25,1,0,1195,4502.300000,31,1,2123.326500,hintandextended,nbiot,180 -on10,0,0,25,1,0,595,4500.310320,32,1,1886.314128,hintandextended,nbiot,180 -on11,0,0,24,1,0,1260,4321.000000,32,0,1783.000000,hintandextended,nbiot,180 -on1,0,0,24,1,0,2160,4321.010320,32,0,1849.310836,hintandextended,nbiot,180 -on5,0,0,24,1,0,1620,4321.000000,32,0,1760.776708,hintandextended,nbiot,180 -on8,0,0,24,1,0,540,4321.000000,32,0,1776.110000,hintandextended,nbiot,180 -on7,0,0,24,1,0,1603,4343.010320,32,0,1763.210836,hintandextended,nbiot,180 -on4,0,0,25,1,0,1800,4503.620640,32,1,2084.413380,hintandextended,nbiot,180 -on2,0,0,25,1,0,1624,4504.289680,32,1,2263.092372,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4361.641280,32,0,2604.373344,hintandextended,nbiot,180 -on6,0,0,24,1,0,419,4320.000000,32,0,1754.006708,hintandextended,nbiot,180 -on9,0,0,25,1,0,2328,4500.020320,32,1,1826.021336,hintandextended,nbiot,180 -on3,0,0,26,1,0,1773,4684.369040,32,2,2267.862740,hintandextended,nbiot,180 -on2,0,0,24,1,0,973,4320.989680,33,0,1754.402580,hintandextended,nbiot,180 -on9,0,0,25,1,0,1620,4504.738080,33,1,2006.873772,hintandextended,nbiot,180 -on7,0,0,25,1,0,1620,4502.020640,33,1,1928.279964,hintandextended,nbiot,180 -on5,0,0,24,1,0,1292,4320.989680,33,0,1754.409288,hintandextended,nbiot,180 -on3,0,0,24,1,0,327,4329.000000,33,0,1816.373416,hintandextended,nbiot,180 -on8,0,0,24,1,0,553,4321.989680,33,0,1836.955872,hintandextended,nbiot,180 -on4,0,0,25,1,0,473,4503.010320,33,1,2117.384044,hintandextended,nbiot,180 -on10,0,0,24,1,0,3240,4321.010320,33,0,1870.760836,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,33,0,3171.650000,hintandextended,nbiot,180 -on11,0,0,24,1,0,0,4320.010320,33,0,1754.010836,hintandextended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,33,0,1728.000000,hintandextended,nbiot,180 -on1,0,0,26,1,0,759,4682.358720,33,2,2015.515112,hintandextended,nbiot,180 -on6,0,0,27,1,0,871,4861.600000,34,3,2243.633084,hintandextended,nbiot,180 -on9,0,0,25,1,0,834,4504.989680,34,1,2121.425788,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4360.620640,34,0,3160.351672,hintandextended,nbiot,180 -on11,0,0,25,1,0,293,4504.000000,34,1,2128.173416,hintandextended,nbiot,180 -on7,0,0,24,1,0,180,4322.989680,34,0,1884.825996,hintandextended,nbiot,180 -on8,0,0,25,1,0,721,4504.410320,34,1,1928.547668,hintandextended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,34,0,1728.000000,hintandextended,nbiot,180 -on4,0,0,24,1,0,473,4456.979360,34,1,2029.421452,hintandextended,nbiot,180 -on3,0,0,24,1,0,1260,4324.989680,34,0,2025.765996,hintandextended,nbiot,180 -on2,0,0,26,1,0,1053,4685.499680,34,2,2389.676496,hintandextended,nbiot,180 -on10,0,0,26,1,0,695,4685.009680,34,2,2162.708496,hintandextended,nbiot,180 -on4,0,0,24,1,0,537,4359.010320,35,0,1980.217544,hintandextended,nbiot,180 -on2,0,0,27,1,0,840,4862.500000,35,3,2549.044584,hintandextended,nbiot,180 -on8,0,0,23,1,0,333,4254.979360,35,0,1728.005160,hintandextended,nbiot,180 -on1,0,0,24,1,0,363,4484.300000,35,2,2128.703168,hintandextended,nbiot,180 -on6,0,0,26,1,0,1006,4751.300000,35,3,2016.883000,hintandextended,nbiot,180 -on11,0,0,25,1,0,1048,4501.000000,35,1,1916.366292,hintandextended,nbiot,180 -on9,0,0,24,1,0,180,4321.000000,35,0,1775.466708,hintandextended,nbiot,180 -on10,0,0,25,1,0,358,4640.220000,35,2,2033.102500,hintandextended,nbiot,180 -on5,0,0,24,1,0,802,4322.000000,35,0,1907.160000,hintandextended,nbiot,180 -on7,0,0,26,1,0,333,4685.209680,35,2,2160.292080,hintandextended,nbiot,180 -on3,0,0,24,1,0,540,4495.379360,35,2,1969.316868,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,35,0,2339.006708,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4323.010320,36,0,3610.960836,hintandextended,nbiot,180 -on11,0,0,27,1,0,1747,4863.638080,36,3,2143.926856,hintandextended,nbiot,180 -on1,0,0,24,1,0,1444,4322.000000,36,0,1958.900000,hintandextended,nbiot,180 -on9,0,0,24,1,0,351,4354.969040,36,0,1884.364448,hintandextended,nbiot,180 -on4,0,0,25,1,0,34,4503.989680,36,1,1925.167580,hintandextended,nbiot,180 -on10,0,0,25,1,0,1743,4503.289680,36,1,2071.325872,hintandextended,nbiot,180 -on2,0,0,25,1,0,1260,4504.568720,36,2,1944.419236,hintandextended,nbiot,180 -on7,0,0,25,1,0,416,4500.010320,36,1,1826.017336,hintandextended,nbiot,180 -on8,0,0,23,1,0,3758,4299.000000,36,0,1821.000000,hintandextended,nbiot,180 -on5,0,0,25,1,0,0,4504.717440,36,1,2100.582100,hintandextended,nbiot,180 -on3,0,0,24,1,0,138,4322.000000,36,0,1755.716708,hintandextended,nbiot,180 -on6,0,0,24,1,0,360,4325.000000,36,0,1893.183540,hintandextended,nbiot,180 -on6,0,0,24,1,0,900,4373.630960,37,1,1775.667508,hintandextended,nbiot,180 -on7,0,0,24,1,0,180,4321.000000,37,0,1754.413416,hintandextended,nbiot,180 -on8,0,0,25,1,0,360,4503.000000,37,1,2002.525124,hintandextended,nbiot,180 -on2,0,0,26,1,0,604,4682.561280,37,2,2104.352804,hintandextended,nbiot,180 -on10,0,0,24,1,0,1440,4321.010320,37,0,1837.610836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4360.641280,37,0,2988.780052,hintandextended,nbiot,180 -on5,0,0,28,1,0,1004,5041.640640,37,4,2228.569256,hintandextended,nbiot,180 -on11,0,0,25,1,0,3183,4501.300000,37,1,1954.570000,hintandextended,nbiot,180 -on1,0,0,24,1,0,833,4378.020640,37,1,2019.931464,hintandextended,nbiot,180 -on4,0,0,25,1,0,565,4502.338080,37,2,1885.910356,hintandextended,nbiot,180 -on3,0,0,25,1,0,692,4570.309680,37,3,2043.286872,hintandextended,nbiot,180 -on9,0,0,25,1,0,473,4502.220000,37,1,1940.202708,hintandextended,nbiot,180 -on5,0,0,25,1,0,720,4506.000000,38,1,2233.941708,hintandextended,nbiot,180 -on4,0,0,25,1,0,2994,4500.310320,38,1,1942.487336,hintandextended,nbiot,180 -on10,0,0,24,1,0,773,4324.000000,38,0,1929.416708,hintandextended,nbiot,180 -on9,0,0,25,1,0,1065,4502.279360,38,1,1925.061744,hintandextended,nbiot,180 -on6,0,0,24,1,0,2744,4320.989680,38,0,1754.409288,hintandextended,nbiot,180 -on11,0,0,25,1,0,900,4502.389680,38,2,2031.270996,hintandextended,nbiot,180 -on1,0,0,24,1,0,1800,4320.989680,38,0,1754.409288,hintandextended,nbiot,180 -on3,0,0,24,1,0,729,4342.748400,38,1,1895.251068,hintandextended,nbiot,180 -on7,0,0,25,1,0,1554,4500.010320,38,1,1826.017336,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4342.261920,38,0,3359.475016,hintandextended,nbiot,180 -on2,0,0,26,1,0,1053,4683.320640,38,2,2163.501672,hintandextended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,38,0,1728.000000,hintandextended,nbiot,180 -on9,0,0,26,1,0,1593,4683.589360,39,2,2187.867368,hintandextended,nbiot,180 -on4,0,0,24,1,0,1733,4398.010320,39,1,2074.084044,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,39,0,3003.963416,hintandextended,nbiot,180 -on5,0,0,24,1,0,1341,4380.300000,39,1,1975.316584,hintandextended,nbiot,180 -on2,0,0,24,1,0,1420,4343.020640,39,0,1938.858380,hintandextended,nbiot,180 -on6,0,0,26,1,0,2909,4682.300000,39,2,2141.006416,hintandextended,nbiot,180 -on7,0,0,24,1,0,1205,4320.000000,39,0,1754.006708,hintandextended,nbiot,180 -on10,0,0,25,1,0,293,4504.220320,39,1,2026.628168,hintandextended,nbiot,180 -on1,0,0,25,1,0,3057,4501.000000,39,1,1916.366292,hintandextended,nbiot,180 -on8,0,0,26,1,0,3175,4681.500000,39,2,2054.586584,hintandextended,nbiot,180 -on11,0,0,24,1,0,18,4324.000000,39,0,1809.180124,hintandextended,nbiot,180 -on3,0,0,25,1,0,3060,4501.000000,39,1,1917.393292,hintandextended,nbiot,180 -on9,0,0,24,1,0,2978,4383.300000,40,1,1926.090000,hintandextended,nbiot,180 -on3,0,0,26,1,0,627,4683.138080,40,2,1926.581856,hintandextended,nbiot,180 -on2,0,0,24,1,0,604,4322.010320,40,0,1918.480628,hintandextended,nbiot,180 -on7,0,0,24,1,0,1308,4320.010320,40,0,1754.010836,hintandextended,nbiot,180 -on10,0,0,24,1,0,151,4334.041280,40,0,1959.193344,hintandextended,nbiot,180 -on11,0,0,25,1,0,1175,4503.310320,40,1,2163.004252,hintandextended,nbiot,180 -on4,0,0,26,1,0,517,4681.900000,40,2,2311.366584,hintandextended,nbiot,180 -on6,0,0,24,1,0,360,4322.000000,40,0,1868.823416,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4355.010320,40,0,3164.867544,hintandextended,nbiot,180 -on1,0,0,24,1,0,0,4324.020640,40,0,1997.695088,hintandextended,nbiot,180 -on8,0,0,24,1,0,1440,4321.000000,40,0,1823.950000,hintandextended,nbiot,180 -on5,0,0,25,1,0,820,4503.289680,40,2,1913.785788,hintandextended,nbiot,180 -on5,0,0,26,1,0,873,4682.969040,41,2,2099.407324,hintandextended,nbiot,180 -on8,0,0,26,1,0,693,4683.210000,41,2,2080.640292,hintandextended,nbiot,180 -on11,0,0,24,1,0,720,4320.010320,41,0,1754.010836,hintandextended,nbiot,180 -on1,0,0,24,1,0,56,4445.010320,41,1,1804.219252,hintandextended,nbiot,180 -on9,0,0,24,1,0,619,4323.990000,41,0,2002.869208,hintandextended,nbiot,180 -on7,0,0,26,1,0,808,4681.610320,41,2,2189.454128,hintandextended,nbiot,180 -on10,0,0,25,1,0,1080,4502.000000,41,1,1942.500000,hintandextended,nbiot,180 -on6,0,0,24,1,0,117,4321.000000,41,0,1768.953292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,41,0,2518.413208,hintandextended,nbiot,180 -on4,0,0,25,1,0,731,4501.300000,41,1,2026.713292,hintandextended,nbiot,180 -on2,0,0,25,1,0,360,4503.630960,41,1,2070.357384,hintandextended,nbiot,180 -on3,0,0,24,1,0,385,4322.000000,41,0,1833.313292,hintandextended,nbiot,180 -on6,0,0,25,1,0,504,4505.979360,42,1,2210.214952,hintandextended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hintandextended,nbiot,180 -on3,0,0,24,1,0,1620,4320.010320,42,0,1754.010836,hintandextended,nbiot,180 -on5,0,0,26,1,0,4020,4680.900000,42,2,2190.866500,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4358.010320,42,0,3714.660836,hintandextended,nbiot,180 -on11,0,0,24,1,0,2880,4322.000000,42,0,1840.606708,hintandextended,nbiot,180 -on8,0,0,25,1,0,978,4503.269040,42,1,2008.937740,hintandextended,nbiot,180 -on10,0,0,25,1,0,766,4503.220320,42,1,2004.114752,hintandextended,nbiot,180 -on7,0,0,26,1,0,580,4686.687120,42,2,2003.883304,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4324.620640,42,1,1959.780088,hintandextended,nbiot,180 -on2,0,0,24,1,0,219,4324.989680,42,0,2003.925996,hintandextended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,42,0,1728.000000,hintandextended,nbiot,180 -on8,0,0,24,1,0,1082,4322.000000,43,0,1957.209792,hintandextended,nbiot,180 -on9,0,0,25,1,0,2340,4501.620640,43,1,1850.906672,hintandextended,nbiot,180 -on2,0,0,26,1,0,1054,4684.510000,43,2,2238.928708,hintandextended,nbiot,180 -on7,0,0,24,1,0,38,4323.969040,43,0,1890.801240,hintandextended,nbiot,180 -on6,0,0,25,1,0,3060,4501.020320,43,1,1870.621336,hintandextended,nbiot,180 -on4,0,0,25,1,0,896,4502.220000,43,1,2021.049292,hintandextended,nbiot,180 -on11,0,0,26,1,0,888,4681.979360,43,2,1939.813244,hintandextended,nbiot,180 -on1,0,0,25,1,0,720,4501.779360,43,1,1943.283576,hintandextended,nbiot,180 -on10,0,0,26,1,0,1327,4680.630960,43,2,2061.935592,hintandextended,nbiot,180 -on3,0,0,24,1,0,527,4349.000000,43,0,1881.963416,hintandextended,nbiot,180 -on5,0,0,24,1,0,703,4343.010320,43,0,1763.210836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4353.020320,43,0,3091.271336,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,44,0,3674.093292,hintandextended,nbiot,180 -on10,0,0,24,1,0,180,4325.989680,44,0,2069.332912,hintandextended,nbiot,180 -on2,0,0,24,1,0,1255,4445.358720,44,2,1852.471820,hintandextended,nbiot,180 -on1,0,0,26,1,0,514,4682.560960,44,2,2122.624176,hintandextended,nbiot,180 -on8,0,0,25,1,0,1039,4505.300000,44,1,2288.573292,hintandextended,nbiot,180 -on3,0,0,24,1,0,975,4323.010320,44,0,1975.820836,hintandextended,nbiot,180 -on9,0,0,24,1,0,1620,4320.010320,44,0,1754.010836,hintandextended,nbiot,180 -on4,0,0,26,1,0,523,4685.289680,44,3,2198.779536,hintandextended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,44,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,25,1,0,2994,4500.010320,44,1,1826.017336,hintandextended,nbiot,180 -on7,0,0,25,1,0,488,4501.000000,44,1,1917.608000,hintandextended,nbiot,180 -on6,0,0,26,1,0,514,4685.958720,44,2,2103.918196,hintandextended,nbiot,180 -on4,0,0,25,1,0,771,4502.289680,45,1,1981.232372,hintandextended,nbiot,180 -on6,0,0,24,1,0,540,4322.000000,45,0,1923.930000,hintandextended,nbiot,180 -on11,0,0,24,1,0,1080,4322.010320,45,0,1805.770836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4331.010320,45,0,2951.167544,hintandextended,nbiot,180 -on2,0,0,25,1,0,350,4532.610320,45,1,1839.265960,hintandextended,nbiot,180 -on1,0,0,24,1,0,2061,4321.000000,45,0,1792.750000,hintandextended,nbiot,180 -on10,0,0,26,1,0,710,4684.300000,45,2,2348.103000,hintandextended,nbiot,180 -on9,0,0,24,1,0,205,4321.000000,45,0,1828.753292,hintandextended,nbiot,180 -on8,0,0,24,1,0,172,4353.000000,45,0,1767.213416,hintandextended,nbiot,180 -on5,0,0,24,1,0,1396,4321.000000,45,0,1756.603292,hintandextended,nbiot,180 -on7,0,0,26,1,0,985,4681.500000,45,2,2031.200000,hintandextended,nbiot,180 -on3,0,0,26,1,0,1413,4683.369040,45,2,2052.325948,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,46,0,3408.913208,hintandextended,nbiot,180 -on8,0,0,24,1,0,3385,4325.010320,46,0,1756.010836,hintandextended,nbiot,180 -on5,0,0,25,1,0,1674,4503.310320,46,1,2202.257544,hintandextended,nbiot,180 -on10,0,0,24,1,0,207,4322.010320,46,0,1792.530960,hintandextended,nbiot,180 -on6,0,0,25,1,0,3600,4502.000000,46,1,1944.450000,hintandextended,nbiot,180 -on1,0,0,24,1,0,3420,4359.000000,46,1,1996.898500,hintandextended,nbiot,180 -on2,0,0,25,1,0,2994,4501.000000,46,1,1917.406500,hintandextended,nbiot,180 -on11,0,0,24,1,0,900,4320.030960,46,0,1754.025800,hintandextended,nbiot,180 -on3,0,0,25,1,0,1080,4502.958720,46,1,1913.010320,hintandextended,nbiot,180 -on9,0,0,24,1,0,71,4321.989680,46,0,1829.169288,hintandextended,nbiot,180 -on4,0,0,24,1,0,1080,4323.020640,46,0,1932.294880,hintandextended,nbiot,180 -on7,0,0,25,1,0,2273,4502.989680,46,1,2059.909288,hintandextended,nbiot,180 -on1,0,0,24,1,0,360,4321.010320,47,0,1758.317544,hintandextended,nbiot,180 -on3,0,0,24,1,0,0,4321.010320,47,0,1867.114128,hintandextended,nbiot,180 -on6,0,0,24,1,0,1315,4389.310320,47,1,2002.737544,hintandextended,nbiot,180 -on4,0,0,24,1,0,846,4322.989680,47,0,1879.215872,hintandextended,nbiot,180 -on5,0,0,24,1,0,966,4321.000000,47,0,1801.850000,hintandextended,nbiot,180 -on11,0,0,24,1,0,1749,4321.000000,47,0,1761.550000,hintandextended,nbiot,180 -on8,0,0,25,1,0,929,4503.300000,47,1,2205.216584,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4379.630960,47,0,2446.469216,hintandextended,nbiot,180 -on9,0,0,25,1,0,1080,4501.410000,47,2,1906.735832,hintandextended,nbiot,180 -on2,0,0,26,1,0,1062,4683.969040,47,2,2204.443908,hintandextended,nbiot,180 -on10,0,0,25,1,0,1080,4502.620640,47,1,1998.473380,hintandextended,nbiot,180 -on7,0,0,25,1,0,782,4501.000000,47,1,1888.345000,hintandextended,nbiot,180 -on2,0,0,23,1,0,435,4266.989680,48,1,1848.125788,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,48,0,2585.740208,hintandextended,nbiot,180 -on6,0,0,26,1,0,986,4681.579040,48,2,1940.453240,hintandextended,nbiot,180 -on4,0,0,24,1,0,207,4458.630960,48,1,2002.320800,hintandextended,nbiot,180 -on9,0,0,25,1,0,834,4502.289680,48,1,2033.875872,hintandextended,nbiot,180 -on11,0,0,24,1,0,1260,4321.000000,48,0,1772.606708,hintandextended,nbiot,180 -on7,0,0,24,1,0,294,4323.000000,48,0,1981.249876,hintandextended,nbiot,180 -on5,0,0,24,1,0,548,4323.000000,48,0,2068.609876,hintandextended,nbiot,180 -on3,0,0,24,1,0,1620,4321.000000,48,0,1845.400000,hintandextended,nbiot,180 -on8,0,0,25,1,0,653,4503.000000,48,1,2047.823208,hintandextended,nbiot,180 -on10,0,0,26,1,0,753,4684.210000,48,2,2251.548916,hintandextended,nbiot,180 -on1,0,0,24,1,0,541,4493.979360,48,1,2067.868452,hintandextended,nbiot,180 -on3,0,0,25,1,0,303,4502.000000,49,1,2032.076500,hintandextended,nbiot,180 -on7,0,0,24,1,0,804,4323.989680,49,0,1915.509288,hintandextended,nbiot,180 -on11,0,0,25,1,0,102,4502.651600,49,1,2033.195764,hintandextended,nbiot,180 -on6,0,0,26,1,0,693,4681.338080,49,2,1898.750356,hintandextended,nbiot,180 -on10,0,0,25,1,0,212,4503.220320,49,1,2060.203252,hintandextended,nbiot,180 -on1,0,0,25,1,0,487,4502.300000,49,1,2006.579792,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,49,0,3076.106708,hintandextended,nbiot,180 -on5,0,0,24,1,0,900,4321.010320,49,0,1784.317544,hintandextended,nbiot,180 -on8,0,0,24,1,0,89,4322.989680,49,0,1904.305872,hintandextended,nbiot,180 -on4,0,0,25,1,0,180,4503.020640,49,2,2057.379964,hintandextended,nbiot,180 -on9,0,0,24,1,0,1080,4323.000000,49,0,1880.663416,hintandextended,nbiot,180 -on2,0,0,24,1,0,3060,4321.000000,49,0,1845.400000,hintandextended,nbiot,180 -on4,0,0,25,1,0,1738,4501.190000,50,1,1917.482500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4323.010320,50,0,2580.067544,hintandextended,nbiot,180 -on2,0,0,24,1,0,24,4321.010320,50,0,1811.870836,hintandextended,nbiot,180 -on3,0,0,25,1,0,180,4504.989680,50,1,2027.662456,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4321.000000,50,0,1809.260000,hintandextended,nbiot,180 -on1,0,0,25,1,0,707,4501.000000,50,1,1916.756500,hintandextended,nbiot,180 -on5,0,0,26,1,0,513,4683.179040,50,2,2046.177908,hintandextended,nbiot,180 -on10,0,0,27,1,0,651,4863.910320,50,3,2477.140628,hintandextended,nbiot,180 -on9,0,0,24,1,0,45,4321.989680,50,0,1816.155872,hintandextended,nbiot,180 -on8,0,0,24,1,0,124,4399.369040,50,1,1889.962740,hintandextended,nbiot,180 -on7,0,0,26,1,0,693,4682.958720,50,2,1986.959904,hintandextended,nbiot,180 -on11,0,0,25,1,0,266,4506.520320,50,2,2127.867920,hintandextended,nbiot,180 -on7,0,0,24,1,0,1620,4322.000000,51,0,1779.506708,hintandextended,nbiot,180 -on4,0,0,24,1,0,540,4320.010320,51,0,1754.010836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,51,0,2837.563208,hintandextended,nbiot,180 -on6,0,0,25,1,0,1307,4504.000000,51,1,2118.156500,hintandextended,nbiot,180 -on9,0,0,25,1,0,1980,4501.000000,51,1,1917.400000,hintandextended,nbiot,180 -on8,0,0,24,1,0,1557,4321.010320,51,0,1870.760836,hintandextended,nbiot,180 -on11,0,0,24,1,0,506,4327.010320,51,0,1794.517544,hintandextended,nbiot,180 -on5,0,0,24,1,0,900,4321.000000,51,0,1754.413416,hintandextended,nbiot,180 -on3,0,0,24,1,0,1078,4359.010320,51,0,1873.220836,hintandextended,nbiot,180 -on10,0,0,24,1,0,289,4320.989680,51,0,1754.402580,hintandextended,nbiot,180 -on2,0,0,25,1,0,1846,4500.010320,51,1,1826.010836,hintandextended,nbiot,180 -on1,0,0,24,1,0,61,4320.989680,51,0,1754.402580,hintandextended,nbiot,180 -on8,0,0,25,1,0,834,4501.030960,52,1,1887.545716,hintandextended,nbiot,180 -on9,0,0,25,1,0,0,4502.600000,52,1,1915.005124,hintandextended,nbiot,180 -on7,0,0,24,1,0,1405,4326.010320,52,0,1872.760836,hintandextended,nbiot,180 -on3,0,0,24,1,0,293,4322.010320,52,0,1937.727544,hintandextended,nbiot,180 -on10,0,0,24,1,0,609,4322.989680,52,0,1917.702580,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,52,0,3275.006708,hintandextended,nbiot,180 -on2,0,0,24,1,0,3553,4321.000000,52,0,1758.950000,hintandextended,nbiot,180 -on5,0,0,24,1,0,180,4321.000000,52,0,1754.413416,hintandextended,nbiot,180 -on11,0,0,24,1,0,777,4322.000000,52,0,1903.253292,hintandextended,nbiot,180 -on4,0,0,26,1,0,513,4682.338080,52,2,1904.363564,hintandextended,nbiot,180 -on6,0,0,27,1,0,765,4865.349040,52,3,2415.264532,hintandextended,nbiot,180 -on1,0,0,24,1,0,461,4325.979360,52,0,2129.368452,hintandextended,nbiot,180 -on10,0,0,23,1,0,540,4280.989680,53,0,1765.962580,hintandextended,nbiot,180 -on6,0,0,25,1,0,2633,4501.000000,53,1,1917.400000,hintandextended,nbiot,180 -on7,0,0,24,1,0,360,4321.000000,53,0,1754.413416,hintandextended,nbiot,180 -on11,0,0,25,1,0,962,4502.300000,53,1,2037.526708,hintandextended,nbiot,180 -on2,0,0,24,1,0,293,4321.000000,53,0,1779.113416,hintandextended,nbiot,180 -on4,0,0,25,1,0,741,4503.958720,53,1,2018.618488,hintandextended,nbiot,180 -on3,0,0,25,1,0,653,4504.210000,53,1,1971.600500,hintandextended,nbiot,180 -on9,0,0,26,1,0,1082,4681.820320,53,2,2156.128128,hintandextended,nbiot,180 -on5,0,0,24,1,0,2228,4320.000000,53,0,1754.006708,hintandextended,nbiot,180 -on8,0,0,24,1,0,2142,4343.010320,53,0,1873.717544,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4342.010320,53,0,2984.167544,hintandextended,nbiot,180 -on1,0,0,25,1,0,746,4504.261920,53,1,1976.783308,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4320.010320,54,0,1754.010836,hintandextended,nbiot,180 -on2,0,0,24,1,0,1553,4321.000000,54,0,1770.909792,hintandextended,nbiot,180 -on5,0,0,24,1,0,1297,4321.000000,54,0,1821.350000,hintandextended,nbiot,180 -on3,0,0,25,1,0,1431,4669.900000,54,2,2458.803292,hintandextended,nbiot,180 -on11,0,0,25,1,0,2454,4501.000000,54,1,1917.009792,hintandextended,nbiot,180 -on7,0,0,25,1,0,1479,4501.969040,54,1,1871.910824,hintandextended,nbiot,180 -on9,0,0,24,1,0,1157,4321.948400,54,0,1840.866192,hintandextended,nbiot,180 -on4,0,0,25,1,0,1440,4501.641280,54,1,1917.871636,hintandextended,nbiot,180 -on8,0,0,24,1,0,1080,4323.989680,54,0,1991.819288,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4341.620640,54,0,2590.261796,hintandextended,nbiot,180 -on1,0,0,25,1,0,2376,4501.000000,54,1,1893.798292,hintandextended,nbiot,180 -on10,0,0,26,1,0,1594,4681.179040,54,2,1898.498032,hintandextended,nbiot,180 -on9,0,0,24,1,0,1980,4322.000000,55,0,1930.950000,hintandextended,nbiot,180 -on11,0,0,25,1,0,1161,4502.600000,55,1,1906.555124,hintandextended,nbiot,180 -on3,0,0,26,1,0,1530,4681.620000,55,2,2110.684292,hintandextended,nbiot,180 -on10,0,0,24,1,0,1121,4324.000000,55,0,2165.346792,hintandextended,nbiot,180 -on5,0,0,23,1,0,164,4291.979360,55,0,1869.815160,hintandextended,nbiot,180 -on8,0,0,24,1,0,540,4321.010320,55,0,1870.760836,hintandextended,nbiot,180 -on1,0,0,24,1,0,600,4320.010320,55,0,1754.010836,hintandextended,nbiot,180 -on6,0,0,25,1,0,1559,4501.610320,55,2,2067.794128,hintandextended,nbiot,180 -on2,0,0,25,1,0,1422,4501.000000,55,1,1917.406500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,55,0,2693.906708,hintandextended,nbiot,180 -on4,0,0,25,1,0,350,4500.220320,55,1,1826.101336,hintandextended,nbiot,180 -on7,0,0,25,1,0,1957,4501.200320,55,1,1907.743336,hintandextended,nbiot,180 -on8,0,0,24,1,0,180,4323.000000,56,0,1922.523416,hintandextended,nbiot,180 -on4,0,0,24,1,0,1525,4322.010320,56,0,1906.514128,hintandextended,nbiot,180 -on5,0,0,24,1,0,0,4320.010320,56,0,1754.010836,hintandextended,nbiot,180 -on10,0,0,24,1,0,437,4321.000000,56,0,1794.953292,hintandextended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,hintandextended,nbiot,180 -on1,0,0,26,1,0,1053,4682.568720,56,2,1996.099112,hintandextended,nbiot,180 -on7,0,0,25,1,0,684,4503.310320,56,1,2005.710752,hintandextended,nbiot,180 -on3,0,0,26,1,0,513,4683.568720,56,2,2049.409112,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4349.010320,56,0,3070.160836,hintandextended,nbiot,180 -on2,0,0,26,1,0,1526,4683.338080,56,2,1899.570272,hintandextended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,56,0,1728.000000,hintandextended,nbiot,180 -on11,0,0,24,1,0,1032,4324.010320,56,0,2047.070836,hintandextended,nbiot,180 -on3,0,0,24,1,0,1081,4463.420640,57,1,1927.738380,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4341.230960,57,0,3089.299216,hintandextended,nbiot,180 -on10,0,0,24,1,0,1339,4321.000000,57,0,1794.050000,hintandextended,nbiot,180 -on6,0,0,27,1,0,1214,4865.459040,57,3,2370.855240,hintandextended,nbiot,180 -on7,0,0,25,1,0,852,4503.010000,57,1,2113.853792,hintandextended,nbiot,180 -on5,0,0,26,1,0,873,4683.938080,57,2,2132.301648,hintandextended,nbiot,180 -on8,0,0,24,1,0,457,4324.010320,57,0,2071.380836,hintandextended,nbiot,180 -on9,0,0,25,1,0,2813,4501.200000,57,1,1917.480000,hintandextended,nbiot,180 -on11,0,0,25,1,0,540,4505.610320,57,1,2196.215836,hintandextended,nbiot,180 -on1,0,0,25,1,0,1024,4501.600000,57,1,2069.603292,hintandextended,nbiot,180 -on4,0,0,26,1,0,806,4683.499680,57,2,2197.957872,hintandextended,nbiot,180 -on2,0,0,25,1,0,520,4524.620640,57,1,1956.580296,hintandextended,nbiot,180 -on9,0,0,25,1,0,3580,4501.300000,58,1,1986.036500,hintandextended,nbiot,180 -on11,0,0,25,1,0,55,4502.369040,58,1,1942.862948,hintandextended,nbiot,180 -on1,0,0,24,1,0,540,4321.000000,58,0,1791.710000,hintandextended,nbiot,180 -on4,0,0,24,1,0,9,4322.989680,58,0,1884.155872,hintandextended,nbiot,180 -on5,0,0,25,1,0,790,4501.300000,58,1,1902.433292,hintandextended,nbiot,180 -on3,0,0,26,1,0,470,4686.279360,58,2,2175.046576,hintandextended,nbiot,180 -on10,0,0,26,1,0,693,4683.979040,58,2,2192.956532,hintandextended,nbiot,180 -on8,0,0,26,1,0,716,4683.490000,58,2,2312.659084,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4346.630960,58,0,3497.319216,hintandextended,nbiot,180 -on2,0,0,25,1,0,900,4505.610320,58,1,2177.515960,hintandextended,nbiot,180 -on7,0,0,26,1,0,501,4685.220000,58,2,2189.631124,hintandextended,nbiot,180 -on6,0,0,24,1,0,425,4322.010320,58,0,1848.677336,hintandextended,nbiot,180 -on8,0,0,25,1,0,132,4501.510000,59,1,2022.448792,hintandextended,nbiot,180 -on3,0,0,26,1,0,694,4682.300000,59,2,2197.263292,hintandextended,nbiot,180 -on5,0,0,27,1,0,1028,4862.900000,59,3,2476.853084,hintandextended,nbiot,180 -on10,0,0,24,1,0,1039,4320.000000,59,0,1754.013208,hintandextended,nbiot,180 -on4,0,0,26,1,0,760,4682.269040,59,2,2042.557408,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,59,0,2456.006708,hintandextended,nbiot,180 -on2,0,0,27,1,0,487,4863.551280,59,3,2327.496388,hintandextended,nbiot,180 -on9,0,0,25,1,0,154,4516.282240,59,1,1945.215980,hintandextended,nbiot,180 -on11,0,0,25,1,0,577,4639.969040,59,3,1986.417448,hintandextended,nbiot,180 -on7,0,0,26,1,0,420,4682.600000,59,3,2222.993084,hintandextended,nbiot,180 -on1,0,0,24,1,0,79,4321.000000,59,0,1793.009792,hintandextended,nbiot,180 -on6,0,0,27,1,0,490,4862.858720,59,3,2360.688072,hintandextended,nbiot,180 -on1,0,0,25,1,0,197,4503.000000,60,1,2014.458292,hintandextended,nbiot,180 -on6,0,0,25,1,0,360,4502.800000,60,2,2018.531584,hintandextended,nbiot,180 -on4,0,0,26,1,0,753,4681.600000,60,2,2135.623084,hintandextended,nbiot,180 -on9,0,0,24,1,0,238,4322.010320,60,0,1867.514128,hintandextended,nbiot,180 -on2,0,0,27,1,0,800,4863.868720,60,3,2225.912404,hintandextended,nbiot,180 -on8,0,0,24,1,0,0,4322.010320,60,0,1887.424252,hintandextended,nbiot,180 -on10,0,0,25,1,0,694,4500.010320,60,1,1826.017544,hintandextended,nbiot,180 -on7,0,0,24,1,0,1930,4653.600000,60,2,2257.939792,hintandextended,nbiot,180 -on11,0,0,26,1,0,404,4681.600000,60,2,2193.083292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4324.251600,60,0,2524.170888,hintandextended,nbiot,180 -on5,0,0,25,1,0,180,4503.138720,60,1,2044.017072,hintandextended,nbiot,180 -on3,0,0,25,1,0,412,4502.300000,60,1,2054.933292,hintandextended,nbiot,180 -on5,0,0,26,1,0,1593,4681.369040,61,2,2015.112532,hintandextended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,61,0,1728.000000,hintandextended,nbiot,180 -on6,0,0,24,1,0,1440,4354.589680,61,1,1813.557704,hintandextended,nbiot,180 -on1,0,0,25,1,0,360,4502.661920,61,1,1943.650016,hintandextended,nbiot,180 -on10,0,0,24,1,0,1448,4321.020640,61,0,1839.818256,hintandextended,nbiot,180 -on4,0,0,24,1,0,614,4444.220320,61,1,1895.552836,hintandextended,nbiot,180 -on8,0,0,26,1,0,693,4685.490000,61,2,2251.079208,hintandextended,nbiot,180 -on7,0,0,25,1,0,1011,4501.000000,61,1,1826.419916,hintandextended,nbiot,180 -on9,0,0,24,1,0,180,4437.620640,61,1,2072.846796,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4325.620640,61,0,3888.001672,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4326.000000,61,0,2058.273416,hintandextended,nbiot,180 -on11,0,0,24,1,0,1260,4322.000000,61,0,1757.023416,hintandextended,nbiot,180 -on8,0,0,24,1,0,720,4321.989680,62,0,1754.815996,hintandextended,nbiot,180 -on11,0,0,25,1,0,1733,4503.979360,62,1,2090.458244,hintandextended,nbiot,180 -on5,0,0,25,1,0,1440,4502.020640,62,1,1970.529964,hintandextended,nbiot,180 -on3,0,0,26,1,0,1758,4681.689680,62,2,2008.097704,hintandextended,nbiot,180 -on9,0,0,24,1,0,4183,4320.000000,62,0,1754.006500,hintandextended,nbiot,180 -on6,0,0,24,1,0,900,4322.000000,62,0,1871.163416,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4357.020640,62,0,3094.821672,hintandextended,nbiot,180 -on1,0,0,24,1,0,1771,4333.000000,62,0,1874.913416,hintandextended,nbiot,180 -on4,0,0,24,1,0,195,4321.010320,62,0,1858.417544,hintandextended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,62,0,1728.000000,hintandextended,nbiot,180 -on2,0,0,25,1,0,2520,4503.600000,62,1,1944.011832,hintandextended,nbiot,180 -on10,0,0,24,1,0,525,4345.010320,62,0,1764.010836,hintandextended,nbiot,180 -on3,0,0,25,1,0,1080,4502.990000,63,1,1903.265916,hintandextended,nbiot,180 -on10,0,0,25,1,0,1014,4501.000000,63,1,1917.406500,hintandextended,nbiot,180 -on7,0,0,24,1,0,99,4320.010320,63,0,1754.010836,hintandextended,nbiot,180 -on8,0,0,25,1,0,1373,4500.020640,63,1,1826.028172,hintandextended,nbiot,180 -on2,0,0,24,1,0,893,4353.010320,63,0,1767.210836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4326.020320,63,0,2745.078044,hintandextended,nbiot,180 -on6,0,0,24,1,0,1013,4366.000000,63,1,1795.813208,hintandextended,nbiot,180 -on11,0,0,24,1,0,497,4320.000000,63,0,1754.006708,hintandextended,nbiot,180 -on4,0,0,25,1,0,800,4503.000000,63,1,1929.763292,hintandextended,nbiot,180 -on1,0,0,25,1,0,811,4503.338400,63,2,2022.556984,hintandextended,nbiot,180 -on9,0,0,24,1,0,540,4321.010320,63,0,1820.717544,hintandextended,nbiot,180 -on5,0,0,24,1,0,1917,4322.000000,63,0,1813.950000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4352.620640,64,0,3364.891880,hintandextended,nbiot,180 -on8,0,0,24,1,0,720,4321.010320,64,0,1869.720836,hintandextended,nbiot,180 -on3,0,0,25,1,0,2964,4503.300000,64,1,2110.446584,hintandextended,nbiot,180 -on1,0,0,24,1,0,1014,4347.399680,64,1,1880.296496,hintandextended,nbiot,180 -on4,0,0,24,1,0,540,4321.010320,64,0,1849.310836,hintandextended,nbiot,180 -on9,0,0,25,1,0,3076,4502.358720,64,1,1943.508612,hintandextended,nbiot,180 -on2,0,0,26,1,0,1249,4681.368720,64,2,1898.769112,hintandextended,nbiot,180 -on5,0,0,24,1,0,2076,4320.989680,64,0,1754.409288,hintandextended,nbiot,180 -on6,0,0,25,1,0,2160,4501.620640,64,1,1826.870088,hintandextended,nbiot,180 -on7,0,0,24,1,0,1198,4321.989680,64,0,1768.705872,hintandextended,nbiot,180 -on11,0,0,24,1,0,1623,4323.989680,64,0,1955.809288,hintandextended,nbiot,180 -on10,0,0,24,1,0,3870,4321.000000,64,0,1786.900000,hintandextended,nbiot,180 -on10,0,0,25,1,0,1773,4501.000000,65,1,1917.406500,hintandextended,nbiot,180 -on2,0,0,26,1,0,626,4681.310000,65,2,2079.860584,hintandextended,nbiot,180 -on3,0,0,25,1,0,911,4500.969040,65,1,1826.407532,hintandextended,nbiot,180 -on4,0,0,25,1,0,1014,4501.300000,65,1,2033.863292,hintandextended,nbiot,180 -on9,0,0,26,1,0,431,4681.341280,65,3,2113.323344,hintandextended,nbiot,180 -on7,0,0,24,1,0,183,4321.010320,65,0,1867.640836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,65,0,2543.106708,hintandextended,nbiot,180 -on11,0,0,26,1,0,647,4683.600000,65,3,2337.533084,hintandextended,nbiot,180 -on5,0,0,24,1,0,764,4321.000000,65,1,1798.866292,hintandextended,nbiot,180 -on8,0,0,26,1,0,814,4783.900000,65,3,2224.961376,hintandextended,nbiot,180 -on6,0,0,25,1,0,438,4627.248400,65,2,2124.152652,hintandextended,nbiot,180 -on1,0,0,25,1,0,474,4505.310320,65,1,2176.472544,hintandextended,nbiot,180 -on7,0,0,24,1,0,886,4346.010320,66,0,1764.410836,hintandextended,nbiot,180 -on10,0,0,24,1,0,170,4385.600000,66,1,1780.461832,hintandextended,nbiot,180 -on11,0,0,26,1,0,666,4725.320640,66,3,2215.381340,hintandextended,nbiot,180 -on2,0,0,24,1,0,626,4320.969680,66,1,1755.044372,hintandextended,nbiot,180 -on1,0,0,24,1,0,67,4322.000000,66,0,1917.163292,hintandextended,nbiot,180 -on5,0,0,25,1,0,14,4503.220640,66,1,1900.303588,hintandextended,nbiot,180 -on3,0,0,25,1,0,360,4503.000000,66,2,1938.675000,hintandextended,nbiot,180 -on4,0,0,25,1,0,360,4503.000000,66,1,2061.720000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,66,0,2454.706708,hintandextended,nbiot,180 -on8,0,0,25,1,0,1075,4502.300000,66,1,2037.520000,hintandextended,nbiot,180 -on9,0,0,27,1,0,760,4862.289680,66,4,2177.837288,hintandextended,nbiot,180 -on6,0,0,25,1,0,320,4502.210000,66,1,1994.597208,hintandextended,nbiot,180 -on7,0,0,24,1,0,1003,4323.989680,67,0,1943.062372,hintandextended,nbiot,180 -on8,0,0,24,1,0,1980,4321.989680,67,0,1805.515996,hintandextended,nbiot,180 -on3,0,0,24,1,0,43,4323.020640,67,0,1969.324964,hintandextended,nbiot,180 -on5,0,0,25,1,0,2880,4502.630640,67,2,1922.180588,hintandextended,nbiot,180 -on11,0,0,25,1,0,1078,4541.641280,67,1,2014.933136,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,67,0,3808.650000,hintandextended,nbiot,180 -on6,0,0,25,1,0,1030,4501.320640,67,1,2023.491672,hintandextended,nbiot,180 -on1,0,0,25,1,0,32,4502.989680,67,1,1915.427704,hintandextended,nbiot,180 -on4,0,0,24,1,0,180,4322.000000,67,0,1856.213416,hintandextended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,67,0,1728.000000,hintandextended,nbiot,180 -on9,0,0,23,1,0,1620,4278.000000,67,0,1840.180332,hintandextended,nbiot,180 -on2,0,0,24,1,0,407,4321.010320,67,0,1755.724252,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4322.000000,68,0,1937.313292,hintandextended,nbiot,180 -on9,0,0,27,1,0,878,4861.969040,68,3,2126.995824,hintandextended,nbiot,180 -on10,0,0,26,1,0,359,4682.810000,68,2,2287.368792,hintandextended,nbiot,180 -on1,0,0,25,1,0,900,4501.000000,68,1,1917.406500,hintandextended,nbiot,180 -on3,0,0,25,1,0,331,4502.300000,68,1,2041.159792,hintandextended,nbiot,180 -on2,0,0,25,1,0,0,4502.630960,68,1,2028.240800,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4355.251600,68,0,2366.270888,hintandextended,nbiot,180 -on11,0,0,26,1,0,514,4683.790000,68,2,2429.129084,hintandextended,nbiot,180 -on6,0,0,25,1,0,360,4501.969040,68,1,1846.989200,hintandextended,nbiot,180 -on5,0,0,25,1,0,343,4500.010320,68,1,1826.017336,hintandextended,nbiot,180 -on8,0,0,24,1,0,180,4320.010320,68,0,1754.010836,hintandextended,nbiot,180 -on4,0,0,26,1,0,334,4682.041280,68,2,2017.239596,hintandextended,nbiot,180 -on6,0,0,24,1,0,540,4410.620640,69,1,1847.013380,hintandextended,nbiot,180 -on9,0,0,24,1,0,304,4321.989680,69,0,1870.496080,hintandextended,nbiot,180 -on11,0,0,24,1,0,919,4321.989680,69,0,1833.452580,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,69,0,2723.150000,hintandextended,nbiot,180 -on8,0,0,25,1,0,538,4502.989680,69,1,2035.013872,hintandextended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hintandextended,nbiot,180 -on1,0,0,25,1,0,720,4501.990000,69,1,1855.409208,hintandextended,nbiot,180 -on3,0,0,25,1,0,992,4502.300000,69,1,2000.476708,hintandextended,nbiot,180 -on10,0,0,24,1,0,1311,4321.000000,69,0,1754.413416,hintandextended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,69,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,26,1,0,561,4681.369040,69,2,1919.815824,hintandextended,nbiot,180 -on4,0,0,24,1,0,900,4320.010320,69,0,1754.010836,hintandextended,nbiot,180 -on8,0,0,26,1,0,340,4684.310320,70,2,2336.608628,hintandextended,nbiot,180 -on9,0,0,25,1,0,509,4504.000000,70,1,2161.069916,hintandextended,nbiot,180 -on2,0,0,24,1,0,1260,4321.000000,70,0,1754.420124,hintandextended,nbiot,180 -on6,0,0,24,1,0,3996,4322.000000,70,0,1938.750000,hintandextended,nbiot,180 -on10,0,0,25,1,0,0,4504.020640,70,1,1936.041880,hintandextended,nbiot,180 -on5,0,0,24,1,0,980,4321.989680,70,0,1761.959288,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4324.630320,70,0,3356.568544,hintandextended,nbiot,180 -on11,0,0,25,1,0,22,4502.359360,70,1,1942.663868,hintandextended,nbiot,180 -on1,0,0,25,1,0,342,4501.979360,70,1,1917.804952,hintandextended,nbiot,180 -on3,0,0,26,1,0,428,4684.269040,70,2,2164.940740,hintandextended,nbiot,180 -on4,0,0,27,1,0,497,4863.189680,70,3,2378.520580,hintandextended,nbiot,180 -on7,0,0,24,1,0,35,4323.000000,70,0,1832.186832,hintandextended,nbiot,180 -on10,0,0,25,1,0,1733,4503.000000,71,1,1957.219916,hintandextended,nbiot,180 -on8,0,0,26,1,0,753,4684.910320,71,3,2289.587336,hintandextended,nbiot,180 -on6,0,0,25,1,0,360,4502.010320,71,1,1940.417420,hintandextended,nbiot,180 -on1,0,0,25,1,0,544,4501.269040,71,1,1911.644616,hintandextended,nbiot,180 -on5,0,0,25,1,0,180,4502.630640,71,1,1942.597296,hintandextended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,71,0,1728.000000,hintandextended,nbiot,180 -on11,0,0,26,1,0,597,4681.300000,71,2,2110.874792,hintandextended,nbiot,180 -on7,0,0,24,1,0,575,4433.010320,71,1,2023.480336,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4354.020320,71,0,3426.421336,hintandextended,nbiot,180 -on3,0,0,25,1,0,1126,4504.010320,71,1,2149.380752,hintandextended,nbiot,180 -on2,0,0,26,1,0,804,4744.320640,71,4,2238.166796,hintandextended,nbiot,180 -on4,0,0,26,1,0,781,4682.289680,71,2,2053.855748,hintandextended,nbiot,180 -on8,0,0,26,1,0,454,4680.341280,72,2,1959.386428,hintandextended,nbiot,180 -on9,0,0,28,1,0,592,5043.710000,72,4,2685.734960,hintandextended,nbiot,180 -on4,0,0,25,1,0,497,4501.210000,72,1,1916.840500,hintandextended,nbiot,180 -on7,0,0,26,1,0,267,4684.020000,72,2,2089.660460,hintandextended,nbiot,180 -on5,0,0,24,1,0,640,4322.000000,72,0,1896.500000,hintandextended,nbiot,180 -on1,0,0,24,1,0,0,4322.000000,72,0,1872.320000,hintandextended,nbiot,180 -on10,0,0,27,1,0,847,4861.300000,72,4,2177.232792,hintandextended,nbiot,180 -on2,0,0,24,1,0,170,4350.010320,72,0,1766.010836,hintandextended,nbiot,180 -on11,0,0,25,1,0,226,4502.000000,72,1,1983.716500,hintandextended,nbiot,180 -on6,0,0,28,1,0,709,5043.410000,72,4,2639.400376,hintandextended,nbiot,180 -on3,0,0,26,1,0,391,4682.000000,72,3,1977.463000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,72,0,2339.006708,hintandextended,nbiot,180 -on5,0,0,25,1,0,699,4502.300000,73,1,2044.149792,hintandextended,nbiot,180 -on6,0,0,25,1,0,1,4503.338080,73,1,2058.553856,hintandextended,nbiot,180 -on10,0,0,24,1,0,414,4322.000000,73,0,1925.106708,hintandextended,nbiot,180 -on8,0,0,27,1,0,552,4861.320640,73,4,2178.944880,hintandextended,nbiot,180 -on3,0,0,25,1,0,720,4502.000000,73,1,1994.506708,hintandextended,nbiot,180 -on2,0,0,26,1,0,518,4681.320000,73,2,2080.722584,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,73,0,2339.006708,hintandextended,nbiot,180 -on9,0,0,24,1,0,146,4327.010320,73,0,1872.120836,hintandextended,nbiot,180 -on11,0,0,26,1,0,522,4684.969040,73,2,2309.363908,hintandextended,nbiot,180 -on1,0,0,26,1,0,866,4681.600000,73,3,2196.989792,hintandextended,nbiot,180 -on7,0,0,26,1,0,727,4681.000000,73,2,1929.821208,hintandextended,nbiot,180 -on4,0,0,25,1,0,320,4501.210000,73,1,1917.490500,hintandextended,nbiot,180 -on1,0,0,24,1,0,700,4343.000000,74,0,1948.723416,hintandextended,nbiot,180 -on9,0,0,26,1,0,513,4681.240640,74,2,2015.074380,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,74,0,2732.256708,hintandextended,nbiot,180 -on2,0,0,24,1,0,89,4323.000000,74,0,2021.316708,hintandextended,nbiot,180 -on5,0,0,24,1,0,522,4343.000000,74,0,1763.213416,hintandextended,nbiot,180 -on6,0,0,24,1,0,900,4321.020640,74,0,1859.078380,hintandextended,nbiot,180 -on11,0,0,25,1,0,360,4502.969040,74,1,1966.957740,hintandextended,nbiot,180 -on3,0,0,24,1,0,2880,4322.000000,74,0,1874.400000,hintandextended,nbiot,180 -on8,0,0,24,1,0,1080,4321.000000,74,0,1833.056708,hintandextended,nbiot,180 -on4,0,0,25,1,0,874,4501.010320,74,1,1942.767336,hintandextended,nbiot,180 -on10,0,0,25,1,0,293,4501.010320,74,1,1828.627336,hintandextended,nbiot,180 -on7,0,0,25,1,0,1081,4501.310320,74,1,2024.130836,hintandextended,nbiot,180 -on5,0,0,24,1,0,249,4320.010320,75,0,1754.010836,hintandextended,nbiot,180 -on7,0,0,23,1,0,2092,4274.979360,75,0,1736.005160,hintandextended,nbiot,180 -on10,0,0,24,1,0,3010,4322.000000,75,0,1877.650000,hintandextended,nbiot,180 -on4,0,0,24,1,0,1980,4322.010320,75,0,1870.134252,hintandextended,nbiot,180 -on3,0,0,24,1,0,1026,4323.000320,75,0,1880.273336,hintandextended,nbiot,180 -on2,0,0,25,1,0,2851,4500.200320,75,1,1826.093336,hintandextended,nbiot,180 -on6,0,0,25,1,0,1207,4502.000000,75,1,2025.713208,hintandextended,nbiot,180 -on9,0,0,25,1,0,937,4502.969040,75,1,2059.062740,hintandextended,nbiot,180 -on8,0,0,25,1,0,1056,4517.651600,75,1,1908.675764,hintandextended,nbiot,180 -on1,0,0,25,1,0,360,4502.610320,75,1,1863.015960,hintandextended,nbiot,180 -on11,0,0,25,1,0,1800,4502.020320,75,1,1986.071336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,75,0,3128.106708,hintandextended,nbiot,180 -on6,0,0,24,1,0,604,4322.000000,76,0,1870.513416,hintandextended,nbiot,180 -on11,0,0,23,1,0,205,4279.989680,76,0,1738.002580,hintandextended,nbiot,180 -on3,0,0,25,1,0,2291,4503.289680,76,1,2048.335996,hintandextended,nbiot,180 -on4,0,0,24,1,0,3928,4329.010320,76,0,1862.260836,hintandextended,nbiot,180 -on10,0,0,24,1,0,2438,4321.010320,76,0,1783.017544,hintandextended,nbiot,180 -on1,0,0,24,1,0,1027,4323.010320,76,0,1898.224252,hintandextended,nbiot,180 -on9,0,0,24,1,0,1654,4323.020640,76,0,2011.964964,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,76,0,3423.206708,hintandextended,nbiot,180 -on5,0,0,24,1,0,180,4322.030960,76,0,1800.339216,hintandextended,nbiot,180 -on8,0,0,26,1,0,1749,4686.569040,76,2,2398.157740,hintandextended,nbiot,180 -on2,0,0,24,1,0,469,4322.000000,76,0,1820.463416,hintandextended,nbiot,180 -on7,0,0,24,1,0,2645,4323.610320,76,1,1903.014044,hintandextended,nbiot,180 -on2,0,0,26,1,0,912,4682.600000,77,2,2213.900000,hintandextended,nbiot,180 -on7,0,0,25,1,0,48,4503.641280,77,1,2037.238344,hintandextended,nbiot,180 -on10,0,0,24,1,0,180,4320.010320,77,0,1754.010836,hintandextended,nbiot,180 -on6,0,0,26,1,0,453,4681.310320,77,2,1991.494044,hintandextended,nbiot,180 -on3,0,0,24,1,0,180,4322.000000,77,0,1808.113416,hintandextended,nbiot,180 -on4,0,0,25,1,0,578,4501.969040,77,1,1942.312740,hintandextended,nbiot,180 -on5,0,0,25,1,0,2521,4501.300000,77,1,2033.870000,hintandextended,nbiot,180 -on11,0,0,25,1,0,875,4502.220320,77,1,1999.808044,hintandextended,nbiot,180 -on1,0,0,25,1,0,345,4502.999680,77,1,2034.563080,hintandextended,nbiot,180 -on8,0,0,24,1,0,168,4350.989680,77,0,1881.725996,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4374.641280,77,0,2814.330052,hintandextended,nbiot,180 -on9,0,0,24,1,0,540,4323.989680,77,0,2054.465872,hintandextended,nbiot,180 -on8,0,0,25,1,0,2160,4504.999680,78,1,2075.683204,hintandextended,nbiot,180 -on4,0,0,24,1,0,2713,4321.000000,78,0,1754.413416,hintandextended,nbiot,180 -on5,0,0,24,1,0,0,4321.000320,78,0,1754.420044,hintandextended,nbiot,180 -on2,0,0,23,1,0,3804,4217.989680,78,0,1713.202580,hintandextended,nbiot,180 -on7,0,0,25,1,0,293,4503.000000,78,1,2058.879916,hintandextended,nbiot,180 -on10,0,0,25,1,0,1067,4501.220320,78,1,1942.851336,hintandextended,nbiot,180 -on11,0,0,24,1,0,154,4337.010320,78,0,2062.670836,hintandextended,nbiot,180 -on3,0,0,25,1,0,511,4503.200320,78,1,2006.056752,hintandextended,nbiot,180 -on9,0,0,24,1,0,979,4321.989680,78,0,1870.112580,hintandextended,nbiot,180 -on6,0,0,24,1,0,3024,4325.010320,78,0,1872.360836,hintandextended,nbiot,180 -on1,0,0,25,1,0,4283,4500.300000,78,1,1850.176500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,78,0,3504.456500,hintandextended,nbiot,180 -on9,0,0,25,1,0,934,4500.310320,79,1,1908.550836,hintandextended,nbiot,180 -on3,0,0,25,1,0,2341,4501.300000,79,1,2033.870000,hintandextended,nbiot,180 -on8,0,0,25,1,0,360,4502.620960,79,1,1827.283424,hintandextended,nbiot,180 -on5,0,0,25,1,0,1606,4500.010320,79,1,1826.017336,hintandextended,nbiot,180 -on4,0,0,24,1,0,516,4339.010320,79,0,1900.977544,hintandextended,nbiot,180 -on10,0,0,26,1,0,1347,4683.289680,79,2,2196.365664,hintandextended,nbiot,180 -on1,0,0,24,1,0,540,4437.999680,79,1,1822.293204,hintandextended,nbiot,180 -on11,0,0,24,1,0,1214,4496.620640,79,2,2121.738296,hintandextended,nbiot,180 -on2,0,0,26,1,0,1234,4682.020640,79,2,2076.719340,hintandextended,nbiot,180 -on6,0,0,24,1,0,1173,4321.000000,79,0,1784.300000,hintandextended,nbiot,180 -on7,0,0,25,1,0,360,4501.610320,79,1,1826.859252,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,79,0,2986.406708,hintandextended,nbiot,180 -on9,0,0,24,1,0,900,4322.000000,80,0,1845.156708,hintandextended,nbiot,180 -on6,0,0,24,1,0,1254,4354.010320,80,0,1767.610836,hintandextended,nbiot,180 -on11,0,0,25,1,0,806,4502.220640,80,2,1942.413380,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4327.010320,80,0,2874.427544,hintandextended,nbiot,180 -on2,0,0,24,1,0,540,4321.010320,80,0,1833.580836,hintandextended,nbiot,180 -on7,0,0,24,1,0,82,4320.989680,80,0,1754.402580,hintandextended,nbiot,180 -on5,0,0,24,1,0,1682,4322.000000,80,0,1960.206708,hintandextended,nbiot,180 -on1,0,0,25,1,0,1746,4502.300000,80,2,2138.270000,hintandextended,nbiot,180 -on3,0,0,24,1,0,392,4321.000000,80,0,1844.763416,hintandextended,nbiot,180 -on4,0,0,25,1,0,1090,4571.358720,80,2,2079.015112,hintandextended,nbiot,180 -on8,0,0,24,1,0,1800,4321.000000,80,0,1788.863416,hintandextended,nbiot,180 -on10,0,0,24,1,0,796,4323.748720,80,1,1885.441196,hintandextended,nbiot,180 -on10,0,0,24,1,0,1620,4320.010320,81,0,1754.010836,hintandextended,nbiot,180 -on6,0,0,25,1,0,540,4506.599680,81,2,1986.824912,hintandextended,nbiot,180 -on1,0,0,25,1,0,1512,4501.300000,81,1,1896.733416,hintandextended,nbiot,180 -on8,0,0,24,1,0,394,4323.989680,81,0,1940.475996,hintandextended,nbiot,180 -on5,0,0,26,1,0,446,4685.338080,81,2,2120.583564,hintandextended,nbiot,180 -on4,0,0,24,1,0,305,4322.000000,81,0,1854.256708,hintandextended,nbiot,180 -on11,0,0,23,1,0,1371,4154.020640,81,0,1917.071672,hintandextended,nbiot,180 -on9,0,0,24,1,0,1102,4322.979360,81,0,1848.805160,hintandextended,nbiot,180 -on3,0,0,24,1,0,1724,4320.000000,81,0,1754.006708,hintandextended,nbiot,180 -on7,0,0,25,1,0,4253,4500.000000,81,1,1826.013000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,81,0,3728.056500,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4322.020640,81,0,1909.521672,hintandextended,nbiot,180 -on10,0,0,25,1,0,1054,4634.369040,82,2,2286.862532,hintandextended,nbiot,180 -on7,0,0,25,1,0,722,4503.948400,82,1,2009.247652,hintandextended,nbiot,180 -on11,0,0,25,1,0,3560,4501.000000,82,1,1917.406500,hintandextended,nbiot,180 -on6,0,0,24,1,0,540,4323.000000,82,0,1985.833416,hintandextended,nbiot,180 -on9,0,0,25,1,0,724,4502.127760,82,1,2058.719520,hintandextended,nbiot,180 -on1,0,0,24,1,0,2025,4321.000000,82,0,1754.413416,hintandextended,nbiot,180 -on4,0,0,25,1,0,1620,4501.610320,82,1,1826.859252,hintandextended,nbiot,180 -on3,0,0,24,1,0,438,4322.989680,82,0,1871.565996,hintandextended,nbiot,180 -on8,0,0,26,1,0,879,4683.000000,82,2,2041.881500,hintandextended,nbiot,180 -on5,0,0,25,1,0,1037,4501.000000,82,1,1917.009792,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4324.620640,82,0,3012.058380,hintandextended,nbiot,180 -on2,0,0,24,1,0,755,4321.000000,82,0,1822.253292,hintandextended,nbiot,180 -on6,0,0,24,1,0,204,4322.010320,83,0,1972.560836,hintandextended,nbiot,180 -on1,0,0,24,1,0,996,4321.000000,83,0,1780.406708,hintandextended,nbiot,180 -on7,0,0,26,1,0,814,4681.490320,83,2,2106.804128,hintandextended,nbiot,180 -on9,0,0,24,1,0,2160,4320.010320,83,0,1754.010836,hintandextended,nbiot,180 -on8,0,0,25,1,0,2453,4503.000000,83,1,1969.556500,hintandextended,nbiot,180 -on11,0,0,24,1,0,387,4387.630960,83,1,1940.510800,hintandextended,nbiot,180 -on10,0,0,25,1,0,703,4501.190320,83,1,1917.489336,hintandextended,nbiot,180 -on3,0,0,24,1,0,18,4322.979360,83,0,1818.268576,hintandextended,nbiot,180 -on4,0,0,24,1,0,2094,4321.010320,83,0,1870.760836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,83,0,2810.256708,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4322.000000,83,0,1854.263416,hintandextended,nbiot,180 -on5,0,0,24,1,0,360,4322.000000,83,0,1961.096792,hintandextended,nbiot,180 -on6,0,0,24,1,0,720,4320.020640,84,0,1754.021672,hintandextended,nbiot,180 -on11,0,0,26,1,0,1412,4683.600000,84,2,2214.703416,hintandextended,nbiot,180 -on5,0,0,25,1,0,900,4504.948400,84,1,2043.481192,hintandextended,nbiot,180 -on2,0,0,24,1,0,940,4324.000000,84,0,2083.076708,hintandextended,nbiot,180 -on1,0,0,25,1,0,1126,4501.000000,84,1,1917.400000,hintandextended,nbiot,180 -on8,0,0,24,1,0,2674,4344.300000,84,1,2101.726500,hintandextended,nbiot,180 -on4,0,0,25,1,0,966,4504.030960,84,1,2035.834216,hintandextended,nbiot,180 -on7,0,0,24,1,0,180,4323.000000,84,0,1915.113416,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,84,0,2985.106708,hintandextended,nbiot,180 -on9,0,0,26,1,0,1084,4682.600000,84,2,2189.179876,hintandextended,nbiot,180 -on10,0,0,24,1,0,901,4431.989680,84,1,2242.219164,hintandextended,nbiot,180 -on3,0,0,25,1,0,653,4500.010320,84,1,1826.017336,hintandextended,nbiot,180 -on7,0,0,26,1,0,1071,4683.310320,85,2,2075.727212,hintandextended,nbiot,180 -on2,0,0,24,1,0,1193,4469.220000,85,1,2231.007916,hintandextended,nbiot,180 -on6,0,0,26,1,0,1422,4685.499680,85,2,2349.356372,hintandextended,nbiot,180 -on8,0,0,26,1,0,893,4685.638080,85,2,2210.527064,hintandextended,nbiot,180 -on9,0,0,24,1,0,849,4322.989680,85,0,1877.649372,hintandextended,nbiot,180 -on10,0,0,25,1,0,1047,4501.000000,85,1,1918.258000,hintandextended,nbiot,180 -on11,0,0,24,1,0,612,4321.041280,85,0,1870.129928,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,85,0,3136.556708,hintandextended,nbiot,180 -on4,0,0,24,1,0,0,4446.600000,85,1,1804.861832,hintandextended,nbiot,180 -on5,0,0,24,1,0,93,4322.010320,85,0,1930.967544,hintandextended,nbiot,180 -on1,0,0,25,1,0,1347,4662.179040,85,2,2021.301032,hintandextended,nbiot,180 -on3,0,0,24,1,0,2474,4322.000000,85,0,1875.050000,hintandextended,nbiot,180 -on7,0,0,24,1,0,669,4321.000000,86,0,1761.550000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4329.010320,86,0,2581.167544,hintandextended,nbiot,180 -on2,0,0,28,1,0,608,5043.258720,86,4,2458.211696,hintandextended,nbiot,180 -on9,0,0,24,1,0,1265,4321.000000,86,0,1842.150000,hintandextended,nbiot,180 -on8,0,0,24,1,0,797,4321.000000,86,1,1789.759792,hintandextended,nbiot,180 -on1,0,0,24,1,0,70,4321.969040,86,0,1754.801032,hintandextended,nbiot,180 -on10,0,0,24,1,0,180,4322.000000,86,0,1922.623292,hintandextended,nbiot,180 -on4,0,0,25,1,0,194,4503.000000,86,2,2023.551376,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4320.010320,86,0,1754.010836,hintandextended,nbiot,180 -on5,0,0,26,1,0,446,4683.938080,86,2,2131.255148,hintandextended,nbiot,180 -on3,0,0,24,1,0,261,4322.020640,86,0,1876.631672,hintandextended,nbiot,180 -on11,0,0,25,1,0,365,4502.289680,86,1,2029.462580,hintandextended,nbiot,180 -on10,0,0,25,1,0,1800,4501.010000,87,1,1826.423916,hintandextended,nbiot,180 -on1,0,0,24,1,0,2124,4325.010320,87,0,1872.360836,hintandextended,nbiot,180 -on4,0,0,24,1,0,459,4321.010320,87,0,1863.870836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4348.010320,87,0,3122.417544,hintandextended,nbiot,180 -on8,0,0,25,1,0,1374,4502.000000,87,1,1943.169916,hintandextended,nbiot,180 -on2,0,0,25,1,0,900,4503.969040,87,1,1943.964448,hintandextended,nbiot,180 -on7,0,0,24,1,0,180,4320.010320,87,0,1754.010836,hintandextended,nbiot,180 -on11,0,0,24,1,0,922,4321.000000,87,0,1820.706708,hintandextended,nbiot,180 -on3,0,0,24,1,0,2520,4321.000000,87,0,1845.400000,hintandextended,nbiot,180 -on6,0,0,24,1,0,58,4322.979360,87,0,1776.648452,hintandextended,nbiot,180 -on9,0,0,25,1,0,653,4501.240960,87,1,1836.526300,hintandextended,nbiot,180 -on5,0,0,24,1,0,540,4322.989680,87,0,1804.602580,hintandextended,nbiot,180 -on10,0,0,25,1,0,773,4502.300000,88,1,2002.407000,hintandextended,nbiot,180 -on3,0,0,24,1,0,358,4358.020640,88,0,1769.221672,hintandextended,nbiot,180 -on5,0,0,25,1,0,1553,4502.000000,88,1,2034.156500,hintandextended,nbiot,180 -on11,0,0,24,1,0,0,4321.010320,88,0,1760.260836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,88,0,2778.406708,hintandextended,nbiot,180 -on9,0,0,27,1,0,851,4862.569040,88,3,2282.800324,hintandextended,nbiot,180 -on4,0,0,26,1,0,777,4682.879360,88,2,2227.668036,hintandextended,nbiot,180 -on2,0,0,24,1,0,552,4321.020640,88,0,1757.001548,hintandextended,nbiot,180 -on6,0,0,23,1,0,540,4268.000000,88,0,1747.110000,hintandextended,nbiot,180 -on1,0,0,25,1,0,288,4502.620640,88,1,1943.613380,hintandextended,nbiot,180 -on8,0,0,27,1,0,815,4864.430320,88,3,2511.863420,hintandextended,nbiot,180 -on7,0,0,24,1,0,693,4396.300000,88,1,1941.170000,hintandextended,nbiot,180 -on6,0,0,24,1,0,482,4322.010320,89,0,1872.064128,hintandextended,nbiot,180 -on7,0,0,25,1,0,2996,4501.210000,89,1,1917.490500,hintandextended,nbiot,180 -on2,0,0,25,1,0,1697,4501.300000,89,1,1984.723292,hintandextended,nbiot,180 -on11,0,0,26,1,0,1676,4684.658720,89,2,2203.888820,hintandextended,nbiot,180 -on9,0,0,25,1,0,360,4501.641280,89,1,1826.878344,hintandextended,nbiot,180 -on3,0,0,25,1,0,1980,4502.620320,89,2,1942.579752,hintandextended,nbiot,180 -on10,0,0,25,1,0,64,4503.327760,89,1,1928.302936,hintandextended,nbiot,180 -on8,0,0,24,1,0,155,4336.000000,89,0,1760.413416,hintandextended,nbiot,180 -on4,0,0,24,1,0,180,4322.989680,89,0,1892.625996,hintandextended,nbiot,180 -on1,0,0,25,1,0,2296,4502.190000,89,1,2034.232500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,89,0,3229.500000,hintandextended,nbiot,180 -on5,0,0,24,1,0,698,4339.989680,89,0,1823.759288,hintandextended,nbiot,180 -on9,0,0,25,1,0,1374,4501.000000,90,1,1826.419916,hintandextended,nbiot,180 -on8,0,0,25,1,0,2601,4502.300000,90,1,2049.870000,hintandextended,nbiot,180 -on6,0,0,25,1,0,360,4502.610320,90,1,1890.315960,hintandextended,nbiot,180 -on1,0,0,25,1,0,2124,4500.310320,90,1,1849.530836,hintandextended,nbiot,180 -on5,0,0,23,1,0,1736,4262.000000,90,0,1730.806708,hintandextended,nbiot,180 -on7,0,0,24,1,0,140,4320.030960,90,0,1754.032508,hintandextended,nbiot,180 -on10,0,0,25,1,0,1620,4503.989680,90,1,2124.659288,hintandextended,nbiot,180 -on3,0,0,23,1,0,2160,4277.010320,90,0,1736.810836,hintandextended,nbiot,180 -on4,0,0,24,1,0,1080,4321.010320,90,0,1801.470836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4370.630960,90,0,3023.969216,hintandextended,nbiot,180 -on11,0,0,24,1,0,1440,4322.010320,90,0,1854.924252,hintandextended,nbiot,180 -on2,0,0,24,1,0,900,4321.010320,90,0,1827.860836,hintandextended,nbiot,180 -on1,0,0,24,1,0,540,4321.000000,91,0,1792.106708,hintandextended,nbiot,180 -on10,0,0,24,1,0,1210,4323.979360,91,0,1914.855160,hintandextended,nbiot,180 -on11,0,0,25,1,0,2050,4501.310320,91,1,1987.737336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4383.630960,91,0,3255.362508,hintandextended,nbiot,180 -on9,0,0,24,1,0,444,4320.030960,91,0,1754.032508,hintandextended,nbiot,180 -on7,0,0,25,1,0,195,4501.300000,91,1,2019.693292,hintandextended,nbiot,180 -on6,0,0,25,1,0,3240,4501.620640,91,1,1908.106672,hintandextended,nbiot,180 -on4,0,0,24,1,0,720,4322.979360,91,0,1807.458452,hintandextended,nbiot,180 -on5,0,0,26,1,0,333,4683.369040,91,2,2159.556032,hintandextended,nbiot,180 -on3,0,0,24,1,0,130,4327.969040,91,0,2199.221156,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4322.000000,91,0,1853.483416,hintandextended,nbiot,180 -on8,0,0,24,1,0,900,4320.010320,91,0,1754.010836,hintandextended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hintandextended,nbiot,180 -on10,0,0,25,1,0,293,4501.220000,92,1,1917.305792,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4325.000000,92,0,1939.853540,hintandextended,nbiot,180 -on5,0,0,26,1,0,513,4681.310320,92,2,2090.280628,hintandextended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hintandextended,nbiot,180 -on0,1,8,24,0,0,0,4320.000000,92,0,3118.350000,hintandextended,nbiot,180 -on11,0,0,24,1,0,360,4324.000000,92,0,1992.876832,hintandextended,nbiot,180 -on1,0,0,24,1,0,3060,4321.000000,92,0,1754.413416,hintandextended,nbiot,180 -on4,0,0,25,1,0,380,4590.020640,92,2,1951.741380,hintandextended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,92,0,1728.000000,hintandextended,nbiot,180 -on8,0,0,26,1,0,446,4682.499680,92,2,2081.857872,hintandextended,nbiot,180 -on6,0,0,24,1,0,1027,4321.979360,92,0,1754.805160,hintandextended,nbiot,180 -on1,0,0,25,1,0,1013,4502.000000,93,1,1972.666292,hintandextended,nbiot,180 -on11,0,0,24,1,0,1320,4321.300000,93,1,1918.450000,hintandextended,nbiot,180 -on7,0,0,25,1,0,360,4502.969040,93,1,1835.209448,hintandextended,nbiot,180 -on4,0,0,25,1,0,766,4501.300000,93,1,1930.780000,hintandextended,nbiot,180 -on9,0,0,26,1,0,695,4683.000000,93,2,2217.706292,hintandextended,nbiot,180 -on3,0,0,24,1,0,852,4321.000000,93,0,1847.226500,hintandextended,nbiot,180 -on6,0,0,24,1,0,180,4321.010320,93,0,1794.704128,hintandextended,nbiot,180 -on5,0,0,25,1,0,360,4502.020640,93,1,1981.781672,hintandextended,nbiot,180 -on2,0,0,27,1,0,1055,4862.869040,93,3,2204.719032,hintandextended,nbiot,180 -on10,0,0,23,1,0,0,4277.010320,93,0,1833.257420,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,93,0,2613.306708,hintandextended,nbiot,180 -on8,0,0,26,1,0,1167,4682.600000,93,2,2164.883292,hintandextended,nbiot,180 -on7,0,0,25,1,0,900,4502.000000,94,1,1935.356708,hintandextended,nbiot,180 -on10,0,0,25,1,0,1013,4502.220320,94,1,2004.864628,hintandextended,nbiot,180 -on1,0,0,25,1,0,360,4505.999680,94,1,2108.888080,hintandextended,nbiot,180 -on2,0,0,24,1,0,132,4320.020640,94,0,1754.021672,hintandextended,nbiot,180 -on9,0,0,25,1,0,540,4501.040960,94,1,1942.786300,hintandextended,nbiot,180 -on6,0,0,25,1,0,900,4503.000000,94,1,1967.425124,hintandextended,nbiot,180 -on4,0,0,23,1,0,793,4306.010320,94,1,1748.417336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4343.251280,94,0,2686.463844,hintandextended,nbiot,180 -on3,0,0,23,1,0,312,4315.010320,94,0,1752.010836,hintandextended,nbiot,180 -on5,0,0,25,1,0,1237,4501.300000,94,1,1988.103292,hintandextended,nbiot,180 -on8,0,0,25,1,0,1261,4502.000000,94,1,2019.460000,hintandextended,nbiot,180 -on11,0,0,26,1,0,1346,4682.000000,94,2,2034.858416,hintandextended,nbiot,180 -on10,0,0,24,1,0,926,4321.000000,95,0,1827.850000,hintandextended,nbiot,180 -on1,0,0,25,1,0,1102,4500.969040,95,1,1826.400824,hintandextended,nbiot,180 -on5,0,0,27,1,0,1104,4862.320000,95,3,2242.425668,hintandextended,nbiot,180 -on9,0,0,24,1,0,302,4323.000000,95,0,1901.313292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,95,0,2563.906708,hintandextended,nbiot,180 -on4,0,0,24,1,0,0,4320.010320,95,0,1754.010836,hintandextended,nbiot,180 -on3,0,0,27,1,0,1160,4861.920000,95,3,2359.454376,hintandextended,nbiot,180 -on2,0,0,24,1,0,800,4321.000000,95,0,1869.066708,hintandextended,nbiot,180 -on8,0,0,25,1,0,1139,4500.651600,95,2,1827.977264,hintandextended,nbiot,180 -on11,0,0,25,1,0,360,4502.968720,95,1,1943.564112,hintandextended,nbiot,180 -on7,0,0,25,1,0,256,4500.379040,95,1,1826.373240,hintandextended,nbiot,180 -on6,0,0,26,1,0,1085,4682.300000,95,2,2195.969792,hintandextended,nbiot,180 -on8,0,0,23,1,0,0,4318.010320,96,0,1903.237544,hintandextended,nbiot,180 -on11,0,0,24,1,0,389,4477.020320,96,1,1907.821336,hintandextended,nbiot,180 -on2,0,0,25,1,0,938,4502.310320,96,1,1962.794252,hintandextended,nbiot,180 -on10,0,0,25,1,0,608,4605.610320,96,2,2220.830752,hintandextended,nbiot,180 -on4,0,0,26,1,0,513,4683.530320,96,2,2134.751960,hintandextended,nbiot,180 -on7,0,0,25,1,0,293,4505.948400,96,1,2128.309276,hintandextended,nbiot,180 -on6,0,0,24,1,0,1503,4320.010320,96,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4325.000000,96,0,1937.370124,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4335.020320,96,0,3483.821336,hintandextended,nbiot,180 -on3,0,0,25,1,0,3240,4501.000000,96,1,1830.963208,hintandextended,nbiot,180 -on5,0,0,24,1,0,2440,4322.969040,96,0,1755.207740,hintandextended,nbiot,180 -on1,0,0,25,1,0,180,4504.969040,96,1,2192.962616,hintandextended,nbiot,180 -on3,0,0,24,1,0,285,4321.000000,97,0,1776.109792,hintandextended,nbiot,180 -on6,0,0,25,1,0,336,4501.510000,97,1,2033.310500,hintandextended,nbiot,180 -on1,0,0,26,1,0,335,4682.969040,97,2,2079.107200,hintandextended,nbiot,180 -on11,0,0,25,1,0,1260,4503.300000,97,1,2174.420000,hintandextended,nbiot,180 -on5,0,0,26,1,0,513,4682.300000,97,2,2174.779792,hintandextended,nbiot,180 -on8,0,0,27,1,0,461,4998.630320,97,4,2644.050004,hintandextended,nbiot,180 -on2,0,0,25,1,0,775,4502.358720,97,2,1943.515112,hintandextended,nbiot,180 -on9,0,0,25,1,0,203,4502.261920,97,1,1942.436600,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4349.010320,97,0,2719.167544,hintandextended,nbiot,180 -on7,0,0,24,1,0,56,4321.020640,97,0,1842.431672,hintandextended,nbiot,180 -on10,0,0,24,1,0,1247,4347.010320,97,0,1764.810836,hintandextended,nbiot,180 -on4,0,0,24,1,0,0,4321.000000,97,0,1787.810000,hintandextended,nbiot,180 -on4,0,0,25,1,0,678,4741.990000,98,3,2427.195376,hintandextended,nbiot,180 -on9,0,0,26,1,0,568,4681.969040,98,2,1915.714032,hintandextended,nbiot,180 -on2,0,0,27,1,0,937,4862.410320,98,3,2385.325712,hintandextended,nbiot,180 -on7,0,0,25,1,0,294,4501.010320,98,1,1942.110836,hintandextended,nbiot,180 -on5,0,0,24,1,0,497,4323.000000,98,0,1945.636584,hintandextended,nbiot,180 -on6,0,0,24,1,0,540,4321.000000,98,0,1769.350000,hintandextended,nbiot,180 -on11,0,0,26,1,0,1011,4682.279040,98,2,2043.231324,hintandextended,nbiot,180 -on8,0,0,26,1,0,838,4682.600000,98,2,2225.326584,hintandextended,nbiot,180 -on10,0,0,26,1,0,655,4684.569040,98,2,2302.047408,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4338.010320,98,0,2424.867544,hintandextended,nbiot,180 -on1,0,0,24,1,0,0,4321.010320,98,0,1869.720836,hintandextended,nbiot,180 -on3,0,0,25,1,0,530,4502.000000,98,1,1939.068208,hintandextended,nbiot,180 -on1,0,0,25,1,0,36,4503.000000,99,1,2008.198168,hintandextended,nbiot,180 -on8,0,0,25,1,0,0,4503.000000,99,1,2094.675000,hintandextended,nbiot,180 -on11,0,0,24,1,0,203,4322.020640,99,0,1946.174964,hintandextended,nbiot,180 -on2,0,0,25,1,0,690,4504.269040,99,1,2038.710824,hintandextended,nbiot,180 -on6,0,0,25,1,0,2146,4502.190000,99,1,2034.232500,hintandextended,nbiot,180 -on7,0,0,25,1,0,568,4501.600000,99,1,2133.433292,hintandextended,nbiot,180 -on4,0,0,25,1,0,737,4504.289680,99,1,2166.379288,hintandextended,nbiot,180 -on5,0,0,26,1,0,379,4681.310320,99,2,2105.880628,hintandextended,nbiot,180 -on10,0,0,25,1,0,180,4506.789360,99,2,2229.597576,hintandextended,nbiot,180 -on3,0,0,25,1,0,0,4504.861920,99,1,2064.739768,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,99,0,2994.206708,hintandextended,nbiot,180 -on9,0,0,26,1,0,460,4684.569040,99,2,2325.409240,hintandextended,nbiot,180 -on5,0,0,25,1,0,1557,4501.600000,100,1,2047.646708,hintandextended,nbiot,180 -on1,0,0,24,1,0,2156,4357.010320,100,0,1885.160836,hintandextended,nbiot,180 -on2,0,0,24,1,0,127,4320.989680,100,0,1754.402580,hintandextended,nbiot,180 -on8,0,0,24,1,0,1800,4320.010320,100,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,26,1,0,919,4680.310320,100,2,1989.130628,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,100,0,2708.856708,hintandextended,nbiot,180 -on6,0,0,26,1,0,676,4683.569040,100,2,2251.344324,hintandextended,nbiot,180 -on4,0,0,25,1,0,451,4502.338080,100,1,1943.305148,hintandextended,nbiot,180 -on11,0,0,24,1,0,555,4321.000000,100,0,1835.650000,hintandextended,nbiot,180 -on10,0,0,24,1,0,1439,4361.010320,100,0,1929.660836,hintandextended,nbiot,180 -on3,0,0,24,1,0,369,4321.000000,100,0,1838.509792,hintandextended,nbiot,180 -on7,0,0,26,1,0,648,4684.589680,100,2,2260.982164,hintandextended,nbiot,180 -on4,0,0,25,1,0,3218,4502.000000,101,1,2034.156500,hintandextended,nbiot,180 -on10,0,0,26,1,0,582,4683.610320,101,2,2273.447212,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4353.020640,101,0,3083.478380,hintandextended,nbiot,180 -on7,0,0,26,1,0,807,4683.979360,101,2,2231.124868,hintandextended,nbiot,180 -on3,0,0,24,1,0,73,4321.969040,101,0,1754.801032,hintandextended,nbiot,180 -on9,0,0,24,1,0,360,4351.041280,101,1,1966.650052,hintandextended,nbiot,180 -on1,0,0,24,1,0,0,4324.979360,101,0,2113.218328,hintandextended,nbiot,180 -on6,0,0,24,1,0,540,4323.979360,101,0,2005.068452,hintandextended,nbiot,180 -on8,0,0,25,1,0,714,4501.989680,101,1,1917.809080,hintandextended,nbiot,180 -on5,0,0,27,1,0,255,4864.569040,101,3,2264.094032,hintandextended,nbiot,180 -on11,0,0,24,1,0,263,4322.989680,101,0,1907.562372,hintandextended,nbiot,180 -on2,0,0,26,1,0,936,4684.300000,101,2,2246.176500,hintandextended,nbiot,180 -on8,0,0,24,1,0,3341,4321.000000,102,0,1788.856708,hintandextended,nbiot,180 -on6,0,0,24,1,0,653,4474.000000,102,1,1815.613208,hintandextended,nbiot,180 -on4,0,0,24,1,0,1980,4322.989680,102,0,1901.452580,hintandextended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,102,0,1728.000000,hintandextended,nbiot,180 -on7,0,0,25,1,0,2880,4502.620640,102,1,1855.870088,hintandextended,nbiot,180 -on3,0,0,24,1,0,2554,4322.989680,102,0,1825.005872,hintandextended,nbiot,180 -on2,0,0,24,1,0,2290,4322.969360,102,1,1871.557660,hintandextended,nbiot,180 -on1,0,0,24,1,0,1980,4322.010320,102,0,1950.727544,hintandextended,nbiot,180 -on5,0,0,24,1,0,464,4321.010320,102,0,1775.224252,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4362.630960,102,0,3207.956008,hintandextended,nbiot,180 -on11,0,0,24,1,0,2340,4321.010320,102,0,1834.360836,hintandextended,nbiot,180 -on9,0,0,25,1,0,3421,4502.310320,102,1,2123.337544,hintandextended,nbiot,180 -on9,0,0,24,0,0,4320,4320.000000,103,0,1728.000000,hintandextended,nbiot,180 -on7,0,0,24,1,0,2080,4320.989680,103,0,1754.402580,hintandextended,nbiot,180 -on1,0,0,26,1,0,721,4687.269040,103,2,2297.252448,hintandextended,nbiot,180 -on5,0,0,23,1,0,529,4312.030960,103,0,2185.299216,hintandextended,nbiot,180 -on2,0,0,26,1,0,695,4681.010320,103,2,1986.180544,hintandextended,nbiot,180 -on4,0,0,25,1,0,1103,4503.300000,103,1,2148.426708,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,103,0,3495.350000,hintandextended,nbiot,180 -on8,0,0,25,1,0,692,4503.020640,103,1,2031.601380,hintandextended,nbiot,180 -on3,0,0,25,1,0,901,4504.010320,103,1,2082.684252,hintandextended,nbiot,180 -on6,0,0,24,1,0,1800,4320.010320,103,0,1754.017544,hintandextended,nbiot,180 -on10,0,0,25,1,0,883,4507.190000,103,1,2337.482748,hintandextended,nbiot,180 -on11,0,0,24,1,0,360,4322.010320,103,0,1943.961044,hintandextended,nbiot,180 -on5,0,0,25,1,0,1800,4503.610320,104,1,2060.359252,hintandextended,nbiot,180 -on3,0,0,25,1,0,537,4504.020000,104,1,2080.686124,hintandextended,nbiot,180 -on4,0,0,25,1,0,2994,4502.000000,104,1,1973.706500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4360.630960,104,0,3122.019216,hintandextended,nbiot,180 -on8,0,0,26,1,0,513,4684.927760,104,2,2054.307728,hintandextended,nbiot,180 -on7,0,0,25,1,0,696,4501.310320,104,1,1933.130836,hintandextended,nbiot,180 -on6,0,0,28,1,0,668,5045.479360,104,4,2642.451952,hintandextended,nbiot,180 -on10,0,0,24,1,0,339,4342.000000,104,0,1950.273624,hintandextended,nbiot,180 -on2,0,0,24,1,0,595,4321.000000,104,0,1809.650000,hintandextended,nbiot,180 -on11,0,0,26,1,0,292,4681.559040,104,2,1960.575116,hintandextended,nbiot,180 -on1,0,0,25,1,0,1080,4502.630960,104,1,1848.724216,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4321.010320,104,0,1869.720836,hintandextended,nbiot,180 -on3,0,0,28,1,0,845,5043.140000,105,5,2496.480460,hintandextended,nbiot,180 -on8,0,0,24,1,0,252,4321.000000,105,0,1797.559792,hintandextended,nbiot,180 -on6,0,0,26,1,0,334,4680.948400,105,2,1898.405776,hintandextended,nbiot,180 -on9,0,0,26,1,0,608,4722.490640,105,3,2007.712464,hintandextended,nbiot,180 -on4,0,0,25,1,0,180,4500.682560,105,1,1826.488148,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4323.620640,105,0,2284.308380,hintandextended,nbiot,180 -on10,0,0,27,1,0,612,4864.200000,105,3,2486.135084,hintandextended,nbiot,180 -on1,0,0,26,1,0,573,4682.480000,105,2,2196.691792,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4323.000000,105,0,1916.906584,hintandextended,nbiot,180 -on5,0,0,26,1,0,342,4681.810000,105,2,2119.275292,hintandextended,nbiot,180 -on2,0,0,25,1,0,450,4502.490000,105,1,2027.117584,hintandextended,nbiot,180 -on11,0,0,25,1,0,693,4502.190000,105,1,2008.219084,hintandextended,nbiot,180 -on1,0,0,25,1,0,2298,4500.010320,106,1,1826.017336,hintandextended,nbiot,180 -on5,0,0,24,1,0,2340,4321.010320,106,0,1870.767544,hintandextended,nbiot,180 -on6,0,0,25,1,0,473,4502.210000,106,1,1835.360624,hintandextended,nbiot,180 -on8,0,0,25,1,0,98,4502.989680,106,1,1990.820996,hintandextended,nbiot,180 -on9,0,0,25,1,0,293,4502.979360,106,1,1968.918160,hintandextended,nbiot,180 -on2,0,0,24,1,0,35,4323.989680,106,0,1963.465872,hintandextended,nbiot,180 -on4,0,0,25,1,0,833,4501.000000,106,1,1877.763208,hintandextended,nbiot,180 -on11,0,0,25,1,0,2646,4501.000000,106,1,1917.406500,hintandextended,nbiot,180 -on7,0,0,24,1,0,900,4322.020640,106,0,1940.714964,hintandextended,nbiot,180 -on3,0,0,25,1,0,237,4503.030960,106,2,1962.042092,hintandextended,nbiot,180 -on10,0,0,24,1,0,2139,4342.010320,106,0,2102.630836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,106,0,2790.756708,hintandextended,nbiot,180 -on1,0,0,25,1,0,907,4502.369040,107,1,1993.556240,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,107,0,3305.550000,hintandextended,nbiot,180 -on8,0,0,24,1,0,1068,4350.010320,107,0,1950.877544,hintandextended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,107,0,1728.000000,hintandextended,nbiot,180 -on6,0,0,25,1,0,1080,4504.010320,107,1,2141.177544,hintandextended,nbiot,180 -on5,0,0,26,1,0,1395,4680.330320,107,2,1989.990128,hintandextended,nbiot,180 -on2,0,0,25,1,0,3198,4500.010320,107,1,1826.017336,hintandextended,nbiot,180 -on11,0,0,25,1,0,1248,4502.020640,107,1,2097.228172,hintandextended,nbiot,180 -on7,0,0,24,1,0,3991,4320.989680,107,0,1754.402580,hintandextended,nbiot,180 -on3,0,0,24,1,0,484,4321.000000,107,0,1764.403292,hintandextended,nbiot,180 -on9,0,0,25,1,0,492,4501.630960,107,1,1826.874216,hintandextended,nbiot,180 -on4,0,0,25,1,0,1616,4504.230640,107,1,2096.825588,hintandextended,nbiot,180 -on7,0,0,26,1,0,626,4683.720000,108,2,2252.905792,hintandextended,nbiot,180 -on6,0,0,24,1,0,243,4321.000000,108,0,1759.203292,hintandextended,nbiot,180 -on4,0,0,25,1,0,180,4504.379360,108,1,1966.040284,hintandextended,nbiot,180 -on2,0,0,24,1,0,1620,4320.010320,108,0,1754.010836,hintandextended,nbiot,180 -on11,0,0,26,1,0,619,4681.310320,108,2,1976.674252,hintandextended,nbiot,180 -on1,0,0,24,1,0,900,4482.969040,108,1,2053.857532,hintandextended,nbiot,180 -on3,0,0,24,1,0,1360,4320.010320,108,0,1754.017544,hintandextended,nbiot,180 -on5,0,0,26,1,0,805,4861.820000,108,3,2375.502500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4392.651280,108,0,2818.933844,hintandextended,nbiot,180 -on10,0,0,24,1,0,384,4321.820000,108,0,1830.128000,hintandextended,nbiot,180 -on9,0,0,25,1,0,1127,4501.000000,108,1,1917.406500,hintandextended,nbiot,180 -on8,0,0,25,1,0,180,4504.041280,108,1,2074.421512,hintandextended,nbiot,180 -on7,0,0,25,1,0,293,4501.958720,109,1,1917.399988,hintandextended,nbiot,180 -on11,0,0,26,1,0,538,4681.341280,109,2,2051.019596,hintandextended,nbiot,180 -on10,0,0,27,1,0,1034,4862.900000,109,3,2385.866500,hintandextended,nbiot,180 -on2,0,0,24,1,0,101,4322.030960,109,0,1937.735800,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,109,0,2688.706708,hintandextended,nbiot,180 -on6,0,0,25,1,0,2119,4502.300000,109,1,2060.920000,hintandextended,nbiot,180 -on4,0,0,25,1,0,213,4502.630960,109,1,1912.534092,hintandextended,nbiot,180 -on1,0,0,25,1,0,879,4502.999680,109,1,2034.563080,hintandextended,nbiot,180 -on9,0,0,26,1,0,626,4682.480000,109,2,2196.301792,hintandextended,nbiot,180 -on8,0,0,25,1,0,540,4503.620640,109,1,1996.020088,hintandextended,nbiot,180 -on3,0,0,25,1,0,360,4504.630960,109,1,2211.814092,hintandextended,nbiot,180 -on5,0,0,25,1,0,473,4501.000000,109,1,1917.601500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,110,0,3011.756708,hintandextended,nbiot,180 -on11,0,0,24,1,0,539,4361.000000,110,0,1810.713416,hintandextended,nbiot,180 -on6,0,0,25,1,0,3053,4501.300000,110,1,1922.070000,hintandextended,nbiot,180 -on2,0,0,27,1,0,375,4864.269040,110,3,2358.697492,hintandextended,nbiot,180 -on5,0,0,25,1,0,1377,4500.010320,110,1,1826.017336,hintandextended,nbiot,180 -on4,0,0,26,1,0,1006,4684.300000,110,2,2263.076708,hintandextended,nbiot,180 -on3,0,0,24,1,0,27,4321.000000,110,0,1827.453292,hintandextended,nbiot,180 -on10,0,0,24,1,0,332,4335.979360,110,0,1831.925284,hintandextended,nbiot,180 -on8,0,0,25,1,0,668,4502.000000,110,1,2034.156500,hintandextended,nbiot,180 -on7,0,0,25,1,0,147,4514.651600,110,1,2224.559180,hintandextended,nbiot,180 -on1,0,0,26,1,0,725,4682.600000,110,2,2276.443000,hintandextended,nbiot,180 -on9,0,0,26,1,0,400,4681.341280,110,4,2104.801428,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4336.620640,111,0,3371.108380,hintandextended,nbiot,180 -on4,0,0,25,1,0,1440,4502.999680,111,1,1891.836496,hintandextended,nbiot,180 -on5,0,0,26,1,0,1954,4684.348400,111,2,2117.977692,hintandextended,nbiot,180 -on10,0,0,24,1,0,1120,4321.989680,111,0,1775.855872,hintandextended,nbiot,180 -on1,0,0,25,1,0,2340,4502.620640,111,1,1870.423380,hintandextended,nbiot,180 -on11,0,0,24,1,0,459,4323.989680,111,0,1946.975996,hintandextended,nbiot,180 -on9,0,0,25,1,0,3521,4501.300000,111,1,1930.526500,hintandextended,nbiot,180 -on8,0,0,25,1,0,2689,4503.289680,111,1,2056.785788,hintandextended,nbiot,180 -on3,0,0,25,1,0,3399,4501.020320,111,1,1908.581336,hintandextended,nbiot,180 -on2,0,0,24,1,0,1260,4476.620320,111,1,1903.976460,hintandextended,nbiot,180 -on6,0,0,26,1,0,2238,4682.589680,111,2,2081.685872,hintandextended,nbiot,180 -on7,0,0,24,1,0,1971,4352.030960,111,0,1869.525800,hintandextended,nbiot,180 -on2,0,0,25,1,0,1373,4502.220320,112,1,1980.178044,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,112,0,3496.650000,hintandextended,nbiot,180 -on11,0,0,26,1,0,1594,4685.979360,112,2,2336.184868,hintandextended,nbiot,180 -on9,0,0,24,1,0,37,4321.979360,112,0,1754.805160,hintandextended,nbiot,180 -on6,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,hintandextended,nbiot,180 -on8,0,0,26,1,0,1266,4684.400000,112,2,2333.805040,hintandextended,nbiot,180 -on1,0,0,24,1,0,1328,4321.010320,112,0,1800.814128,hintandextended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,112,0,1728.000000,hintandextended,nbiot,180 -on3,0,0,24,1,0,1626,4481.300000,112,1,2009.106500,hintandextended,nbiot,180 -on5,0,0,26,1,0,1602,4681.790320,112,2,2098.611044,hintandextended,nbiot,180 -on7,0,0,25,1,0,900,4503.610320,112,1,1942.982668,hintandextended,nbiot,180 -on10,0,0,25,1,0,3032,4500.220320,112,1,1826.101336,hintandextended,nbiot,180 -on10,0,0,26,1,0,1881,4683.638080,113,2,2206.853648,hintandextended,nbiot,180 -on2,0,0,25,1,0,930,4502.600000,113,1,2147.366708,hintandextended,nbiot,180 -on3,0,0,24,1,0,2700,4321.000000,113,0,1845.400000,hintandextended,nbiot,180 -on5,0,0,24,1,0,1800,4321.000000,113,0,1844.360000,hintandextended,nbiot,180 -on1,0,0,24,1,0,677,4322.969040,113,0,1755.214448,hintandextended,nbiot,180 -on6,0,0,24,1,0,784,4320.989680,113,0,1754.402580,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.010320,113,0,2828.467544,hintandextended,nbiot,180 -on4,0,0,24,1,0,900,4321.000000,113,0,1774.160000,hintandextended,nbiot,180 -on9,0,0,24,1,0,2348,4322.000000,113,0,1927.303292,hintandextended,nbiot,180 -on8,0,0,24,1,0,2055,4321.000000,113,0,1796.253292,hintandextended,nbiot,180 -on7,0,0,24,1,0,2233,4322.000000,113,0,1914.700000,hintandextended,nbiot,180 -on11,0,0,27,1,0,2217,4863.269040,113,3,2433.666032,hintandextended,nbiot,180 -on2,0,0,25,1,0,1553,4501.000000,114,1,1917.406500,hintandextended,nbiot,180 -on5,0,0,25,1,0,474,4503.000000,114,1,2056.844584,hintandextended,nbiot,180 -on7,0,0,25,1,0,180,4502.620640,114,1,1988.053256,hintandextended,nbiot,180 -on9,0,0,25,1,0,180,4502.620640,114,1,1999.773380,hintandextended,nbiot,180 -on6,0,0,26,1,0,514,4684.499680,114,2,2196.473080,hintandextended,nbiot,180 -on8,0,0,24,1,0,87,4320.010320,114,0,1754.010836,hintandextended,nbiot,180 -on11,0,0,26,1,0,513,4683.041280,114,2,2151.532888,hintandextended,nbiot,180 -on10,0,0,24,1,0,827,4353.020640,114,1,1883.578172,hintandextended,nbiot,180 -on3,0,0,25,1,0,385,4503.307120,114,2,1962.744680,hintandextended,nbiot,180 -on1,0,0,26,1,0,874,4681.999680,114,2,1963.409664,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4331.620640,114,0,2620.308380,hintandextended,nbiot,180 -on4,0,0,27,1,0,923,4861.540640,114,4,2179.039172,hintandextended,nbiot,180 -on1,0,0,25,1,0,678,4501.000000,115,1,1916.756500,hintandextended,nbiot,180 -on4,0,0,25,1,0,335,4501.220000,115,1,1917.097792,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4355.010320,115,0,2569.467544,hintandextended,nbiot,180 -on10,0,0,26,1,0,807,4681.910320,115,2,2294.094128,hintandextended,nbiot,180 -on5,0,0,26,1,0,373,4683.369040,115,2,2193.810616,hintandextended,nbiot,180 -on2,0,0,25,1,0,1193,4502.000000,115,1,2034.150000,hintandextended,nbiot,180 -on8,0,0,26,1,0,874,4683.000000,115,2,2145.563208,hintandextended,nbiot,180 -on11,0,0,25,1,0,0,4503.569040,115,1,1943.342948,hintandextended,nbiot,180 -on6,0,0,25,1,0,562,4502.938080,115,1,1941.465148,hintandextended,nbiot,180 -on3,0,0,25,1,0,736,4502.300000,115,1,2063.773084,hintandextended,nbiot,180 -on9,0,0,25,1,0,656,4501.300000,115,1,2032.563292,hintandextended,nbiot,180 -on7,0,0,24,1,0,540,4321.010320,115,0,1870.760836,hintandextended,nbiot,180 -on4,0,0,25,1,0,513,4605.369040,116,2,2125.372532,hintandextended,nbiot,180 -on8,0,0,24,1,0,3370,4321.000000,116,0,1760.900000,hintandextended,nbiot,180 -on5,0,0,24,1,0,1080,4320.010320,116,0,1754.010836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4341.010320,116,0,3306.551044,hintandextended,nbiot,180 -on2,0,0,24,1,0,180,4323.979360,116,0,1883.005160,hintandextended,nbiot,180 -on1,0,0,24,1,0,884,4344.010320,116,0,1763.610836,hintandextended,nbiot,180 -on11,0,0,24,1,0,1807,4322.000000,116,0,1871.163416,hintandextended,nbiot,180 -on6,0,0,23,1,0,68,4248.000000,116,0,1725.206708,hintandextended,nbiot,180 -on3,0,0,24,1,0,633,4322.989680,116,1,1870.929204,hintandextended,nbiot,180 -on10,0,0,25,1,0,2455,4500.310320,116,1,1868.380836,hintandextended,nbiot,180 -on7,0,0,24,1,0,463,4324.969040,116,0,2012.354324,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4322.000000,116,0,1840.873416,hintandextended,nbiot,180 -on8,0,0,24,1,0,84,4320.010320,117,0,1754.010836,hintandextended,nbiot,180 -on11,0,0,24,1,0,704,4345.010320,117,0,1769.860836,hintandextended,nbiot,180 -on5,0,0,24,1,0,1260,4322.000000,117,0,1870.506916,hintandextended,nbiot,180 -on2,0,0,24,1,0,180,4322.041280,117,0,1908.503344,hintandextended,nbiot,180 -on4,0,0,24,1,0,1594,4334.010320,117,0,1759.610836,hintandextended,nbiot,180 -on1,0,0,25,1,0,882,4500.010320,117,1,1826.017336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4356.641280,117,0,3026.830052,hintandextended,nbiot,180 -on10,0,0,26,1,0,2707,4681.900000,117,2,2291.476792,hintandextended,nbiot,180 -on3,0,0,25,1,0,1620,4502.989680,117,1,1954.407580,hintandextended,nbiot,180 -on9,0,0,24,1,0,2700,4322.000000,117,0,1871.156708,hintandextended,nbiot,180 -on6,0,0,24,1,0,900,4321.989680,117,0,1808.752580,hintandextended,nbiot,180 -on7,0,0,24,1,0,2678,4441.300000,117,1,1985.495000,hintandextended,nbiot,180 -on2,0,0,24,1,0,3971,4321.000000,118,0,1838.250000,hintandextended,nbiot,180 -on6,0,0,26,1,0,645,4682.589680,118,2,2155.785872,hintandextended,nbiot,180 -on4,0,0,24,1,0,180,4321.000000,118,0,1754.406708,hintandextended,nbiot,180 -on10,0,0,25,1,0,0,4502.969040,118,1,2033.309324,hintandextended,nbiot,180 -on8,0,0,24,1,0,720,4321.989680,118,0,1871.159288,hintandextended,nbiot,180 -on11,0,0,26,1,0,278,4685.900320,118,2,2238.653460,hintandextended,nbiot,180 -on9,0,0,25,1,0,579,4504.620640,118,1,1904.574880,hintandextended,nbiot,180 -on7,0,0,24,1,0,4174,4320.000000,118,0,1754.006500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4366.630960,118,0,3194.619008,hintandextended,nbiot,180 -on5,0,0,25,1,0,807,4576.341280,118,2,2022.963136,hintandextended,nbiot,180 -on1,0,0,25,1,0,380,4503.300000,118,1,2140.496292,hintandextended,nbiot,180 -on3,0,0,24,1,0,267,4323.010320,118,0,1906.017544,hintandextended,nbiot,180 -on4,0,0,24,1,0,962,4324.020640,119,0,1994.431672,hintandextended,nbiot,180 -on8,0,0,25,1,0,258,4634.879360,119,2,2429.598452,hintandextended,nbiot,180 -on2,0,0,25,1,0,900,4502.630960,119,1,1939.080924,hintandextended,nbiot,180 -on9,0,0,25,1,0,686,4502.289680,119,1,1940.015872,hintandextended,nbiot,180 -on5,0,0,24,1,0,611,4324.979360,119,0,1993.521660,hintandextended,nbiot,180 -on6,0,0,24,1,0,39,4321.010320,119,0,1816.030836,hintandextended,nbiot,180 -on7,0,0,25,1,0,333,4576.671920,119,2,1856.702100,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,119,0,3461.563208,hintandextended,nbiot,180 -on11,0,0,25,1,0,3600,4501.000000,119,1,1917.400000,hintandextended,nbiot,180 -on10,0,0,24,1,0,254,4323.989680,119,0,1964.382372,hintandextended,nbiot,180 -on3,0,0,27,1,0,554,4863.269040,119,3,2241.077532,hintandextended,nbiot,180 -on1,0,0,24,1,0,2384,4320.000000,119,0,1754.006708,hintandextended,nbiot,180 -on2,0,0,25,1,0,2136,4501.010000,120,1,1917.410500,hintandextended,nbiot,180 -on11,0,0,24,1,0,293,4411.000000,120,1,2093.306500,hintandextended,nbiot,180 -on10,0,0,24,1,0,286,4323.000000,120,0,1976.453292,hintandextended,nbiot,180 -on5,0,0,25,1,0,180,4502.020640,120,1,2006.129840,hintandextended,nbiot,180 -on8,0,0,26,1,0,663,4681.620640,120,2,2141.754964,hintandextended,nbiot,180 -on7,0,0,26,1,0,748,4684.199680,120,2,2141.506288,hintandextended,nbiot,180 -on9,0,0,24,1,0,601,4324.000000,120,0,2151.716500,hintandextended,nbiot,180 -on3,0,0,25,1,0,813,4502.310320,120,1,2062.887544,hintandextended,nbiot,180 -on1,0,0,24,1,0,0,4323.020640,120,0,2031.348380,hintandextended,nbiot,180 -on6,0,0,26,1,0,372,4681.969040,120,2,1933.952408,hintandextended,nbiot,180 -on4,0,0,25,1,0,1913,4501.220320,120,1,1941.811336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,120,0,2775.156708,hintandextended,nbiot,180 -on8,0,0,24,1,0,631,4356.289680,121,1,1791.272580,hintandextended,nbiot,180 -on11,0,0,25,1,0,28,4503.369040,121,1,2059.612948,hintandextended,nbiot,180 -on1,0,0,24,1,0,1175,4332.010320,121,1,1874.517336,hintandextended,nbiot,180 -on2,0,0,24,1,0,1754,4322.000000,121,0,1875.050000,hintandextended,nbiot,180 -on3,0,0,26,1,0,1620,4680.369040,121,2,1899.214032,hintandextended,nbiot,180 -on7,0,0,26,1,0,958,4683.638080,121,2,2135.490356,hintandextended,nbiot,180 -on10,0,0,25,1,0,1587,4502.020000,121,1,2033.767792,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4324.948400,121,0,1930.712776,hintandextended,nbiot,180 -on9,0,0,25,1,0,1316,4502.300000,121,1,2114.213500,hintandextended,nbiot,180 -on5,0,0,26,1,0,546,4681.310320,121,2,2007.340628,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4336.630960,121,0,2654.819216,hintandextended,nbiot,180 -on4,0,0,25,1,0,518,4501.000000,121,1,1918.258000,hintandextended,nbiot,180 -on4,0,0,25,1,0,2814,4502.000000,122,1,2008.163208,hintandextended,nbiot,180 -on2,0,0,25,1,0,2520,4502.610320,122,1,1850.919252,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4380.251600,122,0,3634.670888,hintandextended,nbiot,180 -on7,0,0,25,1,0,891,4502.010000,122,1,1948.360500,hintandextended,nbiot,180 -on5,0,0,24,1,0,137,4324.030960,122,0,2010.322632,hintandextended,nbiot,180 -on1,0,0,24,1,0,3060,4321.000000,122,0,1845.400000,hintandextended,nbiot,180 -on9,0,0,26,1,0,693,4683.338080,122,2,2068.816856,hintandextended,nbiot,180 -on10,0,0,25,1,0,360,4504.620640,122,1,1973.936796,hintandextended,nbiot,180 -on11,0,0,25,1,0,293,4500.220320,122,1,1826.101336,hintandextended,nbiot,180 -on3,0,0,24,1,0,360,4325.010320,122,0,2022.127544,hintandextended,nbiot,180 -on8,0,0,25,1,0,1767,4500.999680,122,1,1826.419788,hintandextended,nbiot,180 -on6,0,0,24,1,0,898,4359.000000,122,0,1769.613416,hintandextended,nbiot,180 -on8,0,0,24,1,0,344,4344.010320,123,0,1763.610836,hintandextended,nbiot,180 -on11,0,0,25,1,0,1569,4502.300000,123,1,2066.756792,hintandextended,nbiot,180 -on3,0,0,24,1,0,0,4320.010320,123,0,1754.010836,hintandextended,nbiot,180 -on2,0,0,24,1,0,918,4321.000000,123,0,1754.413416,hintandextended,nbiot,180 -on7,0,0,26,1,0,1905,4681.300000,123,2,1981.278208,hintandextended,nbiot,180 -on1,0,0,25,1,0,1696,4501.300000,123,1,1980.173292,hintandextended,nbiot,180 -on9,0,0,25,1,0,720,4501.620640,123,1,1914.606672,hintandextended,nbiot,180 -on5,0,0,27,1,0,1926,4862.810000,123,3,2360.467084,hintandextended,nbiot,180 -on6,0,0,25,1,0,1565,4500.969040,123,1,1826.407532,hintandextended,nbiot,180 -on4,0,0,24,1,0,1495,4322.000000,123,0,1879.469792,hintandextended,nbiot,180 -on10,0,0,24,1,0,1271,4320.000000,123,0,1754.006708,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,123,0,2610.056708,hintandextended,nbiot,180 -on1,0,0,26,1,0,491,4785.341280,124,3,2147.506220,hintandextended,nbiot,180 -on2,0,0,24,1,0,329,4422.000000,124,1,1950.806500,hintandextended,nbiot,180 -on11,0,0,26,1,0,267,4683.390000,124,2,2081.660252,hintandextended,nbiot,180 -on5,0,0,27,1,0,880,4862.300000,124,3,2158.366168,hintandextended,nbiot,180 -on10,0,0,26,1,0,514,4681.480000,124,2,2079.291792,hintandextended,nbiot,180 -on9,0,0,25,1,0,180,4501.748400,124,1,1917.244360,hintandextended,nbiot,180 -on6,0,0,25,1,0,868,4502.190000,124,1,2021.882500,hintandextended,nbiot,180 -on8,0,0,24,1,0,0,4321.000000,124,0,1755.966708,hintandextended,nbiot,180 -on3,0,0,25,1,0,855,4656.690000,124,4,1983.095416,hintandextended,nbiot,180 -on7,0,0,28,1,0,710,5044.420000,124,5,2756.348960,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,124,0,2334.456708,hintandextended,nbiot,180 -on4,0,0,24,1,0,113,4418.220000,124,1,2061.815792,hintandextended,nbiot,180 -on6,0,0,24,1,0,32,4321.000000,125,0,1781.966708,hintandextended,nbiot,180 -on2,0,0,25,1,0,533,4533.300000,125,2,2020.669792,hintandextended,nbiot,180 -on8,0,0,25,1,0,474,4501.010320,125,1,1956.878836,hintandextended,nbiot,180 -on3,0,0,25,1,0,720,4501.000000,125,1,1917.400000,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4321.020640,125,0,1800.831672,hintandextended,nbiot,180 -on9,0,0,26,1,0,693,4682.300000,125,2,2067.926500,hintandextended,nbiot,180 -on5,0,0,26,1,0,333,4683.210000,125,2,2008.340376,hintandextended,nbiot,180 -on1,0,0,24,1,0,283,4346.010320,125,1,1766.627336,hintandextended,nbiot,180 -on10,0,0,26,1,0,693,4682.010320,125,2,2039.873836,hintandextended,nbiot,180 -on11,0,0,26,1,0,291,4682.190000,125,3,1971.065624,hintandextended,nbiot,180 -on4,0,0,25,1,0,360,4501.020640,125,1,1888.151548,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,125,0,2277.906708,hintandextended,nbiot,180 -on9,0,0,25,1,0,720,4504.938080,126,1,1907.983940,hintandextended,nbiot,180 -on11,0,0,25,1,0,787,4502.051600,126,2,1973.590640,hintandextended,nbiot,180 -on8,0,0,26,1,0,1170,4681.600000,126,2,2146.283292,hintandextended,nbiot,180 -on10,0,0,25,1,0,1195,4502.289680,126,1,1933.782372,hintandextended,nbiot,180 -on1,0,0,25,1,0,3533,4501.000000,126,1,1917.406500,hintandextended,nbiot,180 -on7,0,0,24,1,0,540,4323.010320,126,0,2019.104336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,126,0,3379.383708,hintandextended,nbiot,180 -on6,0,0,24,1,0,842,4322.010320,126,1,1874.007628,hintandextended,nbiot,180 -on3,0,0,24,1,0,370,4322.979360,126,0,1844.248452,hintandextended,nbiot,180 -on2,0,0,24,1,0,927,4322.989680,126,0,1945.002580,hintandextended,nbiot,180 -on5,0,0,27,1,0,1111,4864.661600,126,3,2472.397764,hintandextended,nbiot,180 -on4,0,0,24,1,0,3124,4347.310320,126,1,1946.540836,hintandextended,nbiot,180 -on4,0,0,24,1,0,0,4322.000000,127,0,1894.413292,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,127,0,3515.500000,hintandextended,nbiot,180 -on9,0,0,26,1,0,446,4684.289680,127,2,2107.085788,hintandextended,nbiot,180 -on8,0,0,24,1,0,1131,4323.979360,127,0,1860.261868,hintandextended,nbiot,180 -on11,0,0,24,1,0,673,4324.010320,127,0,1983.780960,hintandextended,nbiot,180 -on10,0,0,25,1,0,0,4502.600000,127,1,1855.211832,hintandextended,nbiot,180 -on2,0,0,25,1,0,294,4505.969040,127,1,2030.759032,hintandextended,nbiot,180 -on1,0,0,25,1,0,900,4502.041280,127,1,2028.986636,hintandextended,nbiot,180 -on7,0,0,24,1,0,1440,4321.010320,127,0,1754.424252,hintandextended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,127,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,25,1,0,1013,4501.210000,127,1,1940.910416,hintandextended,nbiot,180 -on6,0,0,24,1,0,774,4323.010320,127,0,1949.184252,hintandextended,nbiot,180 -on1,0,0,24,1,0,3780,4321.010320,128,0,1870.760836,hintandextended,nbiot,180 -on7,0,0,24,1,0,435,4321.010320,128,0,1796.264128,hintandextended,nbiot,180 -on11,0,0,25,1,0,1914,4501.010320,128,1,1942.774044,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4322.000000,128,0,1807.066708,hintandextended,nbiot,180 -on3,0,0,24,1,0,1404,4326.030960,128,0,1951.432508,hintandextended,nbiot,180 -on8,0,0,24,0,0,4074,4452.300000,128,1,1983.076500,hintandextended,nbiot,180 -on5,0,0,24,1,0,960,4324.989680,128,0,1984.165996,hintandextended,nbiot,180 -on4,0,0,26,1,0,365,4684.969040,128,2,2153.182532,hintandextended,nbiot,180 -on9,0,0,25,1,0,587,4503.979360,128,1,2024.171660,hintandextended,nbiot,180 -on10,0,0,24,1,0,380,4350.292880,128,1,1847.588984,hintandextended,nbiot,180 -on2,0,0,25,1,0,113,4504.240960,128,1,2108.133008,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,128,0,3570.750000,hintandextended,nbiot,180 -on1,0,0,26,1,0,627,4683.300000,129,2,2240.173084,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,129,0,2660.106708,hintandextended,nbiot,180 -on4,0,0,25,1,0,535,4501.190000,129,1,1916.832500,hintandextended,nbiot,180 -on7,0,0,26,1,0,775,4681.600000,129,2,2080.243084,hintandextended,nbiot,180 -on11,0,0,25,1,0,720,4502.630960,129,1,2021.864300,hintandextended,nbiot,180 -on6,0,0,25,1,0,0,4503.630960,129,1,2042.687508,hintandextended,nbiot,180 -on3,0,0,24,1,0,313,4321.989680,129,0,1870.112580,hintandextended,nbiot,180 -on10,0,0,24,1,0,16,4322.020640,129,0,1918.218256,hintandextended,nbiot,180 -on5,0,0,24,1,0,1620,4321.000000,129,0,1845.400000,hintandextended,nbiot,180 -on8,0,0,26,1,0,513,4685.179040,129,2,2227.086200,hintandextended,nbiot,180 -on2,0,0,25,1,0,900,4503.620320,129,2,2060.369752,hintandextended,nbiot,180 -on9,0,0,26,1,0,548,4681.341280,129,3,1917.166344,hintandextended,nbiot,180 -on8,0,0,24,1,0,302,4352.030960,130,1,1766.825592,hintandextended,nbiot,180 -on3,0,0,25,1,0,2,4503.010320,130,1,2015.522544,hintandextended,nbiot,180 -on11,0,0,26,1,0,474,4828.189680,130,3,2268.878956,hintandextended,nbiot,180 -on9,0,0,25,1,0,193,4504.030960,130,1,1997.905884,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4321.410000,130,0,1844.127292,hintandextended,nbiot,180 -on6,0,0,25,1,0,360,4501.969040,130,2,1943.554448,hintandextended,nbiot,180 -on10,0,0,24,1,0,540,4460.738080,130,1,1926.860356,hintandextended,nbiot,180 -on4,0,0,27,1,0,481,4862.920640,130,3,2351.209840,hintandextended,nbiot,180 -on5,0,0,23,1,0,419,4292.000000,130,0,1794.800000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4341.302880,130,0,2530.374732,hintandextended,nbiot,180 -on1,0,0,24,1,0,1439,4359.010320,130,0,1769.610836,hintandextended,nbiot,180 -on2,0,0,25,1,0,215,4502.300000,130,1,2114.610000,hintandextended,nbiot,180 -on4,0,0,24,1,0,180,4477.630640,131,1,2129.924296,hintandextended,nbiot,180 -on7,0,0,26,1,0,693,4685.948400,131,2,2182.102360,hintandextended,nbiot,180 -on1,0,0,25,1,0,180,4503.979360,131,1,2035.748576,hintandextended,nbiot,180 -on5,0,0,24,1,0,1412,4333.000000,131,0,1759.213416,hintandextended,nbiot,180 -on11,0,0,25,1,0,518,4505.189040,131,1,1977.147032,hintandextended,nbiot,180 -on8,0,0,25,1,0,258,4501.072240,131,1,1885.163936,hintandextended,nbiot,180 -on9,0,0,24,1,0,303,4322.020640,131,0,1768.068256,hintandextended,nbiot,180 -on6,0,0,26,1,0,650,4682.220320,131,3,2017.819668,hintandextended,nbiot,180 -on3,0,0,25,1,0,4254,4500.000000,131,1,1826.013000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4322.630640,131,0,3380.468672,hintandextended,nbiot,180 -on2,0,0,26,1,0,520,4684.600000,131,2,2399.690000,hintandextended,nbiot,180 -on10,0,0,25,1,0,543,4587.520000,131,2,2147.014500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,132,0,2396.206708,hintandextended,nbiot,180 -on4,0,0,24,1,0,0,4320.010320,132,0,1754.010836,hintandextended,nbiot,180 -on5,0,0,27,1,0,732,4862.900000,132,3,2409.253084,hintandextended,nbiot,180 -on9,0,0,24,1,0,757,4321.000000,132,0,1820.310000,hintandextended,nbiot,180 -on11,0,0,26,1,0,1099,4681.300000,132,2,2080.519792,hintandextended,nbiot,180 -on7,0,0,24,1,0,180,4320.010320,132,0,1754.010836,hintandextended,nbiot,180 -on2,0,0,26,1,0,542,4682.489040,132,2,2032.603532,hintandextended,nbiot,180 -on6,0,0,24,1,0,627,4322.000000,132,0,1899.100000,hintandextended,nbiot,180 -on10,0,0,23,1,0,399,4225.000000,132,0,1744.203292,hintandextended,nbiot,180 -on1,0,0,25,1,0,360,4503.000000,132,1,2038.255000,hintandextended,nbiot,180 -on3,0,0,25,1,0,721,4501.969040,132,1,1865.014324,hintandextended,nbiot,180 -on8,0,0,24,1,0,0,4320.010320,132,0,1754.010836,hintandextended,nbiot,180 -on1,0,0,24,1,0,58,4322.969040,133,0,1923.797616,hintandextended,nbiot,180 -on10,0,0,24,1,0,579,4322.300000,133,1,1933.293624,hintandextended,nbiot,180 -on5,0,0,24,1,0,3,4378.630960,133,1,1928.980800,hintandextended,nbiot,180 -on8,0,0,25,1,0,833,4501.000000,133,1,1826.413416,hintandextended,nbiot,180 -on7,0,0,24,1,0,360,4320.010320,133,0,1754.010836,hintandextended,nbiot,180 -on3,0,0,24,1,0,1260,4321.000000,133,0,1754.413416,hintandextended,nbiot,180 -on4,0,0,26,1,0,2193,4682.300000,133,2,2084.618292,hintandextended,nbiot,180 -on11,0,0,24,1,0,1904,4322.000000,133,0,1894.550000,hintandextended,nbiot,180 -on6,0,0,24,1,0,205,4322.989680,133,1,1859.209288,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4344.620320,133,0,2761.761460,hintandextended,nbiot,180 -on9,0,0,25,1,0,731,4503.000000,133,1,2108.910000,hintandextended,nbiot,180 -on2,0,0,25,1,0,1987,4501.300000,133,1,1986.016584,hintandextended,nbiot,180 -on10,0,0,25,1,0,3461,4501.300000,134,1,2007.870000,hintandextended,nbiot,180 -on7,0,0,25,1,0,1733,4501.000000,134,1,1915.963292,hintandextended,nbiot,180 -on1,0,0,25,1,0,1801,4502.348400,134,1,1826.959484,hintandextended,nbiot,180 -on11,0,0,24,1,0,180,4323.010320,134,0,2068.770836,hintandextended,nbiot,180 -on6,0,0,24,1,0,720,4321.010320,134,0,1857.117544,hintandextended,nbiot,180 -on2,0,0,24,1,0,1341,4321.010320,134,0,1782.367544,hintandextended,nbiot,180 -on9,0,0,25,1,0,514,4501.989680,134,1,1885.309080,hintandextended,nbiot,180 -on5,0,0,24,1,0,1080,4323.010320,134,0,2014.424128,hintandextended,nbiot,180 -on3,0,0,25,1,0,180,4503.630960,134,1,2058.684216,hintandextended,nbiot,180 -on8,0,0,25,1,0,2159,4501.989680,134,1,1917.809080,hintandextended,nbiot,180 -on4,0,0,25,1,0,1839,4501.051600,134,1,1864.342472,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4326.610320,134,0,3148.697544,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,135,0,3716.350000,hintandextended,nbiot,180 -on6,0,0,25,1,0,294,4505.620640,135,1,2125.143504,hintandextended,nbiot,180 -on11,0,0,27,1,0,998,4862.289680,135,3,2149.887080,hintandextended,nbiot,180 -on3,0,0,25,1,0,873,4651.520320,135,2,2144.664628,hintandextended,nbiot,180 -on2,0,0,26,1,0,513,4684.490000,135,3,2304.102708,hintandextended,nbiot,180 -on5,0,0,26,1,0,694,4686.289680,135,2,2222.539080,hintandextended,nbiot,180 -on7,0,0,24,1,0,448,4322.938080,135,0,1788.338648,hintandextended,nbiot,180 -on10,0,0,27,1,0,688,4865.810000,135,3,2446.485168,hintandextended,nbiot,180 -on1,0,0,27,1,0,578,4862.510000,135,4,2154.070416,hintandextended,nbiot,180 -on8,0,0,24,1,0,303,4323.000000,135,0,1959.430000,hintandextended,nbiot,180 -on9,0,0,25,1,0,754,4569.279360,135,2,2178.341452,hintandextended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,135,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,24,1,0,0,4323.010320,136,0,1931.244252,hintandextended,nbiot,180 -on6,0,0,24,1,0,503,4327.989680,136,0,2004.872704,hintandextended,nbiot,180 -on2,0,0,24,1,0,201,4352.999680,136,1,1859.194788,hintandextended,nbiot,180 -on11,0,0,24,0,0,4228,4320.300000,136,1,1753.853500,hintandextended,nbiot,180 -on10,0,0,24,1,0,720,4321.989680,136,0,1754.815996,hintandextended,nbiot,180 -on8,0,0,24,1,0,2336,4358.000000,136,0,1851.763416,hintandextended,nbiot,180 -on3,0,0,26,1,0,1449,4681.979680,136,2,2000.926580,hintandextended,nbiot,180 -on1,0,0,24,1,0,236,4434.369360,136,2,1799.969576,hintandextended,nbiot,180 -on4,0,0,26,1,0,1305,4685.469040,136,2,2144.568948,hintandextended,nbiot,180 -on9,0,0,24,1,0,1080,4321.000000,136,0,1780.010000,hintandextended,nbiot,180 -on7,0,0,25,1,0,1409,4501.210000,136,1,1916.450292,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,136,0,3534.343500,hintandextended,nbiot,180 -on1,0,0,24,1,0,2497,4338.010320,137,0,1877.560836,hintandextended,nbiot,180 -on9,0,0,24,1,0,464,4457.300000,137,1,2073.860000,hintandextended,nbiot,180 -on8,0,0,26,1,0,520,4682.600000,137,2,2220.783500,hintandextended,nbiot,180 -on6,0,0,25,1,0,540,4504.610320,137,1,2110.665836,hintandextended,nbiot,180 -on7,0,0,26,1,0,872,4684.979040,137,2,2156.111532,hintandextended,nbiot,180 -on3,0,0,25,1,0,293,4505.189360,137,1,1983.575660,hintandextended,nbiot,180 -on5,0,0,26,1,0,842,4684.900000,137,2,2321.953416,hintandextended,nbiot,180 -on10,0,0,24,1,0,360,4321.000000,137,0,1831.353292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4389.630960,137,0,2947.069216,hintandextended,nbiot,180 -on11,0,0,24,1,0,180,4321.000000,137,0,1819.010000,hintandextended,nbiot,180 -on4,0,0,24,1,0,297,4320.010320,137,0,1754.010836,hintandextended,nbiot,180 -on2,0,0,24,1,0,360,4449.630960,137,1,2242.457384,hintandextended,nbiot,180 -on10,0,0,27,1,0,763,4861.910000,138,4,2332.026668,hintandextended,nbiot,180 -on7,0,0,24,1,0,491,4324.799680,138,0,1870.346704,hintandextended,nbiot,180 -on5,0,0,24,1,0,360,4322.989680,138,0,1893.275996,hintandextended,nbiot,180 -on1,0,0,25,1,0,585,4502.230000,138,1,2008.970000,hintandextended,nbiot,180 -on8,0,0,24,1,0,204,4321.041280,138,0,1754.436636,hintandextended,nbiot,180 -on4,0,0,26,1,0,847,4681.300000,138,2,2053.856376,hintandextended,nbiot,180 -on3,0,0,25,1,0,1440,4503.000000,138,1,1991.468416,hintandextended,nbiot,180 -on9,0,0,26,1,0,897,4684.169040,138,2,2135.189240,hintandextended,nbiot,180 -on2,0,0,24,1,0,2231,4321.000000,138,0,1799.250000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4351.010320,138,0,2953.967544,hintandextended,nbiot,180 -on11,0,0,27,1,0,930,4866.189680,138,3,2568.012580,hintandextended,nbiot,180 -on6,0,0,26,1,0,714,4682.730320,138,3,2223.844920,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,139,0,3620.800000,hintandextended,nbiot,180 -on3,0,0,25,1,0,1560,4595.000000,139,2,2223.086416,hintandextended,nbiot,180 -on1,0,0,26,1,0,1699,4683.279360,139,2,2175.379744,hintandextended,nbiot,180 -on7,0,0,24,1,0,37,4322.969040,139,0,1755.207740,hintandextended,nbiot,180 -on2,0,0,25,1,0,1742,4522.620640,139,2,2152.483296,hintandextended,nbiot,180 -on9,0,0,24,1,0,1260,4325.020640,139,0,1884.748504,hintandextended,nbiot,180 -on5,0,0,24,1,0,900,4322.000320,139,0,1754.833460,hintandextended,nbiot,180 -on10,0,0,24,1,0,762,4321.000000,139,0,1754.413416,hintandextended,nbiot,180 -on4,0,0,25,1,0,1435,4501.180000,139,1,1916.438292,hintandextended,nbiot,180 -on11,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,hintandextended,nbiot,180 -on6,0,0,25,1,0,1080,4502.999680,139,1,1941.886496,hintandextended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,139,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,24,1,0,540,4321.010320,140,0,1839.560836,hintandextended,nbiot,180 -on10,0,0,25,1,0,490,4502.969040,140,1,1963.700824,hintandextended,nbiot,180 -on8,0,0,25,1,0,1062,4500.010320,140,1,1826.017336,hintandextended,nbiot,180 -on7,0,0,24,1,0,754,4321.989680,140,0,1870.119288,hintandextended,nbiot,180 -on11,0,0,24,1,0,1213,4320.989680,140,0,1754.402580,hintandextended,nbiot,180 -on2,0,0,24,1,0,1800,4321.000000,140,0,1845.400000,hintandextended,nbiot,180 -on1,0,0,25,1,0,506,4500.330960,140,1,1921.689092,hintandextended,nbiot,180 -on3,0,0,25,1,0,236,4504.000000,140,1,2199.595000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4351.010320,140,0,2605.567544,hintandextended,nbiot,180 -on6,0,0,24,1,0,1708,4320.989680,140,0,1754.402580,hintandextended,nbiot,180 -on9,0,0,24,1,0,310,4321.000000,140,0,1760.503292,hintandextended,nbiot,180 -on4,0,0,24,1,0,478,4321.000000,140,0,1768.050000,hintandextended,nbiot,180 -on6,0,0,25,1,0,180,4502.861920,141,1,2057.973184,hintandextended,nbiot,180 -on3,0,0,25,1,0,938,4502.020640,141,1,1955.723380,hintandextended,nbiot,180 -on10,0,0,26,1,0,565,4682.900000,141,2,2268.990084,hintandextended,nbiot,180 -on2,0,0,25,1,0,1041,4501.000000,141,1,1917.009792,hintandextended,nbiot,180 -on9,0,0,25,1,0,210,4503.979360,141,1,2056.710036,hintandextended,nbiot,180 -on7,0,0,26,1,0,538,4680.979360,141,3,1901.824784,hintandextended,nbiot,180 -on1,0,0,27,1,0,847,4863.799680,141,3,2360.479456,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4330.861920,141,0,2661.111724,hintandextended,nbiot,180 -on8,0,0,25,1,0,426,4503.300000,141,1,2088.230000,hintandextended,nbiot,180 -on5,0,0,24,1,0,2996,4322.000000,141,0,1886.750000,hintandextended,nbiot,180 -on4,0,0,26,1,0,604,4682.341280,141,2,2102.633096,hintandextended,nbiot,180 -on11,0,0,24,1,0,180,4331.010320,141,1,1891.062836,hintandextended,nbiot,180 -on1,0,0,25,1,0,112,4503.030960,142,1,2148.182384,hintandextended,nbiot,180 -on6,0,0,28,1,0,531,5041.500000,142,5,2525.549584,hintandextended,nbiot,180 -on2,0,0,25,1,0,18,4504.000000,142,1,2192.808376,hintandextended,nbiot,180 -on4,0,0,24,1,0,0,4321.000000,142,0,1843.963292,hintandextended,nbiot,180 -on8,0,0,28,1,0,710,5043.200000,142,4,2638.003376,hintandextended,nbiot,180 -on3,0,0,27,1,0,449,4898.710000,142,4,2619.135044,hintandextended,nbiot,180 -on9,0,0,25,1,0,507,4501.010000,142,1,1878.845376,hintandextended,nbiot,180 -on7,0,0,26,1,0,343,4681.969040,142,2,1960.543908,hintandextended,nbiot,180 -on11,0,0,26,1,0,600,4681.600000,142,2,2107.283292,hintandextended,nbiot,180 -on10,0,0,25,1,0,394,4501.000000,142,1,2006.775000,hintandextended,nbiot,180 -on5,0,0,25,1,0,360,4500.692880,142,1,1826.492276,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4345.630960,142,0,2284.669216,hintandextended,nbiot,180 -on1,0,0,24,1,0,1260,4450.010320,143,1,1934.060836,hintandextended,nbiot,180 -on7,0,0,24,1,0,900,4322.000000,143,0,1870.123416,hintandextended,nbiot,180 -on10,0,0,24,1,0,518,4419.630960,143,1,1988.417716,hintandextended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,143,0,1728.000000,hintandextended,nbiot,180 -on9,0,0,24,1,0,511,4332.010320,143,0,1775.067544,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,143,0,3399.533500,hintandextended,nbiot,180 -on2,0,0,24,1,0,2160,4320.010320,143,0,1754.010836,hintandextended,nbiot,180 -on3,0,0,24,1,0,1080,4324.989680,143,0,1905.775996,hintandextended,nbiot,180 -on6,0,0,24,1,0,1163,4323.569360,143,1,1979.047660,hintandextended,nbiot,180 -on8,0,0,25,1,0,834,4501.020640,143,1,1870.628172,hintandextended,nbiot,180 -on11,0,0,25,1,0,1117,4505.358720,143,1,2021.032028,hintandextended,nbiot,180 -on5,0,0,25,1,0,1373,4505.189360,143,1,2116.059076,hintandextended,nbiot,180 -on6,0,0,24,1,0,1800,4458.020320,144,1,1912.578044,hintandextended,nbiot,180 -on4,0,0,25,1,0,2160,4502.758720,144,1,2042.071904,hintandextended,nbiot,180 -on8,0,0,24,1,0,42,4322.000000,144,0,1871.163416,hintandextended,nbiot,180 -on9,0,0,25,1,0,2160,4502.000000,144,1,1979.601584,hintandextended,nbiot,180 -on3,0,0,25,1,0,900,4501.010000,144,1,1826.423916,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4366.872240,144,0,2976.472560,hintandextended,nbiot,180 -on10,0,0,24,1,0,3060,4321.000000,144,0,1845.400000,hintandextended,nbiot,180 -on7,0,0,25,1,0,728,4502.999680,144,1,1923.628204,hintandextended,nbiot,180 -on5,0,0,25,1,0,2340,4503.989680,144,2,1999.917580,hintandextended,nbiot,180 -on1,0,0,25,1,0,2345,4500.271920,144,2,1826.323892,hintandextended,nbiot,180 -on2,0,0,24,1,0,720,4321.000000,144,0,1845.003292,hintandextended,nbiot,180 -on11,0,0,24,1,0,2989,4321.989680,144,0,1760.002580,hintandextended,nbiot,180 -on10,0,0,26,1,0,421,4684.000000,145,2,2178.162752,hintandextended,nbiot,180 -on3,0,0,24,1,0,32,4321.000000,145,0,1844.366708,hintandextended,nbiot,180 -on8,0,0,27,1,0,672,4861.900000,145,3,2342.813084,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4346.010320,145,0,2249.317544,hintandextended,nbiot,180 -on5,0,0,26,1,0,383,4681.948400,145,3,1970.507484,hintandextended,nbiot,180 -on1,0,0,24,1,0,0,4321.000000,145,0,1843.320000,hintandextended,nbiot,180 -on6,0,0,24,1,0,584,4499.210000,145,1,1916.690500,hintandextended,nbiot,180 -on4,0,0,26,1,0,157,4767.541280,145,3,2241.609680,hintandextended,nbiot,180 -on7,0,0,25,1,0,391,4501.000000,145,1,1891.139792,hintandextended,nbiot,180 -on11,0,0,25,1,0,280,4621.600000,145,2,2120.333292,hintandextended,nbiot,180 -on9,0,0,25,1,0,63,4502.000000,145,1,2085.961500,hintandextended,nbiot,180 -on2,0,0,25,1,0,385,4501.307120,145,2,1826.737972,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4344.020640,146,0,2364.228380,hintandextended,nbiot,180 -on5,0,0,25,1,0,540,4504.000000,146,1,1978.731708,hintandextended,nbiot,180 -on4,0,0,24,1,0,825,4322.000000,146,0,1883.500000,hintandextended,nbiot,180 -on10,0,0,25,1,0,741,4501.300000,146,2,2020.213292,hintandextended,nbiot,180 -on6,0,0,25,1,0,720,4504.041280,146,1,2055.883096,hintandextended,nbiot,180 -on7,0,0,27,1,0,1026,4863.269040,146,4,2242.610284,hintandextended,nbiot,180 -on1,0,0,26,1,0,1414,4682.600000,146,2,2245.489792,hintandextended,nbiot,180 -on11,0,0,25,1,0,1125,4500.389680,146,2,1827.879204,hintandextended,nbiot,180 -on8,0,0,27,1,0,849,4861.900000,146,3,2358.153084,hintandextended,nbiot,180 -on9,0,0,24,1,0,580,4322.000000,146,0,1935.753292,hintandextended,nbiot,180 -on3,0,0,25,1,0,548,4502.041280,146,1,1962.094928,hintandextended,nbiot,180 -on2,0,0,27,1,0,1142,4863.200000,146,3,2592.666376,hintandextended,nbiot,180 -on4,0,0,24,1,0,327,4328.020640,147,0,1872.531672,hintandextended,nbiot,180 -on5,0,0,25,1,0,510,4501.989360,147,1,1826.822368,hintandextended,nbiot,180 -on10,0,0,25,1,0,2634,4502.010000,147,1,2004.513792,hintandextended,nbiot,180 -on11,0,0,25,1,0,2520,4503.630960,147,1,2035.017508,hintandextended,nbiot,180 -on1,0,0,24,1,0,540,4320.010320,147,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,24,1,0,180,4323.958720,147,0,1900.800404,hintandextended,nbiot,180 -on6,0,0,26,1,0,1070,4684.538720,147,2,2016.602028,hintandextended,nbiot,180 -on7,0,0,25,1,0,1063,4505.979360,147,1,2175.381660,hintandextended,nbiot,180 -on2,0,0,24,1,0,360,4322.010320,147,0,1754.837668,hintandextended,nbiot,180 -on8,0,0,24,1,0,3759,4339.010320,147,0,1761.610836,hintandextended,nbiot,180 -on3,0,0,25,1,0,293,4501.020640,147,1,1942.778172,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,147,0,3360.156708,hintandextended,nbiot,180 -on1,0,0,25,1,0,1553,4500.010320,148,1,1826.017336,hintandextended,nbiot,180 -on11,0,0,25,1,0,786,4505.300000,148,1,2193.563416,hintandextended,nbiot,180 -on4,0,0,25,1,0,522,4623.310320,148,2,2176.547336,hintandextended,nbiot,180 -on10,0,0,25,1,0,180,4503.989360,148,1,2024.812244,hintandextended,nbiot,180 -on8,0,0,24,1,0,2,4322.010320,148,0,1960.464128,hintandextended,nbiot,180 -on3,0,0,25,1,0,26,4501.010000,148,1,1930.235624,hintandextended,nbiot,180 -on6,0,0,26,1,0,628,4682.948400,148,2,2017.265484,hintandextended,nbiot,180 -on5,0,0,24,1,0,532,4352.010320,148,0,1766.810836,hintandextended,nbiot,180 -on7,0,0,27,1,0,784,4980.569040,148,4,2542.908032,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4358.020320,148,0,3077.678044,hintandextended,nbiot,180 -on9,0,0,26,1,0,936,4682.300000,148,2,2167.623084,hintandextended,nbiot,180 -on2,0,0,25,1,0,1979,4621.620000,148,2,2234.546084,hintandextended,nbiot,180 -on4,0,0,25,1,0,1440,4502.620640,149,1,1896.170088,hintandextended,nbiot,180 -on2,0,0,25,1,0,1933,4503.010320,149,1,2076.420628,hintandextended,nbiot,180 -on6,0,0,24,1,0,1232,4334.000000,149,0,1805.763416,hintandextended,nbiot,180 -on1,0,0,24,1,0,920,4474.300000,149,1,2097.956708,hintandextended,nbiot,180 -on3,0,0,24,1,0,765,4323.989680,149,0,1876.132704,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4365.251600,149,0,3444.064180,hintandextended,nbiot,180 -on10,0,0,26,1,0,1346,4682.520320,149,2,2151.221336,hintandextended,nbiot,180 -on7,0,0,24,1,0,18,4323.010320,149,0,1995.320836,hintandextended,nbiot,180 -on9,0,0,25,1,0,900,4504.589680,149,1,1960.664412,hintandextended,nbiot,180 -on5,0,0,24,1,0,720,4320.620320,149,0,1754.254836,hintandextended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,149,0,1728.000000,hintandextended,nbiot,180 -on11,0,0,25,1,0,1800,4504.630960,149,1,2112.774216,hintandextended,nbiot,180 -on1,0,0,25,1,0,1069,4500.200320,150,1,1826.093336,hintandextended,nbiot,180 -on10,0,0,24,1,0,1080,4321.000000,150,0,1754.413416,hintandextended,nbiot,180 -on7,0,0,24,0,0,4320,4320.000000,150,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,24,1,0,19,4320.989680,150,0,1754.402580,hintandextended,nbiot,180 -on2,0,0,24,1,0,467,4323.958720,150,0,1776.656904,hintandextended,nbiot,180 -on6,0,0,26,1,0,899,4683.528400,150,2,1988.241192,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,150,0,3208.050000,hintandextended,nbiot,180 -on8,0,0,24,1,0,3134,4320.000000,150,0,1754.006708,hintandextended,nbiot,180 -on11,0,0,24,1,0,1419,4339.020640,150,0,1761.621672,hintandextended,nbiot,180 -on3,0,0,24,1,0,661,4321.989680,150,0,1870.496080,hintandextended,nbiot,180 -on9,0,0,25,1,0,861,4502.000000,150,1,2032.719792,hintandextended,nbiot,180 -on4,0,0,25,1,0,387,4503.620640,150,1,2031.763380,hintandextended,nbiot,180 -on7,0,0,25,1,0,361,4501.451600,151,1,1941.910764,hintandextended,nbiot,180 -on8,0,0,26,1,0,806,4682.499680,151,2,2106.363080,hintandextended,nbiot,180 -on11,0,0,25,1,0,1192,4501.010000,151,1,1917.404000,hintandextended,nbiot,180 -on6,0,0,24,1,0,67,4323.000000,151,0,1986.873416,hintandextended,nbiot,180 -on3,0,0,25,1,0,655,4501.190000,151,1,1917.482500,hintandextended,nbiot,180 -on5,0,0,26,1,0,333,4686.000000,151,2,2255.391624,hintandextended,nbiot,180 -on2,0,0,24,1,0,1208,4320.000000,151,0,1754.006708,hintandextended,nbiot,180 -on10,0,0,25,1,0,168,4503.030640,151,1,1992.838756,hintandextended,nbiot,180 -on9,0,0,26,1,0,1237,4682.600000,151,2,2281.363292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4362.620640,151,0,2734.108380,hintandextended,nbiot,180 -on1,0,0,24,1,0,900,4320.041280,151,0,1754.029928,hintandextended,nbiot,180 -on4,0,0,25,1,0,294,4502.000000,151,1,2008.878000,hintandextended,nbiot,180 -on1,0,0,24,1,0,87,4321.000000,152,0,1788.453292,hintandextended,nbiot,180 -on9,0,0,26,1,0,639,4812.310000,152,3,2333.766876,hintandextended,nbiot,180 -on8,0,0,24,1,0,32,4352.000000,152,1,1892.465124,hintandextended,nbiot,180 -on11,0,0,26,1,0,470,4682.600000,152,3,2261.739792,hintandextended,nbiot,180 -on10,0,0,26,1,0,513,4682.000000,152,2,2051.522960,hintandextended,nbiot,180 -on7,0,0,25,1,0,454,4501.300000,152,1,1966.478000,hintandextended,nbiot,180 -on2,0,0,25,1,0,0,4502.610320,152,1,1941.912752,hintandextended,nbiot,180 -on5,0,0,25,1,0,360,4502.061920,152,1,1930.407936,hintandextended,nbiot,180 -on3,0,0,25,1,0,383,4500.948400,152,1,1826.594484,hintandextended,nbiot,180 -on4,0,0,25,1,0,180,4502.990000,152,1,2005.575916,hintandextended,nbiot,180 -on6,0,0,26,1,0,718,4683.300000,152,2,2313.623084,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4355.620640,152,0,2285.161796,hintandextended,nbiot,180 -on1,0,0,25,1,0,1194,4502.500320,153,2,1995.623128,hintandextended,nbiot,180 -on10,0,0,25,1,0,1800,4501.000000,153,1,1917.205000,hintandextended,nbiot,180 -on8,0,0,24,1,0,297,4321.010320,153,0,1869.720836,hintandextended,nbiot,180 -on9,0,0,25,1,0,1431,4503.300000,153,1,2070.673292,hintandextended,nbiot,180 -on11,0,0,24,1,0,1396,4458.989680,153,1,1934.850872,hintandextended,nbiot,180 -on7,0,0,26,1,0,1118,4682.300000,153,2,2160.486500,hintandextended,nbiot,180 -on4,0,0,25,1,0,675,4502.051280,153,1,2008.197136,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4369.020640,153,0,2841.325088,hintandextended,nbiot,180 -on6,0,0,24,1,0,179,4359.010320,153,0,1769.610836,hintandextended,nbiot,180 -on2,0,0,24,1,0,1620,4321.000000,153,0,1754.413416,hintandextended,nbiot,180 -on5,0,0,24,1,0,720,4322.989680,153,0,1960.472580,hintandextended,nbiot,180 -on3,0,0,25,1,0,956,4501.230320,153,1,1918.350128,hintandextended,nbiot,180 -on9,0,0,24,1,0,540,4323.979360,154,0,1867.918452,hintandextended,nbiot,180 -on5,0,0,24,1,0,1040,4325.010320,154,0,2180.480960,hintandextended,nbiot,180 -on10,0,0,24,0,0,4320,4320.000000,154,0,1728.000000,hintandextended,nbiot,180 -on2,0,0,26,1,0,1087,4683.900000,154,3,2255.044792,hintandextended,nbiot,180 -on11,0,0,27,1,0,1067,4863.258720,154,3,2153.336612,hintandextended,nbiot,180 -on3,0,0,24,1,0,667,4322.000000,154,0,1870.123416,hintandextended,nbiot,180 -on4,0,0,25,1,0,770,4502.989680,154,1,2014.922580,hintandextended,nbiot,180 -on7,0,0,24,1,0,540,4392.989680,154,1,1874.020996,hintandextended,nbiot,180 -on8,0,0,25,1,0,1024,4503.289680,154,1,1996.836080,hintandextended,nbiot,180 -on1,0,0,27,1,0,1246,4860.920320,154,3,2230.699628,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4343.630960,154,0,3397.949092,hintandextended,nbiot,180 -on6,0,0,24,1,0,328,4329.000000,154,0,1757.613416,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4351.020320,155,0,2840.878044,hintandextended,nbiot,180 -on10,0,0,24,1,0,471,4321.989680,155,0,1773.652580,hintandextended,nbiot,180 -on2,0,0,25,1,0,1193,4503.010320,155,1,2031.317544,hintandextended,nbiot,180 -on3,0,0,27,1,0,599,4863.627760,155,3,2177.982728,hintandextended,nbiot,180 -on6,0,0,25,1,0,180,4504.958720,155,1,2150.527112,hintandextended,nbiot,180 -on1,0,0,25,1,0,2627,4502.300000,155,1,2027.120000,hintandextended,nbiot,180 -on9,0,0,24,1,0,1669,4321.989680,155,0,1779.502580,hintandextended,nbiot,180 -on7,0,0,24,1,0,900,4321.000000,155,0,1788.863416,hintandextended,nbiot,180 -on5,0,0,24,1,0,533,4482.210000,155,1,2142.193792,hintandextended,nbiot,180 -on4,0,0,25,1,0,842,4503.989680,155,1,2060.959080,hintandextended,nbiot,180 -on11,0,0,24,1,0,359,4361.989680,155,0,1906.015996,hintandextended,nbiot,180 -on8,0,0,24,1,0,180,4452.041280,155,1,1994.744928,hintandextended,nbiot,180 -on11,0,0,27,1,0,850,4861.210320,156,3,2267.592420,hintandextended,nbiot,180 -on1,0,0,26,1,0,446,4682.369040,156,2,1960.516032,hintandextended,nbiot,180 -on7,0,0,24,1,0,194,4320.989680,156,0,1754.409288,hintandextended,nbiot,180 -on9,0,0,25,1,0,860,4501.000000,156,1,1916.366292,hintandextended,nbiot,180 -on3,0,0,25,1,0,1790,4501.000000,156,1,1917.406500,hintandextended,nbiot,180 -on4,0,0,24,1,0,1,4322.000000,156,0,1833.710000,hintandextended,nbiot,180 -on10,0,0,24,1,0,540,4321.010320,156,0,1870.760836,hintandextended,nbiot,180 -on8,0,0,25,1,0,671,4503.000000,156,1,2078.373208,hintandextended,nbiot,180 -on5,0,0,25,1,0,0,4504.630960,156,1,2151.240800,hintandextended,nbiot,180 -on2,0,0,26,1,0,874,4681.000000,156,2,1986.169708,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4355.630960,156,0,2676.719216,hintandextended,nbiot,180 -on6,0,0,25,1,0,334,4502.300000,156,1,2118.893292,hintandextended,nbiot,180 -on2,0,0,24,1,0,1620,4362.010320,157,1,1852.112420,hintandextended,nbiot,180 -on11,0,0,25,1,0,1440,4501.620640,157,1,1870.009964,hintandextended,nbiot,180 -on1,0,0,24,1,0,407,4321.989680,157,0,1758.065996,hintandextended,nbiot,180 -on6,0,0,25,1,0,1080,4503.610320,157,1,2030.459252,hintandextended,nbiot,180 -on8,0,0,26,1,0,2126,4682.530320,157,2,2076.468628,hintandextended,nbiot,180 -on5,0,0,24,1,0,540,4320.010320,157,0,1754.010836,hintandextended,nbiot,180 -on7,0,0,24,1,0,180,4322.010320,157,0,1866.617544,hintandextended,nbiot,180 -on9,0,0,25,1,0,1977,4501.020000,157,1,1917.616000,hintandextended,nbiot,180 -on3,0,0,24,0,0,4320,4320.000000,157,0,1728.000000,hintandextended,nbiot,180 -on10,0,0,26,1,0,1775,4684.269040,157,2,2173.384032,hintandextended,nbiot,180 -on4,0,0,24,1,0,1556,4321.989680,157,0,1754.822704,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4343.620640,157,0,3175.651672,hintandextended,nbiot,180 -on10,0,0,25,1,0,1620,4503.969040,158,1,2085.312616,hintandextended,nbiot,180 -on5,0,0,25,1,0,1426,4501.989680,158,1,1917.809080,hintandextended,nbiot,180 -on3,0,0,25,1,0,1068,4501.000000,158,1,1917.861292,hintandextended,nbiot,180 -on11,0,0,24,1,0,180,4321.000000,158,0,1833.700000,hintandextended,nbiot,180 -on4,0,0,26,1,0,1092,4682.578720,158,2,2014.563112,hintandextended,nbiot,180 -on8,0,0,25,1,0,119,4501.989680,158,1,1826.822496,hintandextended,nbiot,180 -on2,0,0,25,1,0,1914,4502.000000,158,1,2034.156500,hintandextended,nbiot,180 -on6,0,0,24,1,0,2143,4343.010320,158,0,1763.210836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4366.261920,158,0,2849.081724,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4322.989680,158,0,1960.856080,hintandextended,nbiot,180 -on7,0,0,24,1,0,566,4321.969040,158,0,1855.551032,hintandextended,nbiot,180 -on1,0,0,25,1,0,1620,4503.020640,158,1,2112.773380,hintandextended,nbiot,180 -on2,0,0,24,1,0,180,4322.000000,159,0,1843.713292,hintandextended,nbiot,180 -on10,0,0,28,1,0,894,5043.430000,159,4,2554.004668,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4356.630960,159,0,2490.569216,hintandextended,nbiot,180 -on6,0,0,25,1,0,180,4503.672240,159,1,2121.464104,hintandextended,nbiot,180 -on8,0,0,25,1,0,1734,4501.000000,159,1,1917.406500,hintandextended,nbiot,180 -on7,0,0,24,1,0,396,4320.030960,159,0,1754.019092,hintandextended,nbiot,180 -on9,0,0,26,1,0,1053,4683.358720,159,2,2103.015112,hintandextended,nbiot,180 -on1,0,0,24,1,0,395,4321.000000,159,0,1822.000000,hintandextended,nbiot,180 -on5,0,0,26,1,0,595,4839.630960,159,3,2140.492092,hintandextended,nbiot,180 -on11,0,0,26,1,0,514,4683.300000,159,2,2311.679584,hintandextended,nbiot,180 -on3,0,0,25,1,0,1228,4501.320640,159,1,1886.601672,hintandextended,nbiot,180 -on4,0,0,24,1,0,730,4321.000000,159,0,1838.900000,hintandextended,nbiot,180 -on9,0,0,25,1,0,1193,4502.000000,160,1,2034.156500,hintandextended,nbiot,180 -on2,0,0,26,1,0,379,4685.458400,160,2,2211.618068,hintandextended,nbiot,180 -on11,0,0,25,1,0,925,4672.369040,160,2,2013.462532,hintandextended,nbiot,180 -on6,0,0,24,1,0,10,4322.000000,160,0,1891.813292,hintandextended,nbiot,180 -on10,0,0,26,1,0,513,4680.969040,160,2,1898.414032,hintandextended,nbiot,180 -on8,0,0,24,1,0,900,4320.010320,160,0,1754.010836,hintandextended,nbiot,180 -on5,0,0,24,1,0,250,4322.000000,160,0,1839.929876,hintandextended,nbiot,180 -on4,0,0,25,1,0,0,4503.000000,160,1,1992.365000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,160,0,2455.356708,hintandextended,nbiot,180 -on3,0,0,26,1,0,624,4793.110000,160,3,2332.190376,hintandextended,nbiot,180 -on1,0,0,26,1,0,390,4682.969040,160,2,2105.893908,hintandextended,nbiot,180 -on7,0,0,26,1,0,447,4683.510000,160,2,2222.655292,hintandextended,nbiot,180 -on11,0,0,25,1,0,540,4503.358720,161,2,1943.922028,hintandextended,nbiot,180 -on2,0,0,25,1,0,613,4504.289680,161,1,2131.922580,hintandextended,nbiot,180 -on8,0,0,25,1,0,360,4503.000000,161,1,2053.061584,hintandextended,nbiot,180 -on7,0,0,27,1,0,913,4862.889360,161,3,2191.727368,hintandextended,nbiot,180 -on6,0,0,24,1,0,3036,4336.010320,161,0,1760.410836,hintandextended,nbiot,180 -on5,0,0,25,1,0,190,4504.258720,161,1,2254.350072,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,161,0,3040.740208,hintandextended,nbiot,180 -on9,0,0,24,1,0,903,4432.000000,161,1,1889.409792,hintandextended,nbiot,180 -on1,0,0,25,1,0,332,4564.010000,161,2,2127.905584,hintandextended,nbiot,180 -on4,0,0,24,1,0,0,4374.610320,161,1,1890.329252,hintandextended,nbiot,180 -on3,0,0,24,1,0,1393,4336.420320,161,1,1760.581336,hintandextended,nbiot,180 -on10,0,0,25,1,0,491,4505.979360,161,1,2211.774952,hintandextended,nbiot,180 -on1,0,0,24,1,0,563,4352.389680,162,2,1813.320996,hintandextended,nbiot,180 -on5,0,0,24,1,0,83,4321.000000,162,0,1838.913416,hintandextended,nbiot,180 -on8,0,0,24,1,0,2160,4321.000000,162,0,1845.400000,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4321.000000,162,0,1813.160000,hintandextended,nbiot,180 -on3,0,0,25,1,0,1371,4500.310320,162,1,1830.687336,hintandextended,nbiot,180 -on4,0,0,24,1,0,1440,4322.000000,162,0,1871.163416,hintandextended,nbiot,180 -on2,0,0,25,1,0,290,4501.369040,162,2,1914.512532,hintandextended,nbiot,180 -on6,0,0,25,1,0,540,4502.989680,162,1,2034.155872,hintandextended,nbiot,180 -on9,0,0,24,1,0,152,4383.230640,162,1,1870.760256,hintandextended,nbiot,180 -on11,0,0,24,1,0,436,4323.010320,162,0,1986.884252,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4353.641280,162,0,2884.580052,hintandextended,nbiot,180 -on10,0,0,24,1,0,180,4321.010320,162,0,1790.167544,hintandextended,nbiot,180 -on1,0,0,26,1,0,876,4682.900000,163,2,2430.203292,hintandextended,nbiot,180 -on8,0,0,24,1,0,565,4461.300000,163,1,1991.863084,hintandextended,nbiot,180 -on2,0,0,24,1,0,205,4323.000000,163,0,1965.273500,hintandextended,nbiot,180 -on4,0,0,26,1,0,596,4682.330960,163,2,2085.580508,hintandextended,nbiot,180 -on3,0,0,26,1,0,294,4681.041280,163,3,2081.431344,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,163,0,2404.006708,hintandextended,nbiot,180 -on11,0,0,28,1,0,664,5042.900000,163,5,2462.636252,hintandextended,nbiot,180 -on5,0,0,24,1,0,484,4383.180000,163,1,1933.536708,hintandextended,nbiot,180 -on9,0,0,26,1,0,217,4683.459040,163,2,2129.600200,hintandextended,nbiot,180 -on10,0,0,25,1,0,93,4501.600000,163,1,2056.285000,hintandextended,nbiot,180 -on6,0,0,27,1,0,747,4862.900000,163,3,2463.716584,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4321.000000,163,0,1793.926708,hintandextended,nbiot,180 -on1,0,0,24,1,0,219,4323.030960,164,0,1936.185592,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,164,0,3311.406708,hintandextended,nbiot,180 -on11,0,0,25,1,0,767,4503.989680,164,1,2143.840788,hintandextended,nbiot,180 -on9,0,0,24,1,0,360,4323.979360,164,0,1978.568576,hintandextended,nbiot,180 -on2,0,0,25,1,0,571,4502.327760,164,1,1827.152936,hintandextended,nbiot,180 -on8,0,0,26,1,0,334,4681.989680,164,2,1961.222288,hintandextended,nbiot,180 -on6,0,0,26,1,0,848,4839.079680,164,3,2341.881872,hintandextended,nbiot,180 -on3,0,0,25,1,0,3101,4501.300000,164,1,2007.870000,hintandextended,nbiot,180 -on10,0,0,24,1,0,507,4329.000000,164,0,1771.920124,hintandextended,nbiot,180 -on5,0,0,27,1,0,487,4865.589680,164,3,2489.960456,hintandextended,nbiot,180 -on7,0,0,24,1,0,0,4323.010320,164,0,1987.520836,hintandextended,nbiot,180 -on4,0,0,26,1,0,600,4687.910320,164,2,2768.791044,hintandextended,nbiot,180 -on3,0,0,25,1,0,1053,4656.261280,165,2,1992.777512,hintandextended,nbiot,180 -on9,0,0,26,1,0,1645,4681.610320,165,2,2197.000628,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4349.272240,165,0,2780.295768,hintandextended,nbiot,180 -on1,0,0,26,1,0,1298,4683.490000,165,2,2314.095792,hintandextended,nbiot,180 -on10,0,0,24,1,0,83,4321.979360,165,0,1787.311868,hintandextended,nbiot,180 -on7,0,0,28,1,0,1475,5044.079040,165,4,2574.889408,hintandextended,nbiot,180 -on2,0,0,25,1,0,2340,4501.000000,165,2,1917.205000,hintandextended,nbiot,180 -on8,0,0,25,1,0,720,4503.989680,165,1,2032.807580,hintandextended,nbiot,180 -on4,0,0,25,1,0,900,4502.651600,165,1,2032.258932,hintandextended,nbiot,180 -on6,0,0,25,1,0,1060,4502.190000,165,1,2032.542500,hintandextended,nbiot,180 -on11,0,0,24,1,0,1475,4323.989680,165,0,1890.022372,hintandextended,nbiot,180 -on5,0,0,26,1,0,1100,4681.300000,165,2,2082.222792,hintandextended,nbiot,180 -on2,0,0,26,1,0,1012,4686.810000,166,2,2439.118792,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4359.010320,166,0,3269.167544,hintandextended,nbiot,180 -on11,0,0,24,1,0,180,4321.010320,166,0,1764.817544,hintandextended,nbiot,180 -on1,0,0,25,1,0,1045,4529.879360,166,2,2241.615160,hintandextended,nbiot,180 -on3,0,0,25,1,0,3106,4502.000000,166,1,2034.156500,hintandextended,nbiot,180 -on9,0,0,24,1,0,489,4321.010320,166,0,1870.760836,hintandextended,nbiot,180 -on6,0,0,26,1,0,1053,4681.979040,166,2,2006.724740,hintandextended,nbiot,180 -on7,0,0,24,1,0,763,4323.000000,166,0,2001.550000,hintandextended,nbiot,180 -on10,0,0,24,1,0,1838,4323.010320,166,0,1861.830960,hintandextended,nbiot,180 -on8,0,0,24,1,0,2595,4321.010320,166,0,1765.467544,hintandextended,nbiot,180 -on4,0,0,24,1,0,912,4322.010320,166,0,1952.670628,hintandextended,nbiot,180 -on5,0,0,24,1,0,279,4322.979360,166,0,1873.511868,hintandextended,nbiot,180 -on3,0,0,23,1,0,2150,4311.000000,167,0,1841.400000,hintandextended,nbiot,180 -on7,0,0,26,1,0,673,4685.258720,167,2,2050.930112,hintandextended,nbiot,180 -on1,0,0,24,1,0,394,4323.000000,167,0,2039.256708,hintandextended,nbiot,180 -on11,0,0,24,1,0,239,4322.000000,167,0,1918.463292,hintandextended,nbiot,180 -on4,0,0,26,1,0,806,4683.730320,167,2,2217.556836,hintandextended,nbiot,180 -on8,0,0,25,1,0,1193,4500.010320,167,1,1826.017336,hintandextended,nbiot,180 -on10,0,0,25,1,0,321,4504.630960,167,1,2011.217384,hintandextended,nbiot,180 -on5,0,0,25,1,0,904,4629.910320,167,2,2023.044128,hintandextended,nbiot,180 -on9,0,0,26,1,0,513,4682.210000,167,2,1983.390292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,167,0,2590.556708,hintandextended,nbiot,180 -on6,0,0,24,1,0,360,4321.210000,167,0,1754.497416,hintandextended,nbiot,180 -on2,0,0,26,1,0,513,4681.510000,167,2,2079.953792,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4340.241280,168,0,2496.110052,hintandextended,nbiot,180 -on5,0,0,24,1,0,540,4320.010320,168,0,1754.010836,hintandextended,nbiot,180 -on1,0,0,24,1,0,0,4325.000000,168,0,2091.660208,hintandextended,nbiot,180 -on9,0,0,24,1,0,1195,4321.000000,168,0,1770.650000,hintandextended,nbiot,180 -on6,0,0,25,1,0,360,4505.000000,168,1,2216.621584,hintandextended,nbiot,180 -on2,0,0,24,1,0,180,4339.020640,168,1,1946.228380,hintandextended,nbiot,180 -on8,0,0,25,1,0,372,4502.769040,168,1,1968.164324,hintandextended,nbiot,180 -on7,0,0,25,1,0,294,4500.000000,168,1,1826.019708,hintandextended,nbiot,180 -on4,0,0,24,1,0,477,4320.010320,168,0,1754.017544,hintandextended,nbiot,180 -on11,0,0,25,1,0,1053,4501.000000,168,1,1917.861292,hintandextended,nbiot,180 -on10,0,0,26,1,0,1286,4681.790000,168,2,2160.665792,hintandextended,nbiot,180 -on3,0,0,25,1,0,1054,4613.338080,168,2,1871.556856,hintandextended,nbiot,180 -on4,0,0,25,1,0,1063,4503.310320,169,1,2102.294044,hintandextended,nbiot,180 -on1,0,0,24,1,0,2340,4321.000000,169,0,1807.706708,hintandextended,nbiot,180 -on8,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,hintandextended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,169,0,1728.000000,hintandextended,nbiot,180 -on7,0,0,24,1,0,1476,4323.010320,169,0,1966.474252,hintandextended,nbiot,180 -on5,0,0,24,1,0,565,4320.010000,169,0,1754.017208,hintandextended,nbiot,180 -on6,0,0,25,1,0,540,4502.979360,169,1,2028.328576,hintandextended,nbiot,180 -on11,0,0,24,1,0,739,4321.989680,169,0,1833.452580,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4355.020320,169,0,3175.271336,hintandextended,nbiot,180 -on10,0,0,25,1,0,2520,4502.010000,169,1,1867.773916,hintandextended,nbiot,180 -on9,0,0,26,1,0,937,4685.289680,169,2,2242.295788,hintandextended,nbiot,180 -on3,0,0,24,1,0,1800,4320.010320,169,0,1754.010836,hintandextended,nbiot,180 -on2,0,0,24,1,0,360,4321.010320,170,0,1870.760836,hintandextended,nbiot,180 -on10,0,0,25,1,0,335,4502.330320,170,1,2101.368420,hintandextended,nbiot,180 -on3,0,0,25,1,0,448,4502.369040,170,2,2031.067324,hintandextended,nbiot,180 -on6,0,0,24,1,0,360,4320.010320,170,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,24,1,0,180,4322.000000,170,0,1878.170000,hintandextended,nbiot,180 -on5,0,0,24,1,0,720,4320.010320,170,0,1754.010836,hintandextended,nbiot,180 -on4,0,0,25,1,0,995,4596.600000,170,2,2221.691292,hintandextended,nbiot,180 -on1,0,0,25,1,0,1222,4500.310320,170,1,1850.830836,hintandextended,nbiot,180 -on11,0,0,25,1,0,654,4501.010320,170,1,1941.727336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4364.020640,170,0,2400.828380,hintandextended,nbiot,180 -on7,0,0,25,1,0,834,4502.020320,170,1,1996.471336,hintandextended,nbiot,180 -on8,0,0,25,1,0,516,4501.310320,170,1,1859.940836,hintandextended,nbiot,180 -on6,0,0,25,1,0,113,4504.220000,171,1,2221.002584,hintandextended,nbiot,180 -on4,0,0,25,1,0,266,4501.210000,171,1,1893.180084,hintandextended,nbiot,180 -on7,0,0,28,1,0,711,5042.900000,171,5,2543.009584,hintandextended,nbiot,180 -on8,0,0,24,1,0,0,4320.958720,171,0,1754.403404,hintandextended,nbiot,180 -on2,0,0,24,1,0,266,4474.300000,171,2,2118.229792,hintandextended,nbiot,180 -on10,0,0,25,1,0,414,4502.269040,171,1,1953.651324,hintandextended,nbiot,180 -on1,0,0,28,1,0,613,5042.720320,171,4,2663.831212,hintandextended,nbiot,180 -on11,0,0,25,1,0,284,4506.061920,171,2,1891.682768,hintandextended,nbiot,180 -on9,0,0,26,1,0,601,4681.300000,171,2,2081.124292,hintandextended,nbiot,180 -on5,0,0,25,1,0,1260,4501.000000,171,1,1917.400000,hintandextended,nbiot,180 -on3,0,0,28,1,0,393,5043.719680,171,5,2594.225332,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,171,0,2552.863208,hintandextended,nbiot,180 -on4,0,0,25,1,0,3354,4501.000000,172,1,1917.406500,hintandextended,nbiot,180 -on2,0,0,24,1,0,1425,4322.199680,172,1,1870.203080,hintandextended,nbiot,180 -on9,0,0,24,1,0,745,4323.989680,172,0,1938.772580,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,172,0,3493.406708,hintandextended,nbiot,180 -on1,0,0,25,1,0,1744,4500.010320,172,1,1826.017336,hintandextended,nbiot,180 -on11,0,0,24,1,0,1326,4320.020640,172,0,1754.021672,hintandextended,nbiot,180 -on10,0,0,25,1,0,226,4503.010320,172,1,2081.887336,hintandextended,nbiot,180 -on6,0,0,25,1,0,587,4502.010320,172,1,1879.467336,hintandextended,nbiot,180 -on8,0,0,24,1,0,0,4323.010320,172,0,2000.137544,hintandextended,nbiot,180 -on7,0,0,25,1,0,360,4503.010320,172,1,2029.374252,hintandextended,nbiot,180 -on5,0,0,25,1,0,738,4503.610320,172,1,1944.015960,hintandextended,nbiot,180 -on3,0,0,25,1,0,180,4502.630960,172,1,1903.577508,hintandextended,nbiot,180 -on2,0,0,26,1,0,513,4684.938080,173,2,2178.468356,hintandextended,nbiot,180 -on10,0,0,24,1,0,994,4320.989680,173,0,1754.402580,hintandextended,nbiot,180 -on7,0,0,24,1,0,323,4326.020640,173,0,1873.681672,hintandextended,nbiot,180 -on8,0,0,25,1,0,0,4501.651600,173,1,1941.145764,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4351.651280,173,0,3206.833844,hintandextended,nbiot,180 -on5,0,0,25,1,0,717,4502.010000,173,1,2013.620500,hintandextended,nbiot,180 -on1,0,0,24,1,0,259,4372.300000,173,1,2072.750000,hintandextended,nbiot,180 -on3,0,0,25,1,0,833,4503.199680,173,1,2034.246372,hintandextended,nbiot,180 -on9,0,0,25,1,0,2880,4501.020320,173,1,1942.771336,hintandextended,nbiot,180 -on6,0,0,24,1,0,19,4321.389680,173,0,1871.179080,hintandextended,nbiot,180 -on11,0,0,25,1,0,1620,4502.010000,173,1,1943.173916,hintandextended,nbiot,180 -on4,0,0,28,1,0,602,5046.589360,173,4,2665.464160,hintandextended,nbiot,180 -on11,0,0,25,1,0,406,4505.989680,174,1,2183.979204,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,174,0,3743.000000,hintandextended,nbiot,180 -on5,0,0,26,1,0,874,4683.168720,174,2,1981.200612,hintandextended,nbiot,180 -on3,0,0,24,1,0,845,4321.989680,174,0,1763.512372,hintandextended,nbiot,180 -on1,0,0,23,1,0,180,4302.030960,174,0,1750.342508,hintandextended,nbiot,180 -on4,0,0,25,1,0,705,4502.000000,174,1,1893.379916,hintandextended,nbiot,180 -on7,0,0,24,1,0,540,4322.000000,174,0,1864.273416,hintandextended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,174,0,1728.000000,hintandextended,nbiot,180 -on8,0,0,26,1,0,874,4682.300000,174,2,2080.933208,hintandextended,nbiot,180 -on6,0,0,24,1,0,3828,4320.010320,174,0,1754.010836,hintandextended,nbiot,180 -on9,0,0,24,1,0,1524,4395.300000,174,1,1979.133416,hintandextended,nbiot,180 -on10,0,0,24,1,0,360,4322.030960,174,0,1970.885800,hintandextended,nbiot,180 -on10,0,0,26,1,0,822,4681.720000,175,2,2054.225876,hintandextended,nbiot,180 -on4,0,0,24,1,0,695,4388.210000,175,1,2030.890500,hintandextended,nbiot,180 -on9,0,0,26,1,0,334,4682.020640,175,2,2129.448172,hintandextended,nbiot,180 -on7,0,0,24,1,0,20,4320.390000,175,0,1772.882708,hintandextended,nbiot,180 -on1,0,0,25,1,0,693,4503.958720,175,1,2060.303404,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,175,0,2456.006708,hintandextended,nbiot,180 -on5,0,0,25,1,0,642,4502.380000,175,1,2033.470000,hintandextended,nbiot,180 -on11,0,0,26,1,0,831,4768.900000,175,4,2278.566168,hintandextended,nbiot,180 -on3,0,0,27,1,0,889,4862.510000,175,3,2226.870208,hintandextended,nbiot,180 -on6,0,0,27,1,0,1027,4863.600000,175,3,2472.583084,hintandextended,nbiot,180 -on2,0,0,26,1,0,239,4682.600000,175,2,2293.849792,hintandextended,nbiot,180 -on8,0,0,24,1,0,302,4322.969040,175,0,1798.990700,hintandextended,nbiot,180 -on3,0,0,26,1,0,1632,4683.600000,176,2,2183.510124,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4368.020640,176,0,3086.215172,hintandextended,nbiot,180 -on11,0,0,25,1,0,1260,4504.000000,176,1,2146.815000,hintandextended,nbiot,180 -on10,0,0,25,1,0,668,4502.989680,176,1,1972.419080,hintandextended,nbiot,180 -on7,0,0,26,1,0,1593,4681.989680,176,2,1986.565788,hintandextended,nbiot,180 -on8,0,0,24,1,0,906,4322.030640,176,1,1948.135464,hintandextended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,176,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,24,1,0,900,4320.010320,176,0,1754.010836,hintandextended,nbiot,180 -on4,0,0,24,1,0,360,4322.000000,176,0,1870.123416,hintandextended,nbiot,180 -on9,0,0,24,1,0,770,4321.000000,176,0,1805.366708,hintandextended,nbiot,180 -on6,0,0,24,1,0,1541,4323.000000,176,0,1902.106708,hintandextended,nbiot,180 -on2,0,0,25,1,0,550,4502.358720,176,1,1914.908612,hintandextended,nbiot,180 -on6,0,0,26,1,0,1347,4682.600000,177,2,2258.099792,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,177,0,3851.556500,hintandextended,nbiot,180 -on5,0,0,24,1,0,4140,4320.000000,177,0,1754.006500,hintandextended,nbiot,180 -on9,0,0,25,1,0,1476,4503.630960,177,1,2025.930924,hintandextended,nbiot,180 -on11,0,0,25,1,0,720,4502.010320,177,1,1942.134252,hintandextended,nbiot,180 -on1,0,0,24,1,0,360,4323.020640,177,0,2076.828256,hintandextended,nbiot,180 -on4,0,0,26,1,0,746,4683.559040,177,2,2136.511948,hintandextended,nbiot,180 -on3,0,0,23,1,0,547,4254.989680,177,0,2118.269288,hintandextended,nbiot,180 -on10,0,0,25,1,0,833,4503.969040,177,1,1905.614240,hintandextended,nbiot,180 -on7,0,0,25,1,0,1436,4502.000000,177,1,2034.156500,hintandextended,nbiot,180 -on8,0,0,24,1,0,230,4324.000000,177,0,1929.833540,hintandextended,nbiot,180 -on2,0,0,24,1,0,97,4324.948400,177,0,1828.156192,hintandextended,nbiot,180 -on4,0,0,25,1,0,701,4501.000000,178,1,1917.406500,hintandextended,nbiot,180 -on11,0,0,24,1,0,1747,4323.989680,178,0,2039.009288,hintandextended,nbiot,180 -on5,0,0,25,1,0,3816,4680.600000,178,2,2299.809792,hintandextended,nbiot,180 -on3,0,0,24,1,0,2558,4321.000000,178,0,1870.756708,hintandextended,nbiot,180 -on8,0,0,25,1,0,180,4502.610320,178,1,1942.952752,hintandextended,nbiot,180 -on10,0,0,25,1,0,686,4505.979360,178,1,2221.141660,hintandextended,nbiot,180 -on1,0,0,26,1,0,725,4683.497440,178,2,1900.492224,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,178,0,3687.106708,hintandextended,nbiot,180 -on6,0,0,25,1,0,1554,4502.989680,178,1,1919.073996,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4322.989680,178,0,1776.665996,hintandextended,nbiot,180 -on9,0,0,24,1,0,2115,4321.020640,178,0,1796.671672,hintandextended,nbiot,180 -on7,0,0,25,1,0,729,4502.279360,178,1,2042.718452,hintandextended,nbiot,180 -on10,0,0,26,1,0,897,4716.889680,179,4,2396.608956,hintandextended,nbiot,180 -on8,0,0,29,1,0,805,5224.689360,179,5,2707.057452,hintandextended,nbiot,180 -on7,0,0,26,1,0,694,4681.600000,179,2,2092.976792,hintandextended,nbiot,180 -on4,0,0,26,1,0,513,4683.289680,179,3,2195.332164,hintandextended,nbiot,180 -on3,0,0,26,1,0,602,4682.300000,179,2,2167.460792,hintandextended,nbiot,180 -on11,0,0,24,1,0,3060,4321.000000,179,0,1845.400000,hintandextended,nbiot,180 -on5,0,0,25,1,0,180,4505.010320,179,1,2080.952668,hintandextended,nbiot,180 -on6,0,0,25,1,0,528,4504.000000,179,1,2150.669916,hintandextended,nbiot,180 -on2,0,0,26,1,0,743,4682.482560,179,2,1972.014440,hintandextended,nbiot,180 -on1,0,0,26,1,0,719,4684.199360,179,2,1984.836452,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,179,0,3085.206708,hintandextended,nbiot,180 -on9,0,0,26,1,0,855,4682.889680,179,2,2217.142580,hintandextended,nbiot,180 -on11,0,0,25,1,0,1440,4502.610320,180,2,1943.609252,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4341.020640,180,0,3353.621672,hintandextended,nbiot,180 -on3,0,0,24,1,0,180,4321.000000,180,0,1818.366708,hintandextended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,180,0,1728.000000,hintandextended,nbiot,180 -on4,0,0,24,1,0,720,4320.030960,180,0,1754.032508,hintandextended,nbiot,180 -on7,0,0,24,1,0,636,4322.000000,180,0,1871.163416,hintandextended,nbiot,180 -on6,0,0,24,1,0,920,4321.989680,180,0,1812.919288,hintandextended,nbiot,180 -on8,0,0,24,1,0,2160,4320.020640,180,0,1754.021672,hintandextended,nbiot,180 -on1,0,0,25,1,0,293,4502.000000,180,1,1846.326624,hintandextended,nbiot,180 -on10,0,0,23,0,0,4289,4289.000000,180,0,1715.600000,hintandextended,nbiot,180 -on9,0,0,24,1,0,1370,4320.979360,180,0,1754.405160,hintandextended,nbiot,180 -on2,0,0,24,1,0,0,4322.020640,180,0,1984.278380,hintandextended,nbiot,180 -on11,0,0,24,1,0,1097,4322.989680,181,0,1951.502580,hintandextended,nbiot,180 -on9,0,0,24,1,0,586,4476.010320,181,1,1816.430752,hintandextended,nbiot,180 -on1,0,0,24,1,0,540,4324.020640,181,0,1881.085088,hintandextended,nbiot,180 -on10,0,0,25,1,0,24,4502.589680,181,1,1827.257704,hintandextended,nbiot,180 -on3,0,0,25,1,0,332,4505.979360,181,1,2181.576576,hintandextended,nbiot,180 -on8,0,0,24,1,0,979,4322.969040,181,0,1755.207740,hintandextended,nbiot,180 -on6,0,0,24,1,0,14,4323.989680,181,0,2069.149372,hintandextended,nbiot,180 -on5,0,0,24,0,0,4320,4320.000000,181,0,1728.000000,hintandextended,nbiot,180 -on2,0,0,27,1,0,385,4865.627760,181,3,2349.082728,hintandextended,nbiot,180 -on7,0,0,24,1,0,405,4322.000000,181,0,1929.903292,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4327.010320,181,0,3576.160836,hintandextended,nbiot,180 -on4,0,0,24,1,0,720,4322.020640,181,0,1897.821672,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4321.010320,182,0,1866.730836,hintandextended,nbiot,180 -on2,0,0,25,1,0,525,4502.189040,182,1,1855.098824,hintandextended,nbiot,180 -on3,0,0,24,1,0,814,4321.969040,182,0,1784.044324,hintandextended,nbiot,180 -on6,0,0,24,1,0,292,4322.000000,182,0,1785.869792,hintandextended,nbiot,180 -on7,0,0,26,1,0,334,4683.030960,182,2,2193.012384,hintandextended,nbiot,180 -on11,0,0,28,1,0,846,5042.200000,182,5,2498.060960,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,182,0,2429.356708,hintandextended,nbiot,180 -on8,0,0,24,1,0,574,4322.000000,182,0,1940.036584,hintandextended,nbiot,180 -on1,0,0,29,1,0,752,5224.100000,182,5,3018.469668,hintandextended,nbiot,180 -on4,0,0,25,1,0,533,4669.300000,182,2,2183.821292,hintandextended,nbiot,180 -on5,0,0,26,1,0,296,4682.600000,182,2,2179.443292,hintandextended,nbiot,180 -on10,0,0,26,1,0,538,4681.041280,182,2,2016.287928,hintandextended,nbiot,180 -on10,0,0,24,1,0,419,4322.000000,183,0,1809.660000,hintandextended,nbiot,180 -on1,0,0,27,1,0,917,5033.900000,183,5,2330.968000,hintandextended,nbiot,180 -on8,0,0,24,1,0,863,4323.010320,183,0,1755.210836,hintandextended,nbiot,180 -on4,0,0,25,1,0,631,4502.000000,183,1,1943.936292,hintandextended,nbiot,180 -on3,0,0,25,1,0,935,4501.600000,183,1,2123.676584,hintandextended,nbiot,180 -on7,0,0,27,1,0,1027,4861.510000,183,3,2126.200168,hintandextended,nbiot,180 -on9,0,0,24,1,0,977,4321.000000,183,1,1765.450000,hintandextended,nbiot,180 -on11,0,0,25,1,0,873,4501.969040,183,1,1851.500824,hintandextended,nbiot,180 -on6,0,0,25,1,0,180,4502.651600,183,1,2035.132348,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,183,0,2320.806708,hintandextended,nbiot,180 -on5,0,0,25,1,0,541,4503.369040,183,1,1995.957408,hintandextended,nbiot,180 -on2,0,0,24,1,0,180,4321.969040,183,0,1843.447616,hintandextended,nbiot,180 -on9,0,0,24,1,0,540,4321.969040,184,0,1869.071032,hintandextended,nbiot,180 -on8,0,0,25,1,0,1119,4503.300000,184,1,2121.646500,hintandextended,nbiot,180 -on7,0,0,25,1,0,1260,4502.969040,184,1,2011.417740,hintandextended,nbiot,180 -on6,0,0,26,1,0,1706,4682.510000,184,2,2173.310500,hintandextended,nbiot,180 -on2,0,0,26,1,0,1053,4683.938080,184,2,1991.901648,hintandextended,nbiot,180 -on5,0,0,25,1,0,1427,4501.000000,184,1,1917.406500,hintandextended,nbiot,180 -on10,0,0,24,1,0,1027,4321.000000,184,0,1762.200000,hintandextended,nbiot,180 -on4,0,0,25,1,0,770,4502.300000,184,1,1992.143292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,184,0,2512.556708,hintandextended,nbiot,180 -on11,0,0,24,1,0,1800,4322.000000,184,0,1962.150000,hintandextended,nbiot,180 -on3,0,0,26,1,0,1054,4683.300000,184,2,2312.271292,hintandextended,nbiot,180 -on1,0,0,26,1,0,873,4681.369040,184,2,1960.492616,hintandextended,nbiot,180 -on7,0,0,25,1,0,873,4500.969040,185,1,1826.400824,hintandextended,nbiot,180 -on2,0,0,27,1,0,1080,4863.099680,185,3,2331.411372,hintandextended,nbiot,180 -on9,0,0,25,1,0,1260,4501.000000,185,2,1839.205000,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,185,0,2528.156708,hintandextended,nbiot,180 -on4,0,0,24,1,0,117,4321.000000,185,0,1768.953292,hintandextended,nbiot,180 -on1,0,0,25,1,0,890,4605.500000,185,2,2217.444792,hintandextended,nbiot,180 -on10,0,0,25,1,0,35,4503.461920,185,1,1978.263184,hintandextended,nbiot,180 -on8,0,0,27,1,0,946,4863.869040,185,3,2301.104116,hintandextended,nbiot,180 -on5,0,0,25,1,0,176,4505.020640,185,1,2161.348172,hintandextended,nbiot,180 -on3,0,0,25,1,0,6,4502.969040,185,1,2029.005908,hintandextended,nbiot,180 -on11,0,0,25,1,0,875,4503.000000,185,1,2132.289876,hintandextended,nbiot,180 -on6,0,0,25,1,0,1373,4502.000000,185,1,2034.150000,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4321.000000,186,0,1767.666708,hintandextended,nbiot,180 -on10,0,0,26,1,0,821,4682.300000,186,2,2197.269792,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,186,0,2260.356708,hintandextended,nbiot,180 -on4,0,0,26,1,0,153,4683.369040,186,2,2128.479116,hintandextended,nbiot,180 -on1,0,0,27,1,0,488,4862.900000,186,3,2361.998084,hintandextended,nbiot,180 -on7,0,0,27,1,0,731,4861.780000,186,3,2241.755084,hintandextended,nbiot,180 -on3,0,0,28,1,0,739,5042.869040,186,5,2395.316992,hintandextended,nbiot,180 -on11,0,0,26,1,0,669,4682.490000,186,2,2169.369376,hintandextended,nbiot,180 -on6,0,0,24,1,0,498,4321.969680,186,0,1871.787872,hintandextended,nbiot,180 -on8,0,0,25,1,0,113,4502.220000,186,1,2033.009292,hintandextended,nbiot,180 -on2,0,0,26,1,0,556,4683.300000,186,2,2311.881292,hintandextended,nbiot,180 -on5,0,0,25,1,0,546,4500.969040,186,1,1826.400824,hintandextended,nbiot,180 -on9,0,0,24,1,0,0,4322.000000,187,0,1897.026708,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4332.010320,187,0,2701.317544,hintandextended,nbiot,180 -on10,0,0,26,1,0,448,4683.289680,187,2,2197.022372,hintandextended,nbiot,180 -on3,0,0,26,1,0,291,4680.041280,187,2,1898.042928,hintandextended,nbiot,180 -on7,0,0,28,1,0,655,5043.410000,187,4,2555.238792,hintandextended,nbiot,180 -on6,0,0,27,1,0,887,4861.900000,187,3,2279.509792,hintandextended,nbiot,180 -on5,0,0,26,1,0,524,4682.780000,187,3,2185.775000,hintandextended,nbiot,180 -on11,0,0,28,1,0,718,5044.930320,187,6,2685.072380,hintandextended,nbiot,180 -on2,0,0,24,1,0,335,4335.010320,187,0,1760.010836,hintandextended,nbiot,180 -on4,0,0,24,1,0,1620,4322.000000,187,0,1962.150000,hintandextended,nbiot,180 -on1,0,0,25,1,0,371,4502.138720,187,1,1892.706780,hintandextended,nbiot,180 -on8,0,0,24,1,0,54,4321.010320,187,0,1870.104336,hintandextended,nbiot,180 -on6,0,0,25,1,0,604,4650.300000,188,2,2066.839916,hintandextended,nbiot,180 -on7,0,0,24,1,0,1631,4391.010320,188,1,1782.619252,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4358.620640,188,0,3468.308380,hintandextended,nbiot,180 -on2,0,0,24,1,0,1706,4322.010320,188,0,1794.714128,hintandextended,nbiot,180 -on9,0,0,25,1,0,656,4501.300000,188,1,1940.790000,hintandextended,nbiot,180 -on10,0,0,24,1,0,360,4382.989680,188,1,1942.410872,hintandextended,nbiot,180 -on3,0,0,25,1,0,1080,4501.020320,188,1,1826.434752,hintandextended,nbiot,180 -on8,0,0,24,1,0,2745,4321.020640,188,0,1870.771672,hintandextended,nbiot,180 -on11,0,0,25,1,0,615,4502.279360,188,1,1996.562160,hintandextended,nbiot,180 -on5,0,0,24,1,0,1499,4321.989680,188,0,1871.159288,hintandextended,nbiot,180 -on1,0,0,24,1,0,3420,4322.000000,188,0,1962.150000,hintandextended,nbiot,180 -on4,0,0,24,1,0,499,4323.989680,188,0,2020.282372,hintandextended,nbiot,180 -on1,0,0,25,1,0,197,4503.230960,189,1,2058.517508,hintandextended,nbiot,180 -on6,0,0,24,1,0,2340,4321.000000,189,0,1845.400000,hintandextended,nbiot,180 -on3,0,0,24,1,0,1546,4320.989680,189,0,1754.402580,hintandextended,nbiot,180 -on4,0,0,25,1,0,527,4505.000000,189,1,2197.453292,hintandextended,nbiot,180 -on2,0,0,26,1,0,1000,4681.500320,189,2,2105.956628,hintandextended,nbiot,180 -on5,0,0,25,1,0,712,4501.300000,189,1,2018.666500,hintandextended,nbiot,180 -on11,0,0,25,1,0,180,4504.010320,189,1,2125.492420,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,189,0,2713.406708,hintandextended,nbiot,180 -on10,0,0,24,1,0,0,4321.000000,189,0,1754.413416,hintandextended,nbiot,180 -on9,0,0,26,1,0,834,4681.300000,189,2,2104.316292,hintandextended,nbiot,180 -on7,0,0,26,1,0,708,4683.669040,189,2,2152.779324,hintandextended,nbiot,180 -on8,0,0,26,1,0,873,4684.138080,189,2,2025.125148,hintandextended,nbiot,180 -on5,0,0,24,1,0,1082,4322.010320,190,1,1754.837460,hintandextended,nbiot,180 -on0,1,9,24,0,0,0,4320.000000,190,0,3314.650000,hintandextended,nbiot,180 -on9,0,0,24,1,0,180,4321.979360,190,0,1845.401744,hintandextended,nbiot,180 -on11,0,0,24,1,0,578,4325.989680,190,1,2206.065872,hintandextended,nbiot,180 -on8,0,0,25,1,0,868,4501.000000,190,1,1917.406500,hintandextended,nbiot,180 -on1,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,hintandextended,nbiot,180 -on4,0,0,24,0,0,4320,4320.000000,190,0,1728.000000,hintandextended,nbiot,180 -on10,0,0,25,1,0,1377,4500.010320,190,1,1826.017336,hintandextended,nbiot,180 -on7,0,0,24,1,0,395,4325.000000,190,0,1916.440332,hintandextended,nbiot,180 -on2,0,0,25,1,0,187,4506.338080,190,1,2037.933772,hintandextended,nbiot,180 -on3,0,0,26,1,0,593,4684.627760,190,2,2235.992936,hintandextended,nbiot,180 -on6,0,0,24,1,0,1868,4320.000000,190,0,1754.006708,hintandextended,nbiot,180 -on5,0,0,25,1,0,306,4501.310320,191,1,1995.654128,hintandextended,nbiot,180 -on2,0,0,24,1,0,180,4324.020640,191,0,2008.341672,hintandextended,nbiot,180 -on7,0,0,24,1,0,1532,4321.989680,191,0,1771.065996,hintandextended,nbiot,180 -on1,0,0,24,1,0,764,4496.989680,191,1,1869.210996,hintandextended,nbiot,180 -on3,0,0,25,1,0,360,4503.261920,191,1,1943.876600,hintandextended,nbiot,180 -on6,0,0,25,1,0,180,4502.010320,191,1,1990.429252,hintandextended,nbiot,180 -on10,0,0,25,1,0,3466,4502.210000,191,1,2034.240500,hintandextended,nbiot,180 -on11,0,0,24,1,0,159,4343.010320,191,0,2100.574252,hintandextended,nbiot,180 -on9,0,0,25,1,0,1330,4502.020640,191,1,2007.534880,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,191,0,3561.656708,hintandextended,nbiot,180 -on4,0,0,24,1,0,877,4339.010320,191,0,1877.974252,hintandextended,nbiot,180 -on8,0,0,25,1,0,956,4504.289680,191,1,2152.332580,hintandextended,nbiot,180 -on3,0,0,27,1,0,1151,4953.910320,192,5,2332.550504,hintandextended,nbiot,180 -on4,0,0,25,1,0,1373,4502.000000,192,1,2034.150000,hintandextended,nbiot,180 -on6,0,0,24,1,0,0,4391.000000,192,1,2004.765000,hintandextended,nbiot,180 -on2,0,0,25,1,0,540,4502.569040,192,1,1941.902740,hintandextended,nbiot,180 -on5,0,0,27,1,0,923,4862.900000,192,3,2470.572836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4352.630960,192,0,2382.369216,hintandextended,nbiot,180 -on10,0,0,24,1,0,1192,4322.000000,192,0,1888.700000,hintandextended,nbiot,180 -on1,0,0,24,1,0,121,4372.179680,192,1,1801.788372,hintandextended,nbiot,180 -on8,0,0,24,1,0,1076,4356.010320,192,0,1768.410836,hintandextended,nbiot,180 -on11,0,0,26,1,0,889,4682.041280,192,2,2079.984304,hintandextended,nbiot,180 -on9,0,0,25,1,0,1245,4607.300000,192,3,1908.466624,hintandextended,nbiot,180 -on7,0,0,25,1,0,889,4501.180000,192,1,1916.828500,hintandextended,nbiot,180 -on1,0,0,27,1,0,925,4862.910320,193,3,2385.220628,hintandextended,nbiot,180 -on9,0,0,25,1,0,654,4502.010320,193,1,2021.628836,hintandextended,nbiot,180 -on11,0,0,26,1,0,694,4683.300000,193,2,2311.673084,hintandextended,nbiot,180 -on3,0,0,27,1,0,1070,4863.459040,193,3,2266.496616,hintandextended,nbiot,180 -on7,0,0,24,1,0,1261,4412.979680,193,1,1791.211788,hintandextended,nbiot,180 -on5,0,0,25,1,0,1028,4501.210000,193,1,1916.840500,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4343.010320,193,0,2882.517544,hintandextended,nbiot,180 -on4,0,0,26,1,0,590,4684.269040,193,2,2303.994200,hintandextended,nbiot,180 -on10,0,0,26,1,0,717,4682.221280,193,3,2105.367928,hintandextended,nbiot,180 -on2,0,0,24,1,0,360,4321.010320,193,0,1819.020836,hintandextended,nbiot,180 -on8,0,0,24,1,0,360,4321.010320,193,0,1754.424252,hintandextended,nbiot,180 -on6,0,0,24,1,0,2578,4322.000000,193,0,1924.450000,hintandextended,nbiot,180 -on7,0,0,25,1,0,900,4504.010320,194,1,2044.717544,hintandextended,nbiot,180 -on9,0,0,25,1,0,720,4502.000000,194,1,1907.485124,hintandextended,nbiot,180 -on10,0,0,26,1,0,876,4680.910320,194,2,2221.024128,hintandextended,nbiot,180 -on1,0,0,25,1,0,837,4500.310320,194,1,1979.264336,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4351.620640,194,0,2721.908380,hintandextended,nbiot,180 -on6,0,0,25,1,0,1733,4501.000000,194,1,1917.406500,hintandextended,nbiot,180 -on4,0,0,24,1,0,236,4321.000000,194,0,1809.656708,hintandextended,nbiot,180 -on5,0,0,25,1,0,360,4501.610320,194,1,1826.859252,hintandextended,nbiot,180 -on8,0,0,25,1,0,693,4514.630960,194,1,1919.615592,hintandextended,nbiot,180 -on11,0,0,25,1,0,708,4503.300000,194,1,2075.223292,hintandextended,nbiot,180 -on3,0,0,24,1,0,1361,4321.000000,194,0,1754.420124,hintandextended,nbiot,180 -on2,0,0,23,1,0,661,4199.000000,194,0,1716.909792,hintandextended,nbiot,180 -on6,0,0,26,1,0,1167,4685.489360,195,2,2315.103744,hintandextended,nbiot,180 -on8,0,0,26,1,0,1257,4683.979360,195,3,2132.345200,hintandextended,nbiot,180 -on11,0,0,26,1,0,1456,4684.600000,195,2,2286.596708,hintandextended,nbiot,180 -on2,0,0,24,0,0,4320,4320.000000,195,0,1728.000000,hintandextended,nbiot,180 -on5,0,0,24,1,0,9,4321.948400,195,0,1754.799484,hintandextended,nbiot,180 -on10,0,0,24,1,0,2706,4344.190000,195,1,1763.695916,hintandextended,nbiot,180 -on1,0,0,25,1,0,1126,4503.589680,195,2,2106.032580,hintandextended,nbiot,180 -on9,0,0,25,1,0,1266,4644.189360,195,2,2074.385328,hintandextended,nbiot,180 -on3,0,0,25,1,0,180,4503.610320,195,1,1999.779252,hintandextended,nbiot,180 -on4,0,0,26,1,0,587,4685.510000,195,2,2343.393916,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,195,0,3451.150000,hintandextended,nbiot,180 -on7,0,0,24,1,0,1930,4322.979360,195,0,1830.605160,hintandextended,nbiot,180 -on11,0,0,25,0,0,3909,4681.200000,196,3,2340.570584,hintandextended,nbiot,180 -on6,0,0,26,1,0,898,4683.968720,196,2,2054.684196,hintandextended,nbiot,180 -on2,0,0,26,1,0,920,4683.350320,196,2,2198.113044,hintandextended,nbiot,180 -on4,0,0,25,1,0,496,4500.190000,196,1,1826.095708,hintandextended,nbiot,180 -on8,0,0,25,1,0,900,4501.989680,196,1,1916.762580,hintandextended,nbiot,180 -on5,0,0,25,1,0,360,4506.979360,196,1,2190.491992,hintandextended,nbiot,180 -on9,0,0,25,1,0,806,4503.199680,196,1,1933.184788,hintandextended,nbiot,180 -on1,0,0,24,1,0,113,4321.010320,196,0,1869.727544,hintandextended,nbiot,180 -on10,0,0,27,1,0,1049,4863.879360,196,3,2386.264952,hintandextended,nbiot,180 -on0,1,10,24,0,0,0,4320.000000,196,0,3638.993292,hintandextended,nbiot,180 -on3,0,0,26,1,0,729,4684.071920,196,2,2266.190392,hintandextended,nbiot,180 -on7,0,0,25,1,0,355,4509.159040,196,1,2362.977072,hintandextended,nbiot,180 -on3,0,0,28,1,0,1222,5042.269040,197,4,2366.289116,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,197,0,2534.006708,hintandextended,nbiot,180 -on5,0,0,26,1,0,581,4682.669040,197,2,2094.536032,hintandextended,nbiot,180 -on7,0,0,24,1,0,1240,4340.010320,197,0,1762.010836,hintandextended,nbiot,180 -on4,0,0,24,1,0,1289,4457.190000,197,1,1899.485792,hintandextended,nbiot,180 -on2,0,0,24,1,0,180,4320.010320,197,0,1754.010836,hintandextended,nbiot,180 -on10,0,0,24,1,0,858,4322.989680,197,0,1872.455872,hintandextended,nbiot,180 -on11,0,0,24,1,0,594,4323.000000,197,1,2025.209792,hintandextended,nbiot,180 -on6,0,0,24,1,0,413,4320.979360,197,0,1797.565160,hintandextended,nbiot,180 -on1,0,0,23,1,0,900,4150.010320,197,0,1686.010836,hintandextended,nbiot,180 -on8,0,0,25,1,0,1619,4501.210000,197,1,1917.490500,hintandextended,nbiot,180 -on9,0,0,24,1,0,920,4323.000000,197,0,1998.566708,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4363.251600,198,0,2672.370888,hintandextended,nbiot,180 -on5,0,0,24,1,0,463,4321.000000,198,0,1777.800000,hintandextended,nbiot,180 -on11,0,0,25,1,0,180,4503.620640,198,1,2006.659964,hintandextended,nbiot,180 -on4,0,0,26,1,0,874,4685.000000,198,2,2400.526416,hintandextended,nbiot,180 -on2,0,0,26,1,0,2388,4681.669040,198,2,2009.779240,hintandextended,nbiot,180 -on7,0,0,24,1,0,2800,4321.000000,198,0,1780.400000,hintandextended,nbiot,180 -on10,0,0,26,1,0,514,4682.969040,198,2,2103.307324,hintandextended,nbiot,180 -on3,0,0,24,1,0,816,4321.000000,198,0,1781.959792,hintandextended,nbiot,180 -on1,0,0,24,1,0,2425,4322.000000,198,0,1844.760000,hintandextended,nbiot,180 -on8,0,0,26,1,0,858,4681.810000,198,2,2127.328584,hintandextended,nbiot,180 -on6,0,0,24,1,0,900,4389.630960,198,1,1898.424216,hintandextended,nbiot,180 -on9,0,0,25,1,0,452,4501.310320,198,1,1999.034128,hintandextended,nbiot,180 -on11,0,0,27,1,0,1254,4861.479040,199,3,2062.456116,hintandextended,nbiot,180 -on3,0,0,25,1,0,533,4502.210000,199,1,2031.763792,hintandextended,nbiot,180 -on5,0,0,26,1,0,906,4757.700000,199,3,2247.781084,hintandextended,nbiot,180 -on9,0,0,25,1,0,541,4502.358720,199,1,1942.266904,hintandextended,nbiot,180 -on8,0,0,24,1,0,305,4321.000000,199,0,1763.753292,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4320.000000,199,0,2455.356708,hintandextended,nbiot,180 -on4,0,0,25,1,0,1252,4501.000000,199,1,1916.756500,hintandextended,nbiot,180 -on10,0,0,25,1,0,1061,4502.000000,199,1,2032.076292,hintandextended,nbiot,180 -on6,0,0,25,1,0,312,4503.620640,199,1,2058.283380,hintandextended,nbiot,180 -on1,0,0,26,1,0,1343,4681.600000,199,2,2141.739792,hintandextended,nbiot,180 -on2,0,0,24,1,0,783,4321.000000,199,0,1804.450000,hintandextended,nbiot,180 -on7,0,0,26,1,0,711,4681.251280,199,2,1955.272136,hintandextended,nbiot,180 -on3,0,0,24,1,0,360,4320.010320,200,0,1754.017544,hintandextended,nbiot,180 -on10,0,0,25,1,0,0,4507.620640,200,1,2310.523380,hintandextended,nbiot,180 -on11,0,0,24,1,0,278,4324.979360,200,0,1999.365160,hintandextended,nbiot,180 -on1,0,0,24,1,0,1980,4321.010320,200,0,1870.760836,hintandextended,nbiot,180 -on0,1,11,24,0,0,0,4322.010320,200,0,2894.260836,hintandextended,nbiot,180 -on5,0,0,25,1,0,657,4502.300000,200,1,1949.250000,hintandextended,nbiot,180 -on8,0,0,25,1,0,1620,4501.620640,200,1,1873.663380,hintandextended,nbiot,180 -on2,0,0,26,1,0,334,4683.979040,200,2,2114.631324,hintandextended,nbiot,180 -on7,0,0,25,1,0,228,4502.300000,200,1,2097.970000,hintandextended,nbiot,180 -on9,0,0,24,1,0,1089,4320.010320,200,0,1754.010836,hintandextended,nbiot,180 -on6,0,0,24,1,0,1076,4356.010320,200,0,1768.410836,hintandextended,nbiot,180 -on4,0,0,25,1,0,693,4617.620320,200,2,2272.148128,hintandextended,nbiot,180 +node,isSender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,seed,hint_added,timeDataRcv,energy,simkey,wireless,wakeupfor +on6,0,0,24,0,0,1428,1440.000000,1,0,-1.000000,578.080000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1420,1440.000000,1,0,-1.000000,579.360000,baseline,lora,60 +on8,0,0,24,0,0,1392,1440.000000,1,0,-1.000000,592.160000,baseline,lora,60 +on2,0,0,24,0,0,1384,1440.000000,1,0,-1.000000,585.120000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1431,1440.000000,1,0,-1.000000,577.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1377,1440.000000,1,0,-1.000000,598.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,1,0,-1.000000,610.720000,baseline,lora,60 +on10,0,0,24,0,0,1411,1440.000000,2,0,-1.000000,580.800000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1390,1440.000000,2,0,-1.000000,589.920000,baseline,lora,60 +on7,0,0,24,0,0,1414,1440.000000,2,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,580.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,2,0,-1.000000,625.600000,baseline,lora,60 +on6,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,580.640000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1348,1440.000000,2,0,-1.000000,602.560000,baseline,lora,60 +on5,0,0,24,0,0,1393,1440.000000,2,0,-1.000000,583.680000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,3,0,-1.000000,629.120000,baseline,lora,60 +on4,0,0,24,0,0,1334,1440.000000,3,0,-1.000000,603.520000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1392,1440.000000,3,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1382,1440.000000,3,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1373,1440.000000,3,0,-1.000000,587.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1397,1440.000000,3,0,-1.000000,583.040000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1402,1440.000000,4,0,-1.000000,582.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,4,0,-1.000000,597.440000,baseline,lora,60 +on2,0,0,24,0,0,1420,1440.000000,4,0,-1.000000,581.120000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.160000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1381,1440.000000,4,0,-1.000000,585.760000,baseline,lora,60 +on11,0,0,24,0,0,1434,1440.000000,4,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1436,1440.000000,4,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1433,1440.000000,5,0,-1.000000,577.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,5,0,-1.000000,600.320000,baseline,lora,60 +on5,0,0,24,0,0,1419,1440.000000,5,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1404,1440.000000,5,0,-1.000000,581.920000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1428,1440.000000,5,0,-1.000000,578.080000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1370,1440.000000,5,0,-1.000000,591.360000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1438,1440.000000,6,0,-1.000000,576.480000,baseline,lora,60 +on7,0,0,24,0,0,1399,1440.000000,6,0,-1.000000,582.720000,baseline,lora,60 +on9,0,0,24,0,0,1394,1440.000000,6,0,-1.000000,583.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,6,0,-1.000000,604.640000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1402,1440.000000,6,0,-1.000000,582.240000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1393,1440.000000,6,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,7,0,-1.000000,595.520000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1392,1440.000000,7,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1403,1440.000000,7,0,-1.000000,591.520000,baseline,lora,60 +on8,0,0,24,0,0,1408,1440.000000,7,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,8,0,-1.000000,600.480000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1403,1440.000000,8,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1390,1440.000000,8,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1420,1440.000000,8,0,-1.000000,579.360000,baseline,lora,60 +on12,0,0,24,0,0,1433,1440.000000,8,0,-1.000000,577.280000,baseline,lora,60 +on4,0,0,24,0,0,1407,1440.000000,8,0,-1.000000,581.440000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1365,1440.000000,9,0,-1.000000,588.480000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1408,1440.000000,9,0,-1.000000,582.240000,baseline,lora,60 +on9,0,0,24,0,0,1418,1440.000000,9,0,-1.000000,579.680000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,9,0,-1.000000,635.680000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1428,1440.000000,9,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1389,1440.000000,9,0,-1.000000,584.480000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1373,1440.000000,9,0,-1.000000,590.880000,baseline,lora,60 +on3,0,0,24,0,0,1393,1440.000000,9,0,-1.000000,591.840000,baseline,lora,60 +on8,0,0,24,0,0,1387,1440.000000,9,0,-1.000000,592.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1414,1440.000000,10,0,-1.000000,580.320000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,10,0,-1.000000,617.440000,baseline,lora,60 +on4,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1418,1440.000000,10,0,-1.000000,579.680000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1369,1440.000000,10,0,-1.000000,590.880000,baseline,lora,60 +on3,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,581.760000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1378,1440.000000,10,0,-1.000000,586.240000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1393,1440.000000,11,0,-1.000000,583.680000,baseline,lora,60 +on3,0,0,24,0,0,1421,1440.000000,11,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1394,1440.000000,11,0,-1.000000,598.400000,baseline,lora,60 +on6,0,0,24,0,0,1438,1440.000000,11,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,581.440000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1435,1440.000000,11,0,-1.000000,576.960000,baseline,lora,60 +on1,0,0,24,0,0,1368,1440.000000,11,0,-1.000000,587.840000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1429,1440.000000,11,0,-1.000000,584.320000,baseline,lora,60 +on7,0,0,24,0,0,1388,1440.000000,11,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,11,0,-1.000000,639.520000,baseline,lora,60 +on4,0,0,24,0,0,1344,1440.000000,11,0,-1.000000,593.440000,baseline,lora,60 +on3,0,0,24,0,0,1421,1440.000000,12,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1387,1440.000000,12,0,-1.000000,584.640000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1422,1440.000000,12,0,-1.000000,579.040000,baseline,lora,60 +on9,0,0,24,0,0,1438,1440.000000,12,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1343,1440.000000,12,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1404,1440.000000,12,0,-1.000000,582.080000,baseline,lora,60 +on8,0,0,24,0,0,1372,1440.000000,12,0,-1.000000,588.800000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,12,0,-1.000000,624.480000,baseline,lora,60 +on7,0,0,24,0,0,1406,1440.000000,13,0,-1.000000,586.720000,baseline,lora,60 +on12,0,0,24,0,0,1429,1440.000000,13,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1414,1440.000000,13,0,-1.000000,580.320000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1433,1440.000000,13,0,-1.000000,592.480000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1360,1440.000000,13,0,-1.000000,604.320000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,13,0,-1.000000,615.520000,baseline,lora,60 +on1,0,0,24,0,0,1363,1440.000000,13,0,-1.000000,588.640000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1426,1440.000000,14,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,14,0,-1.000000,612.000000,baseline,lora,60 +on3,0,0,24,0,0,1408,1440.000000,14,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1401,1440.000000,14,0,-1.000000,590.240000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.160000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1372,1440.000000,14,0,-1.000000,592.960000,baseline,lora,60 +on10,0,0,24,0,0,1393,1440.000000,14,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1424,1440.000000,14,0,-1.000000,578.720000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1384,1440.000000,15,0,-1.000000,585.120000,baseline,lora,60 +on5,0,0,24,0,0,1389,1440.000000,15,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,15,0,-1.000000,580.960000,baseline,lora,60 +on11,0,0,24,0,0,1381,1440.000000,15,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,15,0,-1.000000,628.960000,baseline,lora,60 +on8,0,0,24,0,0,1412,1440.000000,15,0,-1.000000,594.080000,baseline,lora,60 +on2,0,0,24,0,0,1384,1440.000000,15,0,-1.000000,585.120000,baseline,lora,60 +on10,0,0,24,0,0,1400,1440.000000,15,0,-1.000000,582.720000,baseline,lora,60 +on7,0,0,24,0,0,1367,1440.000000,16,0,-1.000000,591.200000,baseline,lora,60 +on12,0,0,24,0,0,1387,1440.000000,16,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1374,1440.000000,16,0,-1.000000,593.920000,baseline,lora,60 +on8,0,0,24,0,0,1423,1440.000000,16,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,16,0,-1.000000,624.640000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1409,1440.000000,16,0,-1.000000,581.120000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1384,1440.000000,16,0,-1.000000,585.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,17,0,-1.000000,609.600000,baseline,lora,60 +on6,0,0,24,0,0,1437,1440.000000,17,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1413,1440.000000,17,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1408,1440.000000,17,0,-1.000000,581.280000,baseline,lora,60 +on2,0,0,23,0,0,1430,1430.000000,17,0,-1.000000,572.000000,baseline,lora,60 +on12,0,0,24,0,0,1416,1440.000000,17,0,-1.000000,580.000000,baseline,lora,60 +on10,0,0,24,0,0,1424,1440.000000,17,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1351,1440.000000,17,0,-1.000000,610.720000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1431,1440.000000,17,0,-1.000000,577.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1420,1440.000000,18,0,-1.000000,579.360000,baseline,lora,60 +on5,0,0,24,0,0,1368,1440.000000,18,0,-1.000000,592.480000,baseline,lora,60 +on8,0,0,24,0,0,1382,1440.000000,18,0,-1.000000,585.440000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1330,1440.000000,18,0,-1.000000,594.080000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1391,1440.000000,18,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,18,0,-1.000000,645.600000,baseline,lora,60 +on6,0,0,24,0,0,1338,1440.000000,18,0,-1.000000,593.440000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1427,1440.000000,18,0,-1.000000,578.240000,baseline,lora,60 +on7,0,0,24,0,0,1434,1440.000000,19,0,-1.000000,577.120000,baseline,lora,60 +on12,0,0,24,0,0,1408,1440.000000,19,0,-1.000000,581.280000,baseline,lora,60 +on3,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,576.640000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1425,1440.000000,19,0,-1.000000,586.080000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,19,0,-1.000000,600.640000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1396,1440.000000,19,0,-1.000000,583.200000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,19,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,20,0,-1.000000,609.920000,baseline,lora,60 +on2,0,0,24,0,0,1382,1440.000000,20,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1396,1440.000000,20,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1404,1440.000000,20,0,-1.000000,587.200000,baseline,lora,60 +on4,0,0,24,0,0,1416,1440.000000,20,0,-1.000000,580.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1397,1440.000000,20,0,-1.000000,583.200000,baseline,lora,60 +on3,0,0,24,0,0,1405,1440.000000,21,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,21,0,-1.000000,604.640000,baseline,lora,60 +on7,0,0,24,0,0,1401,1440.000000,21,0,-1.000000,582.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1428,1440.000000,21,0,-1.000000,578.080000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1417,1440.000000,21,0,-1.000000,579.840000,baseline,lora,60 +on2,0,0,24,0,0,1403,1440.000000,21,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1414,1440.000000,21,0,-1.000000,580.480000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1416,1440.000000,22,0,-1.000000,580.000000,baseline,lora,60 +on4,0,0,24,0,0,1388,1440.000000,22,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1405,1440.000000,22,0,-1.000000,581.760000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,22,0,-1.000000,610.880000,baseline,lora,60 +on9,0,0,24,0,0,1428,1440.000000,22,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1358,1440.000000,22,0,-1.000000,589.440000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1434,1440.000000,22,0,-1.000000,577.120000,baseline,lora,60 +on9,0,0,24,0,0,1425,1440.000000,23,0,-1.000000,578.560000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1392,1440.000000,23,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1436,1440.000000,23,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1365,1440.000000,23,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1403,1440.000000,23,0,-1.000000,588.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,23,0,-1.000000,634.400000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1396,1440.000000,23,0,-1.000000,583.200000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1428,1440.000000,23,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1400,1440.000000,23,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1362,1440.000000,23,0,-1.000000,594.080000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,24,0,-1.000000,582.560000,baseline,lora,60 +on10,0,0,24,0,0,1422,1440.000000,24,0,-1.000000,583.040000,baseline,lora,60 +on6,0,0,24,0,0,1375,1440.000000,24,0,-1.000000,595.200000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1358,1440.000000,24,0,-1.000000,591.520000,baseline,lora,60 +on8,0,0,24,0,0,1391,1440.000000,24,0,-1.000000,584.000000,baseline,lora,60 +on5,0,0,24,0,0,1418,1440.000000,24,0,-1.000000,584.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,24,0,-1.000000,631.040000,baseline,lora,60 +on7,0,0,24,0,0,1382,1440.000000,24,0,-1.000000,594.400000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1381,1440.000000,25,0,-1.000000,585.760000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,25,0,-1.000000,583.520000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1436,1440.000000,25,0,-1.000000,576.800000,baseline,lora,60 +on11,0,0,24,0,0,1432,1440.000000,25,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1420,1440.000000,25,0,-1.000000,582.880000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,25,0,-1.000000,619.680000,baseline,lora,60 +on5,0,0,24,0,0,1315,1440.000000,25,0,-1.000000,620.640000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1386,1440.000000,26,0,-1.000000,588.480000,baseline,lora,60 +on7,0,0,24,0,0,1431,1440.000000,26,0,-1.000000,577.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,26,0,-1.000000,620.000000,baseline,lora,60 +on10,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,578.240000,baseline,lora,60 +on6,0,0,24,0,0,1430,1440.000000,26,0,-1.000000,584.800000,baseline,lora,60 +on8,0,0,24,0,0,1400,1440.000000,26,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1409,1440.000000,26,0,-1.000000,586.400000,baseline,lora,60 +on1,0,0,24,0,0,1392,1440.000000,26,0,-1.000000,583.840000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1425,1440.000000,26,0,-1.000000,578.560000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1397,1440.000000,26,0,-1.000000,583.200000,baseline,lora,60 +on5,0,0,24,0,0,1390,1440.000000,27,0,-1.000000,584.320000,baseline,lora,60 +on1,0,0,24,0,0,1415,1440.000000,27,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,585.440000,baseline,lora,60 +on2,0,0,24,0,0,1328,1440.000000,27,0,-1.000000,600.000000,baseline,lora,60 +on10,0,0,24,0,0,1368,1440.000000,27,0,-1.000000,587.840000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1331,1440.000000,27,0,-1.000000,593.760000,baseline,lora,60 +on6,0,0,24,0,0,1375,1440.000000,27,0,-1.000000,590.400000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,27,0,-1.000000,669.440000,baseline,lora,60 +on3,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,585.280000,baseline,lora,60 +on9,0,0,24,0,0,1420,1440.000000,27,0,-1.000000,588.480000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1387,1440.000000,28,0,-1.000000,586.080000,baseline,lora,60 +on8,0,0,24,0,0,1412,1440.000000,28,0,-1.000000,580.800000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,580.160000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1437,1440.000000,28,0,-1.000000,576.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,28,0,-1.000000,603.040000,baseline,lora,60 +on10,0,0,24,0,0,1436,1440.000000,28,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1394,1440.000000,28,0,-1.000000,583.680000,baseline,lora,60 +on11,0,0,24,0,0,1415,1440.000000,29,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1388,1440.000000,29,0,-1.000000,584.480000,baseline,lora,60 +on8,0,0,24,0,0,1438,1440.000000,29,0,-1.000000,576.480000,baseline,lora,60 +on7,0,0,24,0,0,1433,1440.000000,29,0,-1.000000,577.280000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1302,1440.000000,29,0,-1.000000,600.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,29,0,-1.000000,612.960000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1437,1440.000000,30,0,-1.000000,576.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,30,0,-1.000000,597.920000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1366,1440.000000,30,0,-1.000000,590.240000,baseline,lora,60 +on5,0,0,24,0,0,1384,1440.000000,30,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1409,1440.000000,31,0,-1.000000,585.760000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,31,0,-1.000000,605.280000,baseline,lora,60 +on10,0,0,24,0,0,1435,1440.000000,31,0,-1.000000,576.960000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1404,1440.000000,31,0,-1.000000,581.920000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1426,1440.000000,31,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1403,1440.000000,31,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1387,1440.000000,31,0,-1.000000,584.800000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,580.320000,baseline,lora,60 +on5,0,0,24,0,0,1423,1440.000000,32,0,-1.000000,578.880000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1429,1440.000000,32,0,-1.000000,577.920000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1410,1440.000000,32,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,32,0,-1.000000,598.560000,baseline,lora,60 +on6,0,0,24,0,0,1416,1440.000000,32,0,-1.000000,585.760000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1384,1440.000000,33,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1398,1440.000000,33,0,-1.000000,595.200000,baseline,lora,60 +on5,0,0,24,0,0,1413,1440.000000,33,0,-1.000000,580.480000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1394,1440.000000,33,0,-1.000000,583.520000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1402,1440.000000,33,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,33,0,-1.000000,610.400000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1416,1440.000000,34,0,-1.000000,580.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,34,0,-1.000000,605.120000,baseline,lora,60 +on12,0,0,24,0,0,1420,1440.000000,34,0,-1.000000,579.360000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1403,1440.000000,34,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1427,1440.000000,34,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1384,1440.000000,34,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1411,1440.000000,35,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1368,1440.000000,35,0,-1.000000,593.920000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1422,1440.000000,35,0,-1.000000,579.040000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1398,1440.000000,35,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1385,1440.000000,35,0,-1.000000,584.960000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,35,0,-1.000000,611.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,36,0,-1.000000,632.320000,baseline,lora,60 +on11,0,0,24,0,0,1389,1440.000000,36,0,-1.000000,584.480000,baseline,lora,60 +on1,0,0,24,0,0,1385,1440.000000,36,0,-1.000000,584.960000,baseline,lora,60 +on9,0,0,24,0,0,1427,1440.000000,36,0,-1.000000,578.240000,baseline,lora,60 +on4,0,0,24,0,0,1387,1440.000000,36,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1391,1440.000000,36,0,-1.000000,584.000000,baseline,lora,60 +on2,0,0,24,0,0,1403,1440.000000,36,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1356,1440.000000,36,0,-1.000000,594.720000,baseline,lora,60 +on12,0,0,24,0,0,1419,1440.000000,37,0,-1.000000,579.520000,baseline,lora,60 +on6,0,0,24,0,0,1434,1440.000000,37,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1430,1440.000000,37,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1395,1440.000000,37,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1431,1440.000000,37,0,-1.000000,577.600000,baseline,lora,60 +on10,0,0,24,0,0,1395,1440.000000,37,0,-1.000000,592.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,37,0,-1.000000,629.760000,baseline,lora,60 +on5,0,0,24,0,0,1426,1440.000000,37,0,-1.000000,583.360000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1333,1440.000000,37,0,-1.000000,604.480000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1375,1440.000000,37,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1428,1440.000000,38,0,-1.000000,578.080000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1385,1440.000000,38,0,-1.000000,585.280000,baseline,lora,60 +on9,0,0,24,0,0,1414,1440.000000,38,0,-1.000000,580.320000,baseline,lora,60 +on12,0,0,24,0,0,1411,1440.000000,38,0,-1.000000,580.800000,baseline,lora,60 +on6,0,0,24,0,0,1438,1440.000000,38,0,-1.000000,576.480000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1397,1440.000000,38,0,-1.000000,592.160000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,38,0,-1.000000,604.160000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,581.920000,baseline,lora,60 +on4,0,0,24,0,0,1360,1440.000000,39,0,-1.000000,589.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,39,0,-1.000000,618.080000,baseline,lora,60 +on5,0,0,23,0,0,1418,1438.000000,39,0,-1.000000,585.280000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1400,1440.000000,39,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1414,1440.000000,39,0,-1.000000,580.320000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1388,1440.000000,39,0,-1.000000,584.640000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1401,1440.000000,40,0,-1.000000,582.400000,baseline,lora,60 +on7,0,0,24,0,0,1429,1440.000000,40,0,-1.000000,577.920000,baseline,lora,60 +on10,0,0,24,0,0,1359,1440.000000,40,0,-1.000000,601.760000,baseline,lora,60 +on11,0,0,24,0,0,1393,1440.000000,40,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1405,1440.000000,40,0,-1.000000,581.760000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,40,0,-1.000000,620.160000,baseline,lora,60 +on1,0,0,24,0,0,1408,1440.000000,40,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1418,1440.000000,40,0,-1.000000,579.680000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1347,1440.000000,41,0,-1.000000,597.440000,baseline,lora,60 +on9,0,0,24,0,0,1428,1440.000000,41,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,41,0,-1.000000,604.000000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,41,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1406,1440.000000,41,0,-1.000000,581.600000,baseline,lora,60 +on6,0,0,24,0,0,1391,1440.000000,42,0,-1.000000,589.120000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,42,0,-1.000000,623.520000,baseline,lora,60 +on11,0,0,24,0,0,1406,1440.000000,42,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1312,1440.000000,42,0,-1.000000,599.360000,baseline,lora,60 +on2,0,0,24,0,0,1362,1440.000000,42,0,-1.000000,588.960000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1404,1440.000000,43,0,-1.000000,581.920000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1379,1440.000000,43,0,-1.000000,586.240000,baseline,lora,60 +on7,0,0,24,0,0,1419,1440.000000,43,0,-1.000000,579.520000,baseline,lora,60 +on6,0,0,24,0,0,1409,1440.000000,43,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1402,1440.000000,43,0,-1.000000,582.400000,baseline,lora,60 +on11,0,0,24,0,0,1386,1440.000000,43,0,-1.000000,584.800000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1433,1440.000000,43,0,-1.000000,577.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,43,0,-1.000000,617.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,44,0,-1.000000,628.320000,baseline,lora,60 +on10,0,0,24,0,0,1343,1440.000000,44,0,-1.000000,604.800000,baseline,lora,60 +on2,0,0,24,0,0,1406,1440.000000,44,0,-1.000000,587.840000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1391,1440.000000,44,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1419,1440.000000,44,0,-1.000000,579.520000,baseline,lora,60 +on9,0,0,24,0,0,1384,1440.000000,44,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1391,1440.000000,44,0,-1.000000,591.680000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1431,1440.000000,44,0,-1.000000,586.720000,baseline,lora,60 +on4,0,0,24,0,0,1397,1440.000000,45,0,-1.000000,583.040000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,45,0,-1.000000,643.840000,baseline,lora,60 +on2,0,0,24,0,0,1312,1440.000000,45,0,-1.000000,604.800000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1332,1440.000000,45,0,-1.000000,602.080000,baseline,lora,60 +on9,0,0,24,0,0,1394,1440.000000,45,0,-1.000000,583.680000,baseline,lora,60 +on8,0,0,24,0,0,1425,1440.000000,45,0,-1.000000,582.560000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1426,1440.000000,45,0,-1.000000,578.400000,baseline,lora,60 +on3,0,0,24,0,0,1386,1440.000000,45,0,-1.000000,585.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,46,0,-1.000000,632.480000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1349,1440.000000,46,0,-1.000000,590.880000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1419,1440.000000,46,0,-1.000000,585.280000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1439,1440.000000,46,0,-1.000000,576.320000,baseline,lora,60 +on3,0,0,24,0,0,1358,1440.000000,46,0,-1.000000,589.440000,baseline,lora,60 +on9,0,0,24,0,0,1398,1440.000000,46,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1349,1440.000000,46,0,-1.000000,590.880000,baseline,lora,60 +on7,0,0,24,0,0,1425,1440.000000,46,0,-1.000000,581.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1438,1440.000000,47,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1423,1440.000000,47,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1392,1440.000000,47,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,47,0,-1.000000,603.040000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1430,1440.000000,47,0,-1.000000,577.760000,baseline,lora,60 +on10,0,0,24,0,0,1392,1440.000000,47,0,-1.000000,584.000000,baseline,lora,60 +on7,0,0,24,0,0,1403,1440.000000,47,0,-1.000000,582.080000,baseline,lora,60 +on2,0,0,24,0,0,1426,1440.000000,48,0,-1.000000,578.400000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,48,0,-1.000000,610.400000,baseline,lora,60 +on12,0,0,24,0,0,1361,1440.000000,48,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1421,1440.000000,48,0,-1.000000,579.200000,baseline,lora,60 +on4,0,0,24,0,0,1394,1440.000000,48,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1389,1440.000000,48,0,-1.000000,584.320000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1398,1440.000000,49,0,-1.000000,582.880000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,581.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,49,0,-1.000000,612.000000,baseline,lora,60 +on5,0,0,24,0,0,1384,1440.000000,49,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1421,1440.000000,49,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1377,1440.000000,49,0,-1.000000,586.400000,baseline,lora,60 +on2,0,0,24,0,0,1435,1440.000000,49,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1421,1440.000000,50,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,50,0,-1.000000,633.920000,baseline,lora,60 +on2,0,0,24,0,0,1377,1440.000000,50,0,-1.000000,591.360000,baseline,lora,60 +on3,0,0,24,0,0,1383,1440.000000,50,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1386,1440.000000,50,0,-1.000000,584.800000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1394,1440.000000,50,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1426,1440.000000,50,0,-1.000000,578.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1414,1440.000000,50,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1367,1440.000000,50,0,-1.000000,588.640000,baseline,lora,60 +on7,0,0,24,0,0,1399,1440.000000,51,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1377,1440.000000,51,0,-1.000000,588.320000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,51,0,-1.000000,617.120000,baseline,lora,60 +on6,0,0,24,0,0,1438,1440.000000,51,0,-1.000000,576.480000,baseline,lora,60 +on9,0,0,24,0,0,1429,1440.000000,51,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1416,1440.000000,51,0,-1.000000,580.000000,baseline,lora,60 +on11,0,0,24,0,0,1382,1440.000000,51,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1397,1440.000000,51,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1435,1440.000000,51,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1334,1440.000000,52,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1412,1440.000000,52,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1375,1440.000000,52,0,-1.000000,586.720000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,52,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,52,0,-1.000000,635.040000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1421,1440.000000,52,0,-1.000000,579.200000,baseline,lora,60 +on11,0,0,24,0,0,1438,1440.000000,52,0,-1.000000,576.480000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1348,1440.000000,52,0,-1.000000,591.040000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1408,1440.000000,53,0,-1.000000,590.400000,baseline,lora,60 +on11,0,0,24,0,0,1390,1440.000000,53,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1400,1440.000000,53,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1405,1440.000000,53,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1429,1440.000000,53,0,-1.000000,577.920000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,53,0,-1.000000,609.760000,baseline,lora,60 +on1,0,0,24,0,0,1404,1440.000000,53,0,-1.000000,581.920000,baseline,lora,60 +on12,0,0,24,0,0,1410,1440.000000,54,0,-1.000000,580.960000,baseline,lora,60 +on6,0,0,24,0,0,1415,1440.000000,54,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1418,1440.000000,54,0,-1.000000,579.680000,baseline,lora,60 +on3,0,0,24,0,0,1359,1440.000000,54,0,-1.000000,591.520000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1388,1440.000000,54,0,-1.000000,585.440000,baseline,lora,60 +on9,0,0,24,0,0,1434,1440.000000,54,0,-1.000000,577.120000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,54,0,-1.000000,627.520000,baseline,lora,60 +on1,0,0,24,0,0,1343,1440.000000,54,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1375,1440.000000,55,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1437,1440.000000,55,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1413,1440.000000,55,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1422,1440.000000,55,0,-1.000000,579.040000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1403,1440.000000,55,0,-1.000000,582.080000,baseline,lora,60 +on6,0,0,24,0,0,1381,1440.000000,55,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,55,0,-1.000000,610.560000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1410,1440.000000,56,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,56,0,-1.000000,581.920000,baseline,lora,60 +on12,0,0,24,0,0,1435,1440.000000,56,0,-1.000000,576.960000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1384,1440.000000,57,0,-1.000000,588.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,57,0,-1.000000,601.280000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,581.600000,baseline,lora,60 +on7,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1411,1440.000000,57,0,-1.000000,580.800000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1410,1440.000000,58,0,-1.000000,580.960000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1337,1440.000000,58,0,-1.000000,593.760000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1393,1440.000000,58,0,-1.000000,587.680000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,58,0,-1.000000,617.440000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,577.920000,baseline,lora,60 +on6,0,0,24,0,0,1380,1440.000000,58,0,-1.000000,585.920000,baseline,lora,60 +on8,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1414,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1429,1440.000000,59,0,-1.000000,577.920000,baseline,lora,60 +on10,0,0,24,0,0,1389,1440.000000,59,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,59,0,-1.000000,617.120000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1383,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1398,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1416,1440.000000,59,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1379,1440.000000,60,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1439,1440.000000,60,0,-1.000000,576.320000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1325,1440.000000,60,0,-1.000000,604.800000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1426,1440.000000,60,0,-1.000000,578.400000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,60,0,-1.000000,607.680000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1437,1440.000000,61,0,-1.000000,581.760000,baseline,lora,60 +on1,0,0,24,0,0,1396,1440.000000,61,0,-1.000000,583.200000,baseline,lora,60 +on10,0,0,24,0,0,1389,1440.000000,61,0,-1.000000,584.320000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1420,1440.000000,61,0,-1.000000,585.920000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1304,1440.000000,61,0,-1.000000,611.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,61,0,-1.000000,622.400000,baseline,lora,60 +on2,0,0,24,0,0,1415,1440.000000,61,0,-1.000000,581.920000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1432,1440.000000,62,0,-1.000000,577.440000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1345,1440.000000,62,0,-1.000000,591.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,62,0,-1.000000,608.640000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1396,1440.000000,62,0,-1.000000,583.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1388,1440.000000,62,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,578.400000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1408,1440.000000,63,0,-1.000000,581.280000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1364,1440.000000,63,0,-1.000000,588.640000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,63,0,-1.000000,624.640000,baseline,lora,60 +on6,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1417,1440.000000,63,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1379,1440.000000,63,0,-1.000000,591.200000,baseline,lora,60 +on1,0,0,24,0,0,1427,1440.000000,63,0,-1.000000,578.240000,baseline,lora,60 +on9,0,0,24,0,0,1403,1440.000000,63,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1419,1440.000000,63,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,64,0,-1.000000,622.880000,baseline,lora,60 +on12,0,0,24,0,0,1407,1440.000000,64,0,-1.000000,581.440000,baseline,lora,60 +on8,0,0,24,0,0,1383,1440.000000,64,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1426,1440.000000,64,0,-1.000000,587.840000,baseline,lora,60 +on9,0,0,24,0,0,1405,1440.000000,64,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1384,1440.000000,64,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1350,1440.000000,64,0,-1.000000,594.720000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1410,1440.000000,65,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1401,1440.000000,65,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1384,1440.000000,65,0,-1.000000,585.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,65,0,-1.000000,626.400000,baseline,lora,60 +on11,0,0,24,0,0,1383,1440.000000,65,0,-1.000000,588.640000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1379,1440.000000,65,0,-1.000000,590.080000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1426,1440.000000,65,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1391,1440.000000,65,0,-1.000000,584.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1414,1440.000000,66,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1424,1440.000000,66,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1382,1440.000000,66,0,-1.000000,585.440000,baseline,lora,60 +on5,0,0,24,0,0,1386,1440.000000,66,0,-1.000000,584.800000,baseline,lora,60 +on3,0,0,24,0,0,1436,1440.000000,66,0,-1.000000,576.800000,baseline,lora,60 +on4,0,0,24,0,0,1389,1440.000000,66,0,-1.000000,591.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,66,0,-1.000000,619.840000,baseline,lora,60 +on8,0,0,24,0,0,1406,1440.000000,66,0,-1.000000,581.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1418,1440.000000,66,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1394,1440.000000,67,0,-1.000000,583.520000,baseline,lora,60 +on3,0,0,24,0,0,1424,1440.000000,67,0,-1.000000,578.720000,baseline,lora,60 +on5,0,0,24,0,0,1427,1440.000000,67,0,-1.000000,579.360000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,67,0,-1.000000,619.360000,baseline,lora,60 +on6,0,0,24,0,0,1404,1440.000000,67,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1398,1440.000000,67,0,-1.000000,584.160000,baseline,lora,60 +on4,0,0,24,0,0,1389,1440.000000,67,0,-1.000000,592.640000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1395,1440.000000,67,0,-1.000000,592.960000,baseline,lora,60 +on2,0,0,24,0,0,1428,1440.000000,67,0,-1.000000,578.080000,baseline,lora,60 +on7,0,0,24,0,0,1370,1440.000000,68,0,-1.000000,589.920000,baseline,lora,60 +on9,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,582.400000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1388,1440.000000,68,0,-1.000000,584.480000,baseline,lora,60 +on1,0,0,24,0,0,1410,1440.000000,68,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1382,1440.000000,68,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,68,0,-1.000000,645.600000,baseline,lora,60 +on11,0,0,24,0,0,1304,1440.000000,68,0,-1.000000,609.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,582.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1405,1440.000000,69,0,-1.000000,581.760000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1400,1440.000000,69,0,-1.000000,582.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,69,0,-1.000000,595.840000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1403,1440.000000,69,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1432,1440.000000,69,0,-1.000000,577.440000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1395,1440.000000,70,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1388,1440.000000,70,0,-1.000000,584.480000,baseline,lora,60 +on9,0,0,24,0,0,1391,1440.000000,70,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,70,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,70,0,-1.000000,579.840000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,70,0,-1.000000,620.960000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1388,1440.000000,70,0,-1.000000,584.480000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1416,1440.000000,70,0,-1.000000,580.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1332,1440.000000,71,0,-1.000000,596.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1403,1440.000000,71,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1438,1440.000000,71,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1377,1440.000000,71,0,-1.000000,586.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,71,0,-1.000000,628.800000,baseline,lora,60 +on3,0,0,24,0,0,1329,1440.000000,71,0,-1.000000,595.200000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1346,1440.000000,72,0,-1.000000,591.360000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1383,1440.000000,72,0,-1.000000,585.280000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1339,1440.000000,72,0,-1.000000,596.640000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1365,1440.000000,72,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,72,0,-1.000000,629.600000,baseline,lora,60 +on5,0,0,24,0,0,1353,1440.000000,73,0,-1.000000,593.600000,baseline,lora,60 +on6,0,0,24,0,0,1420,1440.000000,73,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1413,1440.000000,73,0,-1.000000,586.560000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1425,1440.000000,73,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,73,0,-1.000000,605.120000,baseline,lora,60 +on9,0,0,24,0,0,1414,1440.000000,73,0,-1.000000,580.320000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1397,1440.000000,74,0,-1.000000,592.640000,baseline,lora,60 +on1,0,0,24,0,0,1401,1440.000000,74,0,-1.000000,582.560000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,74,0,-1.000000,613.760000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1404,1440.000000,74,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1371,1440.000000,74,0,-1.000000,588.800000,baseline,lora,60 +on8,0,0,24,0,0,1400,1440.000000,74,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1428,1440.000000,75,0,-1.000000,587.840000,baseline,lora,60 +on10,0,0,24,0,0,1401,1440.000000,75,0,-1.000000,582.400000,baseline,lora,60 +on4,0,0,24,0,0,1377,1440.000000,75,0,-1.000000,589.600000,baseline,lora,60 +on12,0,0,24,0,0,1348,1440.000000,75,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.160000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1391,1440.000000,75,0,-1.000000,584.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1411,1440.000000,75,0,-1.000000,587.360000,baseline,lora,60 +on11,0,0,24,0,0,1393,1440.000000,75,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,75,0,-1.000000,630.880000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1406,1440.000000,76,0,-1.000000,581.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.160000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1414,1440.000000,76,0,-1.000000,580.320000,baseline,lora,60 +on1,0,0,24,0,0,1436,1440.000000,76,0,-1.000000,576.800000,baseline,lora,60 +on9,0,0,24,0,0,1377,1440.000000,76,0,-1.000000,586.400000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,76,0,-1.000000,606.720000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1382,1440.000000,76,0,-1.000000,585.440000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1381,1440.000000,77,0,-1.000000,593.920000,baseline,lora,60 +on10,0,0,24,0,0,1426,1440.000000,77,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1386,1440.000000,77,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1382,1440.000000,77,0,-1.000000,585.440000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1386,1440.000000,77,0,-1.000000,584.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,77,0,-1.000000,615.200000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1394,1440.000000,78,0,-1.000000,583.520000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1418,1440.000000,78,0,-1.000000,579.680000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1411,1440.000000,78,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1354,1440.000000,78,0,-1.000000,590.880000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1425,1440.000000,78,0,-1.000000,578.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,78,0,-1.000000,608.640000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1367,1440.000000,79,0,-1.000000,597.280000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1384,1440.000000,79,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1385,1440.000000,79,0,-1.000000,584.960000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1392,1440.000000,79,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,79,0,-1.000000,614.080000,baseline,lora,60 +on12,0,0,24,0,0,1403,1440.000000,80,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1332,1440.000000,80,0,-1.000000,599.840000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,80,0,-1.000000,624.640000,baseline,lora,60 +on2,0,0,24,0,0,1375,1440.000000,80,0,-1.000000,590.560000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1436,1440.000000,80,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1413,1440.000000,80,0,-1.000000,580.480000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1388,1440.000000,80,0,-1.000000,593.920000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1395,1440.000000,81,0,-1.000000,583.520000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1411,1440.000000,81,0,-1.000000,580.800000,baseline,lora,60 +on8,0,0,24,0,0,1364,1440.000000,81,0,-1.000000,592.160000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,baseline,lora,60 +on9,0,0,24,0,0,1298,1440.000000,81,0,-1.000000,600.640000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,81,0,-1.000000,628.800000,baseline,lora,60 +on2,0,0,24,0,0,1412,1440.000000,81,0,-1.000000,580.640000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1407,1440.000000,82,0,-1.000000,581.440000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1437,1440.000000,82,0,-1.000000,576.640000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1383,1440.000000,82,0,-1.000000,588.000000,baseline,lora,60 +on4,0,0,24,0,0,1386,1440.000000,82,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1381,1440.000000,82,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,82,0,-1.000000,613.920000,baseline,lora,60 +on2,0,0,24,0,0,1416,1440.000000,82,0,-1.000000,580.000000,baseline,lora,60 +on6,0,0,24,0,0,1405,1440.000000,83,0,-1.000000,581.760000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1381,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1407,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1399,1440.000000,83,0,-1.000000,582.720000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1363,1440.000000,83,0,-1.000000,595.840000,baseline,lora,60 +on4,0,0,24,0,0,1428,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,83,0,-1.000000,624.000000,baseline,lora,60 +on2,0,0,24,0,0,1437,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1410,1440.000000,83,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.160000,baseline,lora,60 +on2,0,0,24,0,0,1378,1440.000000,84,0,-1.000000,588.800000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1403,1440.000000,84,0,-1.000000,582.080000,baseline,lora,60 +on4,0,0,24,0,0,1406,1440.000000,84,0,-1.000000,587.840000,baseline,lora,60 +on7,0,0,24,0,0,1414,1440.000000,84,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,84,0,-1.000000,602.560000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,586.240000,baseline,lora,60 +on8,0,0,24,0,0,1340,1440.000000,85,0,-1.000000,593.760000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1417,1440.000000,85,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1432,1440.000000,85,0,-1.000000,577.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,85,0,-1.000000,604.960000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1431,1440.000000,85,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,86,0,-1.000000,616.800000,baseline,lora,60 +on2,0,0,24,0,0,1439,1440.000000,86,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1344,1440.000000,86,0,-1.000000,591.680000,baseline,lora,60 +on8,0,0,24,0,0,1432,1440.000000,86,0,-1.000000,577.440000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1420,1440.000000,86,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1429,1440.000000,86,0,-1.000000,577.920000,baseline,lora,60 +on5,0,0,24,0,0,1403,1440.000000,86,0,-1.000000,582.080000,baseline,lora,60 +on3,0,0,24,0,0,1418,1440.000000,86,0,-1.000000,579.680000,baseline,lora,60 +on11,0,0,24,0,0,1389,1440.000000,86,0,-1.000000,584.320000,baseline,lora,60 +on10,0,0,24,0,0,1402,1440.000000,87,0,-1.000000,582.240000,baseline,lora,60 +on1,0,0,24,0,0,1413,1440.000000,87,0,-1.000000,580.480000,baseline,lora,60 +on4,0,0,24,0,0,1398,1440.000000,87,0,-1.000000,582.880000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,87,0,-1.000000,622.560000,baseline,lora,60 +on8,0,0,24,0,0,1439,1440.000000,87,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,87,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,582.080000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1418,1440.000000,87,0,-1.000000,583.680000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1405,1440.000000,87,0,-1.000000,581.760000,baseline,lora,60 +on5,0,0,24,0,0,1402,1440.000000,87,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1384,1440.000000,88,0,-1.000000,589.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,88,0,-1.000000,635.680000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1400,1440.000000,88,0,-1.000000,582.560000,baseline,lora,60 +on2,0,0,24,0,0,1369,1440.000000,88,0,-1.000000,587.680000,baseline,lora,60 +on12,0,0,24,0,0,1422,1440.000000,88,0,-1.000000,579.680000,baseline,lora,60 +on6,0,0,24,0,0,1438,1440.000000,88,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1320,1440.000000,88,0,-1.000000,601.280000,baseline,lora,60 +on7,0,0,24,0,0,1385,1440.000000,88,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1393,1440.000000,89,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1405,1440.000000,89,0,-1.000000,581.760000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1346,1440.000000,89,0,-1.000000,597.440000,baseline,lora,60 +on1,0,0,24,0,0,1369,1440.000000,89,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,89,0,-1.000000,616.800000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1387,1440.000000,90,0,-1.000000,590.400000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.160000,baseline,lora,60 +on12,0,0,24,0,0,1437,1440.000000,90,0,-1.000000,578.560000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1385,1440.000000,90,0,-1.000000,584.960000,baseline,lora,60 +on4,0,0,24,0,0,1398,1440.000000,90,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,90,0,-1.000000,601.440000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1408,1440.000000,91,0,-1.000000,584.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,91,0,-1.000000,604.480000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1378,1440.000000,91,0,-1.000000,592.640000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1423,1440.000000,91,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1435,1440.000000,91,0,-1.000000,576.960000,baseline,lora,60 +on8,0,0,24,0,0,1385,1440.000000,91,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1390,1440.000000,92,0,-1.000000,598.560000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,92,0,-1.000000,611.680000,baseline,lora,60 +on11,0,0,24,0,0,1377,1440.000000,92,0,-1.000000,589.760000,baseline,lora,60 +on12,0,0,24,0,0,1392,1440.000000,92,0,-1.000000,604.800000,baseline,lora,60 +on1,0,0,24,0,0,1387,1440.000000,92,0,-1.000000,584.640000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1426,1440.000000,93,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1405,1440.000000,93,0,-1.000000,581.920000,baseline,lora,60 +on7,0,0,24,0,0,1310,1440.000000,93,0,-1.000000,604.800000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1385,1440.000000,93,0,-1.000000,584.960000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1398,1440.000000,93,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1391,1440.000000,93,0,-1.000000,604.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,93,0,-1.000000,632.800000,baseline,lora,60 +on8,0,0,24,0,0,1422,1440.000000,93,0,-1.000000,579.040000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1407,1440.000000,94,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1430,1440.000000,94,0,-1.000000,577.760000,baseline,lora,60 +on2,0,0,24,0,0,1373,1440.000000,94,0,-1.000000,587.040000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1415,1440.000000,94,0,-1.000000,588.800000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,94,0,-1.000000,598.560000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1406,1440.000000,95,0,-1.000000,591.040000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1425,1440.000000,95,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1433,1440.000000,95,0,-1.000000,577.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,95,0,-1.000000,621.600000,baseline,lora,60 +on4,0,0,24,0,0,1367,1440.000000,95,0,-1.000000,589.920000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1407,1440.000000,95,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1386,1440.000000,95,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1424,1440.000000,95,0,-1.000000,578.720000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1398,1440.000000,95,0,-1.000000,583.040000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,96,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1384,1440.000000,96,0,-1.000000,585.120000,baseline,lora,60 +on4,0,0,24,0,0,1396,1440.000000,96,0,-1.000000,583.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.160000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1397,1440.000000,96,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,96,0,-1.000000,606.080000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,576.640000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1382,1440.000000,97,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,576.320000,baseline,lora,60 +on8,0,0,24,0,0,1389,1440.000000,97,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1407,1440.000000,97,0,-1.000000,581.440000,baseline,lora,60 +on9,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,97,0,-1.000000,605.440000,baseline,lora,60 +on7,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,576.640000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1414,1440.000000,97,0,-1.000000,580.320000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1436,1440.000000,98,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,98,0,-1.000000,584.640000,baseline,lora,60 +on11,0,0,24,0,0,1411,1440.000000,98,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,579.840000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1383,1440.000000,98,0,-1.000000,585.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,98,0,-1.000000,620.000000,baseline,lora,60 +on1,0,0,24,0,0,1404,1440.000000,98,0,-1.000000,581.920000,baseline,lora,60 +on3,0,0,24,0,0,1375,1440.000000,98,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1381,1440.000000,99,0,-1.000000,585.760000,baseline,lora,60 +on8,0,0,24,0,0,1390,1440.000000,99,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1404,1440.000000,99,0,-1.000000,581.920000,baseline,lora,60 +on2,0,0,24,0,0,1408,1440.000000,99,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1394,1440.000000,99,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1404,1440.000000,99,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1433,1440.000000,99,0,-1.000000,584.320000,baseline,lora,60 +on10,0,0,24,0,0,1390,1440.000000,99,0,-1.000000,584.160000,baseline,lora,60 +on3,0,0,24,0,0,1436,1440.000000,99,0,-1.000000,586.240000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,99,0,-1.000000,631.040000,baseline,lora,60 +on9,0,0,24,0,0,1428,1440.000000,99,0,-1.000000,578.080000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,582.400000,baseline,lora,60 +on2,0,0,24,0,0,1349,1440.000000,100,0,-1.000000,592.000000,baseline,lora,60 +on8,0,0,24,0,0,1364,1440.000000,100,0,-1.000000,594.720000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,100,0,-1.000000,625.120000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1396,1440.000000,100,0,-1.000000,583.200000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1390,1440.000000,100,0,-1.000000,584.160000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,101,0,-1.000000,605.440000,baseline,lora,60 +on7,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1416,1440.000000,101,0,-1.000000,588.320000,baseline,lora,60 +on9,0,0,24,0,0,1322,1440.000000,101,0,-1.000000,597.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,595.200000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1399,1440.000000,102,0,-1.000000,589.760000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1398,1440.000000,102,0,-1.000000,582.880000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,102,0,-1.000000,595.840000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1403,1440.000000,102,0,-1.000000,582.080000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1291,1440.000000,103,0,-1.000000,603.520000,baseline,lora,60 +on5,0,0,24,0,0,1403,1440.000000,103,0,-1.000000,582.080000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,103,0,-1.000000,624.800000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1422,1440.000000,103,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1415,1440.000000,103,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1385,1440.000000,103,0,-1.000000,587.680000,baseline,lora,60 +on11,0,0,24,0,0,1428,1440.000000,103,0,-1.000000,578.080000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1425,1440.000000,104,0,-1.000000,584.960000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,104,0,-1.000000,610.080000,baseline,lora,60 +on8,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,582.080000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1397,1440.000000,104,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1385,1440.000000,104,0,-1.000000,584.960000,baseline,lora,60 +on10,0,0,24,0,0,1400,1440.000000,104,0,-1.000000,582.560000,baseline,lora,60 +on2,0,0,24,0,0,1432,1440.000000,104,0,-1.000000,577.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1434,1440.000000,104,0,-1.000000,577.120000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1395,1440.000000,105,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,585.760000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,105,0,-1.000000,592.320000,baseline,lora,60 +on10,0,0,24,0,0,1425,1440.000000,105,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,579.040000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1381,1440.000000,106,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,106,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1430,1440.000000,106,0,-1.000000,577.760000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1416,1440.000000,106,0,-1.000000,580.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1407,1440.000000,106,0,-1.000000,581.440000,baseline,lora,60 +on10,0,0,24,0,0,1422,1440.000000,106,0,-1.000000,579.040000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,106,0,-1.000000,603.840000,baseline,lora,60 +on1,0,0,24,0,0,1414,1440.000000,107,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,107,0,-1.000000,596.320000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1395,1440.000000,107,0,-1.000000,583.360000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1412,1440.000000,107,0,-1.000000,580.640000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1416,1440.000000,107,0,-1.000000,580.000000,baseline,lora,60 +on7,0,0,24,0,0,1426,1440.000000,108,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1435,1440.000000,108,0,-1.000000,581.120000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,108,0,-1.000000,595.680000,baseline,lora,60 +on10,0,0,24,0,0,1405,1440.000000,108,0,-1.000000,581.760000,baseline,lora,60 +on9,0,0,24,0,0,1433,1440.000000,108,0,-1.000000,577.280000,baseline,lora,60 +on8,0,0,24,0,0,1384,1440.000000,108,0,-1.000000,594.240000,baseline,lora,60 +on7,0,0,24,0,0,1416,1440.000000,109,0,-1.000000,580.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,109,0,-1.000000,595.360000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1388,1440.000000,109,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1406,1440.000000,109,0,-1.000000,581.600000,baseline,lora,60 +on3,0,0,24,0,0,1434,1440.000000,109,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.160000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,110,0,-1.000000,608.160000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1437,1440.000000,110,0,-1.000000,576.640000,baseline,lora,60 +on3,0,0,24,0,0,1408,1440.000000,110,0,-1.000000,581.280000,baseline,lora,60 +on10,0,0,24,0,0,1410,1440.000000,110,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1391,1440.000000,110,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1425,1440.000000,110,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1376,1440.000000,110,0,-1.000000,586.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,111,0,-1.000000,618.720000,baseline,lora,60 +on4,0,0,24,0,0,1399,1440.000000,111,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,588.800000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1399,1440.000000,111,0,-1.000000,582.720000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,580.480000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1370,1440.000000,111,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,111,0,-1.000000,584.640000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1398,1440.000000,112,0,-1.000000,582.880000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,112,0,-1.000000,615.520000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1369,1440.000000,112,0,-1.000000,587.680000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1417,1440.000000,112,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1404,1440.000000,112,0,-1.000000,581.920000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1416,1440.000000,112,0,-1.000000,580.000000,baseline,lora,60 +on5,0,0,24,0,0,1410,1440.000000,112,0,-1.000000,580.960000,baseline,lora,60 +on7,0,0,24,0,0,1428,1440.000000,112,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1376,1440.000000,113,0,-1.000000,595.200000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1409,1440.000000,113,0,-1.000000,595.200000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,113,0,-1.000000,600.160000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1389,1440.000000,113,0,-1.000000,584.320000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1401,1440.000000,114,0,-1.000000,582.400000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1412,1440.000000,114,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1384,1440.000000,114,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1421,1440.000000,114,0,-1.000000,584.480000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1401,1440.000000,114,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1385,1440.000000,114,0,-1.000000,584.960000,baseline,lora,60 +on1,0,0,24,0,0,1386,1440.000000,114,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,114,0,-1.000000,623.680000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,115,0,-1.000000,616.160000,baseline,lora,60 +on10,0,0,24,0,0,1432,1440.000000,115,0,-1.000000,577.440000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1416,1440.000000,115,0,-1.000000,580.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1386,1440.000000,115,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1399,1440.000000,115,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1375,1440.000000,115,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1388,1440.000000,115,0,-1.000000,584.480000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1421,1440.000000,116,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,116,0,-1.000000,609.120000,baseline,lora,60 +on2,0,0,24,0,0,1428,1440.000000,116,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1418,1440.000000,116,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1388,1440.000000,116,0,-1.000000,584.480000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1370,1440.000000,116,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1415,1440.000000,116,0,-1.000000,580.160000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1398,1440.000000,117,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1406,1440.000000,117,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,117,0,-1.000000,595.680000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1427,1440.000000,117,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1410,1440.000000,117,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1393,1440.000000,118,0,-1.000000,583.680000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1388,1440.000000,118,0,-1.000000,584.480000,baseline,lora,60 +on11,0,0,24,0,0,1405,1440.000000,118,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1333,1440.000000,118,0,-1.000000,593.760000,baseline,lora,60 +on7,0,0,24,0,0,1415,1440.000000,118,0,-1.000000,580.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,118,0,-1.000000,635.840000,baseline,lora,60 +on5,0,0,24,0,0,1386,1440.000000,118,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,118,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1399,1440.000000,119,0,-1.000000,582.720000,baseline,lora,60 +on8,0,0,24,0,0,1437,1440.000000,119,0,-1.000000,578.080000,baseline,lora,60 +on2,0,0,24,0,0,1394,1440.000000,119,0,-1.000000,595.200000,baseline,lora,60 +on9,0,0,24,0,0,1388,1440.000000,119,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1338,1440.000000,119,0,-1.000000,600.320000,baseline,lora,60 +on6,0,0,24,0,0,1420,1440.000000,119,0,-1.000000,579.360000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,119,0,-1.000000,625.280000,baseline,lora,60 +on11,0,0,24,0,0,1424,1440.000000,119,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1425,1440.000000,119,0,-1.000000,578.560000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1388,1440.000000,120,0,-1.000000,584.480000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1375,1440.000000,120,0,-1.000000,591.360000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,585.760000,baseline,lora,60 +on1,0,0,24,0,0,1392,1440.000000,120,0,-1.000000,583.840000,baseline,lora,60 +on6,0,0,24,0,0,1357,1440.000000,120,0,-1.000000,591.840000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1432,1440.000000,120,0,-1.000000,577.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,120,0,-1.000000,621.600000,baseline,lora,60 +on8,0,0,24,0,0,1416,1440.000000,121,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1398,1440.000000,121,0,-1.000000,589.440000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1390,1440.000000,121,0,-1.000000,584.160000,baseline,lora,60 +on3,0,0,24,0,0,1372,1440.000000,121,0,-1.000000,597.760000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1335,1440.000000,121,0,-1.000000,594.720000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1420,1440.000000,121,0,-1.000000,579.360000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,121,0,-1.000000,636.000000,baseline,lora,60 +on4,0,0,24,0,0,1386,1440.000000,121,0,-1.000000,584.800000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1404,1440.000000,122,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1397,1440.000000,122,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,122,0,-1.000000,615.520000,baseline,lora,60 +on7,0,0,24,0,0,1433,1440.000000,122,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1397,1440.000000,122,0,-1.000000,583.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1434,1440.000000,122,0,-1.000000,577.120000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1336,1440.000000,122,0,-1.000000,593.440000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1364,1440.000000,123,0,-1.000000,592.320000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1416,1440.000000,123,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1396,1440.000000,123,0,-1.000000,583.200000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1354,1440.000000,123,0,-1.000000,590.240000,baseline,lora,60 +on10,0,0,24,0,0,1328,1440.000000,123,0,-1.000000,600.320000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,123,0,-1.000000,632.480000,baseline,lora,60 +on1,0,0,24,0,0,1415,1440.000000,124,0,-1.000000,580.320000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,124,0,-1.000000,592.320000,baseline,lora,60 +on5,0,0,24,0,0,1325,1440.000000,124,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1315,1440.000000,124,0,-1.000000,610.240000,baseline,lora,60 +on6,0,0,24,0,0,1404,1440.000000,124,0,-1.000000,581.920000,baseline,lora,60 +on8,0,0,24,0,0,1388,1440.000000,124,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1367,1440.000000,124,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,124,0,-1.000000,655.360000,baseline,lora,60 +on4,0,0,24,0,0,1431,1440.000000,124,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1363,1440.000000,125,0,-1.000000,588.640000,baseline,lora,60 +on2,0,0,24,0,0,1376,1440.000000,125,0,-1.000000,590.080000,baseline,lora,60 +on8,0,0,24,0,0,1398,1440.000000,125,0,-1.000000,583.040000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1439,1440.000000,125,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1355,1440.000000,125,0,-1.000000,592.160000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,125,0,-1.000000,620.480000,baseline,lora,60 +on12,0,0,24,0,0,1404,1440.000000,126,0,-1.000000,582.080000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1350,1440.000000,126,0,-1.000000,592.160000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1401,1440.000000,126,0,-1.000000,586.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,126,0,-1.000000,646.560000,baseline,lora,60 +on6,0,0,24,0,0,1388,1440.000000,126,0,-1.000000,584.480000,baseline,lora,60 +on3,0,0,24,0,0,1322,1440.000000,126,0,-1.000000,602.720000,baseline,lora,60 +on2,0,0,24,0,0,1408,1440.000000,126,0,-1.000000,581.280000,baseline,lora,60 +on5,0,0,24,0,0,1412,1440.000000,126,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1407,1440.000000,126,0,-1.000000,581.440000,baseline,lora,60 +on4,0,0,24,0,0,1387,1440.000000,127,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,127,0,-1.000000,625.760000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1375,1440.000000,127,0,-1.000000,587.040000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1363,1440.000000,127,0,-1.000000,594.080000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1395,1440.000000,127,0,-1.000000,583.360000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1378,1440.000000,127,0,-1.000000,589.120000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1395,1440.000000,128,0,-1.000000,583.360000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1385,1440.000000,128,0,-1.000000,584.960000,baseline,lora,60 +on4,0,0,24,0,0,1391,1440.000000,128,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1410,1440.000000,128,0,-1.000000,580.960000,baseline,lora,60 +on2,0,0,24,0,0,1384,1440.000000,128,0,-1.000000,585.120000,baseline,lora,60 +on12,0,0,24,0,0,1374,1440.000000,128,0,-1.000000,589.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,128,0,-1.000000,625.280000,baseline,lora,60 +on1,0,0,24,0,0,1380,1440.000000,129,0,-1.000000,594.080000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,129,0,-1.000000,617.280000,baseline,lora,60 +on4,0,0,24,0,0,1425,1440.000000,129,0,-1.000000,586.080000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1382,1440.000000,129,0,-1.000000,593.760000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.160000,baseline,lora,60 +on3,0,0,24,0,0,1426,1440.000000,129,0,-1.000000,578.400000,baseline,lora,60 +on10,0,0,24,0,0,1397,1440.000000,129,0,-1.000000,583.040000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1385,1440.000000,129,0,-1.000000,589.600000,baseline,lora,60 +on8,0,0,24,0,0,1394,1440.000000,130,0,-1.000000,590.720000,baseline,lora,60 +on3,0,0,24,0,0,1417,1440.000000,130,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,582.080000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1383,1440.000000,130,0,-1.000000,592.960000,baseline,lora,60 +on4,0,0,24,0,0,1435,1440.000000,130,0,-1.000000,576.960000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1418,1440.000000,130,0,-1.000000,579.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,130,0,-1.000000,615.360000,baseline,lora,60 +on1,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,582.080000,baseline,lora,60 +on2,0,0,24,0,0,1432,1440.000000,130,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,581.280000,baseline,lora,60 +on7,0,0,24,0,0,1417,1440.000000,131,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1426,1440.000000,131,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1412,1440.000000,131,0,-1.000000,589.120000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1405,1440.000000,131,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,131,0,-1.000000,598.080000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,132,0,-1.000000,609.440000,baseline,lora,60 +on4,0,0,24,0,0,1411,1440.000000,132,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1409,1440.000000,132,0,-1.000000,581.280000,baseline,lora,60 +on11,0,0,24,0,0,1415,1440.000000,132,0,-1.000000,580.160000,baseline,lora,60 +on7,0,0,24,0,0,1402,1440.000000,132,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1430,1440.000000,132,0,-1.000000,580.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1392,1440.000000,132,0,-1.000000,583.840000,baseline,lora,60 +on10,0,0,24,0,0,1420,1440.000000,132,0,-1.000000,579.360000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1439,1440.000000,133,0,-1.000000,576.320000,baseline,lora,60 +on10,0,0,24,0,0,1400,1440.000000,133,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1377,1440.000000,133,0,-1.000000,592.480000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1388,1440.000000,133,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1400,1440.000000,133,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1410,1440.000000,133,0,-1.000000,588.960000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,133,0,-1.000000,632.800000,baseline,lora,60 +on9,0,0,24,0,0,1349,1440.000000,133,0,-1.000000,590.880000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1415,1440.000000,133,0,-1.000000,580.160000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1402,1440.000000,134,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1401,1440.000000,134,0,-1.000000,588.320000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,134,0,-1.000000,581.440000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1364,1440.000000,134,0,-1.000000,588.640000,baseline,lora,60 +on5,0,0,24,0,0,1404,1440.000000,134,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1410,1440.000000,134,0,-1.000000,580.960000,baseline,lora,60 +on12,0,0,24,0,0,1405,1440.000000,134,0,-1.000000,581.760000,baseline,lora,60 +on8,0,0,24,0,0,1439,1440.000000,134,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1382,1440.000000,134,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,134,0,-1.000000,631.680000,baseline,lora,60 +on12,0,0,24,0,0,1419,1440.000000,135,0,-1.000000,579.680000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,135,0,-1.000000,626.560000,baseline,lora,60 +on6,0,0,24,0,0,1394,1440.000000,135,0,-1.000000,583.520000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1401,1440.000000,135,0,-1.000000,595.200000,baseline,lora,60 +on5,0,0,24,0,0,1409,1440.000000,135,0,-1.000000,581.120000,baseline,lora,60 +on7,0,0,24,0,0,1383,1440.000000,135,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1354,1440.000000,135,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1432,1440.000000,135,0,-1.000000,577.440000,baseline,lora,60 +on8,0,0,24,0,0,1424,1440.000000,135,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1373,1440.000000,136,0,-1.000000,595.200000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,577.760000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1423,1440.000000,136,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,586.240000,baseline,lora,60 +on1,0,0,24,0,0,1407,1440.000000,136,0,-1.000000,581.440000,baseline,lora,60 +on4,0,0,24,0,0,1355,1440.000000,136,0,-1.000000,589.920000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,136,0,-1.000000,612.960000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1403,1440.000000,137,0,-1.000000,588.000000,baseline,lora,60 +on8,0,0,24,0,0,1421,1440.000000,137,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1439,1440.000000,137,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1385,1440.000000,137,0,-1.000000,593.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1403,1440.000000,137,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1429,1440.000000,137,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,137,0,-1.000000,635.680000,baseline,lora,60 +on11,0,0,24,0,0,1400,1440.000000,137,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1425,1440.000000,137,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1295,1440.000000,137,0,-1.000000,601.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1385,1440.000000,138,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1392,1440.000000,138,0,-1.000000,583.840000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1400,1440.000000,138,0,-1.000000,591.360000,baseline,lora,60 +on4,0,0,24,0,0,1360,1440.000000,138,0,-1.000000,593.280000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,138,0,-1.000000,614.400000,baseline,lora,60 +on11,0,0,24,0,0,1430,1440.000000,138,0,-1.000000,578.720000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,139,0,-1.000000,632.000000,baseline,lora,60 +on3,0,0,24,0,0,1400,1440.000000,139,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1418,1440.000000,139,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1428,1440.000000,139,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1383,1440.000000,139,0,-1.000000,589.280000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1314,1440.000000,139,0,-1.000000,596.640000,baseline,lora,60 +on5,0,0,24,0,0,1393,1440.000000,139,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1420,1440.000000,139,0,-1.000000,579.520000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1427,1440.000000,139,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1406,1440.000000,140,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1364,1440.000000,140,0,-1.000000,588.640000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1428,1440.000000,140,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1388,1440.000000,140,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1333,1440.000000,140,0,-1.000000,593.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,140,0,-1.000000,624.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1432,1440.000000,140,0,-1.000000,577.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1423,1440.000000,141,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.160000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,141,0,-1.000000,594.720000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1395,1440.000000,141,0,-1.000000,583.360000,baseline,lora,60 +on11,0,0,24,0,0,1389,1440.000000,141,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,142,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1405,1440.000000,142,0,-1.000000,581.760000,baseline,lora,60 +on3,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,580.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1385,1440.000000,142,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1374,1440.000000,142,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,142,0,-1.000000,609.440000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1410,1440.000000,143,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1396,1440.000000,143,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,143,0,-1.000000,629.440000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1303,1440.000000,143,0,-1.000000,600.800000,baseline,lora,60 +on6,0,0,24,0,0,1407,1440.000000,143,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1432,1440.000000,143,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1419,1440.000000,143,0,-1.000000,583.040000,baseline,lora,60 +on5,0,0,24,0,0,1391,1440.000000,143,0,-1.000000,584.160000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1403,1440.000000,144,0,-1.000000,590.400000,baseline,lora,60 +on12,0,0,24,0,0,1400,1440.000000,144,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,144,0,-1.000000,604.320000,baseline,lora,60 +on10,0,0,24,0,0,1431,1440.000000,144,0,-1.000000,577.600000,baseline,lora,60 +on7,0,0,24,0,0,1388,1440.000000,144,0,-1.000000,587.040000,baseline,lora,60 +on5,0,0,24,0,0,1409,1440.000000,144,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1388,1440.000000,145,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1413,1440.000000,145,0,-1.000000,580.480000,baseline,lora,60 +on12,0,0,24,0,0,1434,1440.000000,145,0,-1.000000,577.120000,baseline,lora,60 +on8,0,0,24,0,0,1409,1440.000000,145,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,145,0,-1.000000,629.280000,baseline,lora,60 +on5,0,0,24,0,0,1374,1440.000000,145,0,-1.000000,586.880000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.160000,baseline,lora,60 +on4,0,0,24,0,0,1419,1440.000000,145,0,-1.000000,580.320000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1394,1440.000000,145,0,-1.000000,583.520000,baseline,lora,60 +on9,0,0,24,0,0,1383,1440.000000,145,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1426,1440.000000,145,0,-1.000000,578.400000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,146,0,-1.000000,612.160000,baseline,lora,60 +on5,0,0,24,0,0,1432,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1400,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1412,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1402,1440.000000,146,0,-1.000000,582.240000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1400,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1418,1440.000000,146,0,-1.000000,588.800000,baseline,lora,60 +on3,0,0,24,0,0,1413,1440.000000,146,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1427,1440.000000,146,0,-1.000000,578.400000,baseline,lora,60 +on4,0,0,24,0,0,1390,1440.000000,147,0,-1.000000,584.160000,baseline,lora,60 +on5,0,0,24,0,0,1416,1440.000000,147,0,-1.000000,580.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1414,1440.000000,147,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1423,1440.000000,147,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1380,1440.000000,147,0,-1.000000,585.920000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,147,0,-1.000000,605.280000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1392,1440.000000,148,0,-1.000000,583.840000,baseline,lora,60 +on10,0,0,24,0,0,1426,1440.000000,148,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1391,1440.000000,148,0,-1.000000,584.000000,baseline,lora,60 +on3,0,0,24,0,0,1439,1440.000000,148,0,-1.000000,578.560000,baseline,lora,60 +on6,0,0,24,0,0,1381,1440.000000,148,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1380,1440.000000,148,0,-1.000000,591.040000,baseline,lora,60 +on7,0,0,24,0,0,1384,1440.000000,148,0,-1.000000,585.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,148,0,-1.000000,630.560000,baseline,lora,60 +on12,0,0,24,0,0,1433,1440.000000,148,0,-1.000000,577.280000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1404,1440.000000,148,0,-1.000000,581.920000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,149,0,-1.000000,580.960000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.160000,baseline,lora,60 +on6,0,0,24,0,0,1439,1440.000000,149,0,-1.000000,576.320000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1437,1440.000000,149,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,149,0,-1.000000,607.360000,baseline,lora,60 +on10,0,0,24,0,0,1384,1440.000000,149,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1365,1440.000000,149,0,-1.000000,588.320000,baseline,lora,60 +on9,0,0,24,0,0,1424,1440.000000,149,0,-1.000000,587.680000,baseline,lora,60 +on5,0,0,24,0,0,1435,1440.000000,149,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1419,1440.000000,150,0,-1.000000,579.520000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1400,1440.000000,150,0,-1.000000,582.560000,baseline,lora,60 +on2,0,0,24,0,0,1400,1440.000000,150,0,-1.000000,589.600000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,150,0,-1.000000,579.840000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,150,0,-1.000000,616.480000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1413,1440.000000,150,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1392,1440.000000,150,0,-1.000000,583.840000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1394,1440.000000,150,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1384,1440.000000,151,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1424,1440.000000,151,0,-1.000000,578.720000,baseline,lora,60 +on11,0,0,24,0,0,1415,1440.000000,151,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1388,1440.000000,151,0,-1.000000,584.640000,baseline,lora,60 +on2,0,0,24,0,0,1397,1440.000000,151,0,-1.000000,584.000000,baseline,lora,60 +on10,0,0,24,0,0,1413,1440.000000,151,0,-1.000000,587.680000,baseline,lora,60 +on9,0,0,24,0,0,1434,1440.000000,151,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,151,0,-1.000000,619.840000,baseline,lora,60 +on12,0,0,24,0,0,1425,1440.000000,151,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1418,1440.000000,151,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1360,1440.000000,152,0,-1.000000,595.200000,baseline,lora,60 +on12,0,0,24,0,0,1386,1440.000000,152,0,-1.000000,584.800000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1401,1440.000000,152,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1401,1440.000000,152,0,-1.000000,582.400000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1431,1440.000000,152,0,-1.000000,577.600000,baseline,lora,60 +on4,0,0,24,0,0,1423,1440.000000,152,0,-1.000000,578.880000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,152,0,-1.000000,615.200000,baseline,lora,60 +on1,0,0,24,0,0,1434,1440.000000,153,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1385,1440.000000,153,0,-1.000000,592.960000,baseline,lora,60 +on7,0,0,24,0,0,1392,1440.000000,153,0,-1.000000,583.840000,baseline,lora,60 +on4,0,0,24,0,0,1352,1440.000000,153,0,-1.000000,600.480000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,153,0,-1.000000,630.400000,baseline,lora,60 +on6,0,0,24,0,0,1384,1440.000000,153,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,153,0,-1.000000,590.240000,baseline,lora,60 +on5,0,0,24,0,0,1411,1440.000000,153,0,-1.000000,580.800000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1388,1440.000000,154,0,-1.000000,590.240000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1370,1440.000000,154,0,-1.000000,587.680000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,154,0,-1.000000,598.400000,baseline,lora,60 +on6,0,0,24,0,0,1427,1440.000000,154,0,-1.000000,578.240000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,155,0,-1.000000,607.840000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,577.760000,baseline,lora,60 +on12,0,0,24,0,0,1393,1440.000000,155,0,-1.000000,583.680000,baseline,lora,60 +on7,0,0,24,0,0,1403,1440.000000,155,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1402,1440.000000,155,0,-1.000000,582.240000,baseline,lora,60 +on11,0,0,24,0,0,1398,1440.000000,155,0,-1.000000,582.880000,baseline,lora,60 +on8,0,0,24,0,0,1421,1440.000000,155,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1381,1440.000000,156,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1395,1440.000000,156,0,-1.000000,583.360000,baseline,lora,60 +on9,0,0,24,0,0,1392,1440.000000,156,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1439,1440.000000,156,0,-1.000000,585.440000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1365,1440.000000,156,0,-1.000000,588.320000,baseline,lora,60 +on10,0,0,24,0,0,1428,1440.000000,156,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1401,1440.000000,156,0,-1.000000,582.400000,baseline,lora,60 +on5,0,0,24,0,0,1398,1440.000000,156,0,-1.000000,582.880000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,156,0,-1.000000,637.440000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,156,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1421,1440.000000,157,0,-1.000000,579.200000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1428,1440.000000,157,0,-1.000000,578.080000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1437,1440.000000,157,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1421,1440.000000,157,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1422,1440.000000,157,0,-1.000000,579.040000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,157,0,-1.000000,588.160000,baseline,lora,60 +on10,0,0,24,0,0,1425,1440.000000,158,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1416,1440.000000,158,0,-1.000000,580.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1420,1440.000000,158,0,-1.000000,579.360000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1398,1440.000000,158,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,158,0,-1.000000,606.560000,baseline,lora,60 +on9,0,0,24,0,0,1396,1440.000000,158,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1401,1440.000000,158,0,-1.000000,582.560000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1408,1440.000000,159,0,-1.000000,581.280000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,159,0,-1.000000,623.040000,baseline,lora,60 +on6,0,0,24,0,0,1435,1440.000000,159,0,-1.000000,576.960000,baseline,lora,60 +on8,0,0,24,0,0,1427,1440.000000,159,0,-1.000000,578.240000,baseline,lora,60 +on7,0,0,24,0,0,1406,1440.000000,159,0,-1.000000,582.240000,baseline,lora,60 +on12,0,0,24,0,0,1415,1440.000000,159,0,-1.000000,580.320000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1394,1440.000000,159,0,-1.000000,583.680000,baseline,lora,60 +on5,0,0,24,0,0,1403,1440.000000,159,0,-1.000000,582.080000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1398,1440.000000,159,0,-1.000000,582.880000,baseline,lora,60 +on4,0,0,24,0,0,1391,1440.000000,159,0,-1.000000,584.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1345,1440.000000,160,0,-1.000000,594.560000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1391,1440.000000,160,0,-1.000000,584.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1408,1440.000000,160,0,-1.000000,586.400000,baseline,lora,60 +on5,0,0,24,0,0,1413,1440.000000,160,0,-1.000000,580.480000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,160,0,-1.000000,629.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1387,1440.000000,160,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1371,1440.000000,160,0,-1.000000,591.840000,baseline,lora,60 +on11,0,0,24,0,0,1430,1440.000000,161,0,-1.000000,595.200000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1341,1440.000000,161,0,-1.000000,592.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,161,0,-1.000000,612.960000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1422,1440.000000,161,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1352,1440.000000,161,0,-1.000000,590.400000,baseline,lora,60 +on4,0,0,23,0,0,1430,1432.000000,161,0,-1.000000,582.400000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1435,1440.000000,161,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1412,1440.000000,162,0,-1.000000,580.640000,baseline,lora,60 +on12,0,0,24,0,0,1410,1440.000000,162,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1432,1440.000000,162,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1333,1440.000000,162,0,-1.000000,604.800000,baseline,lora,60 +on2,0,0,24,0,0,1425,1440.000000,162,0,-1.000000,578.560000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1352,1440.000000,162,0,-1.000000,595.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,162,0,-1.000000,633.440000,baseline,lora,60 +on10,0,0,24,0,0,1368,1440.000000,162,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,578.720000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1373,1440.000000,163,0,-1.000000,591.200000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,163,0,-1.000000,581.120000,baseline,lora,60 +on3,0,0,24,0,0,1414,1440.000000,163,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,163,0,-1.000000,617.920000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,578.720000,baseline,lora,60 +on9,0,0,24,0,0,1413,1440.000000,163,0,-1.000000,580.480000,baseline,lora,60 +on12,0,0,24,0,0,1423,1440.000000,163,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,163,0,-1.000000,584.640000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1363,1440.000000,164,0,-1.000000,588.960000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,164,0,-1.000000,646.240000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1284,1440.000000,164,0,-1.000000,608.320000,baseline,lora,60 +on2,0,0,24,0,0,1390,1440.000000,164,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1385,1440.000000,164,0,-1.000000,584.960000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1420,1440.000000,164,0,-1.000000,582.400000,baseline,lora,60 +on5,0,0,24,0,0,1398,1440.000000,164,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1412,1440.000000,164,0,-1.000000,580.640000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,165,0,-1.000000,607.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1414,1440.000000,165,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1439,1440.000000,165,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1372,1440.000000,165,0,-1.000000,595.200000,baseline,lora,60 +on11,0,0,24,0,0,1347,1440.000000,165,0,-1.000000,591.360000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1313,1440.000000,166,0,-1.000000,599.200000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,166,0,-1.000000,650.720000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1331,1440.000000,166,0,-1.000000,597.920000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1438,1440.000000,166,0,-1.000000,585.440000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1424,1440.000000,166,0,-1.000000,578.720000,baseline,lora,60 +on10,0,0,24,0,0,1369,1440.000000,166,0,-1.000000,598.720000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1355,1440.000000,166,0,-1.000000,589.920000,baseline,lora,60 +on5,0,0,24,0,0,1397,1440.000000,166,0,-1.000000,583.040000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1389,1440.000000,167,0,-1.000000,589.760000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.160000,baseline,lora,60 +on4,0,0,24,0,0,1434,1440.000000,167,0,-1.000000,577.120000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1394,1440.000000,167,0,-1.000000,583.520000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,167,0,-1.000000,594.720000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1432,1440.000000,167,0,-1.000000,577.440000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,168,0,-1.000000,616.960000,baseline,lora,60 +on5,0,0,24,0,0,1385,1440.000000,168,0,-1.000000,595.200000,baseline,lora,60 +on1,0,0,24,0,0,1437,1440.000000,168,0,-1.000000,576.640000,baseline,lora,60 +on9,0,0,24,0,0,1398,1440.000000,168,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1398,1440.000000,168,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1431,1440.000000,168,0,-1.000000,577.760000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1424,1440.000000,168,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1437,1440.000000,168,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1365,1440.000000,168,0,-1.000000,595.200000,baseline,lora,60 +on4,0,0,24,0,0,1433,1440.000000,169,0,-1.000000,577.280000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1402,1440.000000,169,0,-1.000000,582.400000,baseline,lora,60 +on5,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,581.600000,baseline,lora,60 +on6,0,0,24,0,0,1428,1440.000000,169,0,-1.000000,586.720000,baseline,lora,60 +on11,0,0,24,0,0,1400,1440.000000,169,0,-1.000000,582.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,169,0,-1.000000,630.560000,baseline,lora,60 +on12,0,0,24,0,0,1368,1440.000000,169,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1348,1440.000000,169,0,-1.000000,593.920000,baseline,lora,60 +on3,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1417,1440.000000,170,0,-1.000000,584.800000,baseline,lora,60 +on10,0,0,24,0,0,1364,1440.000000,170,0,-1.000000,594.400000,baseline,lora,60 +on3,0,0,24,0,0,1418,1440.000000,170,0,-1.000000,579.840000,baseline,lora,60 +on6,0,0,24,0,0,1415,1440.000000,170,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1333,1440.000000,170,0,-1.000000,593.440000,baseline,lora,60 +on1,0,0,24,0,0,1371,1440.000000,170,0,-1.000000,591.360000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,170,0,-1.000000,639.200000,baseline,lora,60 +on7,0,0,24,0,0,1384,1440.000000,170,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1436,1440.000000,170,0,-1.000000,582.880000,baseline,lora,60 +on6,0,0,24,0,0,1390,1440.000000,171,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1419,1440.000000,171,0,-1.000000,579.520000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1396,1440.000000,171,0,-1.000000,583.360000,baseline,lora,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1431,1440.000000,171,0,-1.000000,577.600000,baseline,lora,60 +on11,0,0,24,0,0,1426,1440.000000,171,0,-1.000000,578.400000,baseline,lora,60 +on9,0,0,24,0,0,1353,1440.000000,171,0,-1.000000,590.400000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1414,1440.000000,171,0,-1.000000,580.320000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,171,0,-1.000000,617.760000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1433,1440.000000,172,0,-1.000000,577.280000,baseline,lora,60 +on9,0,0,24,0,0,1387,1440.000000,172,0,-1.000000,584.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,172,0,-1.000000,616.640000,baseline,lora,60 +on1,0,0,24,0,0,1395,1440.000000,172,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1416,1440.000000,172,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1425,1440.000000,172,0,-1.000000,579.520000,baseline,lora,60 +on7,0,0,24,0,0,1406,1440.000000,172,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1416,1440.000000,172,0,-1.000000,583.520000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1397,1440.000000,172,0,-1.000000,583.040000,baseline,lora,60 +on2,0,0,24,0,0,1407,1440.000000,173,0,-1.000000,581.440000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,173,0,-1.000000,621.440000,baseline,lora,60 +on5,0,0,24,0,0,1402,1440.000000,173,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1431,1440.000000,173,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1383,1440.000000,173,0,-1.000000,585.760000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1368,1440.000000,173,0,-1.000000,592.160000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1427,1440.000000,173,0,-1.000000,578.240000,baseline,lora,60 +on12,0,0,24,0,0,1387,1440.000000,173,0,-1.000000,584.640000,baseline,lora,60 +on11,0,0,24,0,0,1388,1440.000000,174,0,-1.000000,588.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,174,0,-1.000000,617.760000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1394,1440.000000,174,0,-1.000000,592.320000,baseline,lora,60 +on4,0,0,24,0,0,1415,1440.000000,174,0,-1.000000,580.160000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1429,1440.000000,174,0,-1.000000,577.920000,baseline,lora,60 +on9,0,0,24,0,0,1381,1440.000000,174,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1382,1440.000000,174,0,-1.000000,585.440000,baseline,lora,60 +on10,0,0,24,0,0,1401,1440.000000,175,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1383,1440.000000,175,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1369,1440.000000,175,0,-1.000000,587.680000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,175,0,-1.000000,632.800000,baseline,lora,60 +on5,0,0,24,0,0,1382,1440.000000,175,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1383,1440.000000,175,0,-1.000000,585.280000,baseline,lora,60 +on6,0,0,24,0,0,1430,1440.000000,175,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1386,1440.000000,175,0,-1.000000,588.160000,baseline,lora,60 +on3,0,0,24,0,0,1376,1440.000000,176,0,-1.000000,586.560000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,176,0,-1.000000,609.760000,baseline,lora,60 +on11,0,0,24,0,0,1425,1440.000000,176,0,-1.000000,582.560000,baseline,lora,60 +on10,0,0,24,0,0,1415,1440.000000,176,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1390,1440.000000,176,0,-1.000000,584.160000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,577.920000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1431,1440.000000,176,0,-1.000000,577.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,176,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1432,1440.000000,177,0,-1.000000,577.440000,baseline,lora,60 +on6,0,0,24,0,0,1375,1440.000000,177,0,-1.000000,595.040000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,177,0,-1.000000,632.640000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,579.200000,baseline,lora,60 +on9,0,0,24,0,0,1377,1440.000000,177,0,-1.000000,587.040000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1424,1440.000000,177,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1346,1440.000000,177,0,-1.000000,594.080000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1392,1440.000000,177,0,-1.000000,584.160000,baseline,lora,60 +on2,0,0,24,0,0,1393,1440.000000,177,0,-1.000000,583.680000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1427,1440.000000,178,0,-1.000000,578.240000,baseline,lora,60 +on5,0,0,24,0,0,1411,1440.000000,178,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1419,1440.000000,178,0,-1.000000,579.520000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1397,1440.000000,178,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1407,1440.000000,178,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,178,0,-1.000000,609.920000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1403,1440.000000,178,0,-1.000000,591.040000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1412,1440.000000,178,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1395,1440.000000,179,0,-1.000000,583.360000,baseline,lora,60 +on10,0,0,24,0,0,1413,1440.000000,179,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1405,1440.000000,179,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1429,1440.000000,179,0,-1.000000,577.920000,baseline,lora,60 +on4,0,0,24,0,0,1407,1440.000000,179,0,-1.000000,581.440000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1390,1440.000000,179,0,-1.000000,584.160000,baseline,lora,60 +on5,0,0,24,0,0,1412,1440.000000,179,0,-1.000000,580.640000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,179,0,-1.000000,623.200000,baseline,lora,60 +on9,0,0,24,0,0,1382,1440.000000,179,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1434,1440.000000,180,0,-1.000000,577.120000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,180,0,-1.000000,604.960000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1429,1440.000000,180,0,-1.000000,595.200000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1348,1440.000000,180,0,-1.000000,592.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1376,1440.000000,180,0,-1.000000,594.560000,baseline,lora,60 +on11,0,0,24,0,0,1398,1440.000000,181,0,-1.000000,582.880000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1427,1440.000000,181,0,-1.000000,580.800000,baseline,lora,60 +on3,0,0,24,0,0,1413,1440.000000,181,0,-1.000000,581.440000,baseline,lora,60 +on8,0,0,24,0,0,1418,1440.000000,181,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1395,1440.000000,181,0,-1.000000,583.360000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1426,1440.000000,181,0,-1.000000,578.400000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,181,0,-1.000000,609.120000,baseline,lora,60 +on12,0,0,24,0,0,1405,1440.000000,181,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1390,1440.000000,182,0,-1.000000,590.880000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1385,1440.000000,182,0,-1.000000,584.960000,baseline,lora,60 +on6,0,0,24,0,0,1421,1440.000000,182,0,-1.000000,584.960000,baseline,lora,60 +on7,0,0,24,0,0,1411,1440.000000,182,0,-1.000000,580.800000,baseline,lora,60 +on11,0,0,24,0,0,1398,1440.000000,182,0,-1.000000,582.880000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,182,0,-1.000000,624.640000,baseline,lora,60 +on8,0,0,24,0,0,1387,1440.000000,182,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1427,1440.000000,182,0,-1.000000,578.240000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1407,1440.000000,182,0,-1.000000,581.440000,baseline,lora,60 +on10,0,0,24,0,0,1417,1440.000000,183,0,-1.000000,585.760000,baseline,lora,60 +on1,0,0,24,0,0,1328,1440.000000,183,0,-1.000000,595.840000,baseline,lora,60 +on12,0,0,24,0,0,1423,1440.000000,183,0,-1.000000,578.880000,baseline,lora,60 +on8,0,0,24,0,0,1401,1440.000000,183,0,-1.000000,582.400000,baseline,lora,60 +on4,0,0,24,0,0,1407,1440.000000,183,0,-1.000000,581.440000,baseline,lora,60 +on3,0,0,24,0,0,1401,1440.000000,183,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1421,1440.000000,183,0,-1.000000,585.600000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,183,0,-1.000000,650.720000,baseline,lora,60 +on5,0,0,24,0,0,1389,1440.000000,183,0,-1.000000,595.200000,baseline,lora,60 +on2,0,0,24,0,0,1323,1440.000000,183,0,-1.000000,603.200000,baseline,lora,60 +on12,0,0,24,0,0,1438,1440.000000,184,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1400,1440.000000,184,0,-1.000000,582.560000,baseline,lora,60 +on8,0,0,24,0,0,1382,1440.000000,184,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1393,1440.000000,184,0,-1.000000,590.880000,baseline,lora,60 +on6,0,0,24,0,0,1413,1440.000000,184,0,-1.000000,580.640000,baseline,lora,60 +on2,0,0,24,0,0,1413,1440.000000,184,0,-1.000000,580.480000,baseline,lora,60 +on5,0,0,24,0,0,1401,1440.000000,184,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,184,0,-1.000000,626.720000,baseline,lora,60 +on11,0,0,24,0,0,1387,1440.000000,184,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1427,1440.000000,184,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1382,1440.000000,185,0,-1.000000,585.440000,baseline,lora,60 +on2,0,0,24,0,0,1399,1440.000000,185,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,185,0,-1.000000,616.960000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,580.960000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1396,1440.000000,185,0,-1.000000,585.600000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1389,1440.000000,185,0,-1.000000,595.200000,baseline,lora,60 +on3,0,0,24,0,0,1415,1440.000000,185,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1414,1440.000000,186,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,186,0,-1.000000,596.160000,baseline,lora,60 +on4,0,0,24,0,0,1400,1440.000000,186,0,-1.000000,604.800000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1410,1440.000000,186,0,-1.000000,580.960000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1417,1440.000000,186,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1423,1440.000000,187,0,-1.000000,578.880000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,187,0,-1.000000,609.920000,baseline,lora,60 +on10,0,0,24,0,0,1434,1440.000000,187,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1393,1440.000000,187,0,-1.000000,583.680000,baseline,lora,60 +on11,0,0,24,0,0,1393,1440.000000,187,0,-1.000000,585.600000,baseline,lora,60 +on2,0,0,24,0,0,1408,1440.000000,187,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1399,1440.000000,187,0,-1.000000,583.200000,baseline,lora,60 +on8,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,586.560000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1410,1440.000000,188,0,-1.000000,585.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,188,0,-1.000000,616.960000,baseline,lora,60 +on2,0,0,24,0,0,1412,1440.000000,188,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1431,1440.000000,188,0,-1.000000,577.600000,baseline,lora,60 +on3,0,0,24,0,0,1361,1440.000000,188,0,-1.000000,591.840000,baseline,lora,60 +on8,0,0,24,0,0,1426,1440.000000,188,0,-1.000000,578.400000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,581.120000,baseline,lora,60 +on5,0,0,24,0,0,1427,1440.000000,188,0,-1.000000,578.400000,baseline,lora,60 +on1,0,0,24,0,0,1398,1440.000000,188,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,189,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1390,1440.000000,189,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1382,1440.000000,189,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,189,0,-1.000000,608.480000,baseline,lora,60 +on10,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1434,1440.000000,189,0,-1.000000,577.120000,baseline,lora,60 +on5,0,0,24,0,0,1327,1440.000000,190,0,-1.000000,594.400000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,190,0,-1.000000,634.880000,baseline,lora,60 +on9,0,0,24,0,0,1376,1440.000000,190,0,-1.000000,596.160000,baseline,lora,60 +on11,0,0,24,0,0,1394,1440.000000,190,0,-1.000000,587.360000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1416,1440.000000,190,0,-1.000000,580.000000,baseline,lora,60 +on12,0,0,24,0,0,1388,1440.000000,190,0,-1.000000,584.480000,baseline,lora,60 +on2,0,0,24,0,0,1381,1440.000000,190,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1391,1440.000000,191,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1385,1440.000000,191,0,-1.000000,584.960000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1388,1440.000000,191,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,191,0,-1.000000,617.440000,baseline,lora,60 +on4,0,0,24,0,0,1387,1440.000000,191,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1396,1440.000000,191,0,-1.000000,583.200000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1402,1440.000000,192,0,-1.000000,582.240000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1429,1440.000000,192,0,-1.000000,577.920000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,192,0,-1.000000,599.520000,baseline,lora,60 +on10,0,0,24,0,0,1427,1440.000000,192,0,-1.000000,578.240000,baseline,lora,60 +on1,0,0,24,0,0,1378,1440.000000,192,0,-1.000000,595.200000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1430,1440.000000,192,0,-1.000000,577.760000,baseline,lora,60 +on9,0,0,24,0,0,1434,1440.000000,192,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1400,1440.000000,193,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1416,1440.000000,193,0,-1.000000,585.600000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1395,1440.000000,193,0,-1.000000,583.360000,baseline,lora,60 +on7,0,0,24,0,0,1380,1440.000000,193,0,-1.000000,592.160000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,193,0,-1.000000,618.880000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1387,1440.000000,193,0,-1.000000,591.200000,baseline,lora,60 +on2,0,0,24,0,0,1411,1440.000000,193,0,-1.000000,587.840000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1433,1440.000000,193,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1405,1440.000000,194,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1426,1440.000000,194,0,-1.000000,578.560000,baseline,lora,60 +on1,0,0,24,0,0,1415,1440.000000,194,0,-1.000000,580.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,194,0,-1.000000,606.560000,baseline,lora,60 +on6,0,0,24,0,0,1420,1440.000000,194,0,-1.000000,579.360000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1437,1440.000000,194,0,-1.000000,576.640000,baseline,lora,60 +on5,0,0,24,0,0,1400,1440.000000,194,0,-1.000000,582.560000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1394,1440.000000,194,0,-1.000000,585.600000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,23,0,0,1438,1438.000000,194,0,-1.000000,575.200000,baseline,lora,60 +on6,0,0,24,0,0,1425,1440.000000,195,0,-1.000000,578.560000,baseline,lora,60 +on8,0,0,24,0,0,1416,1440.000000,195,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1308,1440.000000,195,0,-1.000000,597.600000,baseline,lora,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1399,1440.000000,195,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1410,1440.000000,195,0,-1.000000,580.960000,baseline,lora,60 +on12,0,0,24,0,0,1436,1440.000000,195,0,-1.000000,576.800000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,195,0,-1.000000,616.960000,baseline,lora,60 +on7,0,0,24,0,0,1439,1440.000000,195,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1429,1440.000000,196,0,-1.000000,585.600000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1406,1440.000000,196,0,-1.000000,585.600000,baseline,lora,60 +on5,0,0,24,0,0,1435,1440.000000,196,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1428,1440.000000,196,0,-1.000000,583.680000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,196,0,-1.000000,607.680000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1312,1440.000000,196,0,-1.000000,612.320000,baseline,lora,60 +on3,0,0,24,0,0,1437,1440.000000,197,0,-1.000000,576.640000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,197,0,-1.000000,609.120000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1428,1440.000000,197,0,-1.000000,585.600000,baseline,lora,60 +on10,0,0,24,0,0,1431,1440.000000,197,0,-1.000000,577.600000,baseline,lora,60 +on11,0,0,24,0,0,1421,1440.000000,197,0,-1.000000,585.920000,baseline,lora,60 +on6,0,0,24,0,0,1387,1440.000000,197,0,-1.000000,584.800000,baseline,lora,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,lora,60 +on9,0,0,24,0,0,1340,1440.000000,197,0,-1.000000,601.600000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,198,0,-1.000000,595.840000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1402,1440.000000,198,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1397,1440.000000,198,0,-1.000000,583.040000,baseline,lora,60 +on6,0,0,24,0,0,1408,1440.000000,198,0,-1.000000,585.600000,baseline,lora,60 +on9,0,0,24,0,0,1433,1440.000000,198,0,-1.000000,577.280000,baseline,lora,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on5,0,0,24,0,0,1421,1440.000000,199,0,-1.000000,579.200000,baseline,lora,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on8,0,0,24,0,0,1393,1440.000000,199,0,-1.000000,583.680000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,199,0,-1.000000,610.080000,baseline,lora,60 +on4,0,0,24,0,0,1336,1440.000000,199,0,-1.000000,595.200000,baseline,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,lora,60 +on1,0,0,24,0,0,1431,1440.000000,199,0,-1.000000,577.600000,baseline,lora,60 +on2,0,0,24,0,0,1424,1440.000000,199,0,-1.000000,585.600000,baseline,lora,60 +on7,0,0,24,0,0,1429,1440.000000,199,0,-1.000000,585.280000,baseline,lora,60 +on3,0,0,24,0,0,1386,1440.000000,200,0,-1.000000,584.800000,baseline,lora,60 +on10,0,0,24,0,0,1386,1440.000000,200,0,-1.000000,585.600000,baseline,lora,60 +on11,0,0,24,0,0,1436,1440.000000,200,0,-1.000000,585.600000,baseline,lora,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on12,0,0,24,0,0,1395,1440.000000,200,0,-1.000000,592.160000,baseline,lora,60 +on0,1,0,24,0,0,0,1440.000000,200,0,-1.000000,624.000000,baseline,lora,60 +on5,0,0,24,0,0,1422,1440.000000,200,0,-1.000000,584.320000,baseline,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on7,0,0,24,0,0,1374,1440.000000,200,0,-1.000000,593.920000,baseline,lora,60 +on9,0,0,24,0,0,1390,1440.000000,200,0,-1.000000,584.160000,baseline,lora,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,lora,60 +on6,0,0,24,0,0,1428,1440.000000,1,0,-1.000000,578.080000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1420,1440.000000,1,0,-1.000000,579.360000,hint,lora,60 +on8,0,0,24,0,0,1392,1440.000000,1,0,-1.000000,592.160000,hint,lora,60 +on2,0,0,24,0,0,1384,1440.000000,1,0,-1.000000,585.120000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1431,1440.000000,1,0,-1.000000,577.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1377,1493.000000,1,1,-1.000000,627.872000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,1,0,-1.000000,619.104000,hint,lora,60 +on10,0,0,24,0,0,1411,1440.000000,2,0,-1.000000,580.800000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,27,0,0,1415,1620.000000,2,3,-1.000000,671.136000,hint,lora,60 +on7,0,0,24,0,0,1414,1440.000000,2,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,580.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,2,0,-1.000000,644.864000,hint,lora,60 +on6,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,580.640000,hint,lora,60 +on2,0,0,25,0,0,1430,1500.300000,2,1,-1.000000,610.999795,hint,lora,60 +on9,0,0,24,0,0,1348,1440.000000,2,0,-1.000000,602.560000,hint,lora,60 +on5,0,0,27,0,0,1507,1620.198720,2,3,-1.000000,655.967693,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,3,0,-1.000000,629.184000,hint,lora,60 +on4,0,0,25,0,0,1313,1500.000000,3,1,-1.000000,636.960000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1392,1440.000000,3,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1373,1440.000000,3,0,-1.000000,587.200000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1397,1440.000000,3,0,-1.000000,583.040000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1402,1440.000000,4,0,-1.000000,582.240000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,4,0,-1.000000,606.944000,hint,lora,60 +on2,0,0,24,0,0,1420,1440.000000,4,0,-1.000000,581.120000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.160000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1381,1440.000000,4,0,-1.000000,585.760000,hint,lora,60 +on11,0,0,25,0,0,1393,1500.200000,4,1,-1.000000,610.800000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1436,1440.000000,4,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1433,1440.000000,5,0,-1.000000,577.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,5,0,-1.000000,600.320000,hint,lora,60 +on5,0,0,24,0,0,1419,1440.000000,5,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1404,1440.000000,5,0,-1.000000,581.920000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1428,1440.000000,5,0,-1.000000,578.080000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1370,1440.000000,5,0,-1.000000,591.360000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1438,1440.000000,6,0,-1.000000,576.480000,hint,lora,60 +on7,0,0,24,0,0,1399,1440.000000,6,0,-1.000000,582.720000,hint,lora,60 +on9,0,0,25,0,0,1395,1500.000000,6,1,-1.000000,617.072000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,6,0,-1.000000,614.144000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1402,1440.000000,6,0,-1.000000,582.240000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1393,1440.000000,6,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,7,0,-1.000000,610.528000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1404,1500.000000,7,1,-1.000000,613.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1403,1440.000000,7,0,-1.000000,591.520000,hint,lora,60 +on8,0,0,25,0,0,1377,1500.000000,7,1,-1.000000,614.880000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,8,0,-1.000000,609.984000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1403,1440.000000,8,0,-1.000000,595.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1388,1500.000000,8,1,-1.000000,617.760000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1420,1440.000000,8,0,-1.000000,579.360000,hint,lora,60 +on12,0,0,24,0,0,1433,1440.000000,8,0,-1.000000,577.280000,hint,lora,60 +on4,0,0,24,0,0,1407,1440.000000,8,0,-1.000000,581.440000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1372,1523.000000,9,2,-1.000000,625.360000,hint,lora,60 +on6,0,0,25,0,0,1456,1500.201280,9,1,-1.000000,600.080512,hint,lora,60 +on2,0,0,25,0,0,1478,1500.200000,9,1,-1.000000,600.288000,hint,lora,60 +on7,0,0,25,0,0,1383,1500.300000,9,1,-1.000000,615.784000,hint,lora,60 +on9,0,0,24,0,0,1418,1440.000000,9,0,-1.000000,579.680000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,9,0,-1.000000,659.936000,hint,lora,60 +on12,0,0,25,0,0,1478,1500.000000,9,1,-1.000000,600.208000,hint,lora,60 +on10,0,0,24,0,0,1428,1440.000000,9,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,26,0,0,1468,1560.200000,9,2,-1.000000,635.968000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1352,1500.000000,9,1,-1.000000,624.432000,hint,lora,60 +on3,0,0,26,0,0,1446,1579.198720,9,4,-1.000000,640.639488,hint,lora,60 +on8,0,0,24,0,0,1401,1440.000000,9,0,-1.000000,582.400000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1414,1440.000000,10,0,-1.000000,580.320000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,10,0,-1.000000,617.440000,hint,lora,60 +on4,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1418,1440.000000,10,0,-1.000000,579.680000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1369,1440.000000,10,0,-1.000000,590.880000,hint,lora,60 +on3,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,581.760000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1378,1440.000000,10,0,-1.000000,586.240000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1393,1440.000000,11,0,-1.000000,583.680000,hint,lora,60 +on3,0,0,25,0,0,1385,1500.000000,11,1,-1.000000,612.800000,hint,lora,60 +on11,0,0,25,0,0,1399,1500.000000,11,1,-1.000000,613.328000,hint,lora,60 +on6,0,0,25,0,0,1496,1500.200000,11,1,-1.000000,609.888000,hint,lora,60 +on8,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,581.440000,hint,lora,60 +on2,0,0,25,0,0,1498,1500.000000,11,1,-1.000000,600.000000,hint,lora,60 +on9,0,0,24,0,0,1435,1440.000000,11,0,-1.000000,576.960000,hint,lora,60 +on1,0,0,24,0,0,1368,1440.000000,11,0,-1.000000,587.840000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,26,0,0,1501,1560.000000,11,2,-1.000000,627.840000,hint,lora,60 +on7,0,0,25,0,0,1368,1500.501280,11,1,-1.000000,619.240512,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,11,0,-1.000000,656.128000,hint,lora,60 +on4,0,0,24,0,0,1344,1440.000000,11,0,-1.000000,593.440000,hint,lora,60 +on3,0,0,25,0,0,1407,1500.000000,12,1,-1.000000,612.800000,hint,lora,60 +on10,0,0,24,0,0,1387,1440.000000,12,0,-1.000000,584.640000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1422,1440.000000,12,0,-1.000000,579.040000,hint,lora,60 +on9,0,0,24,0,0,1438,1440.000000,12,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1343,1440.000000,12,0,-1.000000,595.200000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1404,1440.000000,12,0,-1.000000,582.080000,hint,lora,60 +on8,0,0,25,0,0,1347,1500.200000,12,1,-1.000000,620.880000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,12,0,-1.000000,643.488000,hint,lora,60 +on7,0,0,26,0,0,1375,1560.000000,13,2,-1.000000,648.960000,hint,lora,60 +on12,0,0,24,0,0,1429,1440.000000,13,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1414,1440.000000,13,0,-1.000000,580.320000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1418,1494.000000,13,1,-1.000000,616.320000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1377,1500.200000,13,1,-1.000000,619.488000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,13,0,-1.000000,642.912000,hint,lora,60 +on1,0,0,24,0,0,1363,1440.000000,13,0,-1.000000,588.640000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1426,1440.000000,14,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,14,0,-1.000000,619.584000,hint,lora,60 +on3,0,0,25,0,0,1377,1500.000000,14,1,-1.000000,614.880000,hint,lora,60 +on1,0,0,24,0,0,1412,1440.000000,14,0,-1.000000,580.640000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.160000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1372,1440.000000,14,0,-1.000000,592.960000,hint,lora,60 +on10,0,0,24,0,0,1393,1440.000000,14,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1424,1440.000000,14,0,-1.000000,578.720000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1384,1440.000000,15,0,-1.000000,585.120000,hint,lora,60 +on5,0,0,24,0,0,1389,1440.000000,15,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,15,0,-1.000000,580.960000,hint,lora,60 +on11,0,0,24,0,0,1381,1440.000000,15,0,-1.000000,595.200000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,15,0,-1.000000,638.464000,hint,lora,60 +on8,0,0,25,0,0,1395,1500.000000,15,1,-1.000000,620.000000,hint,lora,60 +on2,0,0,24,0,0,1384,1440.000000,15,0,-1.000000,585.120000,hint,lora,60 +on10,0,0,24,0,0,1400,1440.000000,15,0,-1.000000,582.720000,hint,lora,60 +on7,0,0,24,0,0,1367,1440.000000,16,0,-1.000000,591.200000,hint,lora,60 +on12,0,0,24,0,0,1387,1440.000000,16,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,25,0,0,1359,1500.000000,16,1,-1.000000,620.480000,hint,lora,60 +on8,0,0,24,0,0,1423,1440.000000,16,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,16,0,-1.000000,634.144000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1409,1440.000000,16,0,-1.000000,581.120000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1384,1440.000000,16,0,-1.000000,585.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,17,0,-1.000000,621.888000,hint,lora,60 +on6,0,0,24,0,0,1437,1440.000000,17,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,25,0,0,1478,1500.000000,17,1,-1.000000,600.000000,hint,lora,60 +on11,0,0,24,0,0,1413,1440.000000,17,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1447,1500.000000,17,1,-1.000000,605.648000,hint,lora,60 +on2,0,0,24,0,0,1429,1490.000000,17,1,-1.000000,605.600000,hint,lora,60 +on12,0,0,24,0,0,1416,1440.000000,17,0,-1.000000,580.000000,hint,lora,60 +on10,0,0,24,0,0,1424,1440.000000,17,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1328,1463.300000,17,1,-1.000000,606.648000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1431,1440.000000,17,0,-1.000000,577.600000,hint,lora,60 +on9,0,0,25,0,0,1434,1500.000000,17,1,-1.000000,609.600000,hint,lora,60 +on3,0,0,24,0,0,1420,1440.000000,18,0,-1.000000,579.360000,hint,lora,60 +on5,0,0,25,0,0,1358,1500.200000,18,1,-1.000000,621.520000,hint,lora,60 +on8,0,0,24,0,0,1382,1440.000000,18,0,-1.000000,585.440000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1330,1440.000000,18,0,-1.000000,594.080000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1391,1440.000000,18,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,18,0,-1.000000,655.104000,hint,lora,60 +on6,0,0,24,0,0,1338,1440.000000,18,0,-1.000000,593.440000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1427,1440.000000,18,0,-1.000000,578.240000,hint,lora,60 +on7,0,0,24,0,0,1434,1440.000000,19,0,-1.000000,577.120000,hint,lora,60 +on12,0,0,24,0,0,1408,1440.000000,19,0,-1.000000,581.280000,hint,lora,60 +on3,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,576.640000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1425,1440.000000,19,0,-1.000000,586.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,19,0,-1.000000,600.640000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1396,1440.000000,19,0,-1.000000,583.200000,hint,lora,60 +on2,0,0,24,0,0,1393,1440.000000,19,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,20,0,-1.000000,609.920000,hint,lora,60 +on2,0,0,24,0,0,1382,1440.000000,20,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1396,1440.000000,20,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1404,1440.000000,20,0,-1.000000,587.200000,hint,lora,60 +on4,0,0,24,0,0,1416,1440.000000,20,0,-1.000000,580.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1397,1440.000000,20,0,-1.000000,583.200000,hint,lora,60 +on3,0,0,24,0,0,1405,1440.000000,21,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,21,0,-1.000000,623.648000,hint,lora,60 +on7,0,0,24,0,0,1401,1440.000000,21,0,-1.000000,582.400000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1429,1500.000000,21,1,-1.000000,611.632000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1417,1440.000000,21,0,-1.000000,579.840000,hint,lora,60 +on2,0,0,25,0,0,1396,1500.000000,21,1,-1.000000,615.680000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1414,1440.000000,21,0,-1.000000,580.480000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1416,1440.000000,22,0,-1.000000,580.000000,hint,lora,60 +on4,0,0,24,0,0,1388,1440.000000,22,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1405,1440.000000,22,0,-1.000000,581.760000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,22,0,-1.000000,610.880000,hint,lora,60 +on9,0,0,24,0,0,1428,1440.000000,22,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1358,1440.000000,22,0,-1.000000,589.440000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1434,1440.000000,22,0,-1.000000,577.120000,hint,lora,60 +on9,0,0,25,0,0,1463,1500.000000,23,1,-1.000000,602.560000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1392,1440.000000,23,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1436,1440.000000,23,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1365,1440.000000,23,0,-1.000000,595.200000,hint,lora,60 +on11,0,0,25,0,0,1382,1500.000000,23,1,-1.000000,622.352000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,23,0,-1.000000,643.808000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1396,1440.000000,23,0,-1.000000,583.200000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1428,1440.000000,23,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1400,1440.000000,23,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,25,0,0,1389,1500.400000,23,1,-1.000000,613.808000,hint,lora,60 +on2,0,0,24,0,0,1400,1440.000000,24,0,-1.000000,582.560000,hint,lora,60 +on10,0,0,25,0,0,1392,1500.000000,24,1,-1.000000,612.640000,hint,lora,60 +on6,0,0,24,0,0,1400,1440.000000,24,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1358,1440.000000,24,0,-1.000000,591.520000,hint,lora,60 +on8,0,0,24,0,0,1391,1440.000000,24,0,-1.000000,584.000000,hint,lora,60 +on5,0,0,25,0,0,1385,1500.200000,24,1,-1.000000,613.568000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,24,0,-1.000000,645.088000,hint,lora,60 +on7,0,0,25,0,0,1424,1500.000000,24,1,-1.000000,608.800000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1381,1440.000000,25,0,-1.000000,585.760000,hint,lora,60 +on12,0,0,24,0,0,1394,1440.000000,25,0,-1.000000,583.520000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1436,1440.000000,25,0,-1.000000,576.800000,hint,lora,60 +on11,0,0,24,0,0,1432,1440.000000,25,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,25,0,-1.000000,619.584000,hint,lora,60 +on5,0,0,24,0,0,1286,1461.000000,25,1,-1.000000,623.440000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,26,0,0,1358,1560.200000,26,2,-1.000000,652.400000,hint,lora,60 +on7,0,0,24,0,0,1431,1440.000000,26,0,-1.000000,577.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,26,0,-1.000000,648.512000,hint,lora,60 +on10,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,578.240000,hint,lora,60 +on6,0,0,25,0,0,1393,1500.000000,26,1,-1.000000,611.360000,hint,lora,60 +on8,0,0,24,0,0,1400,1440.000000,26,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1409,1440.000000,26,0,-1.000000,586.400000,hint,lora,60 +on1,0,0,24,0,0,1392,1440.000000,26,0,-1.000000,583.840000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1425,1440.000000,26,0,-1.000000,578.560000,hint,lora,60 +on9,0,0,25,0,0,1478,1500.200000,26,1,-1.000000,600.080000,hint,lora,60 +on5,0,0,24,0,0,1397,1440.000000,26,0,-1.000000,583.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,585.440000,hint,lora,60 +on2,0,0,25,0,0,1294,1500.000000,27,1,-1.000000,628.000000,hint,lora,60 +on10,0,0,24,0,0,1368,1440.000000,27,0,-1.000000,587.840000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1331,1440.000000,27,0,-1.000000,593.760000,hint,lora,60 +on6,0,0,24,0,0,1411,1440.000000,27,0,-1.000000,580.800000,hint,lora,60 +on5,0,0,28,0,0,1492,1680.200000,27,4,-1.000000,689.200000,hint,lora,60 +on1,0,0,28,0,0,1576,1680.000000,27,4,-1.000000,681.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,27,0,-1.000000,681.568000,hint,lora,60 +on3,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,585.280000,hint,lora,60 +on9,0,0,24,0,0,1420,1440.000000,27,0,-1.000000,588.480000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,27,0,0,1345,1654.300000,28,4,-1.000000,702.376000,hint,lora,60 +on8,0,0,25,0,0,1396,1500.200000,28,1,-1.000000,614.480000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1479,1500.000000,28,1,-1.000000,600.208000,hint,lora,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,580.160000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1437,1440.000000,28,0,-1.000000,576.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,28,0,-1.000000,634.656000,hint,lora,60 +on10,0,0,24,0,0,1436,1440.000000,28,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1394,1440.000000,28,0,-1.000000,583.680000,hint,lora,60 +on11,0,0,24,0,0,1415,1440.000000,29,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1388,1440.000000,29,0,-1.000000,584.480000,hint,lora,60 +on8,0,0,24,0,0,1438,1440.000000,29,0,-1.000000,576.480000,hint,lora,60 +on7,0,0,24,0,0,1433,1440.000000,29,0,-1.000000,577.280000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1437,1500.201280,29,1,-1.000000,609.680512,hint,lora,60 +on5,0,0,25,0,0,1340,1500.200000,29,1,-1.000000,624.928000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,29,0,-1.000000,622.560000,hint,lora,60 +on12,0,0,25,0,0,1492,1500.200000,29,1,-1.000000,600.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1437,1440.000000,30,0,-1.000000,576.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,30,0,-1.000000,597.920000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1366,1440.000000,30,0,-1.000000,590.240000,hint,lora,60 +on5,0,0,24,0,0,1384,1440.000000,30,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1443,1500.200000,31,1,-1.000000,609.840000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,31,0,-1.000000,633.728000,hint,lora,60 +on10,0,0,24,0,0,1435,1440.000000,31,0,-1.000000,576.960000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,26,0,0,1501,1560.401280,31,2,-1.000000,624.368512,hint,lora,60 +on8,0,0,24,0,0,1404,1440.000000,31,0,-1.000000,581.920000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,26,0,0,1443,1560.201280,31,2,-1.000000,643.488717,hint,lora,60 +on6,0,0,25,0,0,1397,1500.200000,31,1,-1.000000,615.759795,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1366,1500.000000,31,1,-1.000000,618.352000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,580.320000,hint,lora,60 +on5,0,0,24,0,0,1423,1440.000000,32,0,-1.000000,578.880000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1429,1440.000000,32,0,-1.000000,577.920000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1410,1440.000000,32,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,32,0,-1.000000,598.560000,hint,lora,60 +on6,0,0,24,0,0,1416,1440.000000,32,0,-1.000000,585.760000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1400,1500.000000,33,1,-1.000000,609.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1389,1500.200000,33,1,-1.000000,624.768000,hint,lora,60 +on5,0,0,24,0,0,1413,1440.000000,33,0,-1.000000,580.480000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1394,1440.000000,33,0,-1.000000,583.520000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1402,1440.000000,33,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,33,0,-1.000000,619.904000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1416,1440.000000,34,0,-1.000000,580.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,34,0,-1.000000,614.624000,hint,lora,60 +on12,0,0,24,0,0,1420,1440.000000,34,0,-1.000000,579.360000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1396,1500.000000,34,1,-1.000000,615.680000,hint,lora,60 +on8,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1427,1440.000000,34,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1384,1440.000000,34,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1411,1440.000000,35,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,26,0,0,1371,1560.200000,35,2,-1.000000,645.728000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1401,1500.200000,35,1,-1.000000,612.720000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1398,1440.000000,35,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1385,1440.000000,35,0,-1.000000,584.960000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,35,0,-1.000000,630.528000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,36,0,-1.000000,651.872000,hint,lora,60 +on11,0,0,24,0,0,1389,1440.000000,36,0,-1.000000,584.480000,hint,lora,60 +on1,0,0,24,0,0,1385,1440.000000,36,0,-1.000000,584.960000,hint,lora,60 +on9,0,0,24,0,0,1427,1440.000000,36,0,-1.000000,578.240000,hint,lora,60 +on4,0,0,24,0,0,1387,1440.000000,36,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,25,0,0,1478,1500.000000,36,1,-1.000000,600.000000,hint,lora,60 +on10,0,0,24,0,0,1391,1440.000000,36,0,-1.000000,584.000000,hint,lora,60 +on2,0,0,26,0,0,1402,1560.000000,36,2,-1.000000,646.992000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1323,1500.200000,36,1,-1.000000,623.648000,hint,lora,60 +on12,0,0,24,0,0,1419,1440.000000,37,0,-1.000000,579.520000,hint,lora,60 +on6,0,0,25,0,0,1393,1500.200000,37,1,-1.000000,610.800000,hint,lora,60 +on7,0,0,24,0,0,1430,1440.000000,37,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,25,0,0,1369,1500.000000,37,1,-1.000000,616.960000,hint,lora,60 +on2,0,0,24,0,0,1431,1440.000000,37,0,-1.000000,577.600000,hint,lora,60 +on10,0,0,24,0,0,1395,1440.000000,37,0,-1.000000,592.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,37,0,-1.000000,658.272000,hint,lora,60 +on5,0,0,24,0,0,1426,1440.000000,37,0,-1.000000,583.360000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1333,1440.000000,37,0,-1.000000,604.480000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1366,1500.000000,37,1,-1.000000,624.480000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1428,1440.000000,38,0,-1.000000,578.080000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1385,1440.000000,38,0,-1.000000,585.280000,hint,lora,60 +on9,0,0,24,0,0,1414,1440.000000,38,0,-1.000000,580.320000,hint,lora,60 +on12,0,0,24,0,0,1411,1440.000000,38,0,-1.000000,580.800000,hint,lora,60 +on6,0,0,25,0,0,1417,1500.000000,38,1,-1.000000,610.032000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1397,1440.000000,38,0,-1.000000,592.160000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,38,0,-1.000000,613.664000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,581.920000,hint,lora,60 +on4,0,0,24,0,0,1360,1440.000000,39,0,-1.000000,589.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,39,0,-1.000000,618.080000,hint,lora,60 +on5,0,0,23,0,0,1418,1438.000000,39,0,-1.000000,585.280000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1400,1440.000000,39,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1414,1440.000000,39,0,-1.000000,580.320000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1388,1440.000000,39,0,-1.000000,584.640000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1401,1440.000000,40,0,-1.000000,582.400000,hint,lora,60 +on7,0,0,24,0,0,1429,1440.000000,40,0,-1.000000,577.920000,hint,lora,60 +on10,0,0,25,0,0,1333,1519.000000,40,2,-1.000000,633.120000,hint,lora,60 +on11,0,0,24,0,0,1393,1440.000000,40,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1405,1440.000000,40,0,-1.000000,581.760000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,40,0,-1.000000,628.896000,hint,lora,60 +on1,0,0,24,0,0,1408,1440.000000,40,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1418,1440.000000,40,0,-1.000000,579.680000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1347,1440.000000,41,0,-1.000000,597.440000,hint,lora,60 +on9,0,0,24,0,0,1428,1440.000000,41,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,41,0,-1.000000,604.000000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,41,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1406,1440.000000,41,0,-1.000000,581.600000,hint,lora,60 +on6,0,0,25,0,0,1359,1500.000000,42,1,-1.000000,617.760000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,42,0,-1.000000,651.936000,hint,lora,60 +on11,0,0,24,0,0,1406,1440.000000,42,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1411,1500.000000,42,1,-1.000000,609.808000,hint,lora,60 +on7,0,0,25,0,0,1466,1500.000000,42,1,-1.000000,600.000000,hint,lora,60 +on9,0,0,25,0,0,1287,1501.000000,42,2,-1.000000,630.960000,hint,lora,60 +on2,0,0,25,0,0,1400,1500.000000,42,1,-1.000000,612.912000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1428,1500.000000,43,1,-1.000000,609.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,26,0,0,1417,1560.000000,43,2,-1.000000,640.320000,hint,lora,60 +on7,0,0,24,0,0,1419,1440.000000,43,0,-1.000000,579.520000,hint,lora,60 +on6,0,0,24,0,0,1409,1440.000000,43,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1402,1440.000000,43,0,-1.000000,582.400000,hint,lora,60 +on11,0,0,24,0,0,1386,1440.000000,43,0,-1.000000,584.800000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1433,1440.000000,43,0,-1.000000,577.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,43,0,-1.000000,626.944000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,44,0,-1.000000,628.320000,hint,lora,60 +on10,0,0,24,0,0,1343,1440.000000,44,0,-1.000000,604.800000,hint,lora,60 +on2,0,0,24,0,0,1406,1440.000000,44,0,-1.000000,587.840000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1391,1440.000000,44,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1419,1440.000000,44,0,-1.000000,579.520000,hint,lora,60 +on9,0,0,24,0,0,1384,1440.000000,44,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1391,1440.000000,44,0,-1.000000,591.680000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1431,1440.000000,44,0,-1.000000,586.720000,hint,lora,60 +on4,0,0,24,0,0,1397,1440.000000,45,0,-1.000000,583.040000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,45,0,-1.000000,670.656000,hint,lora,60 +on2,0,0,24,0,0,1346,1440.000000,45,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1311,1500.000000,45,1,-1.000000,635.632000,hint,lora,60 +on9,0,0,25,0,0,1431,1500.000000,45,1,-1.000000,607.680000,hint,lora,60 +on8,0,0,26,0,0,1431,1560.200000,45,2,-1.000000,640.560000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1426,1440.000000,45,0,-1.000000,578.400000,hint,lora,60 +on3,0,0,25,0,0,1387,1500.000000,45,1,-1.000000,618.672000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,46,0,-1.000000,651.488000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1349,1440.000000,46,0,-1.000000,590.880000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1444,1500.200000,46,1,-1.000000,603.808000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1425,1500.000000,46,1,-1.000000,609.920000,hint,lora,60 +on3,0,0,24,0,0,1358,1440.000000,46,0,-1.000000,589.440000,hint,lora,60 +on9,0,0,24,0,0,1398,1440.000000,46,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1349,1440.000000,46,0,-1.000000,590.880000,hint,lora,60 +on7,0,0,25,0,0,1419,1500.000000,46,1,-1.000000,612.160000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1418,1500.000000,47,1,-1.000000,610.080000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1423,1440.000000,47,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1392,1440.000000,47,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,47,0,-1.000000,622.048000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1430,1440.000000,47,0,-1.000000,577.760000,hint,lora,60 +on10,0,0,25,0,0,1393,1500.000000,47,1,-1.000000,617.552000,hint,lora,60 +on7,0,0,24,0,0,1403,1440.000000,47,0,-1.000000,582.080000,hint,lora,60 +on2,0,0,24,0,0,1426,1440.000000,48,0,-1.000000,578.400000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,48,0,-1.000000,610.400000,hint,lora,60 +on12,0,0,24,0,0,1361,1440.000000,48,0,-1.000000,595.200000,hint,lora,60 +on6,0,0,24,0,0,1421,1440.000000,48,0,-1.000000,579.200000,hint,lora,60 +on4,0,0,24,0,0,1394,1440.000000,48,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1389,1440.000000,48,0,-1.000000,584.320000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1398,1440.000000,49,0,-1.000000,582.880000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1482,1500.000000,49,1,-1.000000,600.000000,hint,lora,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,581.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,49,0,-1.000000,621.504000,hint,lora,60 +on5,0,0,24,0,0,1384,1440.000000,49,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1407,1500.000000,49,1,-1.000000,612.960000,hint,lora,60 +on9,0,0,24,0,0,1377,1440.000000,49,0,-1.000000,586.400000,hint,lora,60 +on2,0,0,24,0,0,1435,1440.000000,49,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,25,0,0,1444,1500.000000,50,1,-1.000000,603.408000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,50,0,-1.000000,660.192000,hint,lora,60 +on2,0,0,27,0,0,1457,1620.200000,50,3,-1.000000,666.000000,hint,lora,60 +on3,0,0,24,0,0,1383,1440.000000,50,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1386,1440.000000,50,0,-1.000000,584.800000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,26,0,0,1444,1560.000000,50,2,-1.000000,643.200000,hint,lora,60 +on9,0,0,25,0,0,1405,1500.000000,50,1,-1.000000,612.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1414,1440.000000,50,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1367,1440.000000,50,0,-1.000000,588.640000,hint,lora,60 +on7,0,0,25,0,0,1393,1500.200000,51,1,-1.000000,616.400000,hint,lora,60 +on4,0,0,25,0,0,1378,1500.000000,51,1,-1.000000,621.872000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,51,0,-1.000000,636.032000,hint,lora,60 +on6,0,0,24,0,0,1438,1440.000000,51,0,-1.000000,576.480000,hint,lora,60 +on9,0,0,24,0,0,1429,1440.000000,51,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1416,1440.000000,51,0,-1.000000,580.000000,hint,lora,60 +on11,0,0,24,0,0,1382,1440.000000,51,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1397,1440.000000,51,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1475,1500.000000,51,1,-1.000000,600.960000,hint,lora,60 +on8,0,0,25,0,0,1332,1500.000000,52,1,-1.000000,627.360000,hint,lora,60 +on9,0,0,25,0,0,1402,1500.000000,52,1,-1.000000,614.240000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1375,1440.000000,52,0,-1.000000,586.720000,hint,lora,60 +on12,0,0,24,0,0,1394,1440.000000,52,0,-1.000000,595.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,52,0,-1.000000,654.048000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1421,1440.000000,52,0,-1.000000,579.200000,hint,lora,60 +on11,0,0,24,0,0,1438,1440.000000,52,0,-1.000000,576.480000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1348,1440.000000,52,0,-1.000000,591.040000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1408,1440.000000,53,0,-1.000000,590.400000,hint,lora,60 +on11,0,0,25,0,0,1388,1500.000000,53,1,-1.000000,617.760000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1400,1440.000000,53,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1405,1440.000000,53,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1429,1440.000000,53,0,-1.000000,577.920000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,53,0,-1.000000,619.264000,hint,lora,60 +on1,0,0,24,0,0,1404,1440.000000,53,0,-1.000000,581.920000,hint,lora,60 +on12,0,0,24,0,0,1410,1440.000000,54,0,-1.000000,580.960000,hint,lora,60 +on6,0,0,24,0,0,1415,1440.000000,54,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1418,1440.000000,54,0,-1.000000,579.680000,hint,lora,60 +on3,0,0,25,0,0,1333,1500.000000,54,1,-1.000000,622.880000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1387,1500.000000,54,1,-1.000000,618.080000,hint,lora,60 +on9,0,0,24,0,0,1434,1440.000000,54,0,-1.000000,577.120000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,54,0,-1.000000,637.568000,hint,lora,60 +on1,0,0,24,0,0,1398,1440.000000,54,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1375,1440.000000,55,0,-1.000000,595.200000,hint,lora,60 +on11,0,0,24,0,0,1437,1440.000000,55,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1413,1440.000000,55,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1422,1440.000000,55,0,-1.000000,579.040000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1403,1440.000000,55,0,-1.000000,582.080000,hint,lora,60 +on6,0,0,24,0,0,1381,1440.000000,55,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,55,0,-1.000000,610.560000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1410,1440.000000,56,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,56,0,-1.000000,581.920000,hint,lora,60 +on12,0,0,24,0,0,1435,1440.000000,56,0,-1.000000,576.960000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1416,1500.200000,57,1,-1.000000,609.776000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,57,0,-1.000000,610.784000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,581.600000,hint,lora,60 +on7,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1478,1500.000000,57,1,-1.000000,600.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1411,1440.000000,57,0,-1.000000,580.800000,hint,lora,60 +on2,0,0,25,0,0,1419,1500.000000,57,1,-1.000000,609.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1410,1440.000000,58,0,-1.000000,580.960000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1337,1440.000000,58,0,-1.000000,593.760000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1393,1440.000000,58,0,-1.000000,587.680000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,58,0,-1.000000,617.440000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,577.920000,hint,lora,60 +on6,0,0,24,0,0,1380,1440.000000,58,0,-1.000000,585.920000,hint,lora,60 +on8,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1414,1440.000000,59,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1429,1440.000000,59,0,-1.000000,577.920000,hint,lora,60 +on10,0,0,24,0,0,1389,1440.000000,59,0,-1.000000,595.200000,hint,lora,60 +on4,0,0,25,0,0,1485,1500.000000,59,1,-1.000000,600.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,59,0,-1.000000,626.624000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1383,1440.000000,59,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1398,1440.000000,59,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1404,1500.200000,59,1,-1.000000,613.840000,hint,lora,60 +on1,0,0,25,0,0,1349,1500.000000,60,1,-1.000000,625.120000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1439,1440.000000,60,0,-1.000000,576.320000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1291,1500.000000,60,1,-1.000000,632.800000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1426,1440.000000,60,0,-1.000000,578.400000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,60,0,-1.000000,626.688000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1463,1500.000000,61,1,-1.000000,600.640000,hint,lora,60 +on1,0,0,25,0,0,1397,1500.000000,61,1,-1.000000,616.752000,hint,lora,60 +on10,0,0,24,0,0,1389,1440.000000,61,0,-1.000000,584.320000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1406,1500.000000,61,1,-1.000000,613.120000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1302,1500.000000,61,1,-1.000000,644.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,61,0,-1.000000,660.320000,hint,lora,60 +on2,0,0,25,0,0,1412,1500.200000,61,1,-1.000000,614.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1432,1440.000000,62,0,-1.000000,577.440000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1345,1440.000000,62,0,-1.000000,591.520000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,62,0,-1.000000,608.640000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1396,1440.000000,62,0,-1.000000,583.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1388,1440.000000,62,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,578.400000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1408,1440.000000,63,0,-1.000000,581.280000,hint,lora,60 +on7,0,0,25,0,0,1422,1500.200000,63,1,-1.000000,609.680000,hint,lora,60 +on8,0,0,25,0,0,1343,1500.000000,63,1,-1.000000,622.192000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,63,0,-1.000000,662.656000,hint,lora,60 +on6,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1417,1440.000000,63,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,25,0,0,1354,1500.000000,63,1,-1.000000,622.880000,hint,lora,60 +on1,0,0,25,0,0,1465,1500.200000,63,1,-1.000000,602.480000,hint,lora,60 +on9,0,0,25,0,0,1396,1500.000000,63,1,-1.000000,615.680000,hint,lora,60 +on5,0,0,24,0,0,1419,1440.000000,63,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,64,0,-1.000000,632.704000,hint,lora,60 +on12,0,0,24,0,0,1407,1440.000000,64,0,-1.000000,581.440000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1479,1500.001280,64,1,-1.000000,600.000512,hint,lora,60 +on4,0,0,26,0,0,1400,1560.300000,64,2,-1.000000,647.640000,hint,lora,60 +on9,0,0,24,0,0,1405,1440.000000,64,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1384,1440.000000,64,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1350,1440.000000,64,0,-1.000000,594.720000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1410,1440.000000,65,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1401,1440.000000,65,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1384,1440.000000,65,0,-1.000000,585.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,65,0,-1.000000,626.400000,hint,lora,60 +on11,0,0,24,0,0,1383,1440.000000,65,0,-1.000000,588.640000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1379,1440.000000,65,0,-1.000000,590.080000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1426,1440.000000,65,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1391,1440.000000,65,0,-1.000000,584.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1414,1440.000000,66,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1424,1440.000000,66,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1382,1440.000000,66,0,-1.000000,585.440000,hint,lora,60 +on5,0,0,24,0,0,1386,1440.000000,66,0,-1.000000,584.800000,hint,lora,60 +on3,0,0,24,0,0,1436,1440.000000,66,0,-1.000000,576.800000,hint,lora,60 +on4,0,0,25,0,0,1351,1500.200000,66,1,-1.000000,618.368000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,66,0,-1.000000,629.344000,hint,lora,60 +on8,0,0,24,0,0,1406,1440.000000,66,0,-1.000000,581.600000,hint,lora,60 +on9,0,0,25,0,0,1478,1500.000000,66,1,-1.000000,600.000000,hint,lora,60 +on6,0,0,24,0,0,1418,1440.000000,66,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1394,1440.000000,67,0,-1.000000,583.520000,hint,lora,60 +on3,0,0,24,0,0,1424,1440.000000,67,0,-1.000000,578.720000,hint,lora,60 +on5,0,0,25,0,0,1425,1500.000000,67,1,-1.000000,611.840000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,67,0,-1.000000,636.928000,hint,lora,60 +on6,0,0,24,0,0,1404,1440.000000,67,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,25,0,0,1374,1500.000000,67,1,-1.000000,616.480000,hint,lora,60 +on4,0,0,24,0,0,1397,1440.000000,67,0,-1.000000,583.040000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1395,1440.000000,67,0,-1.000000,592.960000,hint,lora,60 +on2,0,0,24,0,0,1428,1440.000000,67,0,-1.000000,578.080000,hint,lora,60 +on7,0,0,24,0,0,1370,1440.000000,68,0,-1.000000,589.920000,hint,lora,60 +on9,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,582.400000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1388,1440.000000,68,0,-1.000000,584.480000,hint,lora,60 +on1,0,0,24,0,0,1410,1440.000000,68,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,26,0,0,1380,1560.000000,68,2,-1.000000,646.192000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,68,0,-1.000000,648.928000,hint,lora,60 +on11,0,0,24,0,0,1361,1440.000000,68,0,-1.000000,600.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,582.400000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1405,1440.000000,69,0,-1.000000,581.760000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1400,1440.000000,69,0,-1.000000,582.560000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,69,0,-1.000000,608.288000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,26,0,0,1394,1560.000000,69,2,-1.000000,642.672000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1432,1440.000000,69,0,-1.000000,577.440000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1369,1500.000000,70,1,-1.000000,616.960000,hint,lora,60 +on12,0,0,24,0,0,1388,1440.000000,70,0,-1.000000,584.480000,hint,lora,60 +on9,0,0,24,0,0,1391,1440.000000,70,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1411,1440.000000,70,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,70,0,-1.000000,579.840000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,70,0,-1.000000,630.464000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1388,1440.000000,70,0,-1.000000,584.480000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1416,1440.000000,70,0,-1.000000,580.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1365,1500.200000,71,1,-1.000000,618.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1440,1500.000000,71,1,-1.000000,609.600000,hint,lora,60 +on5,0,0,25,0,0,1396,1500.000000,71,1,-1.000000,615.680000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1396,1500.200000,71,1,-1.000000,610.368000,hint,lora,60 +on12,0,0,26,0,0,1394,1560.200000,71,2,-1.000000,644.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,71,0,-1.000000,667.040000,hint,lora,60 +on3,0,0,26,0,0,1374,1560.700000,71,2,-1.000000,652.120000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1489,1500.200000,71,1,-1.000000,600.288000,hint,lora,60 +on8,0,0,24,0,0,1346,1440.000000,72,0,-1.000000,591.360000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1383,1440.000000,72,0,-1.000000,585.280000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1339,1440.000000,72,0,-1.000000,596.640000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1365,1440.000000,72,0,-1.000000,595.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,72,0,-1.000000,629.600000,hint,lora,60 +on6,0,0,24,0,0,1420,1440.000000,73,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1413,1440.000000,73,0,-1.000000,586.560000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1410,1500.000000,73,1,-1.000000,612.320000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,26,0,0,1365,1560.000000,73,2,-1.000000,648.480000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,73,0,-1.000000,624.128000,hint,lora,60 +on9,0,0,24,0,0,1414,1440.000000,73,0,-1.000000,580.320000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1397,1440.000000,74,0,-1.000000,592.640000,hint,lora,60 +on1,0,0,24,0,0,1401,1440.000000,74,0,-1.000000,582.560000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,74,0,-1.000000,617.344000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1347,1500.000000,74,1,-1.000000,620.960000,hint,lora,60 +on8,0,0,24,0,0,1400,1440.000000,74,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,26,0,0,1396,1560.000000,75,2,-1.000000,652.592000,hint,lora,60 +on10,0,0,24,0,0,1401,1440.000000,75,0,-1.000000,582.400000,hint,lora,60 +on4,0,0,24,0,0,1377,1440.000000,75,0,-1.000000,589.600000,hint,lora,60 +on12,0,0,24,0,0,1348,1440.000000,75,0,-1.000000,595.200000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.160000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1391,1440.000000,75,0,-1.000000,584.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1375,1500.000000,75,1,-1.000000,614.560000,hint,lora,60 +on11,0,0,24,0,0,1393,1440.000000,75,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,75,0,-1.000000,657.632000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1406,1440.000000,76,0,-1.000000,581.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.160000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1414,1440.000000,76,0,-1.000000,580.320000,hint,lora,60 +on1,0,0,24,0,0,1436,1440.000000,76,0,-1.000000,576.800000,hint,lora,60 +on9,0,0,24,0,0,1377,1440.000000,76,0,-1.000000,586.400000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,76,0,-1.000000,606.720000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1382,1440.000000,76,0,-1.000000,585.440000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1426,1440.000000,77,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1382,1440.000000,77,0,-1.000000,585.440000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1386,1440.000000,77,0,-1.000000,584.800000,hint,lora,60 +on6,0,0,25,0,0,1419,1500.000000,77,1,-1.000000,609.760000,hint,lora,60 +on7,0,0,25,0,0,1400,1500.200000,77,1,-1.000000,618.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,77,0,-1.000000,615.904000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1394,1440.000000,78,0,-1.000000,583.520000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1418,1440.000000,78,0,-1.000000,579.680000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1425,1440.000000,78,0,-1.000000,578.560000,hint,lora,60 +on11,0,0,25,0,0,1409,1500.000000,78,1,-1.000000,616.640000,hint,lora,60 +on3,0,0,25,0,0,1390,1500.400000,78,1,-1.000000,614.448000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,78,0,-1.000000,615.584000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1325,1500.000000,79,1,-1.000000,621.968000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1384,1440.000000,79,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1385,1440.000000,79,0,-1.000000,584.960000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1392,1440.000000,79,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1456,1500.200000,79,1,-1.000000,600.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,79,0,-1.000000,623.584000,hint,lora,60 +on12,0,0,25,0,0,1396,1500.000000,80,1,-1.000000,615.680000,hint,lora,60 +on9,0,0,24,0,0,1332,1440.000000,80,0,-1.000000,599.840000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,80,0,-1.000000,643.488000,hint,lora,60 +on2,0,0,24,0,0,1375,1440.000000,80,0,-1.000000,590.560000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1436,1440.000000,80,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1413,1440.000000,80,0,-1.000000,580.480000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1377,1500.000000,80,1,-1.000000,622.240000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,26,0,0,1391,1560.000000,81,2,-1.000000,644.544000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1411,1440.000000,81,0,-1.000000,580.800000,hint,lora,60 +on8,0,0,25,0,0,1394,1500.200000,81,1,-1.000000,612.928000,hint,lora,60 +on5,0,0,25,0,0,1429,1500.000000,81,1,-1.000000,609.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,hint,lora,60 +on9,0,0,25,0,0,1296,1500.000000,81,1,-1.000000,632.800000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,81,0,-1.000000,660.736000,hint,lora,60 +on2,0,0,24,0,0,1412,1440.000000,81,0,-1.000000,580.640000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1407,1440.000000,82,0,-1.000000,581.440000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1437,1440.000000,82,0,-1.000000,576.640000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1383,1440.000000,82,0,-1.000000,588.000000,hint,lora,60 +on4,0,0,25,0,0,1363,1500.200000,82,1,-1.000000,618.480000,hint,lora,60 +on3,0,0,24,0,0,1381,1440.000000,82,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,82,0,-1.000000,623.424000,hint,lora,60 +on2,0,0,24,0,0,1416,1440.000000,82,0,-1.000000,580.000000,hint,lora,60 +on6,0,0,24,0,0,1405,1440.000000,83,0,-1.000000,581.760000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1381,1440.000000,83,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1407,1440.000000,83,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1399,1440.000000,83,0,-1.000000,582.720000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1348,1500.000000,83,1,-1.000000,622.400000,hint,lora,60 +on4,0,0,24,0,0,1428,1440.000000,83,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,83,0,-1.000000,633.504000,hint,lora,60 +on2,0,0,24,0,0,1437,1440.000000,83,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1410,1440.000000,83,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.160000,hint,lora,60 +on2,0,0,24,0,0,1378,1440.000000,84,0,-1.000000,588.800000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1403,1440.000000,84,0,-1.000000,582.080000,hint,lora,60 +on4,0,0,25,0,0,1385,1500.000000,84,1,-1.000000,621.392000,hint,lora,60 +on7,0,0,24,0,0,1414,1440.000000,84,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,84,0,-1.000000,612.064000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,586.240000,hint,lora,60 +on8,0,0,25,0,0,1316,1500.000000,85,1,-1.000000,625.920000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1417,1440.000000,85,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1432,1440.000000,85,0,-1.000000,577.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,85,0,-1.000000,612.864000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,86,0,-1.000000,616.800000,hint,lora,60 +on2,0,0,24,0,0,1439,1440.000000,86,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1344,1440.000000,86,0,-1.000000,591.680000,hint,lora,60 +on8,0,0,24,0,0,1432,1440.000000,86,0,-1.000000,577.440000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1420,1440.000000,86,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1429,1440.000000,86,0,-1.000000,577.920000,hint,lora,60 +on5,0,0,24,0,0,1403,1440.000000,86,0,-1.000000,582.080000,hint,lora,60 +on3,0,0,24,0,0,1418,1440.000000,86,0,-1.000000,579.680000,hint,lora,60 +on11,0,0,24,0,0,1389,1440.000000,86,0,-1.000000,584.320000,hint,lora,60 +on10,0,0,24,0,0,1402,1440.000000,87,0,-1.000000,582.240000,hint,lora,60 +on1,0,0,24,0,0,1413,1440.000000,87,0,-1.000000,580.480000,hint,lora,60 +on4,0,0,24,0,0,1398,1440.000000,87,0,-1.000000,582.880000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,87,0,-1.000000,635.904000,hint,lora,60 +on8,0,0,24,0,0,1439,1440.000000,87,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,26,0,0,1433,1560.000000,87,2,-1.000000,637.440000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,582.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,26,0,0,1400,1560.301280,87,2,-1.000000,642.296512,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1405,1440.000000,87,0,-1.000000,581.760000,hint,lora,60 +on5,0,0,24,0,0,1402,1440.000000,87,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1384,1440.000000,88,0,-1.000000,589.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,88,0,-1.000000,645.728000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1400,1440.000000,88,0,-1.000000,582.560000,hint,lora,60 +on2,0,0,24,0,0,1369,1440.000000,88,0,-1.000000,587.680000,hint,lora,60 +on12,0,0,25,0,0,1422,1500.000000,88,1,-1.000000,612.640000,hint,lora,60 +on6,0,0,24,0,0,1438,1440.000000,88,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1292,1500.200000,88,1,-1.000000,632.080000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1393,1440.000000,89,0,-1.000000,595.200000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1405,1440.000000,89,0,-1.000000,581.760000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1345,1500.000000,89,1,-1.000000,631.040000,hint,lora,60 +on1,0,0,25,0,0,1391,1500.200000,89,1,-1.000000,612.448000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,89,0,-1.000000,626.304000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1411,1440.000000,90,0,-1.000000,580.800000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.160000,hint,lora,60 +on12,0,0,25,0,0,1412,1500.000000,90,1,-1.000000,610.240000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1385,1440.000000,90,0,-1.000000,584.960000,hint,lora,60 +on4,0,0,24,0,0,1398,1440.000000,90,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,90,0,-1.000000,606.944000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1381,1500.000000,91,1,-1.000000,614.880000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,91,0,-1.000000,613.984000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1378,1440.000000,91,0,-1.000000,592.640000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1423,1440.000000,91,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1435,1440.000000,91,0,-1.000000,576.960000,hint,lora,60 +on8,0,0,24,0,0,1385,1440.000000,91,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1424,1500.000000,92,1,-1.000000,606.720000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,92,0,-1.000000,622.528000,hint,lora,60 +on11,0,0,24,0,0,1415,1440.000000,92,0,-1.000000,580.160000,hint,lora,60 +on12,0,0,25,0,0,1386,1500.200000,92,1,-1.000000,635.600000,hint,lora,60 +on1,0,0,25,0,0,1351,1500.000000,92,1,-1.000000,618.240000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1405,1440.000000,93,0,-1.000000,581.920000,hint,lora,60 +on7,0,0,26,0,0,1256,1560.400000,93,2,-1.000000,667.248000,hint,lora,60 +on12,0,0,25,0,0,1478,1500.000000,93,1,-1.000000,600.000000,hint,lora,60 +on4,0,0,24,0,0,1385,1440.000000,93,0,-1.000000,584.960000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1398,1440.000000,93,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1372,1500.000000,93,1,-1.000000,629.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,93,0,-1.000000,658.912000,hint,lora,60 +on8,0,0,24,0,0,1422,1440.000000,93,0,-1.000000,579.040000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1407,1440.000000,94,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1430,1440.000000,94,0,-1.000000,577.760000,hint,lora,60 +on2,0,0,24,0,0,1373,1440.000000,94,0,-1.000000,587.040000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1415,1440.000000,94,0,-1.000000,588.800000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,94,0,-1.000000,598.560000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1407,1440.000000,95,0,-1.000000,581.440000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1447,1500.200000,95,1,-1.000000,602.848000,hint,lora,60 +on9,0,0,24,0,0,1433,1440.000000,95,0,-1.000000,577.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,95,0,-1.000000,640.288000,hint,lora,60 +on4,0,0,24,0,0,1367,1440.000000,95,0,-1.000000,589.920000,hint,lora,60 +on3,0,0,25,0,0,1439,1500.000000,95,1,-1.000000,609.600000,hint,lora,60 +on2,0,0,24,0,0,1407,1440.000000,95,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,25,0,0,1385,1500.200000,95,1,-1.000000,618.480000,hint,lora,60 +on12,0,0,24,0,0,1424,1440.000000,95,0,-1.000000,578.720000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1398,1440.000000,95,0,-1.000000,583.040000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1400,1440.000000,96,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1384,1440.000000,96,0,-1.000000,585.120000,hint,lora,60 +on4,0,0,24,0,0,1396,1440.000000,96,0,-1.000000,583.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.160000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1397,1440.000000,96,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,96,0,-1.000000,606.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,576.640000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1383,1500.000000,97,1,-1.000000,619.040000,hint,lora,60 +on5,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,576.320000,hint,lora,60 +on8,0,0,24,0,0,1389,1440.000000,97,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,25,0,0,1408,1500.000000,97,1,-1.000000,614.992000,hint,lora,60 +on9,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,97,0,-1.000000,624.448000,hint,lora,60 +on7,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,576.640000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1414,1440.000000,97,0,-1.000000,580.320000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1436,1440.000000,98,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1387,1440.000000,98,0,-1.000000,584.640000,hint,lora,60 +on11,0,0,24,0,0,1411,1440.000000,98,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,579.840000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1383,1440.000000,98,0,-1.000000,585.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,98,0,-1.000000,620.000000,hint,lora,60 +on1,0,0,24,0,0,1404,1440.000000,98,0,-1.000000,581.920000,hint,lora,60 +on3,0,0,24,0,0,1375,1440.000000,98,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,26,0,0,1442,1568.000000,99,3,-1.000000,638.192000,hint,lora,60 +on8,0,0,26,0,0,1404,1560.000000,99,2,-1.000000,645.600000,hint,lora,60 +on11,0,0,24,0,0,1404,1440.000000,99,0,-1.000000,581.920000,hint,lora,60 +on2,0,0,25,0,0,1377,1500.200000,99,1,-1.000000,615.168000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1394,1440.000000,99,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1404,1440.000000,99,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1428,1500.000000,99,1,-1.000000,608.160000,hint,lora,60 +on3,0,0,24,0,0,1436,1440.000000,99,0,-1.000000,586.240000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,99,0,-1.000000,653.632000,hint,lora,60 +on9,0,0,24,0,0,1428,1440.000000,99,0,-1.000000,578.080000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,582.400000,hint,lora,60 +on2,0,0,24,0,0,1349,1440.000000,100,0,-1.000000,592.000000,hint,lora,60 +on8,0,0,24,0,0,1364,1440.000000,100,0,-1.000000,594.720000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,100,0,-1.000000,625.120000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1396,1440.000000,100,0,-1.000000,583.200000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1390,1440.000000,100,0,-1.000000,584.160000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,101,0,-1.000000,614.944000,hint,lora,60 +on7,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1416,1440.000000,101,0,-1.000000,588.320000,hint,lora,60 +on9,0,0,25,0,0,1318,1500.000000,101,1,-1.000000,628.960000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,595.200000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1399,1440.000000,102,0,-1.000000,589.760000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1398,1440.000000,102,0,-1.000000,582.880000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,102,0,-1.000000,595.840000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1403,1440.000000,102,0,-1.000000,582.080000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1291,1440.000000,103,0,-1.000000,603.520000,hint,lora,60 +on5,0,0,24,0,0,1403,1440.000000,103,0,-1.000000,582.080000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,103,0,-1.000000,624.800000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1422,1440.000000,103,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1415,1440.000000,103,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1385,1440.000000,103,0,-1.000000,587.680000,hint,lora,60 +on11,0,0,24,0,0,1428,1440.000000,103,0,-1.000000,578.080000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1389,1500.000000,104,1,-1.000000,612.320000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,104,0,-1.000000,629.088000,hint,lora,60 +on8,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,582.080000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1397,1440.000000,104,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1385,1440.000000,104,0,-1.000000,584.960000,hint,lora,60 +on10,0,0,25,0,0,1401,1500.000000,104,1,-1.000000,616.112000,hint,lora,60 +on2,0,0,24,0,0,1432,1440.000000,104,0,-1.000000,577.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1434,1440.000000,104,0,-1.000000,577.120000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1391,1500.000000,105,1,-1.000000,626.560000,hint,lora,60 +on9,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,585.760000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,105,0,-1.000000,601.824000,hint,lora,60 +on10,0,0,24,0,0,1425,1440.000000,105,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,579.040000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1381,1440.000000,106,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,106,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1430,1440.000000,106,0,-1.000000,577.760000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1416,1440.000000,106,0,-1.000000,580.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1407,1440.000000,106,0,-1.000000,581.440000,hint,lora,60 +on10,0,0,24,0,0,1422,1440.000000,106,0,-1.000000,579.040000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,106,0,-1.000000,603.840000,hint,lora,60 +on1,0,0,24,0,0,1414,1440.000000,107,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,107,0,-1.000000,596.320000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1395,1440.000000,107,0,-1.000000,583.360000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1412,1440.000000,107,0,-1.000000,580.640000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1416,1440.000000,107,0,-1.000000,580.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1426,1500.200000,108,1,-1.000000,610.640000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,108,0,-1.000000,602.784000,hint,lora,60 +on10,0,0,24,0,0,1405,1440.000000,108,0,-1.000000,581.760000,hint,lora,60 +on9,0,0,24,0,0,1433,1440.000000,108,0,-1.000000,577.280000,hint,lora,60 +on8,0,0,24,0,0,1384,1440.000000,108,0,-1.000000,594.240000,hint,lora,60 +on7,0,0,24,0,0,1416,1440.000000,109,0,-1.000000,580.000000,hint,lora,60 +on11,0,0,26,0,0,1399,1560.200000,109,2,-1.000000,643.120000,hint,lora,60 +on10,0,0,25,0,0,1485,1500.000000,109,1,-1.000000,600.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,109,0,-1.000000,614.304000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1388,1440.000000,109,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1406,1440.000000,109,0,-1.000000,581.600000,hint,lora,60 +on3,0,0,26,0,0,1468,1560.801280,109,2,-1.000000,625.856512,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.160000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,110,0,-1.000000,624.608000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1437,1440.000000,110,0,-1.000000,576.640000,hint,lora,60 +on3,0,0,24,0,0,1408,1440.000000,110,0,-1.000000,581.280000,hint,lora,60 +on10,0,0,26,0,0,1358,1560.000000,110,2,-1.000000,648.320000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1391,1440.000000,110,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1376,1440.000000,110,0,-1.000000,586.560000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,111,0,-1.000000,628.224000,hint,lora,60 +on4,0,0,25,0,0,1430,1500.400000,111,1,-1.000000,607.088000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,588.800000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1399,1440.000000,111,0,-1.000000,582.720000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,580.480000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1367,1500.000000,111,1,-1.000000,628.800000,hint,lora,60 +on6,0,0,24,0,0,1387,1440.000000,111,0,-1.000000,584.640000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1398,1440.000000,112,0,-1.000000,582.880000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,112,0,-1.000000,625.024000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1369,1440.000000,112,0,-1.000000,587.680000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1417,1440.000000,112,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1404,1440.000000,112,0,-1.000000,581.920000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1416,1440.000000,112,0,-1.000000,580.000000,hint,lora,60 +on5,0,0,24,0,0,1410,1440.000000,112,0,-1.000000,580.960000,hint,lora,60 +on7,0,0,25,0,0,1408,1500.000000,112,1,-1.000000,619.680000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1376,1440.000000,113,0,-1.000000,595.200000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1409,1440.000000,113,0,-1.000000,595.200000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,113,0,-1.000000,600.160000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1389,1440.000000,113,0,-1.000000,584.320000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1401,1440.000000,114,0,-1.000000,582.400000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1401,1500.000000,114,1,-1.000000,614.240000,hint,lora,60 +on6,0,0,26,0,0,1500,1560.000000,114,2,-1.000000,643.840000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1410,1500.000000,114,1,-1.000000,612.800000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1385,1440.000000,114,0,-1.000000,584.960000,hint,lora,60 +on1,0,0,26,0,0,1422,1560.400000,114,2,-1.000000,642.768000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,114,0,-1.000000,646.432000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,115,0,-1.000000,629.408000,hint,lora,60 +on10,0,0,24,0,0,1432,1440.000000,115,0,-1.000000,577.440000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1416,1440.000000,115,0,-1.000000,580.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1422,1500.400000,115,1,-1.000000,609.168000,hint,lora,60 +on6,0,0,25,0,0,1394,1500.000000,115,1,-1.000000,616.480000,hint,lora,60 +on3,0,0,25,0,0,1404,1500.000000,115,1,-1.000000,619.200000,hint,lora,60 +on9,0,0,25,0,0,1413,1500.000000,115,1,-1.000000,608.480000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1385,1500.000000,116,1,-1.000000,612.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,116,0,-1.000000,620.608000,hint,lora,60 +on2,0,0,24,0,0,1428,1440.000000,116,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1418,1440.000000,116,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1388,1440.000000,116,0,-1.000000,584.480000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1357,1453.000000,116,1,-1.000000,596.880000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1415,1440.000000,116,0,-1.000000,580.160000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1398,1440.000000,117,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1406,1440.000000,117,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,117,0,-1.000000,595.680000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1427,1440.000000,117,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1410,1440.000000,117,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1393,1440.000000,118,0,-1.000000,583.680000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1388,1440.000000,118,0,-1.000000,584.480000,hint,lora,60 +on11,0,0,24,0,0,1405,1440.000000,118,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1333,1440.000000,118,0,-1.000000,593.760000,hint,lora,60 +on7,0,0,24,0,0,1415,1440.000000,118,0,-1.000000,580.160000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,118,0,-1.000000,645.344000,hint,lora,60 +on5,0,0,25,0,0,1363,1500.200000,118,1,-1.000000,618.480000,hint,lora,60 +on12,0,0,24,0,0,1394,1440.000000,118,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1399,1440.000000,119,0,-1.000000,582.720000,hint,lora,60 +on8,0,0,25,0,0,1452,1500.300000,119,1,-1.000000,606.152000,hint,lora,60 +on2,0,0,24,0,0,1394,1440.000000,119,0,-1.000000,595.200000,hint,lora,60 +on9,0,0,24,0,0,1388,1440.000000,119,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1338,1440.000000,119,0,-1.000000,600.320000,hint,lora,60 +on6,0,0,24,0,0,1420,1440.000000,119,0,-1.000000,579.360000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.160000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,119,0,-1.000000,634.784000,hint,lora,60 +on11,0,0,24,0,0,1424,1440.000000,119,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,25,0,0,1421,1500.000000,119,1,-1.000000,609.808000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1463,1500.000000,119,1,-1.000000,602.560000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,26,0,0,1485,1560.200000,120,2,-1.000000,633.200000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1343,1500.200000,120,1,-1.000000,620.400000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,585.760000,hint,lora,60 +on1,0,0,24,0,0,1392,1440.000000,120,0,-1.000000,583.840000,hint,lora,60 +on6,0,0,25,0,0,1381,1521.200000,120,2,-1.000000,625.648000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1432,1440.000000,120,0,-1.000000,577.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,120,0,-1.000000,635.008000,hint,lora,60 +on8,0,0,25,0,0,1404,1500.000000,121,1,-1.000000,613.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1398,1440.000000,121,0,-1.000000,589.440000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1390,1440.000000,121,0,-1.000000,584.160000,hint,lora,60 +on3,0,0,26,0,0,1429,1560.200000,121,2,-1.000000,649.680000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1335,1440.000000,121,0,-1.000000,594.720000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1434,1500.000000,121,1,-1.000000,609.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,121,0,-1.000000,657.568000,hint,lora,60 +on4,0,0,24,0,0,1386,1440.000000,121,0,-1.000000,584.800000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1404,1440.000000,122,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1397,1440.000000,122,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,122,0,-1.000000,615.520000,hint,lora,60 +on7,0,0,24,0,0,1433,1440.000000,122,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1397,1440.000000,122,0,-1.000000,583.200000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1434,1440.000000,122,0,-1.000000,577.120000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1336,1440.000000,122,0,-1.000000,593.440000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1364,1440.000000,123,0,-1.000000,592.320000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,26,0,0,1425,1560.000000,123,2,-1.000000,640.432000,hint,lora,60 +on5,0,0,24,0,0,1396,1440.000000,123,0,-1.000000,583.200000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1354,1440.000000,123,0,-1.000000,590.240000,hint,lora,60 +on10,0,0,25,0,0,1328,1500.000000,123,1,-1.000000,633.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,123,0,-1.000000,654.272000,hint,lora,60 +on1,0,0,24,0,0,1415,1440.000000,124,0,-1.000000,580.320000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1412,1500.000000,124,1,-1.000000,607.680000,hint,lora,60 +on5,0,0,24,0,0,1325,1440.000000,124,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1294,1500.000000,124,1,-1.000000,643.792000,hint,lora,60 +on6,0,0,24,0,0,1404,1440.000000,124,0,-1.000000,581.920000,hint,lora,60 +on8,0,0,24,0,0,1388,1440.000000,124,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1417,1440.000000,124,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,124,0,-1.000000,656.608000,hint,lora,60 +on4,0,0,24,0,0,1431,1440.000000,124,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1363,1440.000000,125,0,-1.000000,588.640000,hint,lora,60 +on2,0,0,25,0,0,1347,1500.000000,125,1,-1.000000,620.160000,hint,lora,60 +on8,0,0,24,0,0,1398,1440.000000,125,0,-1.000000,583.040000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1439,1440.000000,125,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1400,1440.000000,125,0,-1.000000,582.560000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,125,0,-1.000000,622.624000,hint,lora,60 +on12,0,0,24,0,0,1404,1440.000000,126,0,-1.000000,582.080000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,25,0,0,1348,1500.000000,126,1,-1.000000,624.320000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1434,1500.000000,126,1,-1.000000,609.600000,hint,lora,60 +on7,0,0,26,0,0,1451,1560.200000,126,2,-1.000000,639.072000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,126,0,-1.000000,679.296000,hint,lora,60 +on6,0,0,24,0,0,1388,1440.000000,126,0,-1.000000,584.480000,hint,lora,60 +on3,0,0,25,0,0,1342,1500.200000,126,1,-1.000000,627.008000,hint,lora,60 +on2,0,0,24,0,0,1408,1440.000000,126,0,-1.000000,581.280000,hint,lora,60 +on5,0,0,25,0,0,1379,1500.000000,126,1,-1.000000,614.240000,hint,lora,60 +on4,0,0,24,0,0,1407,1440.000000,126,0,-1.000000,581.440000,hint,lora,60 +on4,0,0,24,0,0,1387,1440.000000,127,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,127,0,-1.000000,635.264000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1375,1440.000000,127,0,-1.000000,587.040000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1361,1500.000000,127,1,-1.000000,626.240000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1395,1440.000000,127,0,-1.000000,583.360000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1378,1440.000000,127,0,-1.000000,589.120000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1395,1440.000000,128,0,-1.000000,583.360000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1385,1440.000000,128,0,-1.000000,584.960000,hint,lora,60 +on4,0,0,24,0,0,1391,1440.000000,128,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1410,1440.000000,128,0,-1.000000,580.960000,hint,lora,60 +on2,0,0,24,0,0,1384,1440.000000,128,0,-1.000000,585.120000,hint,lora,60 +on12,0,0,24,0,0,1374,1440.000000,128,0,-1.000000,589.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,128,0,-1.000000,625.280000,hint,lora,60 +on1,0,0,24,0,0,1380,1440.000000,129,0,-1.000000,594.080000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,129,0,-1.000000,640.512000,hint,lora,60 +on4,0,0,25,0,0,1409,1500.000000,129,1,-1.000000,612.320000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,26,0,0,1322,1560.000000,129,2,-1.000000,652.592000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.160000,hint,lora,60 +on3,0,0,24,0,0,1426,1440.000000,129,0,-1.000000,578.400000,hint,lora,60 +on10,0,0,24,0,0,1397,1440.000000,129,0,-1.000000,583.040000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1416,1440.000000,129,0,-1.000000,580.000000,hint,lora,60 +on8,0,0,26,0,0,1433,1560.200000,130,2,-1.000000,635.440000,hint,lora,60 +on3,0,0,24,0,0,1417,1440.000000,130,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1385,1500.200000,130,1,-1.000000,615.760000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1367,1500.000000,130,1,-1.000000,619.248000,hint,lora,60 +on4,0,0,25,0,0,1473,1500.000000,130,1,-1.000000,600.960000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1418,1440.000000,130,0,-1.000000,579.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,130,0,-1.000000,637.792000,hint,lora,60 +on1,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,582.080000,hint,lora,60 +on2,0,0,24,0,0,1432,1440.000000,130,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,581.280000,hint,lora,60 +on7,0,0,24,0,0,1417,1440.000000,131,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1426,1440.000000,131,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1412,1440.000000,131,0,-1.000000,589.120000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1405,1440.000000,131,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,131,0,-1.000000,598.080000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,132,0,-1.000000,618.944000,hint,lora,60 +on4,0,0,24,0,0,1411,1440.000000,132,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1409,1440.000000,132,0,-1.000000,581.280000,hint,lora,60 +on11,0,0,24,0,0,1415,1440.000000,132,0,-1.000000,580.160000,hint,lora,60 +on7,0,0,24,0,0,1402,1440.000000,132,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,25,0,0,1426,1500.000000,132,1,-1.000000,611.360000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1392,1440.000000,132,0,-1.000000,583.840000,hint,lora,60 +on10,0,0,24,0,0,1420,1440.000000,132,0,-1.000000,579.360000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1439,1440.000000,133,0,-1.000000,576.320000,hint,lora,60 +on10,0,0,24,0,0,1400,1440.000000,133,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1377,1440.000000,133,0,-1.000000,592.480000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1437,1459.000000,133,1,-1.000000,583.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,26,0,0,1395,1560.000000,133,2,-1.000000,648.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,133,0,-1.000000,636.768000,hint,lora,60 +on9,0,0,24,0,0,1349,1440.000000,133,0,-1.000000,590.880000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1415,1440.000000,133,0,-1.000000,580.160000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1402,1440.000000,134,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1401,1440.000000,134,0,-1.000000,588.320000,hint,lora,60 +on6,0,0,25,0,0,1414,1500.200000,134,1,-1.000000,613.520000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1364,1440.000000,134,0,-1.000000,588.640000,hint,lora,60 +on5,0,0,24,0,0,1404,1440.000000,134,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1410,1440.000000,134,0,-1.000000,580.960000,hint,lora,60 +on12,0,0,24,0,0,1405,1440.000000,134,0,-1.000000,581.760000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,26,0,0,1372,1560.000000,134,2,-1.000000,650.992000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,134,0,-1.000000,658.272000,hint,lora,60 +on12,0,0,24,0,0,1419,1440.000000,135,0,-1.000000,579.680000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,135,0,-1.000000,626.560000,hint,lora,60 +on6,0,0,24,0,0,1394,1440.000000,135,0,-1.000000,583.520000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1401,1440.000000,135,0,-1.000000,595.200000,hint,lora,60 +on5,0,0,24,0,0,1409,1440.000000,135,0,-1.000000,581.120000,hint,lora,60 +on7,0,0,24,0,0,1383,1440.000000,135,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1354,1440.000000,135,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1432,1440.000000,135,0,-1.000000,577.440000,hint,lora,60 +on8,0,0,24,0,0,1424,1440.000000,135,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1342,1500.000000,136,1,-1.000000,624.480000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,577.760000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1423,1440.000000,136,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,586.240000,hint,lora,60 +on1,0,0,24,0,0,1407,1440.000000,136,0,-1.000000,581.440000,hint,lora,60 +on4,0,0,24,0,0,1355,1440.000000,136,0,-1.000000,589.920000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,136,0,-1.000000,622.464000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1403,1440.000000,137,0,-1.000000,588.000000,hint,lora,60 +on8,0,0,25,0,0,1407,1500.000000,137,1,-1.000000,612.800000,hint,lora,60 +on6,0,0,26,0,0,1514,1560.400000,137,2,-1.000000,633.968000,hint,lora,60 +on7,0,0,25,0,0,1403,1500.400000,137,1,-1.000000,609.488000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1374,1500.200000,137,1,-1.000000,615.968000,hint,lora,60 +on10,0,0,26,0,0,1450,1560.200000,137,2,-1.000000,635.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,137,0,-1.000000,665.920000,hint,lora,60 +on11,0,0,24,0,0,1400,1440.000000,137,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,25,0,0,1410,1500.000000,137,1,-1.000000,612.160000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1342,1440.000000,137,0,-1.000000,592.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1385,1440.000000,138,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1392,1440.000000,138,0,-1.000000,583.840000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1400,1440.000000,138,0,-1.000000,591.360000,hint,lora,60 +on4,0,0,24,0,0,1360,1440.000000,138,0,-1.000000,593.280000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1478,1500.200000,138,1,-1.000000,600.080000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,138,0,-1.000000,625.728000,hint,lora,60 +on11,0,0,26,0,0,1456,1560.200000,138,2,-1.000000,637.520000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,139,0,-1.000000,640.768000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1428,1440.000000,139,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1383,1440.000000,139,0,-1.000000,589.280000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1314,1440.000000,139,0,-1.000000,596.640000,hint,lora,60 +on5,0,0,25,0,0,1376,1500.000000,139,1,-1.000000,621.120000,hint,lora,60 +on10,0,0,25,0,0,1421,1500.000000,139,1,-1.000000,613.072000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1427,1440.000000,139,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1406,1440.000000,140,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1364,1440.000000,140,0,-1.000000,588.640000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1428,1440.000000,140,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1388,1440.000000,140,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1333,1440.000000,140,0,-1.000000,593.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,140,0,-1.000000,624.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1432,1440.000000,140,0,-1.000000,577.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1423,1440.000000,141,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.160000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,141,0,-1.000000,594.720000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1395,1440.000000,141,0,-1.000000,583.360000,hint,lora,60 +on11,0,0,24,0,0,1389,1440.000000,141,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1455,1500.000000,142,1,-1.000000,609.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1405,1440.000000,142,0,-1.000000,581.760000,hint,lora,60 +on3,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,580.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1385,1440.000000,142,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,26,0,0,1374,1560.200000,142,2,-1.000000,649.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,142,0,-1.000000,622.688000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1410,1440.000000,143,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1396,1440.000000,143,0,-1.000000,595.200000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,143,0,-1.000000,647.008000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1287,1500.200000,143,1,-1.000000,634.480000,hint,lora,60 +on6,0,0,24,0,0,1407,1440.000000,143,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,26,0,0,1486,1560.400000,143,3,-1.000000,628.048000,hint,lora,60 +on5,0,0,25,0,0,1392,1500.000000,143,1,-1.000000,617.760000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1403,1440.000000,144,0,-1.000000,590.400000,hint,lora,60 +on12,0,0,24,0,0,1400,1440.000000,144,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,144,0,-1.000000,604.320000,hint,lora,60 +on10,0,0,24,0,0,1431,1440.000000,144,0,-1.000000,577.600000,hint,lora,60 +on7,0,0,24,0,0,1388,1440.000000,144,0,-1.000000,587.040000,hint,lora,60 +on5,0,0,24,0,0,1409,1440.000000,144,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1388,1440.000000,145,0,-1.000000,595.200000,hint,lora,60 +on3,0,0,24,0,0,1413,1440.000000,145,0,-1.000000,580.480000,hint,lora,60 +on12,0,0,24,0,0,1434,1440.000000,145,0,-1.000000,577.120000,hint,lora,60 +on8,0,0,24,0,0,1409,1440.000000,145,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,145,0,-1.000000,636.448000,hint,lora,60 +on5,0,0,24,0,0,1374,1440.000000,145,0,-1.000000,586.880000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.160000,hint,lora,60 +on4,0,0,26,0,0,1414,1560.000000,145,2,-1.000000,644.272000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1394,1440.000000,145,0,-1.000000,583.520000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1426,1440.000000,145,0,-1.000000,578.400000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,146,0,-1.000000,624.864000,hint,lora,60 +on5,0,0,24,0,0,1432,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1400,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,25,0,0,1456,1500.000000,146,1,-1.000000,600.000000,hint,lora,60 +on7,0,0,26,0,0,1371,1560.000000,146,2,-1.000000,647.680000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1400,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1453,1557.200000,146,2,-1.000000,627.344000,hint,lora,60 +on3,0,0,24,0,0,1413,1440.000000,146,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1465,1500.000000,146,1,-1.000000,602.400000,hint,lora,60 +on4,0,0,24,0,0,1390,1440.000000,147,0,-1.000000,584.160000,hint,lora,60 +on5,0,0,24,0,0,1416,1440.000000,147,0,-1.000000,580.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1414,1440.000000,147,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1423,1440.000000,147,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1380,1440.000000,147,0,-1.000000,585.920000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,147,0,-1.000000,605.280000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1392,1440.000000,148,0,-1.000000,583.840000,hint,lora,60 +on10,0,0,24,0,0,1426,1440.000000,148,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,25,0,0,1392,1500.000000,148,1,-1.000000,617.552000,hint,lora,60 +on3,0,0,25,0,0,1494,1500.000000,148,1,-1.000000,600.320000,hint,lora,60 +on6,0,0,24,0,0,1381,1440.000000,148,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1380,1440.000000,148,0,-1.000000,591.040000,hint,lora,60 +on7,0,0,24,0,0,1384,1440.000000,148,0,-1.000000,585.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,148,0,-1.000000,639.968000,hint,lora,60 +on12,0,0,24,0,0,1433,1440.000000,148,0,-1.000000,577.280000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1404,1440.000000,148,0,-1.000000,581.920000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,149,0,-1.000000,580.960000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.160000,hint,lora,60 +on6,0,0,24,0,0,1439,1440.000000,149,0,-1.000000,576.320000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1437,1440.000000,149,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,149,0,-1.000000,607.360000,hint,lora,60 +on10,0,0,24,0,0,1384,1440.000000,149,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1365,1440.000000,149,0,-1.000000,588.320000,hint,lora,60 +on9,0,0,24,0,0,1424,1440.000000,149,0,-1.000000,587.680000,hint,lora,60 +on5,0,0,24,0,0,1435,1440.000000,149,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1419,1440.000000,150,0,-1.000000,579.520000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1400,1440.000000,150,0,-1.000000,582.560000,hint,lora,60 +on2,0,0,24,0,0,1400,1440.000000,150,0,-1.000000,589.600000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,150,0,-1.000000,579.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,150,0,-1.000000,616.480000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1413,1440.000000,150,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1392,1440.000000,150,0,-1.000000,583.840000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1394,1440.000000,150,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1384,1440.000000,151,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,26,0,0,1425,1560.000000,151,2,-1.000000,636.320000,hint,lora,60 +on11,0,0,24,0,0,1415,1440.000000,151,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1388,1440.000000,151,0,-1.000000,584.640000,hint,lora,60 +on2,0,0,25,0,0,1435,1500.000000,151,1,-1.000000,607.679795,hint,lora,60 +on10,0,0,24,0,0,1428,1440.000000,151,0,-1.000000,578.080000,hint,lora,60 +on9,0,0,26,0,0,1473,1560.200000,151,2,-1.000000,634.784205,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,151,0,-1.000000,626.784000,hint,lora,60 +on12,0,0,24,0,0,1425,1440.000000,151,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1418,1440.000000,151,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1360,1440.000000,152,0,-1.000000,595.200000,hint,lora,60 +on12,0,0,24,0,0,1386,1440.000000,152,0,-1.000000,584.800000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1401,1440.000000,152,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1401,1440.000000,152,0,-1.000000,582.400000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1431,1440.000000,152,0,-1.000000,577.600000,hint,lora,60 +on4,0,0,24,0,0,1423,1440.000000,152,0,-1.000000,578.880000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,152,0,-1.000000,615.200000,hint,lora,60 +on1,0,0,25,0,0,1415,1500.200000,153,1,-1.000000,610.800000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1379,1474.000000,153,1,-1.000000,609.600000,hint,lora,60 +on7,0,0,24,0,0,1392,1440.000000,153,0,-1.000000,583.840000,hint,lora,60 +on4,0,0,26,0,0,1336,1560.000000,153,2,-1.000000,659.840000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,153,0,-1.000000,673.760000,hint,lora,60 +on6,0,0,24,0,0,1384,1440.000000,153,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,25,0,0,1357,1500.000000,153,1,-1.000000,617.440000,hint,lora,60 +on5,0,0,24,0,0,1411,1440.000000,153,0,-1.000000,580.800000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1354,1500.000000,154,1,-1.000000,618.240000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1349,1500.000000,154,1,-1.000000,621.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,154,0,-1.000000,617.408000,hint,lora,60 +on6,0,0,24,0,0,1427,1440.000000,154,0,-1.000000,578.240000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,155,0,-1.000000,626.848000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,577.760000,hint,lora,60 +on12,0,0,24,0,0,1393,1440.000000,155,0,-1.000000,583.680000,hint,lora,60 +on7,0,0,25,0,0,1396,1500.000000,155,1,-1.000000,615.680000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1402,1440.000000,155,0,-1.000000,582.240000,hint,lora,60 +on11,0,0,24,0,0,1398,1440.000000,155,0,-1.000000,582.880000,hint,lora,60 +on8,0,0,25,0,0,1407,1500.000000,155,1,-1.000000,612.800000,hint,lora,60 +on11,0,0,24,0,0,1381,1440.000000,156,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1433,1500.000000,156,1,-1.000000,607.360000,hint,lora,60 +on9,0,0,24,0,0,1392,1440.000000,156,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,25,0,0,1478,1500.000000,156,1,-1.000000,600.480000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1366,1500.000000,156,1,-1.000000,621.872000,hint,lora,60 +on10,0,0,24,0,0,1428,1440.000000,156,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1401,1440.000000,156,0,-1.000000,582.400000,hint,lora,60 +on5,0,0,24,0,0,1398,1440.000000,156,0,-1.000000,582.880000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,156,0,-1.000000,646.848000,hint,lora,60 +on6,0,0,24,0,0,1387,1440.000000,156,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1421,1440.000000,157,0,-1.000000,579.200000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1428,1440.000000,157,0,-1.000000,578.080000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1437,1440.000000,157,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,25,0,0,1444,1500.000000,157,1,-1.000000,603.408000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1401,1500.000000,157,1,-1.000000,612.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,157,0,-1.000000,597.664000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,25,0,0,1417,1500.000000,158,1,-1.000000,613.552000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1420,1440.000000,158,0,-1.000000,579.360000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1398,1440.000000,158,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,158,0,-1.000000,613.504000,hint,lora,60 +on9,0,0,24,0,0,1396,1440.000000,158,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1401,1440.000000,158,0,-1.000000,582.560000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1408,1440.000000,159,0,-1.000000,581.280000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,159,0,-1.000000,642.048000,hint,lora,60 +on6,0,0,25,0,0,1473,1500.200000,159,1,-1.000000,601.200000,hint,lora,60 +on8,0,0,24,0,0,1427,1440.000000,159,0,-1.000000,578.240000,hint,lora,60 +on7,0,0,25,0,0,1406,1500.000000,159,1,-1.000000,615.200000,hint,lora,60 +on12,0,0,24,0,0,1415,1440.000000,159,0,-1.000000,580.320000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1388,1500.200000,159,1,-1.000000,617.360000,hint,lora,60 +on5,0,0,24,0,0,1403,1440.000000,159,0,-1.000000,582.080000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1398,1440.000000,159,0,-1.000000,582.880000,hint,lora,60 +on4,0,0,24,0,0,1391,1440.000000,159,0,-1.000000,584.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1345,1440.000000,160,0,-1.000000,594.560000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1391,1440.000000,160,0,-1.000000,584.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1376,1500.000000,160,1,-1.000000,615.040000,hint,lora,60 +on5,0,0,24,0,0,1413,1440.000000,160,0,-1.000000,580.480000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,160,0,-1.000000,633.984000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1387,1440.000000,160,0,-1.000000,595.200000,hint,lora,60 +on7,0,0,24,0,0,1402,1440.000000,160,0,-1.000000,582.240000,hint,lora,60 +on11,0,0,24,0,0,1430,1440.000000,161,0,-1.000000,595.200000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1341,1440.000000,161,0,-1.000000,592.160000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,161,0,-1.000000,631.968000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1422,1440.000000,161,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1352,1440.000000,161,0,-1.000000,590.400000,hint,lora,60 +on4,0,0,24,0,0,1410,1492.000000,161,1,-1.000000,606.880000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1416,1500.000000,161,1,-1.000000,610.560000,hint,lora,60 +on1,0,0,24,0,0,1412,1440.000000,162,0,-1.000000,580.640000,hint,lora,60 +on12,0,0,24,0,0,1410,1440.000000,162,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1432,1440.000000,162,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,25,0,0,1327,1500.200000,162,1,-1.000000,635.600000,hint,lora,60 +on2,0,0,24,0,0,1425,1440.000000,162,0,-1.000000,578.560000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1352,1440.000000,162,0,-1.000000,595.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,162,0,-1.000000,642.944000,hint,lora,60 +on10,0,0,24,0,0,1368,1440.000000,162,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,578.720000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1373,1440.000000,163,0,-1.000000,591.200000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,163,0,-1.000000,581.120000,hint,lora,60 +on3,0,0,24,0,0,1414,1440.000000,163,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,163,0,-1.000000,617.920000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,578.720000,hint,lora,60 +on9,0,0,24,0,0,1413,1440.000000,163,0,-1.000000,580.480000,hint,lora,60 +on12,0,0,24,0,0,1423,1440.000000,163,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1387,1440.000000,163,0,-1.000000,584.640000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1420,1440.000000,164,0,-1.000000,579.360000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,164,0,-1.000000,655.968000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1284,1440.000000,164,0,-1.000000,608.320000,hint,lora,60 +on2,0,0,25,0,0,1366,1500.000000,164,1,-1.000000,617.760000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1385,1440.000000,164,0,-1.000000,584.960000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1414,1500.000000,164,1,-1.000000,612.960000,hint,lora,60 +on5,0,0,24,0,0,1398,1440.000000,164,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1412,1440.000000,164,0,-1.000000,580.640000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,165,0,-1.000000,608.544000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1414,1440.000000,165,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1396,1500.200000,165,1,-1.000000,610.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1422,1440.000000,165,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1347,1440.000000,165,0,-1.000000,591.360000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1313,1440.000000,166,0,-1.000000,599.200000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,166,0,-1.000000,668.768000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1331,1440.000000,166,0,-1.000000,597.920000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1418,1500.000000,166,1,-1.000000,610.288000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1424,1440.000000,166,0,-1.000000,578.720000,hint,lora,60 +on10,0,0,24,0,0,1364,1494.000000,166,1,-1.000000,626.720000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1355,1440.000000,166,0,-1.000000,589.920000,hint,lora,60 +on5,0,0,25,0,0,1413,1500.200000,166,1,-1.000000,607.120000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1389,1440.000000,167,0,-1.000000,589.760000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.160000,hint,lora,60 +on4,0,0,24,0,0,1434,1440.000000,167,0,-1.000000,577.120000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1394,1440.000000,167,0,-1.000000,583.520000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,167,0,-1.000000,594.720000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1432,1440.000000,167,0,-1.000000,577.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,168,0,-1.000000,616.960000,hint,lora,60 +on5,0,0,24,0,0,1385,1440.000000,168,0,-1.000000,595.200000,hint,lora,60 +on1,0,0,24,0,0,1437,1440.000000,168,0,-1.000000,576.640000,hint,lora,60 +on9,0,0,24,0,0,1398,1440.000000,168,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1398,1440.000000,168,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1431,1440.000000,168,0,-1.000000,577.760000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1424,1440.000000,168,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1437,1440.000000,168,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1365,1440.000000,168,0,-1.000000,595.200000,hint,lora,60 +on4,0,0,24,0,0,1433,1440.000000,169,0,-1.000000,577.280000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1402,1440.000000,169,0,-1.000000,582.400000,hint,lora,60 +on5,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,581.600000,hint,lora,60 +on6,0,0,24,0,0,1428,1440.000000,169,0,-1.000000,586.720000,hint,lora,60 +on11,0,0,24,0,0,1400,1440.000000,169,0,-1.000000,582.560000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,169,0,-1.000000,640.064000,hint,lora,60 +on12,0,0,24,0,0,1368,1440.000000,169,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1320,1500.200000,169,1,-1.000000,624.720000,hint,lora,60 +on3,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,25,0,0,1407,1500.000000,170,1,-1.000000,613.600000,hint,lora,60 +on10,0,0,24,0,0,1364,1440.000000,170,0,-1.000000,594.400000,hint,lora,60 +on3,0,0,24,0,0,1418,1440.000000,170,0,-1.000000,579.840000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1333,1440.000000,170,0,-1.000000,593.440000,hint,lora,60 +on1,0,0,24,0,0,1371,1440.000000,170,0,-1.000000,591.360000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,170,0,-1.000000,654.752000,hint,lora,60 +on7,0,0,24,0,0,1384,1440.000000,170,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,26,0,0,1457,1560.000000,170,2,-1.000000,635.152000,hint,lora,60 +on6,0,0,25,0,0,1388,1500.000000,171,1,-1.000000,617.920000,hint,lora,60 +on4,0,0,24,0,0,1419,1440.000000,171,0,-1.000000,579.520000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1396,1440.000000,171,0,-1.000000,583.360000,hint,lora,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1431,1440.000000,171,0,-1.000000,577.600000,hint,lora,60 +on11,0,0,24,0,0,1426,1440.000000,171,0,-1.000000,578.400000,hint,lora,60 +on9,0,0,24,0,0,1353,1440.000000,171,0,-1.000000,590.400000,hint,lora,60 +on5,0,0,25,0,0,1465,1500.200000,171,1,-1.000000,600.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1414,1440.000000,171,0,-1.000000,580.320000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,171,0,-1.000000,627.264000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1433,1440.000000,172,0,-1.000000,577.280000,hint,lora,60 +on9,0,0,24,0,0,1387,1440.000000,172,0,-1.000000,584.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,172,0,-1.000000,637.792000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1382,1500.000000,172,1,-1.000000,613.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1424,1500.000000,172,1,-1.000000,612.160000,hint,lora,60 +on7,0,0,24,0,0,1406,1440.000000,172,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,25,0,0,1409,1500.000000,172,1,-1.000000,613.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1397,1440.000000,172,0,-1.000000,583.040000,hint,lora,60 +on2,0,0,24,0,0,1407,1440.000000,173,0,-1.000000,581.440000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1463,1500.000000,173,1,-1.000000,600.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,173,0,-1.000000,624.704000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1431,1440.000000,173,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1383,1440.000000,173,0,-1.000000,585.760000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,25,0,0,1359,1500.200000,173,1,-1.000000,621.680000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1427,1440.000000,173,0,-1.000000,578.240000,hint,lora,60 +on12,0,0,24,0,0,1387,1440.000000,173,0,-1.000000,584.640000,hint,lora,60 +on11,0,0,24,0,0,1388,1440.000000,174,0,-1.000000,588.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,174,0,-1.000000,617.760000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1394,1440.000000,174,0,-1.000000,592.320000,hint,lora,60 +on4,0,0,24,0,0,1415,1440.000000,174,0,-1.000000,580.160000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1429,1440.000000,174,0,-1.000000,577.920000,hint,lora,60 +on9,0,0,24,0,0,1381,1440.000000,174,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1382,1440.000000,174,0,-1.000000,585.440000,hint,lora,60 +on10,0,0,24,0,0,1401,1440.000000,175,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1383,1440.000000,175,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1369,1440.000000,175,0,-1.000000,587.680000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,175,0,-1.000000,632.800000,hint,lora,60 +on5,0,0,24,0,0,1382,1440.000000,175,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1383,1440.000000,175,0,-1.000000,585.280000,hint,lora,60 +on6,0,0,24,0,0,1430,1440.000000,175,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1386,1440.000000,175,0,-1.000000,588.160000,hint,lora,60 +on3,0,0,24,0,0,1376,1440.000000,176,0,-1.000000,586.560000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,176,0,-1.000000,609.760000,hint,lora,60 +on11,0,0,24,0,0,1425,1440.000000,176,0,-1.000000,582.560000,hint,lora,60 +on10,0,0,24,0,0,1415,1440.000000,176,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1390,1440.000000,176,0,-1.000000,584.160000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,577.920000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1431,1440.000000,176,0,-1.000000,577.600000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1411,1440.000000,176,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1432,1440.000000,177,0,-1.000000,577.440000,hint,lora,60 +on6,0,0,24,0,0,1382,1440.000000,177,0,-1.000000,585.440000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,177,0,-1.000000,640.864000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,579.200000,hint,lora,60 +on9,0,0,24,0,0,1377,1440.000000,177,0,-1.000000,587.040000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1424,1440.000000,177,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1383,1500.000000,177,1,-1.000000,618.080000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,25,0,0,1371,1500.200000,177,1,-1.000000,618.000000,hint,lora,60 +on2,0,0,24,0,0,1393,1440.000000,177,0,-1.000000,583.680000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1427,1440.000000,178,0,-1.000000,578.240000,hint,lora,60 +on5,0,0,24,0,0,1411,1440.000000,178,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1419,1440.000000,178,0,-1.000000,579.520000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1397,1440.000000,178,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1407,1440.000000,178,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,178,0,-1.000000,619.424000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1403,1440.000000,178,0,-1.000000,591.040000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,25,0,0,1402,1500.000000,178,1,-1.000000,614.240000,hint,lora,60 +on10,0,0,24,0,0,1413,1440.000000,179,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1405,1440.000000,179,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1429,1440.000000,179,0,-1.000000,577.920000,hint,lora,60 +on4,0,0,24,0,0,1407,1440.000000,179,0,-1.000000,581.440000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1390,1440.000000,179,0,-1.000000,584.160000,hint,lora,60 +on5,0,0,24,0,0,1412,1440.000000,179,0,-1.000000,580.640000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1374,1500.000000,179,1,-1.000000,616.912000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,179,0,-1.000000,623.264000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1434,1440.000000,180,0,-1.000000,577.120000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,180,0,-1.000000,604.960000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1429,1440.000000,180,0,-1.000000,595.200000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1348,1440.000000,180,0,-1.000000,592.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1376,1440.000000,180,0,-1.000000,594.560000,hint,lora,60 +on11,0,0,24,0,0,1398,1440.000000,181,0,-1.000000,582.880000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1400,1500.000000,181,1,-1.000000,611.840000,hint,lora,60 +on3,0,0,25,0,0,1391,1500.000000,181,1,-1.000000,614.400000,hint,lora,60 +on8,0,0,24,0,0,1418,1440.000000,181,0,-1.000000,585.600000,hint,lora,60 +on6,0,0,24,0,0,1395,1440.000000,181,0,-1.000000,583.360000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1426,1440.000000,181,0,-1.000000,578.400000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,181,0,-1.000000,628.128000,hint,lora,60 +on12,0,0,24,0,0,1405,1440.000000,181,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1390,1440.000000,182,0,-1.000000,590.880000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1385,1440.000000,182,0,-1.000000,584.960000,hint,lora,60 +on6,0,0,25,0,0,1387,1500.000000,182,1,-1.000000,612.960000,hint,lora,60 +on7,0,0,24,0,0,1411,1440.000000,182,0,-1.000000,580.800000,hint,lora,60 +on11,0,0,24,0,0,1398,1440.000000,182,0,-1.000000,582.880000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,182,0,-1.000000,634.144000,hint,lora,60 +on8,0,0,24,0,0,1387,1440.000000,182,0,-1.000000,585.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1427,1440.000000,182,0,-1.000000,578.240000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1407,1440.000000,182,0,-1.000000,581.440000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.160000,hint,lora,60 +on1,0,0,26,0,0,1305,1560.000000,183,2,-1.000000,661.552000,hint,lora,60 +on12,0,0,27,0,0,1467,1620.000000,183,3,-1.000000,666.512000,hint,lora,60 +on8,0,0,24,0,0,1401,1440.000000,183,0,-1.000000,582.400000,hint,lora,60 +on4,0,0,25,0,0,1444,1500.000000,183,1,-1.000000,605.440000,hint,lora,60 +on3,0,0,25,0,0,1405,1500.300000,183,1,-1.000000,618.392000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,183,0,-1.000000,693.568000,hint,lora,60 +on5,0,0,25,0,0,1378,1500.000000,183,1,-1.000000,615.200000,hint,lora,60 +on2,0,0,25,0,0,1294,1500.000000,183,1,-1.000000,633.280000,hint,lora,60 +on12,0,0,25,0,0,1396,1500.000000,184,1,-1.000000,610.080000,hint,lora,60 +on9,0,0,24,0,0,1400,1440.000000,184,0,-1.000000,582.560000,hint,lora,60 +on8,0,0,25,0,0,1383,1500.000000,184,1,-1.000000,619.040000,hint,lora,60 +on7,0,0,24,0,0,1408,1440.000000,184,0,-1.000000,581.280000,hint,lora,60 +on6,0,0,24,0,0,1413,1440.000000,184,0,-1.000000,580.640000,hint,lora,60 +on2,0,0,24,0,0,1413,1440.000000,184,0,-1.000000,580.480000,hint,lora,60 +on5,0,0,24,0,0,1401,1440.000000,184,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,184,0,-1.000000,643.168000,hint,lora,60 +on11,0,0,24,0,0,1387,1440.000000,184,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1427,1440.000000,184,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1382,1440.000000,185,0,-1.000000,585.440000,hint,lora,60 +on2,0,0,25,0,0,1371,1500.200000,185,1,-1.000000,616.400000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,185,0,-1.000000,626.464000,hint,lora,60 +on4,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,580.960000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1396,1440.000000,185,0,-1.000000,585.600000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1389,1440.000000,185,0,-1.000000,595.200000,hint,lora,60 +on3,0,0,24,0,0,1415,1440.000000,185,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1414,1440.000000,186,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,186,0,-1.000000,596.160000,hint,lora,60 +on4,0,0,24,0,0,1400,1440.000000,186,0,-1.000000,604.800000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1410,1440.000000,186,0,-1.000000,580.960000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1417,1440.000000,186,0,-1.000000,595.200000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1477,1500.000000,187,1,-1.000000,600.000000,hint,lora,60 +on12,0,0,24,0,0,1423,1440.000000,187,0,-1.000000,578.880000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,187,0,-1.000000,638.432000,hint,lora,60 +on10,0,0,25,0,0,1393,1500.400000,187,1,-1.000000,611.088000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1393,1440.000000,187,0,-1.000000,583.680000,hint,lora,60 +on11,0,0,24,0,0,1393,1440.000000,187,0,-1.000000,585.600000,hint,lora,60 +on2,0,0,25,0,0,1377,1500.000000,187,1,-1.000000,614.880000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,25,0,0,1377,1500.000000,187,1,-1.000000,616.320000,hint,lora,60 +on8,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,586.560000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1410,1440.000000,188,0,-1.000000,585.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,188,0,-1.000000,626.464000,hint,lora,60 +on2,0,0,24,0,0,1412,1440.000000,188,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1431,1440.000000,188,0,-1.000000,577.600000,hint,lora,60 +on3,0,0,25,0,0,1334,1500.000000,188,1,-1.000000,622.720000,hint,lora,60 +on8,0,0,24,0,0,1426,1440.000000,188,0,-1.000000,578.400000,hint,lora,60 +on11,0,0,25,0,0,1471,1500.200000,188,1,-1.000000,600.080000,hint,lora,60 +on12,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,581.120000,hint,lora,60 +on5,0,0,24,0,0,1427,1440.000000,188,0,-1.000000,578.400000,hint,lora,60 +on1,0,0,24,0,0,1398,1440.000000,188,0,-1.000000,585.600000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1387,1440.000000,189,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,26,0,0,1374,1560.000000,189,2,-1.000000,650.192000,hint,lora,60 +on5,0,0,25,0,0,1383,1500.000000,189,1,-1.000000,619.040000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,189,0,-1.000000,635.872000,hint,lora,60 +on10,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1434,1440.000000,189,0,-1.000000,577.120000,hint,lora,60 +on5,0,0,24,0,0,1327,1440.000000,190,0,-1.000000,594.400000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,190,0,-1.000000,644.384000,hint,lora,60 +on9,0,0,24,0,0,1376,1440.000000,190,0,-1.000000,596.160000,hint,lora,60 +on11,0,0,25,0,0,1429,1500.200000,190,1,-1.000000,610.368000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1423,1500.000000,190,1,-1.000000,609.600000,hint,lora,60 +on7,0,0,24,0,0,1416,1440.000000,190,0,-1.000000,580.000000,hint,lora,60 +on12,0,0,24,0,0,1388,1440.000000,190,0,-1.000000,584.480000,hint,lora,60 +on2,0,0,24,0,0,1381,1440.000000,190,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1391,1440.000000,191,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1385,1440.000000,191,0,-1.000000,584.960000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1388,1440.000000,191,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,191,0,-1.000000,617.440000,hint,lora,60 +on4,0,0,24,0,0,1387,1440.000000,191,0,-1.000000,595.200000,hint,lora,60 +on8,0,0,24,0,0,1396,1440.000000,191,0,-1.000000,583.200000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1402,1440.000000,192,0,-1.000000,582.240000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1429,1440.000000,192,0,-1.000000,577.920000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,192,0,-1.000000,609.024000,hint,lora,60 +on10,0,0,24,0,0,1427,1440.000000,192,0,-1.000000,578.240000,hint,lora,60 +on1,0,0,25,0,0,1377,1500.200000,192,1,-1.000000,628.080000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1430,1440.000000,192,0,-1.000000,577.760000,hint,lora,60 +on9,0,0,24,0,0,1434,1440.000000,192,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1400,1440.000000,193,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,25,0,0,1382,1500.000000,193,1,-1.000000,613.600000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1395,1440.000000,193,0,-1.000000,583.360000,hint,lora,60 +on7,0,0,24,0,0,1380,1440.000000,193,0,-1.000000,592.160000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,193,0,-1.000000,637.888000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,25,0,0,1373,1500.000000,193,1,-1.000000,618.400000,hint,lora,60 +on2,0,0,24,0,0,1411,1440.000000,193,0,-1.000000,587.840000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1433,1440.000000,193,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1405,1440.000000,194,0,-1.000000,585.600000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1426,1440.000000,194,0,-1.000000,578.560000,hint,lora,60 +on1,0,0,24,0,0,1415,1440.000000,194,0,-1.000000,580.160000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,194,0,-1.000000,606.560000,hint,lora,60 +on6,0,0,24,0,0,1420,1440.000000,194,0,-1.000000,579.360000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1437,1440.000000,194,0,-1.000000,576.640000,hint,lora,60 +on5,0,0,24,0,0,1400,1440.000000,194,0,-1.000000,582.560000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1394,1440.000000,194,0,-1.000000,585.600000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,23,0,0,1438,1438.000000,194,0,-1.000000,575.200000,hint,lora,60 +on6,0,0,24,0,0,1425,1440.000000,195,0,-1.000000,578.560000,hint,lora,60 +on8,0,0,26,0,0,1451,1560.200000,195,2,-1.000000,632.880000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1308,1440.000000,195,0,-1.000000,597.600000,hint,lora,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,25,0,0,1393,1500.200000,195,1,-1.000000,616.400000,hint,lora,60 +on4,0,0,25,0,0,1408,1500.000000,195,1,-1.000000,614.560000,hint,lora,60 +on12,0,0,24,0,0,1436,1440.000000,195,0,-1.000000,576.800000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,195,0,-1.000000,640.512000,hint,lora,60 +on7,0,0,24,0,0,1439,1440.000000,195,0,-1.000000,585.600000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,25,0,0,1390,1500.000000,196,1,-1.000000,611.520000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1406,1440.000000,196,0,-1.000000,585.600000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,25,0,0,1416,1500.000000,196,1,-1.000000,611.680000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,196,0,-1.000000,625.728000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1312,1440.000000,196,0,-1.000000,612.320000,hint,lora,60 +on3,0,0,24,0,0,1437,1440.000000,197,0,-1.000000,576.640000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,197,0,-1.000000,618.624000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1428,1440.000000,197,0,-1.000000,585.600000,hint,lora,60 +on10,0,0,24,0,0,1431,1440.000000,197,0,-1.000000,577.600000,hint,lora,60 +on11,0,0,24,0,0,1421,1440.000000,197,0,-1.000000,585.920000,hint,lora,60 +on6,0,0,25,0,0,1388,1500.000000,197,1,-1.000000,618.352000,hint,lora,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,lora,60 +on9,0,0,24,0,0,1340,1440.000000,197,0,-1.000000,601.600000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,198,0,-1.000000,605.344000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on3,0,0,24,0,0,1402,1440.000000,198,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1397,1440.000000,198,0,-1.000000,583.040000,hint,lora,60 +on6,0,0,25,0,0,1399,1500.000000,198,1,-1.000000,614.880000,hint,lora,60 +on9,0,0,24,0,0,1433,1440.000000,198,0,-1.000000,577.280000,hint,lora,60 +on11,0,0,25,0,0,1478,1500.200000,199,1,-1.000000,600.080000,hint,lora,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on5,0,0,24,0,0,1421,1440.000000,199,0,-1.000000,579.200000,hint,lora,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on8,0,0,24,0,0,1393,1440.000000,199,0,-1.000000,583.680000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,199,0,-1.000000,619.584000,hint,lora,60 +on4,0,0,24,0,0,1336,1440.000000,199,0,-1.000000,595.200000,hint,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,lora,60 +on1,0,0,24,0,0,1431,1440.000000,199,0,-1.000000,577.600000,hint,lora,60 +on2,0,0,24,0,0,1424,1440.000000,199,0,-1.000000,585.600000,hint,lora,60 +on7,0,0,25,0,0,1391,1500.200000,199,1,-1.000000,611.808000,hint,lora,60 +on3,0,0,24,0,0,1386,1440.000000,200,0,-1.000000,584.800000,hint,lora,60 +on10,0,0,26,0,0,1421,1560.400000,200,2,-1.000000,642.976000,hint,lora,60 +on11,0,0,24,0,0,1436,1440.000000,200,0,-1.000000,585.600000,hint,lora,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on12,0,0,25,0,0,1438,1500.000000,200,1,-1.000000,606.560000,hint,lora,60 +on0,1,0,24,0,0,0,1440.000000,200,0,-1.000000,652.832000,hint,lora,60 +on5,0,0,25,0,0,1389,1500.000000,200,1,-1.000000,612.640000,hint,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on2,0,0,26,0,0,1532,1560.000000,200,2,-1.000000,625.280000,hint,lora,60 +on7,0,0,25,0,0,1359,1500.000000,200,1,-1.000000,620.480000,hint,lora,60 +on9,0,0,24,0,0,1390,1440.000000,200,0,-1.000000,584.160000,hint,lora,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,lora,60 +on6,0,0,24,1,0,1187,1587.000000,1,0,70326.000000,660.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,279,1579.000000,1,0,17486.000000,657.200000,extended,lora,60 +on8,0,0,24,1,0,439,1559.000000,1,0,27313.000000,649.200000,extended,lora,60 +on2,0,0,24,1,0,483,1543.000000,1,0,29156.000000,642.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,710,1590.000000,1,0,43156.000000,661.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,300,1540.000000,1,0,19137.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2093.000000,1,0,-1.000000,990.800000,extended,lora,60 +on10,0,0,24,1,0,1050,1570.000000,2,0,62314.000000,653.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,753,1573.000000,2,0,45896.000000,654.800000,extended,lora,60 +on7,0,0,24,1,0,600,1540.000000,2,0,38982.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,991,1571.000000,2,0,59964.000000,654.000000,extended,lora,60 +on0,1,7,24,0,0,0,2231.000000,2,0,-1.000000,1071.600000,extended,lora,60 +on6,0,0,24,1,0,211,1571.000000,2,0,11090.000000,654.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,240,1540.000000,2,0,15964.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,552,1552.000000,2,0,35550.000000,646.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2019.000000,3,0,-1.000000,935.600000,extended,lora,60 +on4,0,0,24,1,0,300,1540.000000,3,0,19182.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,240,1540.000000,3,0,16454.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,480,1540.000000,3,0,31383.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,398,1578.000000,3,0,25353.000000,656.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1096,1556.000000,3,0,67058.000000,648.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1401,1561.000000,4,0,83101.000000,650.000000,extended,lora,60 +on0,1,5,24,0,0,0,2048.000000,4,0,-1.000000,947.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,599,1599.000000,4,0,34038.000000,665.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,17,1557.000000,4,0,2325.000000,648.400000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,4,0,27312.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,4,0,40187.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1432,1592.000000,5,0,83138.000000,662.400000,extended,lora,60 +on0,1,5,24,0,0,0,2002.000000,5,0,-1.000000,928.800000,extended,lora,60 +on5,0,0,24,1,0,120,1540.000000,5,0,7771.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,383,1563.000000,5,0,25163.000000,650.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,947,1587.000000,5,0,55031.000000,660.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,0,1540.000000,5,0,2413.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1077,1597.000000,6,0,61887.000000,664.400000,extended,lora,60 +on7,0,0,24,1,0,498,1558.000000,6,0,30359.000000,648.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1852.000000,6,0,-1.000000,843.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,861,1561.000000,6,0,53902.000000,650.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1260,1540.000000,6,0,77177.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1802.000000,7,0,-1.000000,797.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,180,1540.000000,7,0,14023.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,23,1563.000000,7,0,3669.000000,650.800000,extended,lora,60 +on8,0,0,24,1,0,720,1540.000000,7,0,45641.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1996.000000,8,0,-1.000000,926.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1080,1540.000000,8,0,66717.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,180,1540.000000,8,0,13146.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,519,1579.000000,8,0,31842.000000,657.200000,extended,lora,60 +on12,0,0,24,1,0,952,1592.000000,8,0,54416.000000,662.400000,extended,lora,60 +on4,0,0,24,1,0,326,1566.000000,8,0,19395.000000,652.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,172,1592.000000,9,0,9008.000000,662.400000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,997,1577.000000,9,0,60760.000000,656.400000,extended,lora,60 +on0,1,7,24,0,0,0,2242.000000,9,0,-1.000000,1076.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,0,1540.000000,9,0,1697.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,813,1573.000000,9,0,49011.000000,654.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,660,1540.000000,9,0,42604.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,60,1540.000000,9,0,4904.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,200,1560.000000,9,0,11747.000000,649.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,933,1573.000000,10,0,56889.000000,654.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2084.000000,10,0,-1.000000,987.200000,extended,lora,60 +on4,0,0,24,1,0,1260,1540.000000,10,0,78439.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,337,1577.000000,10,0,20723.000000,656.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,960,1540.000000,10,0,58887.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,204,1564.000000,10,0,13752.000000,651.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,683,1563.000000,10,0,42243.000000,650.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,312,1552.000000,11,0,19948.000000,646.400000,extended,lora,60 +on3,0,0,24,1,0,600,1540.000000,11,0,37430.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,660,1540.000000,11,0,42924.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,566,1566.000000,11,0,35092.000000,652.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1134,1594.000000,11,0,66389.000000,663.200000,extended,lora,60 +on1,0,0,24,1,0,34,1574.000000,11,0,350.000000,655.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,11,0,18089.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,960,1540.000000,11,0,60479.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2472.000000,11,0,-1.000000,1219.200000,extended,lora,60 +on4,0,0,24,1,0,731,1551.000000,11,0,45443.000000,646.000000,extended,lora,60 +on3,0,0,24,1,0,180,1540.000000,12,0,13282.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,126,1546.000000,12,0,10903.000000,644.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1301,1581.000000,12,0,76530.000000,658.000000,extended,lora,60 +on9,0,0,24,1,0,840,1540.000000,12,0,50692.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,600,1540.000000,12,0,37669.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,324,1564.000000,12,0,18333.000000,651.200000,extended,lora,60 +on8,0,0,24,1,0,991,1571.000000,12,0,58114.000000,654.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2252.000000,12,0,-1.000000,1080.000000,extended,lora,60 +on7,0,0,24,1,0,600,1540.000000,13,0,38248.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,660,1540.000000,13,0,40892.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,273,1573.000000,13,0,16923.000000,654.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,60,1540.000000,13,0,6590.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,3,1543.000000,13,0,2169.000000,642.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2184.000000,13,0,-1.000000,1027.200000,extended,lora,60 +on1,0,0,24,1,0,148,1568.000000,13,0,10267.000000,652.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,840,1540.000000,14,0,52162.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2272.000000,14,0,-1.000000,1088.000000,extended,lora,60 +on3,0,0,24,1,0,0,1540.000000,14,0,2012.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,60,1540.000000,14,0,6831.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,239,1599.000000,14,0,14226.000000,665.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,374,1554.000000,14,0,22972.000000,647.200000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,14,0,16064.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,823,1583.000000,14,0,48587.000000,658.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,423,1543.000000,15,0,28841.000000,642.800000,extended,lora,60 +on5,0,0,24,1,0,1020,1540.000000,15,0,63747.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,869,1569.000000,15,0,52470.000000,653.200000,extended,lora,60 +on11,0,0,24,1,0,180,1540.000000,15,0,13148.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2204.000000,15,0,-1.000000,1060.800000,extended,lora,60 +on8,0,0,24,1,0,838,1598.000000,15,0,49852.000000,664.800000,extended,lora,60 +on2,0,0,24,1,0,663,1543.000000,15,0,39970.000000,642.800000,extended,lora,60 +on10,0,0,24,1,0,294,1594.000000,15,0,17169.000000,663.200000,extended,lora,60 +on7,0,0,24,1,0,685,1565.000000,16,0,41500.000000,651.600000,extended,lora,60 +on12,0,0,24,1,0,420,1540.000000,16,0,27328.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,488,1548.000000,16,0,30870.000000,644.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,900,1540.000000,16,0,55429.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2095.000000,16,0,-1.000000,991.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,328,1568.000000,16,0,19811.000000,652.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1263,1543.000000,16,0,79269.000000,642.800000,extended,lora,60 +on0,1,6,24,0,0,0,2192.000000,17,0,-1.000000,1030.400000,extended,lora,60 +on6,0,0,24,1,0,660,1540.000000,17,0,40688.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,240,1540.000000,17,0,14588.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,23,0,0,1430,1430.000000,17,0,-1.000000,572.000000,extended,lora,60 +on12,0,0,24,1,0,1235,1575.000000,17,0,75071.000000,655.600000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,17,0,44308.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,60,1540.000000,17,0,6434.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,590,1590.000000,17,0,34392.000000,661.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,159,1579.000000,18,0,9063.000000,657.200000,extended,lora,60 +on5,0,0,24,1,0,497,1557.000000,18,0,29900.000000,648.400000,extended,lora,60 +on8,0,0,24,1,0,601,1541.000000,18,0,36268.000000,642.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,378,1558.000000,18,0,23318.000000,648.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,18,0,69242.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2150.000000,18,0,-1.000000,1039.200000,extended,lora,60 +on6,0,0,24,1,0,1031,1551.000000,18,0,62983.000000,646.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1246,1586.000000,18,0,75202.000000,660.000000,extended,lora,60 +on7,0,0,24,1,0,533,1593.000000,19,0,30184.000000,662.800000,extended,lora,60 +on12,0,0,24,1,0,867,1567.000000,19,0,51156.000000,652.400000,extended,lora,60 +on3,0,0,24,1,0,476,1596.000000,19,0,25890.000000,664.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,180,1540.000000,19,0,11774.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2098.000000,19,0,-1.000000,992.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,75,1555.000000,19,0,4658.000000,647.600000,extended,lora,60 +on2,0,0,24,1,0,720,1540.000000,19,0,43634.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1380,1540.000000,20,0,83879.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1988.000000,20,0,-1.000000,923.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,540,1540.000000,20,0,34396.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,120,1540.000000,20,0,7922.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,755,1575.000000,20,0,45468.000000,655.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,272,1572.000000,20,0,15361.000000,654.400000,extended,lora,60 +on3,0,0,24,1,0,660,1540.000000,21,0,40751.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2086.000000,21,0,-1.000000,988.000000,extended,lora,60 +on7,0,0,24,1,0,1100,1560.000000,21,0,65866.000000,649.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,406,1586.000000,21,0,22431.000000,660.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,216,1576.000000,21,0,12452.000000,656.000000,extended,lora,60 +on2,0,0,24,1,0,1320,1540.000000,21,0,82647.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,33,1573.000000,21,0,319.000000,654.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1115,1575.000000,22,0,65550.000000,655.600000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,22,0,4972.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,204,1564.000000,22,0,13061.000000,651.200000,extended,lora,60 +on0,1,6,24,0,0,0,2094.000000,22,0,-1.000000,991.200000,extended,lora,60 +on9,0,0,24,1,0,660,1540.000000,22,0,40138.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,498,1558.000000,22,0,30392.000000,648.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,893,1593.000000,22,0,53971.000000,662.800000,extended,lora,60 +on9,0,0,24,1,0,1124,1584.000000,23,0,65503.000000,659.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,0,1540.000000,23,0,3375.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,660,1540.000000,23,0,43331.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,720,1540.000000,23,0,43883.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,540,1540.000000,23,0,35373.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2523.000000,23,0,-1.000000,1239.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1335,1555.000000,23,0,79583.000000,647.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,780,1540.000000,23,0,49347.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1200,1540.000000,23,0,72452.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,600,1540.000000,23,0,37960.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,979,1559.000000,24,0,58756.000000,649.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,180,1540.000000,24,0,13458.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,383,1563.000000,24,0,24853.000000,650.800000,extended,lora,60 +on8,0,0,24,1,0,130,1550.000000,24,0,8719.000000,645.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1959.000000,24,0,-1.000000,911.600000,extended,lora,60 +on7,0,0,24,1,0,605,1545.000000,24,0,37544.000000,643.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,287,1587.000000,25,0,17764.000000,660.400000,extended,lora,60 +on12,0,0,24,1,0,853,1553.000000,25,0,54043.000000,646.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1015,1595.000000,25,0,59227.000000,663.600000,extended,lora,60 +on11,0,0,24,1,0,180,1540.000000,25,0,14008.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,780,1540.000000,25,0,49819.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2128.000000,25,0,-1.000000,1004.800000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,25,0,34515.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,840,1540.000000,26,0,53314.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,410,1590.000000,26,0,24547.000000,661.600000,extended,lora,60 +on0,1,8,24,0,0,0,2281.000000,26,0,-1.000000,1117.200000,extended,lora,60 +on10,0,0,24,1,0,226,1586.000000,26,0,14464.000000,660.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,780,1540.000000,26,0,48154.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,595,1595.000000,26,0,33973.000000,663.600000,extended,lora,60 +on1,0,0,24,1,0,1211,1551.000000,26,0,74345.000000,646.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,44,1584.000000,26,0,2888.000000,659.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,347,1587.000000,26,0,21232.000000,660.400000,extended,lora,60 +on5,0,0,24,1,0,1037,1557.000000,27,0,64735.000000,648.400000,extended,lora,60 +on1,0,0,24,1,0,120,1540.000000,27,0,9577.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,828,1588.000000,27,0,49502.000000,660.800000,extended,lora,60 +on8,0,0,24,1,0,322,1562.000000,27,0,19107.000000,650.400000,extended,lora,60 +on2,0,0,24,1,0,443,1563.000000,27,0,26932.000000,650.800000,extended,lora,60 +on10,0,0,24,1,0,1173,1573.000000,27,0,68602.000000,654.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,605,1545.000000,27,0,38294.000000,643.600000,extended,lora,60 +on6,0,0,24,1,0,720,1540.000000,27,0,46464.000000,641.600000,extended,lora,60 +on0,1,10,24,0,0,0,2553.000000,27,0,-1.000000,1277.200000,extended,lora,60 +on3,0,0,24,1,0,482,1542.000000,27,0,29060.000000,642.400000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,27,0,1637.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,874,1574.000000,28,0,53826.000000,655.200000,extended,lora,60 +on8,0,0,24,1,0,335,1575.000000,28,0,18238.000000,655.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1234,1574.000000,28,0,74257.000000,655.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,836,1596.000000,28,0,47488.000000,664.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1380,1540.000000,28,0,84685.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2095.000000,28,0,-1.000000,991.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,682,1562.000000,28,0,41071.000000,650.400000,extended,lora,60 +on11,0,0,24,1,0,1140,1540.000000,29,0,68892.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,607,1547.000000,29,0,37286.000000,644.400000,extended,lora,60 +on8,0,0,24,1,0,717,1597.000000,29,0,39950.000000,664.400000,extended,lora,60 +on7,0,0,24,1,0,172,1592.000000,29,0,8164.000000,662.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,29,0,32682.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1987.000000,29,0,-1.000000,922.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1016,1596.000000,30,0,59503.000000,664.000000,extended,lora,60 +on0,1,3,24,0,0,0,1743.000000,30,0,-1.000000,774.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,331,1571.000000,30,0,21685.000000,654.000000,extended,lora,60 +on5,0,0,24,1,0,720,1540.000000,30,0,45573.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,780,1540.000000,31,0,49683.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2035.000000,31,0,-1.000000,942.000000,extended,lora,60 +on10,0,0,24,1,0,894,1594.000000,31,0,53346.000000,663.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,503,1563.000000,31,0,30297.000000,650.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,540,1540.000000,31,0,33420.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1140,1540.000000,31,0,69142.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,993,1573.000000,32,0,60960.000000,654.800000,extended,lora,60 +on5,0,0,24,1,0,1062,1582.000000,32,0,63025.000000,658.400000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1308,1588.000000,32,0,76772.000000,660.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,900,1540.000000,32,0,55108.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1969.000000,32,0,-1.000000,915.600000,extended,lora,60 +on6,0,0,24,1,0,179,1599.000000,32,0,7673.000000,665.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,33,0,61708.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,33,0,33331.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,452,1572.000000,33,0,26137.000000,654.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,193,1553.000000,33,0,14173.000000,646.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1080,1540.000000,33,0,65017.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1991.000000,33,0,-1.000000,924.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1415,1575.000000,34,0,83279.000000,655.600000,extended,lora,60 +on0,1,6,24,0,0,0,2144.000000,34,0,-1.000000,1011.200000,extended,lora,60 +on12,0,0,24,1,0,579,1579.000000,34,0,35713.000000,657.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,300,1540.000000,34,0,19199.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1200,1540.000000,34,0,74537.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,840,1540.000000,34,0,53520.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,1020,1540.000000,34,0,62462.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,720,1540.000000,35,0,46769.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,780,1540.000000,35,0,47136.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,641,1581.000000,35,0,39528.000000,658.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1200,1540.000000,35,0,72274.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1384,1544.000000,35,0,86465.000000,643.200000,extended,lora,60 +on0,1,5,24,0,0,0,2014.000000,35,0,-1.000000,933.600000,extended,lora,60 +on0,1,7,24,0,0,0,2217.000000,36,0,-1.000000,1066.000000,extended,lora,60 +on11,0,0,24,1,0,1014,1594.000000,36,0,60145.000000,663.200000,extended,lora,60 +on1,0,0,24,1,0,484,1544.000000,36,0,31247.000000,643.200000,extended,lora,60 +on9,0,0,24,1,0,1306,1586.000000,36,0,77492.000000,660.000000,extended,lora,60 +on4,0,0,24,1,0,0,1540.000000,36,0,755.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,670,1550.000000,36,0,43298.000000,645.600000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,36,0,26331.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1020,1540.000000,36,0,61664.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,878,1578.000000,37,0,52093.000000,656.800000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,37,0,23007.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1320,1540.000000,37,0,81889.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,120,1540.000000,37,0,8792.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1250,1590.000000,37,0,73917.000000,661.600000,extended,lora,60 +on10,0,0,24,1,0,480,1540.000000,37,0,32363.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,37,0,84037.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2627.000000,37,0,-1.000000,1281.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,300,1540.000000,37,0,19381.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,780,1540.000000,37,0,49527.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,947,1587.000000,38,0,54342.000000,660.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,293,1593.000000,38,0,14932.000000,662.800000,extended,lora,60 +on9,0,0,24,1,0,633,1573.000000,38,0,39547.000000,654.800000,extended,lora,60 +on12,0,0,24,1,0,150,1570.000000,38,0,8251.000000,653.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,319,1559.000000,38,0,21047.000000,649.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1940.000000,38,0,-1.000000,904.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,803,1563.000000,39,0,50475.000000,650.800000,extended,lora,60 +on4,0,0,24,1,0,926,1566.000000,39,0,56898.000000,652.000000,extended,lora,60 +on0,1,5,24,0,0,0,1940.000000,39,0,-1.000000,904.000000,extended,lora,60 +on5,0,0,23,1,0,468,1588.000000,39,0,27815.000000,660.800000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,693,1573.000000,39,0,41703.000000,654.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,18,1558.000000,39,0,2794.000000,648.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,260,1560.000000,40,0,17452.000000,649.600000,extended,lora,60 +on7,0,0,24,1,0,468,1588.000000,40,0,26137.000000,660.800000,extended,lora,60 +on10,0,0,24,1,0,120,1540.000000,40,0,10111.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,540,1540.000000,40,0,32925.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,744,1564.000000,40,0,46606.000000,651.200000,extended,lora,60 +on1,0,0,24,1,0,1380,1540.000000,40,0,86316.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2199.000000,40,0,-1.000000,1058.800000,extended,lora,60 +on8,0,0,24,1,0,1177,1577.000000,40,0,69515.000000,656.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,16,1556.000000,41,0,1299.000000,648.000000,extended,lora,60 +on9,0,0,24,1,0,720,1540.000000,41,0,45005.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1916.000000,41,0,-1.000000,868.800000,extended,lora,60 +on4,0,0,24,1,0,240,1540.000000,41,0,14577.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,145,1565.000000,41,0,7627.000000,651.600000,extended,lora,60 +on6,0,0,24,1,0,240,1540.000000,42,0,17396.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2034.000000,42,0,-1.000000,941.600000,extended,lora,60 +on11,0,0,24,1,0,960,1540.000000,42,0,60972.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,480,1540.000000,42,0,31225.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,42,0,380.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,99,1579.000000,42,0,6124.000000,657.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,300,1540.000000,43,0,20073.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,38,1578.000000,43,0,271.000000,656.800000,extended,lora,60 +on6,0,0,24,1,0,1140,1540.000000,43,0,71404.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,399,1579.000000,43,0,24757.000000,657.200000,extended,lora,60 +on11,0,0,24,1,0,845,1545.000000,43,0,53493.000000,643.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1432,1592.000000,43,0,86080.000000,662.400000,extended,lora,60 +on0,1,6,24,0,0,0,2069.000000,43,0,-1.000000,981.200000,extended,lora,60 +on0,1,7,24,0,0,0,2195.000000,44,0,-1.000000,1057.200000,extended,lora,60 +on10,0,0,24,1,0,60,1540.000000,44,0,4529.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,44,0,28701.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1080,1540.000000,44,0,67813.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,998,1578.000000,44,0,61081.000000,656.800000,extended,lora,60 +on9,0,0,24,1,0,540,1540.000000,44,0,32614.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,22,1562.000000,44,0,1698.000000,650.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,653,1593.000000,44,0,38721.000000,662.800000,extended,lora,60 +on4,0,0,24,1,0,1336,1556.000000,45,0,79996.000000,648.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2140.000000,45,0,-1.000000,1035.200000,extended,lora,60 +on2,0,0,24,1,0,360,1540.000000,45,0,21766.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,547,1547.000000,45,0,33154.000000,644.400000,extended,lora,60 +on9,0,0,24,1,0,85,1565.000000,45,0,4854.000000,651.600000,extended,lora,60 +on8,0,0,24,1,0,1010,1590.000000,45,0,58010.000000,661.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1125,1585.000000,45,0,66697.000000,659.600000,extended,lora,60 +on3,0,0,24,1,0,625,1565.000000,45,0,37752.000000,651.600000,extended,lora,60 +on0,1,6,24,0,0,0,2093.000000,46,0,-1.000000,990.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,87,1567.000000,46,0,6488.000000,652.400000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1200,1540.000000,46,0,74785.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,478,1598.000000,46,0,27238.000000,664.800000,extended,lora,60 +on3,0,0,24,1,0,976,1556.000000,46,0,60612.000000,648.000000,extended,lora,60 +on9,0,0,24,1,0,480,1540.000000,46,0,29642.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,905,1545.000000,46,0,54818.000000,643.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,420,1540.000000,47,0,27252.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,300,1540.000000,47,0,21613.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2008.000000,47,0,-1.000000,931.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1009,1589.000000,47,0,60134.000000,661.200000,extended,lora,60 +on10,0,0,24,1,0,811,1571.000000,47,0,50034.000000,654.000000,extended,lora,60 +on7,0,0,24,1,0,262,1562.000000,47,0,16112.000000,650.400000,extended,lora,60 +on2,0,0,24,1,0,765,1585.000000,48,0,43875.000000,659.600000,extended,lora,60 +on0,1,5,24,0,0,0,1990.000000,48,0,-1.000000,924.000000,extended,lora,60 +on12,0,0,24,1,0,0,1540.000000,48,0,2136.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,940,1580.000000,48,0,56850.000000,657.600000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,48,0,4164.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,188,1548.000000,48,0,12844.000000,644.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,677,1557.000000,49,0,41115.000000,648.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1286,1566.000000,49,0,77645.000000,652.000000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,49,0,85575.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2137.000000,49,0,-1.000000,1008.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,49,0,4408.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,427,1547.000000,49,0,25543.000000,644.400000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,49,0,68661.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,900,1540.000000,50,0,56235.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2332.000000,50,0,-1.000000,1137.600000,extended,lora,60 +on2,0,0,24,1,0,24,1564.000000,50,0,3774.000000,651.200000,extended,lora,60 +on3,0,0,24,1,0,1080,1540.000000,50,0,66339.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,725,1545.000000,50,0,46587.000000,643.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,480,1540.000000,50,0,28996.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,45,1585.000000,50,0,1027.000000,659.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1140,1540.000000,50,0,71227.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,120,1540.000000,50,0,9324.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1200,1540.000000,51,0,75098.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,180,1540.000000,51,0,12833.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2240.000000,51,0,-1.000000,1075.200000,extended,lora,60 +on6,0,0,24,1,0,717,1597.000000,51,0,42428.000000,664.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1355,1575.000000,51,0,82614.000000,655.600000,extended,lora,60 +on11,0,0,24,1,0,929,1569.000000,51,0,55722.000000,653.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,420,1540.000000,51,0,27668.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,51,0,67994.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,360,1540.000000,52,0,23539.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,52,0,1783.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,614,1554.000000,52,0,39724.000000,647.200000,extended,lora,60 +on12,0,0,24,1,0,540,1540.000000,52,0,33249.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2203.000000,52,0,-1.000000,1060.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1360,1580.000000,52,0,80396.000000,657.600000,extended,lora,60 +on11,0,0,24,1,0,297,1597.000000,52,0,15016.000000,664.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,730,1550.000000,52,0,44686.000000,645.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,53,0,33160.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,53,0,27401.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,240,1540.000000,53,0,15738.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,600,1540.000000,53,0,38022.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1068,1588.000000,53,0,61894.000000,660.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2148.000000,53,0,-1.000000,1012.800000,extended,lora,60 +on1,0,0,24,1,0,683,1563.000000,53,0,42659.000000,650.800000,extended,lora,60 +on12,0,0,24,1,0,1349,1569.000000,54,0,80630.000000,653.200000,extended,lora,60 +on6,0,0,24,1,0,0,1540.000000,54,0,1152.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,457,1577.000000,54,0,28923.000000,656.400000,extended,lora,60 +on3,0,0,24,1,0,720,1540.000000,54,0,45818.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1073,1593.000000,54,0,61560.000000,662.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2092.000000,54,0,-1.000000,990.400000,extended,lora,60 +on1,0,0,24,1,0,780,1540.000000,54,0,49012.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,660,1540.000000,55,0,42319.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1080,1540.000000,55,0,66928.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,960,1540.000000,55,0,59472.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,401,1581.000000,55,0,24341.000000,658.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,502,1562.000000,55,0,31014.000000,650.400000,extended,lora,60 +on6,0,0,24,1,0,540,1540.000000,55,0,33178.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2135.000000,55,0,-1.000000,1007.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1200,1540.000000,56,0,75551.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on0,1,2,24,0,0,0,1669.000000,56,0,-1.000000,718.800000,extended,lora,60 +on12,0,0,24,1,0,1074,1594.000000,56,0,64965.000000,663.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,524,1584.000000,57,0,31062.000000,659.200000,extended,lora,60 +on0,1,4,24,0,0,0,1865.000000,57,0,-1.000000,848.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1165,1565.000000,57,0,68616.000000,651.600000,extended,lora,60 +on7,0,0,24,1,0,420,1540.000000,57,0,25963.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,570,1570.000000,57,0,35282.000000,653.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,689,1569.000000,58,0,41786.000000,653.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,9,1549.000000,58,0,3400.000000,645.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,600,1540.000000,58,0,36512.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1964.000000,58,0,-1.000000,913.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1068,1588.000000,58,0,63410.000000,660.800000,extended,lora,60 +on6,0,0,24,1,0,865,1565.000000,58,0,50597.000000,651.600000,extended,lora,60 +on8,0,0,24,1,0,0,1540.000000,59,0,559.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1200,1540.000000,59,0,75063.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,888,1588.000000,59,0,51291.000000,660.800000,extended,lora,60 +on10,0,0,24,1,0,360,1540.000000,59,0,24612.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2282.000000,59,0,-1.000000,1092.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1080,1540.000000,59,0,67414.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,540,1540.000000,59,0,35672.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,240,1540.000000,59,0,17260.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,60,0,66755.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,118,1598.000000,60,0,4709.000000,664.800000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,60,0,69345.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,480,1540.000000,60,0,32500.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,765,1585.000000,60,0,44033.000000,659.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2018.000000,60,0,-1.000000,935.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,488,1548.000000,61,0,32335.000000,644.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,61,0,43271.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,60,1540.000000,61,0,6961.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1889.000000,61,0,-1.000000,858.000000,extended,lora,60 +on2,0,0,24,1,0,589,1589.000000,61,0,34899.000000,661.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,951,1591.000000,62,0,56862.000000,662.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1096,1556.000000,62,0,66026.000000,648.000000,extended,lora,60 +on9,0,0,24,1,0,1423,1583.000000,62,0,84946.000000,658.800000,extended,lora,60 +on0,1,5,24,0,0,0,1947.000000,62,0,-1.000000,906.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,75,1555.000000,62,0,4275.000000,647.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,480,1540.000000,62,0,30227.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1065,1585.000000,63,0,61801.000000,659.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1167,1567.000000,63,0,70195.000000,652.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,581,1581.000000,63,0,34400.000000,658.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,lora,60 +on0,1,8,24,0,0,0,2381.000000,63,0,-1.000000,1157.200000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,63,0,23669.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,600,1540.000000,63,0,36727.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,280,1580.000000,63,0,15002.000000,657.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1320,1540.000000,63,0,80454.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1080,1540.000000,63,0,65101.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1969.000000,64,0,-1.000000,915.600000,extended,lora,60 +on12,0,0,24,1,0,206,1566.000000,64,0,14319.000000,652.000000,extended,lora,60 +on8,0,0,24,1,0,240,1540.000000,64,0,14609.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,64,0,61448.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,900,1540.000000,64,0,56548.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,543,1543.000000,64,0,34917.000000,642.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,300,1540.000000,65,0,19864.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1080,1540.000000,65,0,68548.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,63,1543.000000,65,0,6528.000000,642.800000,extended,lora,60 +on0,1,7,24,0,0,0,2259.000000,65,0,-1.000000,1082.800000,extended,lora,60 +on11,0,0,24,1,0,221,1581.000000,65,0,14263.000000,658.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,900,1540.000000,65,0,54677.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,480,1540.000000,65,0,31740.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,610,1550.000000,65,0,39681.000000,645.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,60,1540.000000,66,0,6790.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,240,1540.000000,66,0,15602.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,421,1541.000000,66,0,27679.000000,642.000000,extended,lora,60 +on5,0,0,24,1,0,125,1545.000000,66,0,7778.000000,643.600000,extended,lora,60 +on3,0,0,24,1,0,1375,1595.000000,66,0,82472.000000,663.600000,extended,lora,60 +on8,0,0,24,1,0,1225,1565.000000,66,0,75143.000000,651.600000,extended,lora,60 +on4,0,0,24,1,0,1392,1552.000000,66,0,85724.000000,646.400000,extended,lora,60 +on0,1,8,24,0,0,0,2353.000000,66,0,-1.000000,1146.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,900,1540.000000,66,0,57423.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1153,1553.000000,67,0,69645.000000,646.800000,extended,lora,60 +on3,0,0,24,1,0,43,1583.000000,67,0,2956.000000,658.800000,extended,lora,60 +on5,0,0,24,1,0,960,1540.000000,67,0,58748.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2280.000000,67,0,-1.000000,1091.200000,extended,lora,60 +on6,0,0,24,1,0,300,1540.000000,67,0,20213.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,67,0,6170.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,540,1540.000000,67,0,33237.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,167,1587.000000,67,0,9825.000000,660.400000,extended,lora,60 +on7,0,0,24,1,0,0,1540.000000,68,0,1179.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,500,1560.000000,68,0,32397.000000,649.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,967,1547.000000,68,0,58670.000000,644.400000,extended,lora,60 +on1,0,0,24,1,0,1200,1540.000000,68,0,75260.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1260,1540.000000,68,0,78149.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2185.000000,68,0,-1.000000,1053.200000,extended,lora,60 +on11,0,0,24,1,0,390,1570.000000,68,0,22286.000000,653.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1340,1560.000000,68,0,82566.000000,649.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1344,1564.000000,69,0,79473.000000,651.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,319,1559.000000,69,0,19553.000000,649.200000,extended,lora,60 +on0,1,4,24,0,0,0,1862.000000,69,0,-1.000000,847.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,240,1540.000000,69,0,18133.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,471,1591.000000,69,0,28385.000000,662.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,540,1540.000000,70,0,33929.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,307,1547.000000,70,0,18544.000000,644.400000,extended,lora,60 +on9,0,0,24,1,0,660,1540.000000,70,0,42535.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,70,0,26662.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1356,1576.000000,70,0,81752.000000,656.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2194.000000,70,0,-1.000000,1056.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,787,1547.000000,70,0,47188.000000,644.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,35,1575.000000,70,0,213.000000,655.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,213,1573.000000,71,0,13428.000000,654.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,60,1540.000000,71,0,6291.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,480,1540.000000,71,0,32237.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1260,1540.000000,71,0,78578.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2022.000000,71,0,-1.000000,936.800000,extended,lora,60 +on3,0,0,24,1,0,540,1540.000000,71,0,35332.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,853,1553.000000,72,0,52487.000000,646.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1262,1542.000000,72,0,77777.000000,642.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,385,1565.000000,72,0,23723.000000,651.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,600,1540.000000,72,0,36279.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1859.000000,72,0,-1.000000,846.000000,extended,lora,60 +on5,0,0,24,1,0,1260,1540.000000,73,0,77569.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,0,1540.000000,73,0,1038.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,174,1594.000000,73,0,8848.000000,663.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1020,1540.000000,73,0,63372.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2027.000000,73,0,-1.000000,938.800000,extended,lora,60 +on9,0,0,24,1,0,1353,1573.000000,73,0,80946.000000,654.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,16,1556.000000,74,0,1096.000000,648.000000,extended,lora,60 +on1,0,0,24,1,0,447,1567.000000,74,0,25737.000000,652.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2150.000000,74,0,-1.000000,1013.600000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,74,0,70766.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1020,1540.000000,74,0,63971.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,960,1540.000000,74,0,58427.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,360,1540.000000,74,0,23361.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1320,1540.000000,75,0,79383.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,1220,1560.000000,75,0,73024.000000,649.600000,extended,lora,60 +on4,0,0,24,1,0,995,1575.000000,75,0,60283.000000,655.600000,extended,lora,60 +on12,0,0,24,1,0,300,1540.000000,75,0,19047.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,479,1599.000000,75,0,26387.000000,665.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,790,1550.000000,75,0,47763.000000,645.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,120,1540.000000,75,0,9497.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,600,1540.000000,75,0,39197.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2358.000000,75,0,-1.000000,1148.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,85,1565.000000,76,0,4326.000000,651.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1139,1599.000000,76,0,67470.000000,665.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,993,1573.000000,76,0,58106.000000,654.800000,extended,lora,60 +on1,0,0,24,1,0,1075,1595.000000,76,0,62288.000000,663.600000,extended,lora,60 +on9,0,0,24,1,0,574,1574.000000,76,0,35295.000000,655.200000,extended,lora,60 +on0,1,6,24,0,0,0,2040.000000,76,0,-1.000000,969.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,661,1541.000000,76,0,40483.000000,642.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,8,1548.000000,77,0,3088.000000,644.800000,extended,lora,60 +on10,0,0,24,1,0,60,1540.000000,77,0,5522.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1320,1540.000000,77,0,79875.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1141,1541.000000,77,0,69393.000000,642.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1385,1545.000000,77,0,86291.000000,643.600000,extended,lora,60 +on0,1,5,24,0,0,0,1990.000000,77,0,-1.000000,924.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,913,1553.000000,78,0,57535.000000,646.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,757,1577.000000,78,0,45873.000000,656.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1260,1540.000000,78,0,76082.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,627,1567.000000,78,0,37717.000000,652.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1424,1584.000000,78,0,86409.000000,659.200000,extended,lora,60 +on0,1,5,24,0,0,0,1970.000000,78,0,-1.000000,916.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,120,1540.000000,79,0,7864.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,660,1540.000000,79,0,42698.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,724,1544.000000,79,0,45805.000000,643.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1200,1540.000000,79,0,73161.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1911.000000,79,0,-1.000000,866.800000,extended,lora,60 +on12,0,0,24,1,0,420,1540.000000,80,0,27447.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,619,1559.000000,80,0,37108.000000,649.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2325.000000,80,0,-1.000000,1109.200000,extended,lora,60 +on2,0,0,24,1,0,180,1540.000000,80,0,11794.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1200,1540.000000,80,0,72853.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,152,1572.000000,80,0,10875.000000,654.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1140,1540.000000,80,0,68772.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,480,1540.000000,80,0,32326.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,310,1550.000000,81,0,19951.000000,645.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,630,1570.000000,81,0,36353.000000,653.600000,extended,lora,60 +on8,0,0,24,1,0,154,1574.000000,81,0,9832.000000,655.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,extended,lora,60 +on9,0,0,24,1,0,382,1562.000000,81,0,22299.000000,650.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1940.000000,81,0,-1.000000,904.000000,extended,lora,60 +on2,0,0,24,1,0,1291,1571.000000,81,0,77202.000000,654.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,446,1566.000000,82,0,25701.000000,652.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,776,1596.000000,82,0,43483.000000,664.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,705,1585.000000,82,0,41173.000000,659.600000,extended,lora,60 +on4,0,0,24,1,0,1200,1540.000000,82,0,75518.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,180,1540.000000,82,0,13174.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2045.000000,82,0,-1.000000,971.600000,extended,lora,60 +on2,0,0,24,1,0,275,1575.000000,82,0,17368.000000,655.600000,extended,lora,60 +on6,0,0,24,1,0,84,1564.000000,83,0,5361.000000,651.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1080,1540.000000,83,0,66093.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,720,1540.000000,83,0,45649.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1038,1558.000000,83,0,62676.000000,648.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,18,1558.000000,83,0,3329.000000,648.800000,extended,lora,60 +on4,0,0,24,1,0,1320,1540.000000,83,0,80291.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1380,1540.000000,83,0,85714.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2398.000000,83,0,-1.000000,1164.000000,extended,lora,60 +on5,0,0,24,1,0,120,1540.000000,83,0,8646.000000,641.600000,extended,lora,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,900,1540.000000,84,0,56413.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,659,1599.000000,84,0,38157.000000,665.200000,extended,lora,60 +on2,0,0,24,1,0,340,1580.000000,84,0,21253.000000,657.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,442,1562.000000,84,0,28509.000000,650.400000,extended,lora,60 +on4,0,0,24,1,0,780,1540.000000,84,0,49218.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,60,1540.000000,84,0,5152.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2148.000000,84,0,-1.000000,1012.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,596,1596.000000,85,0,35915.000000,664.000000,extended,lora,60 +on8,0,0,24,1,0,669,1549.000000,85,0,41411.000000,645.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1071,1591.000000,85,0,64411.000000,662.000000,extended,lora,60 +on0,1,4,24,0,0,0,1890.000000,85,0,-1.000000,858.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1320,1540.000000,85,0,81684.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on0,1,8,24,0,0,0,2337.000000,86,0,-1.000000,1139.600000,extended,lora,60 +on2,0,0,24,1,0,660,1540.000000,86,0,40979.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,425,1545.000000,86,0,25812.000000,643.600000,extended,lora,60 +on8,0,0,24,1,0,831,1591.000000,86,0,47165.000000,662.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1320,1540.000000,86,0,81630.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,588,1588.000000,86,0,35983.000000,660.800000,extended,lora,60 +on5,0,0,24,1,0,262,1562.000000,86,0,15065.000000,650.400000,extended,lora,60 +on3,0,0,24,1,0,997,1577.000000,86,0,60758.000000,656.400000,extended,lora,60 +on11,0,0,24,1,0,368,1548.000000,86,0,22169.000000,644.800000,extended,lora,60 +on10,0,0,24,1,0,1161,1561.000000,87,0,69831.000000,650.000000,extended,lora,60 +on1,0,0,24,1,0,932,1572.000000,87,0,55786.000000,654.400000,extended,lora,60 +on4,0,0,24,1,0,1397,1557.000000,87,0,83709.000000,648.400000,extended,lora,60 +on0,1,10,24,0,0,0,2597.000000,87,0,-1.000000,1294.800000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,87,0,40173.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,720,1540.000000,87,0,43697.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,60,1540.000000,87,0,5605.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,322,1562.000000,87,0,18975.000000,650.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,58,1598.000000,87,0,757.000000,664.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,384,1564.000000,87,0,24145.000000,651.200000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,87,0,36144.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,0,1540.000000,88,0,3470.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1986.000000,88,0,-1.000000,922.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,379,1559.000000,88,0,21925.000000,649.200000,extended,lora,60 +on2,0,0,24,1,0,192,1552.000000,88,0,13525.000000,646.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,480,1540.000000,88,0,29306.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,88,0,33564.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,120,1540.000000,89,0,7570.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,24,1564.000000,89,0,1383.000000,651.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,89,0,4017.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,960,1540.000000,89,0,61085.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1935.000000,89,0,-1.000000,876.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,510,1570.000000,90,0,29527.000000,653.600000,extended,lora,60 +on8,0,0,24,1,0,1380,1540.000000,90,0,82976.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1019,1599.000000,90,0,60616.000000,665.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1264,1544.000000,90,0,78489.000000,643.200000,extended,lora,60 +on4,0,0,24,1,0,360,1540.000000,90,0,25229.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1997.000000,90,0,-1.000000,926.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1320,1540.000000,91,0,81897.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2042.000000,91,0,-1.000000,944.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,240,1540.000000,91,0,17528.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,420,1540.000000,91,0,26911.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,354,1594.000000,91,0,18960.000000,663.200000,extended,lora,60 +on8,0,0,24,1,0,1140,1540.000000,91,0,70830.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,480,1540.000000,92,0,31031.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1988.000000,92,0,-1.000000,897.600000,extended,lora,60 +on11,0,0,24,1,0,634,1574.000000,92,0,36862.000000,655.200000,extended,lora,60 +on12,0,0,24,1,0,60,1540.000000,92,0,6157.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1020,1540.000000,92,0,62221.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,600,1540.000000,93,0,39402.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,508,1568.000000,93,0,32191.000000,652.800000,extended,lora,60 +on7,0,0,24,1,0,120,1540.000000,93,0,9294.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,244,1544.000000,93,0,15213.000000,643.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,60,1540.000000,93,0,5752.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,900,1540.000000,93,0,56116.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2241.000000,93,0,-1.000000,1075.600000,extended,lora,60 +on8,0,0,24,1,0,1001,1581.000000,93,0,60847.000000,658.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,780,1540.000000,94,0,49018.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,349,1589.000000,94,0,19496.000000,661.200000,extended,lora,60 +on2,0,0,24,1,0,629,1569.000000,94,0,37143.000000,653.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1300,1580.000000,94,0,78251.000000,657.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1866.000000,94,0,-1.000000,848.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,326,1566.000000,95,0,20321.000000,652.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,540,1540.000000,95,0,35813.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,1432,1592.000000,95,0,84479.000000,662.400000,extended,lora,60 +on0,1,8,24,0,0,0,2327.000000,95,0,-1.000000,1135.600000,extended,lora,60 +on4,0,0,24,1,0,0,1540.000000,95,0,193.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1020,1540.000000,95,0,64658.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,360,1540.000000,95,0,22358.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1003,1583.000000,95,0,59357.000000,658.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,96,1576.000000,95,0,5792.000000,656.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,720,1540.000000,96,0,44553.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1203,1543.000000,96,0,74555.000000,642.800000,extended,lora,60 +on4,0,0,24,1,0,1095,1555.000000,96,0,67214.000000,647.600000,extended,lora,60 +on7,0,0,24,1,0,599,1599.000000,96,0,36201.000000,665.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,96,0,2503.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,1975.000000,96,0,-1.000000,918.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1196,1596.000000,97,0,70534.000000,664.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,420,1540.000000,97,0,28739.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,298,1598.000000,97,0,17979.000000,664.800000,extended,lora,60 +on8,0,0,24,1,0,1080,1540.000000,97,0,66592.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,60,1540.000000,97,0,5878.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2207.000000,97,0,-1.000000,1062.000000,extended,lora,60 +on7,0,0,24,1,0,56,1596.000000,97,0,2294.000000,664.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,753,1573.000000,97,0,43781.000000,654.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1260,1540.000000,98,0,76634.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,786,1546.000000,98,0,47307.000000,644.000000,extended,lora,60 +on11,0,0,24,1,0,1020,1540.000000,98,0,62486.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1236,1576.000000,98,0,72539.000000,656.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1382,1542.000000,98,0,85110.000000,642.400000,extended,lora,60 +on0,1,7,24,0,0,0,2275.000000,98,0,-1.000000,1089.200000,extended,lora,60 +on1,0,0,24,1,0,983,1563.000000,98,0,60202.000000,650.800000,extended,lora,60 +on3,0,0,24,1,0,600,1540.000000,98,0,37596.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,668,1548.000000,99,0,42193.000000,644.800000,extended,lora,60 +on8,0,0,24,1,0,0,1540.000000,99,0,962.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,83,1563.000000,99,0,5310.000000,650.800000,extended,lora,60 +on2,0,0,24,1,0,780,1540.000000,99,0,47211.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,180,1540.000000,99,0,13132.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,240,1540.000000,99,0,17161.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,489,1549.000000,99,0,31190.000000,645.200000,extended,lora,60 +on3,0,0,24,1,0,420,1540.000000,99,0,26276.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,lora,60 +on0,1,9,24,0,0,0,2470.000000,99,0,-1.000000,1218.400000,extended,lora,60 +on9,0,0,24,1,0,647,1587.000000,99,0,39342.000000,660.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1340,1560.000000,100,0,80918.000000,649.600000,extended,lora,60 +on2,0,0,24,1,0,920,1560.000000,100,0,55156.000000,649.600000,extended,lora,60 +on8,0,0,24,1,0,600,1540.000000,100,0,37797.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1979.000000,100,0,-1.000000,919.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,195,1555.000000,100,0,12932.000000,647.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,129,1549.000000,100,0,8955.000000,645.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,103,1583.000000,101,0,5258.000000,658.800000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,101,0,83328.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1931.000000,101,0,-1.000000,874.800000,extended,lora,60 +on9,0,0,24,1,0,207,1567.000000,101,0,12903.000000,652.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,960,1540.000000,101,0,61276.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,874,1574.000000,102,0,51521.000000,655.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,737,1557.000000,102,0,46152.000000,648.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1740.000000,102,0,-1.000000,772.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1282,1562.000000,102,0,76903.000000,650.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,728,1548.000000,103,0,46924.000000,644.800000,extended,lora,60 +on5,0,0,24,1,0,382,1562.000000,103,0,22507.000000,650.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2115.000000,103,0,-1.000000,999.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1200,1540.000000,103,0,75730.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,600,1540.000000,103,0,38802.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,527,1587.000000,103,0,31296.000000,660.400000,extended,lora,60 +on11,0,0,24,1,0,1367,1587.000000,103,0,79782.000000,660.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,407,1587.000000,104,0,24705.000000,660.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2056.000000,104,0,-1.000000,976.000000,extended,lora,60 +on8,0,0,24,1,0,262,1562.000000,104,0,15460.000000,650.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1020,1540.000000,104,0,63805.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,904,1544.000000,104,0,56034.000000,643.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,235,1595.000000,104,0,12512.000000,663.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,833,1593.000000,104,0,47369.000000,662.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,480,1540.000000,105,0,29015.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,180,1540.000000,105,0,12782.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1380,1540.000000,105,0,85035.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1984.000000,105,0,-1.000000,896.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1361,1581.000000,105,0,80549.000000,658.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,780,1540.000000,106,0,49312.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,240,1540.000000,106,0,16976.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1069,1589.000000,106,0,63081.000000,661.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,35,1575.000000,106,0,3367.000000,655.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1140,1540.000000,106,0,72046.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,86,1566.000000,106,0,5697.000000,652.000000,extended,lora,60 +on10,0,0,24,1,0,1421,1581.000000,106,0,86488.000000,658.000000,extended,lora,60 +on0,1,7,24,0,0,0,2235.000000,106,0,-1.000000,1073.200000,extended,lora,60 +on1,0,0,24,1,0,300,1540.000000,107,0,18648.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1873.000000,107,0,-1.000000,851.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,494,1554.000000,107,0,30657.000000,647.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1351,1571.000000,107,0,79877.000000,654.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1175,1575.000000,107,0,69262.000000,655.600000,extended,lora,60 +on7,0,0,24,1,0,420,1540.000000,108,0,26098.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1885.000000,108,0,-1.000000,856.400000,extended,lora,60 +on10,0,0,24,1,0,144,1564.000000,108,0,10065.000000,651.200000,extended,lora,60 +on9,0,0,24,1,0,772,1592.000000,108,0,45913.000000,662.400000,extended,lora,60 +on8,0,0,24,1,0,366,1546.000000,108,0,24713.000000,644.000000,extended,lora,60 +on7,0,0,24,1,0,335,1575.000000,109,0,20282.000000,655.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2000.000000,109,0,-1.000000,928.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,109,0,7050.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,625,1565.000000,109,0,38785.000000,651.600000,extended,lora,60 +on3,0,0,24,1,0,120,1540.000000,109,0,8474.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,239,1599.000000,109,0,11942.000000,665.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2138.000000,110,0,-1.000000,1008.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,476,1596.000000,110,0,26631.000000,664.000000,extended,lora,60 +on3,0,0,24,1,0,27,1567.000000,110,0,2405.000000,652.400000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,110,0,43876.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,480,1540.000000,110,0,31952.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,960,1540.000000,110,0,60404.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,62,1542.000000,110,0,6284.000000,642.400000,extended,lora,60 +on0,1,6,24,0,0,0,2082.000000,111,0,-1.000000,986.400000,extended,lora,60 +on4,0,0,24,1,0,480,1540.000000,111,0,30275.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,400,1580.000000,111,0,24368.000000,657.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,798,1558.000000,111,0,47620.000000,648.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1052,1572.000000,111,0,62831.000000,654.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,720,1540.000000,111,0,44464.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,966,1546.000000,111,0,60385.000000,644.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1397,1557.000000,112,0,82984.000000,648.400000,extended,lora,60 +on0,1,7,24,0,0,0,2233.000000,112,0,-1.000000,1072.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,37,1577.000000,112,0,1416.000000,656.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,112,0,40078.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1163,1563.000000,112,0,71901.000000,650.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,815,1575.000000,112,0,48410.000000,655.600000,extended,lora,60 +on5,0,0,24,1,0,1289,1569.000000,112,0,77413.000000,653.200000,extended,lora,60 +on7,0,0,24,1,0,300,1540.000000,112,0,19115.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,900,1540.000000,113,0,57487.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,113,0,27998.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1811.000000,113,0,-1.000000,801.200000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,788,1548.000000,113,0,50166.000000,644.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,680,1560.000000,114,0,41701.000000,649.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,114,0,64484.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,114,0,22406.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,114,0,46661.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,844,1544.000000,114,0,52350.000000,643.200000,extended,lora,60 +on1,0,0,24,1,0,780,1540.000000,114,0,50396.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2113.000000,114,0,-1.000000,998.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2087.000000,115,0,-1.000000,988.400000,extended,lora,60 +on10,0,0,24,1,0,531,1591.000000,115,0,31724.000000,662.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,935,1575.000000,115,0,57649.000000,655.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,600,1540.000000,115,0,36760.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,180,1540.000000,115,0,13832.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,240,1540.000000,115,0,16346.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,547,1547.000000,115,0,32582.000000,644.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1260,1540.000000,116,0,75853.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2199.000000,116,0,-1.000000,1033.200000,extended,lora,60 +on2,0,0,24,1,0,540,1540.000000,116,0,32842.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,1080,1540.000000,116,0,67253.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,607,1547.000000,116,0,39501.000000,644.400000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,660,1540.000000,116,0,42878.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,94,1574.000000,116,0,7016.000000,655.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,900,1540.000000,117,0,55566.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,60,1540.000000,117,0,4235.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1957.000000,117,0,-1.000000,885.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1020,1540.000000,117,0,62752.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,117,0,22443.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1212,1552.000000,118,0,73923.000000,646.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1327,1547.000000,118,0,82118.000000,644.400000,extended,lora,60 +on11,0,0,24,1,0,480,1540.000000,118,0,31657.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,180,1540.000000,118,0,12198.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1414,1574.000000,118,0,86137.000000,655.200000,extended,lora,60 +on0,1,7,24,0,0,0,2184.000000,118,0,-1.000000,1052.800000,extended,lora,60 +on5,0,0,24,1,0,360,1540.000000,118,0,24644.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,540,1540.000000,118,0,35640.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1218,1558.000000,119,0,75621.000000,648.800000,extended,lora,60 +on8,0,0,24,1,0,1020,1540.000000,119,0,64236.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,300,1540.000000,119,0,18277.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,360,1540.000000,119,0,23405.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,900,1540.000000,119,0,57559.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,39,1579.000000,119,0,2491.000000,657.200000,extended,lora,60 +on7,0,0,24,1,0,1319,1599.000000,119,0,77509.000000,665.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,824,1584.000000,119,0,47442.000000,659.200000,extended,lora,60 +on11,0,0,24,1,0,1380,1540.000000,119,0,85544.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2504.000000,119,0,-1.000000,1232.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,607,1547.000000,120,0,37693.000000,644.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,844,1544.000000,120,0,53482.000000,643.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,420,1540.000000,120,0,28285.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,491,1551.000000,120,0,32014.000000,646.000000,extended,lora,60 +on6,0,0,24,1,0,780,1540.000000,120,0,49169.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,51,1591.000000,120,0,1415.000000,662.000000,extended,lora,60 +on0,1,6,24,0,0,0,2093.000000,120,0,-1.000000,990.800000,extended,lora,60 +on8,0,0,24,1,0,240,1540.000000,121,0,16662.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,539,1599.000000,121,0,32395.000000,665.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1329,1549.000000,121,0,80303.000000,645.200000,extended,lora,60 +on3,0,0,24,1,0,660,1540.000000,121,0,39851.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,120,1540.000000,121,0,10504.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,778,1598.000000,121,0,47009.000000,664.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2191.000000,121,0,-1.000000,1055.600000,extended,lora,60 +on4,0,0,24,1,0,1265,1545.000000,121,0,76764.000000,643.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1140,1540.000000,122,0,68952.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,540,1540.000000,122,0,33762.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,122,0,83936.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2134.000000,122,0,-1.000000,1007.200000,extended,lora,60 +on5,0,0,24,1,0,322,1562.000000,122,0,20180.000000,650.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,833,1593.000000,122,0,48122.000000,662.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,120,1540.000000,122,0,8198.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,318,1558.000000,123,0,20999.000000,648.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,240,1540.000000,123,0,16426.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,795,1555.000000,123,0,48152.000000,647.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,535,1595.000000,123,0,30158.000000,663.600000,extended,lora,60 +on10,0,0,24,1,0,431,1551.000000,123,0,26934.000000,646.000000,extended,lora,60 +on0,1,5,24,0,0,0,1975.000000,123,0,-1.000000,918.000000,extended,lora,60 +on1,0,0,24,1,0,1131,1591.000000,124,0,66881.000000,662.000000,extended,lora,60 +on2,0,0,24,1,0,720,1540.000000,124,0,44151.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1278,1558.000000,124,0,77747.000000,648.800000,extended,lora,60 +on5,0,0,24,1,0,600,1540.000000,124,0,37213.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,480,1540.000000,124,0,30307.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,563,1563.000000,124,0,33545.000000,650.800000,extended,lora,60 +on8,0,0,24,1,0,0,1540.000000,124,0,3207.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,300,1540.000000,124,0,19715.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1380,1540.000000,124,0,85950.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2475.000000,124,0,-1.000000,1220.400000,extended,lora,60 +on6,0,0,24,1,0,32,1572.000000,125,0,1301.000000,654.400000,extended,lora,60 +on2,0,0,24,1,0,212,1572.000000,125,0,14006.000000,654.400000,extended,lora,60 +on8,0,0,24,1,0,809,1569.000000,125,0,49080.000000,653.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,900,1540.000000,125,0,55223.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,600,1540.000000,125,0,37750.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2012.000000,125,0,-1.000000,932.800000,extended,lora,60 +on12,0,0,24,1,0,278,1578.000000,126,0,16462.000000,656.800000,extended,lora,60 +on9,0,0,24,1,0,424,1544.000000,126,0,25788.000000,643.200000,extended,lora,60 +on11,0,0,24,1,0,799,1559.000000,126,0,48438.000000,649.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,180,1540.000000,126,0,11707.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2396.000000,126,0,-1.000000,1188.800000,extended,lora,60 +on6,0,0,24,1,0,607,1547.000000,126,0,36442.000000,644.400000,extended,lora,60 +on2,0,0,24,1,0,327,1567.000000,126,0,19265.000000,652.400000,extended,lora,60 +on3,0,0,24,1,0,130,1550.000000,126,0,8597.000000,645.600000,extended,lora,60 +on5,0,0,24,1,0,660,1540.000000,126,0,43107.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1106,1566.000000,126,0,67618.000000,652.000000,extended,lora,60 +on4,0,0,24,1,0,0,1540.000000,127,0,1534.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2097.000000,127,0,-1.000000,992.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,411,1591.000000,127,0,22101.000000,662.000000,extended,lora,60 +on11,0,0,24,1,0,960,1540.000000,127,0,58683.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1320,1540.000000,127,0,79714.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,554,1554.000000,127,0,32852.000000,647.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,294,1594.000000,127,0,15558.000000,663.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,614,1554.000000,128,0,39153.000000,647.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1324,1544.000000,128,0,80491.000000,643.200000,extended,lora,60 +on4,0,0,24,1,0,960,1540.000000,128,0,61075.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,209,1569.000000,128,0,13011.000000,653.200000,extended,lora,60 +on2,0,0,24,1,0,303,1543.000000,128,0,19641.000000,642.800000,extended,lora,60 +on12,0,0,24,1,0,755,1575.000000,128,0,45890.000000,655.600000,extended,lora,60 +on0,1,6,24,0,0,0,2050.000000,128,0,-1.000000,973.600000,extended,lora,60 +on1,0,0,24,1,0,276,1576.000000,129,0,18169.000000,656.000000,extended,lora,60 +on0,1,7,24,0,0,0,2140.000000,129,0,-1.000000,1035.200000,extended,lora,60 +on4,0,0,24,1,0,712,1592.000000,129,0,41308.000000,662.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1269,1549.000000,129,0,78400.000000,645.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,779,1599.000000,129,0,45420.000000,665.200000,extended,lora,60 +on3,0,0,24,1,0,945,1585.000000,129,0,57208.000000,659.600000,extended,lora,60 +on10,0,0,24,1,0,16,1556.000000,129,0,2497.000000,648.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1115,1575.000000,129,0,65722.000000,655.600000,extended,lora,60 +on8,0,0,24,1,0,686,1566.000000,130,0,40645.000000,652.000000,extended,lora,60 +on3,0,0,24,1,0,360,1540.000000,130,0,22017.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,322,1562.000000,130,0,18609.000000,650.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,794,1554.000000,130,0,47574.000000,647.200000,extended,lora,60 +on4,0,0,24,1,0,594,1594.000000,130,0,33473.000000,663.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,179,1599.000000,130,0,8951.000000,665.200000,extended,lora,60 +on0,1,8,24,0,0,0,2327.000000,130,0,-1.000000,1135.600000,extended,lora,60 +on1,0,0,24,1,0,862,1562.000000,130,0,51700.000000,650.400000,extended,lora,60 +on2,0,0,24,1,0,1200,1540.000000,130,0,72165.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,987,1567.000000,131,0,60618.000000,652.400000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,131,0,34704.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,720,1540.000000,131,0,44344.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,98,1578.000000,131,0,6837.000000,656.800000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,131,0,24429.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2045.000000,131,0,-1.000000,946.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,277,1577.000000,132,0,16990.000000,656.400000,extended,lora,60 +on4,0,0,24,1,0,1380,1540.000000,132,0,83416.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2091.000000,132,0,-1.000000,990.000000,extended,lora,60 +on11,0,0,24,1,0,634,1574.000000,132,0,37001.000000,655.200000,extended,lora,60 +on7,0,0,24,1,0,60,1540.000000,132,0,5731.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1031,1551.000000,132,0,64222.000000,646.000000,extended,lora,60 +on10,0,0,24,1,0,159,1579.000000,132,0,9345.000000,657.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,58,1598.000000,133,0,978.000000,664.800000,extended,lora,60 +on10,0,0,24,1,0,540,1540.000000,133,0,35853.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,117,1597.000000,133,0,6215.000000,664.400000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,120,1540.000000,133,0,7543.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,480,1540.000000,133,0,29521.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,420,1540.000000,133,0,26818.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2333.000000,133,0,-1.000000,1138.000000,extended,lora,60 +on9,0,0,24,1,0,865,1565.000000,133,0,53770.000000,651.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,634,1574.000000,133,0,36622.000000,655.200000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,840,1540.000000,134,0,53753.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,120,1540.000000,134,0,10491.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,710,1590.000000,134,0,41938.000000,661.600000,extended,lora,60 +on5,0,0,24,1,0,1200,1540.000000,134,0,73350.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1109,1569.000000,134,0,68401.000000,653.200000,extended,lora,60 +on12,0,0,24,1,0,264,1564.000000,134,0,15346.000000,651.200000,extended,lora,60 +on8,0,0,24,1,0,720,1540.000000,134,0,44705.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,600,1540.000000,134,0,36540.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2379.000000,134,0,-1.000000,1156.400000,extended,lora,60 +on12,0,0,24,1,0,45,1585.000000,135,0,3729.000000,659.600000,extended,lora,60 +on0,1,9,24,0,0,0,2506.000000,135,0,-1.000000,1232.800000,extended,lora,60 +on6,0,0,24,1,0,913,1553.000000,135,0,56567.000000,646.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1020,1540.000000,135,0,61956.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1228,1568.000000,135,0,74368.000000,652.800000,extended,lora,60 +on7,0,0,24,1,0,240,1540.000000,135,0,14596.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,840,1540.000000,135,0,51287.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,831,1591.000000,135,0,50498.000000,662.000000,extended,lora,60 +on8,0,0,24,1,0,420,1540.000000,135,0,26577.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,480,1540.000000,135,0,30009.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,0,1540.000000,136,0,1590.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,649,1589.000000,136,0,37063.000000,661.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,136,0,14679.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,720,1540.000000,136,0,44662.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,86,1566.000000,136,0,7360.000000,652.000000,extended,lora,60 +on4,0,0,24,1,0,989,1569.000000,136,0,59380.000000,653.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2158.000000,136,0,-1.000000,1016.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,137,0,64126.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,660,1540.000000,137,0,41037.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,900,1540.000000,137,0,55735.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,610,1550.000000,137,0,38462.000000,645.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,360,1540.000000,137,0,23831.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,120,1540.000000,137,0,9800.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1380,1540.000000,137,0,85427.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2642.000000,137,0,-1.000000,1287.200000,extended,lora,60 +on12,0,0,24,1,0,240,1540.000000,137,0,15123.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,420,1540.000000,137,0,28578.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,138,0,35978.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,671,1551.000000,138,0,40839.000000,646.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,84,1564.000000,138,0,6167.000000,651.200000,extended,lora,60 +on4,0,0,24,1,0,732,1552.000000,138,0,45977.000000,646.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1844.000000,138,0,-1.000000,840.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1200,1540.000000,139,0,72269.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1380,1540.000000,139,0,83499.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2290.000000,139,0,-1.000000,1095.200000,extended,lora,60 +on7,0,0,24,1,0,37,1577.000000,139,0,450.000000,656.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,977,1557.000000,139,0,58266.000000,648.400000,extended,lora,60 +on5,0,0,24,1,0,1140,1540.000000,139,0,71995.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,282,1582.000000,139,0,15588.000000,658.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,360,1540.000000,139,0,24787.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1080,1540.000000,140,0,66205.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,274,1574.000000,140,0,17423.000000,655.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,600,1540.000000,140,0,36842.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,120,1540.000000,140,0,10590.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,76,1556.000000,140,0,7204.000000,648.000000,extended,lora,60 +on0,1,6,24,0,0,0,2119.000000,140,0,-1.000000,1001.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,713,1593.000000,140,0,41324.000000,662.800000,extended,lora,60 +on3,0,0,24,1,0,300,1540.000000,141,0,21665.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,599,1599.000000,141,0,34372.000000,665.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1890.000000,141,0,-1.000000,858.400000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,974,1554.000000,141,0,58571.000000,647.200000,extended,lora,60 +on11,0,0,24,1,0,120,1540.000000,141,0,10199.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,720,1540.000000,142,0,46831.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,924,1564.000000,142,0,55539.000000,651.200000,extended,lora,60 +on3,0,0,24,1,0,95,1575.000000,142,0,6043.000000,655.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,300,1540.000000,142,0,20269.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,900,1540.000000,142,0,54192.000000,641.600000,extended,lora,60 +on0,1,5,24,0,0,0,2024.000000,142,0,-1.000000,937.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,300,1540.000000,143,0,20510.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,360,1540.000000,143,0,23867.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on0,1,7,24,0,0,0,2285.000000,143,0,-1.000000,1093.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,498,1558.000000,143,0,32536.000000,648.800000,extended,lora,60 +on6,0,0,24,1,0,1200,1540.000000,143,0,72527.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,660,1540.000000,143,0,41643.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,600,1540.000000,143,0,37569.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1031,1551.000000,143,0,61589.000000,646.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,42,1582.000000,144,0,673.000000,658.400000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1883.000000,144,0,-1.000000,855.600000,extended,lora,60 +on10,0,0,24,1,0,1310,1590.000000,144,0,76900.000000,661.600000,extended,lora,60 +on7,0,0,24,1,0,600,1540.000000,144,0,38708.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,780,1540.000000,144,0,50067.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,145,0,43733.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,32,1572.000000,145,0,2846.000000,654.400000,extended,lora,60 +on12,0,0,24,1,0,1253,1593.000000,145,0,74222.000000,662.800000,extended,lora,60 +on8,0,0,24,1,0,300,1540.000000,145,0,19186.000000,641.600000,extended,lora,60 +on0,1,10,24,0,0,0,2495.000000,145,0,-1.000000,1254.000000,extended,lora,60 +on5,0,0,24,1,0,908,1548.000000,145,0,56236.000000,644.800000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,539,1599.000000,145,0,31936.000000,665.200000,extended,lora,60 +on4,0,0,24,1,0,1365,1585.000000,145,0,80342.000000,659.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,433,1553.000000,145,0,25601.000000,646.800000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,145,0,61720.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1185,1585.000000,145,0,71671.000000,659.600000,extended,lora,60 +on0,1,7,24,0,0,0,2260.000000,146,0,-1.000000,1083.200000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,146,0,29955.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,146,0,17478.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1080,1540.000000,146,0,66992.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1341,1561.000000,146,0,79888.000000,650.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,360,1540.000000,146,0,24174.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,220,1580.000000,146,0,11223.000000,657.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1076,1596.000000,146,0,62158.000000,664.000000,extended,lora,60 +on4,0,0,24,1,0,969,1549.000000,147,0,58936.000000,645.200000,extended,lora,60 +on5,0,0,24,1,0,455,1575.000000,147,0,26392.000000,655.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,840,1540.000000,147,0,51744.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,1200,1540.000000,147,0,75274.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,609,1549.000000,147,0,36979.000000,645.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2015.000000,147,0,-1.000000,934.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,611,1551.000000,148,0,38916.000000,646.000000,extended,lora,60 +on10,0,0,24,1,0,180,1540.000000,148,0,12220.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,960,1540.000000,148,0,59203.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,900,1540.000000,148,0,55116.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,468,1588.000000,148,0,27507.000000,660.800000,extended,lora,60 +on0,1,7,24,0,0,0,2217.000000,148,0,-1.000000,1066.000000,extended,lora,60 +on12,0,0,24,1,0,52,1592.000000,148,0,1189.000000,662.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,743,1563.000000,148,0,44648.000000,650.800000,extended,lora,60 +on4,0,0,24,1,0,629,1569.000000,149,0,39381.000000,653.200000,extended,lora,60 +on2,0,0,24,1,0,1379,1599.000000,149,0,81426.000000,665.200000,extended,lora,60 +on6,0,0,24,1,0,538,1598.000000,149,0,29906.000000,664.800000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,285,1585.000000,149,0,15262.000000,659.600000,extended,lora,60 +on0,1,7,24,0,0,0,2143.000000,149,0,-1.000000,1036.400000,extended,lora,60 +on10,0,0,24,1,0,1020,1540.000000,149,0,64360.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,18,1558.000000,149,0,1901.000000,648.800000,extended,lora,60 +on9,0,0,24,1,0,467,1587.000000,149,0,27074.000000,660.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1178,1578.000000,150,0,68823.000000,656.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,19,1559.000000,150,0,849.000000,649.200000,extended,lora,60 +on2,0,0,24,1,0,455,1575.000000,150,0,27227.000000,655.600000,extended,lora,60 +on6,0,0,24,1,0,876,1576.000000,150,0,53210.000000,656.000000,extended,lora,60 +on0,1,7,24,0,0,0,2185.000000,150,0,-1.000000,1053.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,180,1540.000000,150,0,12219.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,551,1551.000000,150,0,35451.000000,646.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,120,1540.000000,150,0,9595.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,780,1540.000000,151,0,48765.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,583,1583.000000,151,0,34361.000000,658.800000,extended,lora,60 +on11,0,0,24,1,0,1080,1540.000000,151,0,65679.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,382,1562.000000,151,0,23470.000000,650.400000,extended,lora,60 +on2,0,0,24,1,0,660,1540.000000,151,0,41714.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,151,0,45936.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,600,1540.000000,151,0,36505.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1380,1540.000000,151,0,85221.000000,641.600000,extended,lora,60 +on0,1,9,24,0,0,0,2565.000000,151,0,-1.000000,1256.400000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,151,0,26901.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,0,1540.000000,152,0,3248.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1025,1545.000000,152,0,61515.000000,643.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,960,1540.000000,152,0,60708.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1100,1560.000000,152,0,66874.000000,649.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,470,1590.000000,152,0,27678.000000,661.600000,extended,lora,60 +on4,0,0,24,1,0,60,1540.000000,152,0,5711.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2125.000000,152,0,-1.000000,1003.600000,extended,lora,60 +on1,0,0,24,1,0,600,1540.000000,153,0,36786.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,840,1540.000000,153,0,50635.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,971,1551.000000,153,0,60295.000000,646.000000,extended,lora,60 +on4,0,0,24,1,0,300,1540.000000,153,0,21100.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,1380,1540.000000,153,0,84645.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2257.000000,153,0,-1.000000,1082.000000,extended,lora,60 +on2,0,0,24,1,0,811,1571.000000,153,0,47786.000000,654.000000,extended,lora,60 +on5,0,0,24,1,0,1290,1570.000000,153,0,79117.000000,653.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,154,0,29185.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1219,1559.000000,154,0,73556.000000,649.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,lora,60 +on0,1,3,24,0,0,0,1775.000000,154,0,-1.000000,786.800000,extended,lora,60 +on6,0,0,24,1,0,1066,1586.000000,154,0,63387.000000,660.000000,extended,lora,60 +on0,1,6,24,0,0,0,2102.000000,155,0,-1.000000,994.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,589,1589.000000,155,0,33367.000000,661.200000,extended,lora,60 +on12,0,0,24,1,0,312,1552.000000,155,0,19129.000000,646.400000,extended,lora,60 +on7,0,0,24,1,0,1260,1540.000000,155,0,78794.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1101,1561.000000,155,0,66140.000000,650.000000,extended,lora,60 +on11,0,0,24,1,0,257,1557.000000,155,0,17903.000000,648.400000,extended,lora,60 +on8,0,0,24,1,0,60,1540.000000,155,0,5151.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,1320,1540.000000,156,0,79588.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,74,1554.000000,156,0,6157.000000,647.200000,extended,lora,60 +on9,0,0,24,1,0,600,1540.000000,156,0,36921.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1,1541.000000,156,0,3450.000000,642.000000,extended,lora,60 +on10,0,0,24,1,0,180,1540.000000,156,0,14489.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,440,1560.000000,156,0,25420.000000,649.600000,extended,lora,60 +on5,0,0,24,1,0,737,1557.000000,156,0,45979.000000,648.400000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,lora,60 +on0,1,8,24,0,0,0,2304.000000,156,0,-1.000000,1126.400000,extended,lora,60 +on6,0,0,24,1,0,780,1540.000000,156,0,48280.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,640,1580.000000,157,0,39020.000000,657.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,167,1587.000000,157,0,8502.000000,660.400000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,180,1540.000000,157,0,11949.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,900,1540.000000,157,0,56299.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1061,1581.000000,157,0,63168.000000,658.000000,extended,lora,60 +on0,1,5,24,0,0,0,2036.000000,157,0,-1.000000,942.400000,extended,lora,60 +on10,0,0,24,1,0,540,1540.000000,158,0,32745.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,508,1568.000000,158,0,29362.000000,652.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,459,1579.000000,158,0,26584.000000,657.200000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,840,1540.000000,158,0,50866.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2116.000000,158,0,-1.000000,1000.000000,extended,lora,60 +on9,0,0,24,1,0,240,1540.000000,158,0,17617.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,206,1566.000000,158,0,13497.000000,652.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,807,1567.000000,159,0,48842.000000,652.400000,extended,lora,60 +on0,1,7,24,0,0,0,2140.000000,159,0,-1.000000,1035.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,706,1586.000000,159,0,42305.000000,660.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,52,1592.000000,159,0,3481.000000,662.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,155,1575.000000,159,0,9106.000000,655.600000,extended,lora,60 +on5,0,0,24,1,0,562,1562.000000,159,0,36132.000000,650.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1157,1557.000000,159,0,71201.000000,648.400000,extended,lora,60 +on4,0,0,24,1,0,250,1550.000000,159,0,16440.000000,645.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,304,1544.000000,160,0,20570.000000,643.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,10,1550.000000,160,0,467.000000,645.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1110,1570.000000,160,0,66347.000000,653.600000,extended,lora,60 +on5,0,0,24,1,0,152,1572.000000,160,0,10803.000000,654.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2092.000000,160,0,-1.000000,990.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,480,1540.000000,160,0,32536.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,360,1540.000000,160,0,25157.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,180,1540.000000,161,0,12542.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,247,1547.000000,161,0,17537.000000,644.400000,extended,lora,60 +on0,1,5,24,0,0,0,2091.000000,161,0,-1.000000,964.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1200,1540.000000,161,0,72362.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,3,1543.000000,161,0,2135.000000,642.800000,extended,lora,60 +on4,0,0,23,0,0,1432,1432.000000,161,0,-1.000000,572.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,161,0,44506.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,271,1571.000000,162,0,14918.000000,654.000000,extended,lora,60 +on12,0,0,24,1,0,120,1540.000000,162,0,8844.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,180,1540.000000,162,0,11347.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1020,1540.000000,162,0,63924.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,480,1540.000000,162,0,31569.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,1364,1584.000000,162,0,82202.000000,659.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,360,1540.000000,162,0,24830.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2431.000000,162,0,-1.000000,1177.200000,extended,lora,60 +on10,0,0,24,1,0,1260,1540.000000,162,0,77564.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,943,1583.000000,163,0,55100.000000,658.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,85,1565.000000,163,0,7378.000000,651.600000,extended,lora,60 +on4,0,0,24,1,0,335,1575.000000,163,0,19229.000000,655.600000,extended,lora,60 +on3,0,0,24,1,0,1020,1540.000000,163,0,63348.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2315.000000,163,0,-1.000000,1130.800000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1183,1583.000000,163,0,71162.000000,658.800000,extended,lora,60 +on9,0,0,24,1,0,1352,1572.000000,163,0,80666.000000,654.400000,extended,lora,60 +on12,0,0,24,1,0,780,1540.000000,163,0,48415.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,366,1546.000000,163,0,23639.000000,644.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,99,1579.000000,164,0,4521.000000,657.200000,extended,lora,60 +on0,1,8,24,0,0,0,2310.000000,164,0,-1.000000,1128.800000,extended,lora,60 +on11,0,0,24,1,0,681,1561.000000,164,0,40135.000000,650.000000,extended,lora,60 +on9,0,0,24,1,0,120,1540.000000,164,0,8335.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,180,1540.000000,164,0,11454.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1144,1544.000000,164,0,70667.000000,643.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,420,1540.000000,164,0,26838.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,571,1571.000000,164,0,34746.000000,654.000000,extended,lora,60 +on12,0,0,24,1,0,240,1540.000000,164,0,17970.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on0,1,4,24,0,0,0,1940.000000,165,0,-1.000000,878.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,420,1540.000000,165,0,25737.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,780,1540.000000,165,0,48149.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,840,1540.000000,165,0,52985.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,515,1575.000000,165,0,31377.000000,655.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,840,1540.000000,166,0,53190.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2236.000000,166,0,-1.000000,1073.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,166,0,27031.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,960,1540.000000,166,0,60786.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,283,1583.000000,166,0,16442.000000,658.800000,extended,lora,60 +on10,0,0,24,1,0,638,1578.000000,166,0,39182.000000,656.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,312,1552.000000,166,0,21517.000000,646.400000,extended,lora,60 +on5,0,0,24,1,0,1156,1556.000000,166,0,71671.000000,648.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,154,1574.000000,167,0,10019.000000,655.200000,extended,lora,60 +on11,0,0,24,1,0,119,1599.000000,167,0,6841.000000,665.200000,extended,lora,60 +on4,0,0,24,1,0,533,1593.000000,167,0,30324.000000,662.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1273,1553.000000,167,0,79112.000000,646.800000,extended,lora,60 +on0,1,5,24,0,0,0,1940.000000,167,0,-1.000000,904.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1371,1591.000000,167,0,82397.000000,662.000000,extended,lora,60 +on0,1,8,24,0,0,0,2462.000000,168,0,-1.000000,1189.600000,extended,lora,60 +on5,0,0,24,1,0,180,1540.000000,168,0,11827.000000,641.600000,extended,lora,60 +on1,0,0,24,1,0,716,1596.000000,168,0,42632.000000,664.000000,extended,lora,60 +on9,0,0,24,1,0,900,1540.000000,168,0,56539.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,120,1540.000000,168,0,9227.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,597,1597.000000,168,0,34191.000000,664.400000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1260,1540.000000,168,0,79096.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,1140,1540.000000,168,0,69652.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,840,1540.000000,168,0,50762.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1252,1592.000000,169,0,74559.000000,662.400000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,516,1576.000000,169,0,31900.000000,656.000000,extended,lora,60 +on5,0,0,24,1,0,205,1565.000000,169,0,14287.000000,651.600000,extended,lora,60 +on6,0,0,24,1,0,713,1593.000000,169,0,41619.000000,662.800000,extended,lora,60 +on11,0,0,24,1,0,259,1559.000000,169,0,17263.000000,649.200000,extended,lora,60 +on0,1,8,24,0,0,0,2298.000000,169,0,-1.000000,1124.000000,extended,lora,60 +on12,0,0,24,1,0,0,1540.000000,169,0,2830.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,360,1540.000000,169,0,22249.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,600,1540.000000,169,0,37029.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,221,1581.000000,170,0,11177.000000,658.000000,extended,lora,60 +on10,0,0,24,1,0,240,1540.000000,170,0,16281.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,587,1587.000000,170,0,35591.000000,660.400000,extended,lora,60 +on6,0,0,24,1,0,480,1540.000000,170,0,29343.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,426,1546.000000,170,0,27750.000000,644.000000,extended,lora,60 +on1,0,0,24,1,0,1104,1564.000000,170,0,68184.000000,651.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,170,0,85981.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2352.000000,170,0,-1.000000,1145.600000,extended,lora,60 +on8,0,0,24,1,0,600,1540.000000,170,0,39507.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,420,1540.000000,171,0,25477.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1178,1578.000000,171,0,71189.000000,656.800000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,221,1581.000000,171,0,13364.000000,658.000000,extended,lora,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,710,1590.000000,171,0,40108.000000,661.600000,extended,lora,60 +on11,0,0,24,1,0,405,1585.000000,171,0,23511.000000,659.600000,extended,lora,60 +on9,0,0,24,1,0,658,1598.000000,171,0,39484.000000,664.800000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1413,1573.000000,171,0,86384.000000,654.800000,extended,lora,60 +on0,1,7,24,0,0,0,2149.000000,171,0,-1.000000,1038.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,532,1592.000000,172,0,29951.000000,662.400000,extended,lora,60 +on9,0,0,24,1,0,265,1565.000000,172,0,17695.000000,651.600000,extended,lora,60 +on0,1,6,24,0,0,0,2114.000000,172,0,-1.000000,999.200000,extended,lora,60 +on1,0,0,24,1,0,1320,1540.000000,172,0,80017.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,120,1540.000000,172,0,8223.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1020,1540.000000,172,0,62219.000000,641.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1276,1556.000000,172,0,76466.000000,648.000000,extended,lora,60 +on2,0,0,24,1,0,1166,1566.000000,173,0,70839.000000,652.000000,extended,lora,60 +on10,0,0,24,1,0,1320,1540.000000,173,0,82234.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,120,1540.000000,173,0,10467.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,173,0,84683.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2353.000000,173,0,-1.000000,1146.000000,extended,lora,60 +on3,0,0,24,1,0,480,1540.000000,173,0,29686.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,19,1559.000000,173,0,2080.000000,649.200000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,766,1586.000000,173,0,44991.000000,660.000000,extended,lora,60 +on12,0,0,24,1,0,306,1546.000000,173,0,19662.000000,644.000000,extended,lora,60 +on11,0,0,24,1,0,900,1540.000000,174,0,56280.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,174,0,83186.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2278.000000,174,0,-1.000000,1090.400000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,60,1540.000000,174,0,5930.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,1114,1574.000000,174,0,67033.000000,655.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1308,1588.000000,174,0,76735.000000,660.800000,extended,lora,60 +on9,0,0,24,1,0,660,1540.000000,174,0,42737.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,421,1541.000000,174,0,27459.000000,642.000000,extended,lora,60 +on10,0,0,24,1,0,540,1540.000000,175,0,35964.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,720,1540.000000,175,0,43478.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,20,1560.000000,175,0,2136.000000,649.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,175,0,83922.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2232.000000,175,0,-1.000000,1072.000000,extended,lora,60 +on3,0,0,24,1,0,962,1542.000000,175,0,60498.000000,642.400000,extended,lora,60 +on6,0,0,24,1,0,1020,1540.000000,175,0,64495.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,120,1540.000000,175,0,8063.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,1238,1578.000000,176,0,73384.000000,656.800000,extended,lora,60 +on11,0,0,24,1,0,1380,1540.000000,176,0,83351.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2229.000000,176,0,-1.000000,1070.800000,extended,lora,60 +on10,0,0,24,1,0,1140,1540.000000,176,0,70146.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,309,1549.000000,176,0,20740.000000,645.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,1368,1588.000000,176,0,82080.000000,660.800000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,290,1590.000000,176,0,17934.000000,661.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,180,1540.000000,176,0,12132.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1371,1591.000000,177,0,79793.000000,662.000000,extended,lora,60 +on6,0,0,24,1,0,1260,1540.000000,177,0,77747.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,177,0,83670.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2358.000000,177,0,-1.000000,1148.000000,extended,lora,60 +on9,0,0,24,1,0,480,1540.000000,177,0,30892.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,120,1540.000000,177,0,8113.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,187,1547.000000,177,0,14546.000000,644.400000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,110,1590.000000,177,0,6652.000000,661.600000,extended,lora,60 +on2,0,0,24,1,0,432,1552.000000,177,0,26091.000000,646.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1246,1586.000000,178,0,72297.000000,660.000000,extended,lora,60 +on5,0,0,24,1,0,1320,1540.000000,178,0,80570.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,878,1578.000000,178,0,52657.000000,656.800000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1020,1540.000000,178,0,62325.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,360,1540.000000,178,0,24165.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2243.000000,178,0,-1.000000,1076.400000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,926,1566.000000,178,0,55764.000000,652.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,240,1540.000000,178,0,14997.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,300,1540.000000,179,0,20418.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1200,1540.000000,179,0,75220.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,1368,1588.000000,179,0,82617.000000,660.800000,extended,lora,60 +on4,0,0,24,1,0,926,1566.000000,179,0,56043.000000,652.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1149,1549.000000,179,0,71936.000000,645.200000,extended,lora,60 +on5,0,0,24,1,0,391,1571.000000,179,0,24053.000000,654.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,1380,1540.000000,179,0,86252.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2197.000000,179,0,-1.000000,1058.000000,extended,lora,60 +on11,0,0,24,1,0,1433,1593.000000,180,0,83021.000000,662.800000,extended,lora,60 +on0,1,5,24,0,0,0,2038.000000,180,0,-1.000000,943.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,240,1540.000000,180,0,15362.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,320,1560.000000,180,0,18880.000000,649.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,585,1585.000000,180,0,35348.000000,659.600000,extended,lora,60 +on2,0,0,24,1,0,0,1540.000000,180,0,1983.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,377,1557.000000,181,0,24621.000000,648.400000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1315,1595.000000,181,0,77827.000000,663.600000,extended,lora,60 +on8,0,0,24,1,0,900,1540.000000,181,0,56373.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,14,1554.000000,181,0,1308.000000,647.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,165,1585.000000,181,0,9635.000000,659.600000,extended,lora,60 +on12,0,0,24,1,0,1380,1540.000000,181,0,85933.000000,641.600000,extended,lora,60 +on0,1,6,24,0,0,0,2101.000000,181,0,-1.000000,994.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,0,1540.000000,182,0,1584.000000,641.600000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,304,1544.000000,182,0,21537.000000,643.200000,extended,lora,60 +on6,0,0,24,1,0,476,1596.000000,182,0,28721.000000,664.000000,extended,lora,60 +on7,0,0,24,1,0,750,1570.000000,182,0,45158.000000,653.600000,extended,lora,60 +on11,0,0,24,1,0,1037,1557.000000,182,0,64531.000000,648.400000,extended,lora,60 +on0,1,8,24,0,0,0,2287.000000,182,0,-1.000000,1119.600000,extended,lora,60 +on8,0,0,24,1,0,180,1540.000000,182,0,12071.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1366,1586.000000,182,0,79561.000000,660.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,626,1566.000000,182,0,39517.000000,652.000000,extended,lora,60 +on10,0,0,24,1,0,179,1599.000000,183,0,9401.000000,665.200000,extended,lora,60 +on1,0,0,24,1,0,510,1570.000000,183,0,32343.000000,653.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,860,1560.000000,183,0,50843.000000,649.600000,extended,lora,60 +on4,0,0,24,1,0,926,1566.000000,183,0,55173.000000,652.000000,extended,lora,60 +on3,0,0,24,1,0,300,1540.000000,183,0,19981.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1140,1540.000000,183,0,69669.000000,641.600000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,lora,60 +on0,1,8,24,0,0,0,2368.000000,183,0,-1.000000,1152.000000,extended,lora,60 +on5,0,0,24,1,0,180,1540.000000,183,0,14380.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,60,1540.000000,183,0,5512.000000,641.600000,extended,lora,60 +on12,0,0,24,1,0,1200,1540.000000,184,0,72940.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,499,1559.000000,184,0,30933.000000,649.200000,extended,lora,60 +on8,0,0,24,1,0,360,1540.000000,184,0,22204.000000,641.600000,extended,lora,60 +on7,0,0,24,1,0,420,1540.000000,184,0,25437.000000,641.600000,extended,lora,60 +on6,0,0,24,1,0,814,1574.000000,184,0,49391.000000,655.200000,extended,lora,60 +on2,0,0,24,1,0,872,1572.000000,184,0,52978.000000,654.400000,extended,lora,60 +on5,0,0,24,1,0,720,1540.000000,184,0,46488.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on0,1,9,24,0,0,0,2514.000000,184,0,-1.000000,1236.000000,extended,lora,60 +on3,0,0,24,1,0,540,1540.000000,184,0,36152.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,600,1540.000000,184,0,38135.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1081,1541.000000,185,0,66100.000000,642.000000,extended,lora,60 +on2,0,0,24,1,0,600,1540.000000,185,0,39125.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2146.000000,185,0,-1.000000,1012.000000,extended,lora,60 +on4,0,0,24,1,0,809,1569.000000,185,0,47582.000000,653.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,300,1540.000000,185,0,20917.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,180,1540.000000,185,0,14001.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,0,1540.000000,185,0,1955.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,840,1540.000000,186,0,54144.000000,641.600000,extended,lora,60 +on0,1,4,24,0,0,0,1988.000000,186,0,-1.000000,897.600000,extended,lora,60 +on4,0,0,24,1,0,660,1540.000000,186,0,40016.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,929,1569.000000,186,0,56923.000000,653.200000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1020,1540.000000,186,0,64657.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,222,1582.000000,187,0,14200.000000,658.400000,extended,lora,60 +on0,1,6,24,0,0,0,2132.000000,187,0,-1.000000,1006.400000,extended,lora,60 +on10,0,0,24,1,0,1260,1540.000000,187,0,75938.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1092,1552.000000,187,0,67351.000000,646.400000,extended,lora,60 +on11,0,0,24,1,0,1140,1540.000000,187,0,69802.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,900,1540.000000,187,0,56230.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,54,1594.000000,187,0,2613.000000,663.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,540,1540.000000,188,0,32740.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1380,1540.000000,188,0,83415.000000,641.600000,extended,lora,60 +on0,1,8,24,0,0,0,2335.000000,188,0,-1.000000,1138.800000,extended,lora,60 +on10,0,0,24,1,0,350,1590.000000,188,0,18720.000000,661.600000,extended,lora,60 +on3,0,0,24,1,0,360,1540.000000,188,0,22768.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,945,1585.000000,188,0,56207.000000,659.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,988,1568.000000,188,0,59606.000000,652.800000,extended,lora,60 +on5,0,0,24,1,0,539,1599.000000,188,0,29027.000000,665.200000,extended,lora,60 +on1,0,0,24,1,0,1140,1540.000000,188,0,71008.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,780,1540.000000,189,0,49175.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,1200,1540.000000,189,0,72904.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,1020,1540.000000,189,0,62312.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,1984.000000,189,0,-1.000000,921.600000,extended,lora,60 +on10,0,0,24,1,0,720,1540.000000,189,0,46181.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1313,1593.000000,189,0,76996.000000,662.800000,extended,lora,60 +on5,0,0,24,1,0,363,1543.000000,190,0,23500.000000,642.800000,extended,lora,60 +on0,1,6,24,0,0,0,2081.000000,190,0,-1.000000,986.000000,extended,lora,60 +on9,0,0,24,1,0,60,1540.000000,190,0,4138.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,600,1540.000000,190,0,39464.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,155,1575.000000,190,0,8371.000000,655.600000,extended,lora,60 +on12,0,0,24,1,0,187,1547.000000,190,0,12353.000000,644.400000,extended,lora,60 +on2,0,0,24,1,0,720,1540.000000,190,0,45513.000000,641.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,60,1540.000000,191,0,4552.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,244,1544.000000,191,0,18151.000000,643.200000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,1080,1540.000000,191,0,65026.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2013.000000,191,0,-1.000000,933.200000,extended,lora,60 +on4,0,0,24,1,0,1140,1540.000000,191,0,71985.000000,641.600000,extended,lora,60 +on8,0,0,24,1,0,1215,1555.000000,191,0,73905.000000,647.600000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,1041,1561.000000,192,0,62603.000000,650.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,1428,1588.000000,192,0,85416.000000,660.800000,extended,lora,60 +on0,1,5,24,0,0,0,1991.000000,192,0,-1.000000,924.400000,extended,lora,60 +on10,0,0,24,1,0,1246,1586.000000,192,0,73432.000000,660.000000,extended,lora,60 +on1,0,0,24,1,0,60,1540.000000,192,0,6499.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,1,0,949,1589.000000,192,0,56884.000000,661.200000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,420,1540.000000,193,0,27658.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,720,1540.000000,193,0,46358.000000,641.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1034,1554.000000,193,0,63462.000000,647.200000,extended,lora,60 +on7,0,0,24,1,0,859,1559.000000,193,0,50630.000000,649.200000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on0,1,6,24,0,0,0,2177.000000,193,0,-1.000000,1024.400000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,300,1540.000000,193,0,21381.000000,641.600000,extended,lora,60 +on2,0,0,24,1,0,120,1540.000000,193,0,9372.000000,641.600000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,1260,1540.000000,194,0,77420.000000,641.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,1,0,770,1590.000000,194,0,46143.000000,661.600000,extended,lora,60 +on1,0,0,24,1,0,1408,1568.000000,194,0,84366.000000,652.800000,extended,lora,60 +on0,1,6,24,0,0,0,2064.000000,194,0,-1.000000,979.200000,extended,lora,60 +on6,0,0,24,1,0,699,1579.000000,194,0,41728.000000,657.200000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,1,0,116,1596.000000,194,0,7278.000000,664.000000,extended,lora,60 +on5,0,0,24,1,0,1219,1559.000000,194,0,74301.000000,649.200000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,23,0,0,1438,1438.000000,194,0,-1.000000,575.200000,extended,lora,60 +on6,0,0,24,1,0,764,1584.000000,195,0,43746.000000,659.200000,extended,lora,60 +on8,0,0,24,1,0,840,1540.000000,195,0,53673.000000,641.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,9,1549.000000,195,0,1586.000000,645.200000,extended,lora,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,60,1540.000000,195,0,7322.000000,641.600000,extended,lora,60 +on4,0,0,24,1,0,929,1569.000000,195,0,54766.000000,653.200000,extended,lora,60 +on12,0,0,24,1,0,220,1580.000000,195,0,13059.000000,657.600000,extended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,195,0,86089.000000,641.600000,extended,lora,60 +on0,1,7,24,0,0,0,2251.000000,195,0,-1.000000,1079.600000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,600,1540.000000,196,0,37680.000000,641.600000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,720,1540.000000,196,0,43408.000000,641.600000,extended,lora,60 +on5,0,0,24,1,0,480,1540.000000,196,0,30408.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,1020,1540.000000,196,0,61410.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on0,1,5,24,0,0,0,2112.000000,196,0,-1.000000,972.800000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,180,1540.000000,196,0,11247.000000,641.600000,extended,lora,60 +on3,0,0,24,1,0,716,1596.000000,197,0,40288.000000,664.000000,extended,lora,60 +on0,1,6,24,0,0,0,2087.000000,197,0,-1.000000,988.400000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,1,0,480,1540.000000,197,0,30950.000000,641.600000,extended,lora,60 +on10,0,0,24,1,0,770,1590.000000,197,0,43680.000000,661.600000,extended,lora,60 +on11,0,0,24,1,0,238,1598.000000,197,0,11321.000000,664.800000,extended,lora,60 +on6,0,0,24,1,0,173,1593.000000,197,0,8710.000000,662.800000,extended,lora,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,lora,60 +on9,0,0,24,1,0,320,1560.000000,197,0,21390.000000,649.600000,extended,lora,60 +on0,1,4,24,0,0,0,1888.000000,198,0,-1.000000,857.600000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,1020,1540.000000,198,0,62313.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,976,1556.000000,198,0,60104.000000,648.000000,extended,lora,60 +on6,0,0,24,1,0,1260,1540.000000,198,0,76939.000000,641.600000,extended,lora,60 +on9,0,0,24,1,0,172,1592.000000,198,0,9664.000000,662.400000,extended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on5,0,0,24,1,0,820,1580.000000,199,0,49745.000000,657.600000,extended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,1,0,1092,1552.000000,199,0,66143.000000,646.400000,extended,lora,60 +on0,1,5,24,0,0,0,1991.000000,199,0,-1.000000,924.400000,extended,lora,60 +on4,0,0,24,1,0,480,1540.000000,199,0,29746.000000,641.600000,extended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on1,0,0,24,1,0,1310,1590.000000,199,0,78643.000000,661.600000,extended,lora,60 +on2,0,0,24,1,0,1320,1540.000000,199,0,80034.000000,641.600000,extended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,lora,60 +on3,0,0,24,1,0,905,1545.000000,200,0,55880.000000,643.600000,extended,lora,60 +on10,0,0,24,1,0,0,1540.000000,200,0,2758.000000,641.600000,extended,lora,60 +on11,0,0,24,1,0,480,1540.000000,200,0,30211.000000,641.600000,extended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on12,0,0,24,1,0,679,1559.000000,200,0,42263.000000,649.200000,extended,lora,60 +on0,1,6,24,0,0,0,2100.000000,200,0,-1.000000,993.600000,extended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on7,0,0,24,1,0,68,1548.000000,200,0,6869.000000,644.800000,extended,lora,60 +on9,0,0,24,1,0,369,1549.000000,200,0,23265.000000,645.200000,extended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,lora,60 +on6,0,0,24,1,0,1187,1587.001280,1,0,70326.001280,660.400717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,279,1579.001280,1,0,17486.001280,657.200717,hintandextended,lora,60 +on8,0,0,24,1,0,439,1560.001280,1,0,27313.001280,650.400717,hintandextended,lora,60 +on2,0,0,24,1,0,483,1543.001280,1,0,29156.001280,642.800717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,710,1591.001280,1,0,43156.001280,671.440717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,300,1602.600000,1,1,19137.602560,666.688819,hintandextended,lora,60 +on0,1,6,24,0,0,0,2093.608960,1,0,-1.000000,991.045632,hintandextended,lora,60 +on10,0,0,24,1,0,1050,1570.001280,2,0,62314.001280,653.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,698,1601.203840,2,1,42786.001280,675.266150,hintandextended,lora,60 +on7,0,0,24,1,0,600,1541.001280,2,0,38982.001280,646.864717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,991,1571.001280,2,0,59964.001280,654.000717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2231.008960,2,0,-1.000000,1071.605837,hintandextended,lora,60 +on6,0,0,24,1,0,211,1571.001280,2,0,11090.001280,654.000717,hintandextended,lora,60 +on2,0,0,25,0,0,1460,1500.300000,2,1,-1.000000,606.040000,hintandextended,lora,60 +on9,0,0,24,1,0,240,1541.998720,2,0,15964.001280,642.400102,hintandextended,lora,60 +on5,0,0,24,1,0,552,1552.001280,2,0,35550.001280,646.400717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2119.608960,3,0,-1.000000,1001.445837,hintandextended,lora,60 +on4,0,0,24,1,0,300,1542.000000,3,0,19182.001280,651.680410,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,240,1541.000000,3,0,16454.001280,642.000410,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,480,1601.601280,3,1,31383.602560,666.289126,hintandextended,lora,60 +on2,0,0,24,1,0,398,1579.001280,3,0,25353.001280,666.384717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,662,1601.300000,3,1,43014.001280,675.400410,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,470,1600.201280,3,1,27879.001280,665.680717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1401,1561.000000,4,0,83101.000000,650.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2048.606400,4,0,-1.000000,947.443994,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,599,1599.001280,4,0,34038.001280,665.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,17,1558.000000,4,0,2325.001280,648.800410,hintandextended,lora,60 +on11,0,0,25,1,0,420,1601.601280,4,1,27312.602560,666.289126,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,660,1540.001280,4,0,40187.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1432,1592.000000,5,0,83138.000000,662.400000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2002.005120,5,0,-1.000000,928.803072,hintandextended,lora,60 +on5,0,0,24,1,0,120,1540.001280,5,0,7771.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,383,1563.001280,5,0,25163.001280,650.800717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,947,1587.001280,5,0,55031.001280,660.400717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,0,1541.000000,5,0,2413.001280,642.000410,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1077,1598.001280,6,0,61887.001280,673.984717,hintandextended,lora,60 +on7,0,0,24,1,0,498,1558.001280,6,0,30359.001280,648.800717,hintandextended,lora,60 +on9,0,0,25,1,0,1181,1600.201280,6,1,70520.001280,665.680717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2052.007680,6,0,-1.000000,974.404301,hintandextended,lora,60 +on4,0,0,25,1,0,1122,1601.001280,6,1,65371.001280,675.184717,hintandextended,lora,60 +on3,0,0,24,1,0,861,1561.001280,6,0,53902.001280,650.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1260,1540.001280,6,0,77177.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2103.210240,7,0,-1.000000,994.886554,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,180,1602.600000,7,1,14023.602560,666.688819,hintandextended,lora,60 +on7,0,0,25,1,0,599,1600.201280,7,1,33708.001280,665.680717,hintandextended,lora,60 +on10,0,0,24,1,0,23,1564.001280,7,0,3669.001280,657.280922,hintandextended,lora,60 +on8,0,0,25,1,0,720,1602.002560,7,1,45641.602560,671.537638,hintandextended,lora,60 +on2,0,0,25,0,0,1478,1500.000000,7,1,-1.000000,600.000000,hintandextended,lora,60 +on1,0,0,25,1,0,847,1600.301280,7,1,52280.001280,673.720717,hintandextended,lora,60 +on9,0,0,25,1,0,458,1601.001280,7,1,29012.001280,675.184717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1996.607680,8,0,-1.000000,926.644710,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1080,1541.000000,8,0,66717.001280,642.000410,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,180,1601.601280,8,1,13146.602560,666.289126,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,519,1579.001280,8,0,31842.001280,657.200717,hintandextended,lora,60 +on12,0,0,24,1,0,952,1592.001280,8,0,54416.001280,662.400717,hintandextended,lora,60 +on4,0,0,24,1,0,326,1566.001280,8,0,19395.001280,652.000717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,172,1592.003840,9,0,9008.001280,662.402150,hintandextended,lora,60 +on6,0,0,25,1,0,1058,1600.001280,9,1,66423.001280,665.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,997,1577.001280,9,0,60760.001280,656.400717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2342.611520,9,0,-1.000000,1141.847066,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,0,1540.001280,9,0,1697.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,813,1573.001280,9,0,49011.001280,654.800717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,660,1540.001280,9,0,42604.001280,641.600717,hintandextended,lora,60 +on3,0,0,25,1,0,60,1600.602560,9,1,4904.602560,665.889434,hintandextended,lora,60 +on8,0,0,24,1,0,200,1561.001280,9,0,11747.001280,654.160922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,933,1573.001280,10,0,56889.001280,654.800717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2084.007680,10,0,-1.000000,987.204710,hintandextended,lora,60 +on4,0,0,24,1,0,1260,1541.001280,10,0,78439.001280,651.440717,hintandextended,lora,60 +on6,0,0,24,1,0,337,1577.001280,10,0,20723.001280,656.400717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,960,1540.002560,10,0,58887.001280,641.601434,hintandextended,lora,60 +on3,0,0,24,1,0,204,1564.001280,10,0,13752.001280,651.200717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,683,1564.002560,10,0,42243.001280,652.481434,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,312,1552.001280,11,0,19948.001280,646.400717,hintandextended,lora,60 +on3,0,0,25,1,0,600,1601.602560,11,1,37430.602560,668.593434,hintandextended,lora,60 +on11,0,0,25,1,0,660,1601.601280,11,1,42924.602560,666.289126,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,566,1566.001280,11,0,35092.001280,652.000717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1134,1594.001280,11,0,66389.001280,663.200717,hintandextended,lora,60 +on1,0,0,24,1,0,34,1575.001280,11,0,350.001280,656.784717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,240,1600.602560,11,2,18089.602560,665.889434,hintandextended,lora,60 +on7,0,0,24,1,0,960,1541.001280,11,0,60479.001280,651.440717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2473.815360,11,0,-1.000000,1219.929216,hintandextended,lora,60 +on4,0,0,24,1,0,731,1551.001280,11,0,45443.001280,646.000717,hintandextended,lora,60 +on3,0,0,25,1,0,180,1601.601280,12,1,13282.602560,666.289126,hintandextended,lora,60 +on10,0,0,24,1,0,126,1546.001280,12,0,10903.001280,644.000717,hintandextended,lora,60 +on5,0,0,25,0,0,1478,1500.200000,12,1,-1.000000,600.080000,hintandextended,lora,60 +on7,0,0,25,1,0,939,1601.001280,12,1,56602.001280,667.648922,hintandextended,lora,60 +on9,0,0,24,1,0,840,1541.001280,12,0,50692.001280,646.384717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,398,1600.001280,12,1,24024.001280,665.600717,hintandextended,lora,60 +on4,0,0,24,1,0,600,1541.000000,12,0,37669.001280,642.000410,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,324,1566.000000,12,0,18333.001280,658.784410,hintandextended,lora,60 +on8,0,0,24,1,0,991,1571.002560,12,0,58114.001280,654.001434,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2352.611520,12,0,-1.000000,1145.847475,hintandextended,lora,60 +on7,0,0,24,1,0,600,1540.002560,13,0,38248.001280,641.601434,hintandextended,lora,60 +on12,0,0,24,1,0,660,1540.001280,13,0,40892.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,273,1573.001280,13,0,16923.001280,654.800717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,60,1540.001280,13,0,6590.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,3,1545.001280,13,0,2169.001280,653.041126,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2184.007680,13,0,-1.000000,1027.205120,hintandextended,lora,60 +on1,0,0,24,1,0,148,1568.002560,13,0,10267.001280,652.801434,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,840,1540.001280,14,0,52162.001280,641.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2272.610240,14,0,-1.000000,1088.246554,hintandextended,lora,60 +on3,0,0,25,1,0,0,1600.602560,14,1,2012.602560,665.889638,hintandextended,lora,60 +on1,0,0,25,1,0,60,1602.001280,14,1,6831.001280,671.041126,hintandextended,lora,60 +on4,0,0,24,1,0,239,1599.001280,14,0,14226.001280,665.200717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,374,1555.000000,14,0,22972.001280,647.600410,hintandextended,lora,60 +on10,0,0,24,1,0,240,1540.001280,14,0,16064.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,823,1583.001280,14,0,48587.001280,658.800717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,423,1543.001280,15,0,28841.001280,642.800717,hintandextended,lora,60 +on5,0,0,24,1,0,1020,1540.001280,15,0,63747.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,869,1569.001280,15,0,52470.001280,653.200717,hintandextended,lora,60 +on11,0,0,24,1,0,180,1541.000000,15,0,13148.001280,642.000410,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2204.008960,15,0,-1.000000,1060.805427,hintandextended,lora,60 +on8,0,0,24,1,0,838,1598.001280,15,0,49852.001280,664.800717,hintandextended,lora,60 +on2,0,0,24,1,0,663,1543.001280,15,0,39970.001280,642.800717,hintandextended,lora,60 +on10,0,0,24,1,0,294,1596.000000,15,0,17169.001280,673.440410,hintandextended,lora,60 +on7,0,0,24,1,0,685,1566.000000,16,0,41500.001280,652.000410,hintandextended,lora,60 +on12,0,0,24,1,0,420,1540.001280,16,0,27328.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,488,1548.002560,16,0,30870.001280,644.801434,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,900,1541.001280,16,0,55429.001280,650.928717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1058,1600.201280,16,1,63300.001280,665.680717,hintandextended,lora,60 +on11,0,0,25,1,0,1012,1601.301280,16,1,60815.001280,669.544717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2295.010240,16,0,-1.000000,1122.806144,hintandextended,lora,60 +on2,0,0,25,0,0,1478,1500.000000,16,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,1,0,328,1568.001280,16,0,19811.001280,652.800717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1263,1543.001280,16,0,79269.001280,642.800717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2292.008960,17,0,-1.000000,1096.005427,hintandextended,lora,60 +on6,0,0,24,1,0,660,1540.001280,17,0,40688.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,240,1540.001280,17,0,14588.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,23,0,0,1430,1430.000000,17,0,-1.000000,572.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1235,1575.001280,17,0,75071.001280,655.600717,hintandextended,lora,60 +on10,0,0,24,1,0,720,1540.001280,17,0,44308.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,60,1542.001280,17,0,6434.001280,651.585126,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,590,1590.001280,17,0,34392.001280,661.600717,hintandextended,lora,60 +on9,0,0,25,1,0,533,1600.001280,17,1,31115.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,1,0,159,1579.001280,18,0,9063.001280,657.200717,hintandextended,lora,60 +on5,0,0,24,1,0,497,1558.001280,18,0,29900.001280,657.728717,hintandextended,lora,60 +on8,0,0,24,1,0,601,1542.001280,18,0,36268.001280,651.584717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,378,1559.001280,18,0,23318.001280,649.201126,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1541.001280,18,0,69242.001280,646.640717,hintandextended,lora,60 +on7,0,0,25,1,0,710,1600.001280,18,1,41310.001280,665.600717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2250.010240,18,0,-1.000000,1104.806349,hintandextended,lora,60 +on6,0,0,25,1,0,1069,1611.201280,18,1,62983.001280,670.080717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,580,1601.300000,18,1,34787.001280,668.360410,hintandextended,lora,60 +on7,0,0,24,1,0,533,1594.001280,19,0,30184.001280,672.640717,hintandextended,lora,60 +on12,0,0,24,1,0,867,1567.001280,19,0,51156.001280,652.400717,hintandextended,lora,60 +on3,0,0,24,1,0,476,1596.001280,19,0,25890.001280,664.000717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,180,1540.001280,19,0,11774.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2098.007680,19,0,-1.000000,992.804301,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,75,1555.001280,19,0,4658.001280,647.600717,hintandextended,lora,60 +on2,0,0,24,1,0,720,1540.001280,19,0,43634.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,528,1600.001280,20,1,31956.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1380,1540.000000,20,0,83879.000000,641.600000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2088.006400,20,0,-1.000000,988.803994,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,540,1540.001280,20,0,34396.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,120,1542.000000,20,0,7922.001280,651.584410,hintandextended,lora,60 +on4,0,0,24,1,0,755,1575.001280,20,0,45468.001280,655.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,272,1572.002560,20,0,15361.001280,654.401434,hintandextended,lora,60 +on3,0,0,24,1,0,660,1540.001280,21,0,40751.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2086.608960,21,0,-1.000000,988.245222,hintandextended,lora,60 +on7,0,0,24,1,0,1100,1560.001280,21,0,65866.001280,649.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,406,1586.001280,21,0,22431.001280,660.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,102,1601.000000,21,1,6021.001280,666.000410,hintandextended,lora,60 +on2,0,0,25,1,0,1320,1600.602560,21,1,82647.602560,665.889434,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,33,1574.001280,21,0,319.001280,664.384717,hintandextended,lora,60 +on7,0,0,25,1,0,759,1600.001280,22,1,45379.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1115,1575.001280,22,0,65550.001280,655.600717,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,22,0,4972.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,204,1564.001280,22,0,13061.001280,651.200717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2194.008960,22,0,-1.000000,1056.805222,hintandextended,lora,60 +on9,0,0,24,1,0,660,1541.001280,22,0,40138.001280,649.264717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,498,1559.000000,22,0,30392.001280,649.200410,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,893,1593.001280,22,0,53971.001280,662.800717,hintandextended,lora,60 +on9,0,0,25,1,0,658,1600.203840,23,1,37956.001280,665.681946,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,0,1540.001280,23,0,3375.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,660,1540.001280,23,0,43331.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,720,1542.000000,23,0,43883.001280,650.624410,hintandextended,lora,60 +on11,0,0,24,1,0,540,1542.001280,23,0,35373.001280,657.184717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2401.010240,23,0,-1.000000,1165.206554,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,818,1600.202560,23,1,49300.001280,665.681434,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1200,1540.001280,23,0,72452.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1080,1540.001280,23,0,65532.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,979,1559.001280,24,0,58756.001280,649.200717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,180,1541.000000,24,0,13458.001280,642.000410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,383,1564.000000,24,0,24853.001280,651.200410,hintandextended,lora,60 +on8,0,0,24,1,0,130,1550.001280,24,0,8719.001280,645.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1959.006400,24,0,-1.000000,911.604198,hintandextended,lora,60 +on7,0,0,24,1,0,605,1546.000000,24,0,37544.001280,644.000410,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,287,1588.000000,25,0,17764.001280,660.800410,hintandextended,lora,60 +on12,0,0,24,1,0,853,1553.001280,25,0,54043.001280,646.800717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1015,1595.001280,25,0,59227.001280,663.600717,hintandextended,lora,60 +on11,0,0,24,1,0,180,1540.001280,25,0,14008.001280,641.600717,hintandextended,lora,60 +on7,0,0,25,1,0,780,1600.001280,25,1,49819.001280,665.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2128.007680,25,0,-1.000000,1004.805120,hintandextended,lora,60 +on5,0,0,24,1,0,540,1542.998720,25,0,34515.001280,642.800307,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,840,1602.601280,26,1,53314.602560,675.873126,hintandextended,lora,60 +on7,0,0,24,1,0,410,1590.001280,26,0,24547.001280,661.600717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2425.612800,26,0,-1.000000,1200.648192,hintandextended,lora,60 +on10,0,0,24,1,0,226,1586.001280,26,0,14464.001280,660.000717,hintandextended,lora,60 +on6,0,0,25,1,0,1200,1601.000000,26,1,74389.001280,666.000410,hintandextended,lora,60 +on8,0,0,24,1,0,780,1540.001280,26,0,48154.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,595,1596.000000,26,0,33973.001280,664.000410,hintandextended,lora,60 +on1,0,0,25,1,0,984,1601.201280,26,1,58390.001280,666.080922,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,44,1584.001280,26,0,2888.001280,659.200717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,347,1588.000000,26,0,21232.001280,660.800410,hintandextended,lora,60 +on5,0,0,24,1,0,1037,1557.001280,27,0,64735.001280,648.400717,hintandextended,lora,60 +on1,0,0,24,1,0,120,1540.001280,27,0,9577.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,828,1588.001280,27,0,49502.001280,660.800717,hintandextended,lora,60 +on8,0,0,24,1,0,322,1562.001280,27,0,19107.001280,650.400717,hintandextended,lora,60 +on2,0,0,24,1,0,443,1563.003840,27,0,26932.001280,650.802150,hintandextended,lora,60 +on10,0,0,24,1,0,1173,1573.002560,27,0,68602.001280,654.801434,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,605,1546.000000,27,0,38294.001280,644.000410,hintandextended,lora,60 +on6,0,0,24,1,0,720,1541.001280,27,0,46464.001280,650.960717,hintandextended,lora,60 +on0,1,10,24,0,0,0,2553.012800,27,0,-1.000000,1277.208192,hintandextended,lora,60 +on3,0,0,24,1,0,482,1542.001280,27,0,29060.001280,642.400717,hintandextended,lora,60 +on9,0,0,24,1,0,0,1541.000000,27,0,1637.001280,642.000410,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,874,1574.001280,28,0,53826.001280,655.200717,hintandextended,lora,60 +on8,0,0,24,1,0,335,1576.002560,28,0,18238.001280,656.545434,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1234,1574.001280,28,0,74257.001280,655.200717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,836,1596.001280,28,0,47488.001280,664.000717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2040.007680,28,0,-1.000000,969.604710,hintandextended,lora,60 +on10,0,0,25,1,0,1178,1600.001280,28,1,71583.001280,665.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,682,1563.000000,28,0,41071.001280,650.800410,hintandextended,lora,60 +on11,0,0,24,1,0,1140,1540.001280,29,0,68892.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,607,1547.001280,29,0,37286.001280,644.400717,hintandextended,lora,60 +on8,0,0,24,1,0,717,1598.001280,29,0,39950.001280,667.744717,hintandextended,lora,60 +on7,0,0,24,1,0,172,1592.001280,29,0,8164.001280,662.400717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,540,1540.001280,29,0,32682.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2087.007680,29,0,-1.000000,988.404301,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,758,1600.201280,29,1,45756.001280,665.680717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,26,1,0,1097,1660.001280,30,2,61886.001280,689.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,399,1601.001280,30,1,23330.001280,672.304717,hintandextended,lora,60 +on6,0,0,25,1,0,518,1602.200000,30,1,31814.001280,673.472410,hintandextended,lora,60 +on0,1,5,24,0,0,0,1940.006400,30,0,-1.000000,904.004198,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,331,1573.000000,30,0,21685.001280,656.784410,hintandextended,lora,60 +on5,0,0,25,1,0,458,1602.000000,30,1,26744.001280,669.824410,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,780,1540.001280,31,0,49683.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2035.607680,31,0,-1.000000,942.244506,hintandextended,lora,60 +on10,0,0,24,1,0,894,1594.001280,31,0,53346.001280,663.200717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,503,1563.001280,31,0,30297.001280,650.800717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,540,1540.001280,31,0,33420.001280,641.600717,hintandextended,lora,60 +on6,0,0,25,1,0,1140,1601.601280,31,1,69142.602560,666.289126,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,993,1574.001280,32,0,60960.001280,661.984717,hintandextended,lora,60 +on5,0,0,24,1,0,1062,1583.001280,32,0,63025.001280,668.240717,hintandextended,lora,60 +on8,0,0,25,0,0,1442,1500.300000,32,1,-1.000000,609.400000,hintandextended,lora,60 +on7,0,0,25,1,0,1346,1648.201280,32,1,76772.001280,684.880717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,900,1541.001280,32,0,55108.001280,642.160717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1969.006400,32,0,-1.000000,915.603584,hintandextended,lora,60 +on6,0,0,24,1,0,179,1599.001280,32,0,7673.001280,665.200717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1540.001280,33,0,61708.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,540,1602.600000,33,1,33331.602560,666.688819,hintandextended,lora,60 +on5,0,0,24,1,0,452,1573.001280,33,0,26137.001280,662.544717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,193,1553.001280,33,0,14173.001280,646.800717,hintandextended,lora,60 +on4,0,0,25,1,0,518,1600.201280,33,1,31302.001280,665.680717,hintandextended,lora,60 +on10,0,0,24,1,0,1080,1541.001280,33,0,65017.001280,651.440717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2091.608960,33,0,-1.000000,990.245427,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1415,1575.000000,34,0,83279.000000,655.600000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2241.608960,34,0,-1.000000,1075.845427,hintandextended,lora,60 +on12,0,0,24,1,0,579,1580.001280,34,0,35713.001280,666.784717,hintandextended,lora,60 +on11,0,0,25,1,0,647,1601.001280,34,1,41408.001280,675.440717,hintandextended,lora,60 +on7,0,0,25,1,0,300,1601.601280,34,1,19199.602560,666.289126,hintandextended,lora,60 +on8,0,0,24,1,0,1200,1540.001280,34,0,74537.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,840,1540.001280,34,0,53520.001280,641.600717,hintandextended,lora,60 +on10,0,0,25,1,0,597,1602.000000,34,1,36584.001280,675.584410,hintandextended,lora,60 +on4,0,0,24,1,0,720,1540.001280,35,0,46769.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,780,1601.601280,35,1,47136.602560,666.289126,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,641,1581.001280,35,0,39528.001280,658.000717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1200,1540.001280,35,0,72274.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1384,1544.000000,35,0,86465.000000,643.200000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2014.606400,35,0,-1.000000,933.843789,hintandextended,lora,60 +on0,1,8,24,0,0,0,2318.212800,36,0,-1.000000,1132.087987,hintandextended,lora,60 +on11,0,0,24,1,0,1014,1594.002560,36,0,60145.001280,663.201434,hintandextended,lora,60 +on1,0,0,24,1,0,484,1544.001280,36,0,31247.001280,643.200717,hintandextended,lora,60 +on9,0,0,24,1,0,1306,1587.001280,36,0,77492.001280,669.840717,hintandextended,lora,60 +on4,0,0,24,1,0,0,1540.001280,36,0,755.001280,641.600717,hintandextended,lora,60 +on12,0,0,25,1,0,1118,1600.201280,36,1,67903.001280,665.680717,hintandextended,lora,60 +on10,0,0,24,1,0,670,1550.001280,36,0,43298.001280,645.600717,hintandextended,lora,60 +on2,0,0,25,1,0,420,1602.601280,36,1,26331.602560,673.409126,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,1020,1602.600000,36,1,61664.602560,670.592614,hintandextended,lora,60 +on12,0,0,24,1,0,878,1579.001280,37,0,52093.001280,666.384717,hintandextended,lora,60 +on6,0,0,25,1,0,360,1602.601280,37,1,23007.602560,675.617126,hintandextended,lora,60 +on7,0,0,24,1,0,1320,1540.001280,37,0,81889.001280,641.600717,hintandextended,lora,60 +on8,0,0,25,1,0,120,1601.601280,37,1,8792.602560,666.289126,hintandextended,lora,60 +on2,0,0,25,1,0,518,1602.300000,37,1,32305.001280,677.368410,hintandextended,lora,60 +on5,0,0,25,0,0,1478,1500.200000,37,1,-1.000000,600.080000,hintandextended,lora,60 +on10,0,0,24,1,0,1395,1555.000000,37,0,84006.000000,647.600000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2539.212800,37,0,-1.000000,1246.088397,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,300,1541.001280,37,0,19381.001280,642.001126,hintandextended,lora,60 +on4,0,0,25,1,0,945,1600.001280,37,1,57160.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,1,0,780,1540.002560,37,0,49527.001280,641.601434,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,947,1587.001280,38,0,54342.001280,660.400717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,293,1594.001280,38,0,14932.001280,663.201126,hintandextended,lora,60 +on9,0,0,24,1,0,633,1573.001280,38,0,39547.001280,654.800717,hintandextended,lora,60 +on12,0,0,24,1,0,150,1570.001280,38,0,8251.001280,653.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,319,1560.000000,38,0,21047.001280,649.600410,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1940.006400,38,0,-1.000000,904.004198,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,803,1563.001280,39,0,50475.001280,650.800717,hintandextended,lora,60 +on4,0,0,24,1,0,926,1567.001280,39,0,56898.001280,653.424717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2040.007680,39,0,-1.000000,969.604506,hintandextended,lora,60 +on5,0,0,23,1,0,468,1588.001280,39,0,27815.001280,660.800717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,693,1573.001280,39,0,41703.001280,654.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,18,1559.000000,39,0,2794.001280,649.200410,hintandextended,lora,60 +on3,0,0,25,1,0,998,1600.201280,39,1,59810.001280,665.680717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,260,1560.001280,40,0,17452.001280,649.600717,hintandextended,lora,60 +on7,0,0,24,1,0,468,1588.001280,40,0,26137.001280,660.800717,hintandextended,lora,60 +on10,0,0,24,1,0,120,1540.003840,40,0,10111.001280,641.602150,hintandextended,lora,60 +on11,0,0,24,1,0,540,1541.001280,40,0,32925.001280,646.384717,hintandextended,lora,60 +on4,0,0,25,1,0,638,1600.201280,40,1,37077.001280,665.680717,hintandextended,lora,60 +on6,0,0,24,1,0,744,1564.001280,40,0,46606.001280,651.200717,hintandextended,lora,60 +on1,0,0,24,1,0,1380,1540.000000,40,0,86316.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2299.008960,40,0,-1.000000,1124.405427,hintandextended,lora,60 +on8,0,0,24,1,0,1177,1577.001280,40,0,69515.001280,656.400717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,16,1557.998720,41,0,1299.001280,648.800102,hintandextended,lora,60 +on9,0,0,24,1,0,720,1540.001280,41,0,45005.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1916.005120,41,0,-1.000000,868.803277,hintandextended,lora,60 +on4,0,0,24,1,0,240,1540.001280,41,0,14577.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,145,1565.001280,41,0,7627.001280,651.600717,hintandextended,lora,60 +on6,0,0,25,1,0,240,1602.600000,42,1,17396.602560,666.688819,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,0,0,1478,1500.000000,42,1,-1.000000,600.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2110.210240,42,0,-1.000000,997.686758,hintandextended,lora,60 +on11,0,0,25,1,0,159,1601.000000,42,1,10376.001280,666.160410,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,480,1600.001280,42,1,31225.001280,665.600717,hintandextended,lora,60 +on7,0,0,25,1,0,556,1600.001280,42,1,34640.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,1,0,0,1542.601280,42,1,380.602560,642.689126,hintandextended,lora,60 +on2,0,0,24,1,0,99,1581.001280,42,0,6124.001280,667.184922,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,459,1600.001280,43,1,28778.001280,665.600717,hintandextended,lora,60 +on2,0,0,25,1,0,300,1601.601280,43,1,20073.602560,666.289126,hintandextended,lora,60 +on7,0,0,24,1,0,38,1578.001280,43,0,271.001280,656.800717,hintandextended,lora,60 +on6,0,0,24,1,0,1140,1540.001280,43,0,71404.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,399,1580.002560,43,0,24757.001280,660.545434,hintandextended,lora,60 +on11,0,0,24,1,0,845,1545.001280,43,0,53493.001280,643.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1432,1592.000000,43,0,86080.000000,662.400000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2169.608960,43,0,-1.000000,1047.045427,hintandextended,lora,60 +on0,1,9,24,0,0,0,2395.011520,44,0,-1.000000,1188.407270,hintandextended,lora,60 +on10,0,0,24,1,0,60,1543.000000,44,0,4529.001280,656.080410,hintandextended,lora,60 +on2,0,0,24,1,0,420,1541.000000,44,0,28701.001280,642.000410,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1080,1541.001280,44,0,67813.001280,645.200717,hintandextended,lora,60 +on3,0,0,24,1,0,998,1578.001280,44,0,61081.001280,656.800717,hintandextended,lora,60 +on9,0,0,24,1,0,540,1540.001280,44,0,32614.001280,641.600717,hintandextended,lora,60 +on4,0,0,26,1,0,916,1661.201280,44,2,55191.001280,699.264717,hintandextended,lora,60 +on12,0,0,24,1,0,22,1563.000000,44,0,1698.001280,650.800410,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,0,0,1475,1500.000000,44,1,-1.000000,600.000000,hintandextended,lora,60 +on7,0,0,25,1,0,173,1600.001280,44,1,9801.001280,665.808717,hintandextended,lora,60 +on6,0,0,24,1,0,653,1593.001280,44,0,38721.001280,662.800717,hintandextended,lora,60 +on4,0,0,24,1,0,1336,1556.001280,45,0,79996.001280,648.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2140.008960,45,0,-1.000000,1035.205837,hintandextended,lora,60 +on2,0,0,24,1,0,360,1540.001280,45,0,21766.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,547,1548.001280,45,0,33154.001280,644.801126,hintandextended,lora,60 +on9,0,0,24,1,0,85,1565.002560,45,0,4854.001280,651.601434,hintandextended,lora,60 +on8,0,0,24,1,0,1010,1590.001280,45,0,58010.001280,661.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1125,1585.001280,45,0,66697.001280,659.600717,hintandextended,lora,60 +on3,0,0,24,1,0,625,1566.000000,45,0,37752.001280,652.000410,hintandextended,lora,60 +on0,1,7,24,0,0,0,2193.610240,46,0,-1.000000,1056.646349,hintandextended,lora,60 +on8,0,0,25,1,0,1313,1600.201280,46,1,77205.001280,665.680717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,87,1568.000000,46,0,6488.001280,652.800410,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1200,1601.602560,46,2,74785.602560,675.729434,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,478,1598.001280,46,0,27238.001280,664.800717,hintandextended,lora,60 +on3,0,0,24,1,0,976,1557.000000,46,0,60612.001280,648.400410,hintandextended,lora,60 +on9,0,0,24,1,0,480,1540.001280,46,0,29642.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,905,1547.001280,46,0,54818.001280,653.808717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,420,1601.601280,47,1,27252.602560,666.289126,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,300,1540.001280,47,0,21613.001280,641.600717,hintandextended,lora,60 +on0,1,5,24,0,0,0,2008.607680,47,0,-1.000000,931.444506,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1009,1589.001280,47,0,60134.001280,661.200717,hintandextended,lora,60 +on10,0,0,24,1,0,811,1571.001280,47,0,50034.001280,654.000717,hintandextended,lora,60 +on7,0,0,24,1,0,262,1562.001280,47,0,16112.001280,650.400717,hintandextended,lora,60 +on2,0,0,24,1,0,765,1585.001280,48,0,43875.001280,659.600717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1977.006400,48,0,-1.000000,918.803584,hintandextended,lora,60 +on12,0,0,24,1,0,0,1541.001280,48,0,2136.001280,651.184717,hintandextended,lora,60 +on6,0,0,24,1,0,940,1580.001280,48,0,56850.001280,657.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,188,1548.001280,48,0,12844.001280,644.800717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,104,1600.001280,48,1,4151.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,677,1557.001280,49,0,41115.001280,648.400717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1286,1566.001280,49,0,77645.001280,652.000717,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,49,0,85575.000000,641.600000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2137.607680,49,0,-1.000000,1008.644710,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,60,1601.601280,49,1,4408.602560,666.289126,hintandextended,lora,60 +on9,0,0,24,1,0,427,1548.000000,49,0,25543.001280,644.800410,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1540.001280,49,0,68661.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,583,1601.201280,50,1,35741.001280,668.160922,hintandextended,lora,60 +on0,1,8,24,0,0,0,2292.010240,50,0,-1.000000,1121.606349,hintandextended,lora,60 +on2,0,0,24,1,0,24,1564.002560,50,0,3774.001280,651.201434,hintandextended,lora,60 +on3,0,0,24,1,0,1080,1540.001280,50,0,66339.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,725,1545.001280,50,0,46587.001280,643.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,480,1541.001280,50,0,28996.001280,651.184717,hintandextended,lora,60 +on9,0,0,24,1,0,45,1585.001280,50,0,1027.001280,659.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1140,1540.001280,50,0,71227.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,120,1540.002560,50,0,9324.001280,641.601434,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,180,1541.001280,51,0,12833.001280,649.200717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2322.611520,51,0,-1.000000,1133.847066,hintandextended,lora,60 +on6,0,0,24,1,0,717,1597.001280,51,0,42428.001280,664.400717,hintandextended,lora,60 +on9,0,0,25,1,0,1014,1600.001280,51,1,60181.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,1,0,1355,1575.001280,51,0,82614.001280,655.600717,hintandextended,lora,60 +on11,0,0,24,1,0,929,1570.998720,51,0,55722.001280,663.183898,hintandextended,lora,60 +on5,0,0,25,1,0,1194,1600.001280,51,1,75080.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,420,1540.001280,51,0,27668.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1080,1602.601280,51,1,67994.602560,675.873126,hintandextended,lora,60 +on8,0,0,25,1,0,360,1602.600000,52,1,23539.602560,666.688819,hintandextended,lora,60 +on9,0,0,25,1,0,0,1601.601280,52,1,1783.602560,666.289126,hintandextended,lora,60 +on7,0,0,25,1,0,1182,1600.001280,52,1,70990.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,614,1554.002560,52,0,39724.001280,647.201434,hintandextended,lora,60 +on12,0,0,24,1,0,540,1542.000000,52,0,33249.001280,651.584410,hintandextended,lora,60 +on0,1,9,24,0,0,0,2404.214080,52,0,-1.000000,1192.089114,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,1409,1640.001280,52,1,80396.001280,681.600717,hintandextended,lora,60 +on11,0,0,24,1,0,297,1598.001280,52,0,15016.001280,668.704717,hintandextended,lora,60 +on4,0,0,25,1,0,338,1600.001280,52,1,19891.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,730,1553.000000,52,0,44686.001280,665.424410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,540,1542.000000,53,0,33160.001280,649.440410,hintandextended,lora,60 +on11,0,0,25,1,0,352,1601.002560,53,1,21318.001280,675.185434,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,240,1541.001280,53,0,15738.001280,651.184717,hintandextended,lora,60 +on3,0,0,24,1,0,600,1540.001280,53,0,38022.001280,641.600717,hintandextended,lora,60 +on9,0,0,25,1,0,416,1600.001280,53,1,24903.001280,665.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1068,1588.001280,53,0,61894.001280,660.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2239.008960,53,0,-1.000000,1074.805427,hintandextended,lora,60 +on1,0,0,24,1,0,683,1563.001280,53,0,42659.001280,650.800717,hintandextended,lora,60 +on12,0,0,24,1,0,1349,1569.001280,54,0,80630.001280,653.200717,hintandextended,lora,60 +on6,0,0,24,1,0,0,1540.001280,54,0,1152.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,457,1577.001280,54,0,28923.001280,656.400717,hintandextended,lora,60 +on3,0,0,25,1,0,720,1600.603840,54,1,45818.602560,665.890355,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1073,1593.001280,54,0,61560.001280,662.800717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2092.608960,54,0,-1.000000,990.645632,hintandextended,lora,60 +on1,0,0,25,1,0,780,1601.000000,54,1,49012.001280,666.000410,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,660,1542.000000,55,0,42319.001280,651.840410,hintandextended,lora,60 +on11,0,0,24,1,0,1080,1540.001280,55,0,66928.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,960,1540.001280,55,0,59472.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,401,1581.001280,55,0,24341.001280,658.000717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,502,1562.001280,55,0,31014.001280,650.400717,hintandextended,lora,60 +on6,0,0,24,1,0,540,1540.001280,55,0,33178.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2135.007680,55,0,-1.000000,1007.604506,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,0,0,1475,1500.200000,56,1,-1.000000,600.288000,hintandextended,lora,60 +on5,0,0,25,0,0,1478,1500.000000,56,1,-1.000000,600.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1178,1600.001280,56,1,72060.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1200,1540.001280,56,0,75551.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1769.003840,56,0,-1.000000,784.402150,hintandextended,lora,60 +on12,0,0,24,1,0,1074,1596.001280,56,0,64965.001280,681.408717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,507,1587.001280,57,1,31062.001280,672.528717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1965.006400,57,0,-1.000000,914.003789,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1165,1565.001280,57,0,68616.001280,651.600717,hintandextended,lora,60 +on7,0,0,24,1,0,420,1541.001280,57,0,25963.001280,644.464717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,0,0,1481,1500.200000,57,1,-1.000000,600.080000,hintandextended,lora,60 +on8,0,0,25,0,0,1478,1500.000000,57,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,570,1570.001280,57,0,35282.001280,653.600717,hintandextended,lora,60 +on2,0,0,25,1,0,938,1600.001280,57,1,58983.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,689,1569.001280,58,0,41786.001280,653.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,9,1550.000000,58,0,3400.001280,645.600410,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,600,1540.002560,58,0,36512.001280,641.601434,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1964.006400,58,0,-1.000000,913.604198,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1068,1588.001280,58,0,63410.001280,660.800717,hintandextended,lora,60 +on6,0,0,24,1,0,865,1565.002560,58,0,50597.001280,651.601434,hintandextended,lora,60 +on8,0,0,24,1,0,0,1541.001280,59,0,559.001280,645.904717,hintandextended,lora,60 +on3,0,0,24,1,0,1200,1540.001280,59,0,75063.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,888,1589.001280,59,0,51291.001280,670.384717,hintandextended,lora,60 +on10,0,0,24,1,0,360,1541.000000,59,0,24612.001280,642.000410,hintandextended,lora,60 +on4,0,0,24,1,0,240,1540.001280,59,0,17266.001280,641.600717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2488.011520,59,0,-1.000000,1225.606861,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1080,1540.001280,59,0,67414.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,540,1540.001280,59,0,35672.001280,641.600717,hintandextended,lora,60 +on7,0,0,25,1,0,943,1600.001280,59,1,55842.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,99,1600.002560,59,1,5618.001280,665.601434,hintandextended,lora,60 +on1,0,0,24,1,0,1080,1540.001280,60,0,66755.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,118,1599.001280,60,0,4709.001280,674.384717,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1541.001280,60,0,69345.001280,651.184717,hintandextended,lora,60 +on8,0,0,25,1,0,480,1603.598720,60,1,32500.602560,667.088512,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,765,1585.001280,60,0,44033.001280,659.600717,hintandextended,lora,60 +on11,0,0,25,1,0,161,1600.001280,60,1,9434.001280,665.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2218.610240,60,0,-1.000000,1066.646349,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,1259,1600.001280,60,1,75183.001280,665.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,488,1548.001280,61,0,32335.001280,644.800717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,660,1603.600000,61,1,43271.602560,668.848819,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,60,1604.598720,61,1,6961.602560,672.928717,hintandextended,lora,60 +on0,1,4,24,0,0,0,1890.207680,61,0,-1.000000,858.485734,hintandextended,lora,60 +on2,0,0,24,1,0,589,1589.002560,61,0,34899.001280,661.201434,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,951,1591.001280,62,0,56862.001280,662.000717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1096,1556.001280,62,0,66026.001280,648.000717,hintandextended,lora,60 +on9,0,0,24,1,0,1423,1583.000000,62,0,84946.000000,658.800000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1947.005120,62,0,-1.000000,906.802867,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,75,1555.001280,62,0,4275.001280,647.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,480,1540.001280,62,0,30227.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,1065,1585.001280,63,0,61801.001280,659.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1167,1567.001280,63,0,70195.001280,652.400717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,581,1582.001280,63,0,34400.001280,665.600922,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2381.611520,63,0,-1.000000,1157.447066,hintandextended,lora,60 +on6,0,0,24,1,0,360,1540.001280,63,0,23669.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,600,1540.001280,63,0,36727.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,280,1581.998720,63,0,15002.001280,658.400102,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,1320,1600.602560,63,1,80454.602560,665.889434,hintandextended,lora,60 +on5,0,0,24,1,0,1080,1540.001280,63,0,65101.001280,641.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2169.008960,64,0,-1.000000,1046.805222,hintandextended,lora,60 +on12,0,0,24,1,0,206,1566.001280,64,0,14319.001280,652.000717,hintandextended,lora,60 +on8,0,0,24,1,0,240,1541.001280,64,0,14609.001280,651.184717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,349,1601.201280,64,1,19818.001280,675.264717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1540.001280,64,0,61448.001280,641.600717,hintandextended,lora,60 +on2,0,0,25,1,0,415,1600.001280,64,1,23222.001280,665.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,900,1540.001280,64,0,56548.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,543,1544.000000,64,0,34917.001280,643.200410,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,26,1,0,1096,1660.201280,65,2,64392.001280,689.680717,hintandextended,lora,60 +on3,0,0,24,1,0,300,1540.001280,65,0,19864.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,278,1600.201280,65,1,17393.001280,665.680717,hintandextended,lora,60 +on9,0,0,27,1,0,812,1721.500000,65,3,46480.001280,722.200410,hintandextended,lora,60 +on7,0,0,24,1,0,63,1544.001280,65,0,6528.001280,647.648717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2394.011520,65,0,-1.000000,1188.007270,hintandextended,lora,60 +on11,0,0,24,1,0,221,1584.000000,65,0,14263.001280,667.488410,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,900,1542.000000,65,0,54677.001280,651.584410,hintandextended,lora,60 +on6,0,0,25,0,0,1479,1500.000000,65,1,-1.000000,600.064000,hintandextended,lora,60 +on1,0,0,25,1,0,180,1602.000000,65,1,10848.001280,675.584410,hintandextended,lora,60 +on12,0,0,24,1,0,610,1550.001280,65,0,39681.001280,645.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,60,1540.001280,66,0,6790.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,240,1540.001280,66,0,15602.001280,641.600717,hintandextended,lora,60 +on12,0,0,25,1,0,1269,1600.301280,66,1,78816.001280,673.080717,hintandextended,lora,60 +on2,0,0,25,0,0,1478,1500.200000,66,1,-1.000000,600.080000,hintandextended,lora,60 +on1,0,0,24,1,0,421,1541.401280,66,0,27679.001280,642.224717,hintandextended,lora,60 +on5,0,0,24,1,0,125,1545.001280,66,0,7778.001280,643.600717,hintandextended,lora,60 +on3,0,0,24,1,0,1375,1595.001280,66,0,82472.001280,663.600717,hintandextended,lora,60 +on4,0,0,25,1,0,518,1600.201280,66,1,31928.001280,665.888717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2453.011520,66,0,-1.000000,1211.606451,hintandextended,lora,60 +on8,0,0,24,1,0,1225,1566.001280,66,0,75143.001280,660.224717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,900,1540.001280,66,0,57423.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1153,1553.001280,67,0,69645.001280,646.800717,hintandextended,lora,60 +on3,0,0,24,1,0,43,1583.001280,67,0,2956.001280,658.800717,hintandextended,lora,60 +on5,0,0,24,1,0,960,1540.001280,67,0,58748.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2280.008960,67,0,-1.000000,1091.205427,hintandextended,lora,60 +on6,0,0,24,1,0,300,1540.001280,67,0,20213.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,60,1541.000000,67,0,6170.001280,642.000410,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,540,1541.000000,67,0,33237.001280,642.000410,hintandextended,lora,60 +on2,0,0,24,1,0,167,1587.001280,67,0,9825.001280,660.400717,hintandextended,lora,60 +on7,0,0,24,1,0,0,1540.002560,68,0,1179.001280,641.601434,hintandextended,lora,60 +on9,0,0,24,1,0,500,1561.001280,68,0,32397.001280,659.184717,hintandextended,lora,60 +on10,0,0,25,1,0,477,1600.001280,68,1,28405.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,1,0,967,1547.001280,68,0,58670.001280,644.400717,hintandextended,lora,60 +on1,0,0,24,1,0,1200,1540.001280,68,0,75260.001280,641.600717,hintandextended,lora,60 +on3,0,0,25,1,0,1260,1600.602560,68,1,78149.602560,665.889434,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2385.612800,68,0,-1.000000,1184.647782,hintandextended,lora,60 +on11,0,0,24,1,0,390,1572.998720,68,0,22286.001280,663.984102,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1340,1560.001280,68,0,82566.001280,649.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,593,1600.201280,68,1,33742.001280,665.680717,hintandextended,lora,60 +on12,0,0,24,1,0,1344,1564.001280,69,0,79473.001280,651.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,319,1559.001280,69,0,19553.001280,649.200717,hintandextended,lora,60 +on0,1,4,24,0,0,0,1862.606400,69,0,-1.000000,847.443584,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,240,1600.602560,69,1,18133.602560,665.889434,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,471,1591.001280,69,0,28385.001280,662.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,540,1601.601280,70,1,33929.602560,666.289126,hintandextended,lora,60 +on12,0,0,24,1,0,307,1547.001280,70,0,18544.001280,644.400717,hintandextended,lora,60 +on9,0,0,24,1,0,660,1540.001280,70,0,42535.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,420,1540.001280,70,0,26662.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,1356,1577.001280,70,0,81752.001280,660.304717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,1418,1600.000000,70,1,84934.000000,665.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2294.610240,70,0,-1.000000,1122.645939,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,787,1547.001280,70,0,47188.001280,644.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,35,1575.001280,70,0,213.001280,655.600717,hintandextended,lora,60 +on10,0,0,25,1,0,639,1600.001280,71,1,39272.001280,665.600717,hintandextended,lora,60 +on8,0,0,24,1,0,213,1575.000000,71,0,13428.001280,655.600614,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1019,1600.001280,71,1,61175.001280,665.600717,hintandextended,lora,60 +on5,0,0,25,1,0,60,1601.601280,71,1,6291.602560,666.289126,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,480,1601.602560,71,1,32237.602560,669.233434,hintandextended,lora,60 +on12,0,0,25,1,0,578,1601.002560,71,1,35330.001280,667.025434,hintandextended,lora,60 +on0,1,7,24,0,0,0,2255.211520,71,0,-1.000000,1081.287475,hintandextended,lora,60 +on3,0,0,25,1,0,900,1601.002560,71,1,57132.001280,675.281434,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,0,0,1489,1500.200000,71,1,-1.000000,600.288000,hintandextended,lora,60 +on8,0,0,24,1,0,853,1553.002560,72,0,52487.001280,646.801434,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1262,1542.998720,72,0,77777.001280,642.799898,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,385,1566.998720,72,0,23723.001280,652.400102,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,600,1541.001280,72,0,36279.001280,651.440717,hintandextended,lora,60 +on0,1,4,24,0,0,0,1859.005120,72,0,-1.000000,846.003891,hintandextended,lora,60 +on5,0,0,24,1,0,1260,1541.000000,73,0,77569.001280,642.000410,hintandextended,lora,60 +on6,0,0,24,1,0,0,1540.001280,73,0,1038.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,174,1595.000000,73,0,8848.001280,663.600410,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,1020,1602.601280,73,1,63372.602560,672.993126,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2027.607680,73,0,-1.000000,939.045120,hintandextended,lora,60 +on9,0,0,25,1,0,1118,1601.201280,73,1,68970.001280,667.520922,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,16,1556.001280,74,0,1096.001280,648.000717,hintandextended,lora,60 +on1,0,0,24,1,0,447,1568.000000,74,0,25737.001280,652.800410,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2251.211520,74,0,-1.000000,1079.687066,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1540.001280,74,0,70766.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,1020,1600.602560,74,1,63971.602560,665.889434,hintandextended,lora,60 +on3,0,0,25,1,0,960,1603.601280,74,1,58427.602560,677.297126,hintandextended,lora,60 +on8,0,0,24,1,0,360,1540.001280,74,0,23361.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,1118,1600.201280,74,1,66130.001280,665.680717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1320,1540.001280,75,0,79383.001280,641.600717,hintandextended,lora,60 +on10,0,0,25,1,0,407,1601.200000,75,1,23981.001280,666.080410,hintandextended,lora,60 +on4,0,0,24,1,0,995,1576.000000,75,0,60283.001280,656.000410,hintandextended,lora,60 +on12,0,0,24,1,0,300,1542.000000,75,0,19047.001280,651.584410,hintandextended,lora,60 +on3,0,0,24,1,0,479,1599.001280,75,0,26387.001280,665.200717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,790,1550.001280,75,0,47763.001280,645.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,120,1601.602560,75,1,9497.602560,666.289843,hintandextended,lora,60 +on11,0,0,24,1,0,600,1541.001280,75,0,39197.001280,648.080717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2358.611520,75,0,-1.000000,1148.247475,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,85,1565.001280,76,0,4326.001280,651.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1139,1600.001280,76,0,67470.001280,672.160717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,993,1573.001280,76,0,58106.001280,654.800717,hintandextended,lora,60 +on1,0,0,24,1,0,1075,1595.001280,76,0,62288.001280,663.600717,hintandextended,lora,60 +on9,0,0,24,1,0,574,1574.002560,76,0,35295.001280,655.201434,hintandextended,lora,60 +on0,1,6,24,0,0,0,2040.007680,76,0,-1.000000,969.604506,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,661,1541.001280,76,0,40483.001280,642.000717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,8,1550.998720,77,0,3088.001280,655.184102,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,105,1601.001280,77,1,5477.001280,668.080922,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1141,1541.001280,77,0,69393.001280,642.000717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1385,1545.000000,77,0,86291.000000,643.600000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1840.003840,77,0,-1.000000,838.402765,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,913,1553.001280,78,0,57535.001280,646.800717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,757,1577.001280,78,0,45873.001280,656.400717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1260,1541.001280,78,0,76082.001280,649.040717,hintandextended,lora,60 +on3,0,0,24,1,0,627,1568.002560,78,0,37717.001280,662.241434,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1424,1584.000000,78,0,86409.000000,659.200000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1970.005120,78,0,-1.000000,916.003072,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,814,1600.301280,79,1,48735.001280,666.680717,hintandextended,lora,60 +on8,0,0,25,1,0,120,1602.601280,79,1,7864.602560,666.689536,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,660,1540.001280,79,0,42698.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,724,1545.001280,79,0,45805.001280,652.528717,hintandextended,lora,60 +on12,0,0,25,1,0,1277,1600.301280,79,1,76945.001280,671.064717,hintandextended,lora,60 +on1,0,0,25,1,0,1238,1601.001280,79,1,73161.001280,670.864717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2111.608960,79,0,-1.000000,998.245632,hintandextended,lora,60 +on12,0,0,25,1,0,420,1601.601280,80,1,27447.602560,666.289126,hintandextended,lora,60 +on9,0,0,24,1,0,619,1560.998720,80,0,37108.001280,650.000102,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,0,0,1478,1500.000000,80,1,-1.000000,600.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2266.610240,80,0,-1.000000,1085.846554,hintandextended,lora,60 +on2,0,0,24,1,0,180,1541.002560,80,0,11794.001280,642.545434,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1200,1540.001280,80,0,72853.001280,641.600717,hintandextended,lora,60 +on1,0,0,25,0,0,1479,1500.000000,80,1,-1.000000,600.208000,hintandextended,lora,60 +on3,0,0,24,1,0,152,1572.001280,80,0,10875.001280,654.400717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1140,1540.001280,80,0,68772.001280,641.600717,hintandextended,lora,60 +on10,0,0,25,1,0,279,1601.001280,80,1,16276.001280,675.648717,hintandextended,lora,60 +on12,0,0,24,1,0,310,1551.000000,81,0,19951.001280,646.000410,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,630,1570.001280,81,0,36353.001280,653.600717,hintandextended,lora,60 +on8,0,0,24,1,0,154,1575.002560,81,0,9832.001280,664.785434,hintandextended,lora,60 +on5,0,0,25,1,0,1008,1600.001280,81,1,59258.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,hintandextended,lora,60 +on9,0,0,24,1,0,382,1563.001280,81,0,22299.001280,650.801126,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2040.007680,81,0,-1.000000,969.605120,hintandextended,lora,60 +on2,0,0,24,1,0,1291,1571.001280,81,0,77202.001280,654.000717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,446,1566.001280,82,0,25701.001280,652.000717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,822,1656.001280,82,1,43483.001280,688.000717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,705,1586.000000,82,0,41173.001280,660.000410,hintandextended,lora,60 +on4,0,0,25,1,0,1200,1602.601280,82,1,75518.602560,676.129126,hintandextended,lora,60 +on3,0,0,24,1,0,180,1541.001280,82,0,13174.001280,651.184717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2045.608960,82,0,-1.000000,971.845427,hintandextended,lora,60 +on2,0,0,24,1,0,275,1575.001280,82,0,17368.001280,655.600717,hintandextended,lora,60 +on6,0,0,24,1,0,84,1564.001280,83,0,5361.001280,651.200717,hintandextended,lora,60 +on1,0,0,25,1,0,1121,1600.001280,83,1,66093.001280,665.600717,hintandextended,lora,60 +on7,0,0,25,1,0,226,1600.001280,83,1,12900.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,1,0,720,1540.001280,83,0,45649.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1038,1559.001280,83,0,62676.001280,658.384717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,18,1559.001280,83,0,3329.001280,649.201126,hintandextended,lora,60 +on4,0,0,24,1,0,1320,1540.001280,83,0,80291.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,1380,1540.000000,83,0,85714.000000,641.600000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2498.010240,83,0,-1.000000,1229.606144,hintandextended,lora,60 +on5,0,0,24,1,0,120,1541.001280,83,0,8646.001280,651.184717,hintandextended,lora,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,900,1540.001280,84,0,56413.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,1,0,707,1659.001280,84,1,38157.001280,689.200717,hintandextended,lora,60 +on2,0,0,24,1,0,340,1582.000000,84,0,21253.001280,667.104410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,442,1562.001280,84,0,28509.001280,650.400717,hintandextended,lora,60 +on4,0,0,24,1,0,780,1540.001280,84,0,49218.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,60,1540.001280,84,0,5152.001280,641.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2248.008960,84,0,-1.000000,1078.405222,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,398,1601.201280,84,1,24346.001280,675.264717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,596,1598.000000,85,0,35915.001280,673.984410,hintandextended,lora,60 +on8,0,0,24,1,0,669,1549.002560,85,0,41411.001280,645.201434,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,0,0,1485,1500.000000,85,1,-1.000000,600.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1071,1591.001280,85,0,64411.001280,662.000717,hintandextended,lora,60 +on0,1,4,24,0,0,0,1890.005120,85,0,-1.000000,858.403277,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1320,1540.001280,85,0,81684.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2437.011520,86,0,-1.000000,1205.206656,hintandextended,lora,60 +on2,0,0,24,1,0,660,1540.001280,86,0,40979.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,425,1545.002560,86,0,25812.001280,643.601434,hintandextended,lora,60 +on8,0,0,24,1,0,831,1591.001280,86,0,47165.001280,662.000717,hintandextended,lora,60 +on1,0,0,25,0,0,1487,1500.000000,86,1,-1.000000,600.000000,hintandextended,lora,60 +on12,0,0,25,1,0,304,1601.301280,86,1,20737.001280,684.072717,hintandextended,lora,60 +on10,0,0,24,1,0,1320,1540.001280,86,0,81630.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,0,0,1478,1500.200000,86,1,-1.000000,600.080000,hintandextended,lora,60 +on6,0,0,24,1,0,588,1588.001280,86,0,35983.001280,660.800717,hintandextended,lora,60 +on5,0,0,24,1,0,262,1563.001280,86,0,15065.001280,659.248717,hintandextended,lora,60 +on3,0,0,24,1,0,997,1577.001280,86,0,60758.001280,656.400717,hintandextended,lora,60 +on11,0,0,24,1,0,368,1548.001280,86,0,22169.001280,644.800717,hintandextended,lora,60 +on10,0,0,24,1,0,1161,1561.001280,87,0,69831.001280,650.000717,hintandextended,lora,60 +on1,0,0,24,1,0,932,1572.001280,87,0,55786.001280,654.400717,hintandextended,lora,60 +on4,0,0,24,1,0,1397,1557.000000,87,0,83709.000000,648.400000,hintandextended,lora,60 +on0,1,10,24,0,0,0,2597.011520,87,0,-1.000000,1294.806451,hintandextended,lora,60 +on8,0,0,24,1,0,660,1540.001280,87,0,40173.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,720,1540.001280,87,0,43697.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,60,1540.001280,87,0,5605.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,322,1562.001280,87,0,18975.001280,650.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,58,1598.001280,87,0,757.001280,664.800717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,384,1564.001280,87,0,24145.001280,651.200717,hintandextended,lora,60 +on5,0,0,24,1,0,540,1540.001280,87,0,36144.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,616,1600.201280,88,1,39525.001280,665.680717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,0,1540.001280,88,0,3470.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2086.608960,88,0,-1.000000,988.245837,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,379,1559.001280,88,0,21925.001280,649.200717,hintandextended,lora,60 +on2,0,0,24,1,0,192,1552.002560,88,0,13525.001280,646.401434,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,480,1603.600000,88,1,29306.602560,671.249024,hintandextended,lora,60 +on7,0,0,25,1,0,540,1600.001280,88,1,33564.001280,665.600717,hintandextended,lora,60 +on6,0,0,25,1,0,960,1601.000000,89,1,61105.001280,666.000410,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,120,1541.000000,89,0,7570.001280,642.000410,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,24,1564.001280,89,0,1383.001280,651.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,60,1541.003840,89,0,4017.001280,644.466150,hintandextended,lora,60 +on1,0,0,25,1,0,938,1601.002560,89,1,56378.001280,675.441638,hintandextended,lora,60 +on0,1,5,24,0,0,0,2055.006400,89,0,-1.000000,950.004813,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,510,1570.001280,90,0,29527.001280,653.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1019,1599.001280,90,0,60616.001280,665.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1264,1545.001280,90,0,78489.001280,651.824717,hintandextended,lora,60 +on4,0,0,24,1,0,360,1540.001280,90,0,25229.001280,641.600717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1957.006400,90,0,-1.000000,910.803584,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,1358,1600.001280,90,1,82936.001280,665.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1320,1540.001280,91,0,81897.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2142.007680,91,0,-1.000000,1010.404710,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,487,1600.301280,91,1,31647.001280,673.624717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,240,1540.003840,91,0,17528.001280,641.602150,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,0,0,1478,1500.000000,91,1,-1.000000,600.000000,hintandextended,lora,60 +on3,0,0,24,1,0,420,1541.001280,91,0,26911.001280,649.488717,hintandextended,lora,60 +on2,0,0,24,1,0,354,1594.001280,91,0,18960.001280,663.200717,hintandextended,lora,60 +on8,0,0,24,1,0,1140,1540.001280,91,0,70830.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,480,1601.603840,92,1,31031.602560,666.290560,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2088.607680,92,0,-1.000000,963.445530,hintandextended,lora,60 +on11,0,0,24,1,0,634,1575.001280,92,0,36862.001280,657.200922,hintandextended,lora,60 +on12,0,0,24,1,0,60,1540.002560,92,0,6157.001280,641.601434,hintandextended,lora,60 +on1,0,0,24,1,0,1020,1541.000000,92,0,62221.001280,642.000410,hintandextended,lora,60 +on4,0,0,25,0,0,1478,1500.000000,92,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,1118,1600.201280,92,1,68566.001280,665.888717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,600,1540.001280,93,0,39402.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,508,1568.002560,93,0,32191.001280,652.801434,hintandextended,lora,60 +on7,0,0,25,1,0,120,1602.002560,93,1,9294.602560,666.513843,hintandextended,lora,60 +on12,0,0,25,1,0,218,1600.201280,93,1,13052.001280,665.680717,hintandextended,lora,60 +on4,0,0,24,1,0,244,1544.001280,93,0,15213.001280,643.200717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,60,1540.001280,93,0,5752.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,900,1541.000000,93,0,56116.001280,642.000410,hintandextended,lora,60 +on0,1,8,24,0,0,0,2341.611520,93,0,-1.000000,1141.447270,hintandextended,lora,60 +on8,0,0,24,1,0,1001,1581.001280,93,0,60847.001280,658.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,780,1540.001280,94,0,49018.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,349,1589.001280,94,0,19496.001280,661.200717,hintandextended,lora,60 +on2,0,0,24,1,0,629,1571.000000,94,0,37143.001280,663.440410,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1300,1580.001280,94,0,78251.001280,657.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1866.005120,94,0,-1.000000,848.803072,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,326,1566.002560,95,0,20321.001280,652.001434,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1432,1592.000000,95,0,84479.000000,662.400000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2257.610240,95,0,-1.000000,1107.846554,hintandextended,lora,60 +on4,0,0,24,1,0,0,1540.001280,95,0,193.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,477,1602.000000,95,1,29553.001280,670.304410,hintandextended,lora,60 +on8,0,0,25,1,0,360,1602.602560,95,1,22358.602560,676.193638,hintandextended,lora,60 +on12,0,0,24,1,0,1003,1583.001280,95,0,59357.001280,658.800717,hintandextended,lora,60 +on11,0,0,25,1,0,578,1600.001280,95,1,35769.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,1,0,96,1577.000000,95,0,5792.001280,656.400410,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,720,1540.001280,96,0,44553.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1203,1543.001280,96,0,74555.001280,642.800717,hintandextended,lora,60 +on4,0,0,24,1,0,1095,1555.001280,96,0,67214.001280,647.600717,hintandextended,lora,60 +on7,0,0,24,1,0,599,1599.001280,96,0,36201.001280,665.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,0,1540.001280,96,0,2503.001280,641.600717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1975.006400,96,0,-1.000000,918.003584,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1196,1596.001280,97,0,70534.001280,664.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,99,1601.001280,97,1,5820.001280,675.184717,hintandextended,lora,60 +on11,0,0,25,1,0,420,1602.601280,97,1,28739.602560,676.129126,hintandextended,lora,60 +on5,0,0,24,1,0,298,1598.001280,97,0,17979.001280,664.800717,hintandextended,lora,60 +on8,0,0,24,1,0,1080,1540.001280,97,0,66592.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2149.610240,97,0,-1.000000,1039.046144,hintandextended,lora,60 +on7,0,0,24,1,0,56,1597.001280,97,0,2294.001280,666.864717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,171,1600.002560,97,1,10682.001280,665.601434,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1260,1540.001280,98,0,76634.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,786,1546.001280,98,0,47307.001280,644.000717,hintandextended,lora,60 +on11,0,0,24,1,0,1020,1540.001280,98,0,62486.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,1236,1576.001280,98,0,72539.001280,656.000717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1382,1542.000000,98,0,85110.000000,642.400000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2275.007680,98,0,-1.000000,1089.204506,hintandextended,lora,60 +on1,0,0,24,1,0,983,1563.001280,98,0,60202.001280,650.800717,hintandextended,lora,60 +on3,0,0,24,1,0,600,1541.000000,98,0,37596.001280,642.000410,hintandextended,lora,60 +on1,0,0,24,1,0,668,1548.001280,99,0,42193.001280,644.800717,hintandextended,lora,60 +on8,0,0,25,1,0,0,1600.602560,99,1,962.602560,665.889434,hintandextended,lora,60 +on11,0,0,24,1,0,83,1563.001280,99,0,5310.001280,650.800717,hintandextended,lora,60 +on2,0,0,25,1,0,780,1603.601280,99,1,47211.602560,676.849126,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,180,1541.001280,99,0,13132.001280,651.440717,hintandextended,lora,60 +on4,0,0,24,1,0,240,1540.001280,99,0,17161.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,489,1550.001280,99,0,31190.001280,649.280717,hintandextended,lora,60 +on3,0,0,24,1,0,420,1541.000000,99,0,26276.001280,642.000410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2471.214080,99,0,-1.000000,1218.888294,hintandextended,lora,60 +on9,0,0,24,1,0,647,1587.001280,99,0,39342.001280,660.400717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1340,1560.001280,100,0,80918.001280,649.600717,hintandextended,lora,60 +on2,0,0,24,1,0,920,1561.000000,100,0,55156.001280,650.000410,hintandextended,lora,60 +on8,0,0,24,1,0,600,1540.998720,100,0,37797.001280,641.999898,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1979.006400,100,0,-1.000000,919.604198,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,195,1556.001280,100,0,12932.001280,655.040717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,129,1549.001280,100,0,8955.001280,645.200717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,1119,1600.001280,101,1,67256.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,103,1584.000000,101,0,5258.001280,659.200410,hintandextended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,101,0,83328.000000,641.600000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2031.005120,101,0,-1.000000,940.403686,hintandextended,lora,60 +on9,0,0,24,1,0,207,1568.001280,101,0,12903.001280,652.801126,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,960,1542.000000,101,0,61276.001280,649.664410,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,874,1575.000000,102,0,51521.001280,655.600410,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,737,1557.001280,102,0,46152.001280,648.400717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1740.003840,102,0,-1.000000,772.802355,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1282,1562.001280,102,0,76903.001280,650.400717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,728,1551.398720,103,0,46924.001280,648.944102,hintandextended,lora,60 +on5,0,0,24,1,0,382,1562.001280,103,0,22507.001280,650.400717,hintandextended,lora,60 +on2,0,0,25,1,0,991,1600.301280,103,1,61264.001280,669.976717,hintandextended,lora,60 +on4,0,0,25,1,0,878,1601.001280,103,1,55633.001280,674.928717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2315.010240,103,0,-1.000000,1130.806554,hintandextended,lora,60 +on8,0,0,25,0,0,1478,1500.000000,103,1,-1.000000,600.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1200,1540.001280,103,0,75730.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,600,1540.001280,103,0,38802.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,1,0,527,1589.001280,103,0,31296.001280,663.760922,hintandextended,lora,60 +on11,0,0,25,1,0,819,1600.002560,103,1,49197.001280,665.601434,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,407,1587.001280,104,0,24705.001280,660.400717,hintandextended,lora,60 +on4,0,0,25,0,0,1478,1500.000000,104,1,-1.000000,600.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2156.008960,104,0,-1.000000,1041.605222,hintandextended,lora,60 +on8,0,0,24,1,0,262,1562.001280,104,0,15460.001280,650.400717,hintandextended,lora,60 +on12,0,0,25,1,0,999,1600.001280,104,1,60870.001280,665.808717,hintandextended,lora,60 +on7,0,0,24,1,0,1020,1540.001280,104,0,63805.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,904,1545.001280,104,0,56034.001280,644.144717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,235,1595.002560,104,0,12512.001280,663.601434,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,833,1593.001280,104,0,47369.001280,662.800717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,480,1540.002560,105,0,29015.001280,641.601434,hintandextended,lora,60 +on9,0,0,24,1,0,180,1540.001280,105,0,12782.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1380,1540.000000,105,0,85035.000000,641.600000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1984.003840,105,0,-1.000000,896.002355,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1361,1581.001280,105,0,80549.001280,658.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,780,1540.001280,106,0,49312.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,240,1540.001280,106,0,16976.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1069,1589.001280,106,0,63081.001280,661.200717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,35,1575.001280,106,0,3367.001280,655.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1140,1540.001280,106,0,72046.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,86,1566.001280,106,0,5697.001280,652.000717,hintandextended,lora,60 +on10,0,0,24,1,0,1421,1581.000000,106,0,86488.000000,658.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2235.007680,106,0,-1.000000,1073.204301,hintandextended,lora,60 +on1,0,0,24,1,0,300,1540.001280,107,0,18648.001280,641.600717,hintandextended,lora,60 +on0,1,4,24,0,0,0,1873.005120,107,0,-1.000000,851.602867,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,494,1554.001280,107,0,30657.001280,647.200717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1351,1571.001280,107,0,79877.001280,654.000717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1175,1575.001280,107,0,69262.001280,655.600717,hintandextended,lora,60 +on7,0,0,24,1,0,420,1541.001280,108,0,26098.001280,651.184717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,529,1600.201280,108,1,31150.001280,665.680717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1985.006400,108,0,-1.000000,922.003789,hintandextended,lora,60 +on10,0,0,24,1,0,144,1564.001280,108,0,10065.001280,651.200717,hintandextended,lora,60 +on9,0,0,24,1,0,772,1592.001280,108,0,45913.001280,662.400717,hintandextended,lora,60 +on8,0,0,24,1,0,366,1547.000000,108,0,24713.001280,644.400410,hintandextended,lora,60 +on7,0,0,24,1,0,335,1575.001280,109,0,20282.001280,655.600717,hintandextended,lora,60 +on11,0,0,25,0,0,1478,1500.000000,109,1,-1.000000,600.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2000.607680,109,0,-1.000000,928.244301,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,60,1540.001280,109,0,7050.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,625,1565.001280,109,0,38785.001280,651.600717,hintandextended,lora,60 +on3,0,0,25,1,0,120,1601.602560,109,1,8474.602560,669.233434,hintandextended,lora,60 +on12,0,0,24,1,0,239,1599.001280,109,0,11942.001280,665.200717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2094.608960,110,0,-1.000000,991.445837,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,476,1596.001280,110,0,26631.001280,664.000717,hintandextended,lora,60 +on3,0,0,24,1,0,27,1567.001280,110,0,2405.001280,652.400717,hintandextended,lora,60 +on10,0,0,25,1,0,720,1601.602560,110,1,43876.602560,666.289843,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,480,1541.001280,110,0,31952.001280,651.280717,hintandextended,lora,60 +on1,0,0,25,1,0,562,1600.302560,110,1,34174.001280,671.801434,hintandextended,lora,60 +on9,0,0,24,1,0,62,1543.000000,110,0,6284.001280,642.800410,hintandextended,lora,60 +on0,1,6,24,0,0,0,2058.608960,111,0,-1.000000,977.045632,hintandextended,lora,60 +on4,0,0,25,1,0,480,1601.602560,111,1,30275.602560,675.473434,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,400,1581.000000,111,0,24368.001280,658.000410,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,798,1558.001280,111,0,47620.001280,648.800717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1052,1572.001280,111,0,62831.001280,654.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,596,1601.998720,111,1,34485.001280,666.400102,hintandextended,lora,60 +on6,0,0,24,1,0,966,1546.001280,111,0,60385.001280,644.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1397,1557.000000,112,0,82984.000000,648.400000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2233.608960,112,0,-1.000000,1072.645427,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,37,1578.000000,112,0,1416.001280,656.800410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,660,1540.001280,112,0,40078.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,1163,1563.001280,112,0,71901.001280,650.800717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,815,1575.001280,112,0,48410.001280,655.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1289,1569.001280,112,0,77413.001280,653.200717,hintandextended,lora,60 +on7,0,0,25,1,0,300,1601.601280,112,1,19115.602560,666.289126,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,878,1600.201280,113,1,53526.001280,665.680717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,900,1541.000000,113,0,57487.001280,642.000410,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,420,1541.000000,113,0,27998.001280,642.000410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1911.005120,113,0,-1.000000,866.803277,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,788,1549.001280,113,0,50166.001280,647.184717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,680,1560.001280,114,0,41701.001280,649.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,1020,1601.601280,114,1,64484.602560,666.289126,hintandextended,lora,60 +on6,0,0,24,1,0,360,1541.001280,114,0,22406.001280,648.560717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,818,1600.001280,114,1,50391.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,1,0,720,1541.001280,114,0,46661.001280,648.784717,hintandextended,lora,60 +on3,0,0,25,1,0,496,1601.000000,114,1,32136.001280,666.000410,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2108.608960,114,0,-1.000000,997.045632,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,0,0,1491,1500.000000,115,1,-1.000000,600.208000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2082.608960,115,0,-1.000000,986.645837,hintandextended,lora,60 +on10,0,0,25,1,0,286,1601.302560,115,1,18511.001280,677.449434,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,935,1575.001280,115,0,57649.001280,655.600717,hintandextended,lora,60 +on8,0,0,25,0,0,1478,1500.000000,115,1,-1.000000,600.000000,hintandextended,lora,60 +on11,0,0,25,1,0,359,1601.002560,115,1,22979.001280,675.441434,hintandextended,lora,60 +on6,0,0,25,1,0,180,1601.602560,115,1,13832.602560,675.217638,hintandextended,lora,60 +on3,0,0,25,1,0,240,1601.000000,115,1,16346.001280,666.000410,hintandextended,lora,60 +on9,0,0,24,1,0,547,1547.001280,115,0,32582.001280,644.400717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,158,1601.001280,116,1,10191.001280,674.928717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,1260,1601.601280,116,1,75853.602560,666.289126,hintandextended,lora,60 +on0,1,7,24,0,0,0,2264.610240,116,0,-1.000000,1085.046349,hintandextended,lora,60 +on2,0,0,24,1,0,540,1540.001280,116,0,32842.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,1080,1540.001280,116,0,67253.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,607,1547.001280,116,0,39501.001280,644.400717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,215,1601.301280,116,1,13251.001280,669.641126,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,0,0,1478,1500.200000,116,1,-1.000000,600.080000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,94,1575.001280,116,0,7016.001280,657.584717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,900,1540.001280,117,0,55566.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,60,1540.001280,117,0,4235.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,4,24,0,0,0,1957.005120,117,0,-1.000000,885.202867,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1020,1540.001280,117,0,62752.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,360,1540.001280,117,0,22443.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1212,1552.001280,118,0,73923.001280,646.400717,hintandextended,lora,60 +on4,0,0,25,1,0,579,1600.001280,118,1,35627.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1327,1547.001280,118,0,82118.001280,644.400717,hintandextended,lora,60 +on11,0,0,24,1,0,480,1541.001280,118,0,31657.001280,649.264717,hintandextended,lora,60 +on9,0,0,24,1,0,180,1540.002560,118,0,12198.001280,641.601434,hintandextended,lora,60 +on7,0,0,24,1,0,1414,1574.000000,118,0,86137.000000,655.200000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2171.608960,118,0,-1.000000,1047.845427,hintandextended,lora,60 +on5,0,0,25,1,0,360,1601.601280,118,1,24644.602560,666.289126,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1218,1558.001280,119,0,75621.001280,648.800717,hintandextended,lora,60 +on8,0,0,24,1,0,1020,1541.001280,119,0,64236.001280,651.184717,hintandextended,lora,60 +on2,0,0,24,1,0,300,1541.000000,119,0,18277.001280,642.000410,hintandextended,lora,60 +on9,0,0,24,1,0,360,1540.001280,119,0,23405.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,900,1542.998720,119,0,57559.001280,650.320102,hintandextended,lora,60 +on6,0,0,24,1,0,39,1579.001280,119,0,2491.001280,657.200717,hintandextended,lora,60 +on7,0,0,24,1,0,1319,1599.001280,119,0,77509.001280,665.200717,hintandextended,lora,60 +on10,0,0,25,1,0,1101,1600.301280,119,1,66971.001280,670.424717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,824,1584.001280,119,0,47442.001280,659.200717,hintandextended,lora,60 +on11,0,0,24,1,0,1380,1540.000000,119,0,85544.000000,641.600000,hintandextended,lora,60 +on0,1,10,24,0,0,0,2604.011520,119,0,-1.000000,1297.607066,hintandextended,lora,60 +on2,0,0,25,1,0,98,1601.001280,120,1,7113.001280,675.184717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,607,1548.001280,120,0,37693.001280,653.984717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,703,1600.001280,120,1,43159.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,1,0,844,1544.001280,120,0,53482.001280,643.200717,hintandextended,lora,60 +on9,0,0,25,1,0,169,1600.201280,120,1,10086.001280,665.680717,hintandextended,lora,60 +on3,0,0,24,1,0,420,1540.001280,120,0,28285.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,491,1551.001280,120,0,32014.001280,646.000717,hintandextended,lora,60 +on6,0,0,25,1,0,780,1601.603840,120,1,49169.602560,675.730150,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,51,1592.001280,120,0,1415.001280,665.824717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2393.612800,120,0,-1.000000,1187.847373,hintandextended,lora,60 +on8,0,0,25,1,0,240,1601.601280,121,1,16662.602560,666.289126,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,539,1600.001280,121,0,32395.001280,668.960717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1329,1549.001280,121,0,80303.001280,645.200717,hintandextended,lora,60 +on3,0,0,24,1,0,660,1541.998720,121,0,39851.001280,642.400102,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,120,1541.001280,121,0,10504.001280,648.880922,hintandextended,lora,60 +on9,0,0,24,1,0,778,1598.001280,121,0,47009.001280,664.800717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2191.610240,121,0,-1.000000,1055.846758,hintandextended,lora,60 +on4,0,0,24,1,0,1241,1545.001280,121,1,76764.001280,643.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1140,1540.001280,122,0,68952.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,540,1540.001280,122,0,33762.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,122,0,83936.000000,641.600000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2134.006400,122,0,-1.000000,1007.203994,hintandextended,lora,60 +on5,0,0,24,1,0,322,1562.002560,122,0,20180.001280,650.401434,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,833,1593.001280,122,0,48122.001280,662.800717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,120,1540.002560,122,0,8198.001280,641.601434,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,318,1560.000000,123,0,20999.001280,658.784410,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,0,0,1490,1500.000000,123,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,25,1,0,240,1600.602560,123,1,16426.602560,665.889434,hintandextended,lora,60 +on5,0,0,24,1,0,795,1555.001280,123,0,48152.001280,647.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,535,1596.002560,123,0,30158.001280,669.281638,hintandextended,lora,60 +on10,0,0,24,1,0,431,1552.998720,123,0,26934.001280,646.800102,hintandextended,lora,60 +on0,1,5,24,0,0,0,1975.607680,123,0,-1.000000,918.245325,hintandextended,lora,60 +on1,0,0,24,1,0,1131,1592.001280,124,0,66881.001280,666.560717,hintandextended,lora,60 +on2,0,0,25,1,0,720,1602.601280,124,2,44151.602560,675.873126,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1278,1559.001280,124,0,77747.001280,658.640717,hintandextended,lora,60 +on5,0,0,25,1,0,398,1603.200000,124,1,24740.001280,683.328410,hintandextended,lora,60 +on10,0,0,25,1,0,466,1600.001280,124,1,28730.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,1,0,480,1541.998720,124,0,30307.001280,642.400102,hintandextended,lora,60 +on6,0,0,24,1,0,563,1563.001280,124,0,33545.001280,650.800717,hintandextended,lora,60 +on8,0,0,24,1,0,0,1540.001280,124,0,3207.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,300,1540.402560,124,0,19715.001280,641.825434,hintandextended,lora,60 +on7,0,0,25,1,0,899,1600.201280,124,1,51338.001280,665.680717,hintandextended,lora,60 +on4,0,0,24,1,0,1380,1540.000000,124,0,85950.000000,641.600000,hintandextended,lora,60 +on0,1,11,24,0,0,0,2675.614080,124,0,-1.000000,1351.849114,hintandextended,lora,60 +on6,0,0,24,1,0,32,1572.002560,125,0,1301.001280,654.401434,hintandextended,lora,60 +on2,0,0,24,1,0,212,1572.002560,125,0,14006.001280,654.401434,hintandextended,lora,60 +on8,0,0,24,1,0,809,1569.002560,125,0,49080.001280,653.201434,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,900,1540.001280,125,0,55223.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,600,1560.601280,125,1,37750.602560,649.889126,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2012.607680,125,0,-1.000000,933.045120,hintandextended,lora,60 +on12,0,0,24,1,0,267,1579.400000,126,1,16462.401280,657.360410,hintandextended,lora,60 +on9,0,0,25,1,0,416,1601.001280,126,1,24523.001280,675.440717,hintandextended,lora,60 +on11,0,0,24,1,0,788,1559.001280,126,1,48438.001280,649.408717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,25,1,0,1178,1600.001280,126,1,70636.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,1,0,180,1541.001280,126,0,11707.001280,651.280717,hintandextended,lora,60 +on0,1,10,24,0,0,0,2497.014080,126,0,-1.000000,1254.808704,hintandextended,lora,60 +on6,0,0,24,1,0,607,1547.001280,126,0,36442.001280,644.400717,hintandextended,lora,60 +on3,0,0,24,1,0,130,1551.001280,126,0,8597.001280,646.001126,hintandextended,lora,60 +on2,0,0,24,1,0,327,1568.001280,126,0,19265.001280,661.984717,hintandextended,lora,60 +on5,0,0,25,1,0,660,1601.601280,126,1,43107.602560,666.289126,hintandextended,lora,60 +on4,0,0,24,1,0,1106,1567.001280,126,0,67618.001280,656.784717,hintandextended,lora,60 +on4,0,0,24,1,0,0,1540.001280,127,0,1534.001280,641.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2197.008960,127,0,-1.000000,1058.005632,hintandextended,lora,60 +on9,0,0,25,1,0,1036,1600.001280,127,1,62402.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,411,1592.000000,127,0,22101.001280,662.400410,hintandextended,lora,60 +on11,0,0,24,1,0,960,1540.001280,127,0,58683.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1320,1540.001280,127,0,79714.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,554,1554.001280,127,0,32852.001280,647.200717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,294,1596.000000,127,0,15558.001280,668.480614,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,614,1554.001280,128,0,39153.001280,647.200717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1324,1544.001280,128,0,80491.001280,643.200717,hintandextended,lora,60 +on4,0,0,24,1,0,960,1540.001280,128,0,61075.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,209,1569.001280,128,0,13011.001280,653.200717,hintandextended,lora,60 +on2,0,0,24,1,0,303,1543.001280,128,0,19641.001280,642.800717,hintandextended,lora,60 +on12,0,0,24,1,0,755,1576.000000,128,0,45890.001280,656.000410,hintandextended,lora,60 +on0,1,6,24,0,0,0,2050.007680,128,0,-1.000000,973.604506,hintandextended,lora,60 +on1,0,0,24,1,0,276,1579.002560,129,0,18169.001280,680.881638,hintandextended,lora,60 +on0,1,7,24,0,0,0,2140.008960,129,0,-1.000000,1035.205427,hintandextended,lora,60 +on4,0,0,24,1,0,712,1592.001280,129,0,41308.001280,662.400717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1269,1549.001280,129,0,78400.001280,645.200717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,779,1599.001280,129,0,45420.001280,665.200717,hintandextended,lora,60 +on3,0,0,24,1,0,945,1586.001280,129,0,57208.001280,666.560717,hintandextended,lora,60 +on10,0,0,24,1,0,16,1556.001280,129,0,2497.001280,648.000717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1115,1575.001280,129,0,65722.001280,655.600717,hintandextended,lora,60 +on8,0,0,24,1,0,686,1566.001280,130,0,40645.001280,652.000717,hintandextended,lora,60 +on3,0,0,24,1,0,360,1540.001280,130,0,22017.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,322,1562.001280,130,0,18609.001280,650.400717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,794,1554.001280,130,0,47574.001280,647.200717,hintandextended,lora,60 +on4,0,0,24,1,0,594,1594.001280,130,0,33473.001280,663.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,179,1599.002560,130,0,8951.001280,665.201434,hintandextended,lora,60 +on0,1,8,24,0,0,0,2327.010240,130,0,-1.000000,1135.605939,hintandextended,lora,60 +on1,0,0,24,1,0,862,1562.001280,130,0,51700.001280,650.400717,hintandextended,lora,60 +on2,0,0,24,1,0,1200,1540.001280,130,0,72165.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,1,0,987,1567.001280,131,0,60618.001280,652.400717,hintandextended,lora,60 +on7,0,0,24,1,0,540,1541.001280,131,0,34704.001280,647.344717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,720,1540.001280,131,0,44344.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,98,1579.000000,131,0,6837.001280,657.200410,hintandextended,lora,60 +on9,0,0,25,1,0,638,1600.001280,131,1,39220.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,1,0,360,1540.001280,131,0,24429.001280,641.600717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2145.007680,131,0,-1.000000,1011.604506,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,277,1578.000000,132,0,16990.001280,656.800410,hintandextended,lora,60 +on4,0,0,24,1,0,1380,1540.000000,132,0,83416.000000,641.600000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2091.006400,132,0,-1.000000,990.003789,hintandextended,lora,60 +on11,0,0,24,1,0,634,1574.001280,132,0,37001.001280,655.200717,hintandextended,lora,60 +on7,0,0,24,1,0,60,1540.001280,132,0,5731.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1031,1551.001280,132,0,64222.001280,646.000717,hintandextended,lora,60 +on10,0,0,24,1,0,159,1579.001280,132,0,9345.001280,657.200717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,58,1598.001280,133,0,978.001280,664.800717,hintandextended,lora,60 +on10,0,0,25,1,0,540,1600.602560,133,1,35853.602560,665.889434,hintandextended,lora,60 +on5,0,0,24,1,0,117,1599.000000,133,0,6215.001280,674.640410,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,120,1540.001280,133,0,7543.001280,641.600717,hintandextended,lora,60 +on3,0,0,25,1,0,480,1601.602560,133,1,29521.602560,672.753434,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,420,1601.602560,133,1,26818.602560,672.753434,hintandextended,lora,60 +on0,1,8,24,0,0,0,2334.814080,133,0,-1.000000,1138.728704,hintandextended,lora,60 +on9,0,0,24,1,0,865,1566.000000,133,0,53770.001280,652.000410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,634,1574.001280,133,0,36622.001280,655.200717,hintandextended,lora,60 +on10,0,0,25,0,0,1493,1500.200000,134,1,-1.000000,600.080000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,840,1540.001280,134,0,53753.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,120,1540.002560,134,0,10491.001280,641.601434,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,710,1590.002560,134,0,41938.001280,661.601434,hintandextended,lora,60 +on5,0,0,25,1,0,1200,1601.000000,134,1,71424.001280,666.208410,hintandextended,lora,60 +on3,0,0,24,1,0,1109,1570.001280,134,0,68401.001280,662.880717,hintandextended,lora,60 +on12,0,0,24,1,0,264,1564.001280,134,0,15346.001280,651.200717,hintandextended,lora,60 +on8,0,0,24,1,0,720,1540.001280,134,0,44705.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,1,0,600,1600.602560,134,1,36540.602560,665.889434,hintandextended,lora,60 +on0,1,8,24,0,0,0,2356.611520,134,0,-1.000000,1147.447066,hintandextended,lora,60 +on12,0,0,24,1,0,45,1585.001280,135,0,3729.001280,659.600717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2506.011520,135,0,-1.000000,1232.807066,hintandextended,lora,60 +on6,0,0,24,1,0,913,1553.001280,135,0,56567.001280,646.800717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1020,1541.000000,135,0,61956.001280,642.000410,hintandextended,lora,60 +on5,0,0,24,1,0,1228,1569.001280,135,0,74368.001280,661.680717,hintandextended,lora,60 +on7,0,0,24,1,0,240,1541.000000,135,0,14596.001280,642.000410,hintandextended,lora,60 +on10,0,0,24,1,0,840,1541.001280,135,0,51287.001280,650.960922,hintandextended,lora,60 +on1,0,0,24,1,0,831,1591.001280,135,0,50498.001280,662.000717,hintandextended,lora,60 +on8,0,0,24,1,0,420,1540.001280,135,0,26577.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,1,0,480,1540.001280,135,0,30009.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,0,1540.002560,136,0,1590.001280,641.601434,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,649,1589.001280,136,0,37063.001280,661.200717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,240,1540.001280,136,0,14679.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,720,1541.000000,136,0,44662.001280,642.000410,hintandextended,lora,60 +on1,0,0,24,1,0,86,1507.001280,136,0,7360.001280,628.400717,hintandextended,lora,60 +on4,0,0,24,1,0,989,1570.000000,136,0,59380.001280,653.600410,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2158.007680,136,0,-1.000000,1016.804915,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1542.000000,137,0,64126.001280,651.840410,hintandextended,lora,60 +on8,0,0,25,1,0,660,1601.601280,137,1,41037.602560,666.289126,hintandextended,lora,60 +on6,0,0,24,1,0,900,1540.001280,137,0,55735.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,610,1551.002560,137,0,38462.001280,655.441434,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,120,1601.601280,137,1,9800.602560,666.289126,hintandextended,lora,60 +on11,0,0,24,1,0,1380,1540.000000,137,0,85427.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2509.812800,137,0,-1.000000,1208.728806,hintandextended,lora,60 +on12,0,0,25,1,0,240,1602.601280,137,1,15123.602560,670.113126,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,398,1603.997440,137,1,23809.001280,676.639795,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,1178,1601.001280,138,1,73278.001280,669.904717,hintandextended,lora,60 +on7,0,0,24,1,0,540,1540.001280,138,0,35978.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,671,1551.001280,138,0,40839.001280,646.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,84,1565.001280,138,0,6167.001280,659.760717,hintandextended,lora,60 +on4,0,0,24,1,0,732,1553.000000,138,0,45977.001280,646.800410,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,1370,1600.001280,138,1,82272.001280,665.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2144.008960,138,0,-1.000000,1036.805427,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,1298,1601.201280,138,1,78097.001280,675.264717,hintandextended,lora,60 +on1,0,0,24,1,0,1200,1540.001280,139,0,72269.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1380,1540.000000,139,0,83499.000000,641.600000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2290.608960,139,0,-1.000000,1095.446246,hintandextended,lora,60 +on7,0,0,24,1,0,37,1578.000000,139,0,450.001280,656.800410,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,977,1558.002560,139,0,58266.001280,648.801638,hintandextended,lora,60 +on5,0,0,25,1,0,1140,1602.600000,139,1,71995.602560,666.688819,hintandextended,lora,60 +on10,0,0,24,1,0,282,1583.001280,139,0,15588.001280,666.640717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,360,1540.001280,139,0,24787.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1080,1541.001280,140,0,66205.001280,650.480717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,274,1575.000000,140,0,17423.001280,655.600410,hintandextended,lora,60 +on11,0,0,25,1,0,941,1601.001280,140,1,57398.001280,667.760717,hintandextended,lora,60 +on2,0,0,24,1,0,600,1540.001280,140,0,36842.001280,641.600717,hintandextended,lora,60 +on1,0,0,25,1,0,878,1601.001280,140,1,53667.001280,675.184717,hintandextended,lora,60 +on3,0,0,24,1,0,76,1559.998720,140,0,7204.001280,659.808102,hintandextended,lora,60 +on0,1,8,24,0,0,0,2312.010240,140,0,-1.000000,1129.606349,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,162,1600.001280,140,1,10583.001280,665.600717,hintandextended,lora,60 +on4,0,0,24,1,0,713,1593.001280,140,0,41324.001280,662.800717,hintandextended,lora,60 +on3,0,0,24,1,0,300,1541.001280,141,0,21665.001280,651.184717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,599,1599.001280,141,0,34372.001280,665.200717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1990.006400,141,0,-1.000000,924.003584,hintandextended,lora,60 +on8,0,0,25,1,0,413,1600.201280,141,1,25075.001280,665.680717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,974,1554.001280,141,0,58571.001280,647.200717,hintandextended,lora,60 +on11,0,0,24,1,0,120,1540.001280,141,0,10199.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,720,1540.001280,142,0,46831.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,924,1564.001280,142,0,55539.001280,651.200717,hintandextended,lora,60 +on3,0,0,24,1,0,95,1575.001280,142,0,6043.001280,655.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,300,1540.001280,142,0,20269.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,1,0,900,1601.601280,142,1,54192.602560,666.289126,hintandextended,lora,60 +on0,1,5,24,0,0,0,2024.607680,142,0,-1.000000,937.844506,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,300,1541.001280,143,0,20510.001280,651.184717,hintandextended,lora,60 +on10,0,0,24,1,0,1080,1540.001280,143,0,67042.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2293.610240,143,0,-1.000000,1096.646554,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,498,1561.000000,143,0,32536.001280,662.864410,hintandextended,lora,60 +on6,0,0,25,1,0,407,1601.000000,143,1,23847.001280,666.000410,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,660,1540.001280,143,0,41643.001280,641.600717,hintandextended,lora,60 +on12,0,0,25,1,0,600,1601.601280,143,1,37569.602560,666.289126,hintandextended,lora,60 +on5,0,0,24,1,0,1031,1551.001280,143,0,61589.001280,646.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,42,1583.998720,144,0,673.001280,659.200102,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1983.006400,144,0,-1.000000,921.204198,hintandextended,lora,60 +on10,0,0,24,1,0,1310,1591.001280,144,0,76900.001280,664.944717,hintandextended,lora,60 +on7,0,0,24,1,0,600,1540.002560,144,0,38708.001280,641.601434,hintandextended,lora,60 +on5,0,0,24,1,0,780,1540.001280,144,0,50067.001280,641.600717,hintandextended,lora,60 +on1,0,0,25,0,0,1478,1500.000000,144,1,-1.000000,600.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,25,1,0,1359,1600.001280,144,1,82594.001280,665.808717,hintandextended,lora,60 +on10,0,0,24,1,0,720,1542.000000,145,0,43733.001280,651.840410,hintandextended,lora,60 +on3,0,0,24,1,0,32,1573.001280,145,0,2846.001280,657.744717,hintandextended,lora,60 +on12,0,0,24,1,0,1253,1594.001280,145,0,74222.001280,672.640717,hintandextended,lora,60 +on8,0,0,24,1,0,300,1540.001280,145,0,19186.001280,641.600717,hintandextended,lora,60 +on0,1,11,24,0,0,0,2599.614080,145,0,-1.000000,1321.448909,hintandextended,lora,60 +on5,0,0,25,1,0,98,1601.001280,145,1,6426.001280,668.400922,hintandextended,lora,60 +on1,0,0,25,1,0,579,1600.001280,145,1,35421.001280,665.600717,hintandextended,lora,60 +on6,0,0,24,1,0,518,1600.601280,145,1,31936.601280,673.104717,hintandextended,lora,60 +on4,0,0,25,1,0,900,1600.005120,145,1,56240.001280,665.602662,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,433,1554.001280,145,0,25601.001280,649.664717,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1540.001280,145,0,61720.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,1185,1585.001280,145,0,71671.001280,659.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2260.008960,146,0,-1.000000,1083.205222,hintandextended,lora,60 +on5,0,0,24,1,0,480,1540.001280,146,0,29955.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,240,1540.001280,146,0,17478.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,1,0,1080,1540.001280,146,0,66992.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1341,1561.001280,146,0,79888.001280,650.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,360,1540.001280,146,0,24174.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,220,1580.001280,146,0,11223.001280,657.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1076,1597.002560,146,0,62158.001280,673.841434,hintandextended,lora,60 +on4,0,0,24,1,0,969,1549.001280,147,0,58936.001280,645.200717,hintandextended,lora,60 +on5,0,0,24,1,0,455,1575.001280,147,0,26392.001280,655.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,840,1541.001280,147,0,51744.001280,644.464717,hintandextended,lora,60 +on9,0,0,25,1,0,939,1601.000000,147,1,57307.001280,666.000410,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,609,1549.002560,147,0,36979.001280,645.201434,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1973.006400,147,0,-1.000000,917.203994,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,611,1552.001280,148,0,38916.001280,655.840717,hintandextended,lora,60 +on10,0,0,24,1,0,180,1541.001280,148,0,12220.001280,651.280717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,960,1540.001280,148,0,59203.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,900,1541.000000,148,0,55116.001280,642.000410,hintandextended,lora,60 +on7,0,0,25,1,0,517,1650.200000,148,1,27507.001280,687.168410,hintandextended,lora,60 +on0,1,7,24,0,0,0,2217.008960,148,0,-1.000000,1066.005632,hintandextended,lora,60 +on12,0,0,24,1,0,52,1592.001280,148,0,1189.001280,662.400717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,290,1600.202560,148,1,17545.001280,665.681434,hintandextended,lora,60 +on4,0,0,24,1,0,629,1569.001280,149,0,39381.001280,653.200717,hintandextended,lora,60 +on2,0,0,24,1,0,1379,1600.001280,149,0,81426.001280,675.040717,hintandextended,lora,60 +on6,0,0,25,1,0,159,1601.000000,149,1,10180.001280,666.000410,hintandextended,lora,60 +on12,0,0,25,1,0,98,1601.001280,149,1,7183.001280,667.024717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,285,1586.000000,149,0,15262.001280,660.000410,hintandextended,lora,60 +on0,1,8,24,0,0,0,2243.010240,149,0,-1.000000,1102.006349,hintandextended,lora,60 +on10,0,0,24,1,0,1020,1540.001280,149,0,64360.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,18,1559.001280,149,0,1901.001280,651.184717,hintandextended,lora,60 +on9,0,0,24,1,0,467,1588.001280,149,0,27074.001280,669.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1178,1578.001280,150,0,68823.001280,656.800717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,19,1559.001280,150,0,849.001280,649.200717,hintandextended,lora,60 +on2,0,0,24,1,0,455,1576.000000,150,0,27227.001280,656.000410,hintandextended,lora,60 +on6,0,0,24,1,0,876,1576.001280,150,0,53210.001280,656.000717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2185.008960,150,0,-1.000000,1053.205222,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,180,1540.001280,150,0,12219.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,551,1551.001280,150,0,35451.001280,646.000717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,120,1540.001280,150,0,9595.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,780,1540.001280,151,0,48765.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,583,1583.001280,151,0,34361.001280,658.800717,hintandextended,lora,60 +on11,0,0,24,1,0,1080,1540.001280,151,0,65679.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,382,1562.003840,151,0,23470.001280,650.401946,hintandextended,lora,60 +on2,0,0,24,1,0,660,1540.001280,151,0,41714.001280,641.600717,hintandextended,lora,60 +on10,0,0,25,1,0,720,1602.602560,151,1,45936.602560,676.129843,hintandextended,lora,60 +on9,0,0,25,1,0,600,1602.601280,151,1,36505.602560,676.129126,hintandextended,lora,60 +on12,0,0,24,1,0,1380,1540.000000,151,0,85221.000000,641.600000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2566.212800,151,0,-1.000000,1256.888192,hintandextended,lora,60 +on1,0,0,24,1,0,420,1540.001280,151,0,26901.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,0,1542.001280,152,0,3248.001280,656.512717,hintandextended,lora,60 +on12,0,0,24,1,0,1025,1545.001280,152,0,61515.001280,643.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,0,0,1478,1500.000000,152,1,-1.000000,600.000000,hintandextended,lora,60 +on7,0,0,24,1,0,960,1540.001280,152,0,60708.001280,641.600717,hintandextended,lora,60 +on2,0,0,25,1,0,163,1601.300000,152,1,8412.001280,667.976410,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,470,1590.001280,152,0,27678.001280,661.600717,hintandextended,lora,60 +on4,0,0,25,1,0,60,1601.601280,152,1,5711.602560,666.289126,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2125.608960,152,0,-1.000000,1003.845632,hintandextended,lora,60 +on1,0,0,25,1,0,600,1601.601280,153,1,36786.602560,666.289126,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,1044,1600.301280,153,1,63374.001280,671.480717,hintandextended,lora,60 +on11,0,0,24,1,0,840,1540.001280,153,0,50635.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,971,1552.001280,153,0,60295.001280,655.680717,hintandextended,lora,60 +on4,0,0,25,1,0,300,1602.600000,153,1,21100.602560,666.688819,hintandextended,lora,60 +on6,0,0,24,1,0,1380,1540.000000,153,0,84645.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2358.211520,153,0,-1.000000,1148.087270,hintandextended,lora,60 +on2,0,0,24,1,0,811,1571.002560,153,0,47786.001280,654.001434,hintandextended,lora,60 +on5,0,0,24,1,0,1290,1570.001280,153,0,79117.001280,653.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,480,1602.601280,154,1,29185.602560,671.169126,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1219,1559.998720,154,0,73556.001280,649.599898,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1775.605120,154,0,-1.000000,787.043482,hintandextended,lora,60 +on6,0,0,24,1,0,1066,1586.001280,154,0,63387.001280,660.000717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2103.210240,155,0,-1.000000,994.886144,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,589,1589.001280,155,0,33367.001280,661.200717,hintandextended,lora,60 +on12,0,0,24,1,0,312,1552.001280,155,0,19129.001280,646.400717,hintandextended,lora,60 +on7,0,0,25,1,0,1260,1601.601280,155,1,78794.602560,666.289126,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1101,1561.001280,155,0,66140.001280,650.000717,hintandextended,lora,60 +on11,0,0,24,1,0,257,1557.001280,155,0,17903.001280,648.400717,hintandextended,lora,60 +on8,0,0,25,1,0,60,1601.601280,155,1,5151.602560,666.289126,hintandextended,lora,60 +on11,0,0,25,1,0,294,1601.000000,156,1,16988.001280,666.000410,hintandextended,lora,60 +on1,0,0,25,1,0,699,1600.001280,156,1,40276.001280,665.600717,hintandextended,lora,60 +on7,0,0,24,1,0,74,1555.001280,156,0,6157.001280,656.784717,hintandextended,lora,60 +on9,0,0,24,1,0,600,1541.001280,156,0,36921.001280,650.224717,hintandextended,lora,60 +on12,0,0,25,1,0,175,1600.001280,156,1,9826.001280,665.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1,1541.001280,156,0,3450.001280,642.000717,hintandextended,lora,60 +on10,0,0,24,1,0,180,1541.001280,156,0,14489.001280,651.184717,hintandextended,lora,60 +on8,0,0,24,1,0,440,1560.001280,156,0,25420.001280,649.600717,hintandextended,lora,60 +on5,0,0,24,1,0,737,1557.001280,156,0,45979.001280,648.400717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,10,24,0,0,0,2504.012800,156,0,-1.000000,1257.607373,hintandextended,lora,60 +on6,0,0,24,1,0,780,1540.001280,156,0,48280.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,640,1580.001280,157,0,39020.001280,657.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,167,1587.001280,157,0,8502.001280,660.400717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,180,1540.001280,157,0,11949.001280,641.600717,hintandextended,lora,60 +on7,0,0,25,1,0,900,1601.601280,157,1,56299.602560,666.289126,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1061,1581.001280,157,0,63168.001280,658.000717,hintandextended,lora,60 +on0,1,5,24,0,0,0,2036.607680,157,0,-1.000000,942.644506,hintandextended,lora,60 +on10,0,0,25,1,0,540,1601.602560,158,1,32745.602560,673.073434,hintandextended,lora,60 +on5,0,0,24,1,0,508,1568.001280,158,0,29362.001280,652.800717,hintandextended,lora,60 +on3,0,0,25,0,0,1464,1500.300000,158,1,-1.000000,605.880000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,693,1600.301280,158,1,42390.001280,670.040717,hintandextended,lora,60 +on8,0,0,24,1,0,459,1579.001280,158,0,26584.001280,657.200717,hintandextended,lora,60 +on2,0,0,25,1,0,639,1601.001280,158,1,39734.001280,675.120717,hintandextended,lora,60 +on6,0,0,24,1,0,840,1540.001280,158,0,50866.001280,641.600717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2316.611520,158,0,-1.000000,1131.446451,hintandextended,lora,60 +on9,0,0,24,1,0,240,1540.001280,158,0,17617.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,206,1566.001280,158,0,13497.001280,652.000717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,807,1567.001280,159,0,48842.001280,652.400717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2140.008960,159,0,-1.000000,1035.205427,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,706,1586.001280,159,0,42305.001280,660.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,52,1592.002560,159,0,3481.001280,662.401434,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,155,1575.002560,159,0,9106.001280,655.601434,hintandextended,lora,60 +on5,0,0,24,1,0,562,1563.001280,159,0,36132.001280,660.240717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1157,1557.001280,159,0,71201.001280,648.400717,hintandextended,lora,60 +on4,0,0,24,1,0,250,1550.001280,159,0,16440.001280,645.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,304,1545.000000,160,0,20570.001280,643.600410,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,10,1551.001280,160,0,467.001280,648.240922,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1110,1570.001280,160,0,66347.001280,653.600717,hintandextended,lora,60 +on5,0,0,24,1,0,152,1572.001280,160,0,10803.001280,654.400717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2092.007680,160,0,-1.000000,990.405120,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,480,1541.001280,160,0,32536.001280,650.960922,hintandextended,lora,60 +on7,0,0,24,1,0,360,1540.002560,160,0,25157.001280,641.601434,hintandextended,lora,60 +on11,0,0,24,1,0,180,1542.000000,161,0,12542.001280,651.584410,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,247,1548.000000,161,0,17537.001280,644.800410,hintandextended,lora,60 +on0,1,6,24,0,0,0,2191.007680,161,0,-1.000000,1030.004915,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1200,1540.001280,161,0,72362.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,3,1543.002560,161,0,2135.001280,642.801434,hintandextended,lora,60 +on4,0,0,24,1,0,656,1592.001280,161,1,39206.001280,662.400717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,720,1540.001280,161,0,44506.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,271,1571.001280,162,0,14918.001280,654.000717,hintandextended,lora,60 +on12,0,0,24,1,0,120,1540.001280,162,0,8844.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,1,0,180,1540.001280,162,0,11347.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,461,1601.000000,162,1,28891.001280,666.000410,hintandextended,lora,60 +on4,0,0,24,1,0,480,1542.001280,162,0,31569.001280,651.841126,hintandextended,lora,60 +on2,0,0,24,1,0,1364,1584.001280,162,0,82202.001280,659.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,360,1542.001280,162,0,24830.001280,659.264922,hintandextended,lora,60 +on0,1,8,24,0,0,0,2412.010240,162,0,-1.000000,1169.606554,hintandextended,lora,60 +on10,0,0,24,1,0,1260,1540.001280,162,0,77564.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,1,0,943,1583.001280,163,0,55100.001280,658.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,85,1567.000000,163,0,7378.001280,661.680410,hintandextended,lora,60 +on4,0,0,24,1,0,335,1575.998720,163,0,19229.001280,655.999898,hintandextended,lora,60 +on3,0,0,24,1,0,1020,1540.001280,163,0,63348.001280,641.600717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2315.010240,163,0,-1.000000,1130.806554,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,169,1541.202560,163,1,14278.001280,642.289434,hintandextended,lora,60 +on9,0,0,24,1,0,1352,1572.001280,163,0,80666.001280,654.400717,hintandextended,lora,60 +on12,0,0,25,1,0,818,1600.001280,163,1,48415.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,366,1547.001280,163,0,23639.001280,644.880717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,99,1580.000000,164,0,4521.001280,657.600410,hintandextended,lora,60 +on0,1,8,24,0,0,0,2308.611520,164,0,-1.000000,1128.247270,hintandextended,lora,60 +on11,0,0,25,1,0,356,1600.001280,164,1,19653.001280,665.600717,hintandextended,lora,60 +on9,0,0,24,1,0,120,1540.998720,164,0,8335.001280,641.999898,hintandextended,lora,60 +on2,0,0,25,1,0,180,1602.602560,164,1,11454.602560,677.729638,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1144,1544.001280,164,0,70667.001280,643.200717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,420,1540.001280,164,0,26838.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,693,1573.001280,164,0,40135.001280,654.800717,hintandextended,lora,60 +on4,0,0,24,1,0,571,1571.001280,164,0,34746.001280,654.000717,hintandextended,lora,60 +on12,0,0,25,0,0,1419,1500.500000,164,1,-1.000000,609.848000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2040.607680,165,0,-1.000000,944.245120,hintandextended,lora,60 +on1,0,0,25,1,0,1314,1600.001280,165,1,76288.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,420,1540.001280,165,0,25737.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,780,1601.601280,165,1,48149.602560,666.289126,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,840,1542.000000,165,0,52985.001280,651.840410,hintandextended,lora,60 +on11,0,0,24,1,0,515,1577.001280,165,0,31377.001280,665.585126,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,840,1542.000000,166,0,53190.001280,642.400614,hintandextended,lora,60 +on0,1,7,24,0,0,0,2236.008960,166,0,-1.000000,1073.606656,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,420,1541.001280,166,0,27031.001280,642.001126,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,960,1602.000000,166,1,60786.001280,675.840410,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,283,1584.001280,166,0,16442.001280,668.384717,hintandextended,lora,60 +on10,0,0,24,1,0,638,1579.001280,166,0,39182.001280,657.201126,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,312,1553.002560,166,0,21517.001280,656.241434,hintandextended,lora,60 +on5,0,0,25,1,0,1194,1616.001280,166,1,71671.001280,672.000717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,154,1574.001280,167,0,10019.001280,655.200717,hintandextended,lora,60 +on11,0,0,24,1,0,119,1600.001280,167,0,6841.001280,673.824717,hintandextended,lora,60 +on4,0,0,24,1,0,533,1593.001280,167,0,30324.001280,662.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1273,1553.001280,167,0,79112.001280,646.800717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1940.006400,167,0,-1.000000,904.003584,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,1409,1651.201280,167,1,82397.001280,686.080717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2413.010240,168,0,-1.000000,1170.006349,hintandextended,lora,60 +on5,0,0,24,1,0,1020,1540.001280,168,0,64178.001280,641.600717,hintandextended,lora,60 +on1,0,0,25,1,0,223,1601.200000,168,1,11771.001280,666.080410,hintandextended,lora,60 +on9,0,0,24,1,0,900,1540.001280,168,0,56539.001280,641.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,120,1541.001280,168,0,9227.001280,651.184717,hintandextended,lora,60 +on8,0,0,24,1,0,597,1598.000000,168,0,34191.001280,664.800410,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1260,1540.001280,168,0,79096.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,1140,1540.001280,168,0,69652.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,840,1541.000000,168,0,50762.001280,642.000410,hintandextended,lora,60 +on4,0,0,24,1,0,1252,1593.001280,169,0,74559.001280,672.240717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,516,1578.000000,169,0,31900.001280,660.960410,hintandextended,lora,60 +on5,0,0,24,1,0,205,1565.001280,169,0,14287.001280,651.600717,hintandextended,lora,60 +on6,0,0,24,1,0,713,1593.001280,169,0,41619.001280,662.800717,hintandextended,lora,60 +on11,0,0,24,1,0,259,1559.001280,169,0,17263.001280,649.200717,hintandextended,lora,60 +on0,1,8,24,0,0,0,2298.611520,169,0,-1.000000,1124.247066,hintandextended,lora,60 +on12,0,0,24,1,0,0,1540.001280,169,0,2830.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,360,1602.600000,169,1,22249.602560,666.688819,hintandextended,lora,60 +on3,0,0,24,1,0,600,1540.001280,169,0,37029.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,1,0,221,1581.001280,170,0,11177.001280,658.000717,hintandextended,lora,60 +on10,0,0,24,1,0,240,1540.998720,170,0,16281.001280,641.999898,hintandextended,lora,60 +on3,0,0,24,1,0,587,1588.002560,170,0,35591.001280,670.241434,hintandextended,lora,60 +on6,0,0,24,1,0,480,1540.001280,170,0,29343.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,426,1547.001280,170,0,27750.001280,644.400922,hintandextended,lora,60 +on1,0,0,24,1,0,1104,1565.000000,170,0,68184.001280,651.600410,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,170,0,85981.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2352.008960,170,0,-1.000000,1145.606042,hintandextended,lora,60 +on8,0,0,25,1,0,600,1601.001280,170,1,39507.001280,675.440717,hintandextended,lora,60 +on6,0,0,25,1,0,420,1602.601280,171,1,25477.602560,667.233126,hintandextended,lora,60 +on4,0,0,25,1,0,578,1601.000000,171,1,34591.001280,666.000410,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,221,1581.002560,171,0,13364.001280,658.001434,hintandextended,lora,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,710,1590.001280,171,0,40108.001280,661.600717,hintandextended,lora,60 +on11,0,0,24,1,0,405,1585.001280,171,0,23511.001280,659.600717,hintandextended,lora,60 +on9,0,0,24,1,0,658,1598.003840,171,0,39484.001280,664.802150,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,1413,1573.000000,171,0,86384.000000,654.800000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2149.608960,171,0,-1.000000,1039.046042,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,532,1593.001280,172,0,29951.001280,671.984717,hintandextended,lora,60 +on9,0,0,24,1,0,265,1565.001280,172,0,17695.001280,651.600717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2207.211520,172,0,-1.000000,1062.087270,hintandextended,lora,60 +on1,0,0,25,1,0,589,1601.002560,172,1,34897.001280,666.545434,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,120,1601.601280,172,1,8223.602560,666.289126,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,25,1,0,1260,1601.602560,172,2,76472.602560,673.649638,hintandextended,lora,60 +on7,0,0,24,1,0,1020,1540.001280,172,0,62219.001280,641.600717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,25,1,0,638,1601.201280,172,1,37506.001280,672.064717,hintandextended,lora,60 +on2,0,0,24,1,0,1166,1566.001280,173,0,70839.001280,652.000717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,26,1,0,437,1660.001280,173,2,24008.001280,689.808717,hintandextended,lora,60 +on10,0,0,25,1,0,1320,1600.602560,173,2,82234.602560,665.889434,hintandextended,lora,60 +on1,0,0,24,1,0,120,1541.001280,173,0,10467.001280,650.928717,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,173,0,84683.000000,641.600000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2453.611520,173,0,-1.000000,1211.846861,hintandextended,lora,60 +on3,0,0,24,1,0,480,1540.001280,173,0,29686.001280,641.600717,hintandextended,lora,60 +on9,0,0,25,0,0,1478,1500.200000,173,1,-1.000000,600.080000,hintandextended,lora,60 +on6,0,0,24,1,0,19,1560.001280,173,0,2080.001280,657.024717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,766,1586.001280,173,0,44991.001280,660.000717,hintandextended,lora,60 +on12,0,0,25,1,0,197,1602.300000,173,1,14143.001280,675.480410,hintandextended,lora,60 +on11,0,0,24,1,0,900,1541.002560,174,0,56280.001280,651.441434,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,174,0,83186.000000,641.600000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2278.007680,174,0,-1.000000,1090.404710,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,60,1541.000000,174,0,5930.001280,642.000410,hintandextended,lora,60 +on4,0,0,24,1,0,1114,1574.001280,174,0,67033.001280,655.200717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,1308,1588.001280,174,0,76735.001280,660.800717,hintandextended,lora,60 +on9,0,0,24,1,0,660,1540.001280,174,0,42737.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,421,1541.001280,174,0,27459.001280,642.000717,hintandextended,lora,60 +on10,0,0,24,1,0,540,1540.001280,175,0,35964.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,720,1540.001280,175,0,43478.001280,641.600717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,20,1560.002560,175,0,2136.001280,649.601434,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,175,0,83922.000000,641.600000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2232.007680,175,0,-1.000000,1072.004710,hintandextended,lora,60 +on3,0,0,24,1,0,962,1542.001280,175,0,60498.001280,642.400717,hintandextended,lora,60 +on6,0,0,24,1,0,1020,1540.001280,175,0,64495.001280,641.600717,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,120,1541.000000,175,0,8063.001280,642.000410,hintandextended,lora,60 +on3,0,0,24,1,0,1238,1578.001280,176,0,73384.001280,656.800717,hintandextended,lora,60 +on11,0,0,24,1,0,1380,1540.000000,176,0,83351.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2329.008960,176,0,-1.000000,1136.405018,hintandextended,lora,60 +on10,0,0,24,1,0,1140,1540.001280,176,0,70146.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,309,1550.001280,176,0,20740.001280,654.784717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,25,1,0,417,1600.001280,176,1,24314.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,1,0,1368,1588.001280,176,0,82080.001280,660.800717,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,290,1590.001280,176,0,17934.001280,661.600717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,180,1540.001280,176,0,12132.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,1,0,1371,1591.001280,177,0,79793.001280,662.000717,hintandextended,lora,60 +on6,0,0,25,1,0,1298,1600.001280,177,1,77747.001280,665.600717,hintandextended,lora,60 +on5,0,0,24,1,0,1380,1540.000000,177,0,83670.000000,641.600000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2458.010240,177,0,-1.000000,1213.606144,hintandextended,lora,60 +on9,0,0,24,1,0,480,1541.002560,177,0,30892.001280,645.425434,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,120,1541.001280,177,0,8113.001280,644.944717,hintandextended,lora,60 +on4,0,0,25,1,0,578,1600.201280,177,1,35532.001280,665.680717,hintandextended,lora,60 +on3,0,0,24,1,0,187,1490.001280,177,0,14546.001280,621.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,0,0,1478,1500.200000,177,1,-1.000000,600.288000,hintandextended,lora,60 +on8,0,0,24,1,0,110,1592.000000,177,0,6652.001280,671.840410,hintandextended,lora,60 +on2,0,0,24,1,0,432,1552.001280,177,0,26091.001280,646.400717,hintandextended,lora,60 +on4,0,0,25,1,0,377,1600.001280,178,1,24139.001280,665.600717,hintandextended,lora,60 +on11,0,0,24,1,0,1246,1586.001280,178,0,72297.001280,660.000717,hintandextended,lora,60 +on5,0,0,24,1,0,1320,1540.001280,178,0,80570.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,1,0,878,1578.001280,178,0,52657.001280,656.800717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1020,1540.001280,178,0,62325.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2217.610240,178,0,-1.000000,1066.245939,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,926,1566.001280,178,0,55764.001280,652.000717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,25,1,0,240,1602.601280,178,1,14997.602560,672.993126,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,300,1540.001280,179,0,20418.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,1,0,1200,1540.001280,179,0,75220.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1368,1588.001280,179,0,82617.001280,660.800717,hintandextended,lora,60 +on4,0,0,24,1,0,926,1567.001280,179,0,56043.001280,661.584717,hintandextended,lora,60 +on3,0,0,25,1,0,1016,1601.001280,179,1,60808.001280,674.480717,hintandextended,lora,60 +on11,0,0,24,1,0,1149,1549.001280,179,0,71936.001280,645.200717,hintandextended,lora,60 +on5,0,0,24,1,0,391,1571.001280,179,0,24053.001280,654.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,1380,1540.000000,179,0,86252.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2297.008960,179,0,-1.000000,1123.605018,hintandextended,lora,60 +on11,0,0,24,1,0,1433,1593.000000,180,0,83021.000000,662.800000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2038.005120,180,0,-1.000000,943.203277,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,240,1541.000000,180,0,15362.001280,642.000410,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,320,1561.000000,180,0,18880.001280,650.000410,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,585,1585.001280,180,0,35348.001280,659.600717,hintandextended,lora,60 +on2,0,0,24,1,0,0,1540.001280,180,0,1983.001280,641.600717,hintandextended,lora,60 +on11,0,0,24,1,0,377,1558.001280,181,0,24621.001280,657.984717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1315,1596.000000,181,0,77827.001280,664.000410,hintandextended,lora,60 +on8,0,0,25,1,0,459,1601.000000,181,1,28370.001280,666.000410,hintandextended,lora,60 +on6,0,0,24,1,0,14,1555.001280,181,0,1308.001280,656.784717,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,109,1600.201280,181,1,7183.001280,665.680717,hintandextended,lora,60 +on7,0,0,24,1,0,165,1585.001280,181,0,9635.001280,659.600717,hintandextended,lora,60 +on12,0,0,24,1,0,1380,1540.000000,181,0,85933.000000,641.600000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2164.007680,181,0,-1.000000,1044.804710,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,0,1541.002560,182,0,1584.001280,650.705434,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,304,1544.001280,182,0,21537.001280,643.200717,hintandextended,lora,60 +on6,0,0,24,1,0,476,1596.001280,182,0,28721.001280,664.000717,hintandextended,lora,60 +on7,0,0,24,1,0,750,1570.001280,182,0,45158.001280,653.600717,hintandextended,lora,60 +on11,0,0,24,1,0,1037,1557.001280,182,0,64531.001280,648.400717,hintandextended,lora,60 +on0,1,9,24,0,0,0,2387.011520,182,0,-1.000000,1185.206656,hintandextended,lora,60 +on8,0,0,24,1,0,180,1540.001280,182,0,12071.001280,641.600717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1366,1586.001280,182,0,79561.001280,660.000717,hintandextended,lora,60 +on5,0,0,25,1,0,98,1600.001280,182,1,7012.001280,665.600717,hintandextended,lora,60 +on10,0,0,24,1,0,626,1566.001280,182,0,39517.001280,652.000717,hintandextended,lora,60 +on10,0,0,24,1,0,179,1600.000000,183,0,9401.001280,665.600410,hintandextended,lora,60 +on1,0,0,24,1,0,510,1572.000000,183,0,32343.001280,659.520614,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,860,1560.001280,183,0,50843.001280,649.600717,hintandextended,lora,60 +on4,0,0,24,1,0,926,1566.001280,183,0,55173.001280,652.000717,hintandextended,lora,60 +on3,0,0,24,1,0,300,1541.001280,183,0,19981.001280,647.824717,hintandextended,lora,60 +on7,0,0,25,1,0,278,1600.201280,183,1,16913.001280,665.680717,hintandextended,lora,60 +on9,0,0,25,1,0,398,1600.001280,183,1,24461.001280,665.600717,hintandextended,lora,60 +on11,0,0,25,1,0,1140,1601.601280,183,1,69669.602560,666.289126,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,10,24,0,0,0,2569.215360,183,0,-1.000000,1283.690035,hintandextended,lora,60 +on5,0,0,25,1,0,180,1603.601280,183,1,14380.602560,670.833331,hintandextended,lora,60 +on2,0,0,24,1,0,60,1541.000000,183,0,5512.001280,642.000410,hintandextended,lora,60 +on12,0,0,25,1,0,1200,1601.601280,184,1,72940.602560,666.289126,hintandextended,lora,60 +on9,0,0,24,1,0,499,1559.001280,184,0,30933.001280,649.200717,hintandextended,lora,60 +on8,0,0,25,1,0,360,1600.602560,184,1,22204.602560,665.889638,hintandextended,lora,60 +on7,0,0,25,1,0,420,1600.002560,184,1,25437.001280,665.601434,hintandextended,lora,60 +on6,0,0,25,1,0,717,1602.001280,184,1,43043.001280,674.881126,hintandextended,lora,60 +on2,0,0,24,1,0,872,1572.001280,184,0,52978.001280,654.400717,hintandextended,lora,60 +on5,0,0,24,1,0,720,1540.001280,184,0,46488.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,9,24,0,0,0,2515.214080,184,0,-1.000000,1236.488909,hintandextended,lora,60 +on11,0,0,24,1,0,600,1541.001280,184,0,38135.001280,651.184717,hintandextended,lora,60 +on3,0,0,24,1,0,540,1540.001280,184,0,36152.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,1081,1541.001280,185,0,66100.001280,642.000717,hintandextended,lora,60 +on2,0,0,25,1,0,600,1601.601280,185,1,39125.602560,666.289126,hintandextended,lora,60 +on9,0,0,25,1,0,434,1600.301280,185,1,29499.001280,671.832717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2246.610240,185,0,-1.000000,1077.846144,hintandextended,lora,60 +on4,0,0,24,1,0,809,1569.001280,185,0,47582.001280,653.200717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,300,1540.001280,185,0,20917.001280,641.600717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,180,1541.001280,185,0,14001.001280,646.480922,hintandextended,lora,60 +on3,0,0,24,1,0,0,1540.001280,185,0,1955.001280,641.600717,hintandextended,lora,60 +on11,0,0,25,0,0,1478,1500.000000,185,1,-1.000000,600.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,3,24,0,0,0,1796.003840,186,0,-1.000000,795.202560,hintandextended,lora,60 +on4,0,0,24,1,0,660,1542.000000,186,0,40016.001280,651.584410,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,929,1569.001280,186,0,56923.001280,653.200717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,25,1,0,895,1602.200000,186,1,54111.001280,675.664410,hintandextended,lora,60 +on8,0,0,25,0,0,1489,1500.200000,186,1,-1.000000,600.080000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,25,1,0,1359,1600.001280,187,1,81102.001280,665.600717,hintandextended,lora,60 +on12,0,0,24,1,0,222,1582.001280,187,0,14200.001280,658.400717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2233.211520,187,0,-1.000000,1072.486861,hintandextended,lora,60 +on10,0,0,25,1,0,1260,1601.602560,187,1,75938.602560,674.513434,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1092,1552.001280,187,0,67351.001280,646.400717,hintandextended,lora,60 +on11,0,0,24,1,0,1140,1540.001280,187,0,69802.001280,641.600717,hintandextended,lora,60 +on2,0,0,25,1,0,900,1601.601280,187,1,56230.602560,666.289126,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,54,1595.000000,187,0,2613.001280,663.600410,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,540,1540.001280,188,0,32740.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1380,1540.000000,188,0,83415.000000,641.600000,hintandextended,lora,60 +on0,1,8,24,0,0,0,2335.610240,188,0,-1.000000,1139.046349,hintandextended,lora,60 +on10,0,0,24,1,0,350,1590.001280,188,0,18720.001280,661.600717,hintandextended,lora,60 +on3,0,0,25,1,0,360,1601.602560,188,1,22768.602560,666.289843,hintandextended,lora,60 +on8,0,0,24,1,0,945,1586.001280,188,0,56207.001280,669.280717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,988,1568.001280,188,0,59606.001280,652.800717,hintandextended,lora,60 +on5,0,0,24,1,0,539,1600.000000,188,0,29027.001280,665.600410,hintandextended,lora,60 +on1,0,0,24,1,0,1140,1540.001280,188,0,71008.001280,641.600717,hintandextended,lora,60 +on4,0,0,25,0,0,1456,1500.300000,188,1,-1.000000,607.160000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,1,0,780,1540.001280,189,0,49175.001280,641.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,1172,1600.002560,189,1,70449.001280,665.601434,hintandextended,lora,60 +on5,0,0,25,1,0,1020,1602.601280,189,1,62312.602560,675.873126,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1975.607680,189,0,-1.000000,918.244710,hintandextended,lora,60 +on10,0,0,24,1,0,720,1540.001280,189,0,46181.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1313,1593.001280,189,0,76996.001280,662.800717,hintandextended,lora,60 +on5,0,0,24,1,0,363,1544.001280,190,0,23500.001280,647.520512,hintandextended,lora,60 +on0,1,6,24,0,0,0,2081.007680,190,0,-1.000000,986.004915,hintandextended,lora,60 +on9,0,0,24,1,0,60,1540.005120,190,0,4138.001280,641.602458,hintandextended,lora,60 +on11,0,0,24,1,0,600,1541.001280,190,0,39464.001280,645.680717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,155,1577.001280,190,0,8371.001280,666.224717,hintandextended,lora,60 +on12,0,0,24,1,0,187,1548.001280,190,0,12353.001280,654.240717,hintandextended,lora,60 +on2,0,0,25,1,0,780,1600.001280,190,1,45513.001280,665.600717,hintandextended,lora,60 +on3,0,0,25,0,0,1486,1500.000000,190,1,-1.000000,600.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,60,1540.001280,191,0,4552.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,244,1544.001280,191,0,18151.001280,643.200717,hintandextended,lora,60 +on3,0,0,25,0,0,1500,1500.000000,191,1,-1.000000,600.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,1080,1540.001280,191,0,65026.001280,641.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2013.006400,191,0,-1.000000,933.203584,hintandextended,lora,60 +on4,0,0,24,1,0,1140,1541.001280,191,0,71985.001280,651.184717,hintandextended,lora,60 +on8,0,0,24,1,0,1215,1555.001280,191,0,73905.001280,647.600717,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,1041,1561.001280,192,0,62603.001280,650.000717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,1428,1588.000000,192,0,85416.000000,660.800000,hintandextended,lora,60 +on0,1,5,24,0,0,0,1991.005120,192,0,-1.000000,924.403072,hintandextended,lora,60 +on10,0,0,24,1,0,1246,1586.001280,192,0,73432.001280,660.000717,hintandextended,lora,60 +on1,0,0,24,1,0,60,1540.002560,192,0,6499.001280,641.601434,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,1,0,949,1589.001280,192,0,56884.001280,661.200717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,399,1540.001280,193,1,27639.001280,641.600717,hintandextended,lora,60 +on9,0,0,25,1,0,720,1601.601280,193,1,46358.602560,666.289126,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1034,1555.001280,193,0,63462.001280,657.040717,hintandextended,lora,60 +on7,0,0,24,1,0,859,1560.000000,193,0,50630.001280,649.600410,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2159.210240,193,0,-1.000000,1017.286758,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,25,1,0,300,1602.602560,193,1,21381.602560,672.033843,hintandextended,lora,60 +on2,0,0,24,1,0,120,1542.000000,193,0,9372.001280,650.400410,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,1,0,770,1590.001280,194,0,46143.001280,661.600717,hintandextended,lora,60 +on1,0,0,24,1,0,1408,1568.000000,194,0,84366.000000,652.800000,hintandextended,lora,60 +on0,1,6,24,0,0,0,2040.006400,194,0,-1.000000,969.603584,hintandextended,lora,60 +on6,0,0,24,1,0,699,1579.001280,194,0,41728.001280,657.200717,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,1,0,116,1596.001280,194,0,7278.001280,664.000717,hintandextended,lora,60 +on5,0,0,24,1,0,1219,1560.001280,194,0,74301.001280,658.304717,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,1,0,1297,1598.001280,194,1,77396.001280,664.800717,hintandextended,lora,60 +on6,0,0,24,1,0,764,1584.001280,195,0,43746.001280,659.200717,hintandextended,lora,60 +on8,0,0,25,1,0,840,1600.602560,195,1,53673.602560,665.889434,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,9,1549.002560,195,0,1586.001280,645.201434,hintandextended,lora,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,hintandextended,lora,60 +on1,0,0,25,0,0,1499,1500.000000,195,1,-1.000000,600.000000,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,25,1,0,60,1602.601280,195,1,7322.602560,675.873126,hintandextended,lora,60 +on4,0,0,24,1,0,929,1570.001280,195,0,54766.001280,654.880717,hintandextended,lora,60 +on12,0,0,24,1,0,220,1580.001280,195,0,13059.001280,657.600717,hintandextended,lora,60 +on7,0,0,24,1,0,1380,1540.000000,195,0,86089.000000,641.600000,hintandextended,lora,60 +on0,1,7,24,0,0,0,2252.210240,195,0,-1.000000,1080.086144,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,1,0,600,1601.601280,196,1,37680.602560,666.289126,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,720,1540.001280,196,0,43408.001280,641.600717,hintandextended,lora,60 +on5,0,0,25,1,0,480,1601.998720,196,1,30408.001280,666.400102,hintandextended,lora,60 +on9,0,0,24,1,0,1020,1540.001280,196,0,61410.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on0,1,5,24,0,0,0,2112.607680,196,0,-1.000000,973.045530,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,1,0,180,1541.001280,196,0,11247.001280,642.001331,hintandextended,lora,60 +on3,0,0,24,1,0,716,1596.001280,197,0,40288.001280,664.000717,hintandextended,lora,60 +on0,1,7,24,0,0,0,2140.608960,197,0,-1.000000,1035.445632,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,25,1,0,447,1600.201280,197,1,25761.001280,665.680717,hintandextended,lora,60 +on2,0,0,25,1,0,283,1601.000000,197,1,16283.001280,666.000410,hintandextended,lora,60 +on10,0,0,24,1,0,770,1590.001280,197,0,43680.001280,661.600717,hintandextended,lora,60 +on11,0,0,24,1,0,235,1600.600000,197,1,11321.601280,675.024410,hintandextended,lora,60 +on6,0,0,24,1,0,173,1594.001280,197,0,8710.001280,672.384717,hintandextended,lora,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,lora,60 +on9,0,0,24,1,0,320,1562.000000,197,0,21390.001280,659.584410,hintandextended,lora,60 +on0,1,4,24,0,0,0,1888.606400,198,0,-1.000000,857.843789,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,1020,1540.001280,198,0,62313.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,976,1556.001280,198,0,60104.001280,648.000717,hintandextended,lora,60 +on6,0,0,25,1,0,1260,1601.601280,198,1,76939.602560,666.289126,hintandextended,lora,60 +on9,0,0,24,1,0,172,1592.001280,198,0,9664.001280,662.400717,hintandextended,lora,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on5,0,0,24,1,0,820,1580.001280,199,0,49745.001280,657.600717,hintandextended,lora,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,1,0,1092,1552.001280,199,0,66143.001280,646.400717,hintandextended,lora,60 +on0,1,5,24,0,0,0,1991.006400,199,0,-1.000000,924.403584,hintandextended,lora,60 +on4,0,0,24,1,0,480,1540.001280,199,0,29746.001280,641.600717,hintandextended,lora,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on1,0,0,24,1,0,1310,1590.001280,199,0,78643.001280,661.600717,hintandextended,lora,60 +on2,0,0,24,1,0,1320,1540.001280,199,0,80034.001280,641.600717,hintandextended,lora,60 +on7,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,lora,60 +on3,0,0,24,1,0,905,1546.001280,200,0,55880.001280,653.440717,hintandextended,lora,60 +on10,0,0,25,1,0,0,1601.602560,200,1,2758.602560,675.473434,hintandextended,lora,60 +on11,0,0,24,1,0,480,1540.001280,200,0,30211.001280,641.600717,hintandextended,lora,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on12,0,0,24,1,0,679,1560.001280,200,0,42263.001280,653.280717,hintandextended,lora,60 +on0,1,6,24,0,0,0,2100.608960,200,0,-1.000000,993.845222,hintandextended,lora,60 +on5,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on2,0,0,25,0,0,1479,1500.000000,200,1,-1.000000,600.000000,hintandextended,lora,60 +on7,0,0,24,1,0,68,1548.002560,200,0,6869.001280,644.801434,hintandextended,lora,60 +on9,0,0,24,1,0,369,1549.001280,200,0,23265.001280,645.200717,hintandextended,lora,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,lora,60 +on6,0,0,24,0,0,1428,1440.000000,1,0,-1.000000,584.450000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1420,1440.000000,1,0,-1.000000,589.650000,baseline,nbiot,60 +on8,0,0,24,1,0,439,1440.000000,1,0,27193.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,1,0,483,1440.000000,1,0,29036.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1431,1440.000000,1,0,-1.000000,582.500000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1377,1440.000000,1,0,-1.000000,666.350000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,1,0,-1.000000,699.513000,baseline,nbiot,60 +on10,0,0,24,0,0,1411,1440.000000,2,0,-1.000000,595.500000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1390,1440.000000,2,0,-1.000000,632.550000,baseline,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,2,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,594.850000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,2,0,-1.000000,737.863000,baseline,nbiot,60 +on6,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,594.850000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1259,1440.000000,2,0,77400.010000,641.006500,baseline,nbiot,60 +on5,0,0,24,1,0,552,1440.000000,2,0,35430.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,3,0,-1.000000,765.169500,baseline,nbiot,60 +on4,0,0,24,1,0,392,1440.000000,3,0,27768.010000,641.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,956,1440.000000,3,0,60358.010000,641.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,480,1440.000000,3,0,31263.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1373,1440.000000,3,0,-1.000000,621.500000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1096,1440.000000,3,0,66938.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1422,1440.000000,3,0,-1.000000,589.643500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,4,0,-1.000000,601.350000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,4,0,-1.000000,649.456500,baseline,nbiot,60 +on2,0,0,24,0,0,1420,1440.000000,4,0,-1.000000,596.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.650000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,17,1440.000000,4,0,2205.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1434,1440.000000,4,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1436,1440.000000,4,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1433,1440.000000,5,0,-1.000000,581.200000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,5,0,-1.000000,674.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1419,1440.000000,5,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1404,1440.000000,5,0,-1.000000,600.050000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1428,1440.000000,5,0,-1.000000,584.450000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1370,1440.000000,5,0,-1.000000,638.400000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1438,1440.000000,6,0,-1.000000,577.950000,baseline,nbiot,60 +on7,0,0,24,1,0,498,1440.000000,6,0,30239.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,1,0,1033,1440.000000,6,0,61770.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,6,0,-1.000000,681.319500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,6,0,-1.000000,601.350000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1260,1440.000000,6,0,77057.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,7,0,-1.000000,655.300000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1392,1440.000000,7,0,-1.000000,654.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1403,1440.000000,7,0,-1.000000,639.050000,baseline,nbiot,60 +on8,0,0,24,0,0,1408,1440.000000,7,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,8,0,-1.000000,668.306500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,8,0,-1.000000,654.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,180,1440.000000,8,0,13026.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1420,1440.000000,8,0,-1.000000,589.650000,baseline,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,8,0,-1.000000,581.200000,baseline,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,8,0,-1.000000,598.100000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1365,1440.000000,9,0,-1.000000,626.700000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1408,1440.000000,9,0,-1.000000,601.350000,baseline,nbiot,60 +on9,0,0,24,0,0,1418,1440.000000,9,0,-1.000000,590.950000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,9,0,-1.000000,818.450000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1428,1440.000000,9,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1389,1440.000000,9,0,-1.000000,610.450000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1373,1440.000000,9,0,-1.000000,636.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1393,1440.000000,9,0,-1.000000,640.350000,baseline,nbiot,60 +on8,0,0,24,0,0,1387,1440.000000,9,0,-1.000000,641.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,10,0,-1.000000,593.550000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,10,0,-1.000000,744.350000,baseline,nbiot,60 +on4,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,10,0,-1.000000,590.950000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1369,1440.000000,10,0,-1.000000,636.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,599.400000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1378,1440.000000,10,0,-1.000000,617.600000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,312,1440.000000,11,0,19828.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1421,1440.000000,11,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1392,1440.000000,11,0,-1.000000,668.300000,baseline,nbiot,60 +on6,0,0,24,0,0,1438,1440.000000,11,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,598.100000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1435,1440.000000,11,0,-1.000000,579.900000,baseline,nbiot,60 +on1,0,0,24,1,0,227,1440.000000,11,0,17929.010000,618.906500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,11,0,-1.000000,614.993500,baseline,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,11,0,60359.010000,602.006500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,11,0,-1.000000,784.019500,baseline,nbiot,60 +on4,0,0,24,1,0,731,1440.000000,11,0,45323.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1421,1440.000000,12,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,1,0,126,1440.000000,12,0,10783.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1422,1440.000000,12,0,-1.000000,588.350000,baseline,nbiot,60 +on9,0,0,24,0,0,1438,1440.000000,12,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,12,0,37549.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,12,0,-1.000000,600.700000,baseline,nbiot,60 +on8,0,0,24,1,0,1241,1440.000000,12,0,76429.010000,620.856500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,12,0,-1.000000,724.869500,baseline,nbiot,60 +on7,0,0,24,0,0,1399,1440.000000,13,0,-1.000000,624.093500,baseline,nbiot,60 +on12,0,0,24,0,0,1429,1440.000000,13,0,-1.000000,654.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,13,0,-1.000000,593.550000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,13,0,-1.000000,653.993500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,3,1440.000000,13,0,2049.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,13,0,-1.000000,719.650000,baseline,nbiot,60 +on1,0,0,24,1,0,582,1440.000000,13,0,38097.010000,622.806500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1426,1440.000000,14,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,14,0,-1.000000,697.563000,baseline,nbiot,60 +on3,0,0,24,0,0,1408,1440.000000,14,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1401,1440.000000,14,0,-1.000000,633.850000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.650000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,374,1440.000000,14,0,22852.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,14,0,15944.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1424,1440.000000,14,0,-1.000000,587.050000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,423,1440.000000,15,0,28721.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,1,0,1020,1440.000000,15,0,63627.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,15,0,-1.000000,596.150000,baseline,nbiot,60 +on11,0,0,24,1,0,357,1440.000000,15,0,22259.010000,641.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,15,0,-1.000000,756.076000,baseline,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,15,0,-1.000000,655.300000,baseline,nbiot,60 +on2,0,0,24,1,0,663,1440.000000,15,0,39850.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1400,1440.000000,15,0,-1.000000,603.300000,baseline,nbiot,60 +on7,0,0,24,0,0,1367,1440.000000,16,0,-1.000000,637.750000,baseline,nbiot,60 +on12,0,0,24,1,0,420,1440.000000,16,0,27208.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,1,0,488,1440.000000,16,0,30750.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1423,1440.000000,16,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,16,0,-1.000000,735.269500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1409,1440.000000,16,0,-1.000000,596.800000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1263,1440.000000,16,0,79149.010000,602.006500,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,17,0,-1.000000,712.500000,baseline,nbiot,60 +on6,0,0,24,0,0,1437,1440.000000,17,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1413,1440.000000,17,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1408,1440.000000,17,0,-1.000000,597.450000,baseline,nbiot,60 +on2,0,0,23,0,0,1430,1430.000000,17,0,-1.000000,572.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1416,1440.000000,17,0,-1.000000,592.250000,baseline,nbiot,60 +on10,0,0,24,0,0,1424,1440.000000,17,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1351,1440.000000,17,0,-1.000000,717.050000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1431,1440.000000,17,0,-1.000000,582.500000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1420,1440.000000,18,0,-1.000000,589.650000,baseline,nbiot,60 +on5,0,0,24,1,0,467,1440.000000,18,0,29780.010000,641.006500,baseline,nbiot,60 +on8,0,0,24,1,0,601,1440.000000,18,0,36148.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,378,1440.000000,18,0,23198.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,18,0,69122.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,18,0,-1.000000,748.932500,baseline,nbiot,60 +on6,0,0,24,1,0,1031,1440.000000,18,0,62863.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1427,1440.000000,18,0,-1.000000,585.100000,baseline,nbiot,60 +on7,0,0,24,0,0,1434,1440.000000,19,0,-1.000000,580.550000,baseline,nbiot,60 +on12,0,0,24,0,0,1408,1440.000000,19,0,-1.000000,597.450000,baseline,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,578.600000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,19,0,-1.000000,616.950000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,19,0,-1.000000,667.663000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,75,1440.000000,19,0,4538.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,19,0,43514.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,20,0,-1.000000,698.213000,baseline,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,20,0,83759.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,540,1440.000000,20,0,34276.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,20,0,-1.000000,621.500000,baseline,nbiot,60 +on4,0,0,24,0,0,1416,1440.000000,20,0,-1.000000,592.250000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1397,1440.000000,20,0,-1.000000,605.250000,baseline,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,21,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,21,0,-1.000000,692.350000,baseline,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,21,0,-1.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1428,1440.000000,21,0,-1.000000,584.450000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1417,1440.000000,21,0,-1.000000,591.600000,baseline,nbiot,60 +on2,0,0,24,0,0,1403,1440.000000,21,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1414,1440.000000,21,0,-1.000000,594.200000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,22,0,-1.000000,592.250000,baseline,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,22,0,4852.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1405,1440.000000,22,0,-1.000000,599.400000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,22,0,-1.000000,680.663000,baseline,nbiot,60 +on9,0,0,24,0,0,1428,1440.000000,22,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,498,1440.000000,22,0,30272.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1434,1440.000000,22,0,-1.000000,580.550000,baseline,nbiot,60 +on9,0,0,24,0,0,1425,1440.000000,23,0,-1.000000,586.400000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,23,0,3255.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1436,1440.000000,23,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,23,0,43763.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1395,1440.000000,23,0,-1.000000,650.093500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,23,0,-1.000000,759.326000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1335,1440.000000,23,0,79463.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1428,1440.000000,23,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1200,1440.000000,23,0,72332.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,1,0,600,1440.000000,23,0,37840.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,1,0,979,1440.000000,24,0,58636.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,24,0,-1.000000,605.243500,baseline,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,24,0,13338.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1224,1440.000000,24,0,75947.010000,626.056500,baseline,nbiot,60 +on8,0,0,24,1,0,130,1440.000000,24,0,8599.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,24,0,-1.000000,611.750000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,24,0,-1.000000,758.026000,baseline,nbiot,60 +on7,0,0,24,1,0,605,1440.000000,24,0,37424.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,720,1440.000000,25,0,44801.010000,610.456500,baseline,nbiot,60 +on12,0,0,24,1,0,853,1440.000000,25,0,53923.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1436,1440.000000,25,0,-1.000000,579.250000,baseline,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,25,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,25,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,25,0,-1.000000,696.269500,baseline,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,25,0,34395.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1386,1440.000000,26,0,-1.000000,626.700000,baseline,nbiot,60 +on7,0,0,24,0,0,1431,1440.000000,26,0,-1.000000,582.500000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,26,0,-1.000000,751.513000,baseline,nbiot,60 +on10,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,585.100000,baseline,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,26,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,1,0,780,1440.000000,26,0,48034.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1409,1440.000000,26,0,-1.000000,618.250000,baseline,nbiot,60 +on1,0,0,24,1,0,1211,1440.000000,26,0,74225.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,26,0,-1.000000,586.400000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1397,1440.000000,26,0,-1.000000,605.250000,baseline,nbiot,60 +on5,0,0,24,1,0,1037,1440.000000,27,0,64615.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1415,1440.000000,27,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,614.350000,baseline,nbiot,60 +on2,0,0,24,1,0,1147,1440.000000,27,0,74696.010000,665.056500,baseline,nbiot,60 +on10,0,0,24,1,0,1247,1440.000000,27,0,76971.010000,619.556500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,605,1440.000000,27,0,38174.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1375,1440.000000,27,0,-1.000000,634.500000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,27,0,-1.000000,876.982500,baseline,nbiot,60 +on3,0,0,24,1,0,482,1440.000000,27,0,28940.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1420,1440.000000,27,0,-1.000000,626.700000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1387,1440.000000,28,0,-1.000000,616.950000,baseline,nbiot,60 +on8,0,0,24,0,0,1412,1440.000000,28,0,-1.000000,595.500000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,592.900000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1437,1440.000000,28,0,-1.000000,578.600000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,28,0,-1.000000,685.850000,baseline,nbiot,60 +on10,0,0,24,0,0,1436,1440.000000,28,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1394,1440.000000,28,0,-1.000000,607.200000,baseline,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,29,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,607,1440.000000,29,0,37166.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1438,1440.000000,29,0,-1.000000,577.950000,baseline,nbiot,60 +on7,0,0,24,0,0,1433,1440.000000,29,0,-1.000000,581.200000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1430,1440.000000,29,0,-1.000000,583.150000,baseline,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,29,0,32562.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,29,0,-1.000000,659.213000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1437,1440.000000,30,0,-1.000000,578.600000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,30,0,-1.000000,649.463000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1172,1440.000000,30,0,74936.010000,620.856500,baseline,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,30,0,45453.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1396,1440.000000,31,0,-1.000000,631.893500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,31,0,-1.000000,694.950000,baseline,nbiot,60 +on10,0,0,24,0,0,1435,1440.000000,31,0,-1.000000,579.900000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,31,0,-1.000000,600.050000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1426,1440.000000,31,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1403,1440.000000,31,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,845,1440.000000,31,0,53232.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,593.550000,baseline,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,32,0,-1.000000,587.700000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,32,0,-1.000000,583.800000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1410,1440.000000,32,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,32,0,-1.000000,667.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,32,0,-1.000000,615.650000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,33,0,61588.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1398,1440.000000,33,0,-1.000000,654.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1413,1440.000000,33,0,-1.000000,594.200000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,193,1440.000000,33,0,14053.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,33,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,33,0,-1.000000,700.163000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,34,0,-1.000000,592.250000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,34,0,-1.000000,683.256500,baseline,nbiot,60 +on12,0,0,24,0,0,1420,1440.000000,34,0,-1.000000,589.650000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,34,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1427,1440.000000,34,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,34,0,62342.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1411,1440.000000,35,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,608,1440.000000,35,0,39427.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1422,1440.000000,35,0,-1.000000,588.350000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1200,1440.000000,35,0,72154.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1384,1440.000000,35,0,86345.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,35,0,-1.000000,685.869500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,36,0,-1.000000,765.176000,baseline,nbiot,60 +on11,0,0,24,1,0,1148,1440.000000,36,0,68548.010000,605.906500,baseline,nbiot,60 +on1,0,0,24,1,0,484,1440.000000,36,0,31127.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1427,1440.000000,36,0,-1.000000,585.100000,baseline,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,36,0,635.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,670,1440.000000,36,0,43178.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1401,1440.000000,36,0,-1.000000,655.943500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1295,1440.000000,36,0,81227.010000,641.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,37,0,-1.000000,590.300000,baseline,nbiot,60 +on6,0,0,24,0,0,1434,1440.000000,37,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1430,1440.000000,37,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,37,0,8672.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1431,1440.000000,37,0,-1.000000,582.500000,baseline,nbiot,60 +on10,0,0,24,1,0,1394,1440.000000,37,0,83886.010000,641.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,37,0,-1.000000,784.663000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,37,0,-1.000000,609.143500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1201,1440.000000,37,0,78028.010000,678.706500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1375,1440.000000,37,0,-1.000000,654.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1428,1440.000000,38,0,-1.000000,584.450000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1385,1440.000000,38,0,-1.000000,613.700000,baseline,nbiot,60 +on9,0,0,24,0,0,1414,1440.000000,38,0,-1.000000,593.550000,baseline,nbiot,60 +on12,0,0,24,0,0,1411,1440.000000,38,0,-1.000000,595.500000,baseline,nbiot,60 +on6,0,0,24,0,0,1438,1440.000000,38,0,-1.000000,577.950000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,319,1440.000000,38,0,20927.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,38,0,-1.000000,687.156500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,600.050000,baseline,nbiot,60 +on4,0,0,24,1,0,1359,1440.000000,39,0,82929.010000,624.106500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,39,0,-1.000000,736.569500,baseline,nbiot,60 +on5,0,0,23,0,0,1411,1438.000000,39,0,-1.000000,620.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,420,1440.000000,39,0,27714.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,39,0,-1.000000,593.550000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,18,1440.000000,39,0,2674.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1401,1440.000000,40,0,-1.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,40,0,-1.000000,583.800000,baseline,nbiot,60 +on10,0,0,24,1,0,1178,1440.000000,40,0,74096.010000,680.006500,baseline,nbiot,60 +on11,0,0,24,1,0,540,1440.000000,40,0,32805.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,40,0,-1.000000,599.400000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,40,0,-1.000000,749.563000,baseline,nbiot,60 +on1,0,0,24,0,0,1408,1440.000000,40,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1418,1440.000000,40,0,-1.000000,590.950000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,16,1440.000000,41,0,1179.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1428,1440.000000,41,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,41,0,-1.000000,653.356500,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,41,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,41,0,-1.000000,598.750000,baseline,nbiot,60 +on6,0,0,24,0,0,1391,1440.000000,42,0,-1.000000,629.300000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,42,0,-1.000000,709.906500,baseline,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,42,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1422,1440.000000,42,0,-1.000000,610.443500,baseline,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,42,0,260.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,1,0,460,1440.000000,42,0,31082.010000,615.656500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,43,0,-1.000000,600.050000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,300,1440.000000,43,0,19953.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1419,1440.000000,43,0,-1.000000,590.300000,baseline,nbiot,60 +on6,0,0,24,0,0,1409,1440.000000,43,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1402,1440.000000,43,0,-1.000000,602.000000,baseline,nbiot,60 +on11,0,0,24,1,0,845,1440.000000,43,0,53373.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1433,1440.000000,43,0,-1.000000,581.200000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,43,0,-1.000000,718.363000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,44,0,-1.000000,732.019500,baseline,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,44,0,4409.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1406,1440.000000,44,0,-1.000000,624.100000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,44,0,67693.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1419,1440.000000,44,0,-1.000000,590.300000,baseline,nbiot,60 +on9,0,0,24,1,0,540,1440.000000,44,0,32494.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1391,1440.000000,44,0,-1.000000,639.700000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1431,1440.000000,44,0,-1.000000,619.550000,baseline,nbiot,60 +on4,0,0,24,1,0,1336,1440.000000,45,0,79876.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,45,0,-1.000000,754.106500,baseline,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,45,0,21646.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,547,1440.000000,45,0,33034.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1394,1440.000000,45,0,-1.000000,607.200000,baseline,nbiot,60 +on8,0,0,24,0,0,1412,1440.000000,45,0,-1.000000,611.093500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,45,0,-1.000000,585.750000,baseline,nbiot,60 +on3,0,0,24,0,0,1382,1440.000000,45,0,-1.000000,615.643500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,46,0,-1.000000,731.369500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,208,1440.000000,46,0,17261.010000,623.456500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1417,1440.000000,46,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1439,1440.000000,46,0,-1.000000,577.300000,baseline,nbiot,60 +on3,0,0,24,1,0,976,1440.000000,46,0,60492.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,46,0,29522.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,905,1440.000000,46,0,54698.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1421,1440.000000,46,0,-1.000000,601.343500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1438,1440.000000,47,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,47,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,300,1440.000000,47,0,21493.010000,602.006500,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,47,0,-1.000000,680.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1430,1440.000000,47,0,-1.000000,583.150000,baseline,nbiot,60 +on10,0,0,24,0,0,1392,1440.000000,47,0,-1.000000,608.500000,baseline,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,47,0,-1.000000,600.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1426,1440.000000,48,0,-1.000000,585.750000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,48,0,-1.000000,691.719500,baseline,nbiot,60 +on12,0,0,24,1,0,1358,1440.000000,48,0,83242.010000,641.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1421,1440.000000,48,0,-1.000000,589.000000,baseline,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,48,0,4044.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,188,1440.000000,48,0,12724.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,677,1440.000000,49,0,40995.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,598.100000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,49,0,-1.000000,693.019500,baseline,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,49,0,85455.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1421,1440.000000,49,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,427,1440.000000,49,0,25423.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1435,1440.000000,49,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1421,1440.000000,50,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,50,0,-1.000000,762.576000,baseline,nbiot,60 +on2,0,0,24,0,0,1377,1440.000000,50,0,-1.000000,638.400000,baseline,nbiot,60 +on3,0,0,24,1,0,1080,1440.000000,50,0,66219.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,1,0,725,1440.000000,50,0,46467.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,480,1440.000000,50,0,28876.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1426,1440.000000,50,0,-1.000000,585.750000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,50,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,50,0,9204.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,1,0,1200,1440.000000,51,0,74978.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,51,0,12713.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,51,0,-1.000000,722.919500,baseline,nbiot,60 +on6,0,0,24,0,0,1438,1440.000000,51,0,-1.000000,577.950000,baseline,nbiot,60 +on9,0,0,24,0,0,1429,1440.000000,51,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1416,1440.000000,51,0,-1.000000,592.250000,baseline,nbiot,60 +on11,0,0,24,0,0,1382,1440.000000,51,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,420,1440.000000,51,0,27548.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1435,1440.000000,51,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,52,0,23419.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1412,1440.000000,52,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,614,1440.000000,52,0,39604.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1394,1440.000000,52,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,52,0,-1.000000,719.019500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,52,0,-1.000000,589.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1438,1440.000000,52,0,-1.000000,577.950000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,730,1440.000000,52,0,44566.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1408,1440.000000,53,0,-1.000000,634.500000,baseline,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,53,0,27281.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,53,0,15618.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,53,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,53,0,-1.000000,583.800000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,53,0,-1.000000,706.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,53,0,-1.000000,635.793500,baseline,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,54,0,-1.000000,596.150000,baseline,nbiot,60 +on6,0,0,24,0,0,1415,1440.000000,54,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,54,0,-1.000000,590.950000,baseline,nbiot,60 +on3,0,0,24,1,0,720,1440.000000,54,0,45698.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1021,1440.000000,54,0,61447.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1434,1440.000000,54,0,-1.000000,580.550000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,54,0,-1.000000,710.569500,baseline,nbiot,60 +on1,0,0,24,1,0,780,1440.000000,54,0,48892.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,55,0,42199.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1437,1440.000000,55,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,55,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1422,1440.000000,55,0,-1.000000,588.350000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1403,1440.000000,55,0,-1.000000,600.700000,baseline,nbiot,60 +on6,0,0,24,1,0,540,1440.000000,55,0,33058.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,55,0,-1.000000,685.863000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1410,1440.000000,56,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,56,0,-1.000000,600.050000,baseline,nbiot,60 +on12,0,0,24,0,0,1435,1440.000000,56,0,-1.000000,579.900000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,885,1440.000000,57,0,57192.010000,612.406500,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,57,0,-1.000000,677.406500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,598.750000,baseline,nbiot,60 +on7,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1411,1440.000000,57,0,-1.000000,595.500000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,58,0,-1.000000,599.393500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,9,1440.000000,58,0,3280.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1393,1440.000000,58,0,-1.000000,623.450000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,58,0,-1.000000,705.350000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,583.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1380,1440.000000,58,0,-1.000000,616.300000,baseline,nbiot,60 +on8,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,59,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,59,0,-1.000000,583.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1389,1440.000000,59,0,-1.000000,654.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,59,0,-1.000000,729.413000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1080,1440.000000,59,0,67294.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,1,0,540,1440.000000,59,0,35552.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,59,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1379,1440.000000,60,0,-1.000000,654.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1439,1440.000000,60,0,-1.000000,577.300000,baseline,nbiot,60 +on2,0,0,24,0,0,1427,1440.000000,60,0,-1.000000,590.943500,baseline,nbiot,60 +on8,0,0,24,1,0,1078,1440.000000,60,0,69222.010000,680.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,60,0,-1.000000,585.750000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,60,0,-1.000000,704.700000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1432,1440.000000,61,0,-1.000000,602.643500,baseline,nbiot,60 +on1,0,0,24,1,0,555,1440.000000,61,0,34790.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,1,0,488,1440.000000,61,0,32215.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1420,1440.000000,61,0,-1.000000,616.300000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,61,0,6841.010000,602.006500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,61,0,-1.000000,707.319500,baseline,nbiot,60 +on2,0,0,24,1,0,1310,1440.000000,61,0,80424.010000,609.156500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,62,0,-1.000000,581.850000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,62,0,-1.000000,587.050000,baseline,nbiot,60 +on6,0,0,24,1,0,1096,1440.000000,62,0,65906.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,62,0,-1.000000,670.919500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,75,1440.000000,62,0,4155.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,62,0,30107.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,585.750000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,63,0,-1.000000,597.450000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,645,1440.000000,63,0,42122.010000,614.356500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,63,0,-1.000000,771.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1417,1440.000000,63,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1222,1440.000000,63,0,76042.010000,635.800000,baseline,nbiot,60 +on1,0,0,24,0,0,1427,1440.000000,63,0,-1.000000,585.100000,baseline,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,63,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1419,1440.000000,63,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,64,0,-1.000000,720.963000,baseline,nbiot,60 +on12,0,0,24,0,0,1407,1440.000000,64,0,-1.000000,598.100000,baseline,nbiot,60 +on8,0,0,24,1,0,240,1440.000000,64,0,14489.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1409,1440.000000,64,0,-1.000000,635.143500,baseline,nbiot,60 +on9,0,0,24,0,0,1405,1440.000000,64,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,64,0,56428.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,1,0,543,1440.000000,64,0,34797.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1410,1440.000000,65,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1401,1440.000000,65,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,63,1440.000000,65,0,6408.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,65,0,-1.000000,763.213000,baseline,nbiot,60 +on11,0,0,24,0,0,1383,1440.000000,65,0,-1.000000,627.350000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1379,1440.000000,65,0,-1.000000,633.200000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1426,1440.000000,65,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,610,1440.000000,65,0,39561.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,66,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1424,1440.000000,66,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,421,1440.000000,66,0,27559.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,1,0,125,1440.000000,66,0,7658.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1436,1440.000000,66,0,-1.000000,579.250000,baseline,nbiot,60 +on4,0,0,24,1,0,1379,1440.000000,66,0,85604.010000,641.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,66,0,-1.000000,732.669500,baseline,nbiot,60 +on8,0,0,24,0,0,1406,1440.000000,66,0,-1.000000,598.750000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,66,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1153,1440.000000,67,0,69525.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1424,1440.000000,67,0,-1.000000,587.050000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,67,0,-1.000000,593.543500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,67,0,-1.000000,743.069500,baseline,nbiot,60 +on6,0,0,24,0,0,1404,1440.000000,67,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,1,0,9,1440.000000,67,0,2853.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,488,1440.000000,67,0,32309.010000,641.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,974,1440.000000,67,0,58621.010000,641.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1428,1440.000000,67,0,-1.000000,584.450000,baseline,nbiot,60 +on7,0,0,24,1,0,0,1440.000000,68,0,1059.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,602.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,967,1440.000000,68,0,58550.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1410,1440.000000,68,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1260,1440.000000,68,0,78029.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,68,0,-1.000000,805.476000,baseline,nbiot,60 +on11,0,0,24,1,0,1301,1440.000000,68,0,85281.010000,699.506500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,602.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,69,0,-1.000000,599.400000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,319,1440.000000,69,0,19433.010000,602.006500,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,69,0,-1.000000,655.956500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1403,1440.000000,69,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1432,1440.000000,69,0,-1.000000,581.850000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,70,0,33809.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,1,0,307,1440.000000,70,0,18424.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,70,0,42415.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,70,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,70,0,-1.000000,591.600000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,70,0,-1.000000,731.376000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,787,1440.000000,70,0,47068.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1416,1440.000000,70,0,-1.000000,592.250000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,837,1440.000000,71,0,56991.010000,644.256500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,71,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1438,1440.000000,71,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,71,0,78458.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,71,0,-1.000000,722.919500,baseline,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,71,0,35212.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,853,1440.000000,72,0,52367.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1262,1440.000000,72,0,77657.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1339,1440.000000,72,0,-1.000000,659.850000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,600,1440.000000,72,0,36159.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,72,0,-1.000000,721.619500,baseline,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,73,0,77449.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,73,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,73,0,-1.000000,618.900000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,73,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,73,0,-1.000000,662.456500,baseline,nbiot,60 +on9,0,0,24,0,0,1414,1440.000000,73,0,-1.000000,593.550000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,16,1440.000000,74,0,976.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1401,1440.000000,74,0,-1.000000,602.650000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,74,0,-1.000000,705.369500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1404,1440.000000,74,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,960,1440.000000,74,0,58307.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,74,0,23241.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1418,1440.000000,75,0,-1.000000,630.593500,baseline,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,75,0,-1.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1377,1440.000000,75,0,-1.000000,631.250000,baseline,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,75,0,18927.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.650000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,790,1440.000000,75,0,47643.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1431,1440.000000,75,0,-1.000000,610.443500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1411,1440.000000,75,0,-1.000000,622.150000,baseline,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,75,0,39077.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,75,0,-1.000000,765.156500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,76,0,-1.000000,598.750000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,76,0,-1.000000,593.550000,baseline,nbiot,60 +on1,0,0,24,0,0,1436,1440.000000,76,0,-1.000000,579.250000,baseline,nbiot,60 +on9,0,0,24,0,0,1377,1440.000000,76,0,-1.000000,618.250000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,76,0,-1.000000,699.500000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,661,1440.000000,76,0,40363.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1424,1440.000000,76,0,-1.000000,587.043500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,8,1440.000000,77,0,2968.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1426,1440.000000,77,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1320,1440.000000,77,0,79755.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1141,1440.000000,77,0,69273.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1385,1440.000000,77,0,86171.010000,602.006500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,77,0,-1.000000,689.776000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,913,1440.000000,78,0,57415.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,78,0,-1.000000,590.950000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1411,1440.000000,78,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1288,1440.000000,78,0,82683.010000,623.456500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,78,0,-1.000000,586.400000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,78,0,-1.000000,694.313000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1367,1440.000000,79,0,-1.000000,662.450000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,79,0,42578.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,1,0,724,1440.000000,79,0,45685.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,79,0,73041.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,79,0,-1.000000,611.093500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,79,0,-1.000000,709.263000,baseline,nbiot,60 +on12,0,0,24,0,0,1403,1440.000000,80,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,619,1440.000000,80,0,36988.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,80,0,-1.000000,728.100000,baseline,nbiot,60 +on2,0,0,24,0,0,1375,1440.000000,80,0,-1.000000,635.150000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1436,1440.000000,80,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,80,0,-1.000000,594.200000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1387,1440.000000,80,0,-1.000000,649.443500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1395,1440.000000,81,0,-1.000000,606.550000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1411,1440.000000,81,0,-1.000000,595.500000,baseline,nbiot,60 +on8,0,0,24,0,0,1364,1440.000000,81,0,-1.000000,641.650000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,baseline,nbiot,60 +on9,0,0,24,1,0,443,1440.000000,81,0,29746.010000,626.706500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,81,0,-1.000000,746.956500,baseline,nbiot,60 +on2,0,0,24,0,0,1412,1440.000000,81,0,-1.000000,594.850000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1407,1440.000000,82,0,-1.000000,598.100000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1437,1440.000000,82,0,-1.000000,578.600000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,766,1440.000000,82,0,50272.010000,611.756500,baseline,nbiot,60 +on4,0,0,24,1,0,1200,1440.000000,82,0,75398.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,1,0,180,1440.000000,82,0,13054.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,82,0,-1.000000,704.719500,baseline,nbiot,60 +on2,0,0,24,0,0,1416,1440.000000,82,0,-1.000000,592.250000,baseline,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,83,0,-1.000000,599.400000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1080,1440.000000,83,0,65973.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1407,1440.000000,83,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1038,1440.000000,83,0,62556.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,18,1440.000000,83,0,3209.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1428,1440.000000,83,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,83,0,-1.000000,743.713000,baseline,nbiot,60 +on2,0,0,24,0,0,1437,1440.000000,83,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1391,1440.000000,83,0,-1.000000,650.093500,baseline,nbiot,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1437,1440.000000,84,0,-1.000000,602.643500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.650000,baseline,nbiot,60 +on2,0,0,24,1,0,881,1440.000000,84,0,56272.010000,615.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,84,0,-1.000000,600.700000,baseline,nbiot,60 +on4,0,0,24,0,0,1406,1440.000000,84,0,-1.000000,624.100000,baseline,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,84,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,84,0,-1.000000,683.900000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,617.600000,baseline,nbiot,60 +on8,0,0,24,1,0,669,1440.000000,85,0,41291.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1417,1440.000000,85,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,85,0,-1.000000,581.850000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,85,0,-1.000000,653.356500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1431,1440.000000,85,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,86,0,-1.000000,696.263000,baseline,nbiot,60 +on2,0,0,24,0,0,1439,1440.000000,86,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,425,1440.000000,86,0,25692.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1432,1440.000000,86,0,-1.000000,581.850000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1420,1440.000000,86,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1429,1440.000000,86,0,-1.000000,583.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,86,0,-1.000000,600.700000,baseline,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,86,0,-1.000000,590.950000,baseline,nbiot,60 +on11,0,0,24,1,0,368,1440.000000,86,0,22049.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,87,0,-1.000000,601.350000,baseline,nbiot,60 +on1,0,0,24,0,0,1413,1440.000000,87,0,-1.000000,594.200000,baseline,nbiot,60 +on4,0,0,24,1,0,1397,1440.000000,87,0,83589.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,87,0,-1.000000,762.563000,baseline,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,87,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,87,0,43577.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,600.700000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,87,0,-1.000000,607.200000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1405,1440.000000,87,0,-1.000000,599.400000,baseline,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,87,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1425,1440.000000,88,0,-1.000000,607.843500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1384,1440.000000,88,0,-1.000000,629.300000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,88,0,-1.000000,743.063000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,379,1440.000000,88,0,21805.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,1,0,192,1440.000000,88,0,13405.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1421,1440.000000,88,0,-1.000000,591.593500,baseline,nbiot,60 +on6,0,0,24,0,0,1438,1440.000000,88,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,480,1440.000000,88,0,29186.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,88,0,33444.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1424,1440.000000,89,0,-1.000000,601.993500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,1076,1440.000000,89,0,66114.010000,641.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,89,0,-1.000000,599.400000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1346,1440.000000,89,0,-1.000000,663.100000,baseline,nbiot,60 +on1,0,0,24,1,0,960,1440.000000,89,0,60965.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,89,0,-1.000000,728.756500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1387,1440.000000,90,0,-1.000000,634.500000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.650000,baseline,nbiot,60 +on12,0,0,24,0,0,1421,1440.000000,90,0,-1.000000,596.793500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1264,1440.000000,90,0,78369.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,360,1440.000000,90,0,25109.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,90,0,-1.000000,677.406500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1408,1440.000000,91,0,-1.000000,608.500000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,91,0,-1.000000,681.306500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1378,1440.000000,91,0,-1.000000,643.600000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1423,1440.000000,91,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1435,1440.000000,91,0,-1.000000,579.900000,baseline,nbiot,60 +on8,0,0,24,1,0,1140,1440.000000,91,0,70710.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1390,1440.000000,92,0,-1.000000,667.650000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,92,0,-1.000000,706.013000,baseline,nbiot,60 +on11,0,0,24,0,0,1377,1440.000000,92,0,-1.000000,631.900000,baseline,nbiot,60 +on12,0,0,24,1,0,419,1440.000000,92,0,25499.010000,641.006500,baseline,nbiot,60 +on1,0,0,24,1,0,1326,1440.000000,92,0,80085.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1426,1440.000000,93,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,93,0,-1.000000,600.050000,baseline,nbiot,60 +on7,0,0,24,1,0,120,1440.000000,93,0,9174.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,244,1440.000000,93,0,15093.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,60,1440.000000,93,0,5632.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1390,1440.000000,93,0,-1.000000,693.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,93,0,-1.000000,734.619500,baseline,nbiot,60 +on8,0,0,24,0,0,1422,1440.000000,93,0,-1.000000,588.350000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1407,1440.000000,94,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1430,1440.000000,94,0,-1.000000,583.150000,baseline,nbiot,60 +on2,0,0,24,0,0,1373,1440.000000,94,0,-1.000000,620.850000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1415,1440.000000,94,0,-1.000000,628.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,94,0,-1.000000,667.650000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1406,1440.000000,95,0,-1.000000,637.100000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1425,1440.000000,95,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1433,1440.000000,95,0,-1.000000,581.200000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,95,0,-1.000000,728.763000,baseline,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,95,0,73.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,95,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,95,0,22238.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,95,0,-1.000000,587.050000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1398,1440.000000,95,0,-1.000000,604.600000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,96,0,44433.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1203,1440.000000,96,0,74435.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,1095,1440.000000,96,0,67094.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,96,0,2383.010000,602.006500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,96,0,-1.000000,681.969500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1439,1440.000000,96,0,-1.000000,577.293500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,578.600000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,97,0,28619.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,577.300000,baseline,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,97,0,66472.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,97,0,-1.000000,598.100000,baseline,nbiot,60 +on9,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,97,0,-1.000000,675.463000,baseline,nbiot,60 +on7,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,578.600000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1414,1440.000000,97,0,-1.000000,593.550000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1436,1440.000000,98,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,786,1440.000000,98,0,47187.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1411,1440.000000,98,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,591.600000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1382,1440.000000,98,0,84990.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,98,0,-1.000000,722.919500,baseline,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,98,0,-1.000000,600.050000,baseline,nbiot,60 +on3,0,0,24,1,0,1071,1440.000000,98,0,68214.010000,641.006500,baseline,nbiot,60 +on1,0,0,24,1,0,650,1440.000000,99,0,42073.010000,623.450000,baseline,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,99,0,842.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1404,1440.000000,99,0,-1.000000,600.050000,baseline,nbiot,60 +on2,0,0,24,0,0,1408,1440.000000,99,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,99,0,13012.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1404,1440.000000,99,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1425,1440.000000,99,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,1,0,489,1440.000000,99,0,31070.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1436,1440.000000,99,0,-1.000000,617.600000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,99,0,-1.000000,785.319500,baseline,nbiot,60 +on9,0,0,24,0,0,1428,1440.000000,99,0,-1.000000,584.450000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,602.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1221,1440.000000,100,0,77873.010000,628.006500,baseline,nbiot,60 +on8,0,0,24,1,0,1183,1440.000000,100,0,74132.010000,641.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,100,0,-1.000000,745.676000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,195,1440.000000,100,0,12812.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,129,1440.000000,100,0,8835.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,101,0,-1.000000,664.406500,baseline,nbiot,60 +on7,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1416,1440.000000,101,0,-1.000000,626.050000,baseline,nbiot,60 +on9,0,0,24,1,0,448,1440.000000,101,0,32092.010000,623.456500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,654.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1399,1440.000000,102,0,-1.000000,631.900000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,737,1440.000000,102,0,46032.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,102,0,-1.000000,654.656500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,102,0,-1.000000,600.700000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,728,1440.000000,103,0,46804.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,103,0,-1.000000,600.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,103,0,-1.000000,698.863000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1422,1440.000000,103,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1415,1440.000000,103,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,1,0,828,1440.000000,103,0,52631.010000,610.456500,baseline,nbiot,60 +on11,0,0,24,0,0,1428,1440.000000,103,0,-1.000000,584.450000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1409,1440.000000,104,0,-1.000000,622.793500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,104,0,-1.000000,711.213000,baseline,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,600.700000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,104,0,63685.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,1,0,904,1440.000000,104,0,55914.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,1,0,379,1440.000000,104,0,24598.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,104,0,-1.000000,582.500000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1434,1440.000000,104,0,-1.000000,580.550000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,540,1440.000000,105,0,35647.010000,641.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,615.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,105,0,-1.000000,638.406500,baseline,nbiot,60 +on10,0,0,24,0,0,1425,1440.000000,105,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,588.350000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,780,1440.000000,106,0,49192.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,106,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1430,1440.000000,106,0,-1.000000,583.150000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1416,1440.000000,106,0,-1.000000,592.250000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1407,1440.000000,106,0,-1.000000,598.100000,baseline,nbiot,60 +on10,0,0,24,0,0,1403,1440.000000,106,0,-1.000000,622.793500,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,106,0,-1.000000,689.100000,baseline,nbiot,60 +on1,0,0,24,0,0,1414,1440.000000,107,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,107,0,-1.000000,654.656500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,494,1440.000000,107,0,30537.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1412,1440.000000,107,0,-1.000000,594.850000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1416,1440.000000,107,0,-1.000000,592.250000,baseline,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,108,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1421,1440.000000,108,0,-1.000000,605.893500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,108,0,-1.000000,653.350000,baseline,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,108,0,-1.000000,599.400000,baseline,nbiot,60 +on9,0,0,24,0,0,1433,1440.000000,108,0,-1.000000,581.200000,baseline,nbiot,60 +on8,0,0,24,1,0,366,1440.000000,108,0,24593.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1416,1440.000000,109,0,-1.000000,592.250000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,109,0,-1.000000,646.206500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,109,0,6930.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1406,1440.000000,109,0,-1.000000,598.750000,baseline,nbiot,60 +on3,0,0,24,0,0,1434,1440.000000,109,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.650000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,110,0,-1.000000,683.263000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1437,1440.000000,110,0,-1.000000,578.600000,baseline,nbiot,60 +on3,0,0,24,0,0,1408,1440.000000,110,0,-1.000000,597.450000,baseline,nbiot,60 +on10,0,0,24,0,0,1410,1440.000000,110,0,-1.000000,654.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,480,1440.000000,110,0,31832.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1425,1440.000000,110,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,62,1440.000000,110,0,6164.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,111,0,-1.000000,737.869500,baseline,nbiot,60 +on4,0,0,24,1,0,480,1440.000000,111,0,30155.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,628.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,798,1440.000000,111,0,47500.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,594.200000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1370,1440.000000,111,0,-1.000000,654.000000,baseline,nbiot,60 +on6,0,0,24,1,0,966,1440.000000,111,0,60265.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1397,1440.000000,112,0,82864.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,112,0,-1.000000,728.113000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,48,1440.000000,112,0,3710.010000,616.956500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1417,1440.000000,112,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,112,0,-1.000000,600.050000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1416,1440.000000,112,0,-1.000000,592.250000,baseline,nbiot,60 +on5,0,0,24,0,0,1410,1440.000000,112,0,-1.000000,596.150000,baseline,nbiot,60 +on7,0,0,24,0,0,1428,1440.000000,112,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1376,1440.000000,113,0,-1.000000,654.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1409,1440.000000,113,0,-1.000000,654.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,113,0,-1.000000,666.356500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,788,1440.000000,113,0,50046.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1401,1440.000000,114,0,-1.000000,602.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1412,1440.000000,114,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,114,0,22286.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1421,1440.000000,114,0,-1.000000,610.450000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1399,1440.000000,114,0,-1.000000,651.393500,baseline,nbiot,60 +on3,0,0,24,1,0,844,1440.000000,114,0,52230.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,1,0,780,1440.000000,114,0,50276.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,114,0,-1.000000,739.813000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,115,0,-1.000000,720.963000,baseline,nbiot,60 +on10,0,0,24,0,0,1432,1440.000000,115,0,-1.000000,581.850000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1416,1440.000000,115,0,-1.000000,592.250000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,115,0,36640.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,115,0,13712.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1375,1440.000000,115,0,-1.000000,654.000000,baseline,nbiot,60 +on9,0,0,24,1,0,546,1440.000000,115,0,32462.010000,627.350000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,116,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,116,0,-1.000000,697.563000,baseline,nbiot,60 +on2,0,0,24,0,0,1428,1440.000000,116,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1418,1440.000000,116,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,607,1440.000000,116,0,39381.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,696,1440.000000,116,0,46262.010000,641.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,116,0,-1.000000,592.900000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,900,1440.000000,117,0,55446.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1406,1440.000000,117,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,117,0,-1.000000,654.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1427,1440.000000,117,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1410,1440.000000,117,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,118,0,-1.000000,581.843500,baseline,nbiot,60 +on6,0,0,24,1,0,1212,1440.000000,118,0,73803.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1327,1440.000000,118,0,81998.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,118,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,118,0,12078.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1415,1440.000000,118,0,-1.000000,592.900000,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,118,0,-1.000000,752.176000,baseline,nbiot,60 +on5,0,0,24,1,0,360,1440.000000,118,0,24524.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,118,0,35520.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1218,1440.000000,119,0,75501.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1421,1440.000000,119,0,-1.000000,594.843500,baseline,nbiot,60 +on2,0,0,24,1,0,476,1440.000000,119,0,29791.010000,641.006500,baseline,nbiot,60 +on9,0,0,24,1,0,360,1440.000000,119,0,23285.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,977,1440.000000,119,0,64107.010000,664.406500,baseline,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,119,0,-1.000000,589.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.650000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,119,0,-1.000000,764.519500,baseline,nbiot,60 +on11,0,0,24,0,0,1424,1440.000000,119,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1425,1440.000000,119,0,-1.000000,586.400000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,607,1440.000000,120,0,37573.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,825,1440.000000,120,0,53362.010000,633.850000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,615.650000,baseline,nbiot,60 +on1,0,0,24,1,0,491,1440.000000,120,0,31894.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,120,0,49049.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1432,1440.000000,120,0,-1.000000,581.850000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,120,0,-1.000000,713.169500,baseline,nbiot,60 +on8,0,0,24,0,0,1416,1440.000000,121,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1398,1440.000000,121,0,-1.000000,630.600000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1329,1440.000000,121,0,80183.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,1,0,660,1440.000000,121,0,39731.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,121,0,10384.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1420,1440.000000,121,0,-1.000000,589.650000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,121,0,-1.000000,739.176000,baseline,nbiot,60 +on4,0,0,24,1,0,1265,1440.000000,121,0,76644.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1404,1440.000000,122,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,122,0,33642.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,122,0,-1.000000,691.063000,baseline,nbiot,60 +on7,0,0,24,0,0,1433,1440.000000,122,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1397,1440.000000,122,0,-1.000000,605.250000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1434,1440.000000,122,0,-1.000000,580.550000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,122,0,8078.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,318,1440.000000,123,0,20879.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,123,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,1,0,795,1440.000000,123,0,48032.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1293,1440.000000,123,0,80322.010000,629.306500,baseline,nbiot,60 +on10,0,0,24,1,0,431,1440.000000,123,0,26814.010000,602.006500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,123,0,-1.000000,723.576000,baseline,nbiot,60 +on1,0,0,24,0,0,1415,1440.000000,124,0,-1.000000,593.550000,baseline,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,124,0,44031.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1273,1440.000000,124,0,77627.010000,641.006500,baseline,nbiot,60 +on5,0,0,24,1,0,600,1440.000000,124,0,37093.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,626,1440.000000,124,0,40514.010000,641.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1404,1440.000000,124,0,-1.000000,600.050000,baseline,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,124,0,3087.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,1,0,1177,1440.000000,124,0,73885.010000,641.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,124,0,-1.000000,822.389000,baseline,nbiot,60 +on4,0,0,24,0,0,1431,1440.000000,124,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1242,1440.000000,125,0,78238.010000,620.206500,baseline,nbiot,60 +on2,0,0,24,0,0,1376,1440.000000,125,0,-1.000000,633.200000,baseline,nbiot,60 +on8,0,0,24,0,0,1398,1440.000000,125,0,-1.000000,604.600000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1439,1440.000000,125,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,600,1440.000000,125,0,37630.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,125,0,-1.000000,719.013000,baseline,nbiot,60 +on12,0,0,24,0,0,1404,1440.000000,126,0,-1.000000,600.700000,baseline,nbiot,60 +on9,0,0,24,1,0,424,1440.000000,126,0,25668.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,1,0,799,1440.000000,126,0,48318.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,126,0,-1.000000,618.900000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,126,0,-1.000000,793.776000,baseline,nbiot,60 +on6,0,0,24,1,0,607,1440.000000,126,0,36322.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,1,0,130,1440.000000,126,0,8477.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1408,1440.000000,126,0,-1.000000,597.450000,baseline,nbiot,60 +on5,0,0,24,0,0,1412,1440.000000,126,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,126,0,-1.000000,598.100000,baseline,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,127,0,1414.010000,602.006500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,127,0,-1.000000,743.726000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,472,1440.000000,127,0,28901.010000,607.856500,baseline,nbiot,60 +on11,0,0,24,0,0,1438,1440.000000,127,0,-1.000000,605.243500,baseline,nbiot,60 +on10,0,0,24,0,0,1436,1440.000000,127,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1286,1440.000000,127,0,79594.010000,641.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,554,1440.000000,127,0,32732.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,955,1440.000000,127,0,58538.010000,605.906500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,614,1440.000000,128,0,39033.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1324,1440.000000,128,0,80371.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,128,0,60955.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1410,1440.000000,128,0,-1.000000,596.150000,baseline,nbiot,60 +on2,0,0,24,1,0,303,1440.000000,128,0,19521.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,1,0,1056,1440.000000,128,0,66318.010000,618.256500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,128,0,-1.000000,742.432500,baseline,nbiot,60 +on1,0,0,24,0,0,1380,1440.000000,129,0,-1.000000,649.450000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,129,0,-1.000000,737.213000,baseline,nbiot,60 +on4,0,0,24,0,0,1420,1440.000000,129,0,-1.000000,620.200000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1261,1440.000000,129,0,78280.010000,641.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.650000,baseline,nbiot,60 +on3,0,0,24,0,0,1426,1440.000000,129,0,-1.000000,585.750000,baseline,nbiot,60 +on10,0,0,24,1,0,16,1440.000000,129,0,2377.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1385,1440.000000,129,0,-1.000000,631.250000,baseline,nbiot,60 +on8,0,0,24,0,0,1392,1440.000000,130,0,-1.000000,637.100000,baseline,nbiot,60 +on3,0,0,24,0,0,1417,1440.000000,130,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,600.700000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,782,1440.000000,130,0,47454.010000,641.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1435,1440.000000,130,0,-1.000000,579.900000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,130,0,-1.000000,591.600000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,130,0,-1.000000,733.306500,baseline,nbiot,60 +on1,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,600.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,130,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,597.450000,baseline,nbiot,60 +on7,0,0,24,0,0,1417,1440.000000,131,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1426,1440.000000,131,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1412,1440.000000,131,0,-1.000000,629.300000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,131,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,131,0,-1.000000,665.700000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,132,0,-1.000000,711.850000,baseline,nbiot,60 +on4,0,0,24,0,0,1411,1440.000000,132,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1409,1440.000000,132,0,-1.000000,597.450000,baseline,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,132,0,-1.000000,592.900000,baseline,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,132,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,132,0,-1.000000,598.093500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1031,1440.000000,132,0,64102.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1420,1440.000000,132,0,-1.000000,589.650000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1439,1440.000000,133,0,-1.000000,577.300000,baseline,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,133,0,35733.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1377,1440.000000,133,0,-1.000000,642.950000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,120,1440.000000,133,0,7423.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,133,0,29401.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1410,1440.000000,133,0,-1.000000,628.650000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,133,0,-1.000000,785.326000,baseline,nbiot,60 +on9,0,0,24,1,0,928,1440.000000,133,0,57743.010000,624.756500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1415,1440.000000,133,0,-1.000000,592.900000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1402,1440.000000,134,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1401,1440.000000,134,0,-1.000000,626.050000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,134,0,-1.000000,598.100000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1364,1440.000000,134,0,-1.000000,627.350000,baseline,nbiot,60 +on5,0,0,24,0,0,1404,1440.000000,134,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1410,1440.000000,134,0,-1.000000,596.150000,baseline,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,134,0,-1.000000,599.400000,baseline,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,134,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,134,0,36420.010000,602.006500,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,134,0,-1.000000,789.856500,baseline,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,135,0,-1.000000,590.950000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,135,0,-1.000000,771.663000,baseline,nbiot,60 +on6,0,0,24,1,0,896,1440.000000,135,0,56447.010000,616.950000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1401,1440.000000,135,0,-1.000000,654.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,135,0,-1.000000,596.800000,baseline,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,135,0,14476.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,1,0,921,1440.000000,135,0,59214.010000,641.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1432,1440.000000,135,0,-1.000000,581.850000,baseline,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,135,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1373,1440.000000,136,0,-1.000000,654.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,583.150000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1423,1440.000000,136,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,617.600000,baseline,nbiot,60 +on1,0,0,24,0,0,1407,1440.000000,136,0,-1.000000,598.100000,baseline,nbiot,60 +on4,0,0,24,1,0,994,1440.000000,136,0,62381.010000,622.156500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,136,0,-1.000000,715.756500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,137,0,-1.000000,663.750000,baseline,nbiot,60 +on8,0,0,24,0,0,1421,1440.000000,137,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1439,1440.000000,137,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,1,0,610,1440.000000,137,0,38342.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,137,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1429,1440.000000,137,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,137,0,-1.000000,737.219500,baseline,nbiot,60 +on11,0,0,24,1,0,1380,1440.000000,137,0,85307.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,137,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,137,0,28458.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,138,0,35858.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,1,0,671,1440.000000,138,0,40719.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1400,1440.000000,138,0,-1.000000,638.400000,baseline,nbiot,60 +on4,0,0,24,1,0,732,1440.000000,138,0,45857.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,138,0,-1.000000,694.313000,baseline,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,138,0,-1.000000,592.893500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,139,0,-1.000000,768.419500,baseline,nbiot,60 +on3,0,0,24,1,0,1380,1440.000000,139,0,83379.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1418,1440.000000,139,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1428,1440.000000,139,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1383,1440.000000,139,0,-1.000000,629.950000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,977,1440.000000,139,0,58146.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1393,1440.000000,139,0,-1.000000,654.000000,baseline,nbiot,60 +on10,0,0,24,1,0,1313,1440.000000,139,0,79871.010000,613.706500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1427,1440.000000,139,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,140,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1003,1440.000000,140,0,63213.010000,618.906500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1428,1440.000000,140,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,140,0,10470.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,1,0,76,1440.000000,140,0,7084.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,140,0,-1.000000,708.619500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1432,1440.000000,140,0,-1.000000,582.500000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1423,1440.000000,141,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.650000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,141,0,-1.000000,640.363000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,974,1440.000000,141,0,58451.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,141,0,10079.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,142,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,142,0,-1.000000,599.400000,baseline,nbiot,60 +on3,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,592.250000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,142,0,20149.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,1,0,1065,1440.000000,142,0,67480.010000,641.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,142,0,-1.000000,693.663000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1410,1440.000000,143,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1396,1440.000000,143,0,-1.000000,654.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,143,0,-1.000000,745.013000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,498,1440.000000,143,0,32416.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,143,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,143,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,585,1440.000000,143,0,37449.010000,613.706500,baseline,nbiot,60 +on5,0,0,24,1,0,1028,1440.000000,143,0,61469.010000,604.600000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,144,0,-1.000000,634.500000,baseline,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,144,0,572.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,144,0,-1.000000,681.313000,baseline,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,144,0,-1.000000,582.500000,baseline,nbiot,60 +on7,0,0,24,1,0,600,1440.000000,144,0,38588.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,144,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1388,1440.000000,145,0,-1.000000,654.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,145,0,-1.000000,594.200000,baseline,nbiot,60 +on12,0,0,24,0,0,1434,1440.000000,145,0,-1.000000,580.550000,baseline,nbiot,60 +on8,0,0,24,0,0,1409,1440.000000,145,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,145,0,-1.000000,765.813000,baseline,nbiot,60 +on5,0,0,24,1,0,908,1440.000000,145,0,56116.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,145,0,-1.000000,601.343500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,433,1440.000000,145,0,25481.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,145,0,61600.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1426,1440.000000,145,0,-1.000000,585.750000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,146,0,-1.000000,721.613000,baseline,nbiot,60 +on5,0,0,24,0,0,1432,1440.000000,146,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,146,0,17358.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1412,1440.000000,146,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,146,0,-1.000000,601.350000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,360,1440.000000,146,0,24054.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1418,1440.000000,146,0,-1.000000,628.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,146,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1427,1440.000000,146,0,-1.000000,585.750000,baseline,nbiot,60 +on4,0,0,24,1,0,969,1440.000000,147,0,58816.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1416,1440.000000,147,0,-1.000000,592.250000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,147,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1423,1440.000000,147,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,609,1440.000000,147,0,36859.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,147,0,-1.000000,673.513000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,611,1440.000000,148,0,38796.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1426,1440.000000,148,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,1,0,10,1440.000000,148,0,1077.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1429,1440.000000,148,0,-1.000000,592.893500,baseline,nbiot,60 +on6,0,0,24,1,0,960,1440.000000,148,0,59083.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1380,1440.000000,148,0,-1.000000,637.100000,baseline,nbiot,60 +on7,0,0,24,1,0,1083,1440.000000,148,0,65043.010000,609.806500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,148,0,-1.000000,774.919500,baseline,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,148,0,-1.000000,581.200000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1404,1440.000000,148,0,-1.000000,600.050000,baseline,nbiot,60 +on4,0,0,24,0,0,1394,1440.000000,149,0,-1.000000,632.543500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.650000,baseline,nbiot,60 +on6,0,0,24,0,0,1439,1440.000000,149,0,-1.000000,577.300000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1423,1440.000000,149,0,-1.000000,624.750000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,149,0,-1.000000,689.106500,baseline,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,149,0,64240.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,1,0,18,1440.000000,149,0,1781.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,149,0,-1.000000,623.450000,baseline,nbiot,60 +on5,0,0,24,0,0,1435,1440.000000,149,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1419,1440.000000,150,0,-1.000000,590.300000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,19,1440.000000,150,0,729.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1400,1440.000000,150,0,-1.000000,631.250000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,150,0,-1.000000,591.600000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,150,0,-1.000000,729.419500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1413,1440.000000,150,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,551,1440.000000,150,0,35331.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,150,0,9475.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,1,0,780,1440.000000,151,0,48645.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,151,0,-1.000000,587.050000,baseline,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,151,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1388,1440.000000,151,0,-1.000000,611.100000,baseline,nbiot,60 +on2,0,0,24,1,0,670,1440.000000,151,0,41604.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,151,0,-1.000000,623.450000,baseline,nbiot,60 +on9,0,0,24,0,0,1434,1440.000000,151,0,-1.000000,654.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,151,0,-1.000000,740.463000,baseline,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,151,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1418,1440.000000,151,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,152,0,3128.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,1,0,1025,1440.000000,152,0,61395.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,152,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1401,1440.000000,152,0,-1.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1431,1440.000000,152,0,-1.000000,582.500000,baseline,nbiot,60 +on4,0,0,24,0,0,1421,1440.000000,152,0,-1.000000,626.700000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,152,0,-1.000000,700.163000,baseline,nbiot,60 +on1,0,0,24,0,0,1434,1440.000000,153,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1385,1440.000000,153,0,-1.000000,644.900000,baseline,nbiot,60 +on7,0,0,24,1,0,971,1440.000000,153,0,60175.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,688,1440.000000,153,0,45707.010000,641.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,153,0,-1.000000,768.419500,baseline,nbiot,60 +on6,0,0,24,1,0,1380,1440.000000,153,0,84525.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1393,1440.000000,153,0,-1.000000,633.850000,baseline,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,153,0,-1.000000,595.500000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1388,1440.000000,154,0,-1.000000,633.850000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1219,1440.000000,154,0,73436.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,154,0,-1.000000,646.206500,baseline,nbiot,60 +on6,0,0,24,0,0,1427,1440.000000,154,0,-1.000000,585.100000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,155,0,-1.000000,698.213000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,583.150000,baseline,nbiot,60 +on12,0,0,24,1,0,312,1440.000000,155,0,19009.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,155,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,155,0,-1.000000,601.350000,baseline,nbiot,60 +on11,0,0,24,1,0,257,1440.000000,155,0,17783.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1421,1440.000000,155,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,156,0,79468.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,74,1440.000000,156,0,6037.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,156,0,36801.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1438,1440.000000,156,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,1,1440.000000,156,0,3330.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1428,1440.000000,156,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1401,1440.000000,156,0,-1.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,737,1440.000000,156,0,45859.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,156,0,-1.000000,768.439000,baseline,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,156,0,48160.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,157,0,-1.000000,589.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1428,1440.000000,157,0,-1.000000,584.450000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1437,1440.000000,157,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1421,1440.000000,157,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1422,1440.000000,157,0,-1.000000,588.350000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,157,0,-1.000000,625.400000,baseline,nbiot,60 +on10,0,0,24,0,0,1425,1440.000000,158,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1416,1440.000000,158,0,-1.000000,592.250000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1420,1440.000000,158,0,-1.000000,589.650000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,840,1440.000000,158,0,50746.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,158,0,-1.000000,694.963000,baseline,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,158,0,17497.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,158,0,-1.000000,602.650000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,159,0,-1.000000,597.450000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,159,0,-1.000000,765.156500,baseline,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,159,0,-1.000000,586.393500,baseline,nbiot,60 +on8,0,0,24,0,0,1427,1440.000000,159,0,-1.000000,585.100000,baseline,nbiot,60 +on7,0,0,24,0,0,1406,1440.000000,159,0,-1.000000,601.350000,baseline,nbiot,60 +on12,0,0,24,0,0,1415,1440.000000,159,0,-1.000000,593.550000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1394,1440.000000,159,0,-1.000000,607.200000,baseline,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,159,0,-1.000000,600.700000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1157,1440.000000,159,0,71081.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,1,0,250,1440.000000,159,0,16320.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,304,1440.000000,160,0,20450.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,10,1440.000000,160,0,347.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1392,1440.000000,160,0,-1.000000,628.643500,baseline,nbiot,60 +on5,0,0,24,0,0,1413,1440.000000,160,0,-1.000000,594.200000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,160,0,-1.000000,760.606500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1387,1440.000000,160,0,-1.000000,654.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1371,1440.000000,160,0,-1.000000,640.350000,baseline,nbiot,60 +on11,0,0,24,0,0,1430,1440.000000,161,0,-1.000000,654.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,247,1440.000000,161,0,17417.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,161,0,-1.000000,654.013000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1422,1440.000000,161,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,3,1440.000000,161,0,2015.010000,602.006500,baseline,nbiot,60 +on4,0,0,23,0,0,1430,1432.000000,161,0,-1.000000,611.800000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1435,1440.000000,161,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1412,1440.000000,162,0,-1.000000,594.850000,baseline,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,162,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1432,1440.000000,162,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1428,1440.000000,162,0,-1.000000,596.793500,baseline,nbiot,60 +on4,0,0,24,1,0,762,1440.000000,162,0,50281.010000,641.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1425,1440.000000,162,0,-1.000000,586.400000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,984,1440.000000,162,0,63792.010000,641.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,162,0,-1.000000,774.913000,baseline,nbiot,60 +on10,0,0,24,1,0,1349,1440.000000,162,0,86263.010000,641.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,587.050000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1373,1440.000000,163,0,-1.000000,637.750000,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,163,0,-1.000000,596.800000,baseline,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,163,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,163,0,-1.000000,737.206500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,587.050000,baseline,nbiot,60 +on9,0,0,24,0,0,1413,1440.000000,163,0,-1.000000,594.200000,baseline,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,163,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,366,1440.000000,163,0,23519.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,220,1440.000000,164,0,17850.010000,615.656500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,164,0,-1.000000,800.926000,baseline,nbiot,60 +on11,0,0,24,0,0,1402,1440.000000,164,0,-1.000000,601.350000,baseline,nbiot,60 +on9,0,0,24,1,0,291,1440.000000,164,0,19533.010000,641.006500,baseline,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,164,0,11334.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,1144,1440.000000,164,0,70547.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1420,1440.000000,164,0,-1.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,1,0,420,1440.000000,164,0,26718.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,164,0,-1.000000,594.850000,baseline,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,164,0,-1.000000,588.993500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,165,0,-1.000000,675.463000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,165,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1439,1440.000000,165,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,840,1440.000000,165,0,52865.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,1,0,1166,1440.000000,165,0,75553.010000,630.606500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,166,0,53070.010000,602.006500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,166,0,-1.000000,756.732500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,628,1440.000000,166,0,41239.010000,641.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1437,1440.000000,166,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1424,1440.000000,166,0,-1.000000,587.050000,baseline,nbiot,60 +on10,0,0,24,1,0,699,1440.000000,166,0,43821.010000,616.306500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,312,1440.000000,166,0,21397.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,1,0,1156,1440.000000,166,0,71551.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1389,1440.000000,167,0,-1.000000,631.900000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.650000,baseline,nbiot,60 +on4,0,0,24,0,0,1434,1440.000000,167,0,-1.000000,580.550000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1273,1440.000000,167,0,78992.010000,602.006500,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,167,0,-1.000000,647.506500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,167,0,-1.000000,581.850000,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,168,0,-1.000000,725.519500,baseline,nbiot,60 +on5,0,0,24,1,0,1015,1440.000000,168,0,64058.010000,667.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1437,1440.000000,168,0,-1.000000,578.600000,baseline,nbiot,60 +on9,0,0,24,1,0,900,1440.000000,168,0,56419.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,120,1440.000000,168,0,9107.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1431,1440.000000,168,0,-1.000000,583.150000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,168,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1437,1440.000000,168,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1294,1440.000000,168,0,81985.010000,641.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,169,0,-1.000000,581.200000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,169,0,-1.000000,602.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,598.750000,baseline,nbiot,60 +on6,0,0,24,0,0,1428,1440.000000,169,0,-1.000000,619.550000,baseline,nbiot,60 +on11,0,0,24,1,0,259,1440.000000,169,0,17143.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,169,0,-1.000000,739.819500,baseline,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,169,0,2710.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,360,1440.000000,169,0,22129.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1403,1440.000000,170,0,-1.000000,620.843500,baseline,nbiot,60 +on10,0,0,24,1,0,643,1440.000000,170,0,40803.010000,641.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,170,0,-1.000000,591.600000,baseline,nbiot,60 +on6,0,0,24,0,0,1415,1440.000000,170,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,1,0,426,1440.000000,170,0,27630.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1371,1440.000000,170,0,-1.000000,638.400000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,170,0,-1.000000,798.306500,baseline,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,170,0,85861.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,170,0,-1.000000,605.243500,baseline,nbiot,60 +on8,0,0,24,0,0,1419,1440.000000,170,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,420,1440.000000,171,0,25357.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1419,1440.000000,171,0,-1.000000,590.300000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1396,1440.000000,171,0,-1.000000,605.900000,baseline,nbiot,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,171,0,-1.000000,582.500000,baseline,nbiot,60 +on11,0,0,24,0,0,1426,1440.000000,171,0,-1.000000,585.750000,baseline,nbiot,60 +on9,0,0,24,1,0,1052,1440.000000,171,0,66453.010000,628.656500,baseline,nbiot,60 +on5,0,0,24,0,0,1430,1440.000000,171,0,-1.000000,605.893500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,171,0,-1.000000,593.550000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,171,0,-1.000000,739.806500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1433,1440.000000,172,0,-1.000000,581.200000,baseline,nbiot,60 +on9,0,0,24,0,0,1387,1440.000000,172,0,-1.000000,611.750000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,172,0,-1.000000,737.206500,baseline,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,172,0,79897.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1416,1440.000000,172,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1421,1440.000000,172,0,-1.000000,592.893500,baseline,nbiot,60 +on7,0,0,24,0,0,1406,1440.000000,172,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1416,1440.000000,172,0,-1.000000,606.550000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1276,1440.000000,172,0,76346.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,173,0,-1.000000,598.100000,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,173,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1437,1440.000000,173,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,173,0,-1.000000,732.669500,baseline,nbiot,60 +on5,0,0,24,0,0,1402,1440.000000,173,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,173,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,173,0,29566.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,19,1440.000000,173,0,1960.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,173,0,-1.000000,585.100000,baseline,nbiot,60 +on12,0,0,24,1,0,306,1440.000000,173,0,19542.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1388,1440.000000,174,0,-1.000000,628.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,174,0,-1.000000,719.019500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,313,1440.000000,174,0,18512.010000,641.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1415,1440.000000,174,0,-1.000000,592.900000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1429,1440.000000,174,0,-1.000000,583.800000,baseline,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,174,0,42617.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,421,1440.000000,174,0,27339.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,175,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,175,0,43358.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1369,1440.000000,175,0,-1.000000,623.450000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,175,0,-1.000000,771.019500,baseline,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,175,0,83802.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,962,1440.000000,175,0,60378.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1430,1440.000000,175,0,-1.000000,615.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1386,1440.000000,175,0,-1.000000,625.400000,baseline,nbiot,60 +on3,0,0,24,1,0,1375,1440.000000,176,0,83206.010000,616.306500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,176,0,-1.000000,706.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,176,0,-1.000000,605.243500,baseline,nbiot,60 +on10,0,0,24,0,0,1415,1440.000000,176,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,309,1440.000000,176,0,20620.010000,602.006500,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,583.800000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1431,1440.000000,176,0,-1.000000,582.500000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,176,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1432,1440.000000,177,0,-1.000000,581.850000,baseline,nbiot,60 +on6,0,0,24,1,0,1374,1440.000000,177,0,83531.010000,641.006500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,177,0,-1.000000,761.919500,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,177,0,-1.000000,601.343500,baseline,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,177,0,30772.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1409,1440.000000,177,0,-1.000000,653.993500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,187,1440.000000,177,0,14426.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1202,1440.000000,177,0,72356.010000,612.406500,baseline,nbiot,60 +on2,0,0,24,1,0,432,1440.000000,177,0,25971.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1427,1440.000000,178,0,-1.000000,585.100000,baseline,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,178,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1419,1440.000000,178,0,-1.000000,590.300000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,178,0,62205.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1407,1440.000000,178,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,178,0,-1.000000,711.206500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1403,1440.000000,178,0,-1.000000,637.100000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1412,1440.000000,178,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,1,0,1334,1440.000000,179,0,82509.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,179,0,-1.000000,615.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,179,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,179,0,-1.000000,583.800000,baseline,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,179,0,-1.000000,598.100000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1149,1440.000000,179,0,71816.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1412,1440.000000,179,0,-1.000000,594.850000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,179,0,-1.000000,744.369500,baseline,nbiot,60 +on9,0,0,24,1,0,1380,1440.000000,179,0,86132.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1434,1440.000000,180,0,-1.000000,580.550000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,180,0,-1.000000,674.163000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1429,1440.000000,180,0,-1.000000,654.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,441,1440.000000,180,0,31851.010000,628.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,535,1440.000000,180,0,35228.010000,641.006500,baseline,nbiot,60 +on11,0,0,24,1,0,377,1440.000000,181,0,24501.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1421,1440.000000,181,0,-1.000000,599.393500,baseline,nbiot,60 +on3,0,0,24,0,0,1410,1440.000000,181,0,-1.000000,600.043500,baseline,nbiot,60 +on8,0,0,24,0,0,1418,1440.000000,181,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,1,0,14,1440.000000,181,0,1188.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,181,0,-1.000000,585.750000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,181,0,-1.000000,710.550000,baseline,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,181,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1390,1440.000000,182,0,-1.000000,636.450000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,304,1440.000000,182,0,21417.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,182,0,-1.000000,614.343500,baseline,nbiot,60 +on7,0,0,24,0,0,1411,1440.000000,182,0,-1.000000,595.500000,baseline,nbiot,60 +on11,0,0,24,1,0,1037,1440.000000,182,0,64411.010000,602.006500,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,182,0,-1.000000,754.113000,baseline,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,182,0,11951.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,182,0,-1.000000,585.100000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1407,1440.000000,182,0,-1.000000,598.100000,baseline,nbiot,60 +on10,0,0,24,0,0,1417,1440.000000,183,0,-1.000000,615.650000,baseline,nbiot,60 +on1,0,0,24,1,0,699,1440.000000,183,0,45533.010000,617.606500,baseline,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,183,0,-1.000000,587.700000,baseline,nbiot,60 +on8,0,0,24,0,0,1401,1440.000000,183,0,-1.000000,602.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,183,0,-1.000000,598.100000,baseline,nbiot,60 +on3,0,0,24,0,0,1401,1440.000000,183,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,183,0,-1.000000,615.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,183,0,-1.000000,851.606500,baseline,nbiot,60 +on5,0,0,24,0,0,1371,1440.000000,183,0,-1.000000,665.693500,baseline,nbiot,60 +on2,0,0,24,1,0,902,1440.000000,183,0,58944.010000,680.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1438,1440.000000,184,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,1,0,499,1440.000000,184,0,30813.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,184,0,22084.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1393,1440.000000,184,0,-1.000000,636.450000,baseline,nbiot,60 +on6,0,0,24,0,0,1413,1440.000000,184,0,-1.000000,594.850000,baseline,nbiot,60 +on2,0,0,24,0,0,1413,1440.000000,184,0,-1.000000,594.200000,baseline,nbiot,60 +on5,0,0,24,0,0,1401,1440.000000,184,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,184,0,-1.000000,759.969500,baseline,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,184,0,38015.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1427,1440.000000,184,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,1081,1440.000000,185,0,65980.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,1,0,600,1440.000000,185,0,39005.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,185,0,-1.000000,725.519500,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,596.150000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,185,0,20797.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1389,1440.000000,185,0,-1.000000,654.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1415,1440.000000,185,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,186,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,186,0,-1.000000,657.900000,baseline,nbiot,60 +on4,0,0,24,0,0,1400,1440.000000,186,0,-1.000000,693.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,186,0,-1.000000,596.150000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,186,0,-1.000000,654.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,187,0,-1.000000,587.700000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,187,0,-1.000000,702.119500,baseline,nbiot,60 +on10,0,0,24,0,0,1434,1440.000000,187,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,1092,1440.000000,187,0,67231.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,187,0,69682.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,0,0,1408,1440.000000,187,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,195,1440.000000,187,0,14098.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,618.900000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1410,1440.000000,188,0,-1.000000,615.000000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,188,0,-1.000000,715.106500,baseline,nbiot,60 +on2,0,0,24,0,0,1412,1440.000000,188,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,188,0,-1.000000,582.500000,baseline,nbiot,60 +on3,0,0,24,1,0,360,1440.000000,188,0,22648.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1426,1440.000000,188,0,-1.000000,585.750000,baseline,nbiot,60 +on11,0,0,24,0,0,1439,1440.000000,188,0,-1.000000,589.643500,baseline,nbiot,60 +on12,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,596.800000,baseline,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,188,0,-1.000000,585.750000,baseline,nbiot,60 +on1,0,0,24,1,0,1140,1440.000000,188,0,70888.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,189,0,49055.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,1200,1440.000000,189,0,72784.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,1,0,1020,1440.000000,189,0,62192.010000,602.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,189,0,-1.000000,679.369500,baseline,nbiot,60 +on10,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1434,1440.000000,189,0,-1.000000,580.550000,baseline,nbiot,60 +on5,0,0,24,1,0,363,1440.000000,190,0,23380.010000,602.006500,baseline,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,190,0,-1.000000,769.069500,baseline,nbiot,60 +on9,0,0,24,0,0,1351,1440.000000,190,0,-1.000000,674.150000,baseline,nbiot,60 +on11,0,0,24,1,0,581,1440.000000,190,0,39344.010000,620.200000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1416,1440.000000,190,0,-1.000000,592.250000,baseline,nbiot,60 +on12,0,0,24,1,0,187,1440.000000,190,0,12233.010000,602.006500,baseline,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,190,0,45393.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,191,0,4432.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,244,1440.000000,191,0,18031.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,191,0,64906.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1428,1440.000000,191,0,-1.000000,601.343500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,191,0,-1.000000,717.076000,baseline,nbiot,60 +on4,0,0,24,1,0,1377,1440.000000,191,0,85730.010000,641.006500,baseline,nbiot,60 +on8,0,0,24,1,0,1215,1440.000000,191,0,73785.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,192,0,-1.000000,601.350000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,192,0,-1.000000,583.800000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,192,0,-1.000000,661.806500,baseline,nbiot,60 +on10,0,0,24,0,0,1427,1440.000000,192,0,-1.000000,585.100000,baseline,nbiot,60 +on1,0,0,24,1,0,172,1440.000000,192,0,11356.010000,641.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1430,1440.000000,192,0,-1.000000,583.150000,baseline,nbiot,60 +on9,0,0,24,0,0,1434,1440.000000,192,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,193,0,27538.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,193,0,-1.000000,615.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,1034,1440.000000,193,0,63342.010000,602.006500,baseline,nbiot,60 +on7,0,0,24,1,0,859,1440.000000,193,0,50510.010000,602.006500,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,193,0,-1.000000,731.369500,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1387,1440.000000,193,0,-1.000000,637.750000,baseline,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,193,0,-1.000000,624.100000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1433,1440.000000,193,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1405,1440.000000,194,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1426,1440.000000,194,0,-1.000000,586.400000,baseline,nbiot,60 +on1,0,0,24,0,0,1415,1440.000000,194,0,-1.000000,592.900000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,194,0,-1.000000,694.963000,baseline,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,194,0,-1.000000,589.650000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1437,1440.000000,194,0,-1.000000,578.600000,baseline,nbiot,60 +on5,0,0,24,1,0,1219,1440.000000,194,0,74181.010000,602.006500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,1,0,720,1440.000000,194,0,46036.010000,602.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,23,0,0,1438,1438.000000,194,0,-1.000000,575.200000,baseline,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,195,0,-1.000000,586.400000,baseline,nbiot,60 +on8,0,0,24,0,0,1416,1440.000000,195,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,1,0,9,1440.000000,195,0,1466.010000,602.006500,baseline,nbiot,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,195,0,7202.010000,602.006500,baseline,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,195,0,-1.000000,596.150000,baseline,nbiot,60 +on12,0,0,24,0,0,1417,1440.000000,195,0,-1.000000,592.250000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,195,0,-1.000000,692.363000,baseline,nbiot,60 +on7,0,0,24,0,0,1439,1440.000000,195,0,-1.000000,615.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1429,1440.000000,196,0,-1.000000,615.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1406,1440.000000,196,0,-1.000000,615.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,196,0,-1.000000,643.593500,baseline,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,196,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,196,0,-1.000000,681.950000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,450,1440.000000,196,0,30264.010000,680.006500,baseline,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,197,0,-1.000000,578.600000,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,197,0,-1.000000,690.413000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1428,1440.000000,197,0,-1.000000,615.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,197,0,-1.000000,582.500000,baseline,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,197,0,-1.000000,616.300000,baseline,nbiot,60 +on6,0,0,24,1,0,186,1440.000000,197,0,11203.010000,606.556500,baseline,nbiot,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,baseline,nbiot,60 +on9,0,0,24,1,0,321,1440.000000,197,0,22325.010000,628.006500,baseline,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,198,0,-1.000000,654.006500,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,198,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,976,1440.000000,198,0,59984.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1408,1440.000000,198,0,-1.000000,615.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1433,1440.000000,198,0,-1.000000,581.200000,baseline,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,199,0,-1.000000,589.000000,baseline,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on8,0,0,24,1,0,1092,1440.000000,199,0,66023.010000,602.006500,baseline,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,199,0,-1.000000,667.663000,baseline,nbiot,60 +on4,0,0,24,1,0,480,1440.000000,199,0,29626.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,199,0,-1.000000,582.500000,baseline,nbiot,60 +on2,0,0,24,0,0,1424,1440.000000,199,0,-1.000000,615.000000,baseline,nbiot,60 +on7,0,0,24,0,0,1427,1440.000000,199,0,-1.000000,615.000000,baseline,nbiot,60 +on3,0,0,24,1,0,905,1440.000000,200,0,55760.010000,602.006500,baseline,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,200,0,2638.010000,602.006500,baseline,nbiot,60 +on11,0,0,24,0,0,1436,1440.000000,200,0,-1.000000,615.000000,baseline,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on12,0,0,24,1,0,674,1440.000000,200,0,42143.010000,641.006500,baseline,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,200,0,-1.000000,726.176000,baseline,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,200,0,-1.000000,610.443500,baseline,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on7,0,0,24,1,0,68,1440.000000,200,0,6749.010000,602.006500,baseline,nbiot,60 +on9,0,0,24,1,0,369,1440.000000,200,0,23145.010000,602.006500,baseline,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,baseline,nbiot,60 +on6,0,0,24,0,0,1428,1440.000000,1,0,-1.000000,584.450000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1420,1440.000000,1,0,-1.000000,589.650000,hint,nbiot,60 +on8,0,0,24,1,0,439,1441.989680,1,0,27193.010320,606.052580,hint,nbiot,60 +on2,0,0,24,1,0,483,1440.010320,1,0,29036.010320,602.010836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1431,1440.000000,1,0,-1.000000,582.500000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,282,1494.979360,1,1,18964.010320,636.160160,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,1,0,-1.000000,694.593540,hint,nbiot,60 +on10,0,0,24,0,0,1411,1440.000000,2,0,-1.000000,595.500000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,27,1,0,1021,1621.449040,2,3,66363.010320,761.894324,hint,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,2,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,1,0,1233,1560.320320,2,3,75040.010320,663.134628,hint,nbiot,60 +on11,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,594.850000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,2,0,-1.000000,855.150664,hint,nbiot,60 +on6,0,0,24,0,0,1412,1440.000000,2,0,-1.000000,594.850000,hint,nbiot,60 +on2,0,0,28,1,0,1176,1681.779360,2,5,70985.010320,756.126244,hint,nbiot,60 +on9,0,0,24,1,0,1259,1441.000000,2,0,77400.010320,641.413416,hint,nbiot,60 +on5,0,0,24,1,0,552,1440.010320,2,0,35430.010320,602.010836,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,3,0,-1.000000,792.537412,hint,nbiot,60 +on4,0,0,25,1,0,392,1502.948400,3,1,27768.620640,704.094692,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,27,1,0,879,1621.300000,3,4,50361.010320,726.539708,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,1,0,558,1561.600000,3,3,37306.010320,715.633292,hint,nbiot,60 +on2,0,0,24,0,0,1373,1440.000000,3,0,-1.000000,621.500000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,777,1561.959040,3,2,45882.010320,665.311532,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,480,1501.269360,3,1,32862.010320,665.514244,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,4,0,-1.000000,601.350000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,4,0,-1.000000,675.080124,hint,nbiot,60 +on2,0,0,24,0,0,1420,1440.000000,4,0,-1.000000,596.800000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.650000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,17,1440.989680,4,0,2205.010320,602.409288,hint,nbiot,60 +on11,0,0,25,1,0,492,1500.210320,4,1,30357.010320,630.640836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1436,1440.000000,4,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1433,1440.000000,5,0,-1.000000,581.200000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,5,0,-1.000000,674.800000,hint,nbiot,60 +on5,0,0,24,0,0,1419,1440.000000,5,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1404,1440.000000,5,0,-1.000000,600.050000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1428,1440.000000,5,0,-1.000000,584.450000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1370,1440.000000,5,0,-1.000000,638.400000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1438,1440.000000,6,0,-1.000000,577.950000,hint,nbiot,60 +on7,0,0,24,1,0,498,1440.010320,6,0,30239.010320,602.010836,hint,nbiot,60 +on9,0,0,25,1,0,1033,1503.369040,6,1,61770.620640,696.332740,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,6,0,-1.000000,759.373788,hint,nbiot,60 +on4,0,0,26,1,0,1257,1561.479360,6,3,75570.010320,664.456244,hint,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,6,0,-1.000000,601.350000,hint,nbiot,60 +on1,0,0,25,1,0,1127,1500.969360,6,1,70400.010320,626.407452,hint,nbiot,60 +on5,0,0,26,1,0,1278,1561.269360,6,3,77045.010320,663.520744,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,1288,1500.310320,6,2,82361.010320,646.924128,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,7,0,-1.000000,742.310248,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,203,1500.989680,7,1,16867.010320,642.659288,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1403,1440.000000,7,0,-1.000000,639.050000,hint,nbiot,60 +on8,0,0,25,1,0,776,1501.380000,7,1,49642.010320,666.072000,hint,nbiot,60 +on2,0,0,26,1,0,918,1560.310320,7,3,54818.010320,663.124128,hint,nbiot,60 +on1,0,0,25,1,0,847,1501.269360,7,1,52160.010320,659.020952,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,8,0,-1.000000,668.320124,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,8,0,-1.000000,654.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,180,1501.610320,8,1,13026.620640,626.859252,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1420,1440.000000,8,0,-1.000000,589.650000,hint,nbiot,60 +on12,0,0,24,0,0,1433,1440.000000,8,0,-1.000000,581.200000,hint,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,8,0,-1.000000,598.100000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,225,1464.000000,9,1,17874.010320,629.156500,hint,nbiot,60 +on6,0,0,32,1,0,811,1924.160640,9,9,42460.010320,915.054592,hint,nbiot,60 +on2,0,0,25,1,0,854,1501.310320,9,1,52329.010320,686.200836,hint,nbiot,60 +on7,0,0,27,1,0,731,1622.290000,9,3,45309.010320,746.552084,hint,nbiot,60 +on9,0,0,28,1,0,568,1684.769040,9,4,34074.010320,840.138408,hint,nbiot,60 +on0,1,11,24,0,0,0,1440.000000,9,0,-1.000000,1053.414080,hint,nbiot,60 +on12,0,0,26,1,0,452,1561.000000,9,2,25483.010320,662.756500,hint,nbiot,60 +on10,0,0,26,1,0,640,1561.810000,9,2,39449.010320,728.378876,hint,nbiot,60 +on1,0,0,28,1,0,391,1681.510000,9,4,22041.010320,767.691876,hint,nbiot,60 +on4,0,0,26,0,0,1456,1560.600000,9,2,-1.000000,671.669876,hint,nbiot,60 +on5,0,0,26,1,0,754,1562.600000,9,3,48891.010320,741.376584,hint,nbiot,60 +on3,0,0,27,1,0,298,1641.400320,9,5,18438.010320,769.101128,hint,nbiot,60 +on8,0,0,26,1,0,442,1562.610000,9,2,30631.010320,727.360292,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,10,0,-1.000000,593.550000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,10,0,-1.000000,744.350000,hint,nbiot,60 +on4,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,10,0,-1.000000,590.950000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1369,1440.000000,10,0,-1.000000,636.450000,hint,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,10,0,-1.000000,599.400000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1378,1440.000000,10,0,-1.000000,617.600000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,312,1440.969360,11,0,19828.010320,602.400952,hint,nbiot,60 +on3,0,0,25,1,0,664,1500.010320,11,1,42759.010320,639.010836,hint,nbiot,60 +on11,0,0,24,0,0,1392,1440.000000,11,0,-1.000000,668.300000,hint,nbiot,60 +on6,0,0,24,0,0,1438,1440.000000,11,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1407,1440.000000,11,0,-1.000000,598.100000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1435,1440.000000,11,0,-1.000000,579.900000,hint,nbiot,60 +on1,0,0,24,1,0,227,1440.969360,11,0,17929.010320,619.300952,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,26,1,0,318,1560.610320,11,4,22875.010320,702.237420,hint,nbiot,60 +on7,0,0,24,1,0,960,1441.010320,11,0,60359.010320,640.760836,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,11,0,-1.000000,822.663664,hint,nbiot,60 +on4,0,0,24,1,0,731,1440.000000,11,0,45323.010320,602.006708,hint,nbiot,60 +on3,0,0,25,1,0,206,1500.010320,12,1,14834.010320,639.010836,hint,nbiot,60 +on10,0,0,24,1,0,126,1440.010320,12,0,10783.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1422,1440.000000,12,0,-1.000000,588.350000,hint,nbiot,60 +on9,0,0,24,0,0,1438,1440.000000,12,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,600,1441.000000,12,0,37549.010320,602.413416,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,12,0,-1.000000,600.700000,hint,nbiot,60 +on8,0,0,25,1,0,1241,1502.610320,12,1,76429.620640,671.719252,hint,nbiot,60 +on12,0,0,25,1,0,1419,1500.000000,12,1,86242.010000,626.013000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,12,0,-1.000000,776.513456,hint,nbiot,60 +on7,0,0,25,1,0,609,1500.300000,13,2,40713.010320,659.276500,hint,nbiot,60 +on12,0,0,25,1,0,725,1500.010320,13,1,46657.010320,665.855836,hint,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,13,0,-1.000000,593.550000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,0,1494.310320,13,2,6416.010320,662.724128,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,3,1442.969360,13,0,2049.010320,641.564368,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,13,0,-1.000000,752.853872,hint,nbiot,60 +on1,0,0,24,1,0,582,1440.000000,13,0,38097.010320,622.813208,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1426,1440.000000,14,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,14,0,-1.000000,723.186832,hint,nbiot,60 +on3,0,0,25,1,0,56,1500.010320,14,1,6663.010320,647.460836,hint,nbiot,60 +on1,0,0,24,0,0,1401,1440.000000,14,0,-1.000000,633.850000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.650000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,374,1440.989680,14,0,22852.010320,602.409288,hint,nbiot,60 +on10,0,0,24,1,0,240,1440.010320,14,0,15944.010320,602.010836,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1424,1440.000000,14,0,-1.000000,587.050000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,423,1440.010320,15,0,28721.010320,602.010836,hint,nbiot,60 +on5,0,0,24,1,0,1020,1440.010320,15,0,63627.010320,602.010836,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,15,0,-1.000000,596.150000,hint,nbiot,60 +on11,0,0,24,1,0,357,1440.010320,15,0,22259.010320,641.010836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,15,0,-1.000000,756.076832,hint,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,15,0,-1.000000,655.300000,hint,nbiot,60 +on2,0,0,24,1,0,663,1440.010320,15,0,39850.010320,602.010836,hint,nbiot,60 +on10,0,0,24,0,0,1400,1440.000000,15,0,-1.000000,603.300000,hint,nbiot,60 +on7,0,0,24,0,0,1367,1440.000000,16,0,-1.000000,637.750000,hint,nbiot,60 +on12,0,0,24,1,0,420,1440.010320,16,0,27208.010320,602.010836,hint,nbiot,60 +on3,0,0,24,1,0,488,1440.010320,16,0,30750.010320,602.017544,hint,nbiot,60 +on8,0,0,24,0,0,1423,1440.000000,16,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,16,0,-1.000000,735.276832,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1409,1440.000000,16,0,-1.000000,596.800000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,1263,1440.010320,16,0,79149.010320,602.010836,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,17,0,-1.000000,813.400124,hint,nbiot,60 +on6,0,0,24,0,0,1437,1440.000000,17,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,27,0,0,1518,1620.600000,17,4,-1.000000,688.929584,hint,nbiot,60 +on11,0,0,25,1,0,1350,1500.000000,17,1,83002.010000,665.013000,hint,nbiot,60 +on1,0,0,26,1,0,1309,1560.969360,17,2,79668.010320,685.312036,hint,nbiot,60 +on2,0,0,24,1,0,1308,1491.000000,17,1,79122.010320,634.366292,hint,nbiot,60 +on12,0,0,24,0,0,1416,1440.000000,17,0,-1.000000,592.250000,hint,nbiot,60 +on10,0,0,24,0,0,1424,1440.000000,17,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1328,1463.300000,17,1,-1.000000,671.971500,hint,nbiot,60 +on7,0,0,25,0,0,1478,1500.000000,17,1,-1.000000,600.006500,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1431,1440.000000,17,0,-1.000000,582.500000,hint,nbiot,60 +on9,0,0,25,1,0,533,1500.010320,17,1,30995.010320,626.017336,hint,nbiot,60 +on3,0,0,24,0,0,1420,1440.000000,18,0,-1.000000,589.650000,hint,nbiot,60 +on5,0,0,25,1,0,139,1501.220640,18,1,13755.010320,682.921672,hint,nbiot,60 +on8,0,0,24,1,0,601,1441.000000,18,0,36148.010320,639.723208,hint,nbiot,60 +on1,0,0,25,1,0,837,1500.979360,18,1,48175.010320,626.411452,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,378,1441.000000,18,0,23198.010320,602.413416,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,1140,1441.010320,18,0,69122.010320,621.260836,hint,nbiot,60 +on7,0,0,26,1,0,788,1561.269360,18,3,45994.010320,663.520744,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,18,0,-1.000000,843.530744,hint,nbiot,60 +on6,0,0,27,1,0,696,1622.789680,18,5,41190.010320,738.432372,hint,nbiot,60 +on11,0,0,27,1,0,908,1620.820320,18,5,52258.010320,701.179420,hint,nbiot,60 +on9,0,0,25,1,0,580,1502.259040,18,1,34667.010320,636.023532,hint,nbiot,60 +on7,0,0,24,0,0,1434,1440.000000,19,0,-1.000000,580.550000,hint,nbiot,60 +on12,0,0,24,0,0,1408,1440.000000,19,0,-1.000000,597.450000,hint,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,19,0,-1.000000,578.600000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,19,0,-1.000000,616.950000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,19,0,-1.000000,667.663416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,75,1440.010320,19,0,4538.010320,602.010836,hint,nbiot,60 +on2,0,0,24,1,0,720,1440.010320,19,0,43514.010320,602.010836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,20,0,-1.000000,698.213208,hint,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,20,0,83759.010000,602.006500,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,540,1440.010320,20,0,34276.010320,602.010836,hint,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,20,0,-1.000000,621.500000,hint,nbiot,60 +on4,0,0,24,0,0,1416,1440.000000,20,0,-1.000000,592.250000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1397,1440.000000,20,0,-1.000000,605.250000,hint,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,21,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,21,0,-1.000000,743.583208,hint,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,21,0,-1.000000,602.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,408,1500.010320,21,1,25993.010320,634.265836,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1417,1440.000000,21,0,-1.000000,591.600000,hint,nbiot,60 +on2,0,0,25,1,0,1335,1500.000000,21,1,83884.010000,650.706500,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1414,1440.000000,21,0,-1.000000,594.200000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,22,0,-1.000000,592.250000,hint,nbiot,60 +on4,0,0,24,1,0,60,1440.010320,22,0,4852.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1405,1440.000000,22,0,-1.000000,599.400000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,22,0,-1.000000,680.670124,hint,nbiot,60 +on9,0,0,24,0,0,1428,1440.000000,22,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,498,1441.000000,22,0,30272.010320,602.413416,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1434,1440.000000,22,0,-1.000000,580.550000,hint,nbiot,60 +on9,0,0,25,1,0,658,1501.180000,23,1,37836.010320,626.498416,hint,nbiot,60 +on10,0,0,25,1,0,916,1500.969360,23,1,57510.010320,626.407452,hint,nbiot,60 +on1,0,0,24,1,0,0,1440.969360,23,0,3255.010320,602.400952,hint,nbiot,60 +on6,0,0,24,0,0,1436,1440.000000,23,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,25,1,0,792,1502.479680,23,2,49180.010320,653.186664,hint,nbiot,60 +on11,0,0,25,1,0,26,1503.300000,23,2,6409.010320,709.486708,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,23,0,-1.000000,821.834368,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,26,1,0,858,1562.279680,23,4,51586.010320,702.281580,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,27,1,0,966,1621.800320,23,5,57925.010320,748.533296,hint,nbiot,60 +on7,0,0,25,1,0,712,1502.149040,23,1,43156.010320,626.886032,hint,nbiot,60 +on5,0,0,26,1,0,714,1562.769040,23,4,43757.010320,680.565616,hint,nbiot,60 +on2,0,0,24,1,0,979,1440.000000,24,0,58636.010320,602.013208,hint,nbiot,60 +on10,0,0,25,1,0,1013,1502.300000,24,2,63929.010320,663.573292,hint,nbiot,60 +on6,0,0,24,1,0,180,1441.010320,24,0,13338.010320,637.504128,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,1239,1500.010320,24,1,72953.010320,626.017336,hint,nbiot,60 +on11,0,0,25,1,0,1178,1501.220320,24,1,71845.010320,638.461336,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1082,1502.000000,24,1,66538.010320,684.279916,hint,nbiot,60 +on8,0,0,24,1,0,130,1440.989680,24,0,8599.010320,602.402580,hint,nbiot,60 +on5,0,0,25,1,0,424,1502.210000,24,1,27921.010320,665.695292,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,24,0,-1.000000,860.650496,hint,nbiot,60 +on7,0,0,26,1,0,500,1560.041280,24,2,30661.010320,661.996220,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,28,1,0,1286,1682.610000,25,5,73921.010320,753.150000,hint,nbiot,60 +on1,0,0,26,1,0,1275,1560.610320,25,3,76941.010320,682.880628,hint,nbiot,60 +on6,0,0,24,1,0,720,1440.010320,25,0,44801.010320,610.460836,hint,nbiot,60 +on12,0,0,24,1,0,853,1441.000000,25,0,53923.010320,605.909792,hint,nbiot,60 +on9,0,0,26,1,0,1046,1561.490000,25,2,64255.010320,713.255584,hint,nbiot,60 +on8,0,0,24,1,0,973,1496.000000,25,1,59107.010320,636.366292,hint,nbiot,60 +on11,0,0,30,1,0,1170,1802.889360,25,7,69162.010320,889.497996,hint,nbiot,60 +on7,0,0,26,1,0,875,1561.159360,25,2,54099.010320,687.981536,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,25,0,-1.000000,923.953996,hint,nbiot,60 +on5,0,0,24,1,0,540,1442.979680,25,0,34395.010320,603.225204,hint,nbiot,60 +on10,0,0,26,1,0,1117,1561.000000,25,2,66510.010320,676.210876,hint,nbiot,60 +on11,0,0,25,1,0,81,1501.189680,26,1,6949.010320,638.852288,hint,nbiot,60 +on7,0,0,24,0,0,1431,1440.000000,26,0,-1.000000,582.500000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,26,0,-1.000000,804.450456,hint,nbiot,60 +on10,0,0,24,0,0,1427,1440.000000,26,0,-1.000000,585.100000,hint,nbiot,60 +on6,0,0,25,1,0,1267,1500.010320,26,1,78282.010320,636.605836,hint,nbiot,60 +on8,0,0,24,1,0,780,1440.010320,26,0,48034.010320,602.010836,hint,nbiot,60 +on3,0,0,24,0,0,1409,1440.000000,26,0,-1.000000,618.250000,hint,nbiot,60 +on1,0,0,24,1,0,1211,1440.990000,26,0,74225.010320,602.409208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,26,0,-1.000000,586.400000,hint,nbiot,60 +on9,0,0,26,1,0,176,1560.520320,26,3,10428.010320,663.214628,hint,nbiot,60 +on5,0,0,24,0,0,1397,1440.000000,26,0,-1.000000,605.250000,hint,nbiot,60 +on5,0,0,24,1,0,1037,1441.989680,27,0,64615.010320,640.119288,hint,nbiot,60 +on1,0,0,25,1,0,1229,1501.000000,27,1,74696.010320,678.406500,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1383,1440.000000,27,0,-1.000000,614.350000,hint,nbiot,60 +on2,0,0,25,1,0,685,1501.948720,27,1,46321.010320,667.099404,hint,nbiot,60 +on10,0,0,24,1,0,1247,1440.989680,27,0,76971.010320,619.952580,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,605,1440.989680,27,0,38174.010320,602.409288,hint,nbiot,60 +on6,0,0,27,1,0,899,1621.820320,27,5,55325.010320,753.839420,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,27,0,-1.000000,950.747412,hint,nbiot,60 +on3,0,0,24,1,0,482,1440.000000,27,0,28940.010320,602.006708,hint,nbiot,60 +on9,0,0,25,1,0,863,1542.969360,27,2,52383.010320,707.557452,hint,nbiot,60 +on11,0,0,25,1,0,941,1500.500320,27,1,59454.010320,664.563336,hint,nbiot,60 +on1,0,0,26,1,0,706,1562.389680,28,2,43346.620640,703.177912,hint,nbiot,60 +on8,0,0,25,1,0,1275,1502.149360,28,1,78852.010320,675.889452,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,28,0,-1.000000,592.900000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,26,0,0,1474,1560.300000,28,2,-1.000000,652.713292,hint,nbiot,60 +on7,0,0,27,1,0,1457,1620.530000,28,4,84510.010000,700.874376,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,28,0,-1.000000,789.116956,hint,nbiot,60 +on10,0,0,25,1,0,1367,1501.210000,28,1,82641.010320,638.450292,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1394,1440.000000,28,0,-1.000000,607.200000,hint,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,29,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,607,1440.989680,29,0,37166.010320,602.402580,hint,nbiot,60 +on8,0,0,24,0,0,1438,1440.000000,29,0,-1.000000,577.950000,hint,nbiot,60 +on7,0,0,24,0,0,1433,1440.000000,29,0,-1.000000,581.200000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,709,1501.269360,29,1,45636.010320,633.670952,hint,nbiot,60 +on5,0,0,24,1,0,540,1441.030960,29,0,32562.010320,639.735800,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,29,0,-1.000000,704.096956,hint,nbiot,60 +on12,0,0,26,1,0,850,1560.500320,29,3,49798.010320,663.206628,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1437,1440.000000,30,0,-1.000000,578.600000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,30,0,-1.000000,649.463416,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,1172,1440.010320,30,0,74936.010320,620.860836,hint,nbiot,60 +on5,0,0,24,1,0,720,1440.010320,30,0,45453.010320,602.010836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,882,1501.300000,31,2,56540.010320,694.366584,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,31,0,-1.000000,800.823664,hint,nbiot,60 +on10,0,0,24,0,0,1435,1440.000000,31,0,-1.000000,579.900000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,26,1,0,1265,1561.179360,31,2,76640.010320,663.296036,hint,nbiot,60 +on8,0,0,24,0,0,1404,1440.000000,31,0,-1.000000,600.050000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,27,1,0,1378,1620.910320,31,4,81958.010320,741.313920,hint,nbiot,60 +on6,0,0,25,1,0,1155,1501.190000,31,1,72976.010320,663.792292,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,845,1500.661600,31,1,53232.620640,626.486264,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1414,1440.000000,32,0,-1.000000,593.550000,hint,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,32,0,-1.000000,587.700000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,32,0,-1.000000,583.800000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1410,1440.000000,32,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,32,0,-1.000000,667.650000,hint,nbiot,60 +on6,0,0,24,0,0,1416,1440.000000,32,0,-1.000000,615.650000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,26,1,0,656,1562.300000,33,3,41602.010320,702.283208,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,558,1502.149040,33,1,37516.010320,649.181032,hint,nbiot,60 +on5,0,0,24,0,0,1413,1440.000000,33,0,-1.000000,594.200000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,193,1440.989680,33,0,14053.010320,602.402580,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,33,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,33,0,-1.000000,718.650248,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,34,0,-1.000000,592.250000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,34,0,-1.000000,708.873416,hint,nbiot,60 +on12,0,0,24,0,0,1420,1440.000000,34,0,-1.000000,589.650000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,315,1500.010320,34,1,21955.010320,650.710836,hint,nbiot,60 +on8,0,0,24,0,0,1414,1440.000000,34,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1427,1440.000000,34,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,1,0,1020,1440.010320,34,0,62342.010320,602.010836,hint,nbiot,60 +on4,0,0,24,0,0,1411,1440.000000,35,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,608,1501.989680,35,1,39427.620640,629.610996,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,878,1500.010320,35,1,55403.010320,626.017336,hint,nbiot,60 +on11,0,0,25,1,0,800,1501.010320,35,1,51251.010320,640.977336,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,1200,1440.010320,35,0,72154.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,1384,1440.000000,35,0,86345.010000,602.006500,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,35,0,-1.000000,737.903456,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,36,0,-1.000000,802.157204,hint,nbiot,60 +on11,0,0,24,1,0,1148,1440.000000,36,0,68548.010320,605.913208,hint,nbiot,60 +on1,0,0,24,1,0,484,1440.000000,36,0,31127.010320,602.013208,hint,nbiot,60 +on9,0,0,24,0,0,1427,1440.000000,36,0,-1.000000,585.100000,hint,nbiot,60 +on4,0,0,24,1,0,0,1440.010320,36,0,635.010320,602.010836,hint,nbiot,60 +on12,0,0,27,1,0,1236,1620.610320,36,5,73099.010320,700.243920,hint,nbiot,60 +on10,0,0,24,1,0,670,1440.989680,36,0,43178.010320,602.402580,hint,nbiot,60 +on2,0,0,26,1,0,562,1562.300000,36,3,34931.010320,704.226708,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,1078,1502.158720,36,1,67783.010320,646.584904,hint,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,37,0,-1.000000,590.300000,hint,nbiot,60 +on6,0,0,25,1,0,432,1501.210320,37,1,27068.010320,667.310836,hint,nbiot,60 +on7,0,0,24,0,0,1430,1440.000000,37,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,25,1,0,120,1501.610320,37,1,8672.620640,626.859252,hint,nbiot,60 +on2,0,0,25,1,0,518,1503.259040,37,1,32185.010320,671.393532,hint,nbiot,60 +on10,0,0,24,1,0,1394,1440.000000,37,0,83886.010000,641.006500,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,37,0,-1.000000,868.443580,hint,nbiot,60 +on5,0,0,26,1,0,558,1560.500320,37,3,34617.010320,663.200128,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,1201,1440.010320,37,0,78028.010320,678.710836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,1065,1500.010320,37,1,69632.010320,686.460836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1428,1440.000000,38,0,-1.000000,584.450000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1385,1440.000000,38,0,-1.000000,613.700000,hint,nbiot,60 +on9,0,0,24,0,0,1414,1440.000000,38,0,-1.000000,593.550000,hint,nbiot,60 +on12,0,0,24,0,0,1411,1440.000000,38,0,-1.000000,595.500000,hint,nbiot,60 +on6,0,0,25,1,0,996,1500.010320,38,1,59520.010320,627.765836,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,319,1441.979360,38,0,20927.010320,602.805160,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,38,0,-1.000000,712.780124,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1404,1440.000000,39,0,-1.000000,600.050000,hint,nbiot,60 +on4,0,0,24,1,0,1359,1440.000000,39,0,82929.010000,624.106500,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,39,0,-1.000000,736.570124,hint,nbiot,60 +on5,0,0,23,0,0,1411,1438.000000,39,0,-1.000000,620.693500,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,420,1440.990000,39,0,27714.010320,603.052708,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,39,0,-1.000000,593.550000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,18,1441.000000,39,0,2674.010320,602.413416,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,27,1,0,763,1621.269360,40,4,47450.010320,725.473828,hint,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,40,0,-1.000000,583.800000,hint,nbiot,60 +on10,0,0,25,1,0,1152,1519.210320,40,2,74096.210320,698.495836,hint,nbiot,60 +on11,0,0,24,1,0,540,1441.369680,40,0,32805.010320,620.617872,hint,nbiot,60 +on4,0,0,27,1,0,756,1622.779360,40,4,46486.010320,738.428036,hint,nbiot,60 +on6,0,0,25,1,0,699,1501.000000,40,1,43232.010320,638.366292,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,40,0,-1.000000,869.990372,hint,nbiot,60 +on1,0,0,25,1,0,578,1503.189680,40,1,36957.010320,680.465580,hint,nbiot,60 +on8,0,0,24,0,0,1418,1440.000000,40,0,-1.000000,590.950000,hint,nbiot,60 +on5,0,0,26,1,0,854,1560.610320,40,3,53947.010320,701.600628,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,16,1442.969040,41,0,1179.010320,603.207740,hint,nbiot,60 +on9,0,0,24,0,0,1428,1440.000000,41,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,41,0,-1.000000,653.370124,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,41,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,41,0,-1.000000,598.750000,hint,nbiot,60 +on6,0,0,25,1,0,299,1501.000000,42,1,21633.010320,645.263416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,42,0,-1.000000,783.786956,hint,nbiot,60 +on11,0,0,24,0,0,1406,1440.000000,42,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,535,1501.300000,42,1,34520.010320,666.026376,hint,nbiot,60 +on7,0,0,26,1,0,628,1560.210320,42,2,36648.010320,673.145296,hint,nbiot,60 +on9,0,0,24,1,0,0,1442.620640,42,1,260.620640,603.270088,hint,nbiot,60 +on2,0,0,25,1,0,460,1502.000000,42,1,31082.620640,665.208084,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,383,1500.310320,43,1,28658.010320,650.180836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,300,1501.630960,43,1,19953.620640,626.874216,hint,nbiot,60 +on7,0,0,24,0,0,1419,1440.000000,43,0,-1.000000,590.300000,hint,nbiot,60 +on6,0,0,24,0,0,1409,1440.000000,43,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1402,1440.000000,43,0,-1.000000,602.000000,hint,nbiot,60 +on11,0,0,24,1,0,845,1440.000000,43,0,53373.010320,602.006708,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1433,1440.000000,43,0,-1.000000,581.200000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,43,0,-1.000000,720.346956,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,44,0,-1.000000,784.060372,hint,nbiot,60 +on10,0,0,24,1,0,60,1443.989680,44,0,4409.010320,657.559496,hint,nbiot,60 +on2,0,0,24,0,0,1406,1440.000000,44,0,-1.000000,624.100000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1080,1441.000000,44,0,67693.010320,614.756708,hint,nbiot,60 +on3,0,0,24,0,0,1419,1440.000000,44,0,-1.000000,590.300000,hint,nbiot,60 +on9,0,0,24,1,0,540,1440.010320,44,0,32494.010320,602.010836,hint,nbiot,60 +on4,0,0,26,1,0,198,1560.530320,44,3,11662.010320,663.218628,hint,nbiot,60 +on12,0,0,24,0,0,1391,1440.000000,44,0,-1.000000,639.700000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,173,1500.969360,44,1,9681.010320,627.258952,hint,nbiot,60 +on6,0,0,24,0,0,1431,1440.000000,44,0,-1.000000,619.550000,hint,nbiot,60 +on4,0,0,25,1,0,869,1501.030640,45,1,53651.010320,632.288672,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,45,0,-1.000000,819.487452,hint,nbiot,60 +on2,0,0,24,1,0,360,1441.000000,45,0,21646.010320,602.413416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,547,1442.000000,45,0,33034.010320,639.876624,hint,nbiot,60 +on9,0,0,27,1,0,781,1622.610320,45,5,48502.010320,798.413920,hint,nbiot,60 +on8,0,0,26,1,0,630,1563.469040,45,3,42395.010320,734.217324,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,966,1561.289680,45,3,55536.010320,663.529080,hint,nbiot,60 +on3,0,0,24,1,0,715,1490.179360,45,1,43669.010320,679.291452,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,46,0,-1.000000,833.980372,hint,nbiot,60 +on8,0,0,25,1,0,1313,1501.210000,46,1,77085.010320,638.450292,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,208,1440.010320,46,0,17261.010320,623.460836,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,27,1,0,1380,1620.810000,46,5,82976.010000,716.768584,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,26,1,0,1346,1560.969360,46,2,79289.010320,663.660536,hint,nbiot,60 +on3,0,0,24,1,0,976,1440.000000,46,0,60492.010320,602.013208,hint,nbiot,60 +on9,0,0,24,1,0,480,1440.010320,46,0,29522.010320,602.010836,hint,nbiot,60 +on4,0,0,24,1,0,905,1442.000000,46,0,54698.010320,641.026708,hint,nbiot,60 +on7,0,0,25,1,0,981,1500.310320,46,2,61731.010320,651.474128,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,457,1500.010320,47,1,29956.010320,627.960836,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1423,1440.000000,47,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,300,1440.010320,47,0,21493.010320,602.010836,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,47,0,-1.000000,731.240124,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1430,1440.000000,47,0,-1.000000,583.150000,hint,nbiot,60 +on10,0,0,25,1,0,972,1500.010320,47,1,61267.010320,658.315836,hint,nbiot,60 +on7,0,0,24,0,0,1403,1440.000000,47,0,-1.000000,600.700000,hint,nbiot,60 +on2,0,0,25,1,0,158,1500.230640,48,1,7435.010320,626.112172,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,48,0,-1.000000,707.983332,hint,nbiot,60 +on12,0,0,24,1,0,1358,1440.000000,48,0,83242.010000,641.006500,hint,nbiot,60 +on6,0,0,24,0,0,1421,1440.000000,48,0,-1.000000,589.000000,hint,nbiot,60 +on4,0,0,24,1,0,60,1441.010320,48,0,4044.010320,628.020836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,188,1440.000000,48,0,12724.010320,602.006708,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,363,1560.320640,49,3,20723.010320,663.141464,hint,nbiot,60 +on11,0,0,25,1,0,223,1501.969360,49,1,11659.010320,664.117452,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,27,1,0,258,1621.789360,49,5,15462.010320,701.573536,hint,nbiot,60 +on1,0,0,24,0,0,1407,1440.000000,49,0,-1.000000,598.100000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,49,0,-1.000000,770.683580,hint,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,49,0,85455.010000,602.006500,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,86,1500.979360,49,1,7255.010320,640.061452,hint,nbiot,60 +on9,0,0,24,1,0,427,1441.979360,49,0,25423.010320,602.805160,hint,nbiot,60 +on2,0,0,24,0,0,1435,1440.000000,49,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,25,1,0,583,1501.200320,50,1,35621.010320,634.950044,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,50,0,-1.000000,827.213664,hint,nbiot,60 +on2,0,0,25,1,0,623,1501.010320,50,1,41573.010320,707.010836,hint,nbiot,60 +on3,0,0,24,1,0,1080,1440.010320,50,0,66219.010320,602.010836,hint,nbiot,60 +on6,0,0,24,1,0,725,1440.000000,50,0,46467.010320,602.006708,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,480,1441.010320,50,0,28876.010320,639.720836,hint,nbiot,60 +on9,0,0,25,1,0,924,1500.010320,50,1,58693.010320,635.767336,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,50,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,1,0,120,1440.010320,50,0,9204.010320,602.010836,hint,nbiot,60 +on7,0,0,25,1,0,1200,1502.610320,51,1,74978.620640,664.569252,hint,nbiot,60 +on4,0,0,24,1,0,180,1441.000000,51,0,12713.010320,602.413416,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,51,0,-1.000000,784.683748,hint,nbiot,60 +on6,0,0,24,0,0,1438,1440.000000,51,0,-1.000000,577.950000,hint,nbiot,60 +on9,0,0,24,0,0,1429,1440.000000,51,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1416,1440.000000,51,0,-1.000000,592.250000,hint,nbiot,60 +on11,0,0,26,1,0,1326,1560.000000,51,2,83927.010000,711.763000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,420,1440.010320,51,0,27548.010320,602.010836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,0,0,1497,1560.430320,51,2,-1.000000,677.030128,hint,nbiot,60 +on8,0,0,25,1,0,360,1502.600000,52,1,23419.620640,627.261832,hint,nbiot,60 +on9,0,0,25,1,0,21,1500.010320,52,1,4866.010320,644.860836,hint,nbiot,60 +on7,0,0,25,1,0,1182,1500.010320,52,1,70870.010320,626.017336,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,614,1440.010320,52,0,39604.010320,602.017544,hint,nbiot,60 +on12,0,0,24,0,0,1394,1440.000000,52,0,-1.000000,654.000000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,52,0,-1.000000,796.683788,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1421,1440.000000,52,0,-1.000000,589.000000,hint,nbiot,60 +on11,0,0,25,1,0,819,1500.010320,52,1,48905.010320,627.967336,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,730,1443.979360,52,0,44566.010320,678.225160,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1408,1440.000000,53,0,-1.000000,634.500000,hint,nbiot,60 +on11,0,0,26,1,0,469,1569.830320,53,5,27272.010320,680.783420,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,240,1441.969360,53,0,15618.010320,640.110952,hint,nbiot,60 +on3,0,0,24,0,0,1405,1440.000000,53,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,25,1,0,416,1500.969360,53,1,24783.010320,626.407452,hint,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,53,0,-1.000000,583.800000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,53,0,-1.000000,733.353664,hint,nbiot,60 +on1,0,0,25,1,0,283,1501.279680,53,2,21198.010320,662.275080,hint,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,54,0,-1.000000,596.150000,hint,nbiot,60 +on6,0,0,24,0,0,1415,1440.000000,54,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,54,0,-1.000000,590.950000,hint,nbiot,60 +on3,0,0,25,1,0,720,1500.640960,54,1,45698.620640,626.484716,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,1021,1501.369040,54,1,61447.620640,626.762740,hint,nbiot,60 +on9,0,0,24,0,0,1434,1440.000000,54,0,-1.000000,580.550000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,54,0,-1.000000,710.610372,hint,nbiot,60 +on1,0,0,25,1,0,780,1501.010000,54,1,48892.020320,626.423916,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,660,1442.000000,55,0,42199.010320,640.123416,hint,nbiot,60 +on11,0,0,24,0,0,1437,1440.000000,55,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,55,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1422,1440.000000,55,0,-1.000000,588.350000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,729,1500.010320,55,1,46448.010320,650.717336,hint,nbiot,60 +on6,0,0,24,1,0,540,1440.010320,55,0,33058.010320,602.010836,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,55,0,-1.000000,711.876832,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1410,1440.000000,56,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,56,0,-1.000000,600.050000,hint,nbiot,60 +on12,0,0,24,0,0,1435,1440.000000,56,0,-1.000000,579.900000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,885,1503.000000,57,1,57192.620640,660.668292,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,57,0,-1.000000,741.380124,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,598.750000,hint,nbiot,60 +on7,0,0,24,0,0,1406,1440.000000,57,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,26,1,0,1078,1560.010320,57,2,64214.010320,661.970420,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1411,1440.000000,57,0,-1.000000,595.500000,hint,nbiot,60 +on2,0,0,25,1,0,938,1501.000000,57,1,58863.010320,638.366292,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,55,1500.320640,58,2,3770.010320,629.384964,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,9,1441.959040,58,0,3280.010320,602.803532,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1393,1440.000000,58,0,-1.000000,623.450000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,58,0,-1.000000,707.983540,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,58,0,-1.000000,583.800000,hint,nbiot,60 +on6,0,0,24,0,0,1380,1440.000000,58,0,-1.000000,616.300000,hint,nbiot,60 +on8,0,0,24,0,0,1402,1440.000000,59,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,27,1,0,595,1623.079680,59,4,35535.010320,742.181664,hint,nbiot,60 +on5,0,0,24,0,0,1430,1440.000000,59,0,-1.000000,583.800000,hint,nbiot,60 +on10,0,0,26,1,0,484,1562.259040,59,2,31522.010320,697.969908,hint,nbiot,60 +on4,0,0,27,1,0,443,1621.300000,59,4,26666.010320,711.432668,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,59,0,-1.000000,804.990372,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1441,1440.000000,59,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,1080,1440.010320,59,0,67294.010320,602.010836,hint,nbiot,60 +on11,0,0,25,1,0,398,1502.979360,59,1,24458.010320,676.474744,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,263,1502.179360,59,1,18960.010320,673.301452,hint,nbiot,60 +on1,0,0,25,1,0,113,1502.000000,60,1,9314.010320,668.673416,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1439,1440.000000,60,0,-1.000000,577.300000,hint,nbiot,60 +on2,0,0,24,1,0,1140,1441.010320,60,0,69225.010320,639.720836,hint,nbiot,60 +on8,0,0,25,1,0,541,1502.000000,60,1,34584.010320,645.013416,hint,nbiot,60 +on10,0,0,25,1,0,219,1500.010320,60,1,13896.010320,626.017336,hint,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,60,0,-1.000000,585.750000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,60,0,-1.000000,756.623664,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,1259,1500.010320,60,1,75063.010320,626.017336,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,597,1501.300000,61,2,36590.010320,665.766584,hint,nbiot,60 +on1,0,0,25,1,0,555,1501.379680,61,1,34790.620640,655.373496,hint,nbiot,60 +on10,0,0,24,1,0,488,1440.000000,61,0,32215.010320,602.006708,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,686,1502.000000,61,1,45298.010320,646.963416,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,60,1504.589680,61,1,6841.620640,649.774412,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,61,0,-1.000000,751.867328,hint,nbiot,60 +on2,0,0,25,1,0,1310,1500.630640,61,2,80424.630640,633.617172,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,62,0,-1.000000,581.850000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,62,0,-1.000000,587.050000,hint,nbiot,60 +on6,0,0,24,1,0,1096,1440.989680,62,0,65906.010320,602.402580,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,62,0,-1.000000,670.920124,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,75,1440.010320,62,0,4155.010320,602.010836,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,480,1440.010320,62,0,30107.010320,602.010836,hint,nbiot,60 +on12,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,585.750000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,63,0,-1.000000,597.450000,hint,nbiot,60 +on7,0,0,25,1,0,341,1501.179360,63,1,21055.010320,626.491452,hint,nbiot,60 +on8,0,0,24,1,0,645,1441.959040,63,0,42122.010320,615.153532,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,63,0,-1.000000,835.280164,hint,nbiot,60 +on6,0,0,24,0,0,1426,1440.000000,63,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1417,1440.000000,63,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,25,1,0,707,1501.300000,63,2,44465.010320,660.326708,hint,nbiot,60 +on1,0,0,26,1,0,365,1560.520320,63,3,23504.010320,672.964628,hint,nbiot,60 +on9,0,0,25,1,0,1335,1500.000000,63,1,84627.010000,650.706500,hint,nbiot,60 +on5,0,0,24,0,0,1419,1440.000000,63,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,64,0,-1.000000,835.547080,hint,nbiot,60 +on12,0,0,24,0,0,1407,1440.000000,64,0,-1.000000,598.100000,hint,nbiot,60 +on8,0,0,26,1,0,356,1561.810000,64,3,23102.010320,690.821876,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,28,1,0,547,1681.020640,64,5,29021.010320,737.219340,hint,nbiot,60 +on4,0,0,25,1,0,211,1502.969360,64,1,14487.010320,661.267660,hint,nbiot,60 +on9,0,0,24,0,0,1405,1440.000000,64,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,26,1,0,456,1560.979360,64,2,27277.010320,662.364536,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,317,1501.000000,64,1,19698.010320,638.366292,hint,nbiot,60 +on7,0,0,24,1,0,900,1440.010320,64,0,56428.010320,602.010836,hint,nbiot,60 +on11,0,0,24,1,0,543,1441.989680,64,0,34797.010320,613.852580,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,256,1561.269360,65,2,14162.020640,663.494120,hint,nbiot,60 +on3,0,0,26,1,0,389,1561.569360,65,2,27234.010320,695.477536,hint,nbiot,60 +on4,0,0,25,1,0,366,1501.000000,65,1,24414.010320,650.507876,hint,nbiot,60 +on9,0,0,27,1,0,227,1622.559040,65,3,17273.010320,745.866492,hint,nbiot,60 +on7,0,0,24,1,0,63,1441.010320,65,0,6408.010320,620.480836,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,65,0,-1.000000,900.943788,hint,nbiot,60 +on11,0,0,27,1,0,501,1623.589680,65,4,31575.010320,784.902164,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1379,1440.000000,65,0,-1.000000,633.200000,hint,nbiot,60 +on6,0,0,28,1,0,371,1682.820640,65,6,19715.010320,727.337840,hint,nbiot,60 +on1,0,0,25,1,0,180,1501.020640,65,1,10728.010320,638.771464,hint,nbiot,60 +on12,0,0,24,1,0,610,1440.989680,65,0,39561.010320,602.402580,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,66,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,25,1,0,240,1500.310320,66,2,20193.010320,665.124128,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,421,1441.989680,66,0,27559.010320,604.102580,hint,nbiot,60 +on5,0,0,24,1,0,125,1440.030640,66,0,7658.010320,602.025464,hint,nbiot,60 +on3,0,0,24,0,0,1436,1440.000000,66,0,-1.000000,579.250000,hint,nbiot,60 +on4,0,0,25,1,0,158,1501.479360,66,2,14276.010320,666.449744,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,66,0,-1.000000,764.553664,hint,nbiot,60 +on8,0,0,24,0,0,1406,1440.000000,66,0,-1.000000,598.750000,hint,nbiot,60 +on9,0,0,26,1,0,257,1561.279360,66,3,15439.010320,663.524744,hint,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,66,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1153,1440.989680,67,0,69525.010320,602.402580,hint,nbiot,60 +on3,0,0,24,0,0,1424,1440.000000,67,0,-1.000000,587.050000,hint,nbiot,60 +on5,0,0,25,1,0,993,1501.310320,67,2,61921.010320,660.974128,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,67,0,-1.000000,756.103664,hint,nbiot,60 +on6,0,0,24,0,0,1404,1440.000000,67,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,25,1,0,9,1501.610320,67,1,2853.620640,626.859252,hint,nbiot,60 +on4,0,0,24,1,0,488,1440.989680,67,0,32309.010320,641.402580,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,974,1440.030640,67,0,58621.010320,641.025464,hint,nbiot,60 +on2,0,0,24,0,0,1428,1440.000000,67,0,-1.000000,584.450000,hint,nbiot,60 +on7,0,0,24,1,0,0,1440.020640,68,0,1059.010320,602.021672,hint,nbiot,60 +on9,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,602.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,967,1440.989680,68,0,58550.010320,602.402580,hint,nbiot,60 +on1,0,0,24,0,0,1410,1440.000000,68,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,25,1,0,1260,1500.630960,68,1,78029.620640,626.467508,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,68,0,-1.000000,805.496748,hint,nbiot,60 +on11,0,0,24,1,0,1301,1440.000000,68,0,85281.010000,699.506500,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1401,1440.000000,68,0,-1.000000,602.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,69,0,-1.000000,599.400000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,319,1440.000000,69,0,19433.010320,602.013208,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,69,0,-1.000000,707.600248,hint,nbiot,60 +on8,0,0,26,1,0,467,1561.820320,69,2,28274.620640,650.949752,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,1,0,371,1561.310320,69,3,22811.010320,725.534128,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1432,1440.000000,69,0,-1.000000,581.850000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,540,1501.610320,70,1,33809.620640,626.859252,hint,nbiot,60 +on12,0,0,24,1,0,307,1440.989680,70,0,18424.010320,602.402580,hint,nbiot,60 +on9,0,0,24,1,0,660,1440.010320,70,0,42415.010320,602.010836,hint,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,70,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,70,0,-1.000000,591.600000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,70,0,-1.000000,731.390248,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,787,1440.989680,70,0,47068.010320,602.402580,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1416,1440.000000,70,0,-1.000000,592.250000,hint,nbiot,60 +on10,0,0,28,1,0,837,1682.569360,71,5,50127.010320,759.080412,hint,nbiot,60 +on8,0,0,25,1,0,826,1524.010320,71,3,50464.410320,701.787336,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,1019,1500.969360,71,1,61055.010320,626.407452,hint,nbiot,60 +on5,0,0,25,1,0,75,1500.010320,71,1,7502.010320,650.710836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,27,1,0,757,1622.269360,71,3,44707.010320,738.223828,hint,nbiot,60 +on7,0,0,25,1,0,555,1501.210000,71,1,35210.010320,641.245292,hint,nbiot,60 +on12,0,0,27,1,0,710,1621.660960,71,3,40942.010320,700.950176,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,71,0,-1.000000,890.427204,hint,nbiot,60 +on3,0,0,25,1,0,616,1503.490000,71,1,39152.010320,692.597708,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,26,1,0,1049,1560.490320,71,3,62354.010320,664.054128,hint,nbiot,60 +on8,0,0,24,1,0,853,1441.000000,72,0,52367.010320,602.413416,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,1262,1440.979360,72,0,77657.010320,602.405160,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1339,1440.000000,72,0,-1.000000,659.850000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,600,1441.010320,72,0,36159.010320,640.760836,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,72,0,-1.000000,721.640248,hint,nbiot,60 +on5,0,0,26,1,0,1137,1563.248720,73,3,68850.010320,664.325904,hint,nbiot,60 +on6,0,0,24,0,0,1420,1440.000000,73,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,73,0,-1.000000,618.900000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,1049,1501.969360,73,1,66081.010320,663.467452,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,73,0,-1.000000,696.563664,hint,nbiot,60 +on9,0,0,26,1,0,1196,1561.520320,73,3,72229.010320,669.471336,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,16,1440.989680,74,0,976.010320,602.402580,hint,nbiot,60 +on1,0,0,24,0,0,1401,1440.000000,74,0,-1.000000,602.650000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,74,0,-1.000000,825.543788,hint,nbiot,60 +on2,0,0,26,1,0,535,1561.320320,74,3,32675.010320,665.744628,hint,nbiot,60 +on5,0,0,25,1,0,639,1500.010320,74,1,39087.010320,626.017336,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,1073,1500.010320,74,1,66010.010320,650.060836,hint,nbiot,60 +on3,0,0,25,1,0,960,1503.610320,74,1,58307.620640,670.169252,hint,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,74,0,23241.010320,602.013208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,470,1561.179360,74,2,31109.010320,668.697952,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,780,1502.010000,75,1,47647.020320,665.173916,hint,nbiot,60 +on10,0,0,25,1,0,407,1502.199680,75,1,23861.010320,638.852872,hint,nbiot,60 +on4,0,0,24,0,0,1377,1440.000000,75,0,-1.000000,631.250000,hint,nbiot,60 +on12,0,0,24,1,0,300,1442.959040,75,0,18927.010320,640.513532,hint,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,75,1,-1.000000,576.656500,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,27,1,0,519,1621.010000,75,4,30592.010320,711.518376,hint,nbiot,60 +on9,0,0,27,1,0,424,1623.040640,75,4,26268.030640,761.412548,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,184,1500.989680,75,1,11734.010320,639.409288,hint,nbiot,60 +on11,0,0,24,1,0,600,1441.010320,75,0,39077.010320,627.110836,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,75,0,-1.000000,837.510704,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,26,0,0,1463,1560.210000,76,2,-1.000000,673.288376,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,26,1,0,871,1560.969360,76,2,51319.010320,650.413952,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,76,0,-1.000000,593.550000,hint,nbiot,60 +on1,0,0,24,0,0,1436,1440.000000,76,0,-1.000000,579.250000,hint,nbiot,60 +on9,0,0,24,0,0,1377,1440.000000,76,0,-1.000000,618.250000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,76,0,-1.000000,801.440124,hint,nbiot,60 +on5,0,0,25,1,0,712,1501.300000,76,1,46337.010320,643.673084,hint,nbiot,60 +on8,0,0,24,1,0,661,1441.000000,76,0,40363.010320,613.709792,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,28,1,0,952,1680.820320,76,5,54332.010320,736.034212,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,8,1442.979360,77,0,2968.010320,640.521868,hint,nbiot,60 +on10,0,0,24,0,0,1426,1440.000000,77,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,25,1,0,105,1501.010320,77,1,5357.010320,634.874044,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,1141,1440.989680,77,0,69273.010320,602.402580,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1385,1440.000000,77,0,86171.010000,602.006500,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,77,0,-1.000000,689.796748,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,913,1440.989680,78,0,57415.010320,602.402580,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,78,0,-1.000000,590.950000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,78,0,-1.000000,586.400000,hint,nbiot,60 +on3,0,0,25,1,0,1288,1501.620640,78,1,82683.620640,685.616672,hint,nbiot,60 +on11,0,0,25,1,0,1408,1500.000000,78,1,86305.010000,665.013000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,78,0,-1.000000,720.326624,hint,nbiot,60 +on9,0,0,25,1,0,887,1500.969360,79,1,52393.010320,626.407452,hint,nbiot,60 +on3,0,0,25,1,0,814,1501.269360,79,1,48615.010320,630.427452,hint,nbiot,60 +on8,0,0,25,1,0,195,1501.969360,79,1,13690.010320,629.615868,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,660,1440.010320,79,0,42578.010320,602.010836,hint,nbiot,60 +on10,0,0,24,1,0,724,1441.989680,79,0,45685.010320,639.072580,hint,nbiot,60 +on12,0,0,25,1,0,1277,1500.310320,79,1,76825.010320,647.840836,hint,nbiot,60 +on1,0,0,27,1,0,974,1622.820320,79,5,55320.010320,738.639628,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,316,1501.000000,79,1,21266.010320,626.419916,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,236,1562.500320,79,3,15023.010320,735.766628,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,79,0,-1.000000,811.667328,hint,nbiot,60 +on12,0,0,25,1,0,435,1500.000000,80,1,32147.010320,650.713208,hint,nbiot,60 +on9,0,0,24,1,0,619,1441.979360,80,0,36988.010320,602.818368,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,80,0,-1.000000,770.007164,hint,nbiot,60 +on2,0,0,24,0,0,1375,1440.000000,80,0,-1.000000,635.150000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1436,1440.000000,80,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,80,0,-1.000000,594.200000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,607,1502.300000,80,2,40925.010320,699.726708,hint,nbiot,60 +on10,0,0,25,1,0,556,1500.010320,80,1,34710.010320,626.855836,hint,nbiot,60 +on12,0,0,26,1,0,441,1561.000000,81,2,25846.010320,687.073416,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1411,1440.000000,81,0,-1.000000,595.500000,hint,nbiot,60 +on8,0,0,26,1,0,992,1561.689360,81,3,63241.010320,716.735244,hint,nbiot,60 +on5,0,0,25,1,0,1008,1500.979360,81,1,59138.010320,626.411452,hint,nbiot,60 +on7,0,0,26,1,0,1136,1560.310320,81,3,67963.010320,663.130628,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,hint,nbiot,60 +on9,0,0,25,1,0,443,1502.600000,81,1,29746.620640,651.961832,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,81,0,-1.000000,856.353788,hint,nbiot,60 +on2,0,0,24,0,0,1412,1440.000000,81,0,-1.000000,594.850000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1407,1440.000000,82,0,-1.000000,598.100000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,26,1,0,311,1561.010000,82,2,18676.010320,672.978916,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,766,1440.010320,82,0,50272.010320,611.760836,hint,nbiot,60 +on4,0,0,25,1,0,1200,1502.610320,82,1,75398.620640,665.609252,hint,nbiot,60 +on3,0,0,24,1,0,180,1441.010320,82,0,13054.010320,639.720836,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,82,0,-1.000000,750.506956,hint,nbiot,60 +on2,0,0,24,0,0,1416,1440.000000,82,0,-1.000000,592.250000,hint,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,83,0,-1.000000,599.400000,hint,nbiot,60 +on1,0,0,26,1,0,1163,1560.969360,83,2,71848.010320,662.360536,hint,nbiot,60 +on7,0,0,24,1,0,1080,1441.000000,83,0,65973.010320,614.359792,hint,nbiot,60 +on9,0,0,24,0,0,1407,1440.000000,83,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,1038,1441.010320,83,0,62556.010320,639.720836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,18,1441.010320,83,0,3209.010320,602.424252,hint,nbiot,60 +on4,0,0,24,0,0,1428,1440.000000,83,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,83,0,-1.000000,794.706956,hint,nbiot,60 +on2,0,0,24,0,0,1437,1440.000000,83,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,26,1,0,1134,1560.610320,83,3,74149.010320,737.337420,hint,nbiot,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,957,1500.310320,84,2,59848.010320,652.774128,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.650000,hint,nbiot,60 +on2,0,0,24,1,0,881,1440.969360,84,0,56272.010320,615.400952,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,84,0,-1.000000,600.700000,hint,nbiot,60 +on4,0,0,25,1,0,385,1501.000000,84,1,24226.010320,635.318416,hint,nbiot,60 +on7,0,0,24,0,0,1414,1440.000000,84,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,84,0,-1.000000,718.643540,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1406,1440.000000,85,0,-1.000000,617.600000,hint,nbiot,60 +on8,0,0,24,1,0,669,1440.020640,85,0,41291.010320,602.021672,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1417,1440.000000,85,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,85,0,-1.000000,581.850000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,85,0,-1.000000,653.363416,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1431,1440.000000,85,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,86,0,-1.000000,696.270124,hint,nbiot,60 +on2,0,0,24,0,0,1439,1440.000000,86,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,1,0,425,1440.010320,86,0,25692.010320,602.017544,hint,nbiot,60 +on8,0,0,24,0,0,1432,1440.000000,86,0,-1.000000,581.850000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1420,1440.000000,86,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1429,1440.000000,86,0,-1.000000,583.800000,hint,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,86,0,-1.000000,600.700000,hint,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,86,0,-1.000000,590.950000,hint,nbiot,60 +on11,0,0,24,1,0,368,1440.000000,86,0,22049.010320,602.006708,hint,nbiot,60 +on10,0,0,24,0,0,1402,1440.000000,87,0,-1.000000,601.350000,hint,nbiot,60 +on1,0,0,27,1,0,796,1623.499680,87,4,43558.010320,733.112956,hint,nbiot,60 +on4,0,0,24,1,0,1397,1440.000000,87,0,83589.010000,602.006500,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,87,0,-1.000000,900.957204,hint,nbiot,60 +on8,0,0,26,1,0,597,1562.269360,87,3,36003.010320,700.190744,hint,nbiot,60 +on2,0,0,27,1,0,492,1622.258720,87,4,30376.010320,703.523196,hint,nbiot,60 +on7,0,0,25,1,0,644,1501.300000,87,1,39597.010320,680.079792,hint,nbiot,60 +on11,0,0,24,0,0,1403,1440.000000,87,0,-1.000000,600.700000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,26,1,0,438,1562.299680,87,2,28676.010320,701.646080,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,784,1500.010320,87,1,48270.010320,649.417336,hint,nbiot,60 +on5,0,0,26,1,0,637,1562.579680,87,3,39995.010320,729.681664,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,26,1,0,686,1560.310320,88,3,42954.010320,675.272212,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1384,1440.000000,88,0,-1.000000,629.300000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,88,0,-1.000000,809.690496,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,379,1440.000000,88,0,21805.010320,602.013208,hint,nbiot,60 +on2,0,0,24,1,0,192,1440.020640,88,0,13405.010320,602.021672,hint,nbiot,60 +on12,0,0,25,1,0,396,1501.310320,88,2,25313.010320,650.184128,hint,nbiot,60 +on6,0,0,25,1,0,457,1501.969360,88,1,29168.010320,703.117452,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,26,1,0,580,1563.548720,88,3,39405.010320,689.132696,hint,nbiot,60 +on7,0,0,24,1,0,522,1445.000000,88,1,33440.010320,618.566292,hint,nbiot,60 +on6,0,0,25,1,0,980,1500.310320,89,2,63063.010320,652.124128,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,1076,1440.010320,89,0,66114.010320,641.010836,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,89,0,-1.000000,599.400000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,960,1441.979680,89,0,60965.010320,640.121788,hint,nbiot,60 +on4,0,0,25,1,0,1344,1500.000000,89,1,86302.010000,713.113000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,89,0,-1.000000,769.740040,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.650000,hint,nbiot,60 +on12,0,0,25,1,0,1326,1501.300000,90,2,82816.010320,659.663292,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,1264,1441.000000,90,0,78369.010320,635.823208,hint,nbiot,60 +on4,0,0,24,1,0,360,1440.010320,90,0,25109.010320,602.010836,hint,nbiot,60 +on9,0,0,25,0,0,1420,1500.000000,90,1,-1.000000,645.681584,hint,nbiot,60 +on8,0,0,25,0,0,1441,1500.300000,90,1,-1.000000,638.456584,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,90,0,-1.000000,726.170124,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,1410,1560.230640,90,2,85415.010000,651.613464,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,1380,1500.000000,91,1,84873.010000,647.456500,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,91,0,-1.000000,706.923208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1378,1440.000000,91,0,-1.000000,643.600000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1423,1440.000000,91,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1435,1440.000000,91,0,-1.000000,579.900000,hint,nbiot,60 +on8,0,0,24,1,0,1140,1440.010320,91,0,70710.010320,602.010836,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,511,1501.020640,92,1,32580.010320,660.416672,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,92,0,-1.000000,769.780704,hint,nbiot,60 +on11,0,0,25,1,0,1074,1501.310320,92,2,68446.010320,682.034128,hint,nbiot,60 +on12,0,0,25,1,0,419,1501.630640,92,1,25499.620640,680.823880,hint,nbiot,60 +on1,0,0,25,1,0,1086,1501.959040,92,1,68072.010320,638.516740,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,1216,1500.010320,92,1,75148.010320,626.017336,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,638,1500.010320,92,1,40049.010320,626.017336,hint,nbiot,60 +on1,0,0,24,0,0,1426,1440.000000,93,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,93,0,-1.000000,600.050000,hint,nbiot,60 +on7,0,0,25,1,0,120,1502.021280,93,1,9174.620640,627.297052,hint,nbiot,60 +on12,0,0,25,1,0,218,1501.210000,93,1,12932.010320,639.490500,hint,nbiot,60 +on4,0,0,24,1,0,244,1440.000000,93,0,15093.010320,602.013208,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,60,1440.010320,93,0,5632.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,240,1502.289680,93,2,18444.010320,665.929288,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,93,0,-1.000000,752.230496,hint,nbiot,60 +on8,0,0,24,0,0,1422,1440.000000,93,0,-1.000000,588.350000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1407,1440.000000,94,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1430,1440.000000,94,0,-1.000000,583.150000,hint,nbiot,60 +on2,0,0,24,0,0,1373,1440.000000,94,0,-1.000000,620.850000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1415,1440.000000,94,0,-1.000000,628.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,94,0,-1.000000,667.650000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,26,1,0,540,1561.500000,95,4,35649.010320,697.386584,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,26,1,0,649,1561.179360,95,2,40887.010320,673.857912,hint,nbiot,60 +on9,0,0,24,0,0,1433,1440.000000,95,0,-1.000000,581.200000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,95,0,-1.000000,848.274080,hint,nbiot,60 +on4,0,0,24,1,0,0,1440.010320,95,0,73.010320,602.010836,hint,nbiot,60 +on3,0,0,25,1,0,658,1501.000000,95,1,38715.010320,638.366292,hint,nbiot,60 +on2,0,0,25,1,0,477,1502.959040,95,1,29433.010320,643.070032,hint,nbiot,60 +on8,0,0,25,1,0,360,1502.620640,95,1,22238.620640,665.476672,hint,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,95,0,-1.000000,587.050000,hint,nbiot,60 +on11,0,0,28,1,0,774,1680.910320,95,7,44338.010320,737.357212,hint,nbiot,60 +on7,0,0,24,0,0,1398,1440.000000,95,0,-1.000000,604.600000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,76,1501.399680,96,1,6942.010320,627.431080,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,720,1440.010320,96,0,44433.010320,602.010836,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,1203,1440.010320,96,0,74435.010320,602.010836,hint,nbiot,60 +on4,0,0,24,1,0,1095,1440.969360,96,0,67094.010320,602.400952,hint,nbiot,60 +on7,0,0,26,1,0,176,1560.310320,96,3,10244.010320,663.130628,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,0,1440.369680,96,0,2383.010320,602.407872,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,96,0,-1.000000,758.060372,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,1176,1500.310320,96,2,70369.010320,627.424128,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,578.600000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,459,1501.469360,97,2,29205.010320,640.244244,hint,nbiot,60 +on5,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,577.300000,hint,nbiot,60 +on8,0,0,25,1,0,314,1502.259040,97,1,23280.010320,652.143532,hint,nbiot,60 +on2,0,0,25,1,0,267,1501.010320,97,1,19115.010320,674.835836,hint,nbiot,60 +on9,0,0,24,0,0,1439,1440.000000,97,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,97,0,-1.000000,735.577080,hint,nbiot,60 +on7,0,0,24,0,0,1437,1440.000000,97,0,-1.000000,578.600000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,26,1,0,454,1562.459360,97,3,28618.010320,691.550244,hint,nbiot,60 +on4,0,0,26,1,0,561,1561.620640,97,3,35817.010320,709.031464,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1436,1440.000000,98,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,1,0,786,1440.010320,98,0,47187.010320,602.010836,hint,nbiot,60 +on11,0,0,24,0,0,1411,1440.000000,98,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1417,1440.000000,98,0,-1.000000,591.600000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,1382,1440.000000,98,0,84990.010000,602.006500,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,98,0,-1.000000,722.919916,hint,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,98,0,-1.000000,600.050000,hint,nbiot,60 +on3,0,0,24,1,0,1071,1440.010320,98,0,68214.010320,641.010836,hint,nbiot,60 +on1,0,0,26,1,0,149,1560.640960,99,3,8467.010320,680.429592,hint,nbiot,60 +on8,0,0,25,1,0,0,1500.379680,99,1,842.620640,626.373496,hint,nbiot,60 +on11,0,0,26,1,0,546,1561.379360,99,2,35852.620640,705.366660,hint,nbiot,60 +on2,0,0,25,1,0,810,1501.310320,99,1,52614.010320,686.850836,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,180,1441.010320,99,0,13012.010320,640.760836,hint,nbiot,60 +on4,0,0,25,1,0,902,1501.220320,99,1,57583.010320,686.301336,hint,nbiot,60 +on5,0,0,25,1,0,689,1500.010320,99,1,45725.010320,636.605836,hint,nbiot,60 +on10,0,0,24,1,0,489,1441.010320,99,0,31070.010320,616.320836,hint,nbiot,60 +on3,0,0,24,0,0,1436,1440.000000,99,0,-1.000000,617.600000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,99,0,-1.000000,876.010828,hint,nbiot,60 +on9,0,0,24,0,0,1428,1440.000000,99,0,-1.000000,584.450000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1401,1440.000000,100,0,-1.000000,602.000000,hint,nbiot,60 +on2,0,0,24,1,0,1221,1440.010320,100,0,77873.010320,628.010836,hint,nbiot,60 +on8,0,0,24,1,0,1183,1441.000000,100,0,74132.010320,652.450000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,100,0,-1.000000,745.683540,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,195,1440.989680,100,0,12812.010320,602.409288,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,129,1440.010320,100,0,8835.010320,602.010836,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,101,0,-1.000000,664.426832,hint,nbiot,60 +on7,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1416,1440.000000,101,0,-1.000000,626.050000,hint,nbiot,60 +on9,0,0,25,1,0,448,1502.600000,101,1,32092.620640,648.711832,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1423,1440.000000,101,0,-1.000000,654.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1399,1440.000000,102,0,-1.000000,631.900000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,737,1440.000000,102,0,46032.010320,602.006708,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,102,0,-1.000000,654.656708,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,102,0,-1.000000,600.700000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,1129,1500.200320,103,1,69093.010320,626.093336,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,728,1443.359360,103,0,46804.010320,614.673868,hint,nbiot,60 +on5,0,0,26,1,0,941,1561.700000,103,3,61144.010320,700.339584,hint,nbiot,60 +on2,0,0,27,1,0,1111,1621.610320,103,4,65674.010320,754.197212,hint,nbiot,60 +on4,0,0,25,1,0,878,1501.969360,103,1,55513.010320,663.077452,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,103,0,-1.000000,858.440496,hint,nbiot,60 +on8,0,0,26,1,0,1058,1561.569360,103,2,64377.010320,682.224244,hint,nbiot,60 +on3,0,0,24,0,0,1422,1440.000000,103,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1415,1440.000000,103,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,1,0,828,1441.380000,103,0,52631.010320,619.322000,hint,nbiot,60 +on11,0,0,25,1,0,819,1500.020640,103,1,49077.010320,626.028172,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,26,1,0,967,1562.600000,104,3,63669.010320,761.136376,hint,nbiot,60 +on4,0,0,27,1,0,1120,1620.969360,104,3,64873.010320,698.313620,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,104,0,-1.000000,800.173664,hint,nbiot,60 +on8,0,0,24,0,0,1403,1440.000000,104,0,-1.000000,600.700000,hint,nbiot,60 +on12,0,0,25,1,0,999,1501.000000,104,1,60750.010320,639.217792,hint,nbiot,60 +on7,0,0,26,1,0,1160,1560.610320,104,3,71644.010320,686.637420,hint,nbiot,60 +on6,0,0,24,1,0,904,1441.000000,104,0,55914.010320,604.623208,hint,nbiot,60 +on10,0,0,25,1,0,379,1501.369040,104,1,24598.620640,626.762740,hint,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,104,0,-1.000000,582.500000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1434,1440.000000,104,0,-1.000000,580.550000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,683,1500.020320,105,1,41918.010320,626.021336,hint,nbiot,60 +on6,0,0,25,1,0,540,1502.610320,105,1,35647.620640,703.569252,hint,nbiot,60 +on9,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,615.650000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,105,0,-1.000000,664.426832,hint,nbiot,60 +on10,0,0,24,0,0,1425,1440.000000,105,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1422,1440.000000,105,0,-1.000000,588.350000,hint,nbiot,60 +on1,0,0,26,1,0,1016,1561.310320,106,3,59403.010320,700.840628,hint,nbiot,60 +on5,0,0,24,1,0,780,1440.969360,106,0,49192.010320,602.400952,hint,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,106,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,26,1,0,1083,1560.989680,106,2,62972.620640,650.617496,hint,nbiot,60 +on8,0,0,24,0,0,1430,1440.000000,106,0,-1.000000,583.150000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1416,1440.000000,106,0,-1.000000,592.250000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,25,1,0,891,1500.969360,106,1,53523.010320,626.407452,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1407,1440.000000,106,0,-1.000000,598.100000,hint,nbiot,60 +on10,0,0,26,1,0,903,1561.969360,106,4,57012.010320,699.940536,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,106,0,-1.000000,767.817080,hint,nbiot,60 +on1,0,0,24,0,0,1414,1440.000000,107,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,107,0,-1.000000,654.656708,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,494,1440.000000,107,0,30537.010320,602.006708,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1412,1440.000000,107,0,-1.000000,594.850000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1416,1440.000000,107,0,-1.000000,592.250000,hint,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,108,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,374,1500.310320,108,2,25933.010320,656.024128,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,108,0,-1.000000,666.376832,hint,nbiot,60 +on10,0,0,24,0,0,1405,1440.000000,108,0,-1.000000,599.400000,hint,nbiot,60 +on9,0,0,24,0,0,1433,1440.000000,108,0,-1.000000,581.200000,hint,nbiot,60 +on8,0,0,24,1,0,366,1441.959040,108,0,24593.010320,602.803532,hint,nbiot,60 +on7,0,0,24,0,0,1416,1440.000000,109,0,-1.000000,592.250000,hint,nbiot,60 +on11,0,0,26,1,0,219,1562.210000,109,2,11823.030640,676.233792,hint,nbiot,60 +on10,0,0,25,1,0,285,1501.000000,109,1,16028.010320,638.366292,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,109,0,-1.000000,770.096916,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,60,1440.010320,109,0,6930.010320,602.010836,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1406,1440.000000,109,0,-1.000000,598.750000,hint,nbiot,60 +on3,0,0,28,1,0,401,1680.630320,109,5,23535.010320,751.161504,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.650000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,110,0,-1.000000,740.120372,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,591,1500.969360,110,1,34054.010320,629.007452,hint,nbiot,60 +on3,0,0,24,0,0,1408,1440.000000,110,0,-1.000000,597.450000,hint,nbiot,60 +on10,0,0,25,1,0,749,1500.020640,110,1,47701.010320,636.421672,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,480,1441.010320,110,0,31832.010320,640.104336,hint,nbiot,60 +on1,0,0,26,1,0,664,1560.500640,110,3,39596.010320,664.064964,hint,nbiot,60 +on9,0,0,24,1,0,62,1440.989680,110,0,6164.010320,602.409288,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,111,0,-1.000000,717.103664,hint,nbiot,60 +on4,0,0,25,1,0,480,1501.641280,111,1,30155.620640,664.181636,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,628.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,798,1440.010320,111,0,47500.010320,602.010836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1413,1440.000000,111,0,-1.000000,594.200000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,596,1502.979360,111,1,34365.010320,640.211660,hint,nbiot,60 +on6,0,0,24,1,0,966,1440.010320,111,0,60265.010320,602.010836,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,1397,1440.000000,112,0,82864.010000,602.006500,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,112,0,-1.000000,746.586624,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,48,1440.989680,112,0,3710.010320,617.352580,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1417,1440.000000,112,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1404,1440.000000,112,0,-1.000000,600.050000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1416,1440.000000,112,0,-1.000000,592.250000,hint,nbiot,60 +on5,0,0,24,0,0,1410,1440.000000,112,0,-1.000000,596.150000,hint,nbiot,60 +on7,0,0,25,1,0,337,1501.000000,112,1,22631.010320,628.363416,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,878,1500.220320,113,1,53406.010320,626.101336,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1376,1440.000000,113,0,-1.000000,654.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1409,1440.000000,113,0,-1.000000,654.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,113,0,-1.000000,692.363416,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,788,1441.000000,113,0,50046.010320,610.466708,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1401,1440.000000,114,0,-1.000000,602.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,1040,1500.010320,114,1,66052.010320,644.860836,hint,nbiot,60 +on6,0,0,24,1,0,360,1441.969360,114,0,22286.010320,629.457660,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,689,1501.000000,114,1,46521.010320,652.400000,hint,nbiot,60 +on11,0,0,25,1,0,818,1500.969360,114,1,50271.010320,626.407452,hint,nbiot,60 +on10,0,0,25,1,0,402,1502.320640,114,2,28487.010320,699.994964,hint,nbiot,60 +on3,0,0,25,1,0,496,1500.030960,114,1,32016.010320,626.032300,hint,nbiot,60 +on1,0,0,25,1,0,816,1501.600000,114,2,52230.010320,694.233292,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,114,0,-1.000000,815.157204,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,28,1,0,588,1681.600000,115,4,32462.010320,748.747460,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,115,0,-1.000000,873.090248,hint,nbiot,60 +on10,0,0,27,1,0,396,1623.120320,115,3,26237.010320,810.382504,hint,nbiot,60 +on12,0,0,25,1,0,474,1501.000000,115,1,31604.010320,638.366292,hint,nbiot,60 +on5,0,0,25,0,0,1459,1500.000000,115,1,-1.000000,612.993084,hint,nbiot,60 +on2,0,0,24,0,0,1416,1440.000000,115,0,-1.000000,592.250000,hint,nbiot,60 +on8,0,0,30,1,0,647,1803.540320,115,6,36635.010320,863.368380,hint,nbiot,60 +on11,0,0,25,1,0,359,1502.979360,115,1,22859.010320,677.904952,hint,nbiot,60 +on6,0,0,25,1,0,180,1502.359040,115,1,13712.620640,676.421824,hint,nbiot,60 +on3,0,0,25,1,0,273,1501.989680,115,1,18391.010320,650.910456,hint,nbiot,60 +on9,0,0,25,1,0,239,1502.300000,115,2,16202.010320,672.269668,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,1324,1500.010320,116,1,80551.010320,639.010836,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,116,0,-1.000000,722.790124,hint,nbiot,60 +on2,0,0,24,0,0,1428,1440.000000,116,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1418,1440.000000,116,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,1,0,607,1440.989680,116,0,39381.010320,602.402580,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,683,1453.000000,116,1,46249.010320,623.456708,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1415,1440.000000,116,0,-1.000000,592.900000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,900,1440.010320,117,0,55446.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1406,1440.000000,117,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,117,0,-1.000000,654.006708,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1427,1440.000000,117,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1410,1440.000000,117,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,1212,1440.010320,118,0,73803.010320,602.010836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1327,1440.000000,118,0,81998.010320,602.013208,hint,nbiot,60 +on11,0,0,24,0,0,1405,1440.000000,118,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,1,0,180,1440.020640,118,0,12078.010320,602.021672,hint,nbiot,60 +on7,0,0,24,0,0,1415,1440.000000,118,0,-1.000000,592.900000,hint,nbiot,60 +on2,0,0,25,0,0,1436,1500.300000,118,2,-1.000000,628.063292,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,118,0,-1.000000,768.460372,hint,nbiot,60 +on5,0,0,25,1,0,360,1501.610320,118,1,24524.620640,626.859252,hint,nbiot,60 +on12,0,0,24,1,0,540,1440.010320,118,0,35520.010320,602.010836,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,1218,1440.969680,119,0,75501.010320,603.037872,hint,nbiot,60 +on8,0,0,26,1,0,1110,1561.600000,119,3,70916.010320,716.334668,hint,nbiot,60 +on2,0,0,24,1,0,476,1440.010320,119,0,29791.010320,641.010836,hint,nbiot,60 +on9,0,0,24,1,0,360,1440.010320,119,0,23285.010320,602.010836,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,977,1441.000000,119,0,64107.010320,694.323208,hint,nbiot,60 +on7,0,0,26,1,0,1282,1620.569360,119,3,79901.010320,750.953952,hint,nbiot,60 +on6,0,0,29,0,0,1521,1741.620000,119,5,-1.000000,775.868752,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,119,0,-1.000000,933.150248,hint,nbiot,60 +on11,0,0,26,1,0,1394,1606.810000,119,4,85378.010000,695.568584,hint,nbiot,60 +on10,0,0,25,1,0,1120,1501.000000,119,1,66851.010320,639.608000,hint,nbiot,60 +on3,0,0,25,0,0,1459,1500.000000,119,1,-1.000000,613.000000,hint,nbiot,60 +on1,0,0,28,1,0,1317,1681.230640,119,4,77389.010320,745.181548,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,607,1441.989680,120,0,37573.010320,640.112580,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,26,1,0,704,1561.369040,120,2,43040.620640,650.769240,hint,nbiot,60 +on7,0,0,25,1,0,529,1500.330960,120,2,35700.010320,657.989092,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1420,1440.000000,120,0,-1.000000,615.650000,hint,nbiot,60 +on1,0,0,24,1,0,491,1440.030640,120,0,31894.010320,602.025464,hint,nbiot,60 +on6,0,0,25,1,0,780,1502.630960,120,1,49049.620640,703.967508,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1432,1440.000000,120,0,-1.000000,581.850000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,120,0,-1.000000,726.230496,hint,nbiot,60 +on8,0,0,25,1,0,263,1500.010320,121,1,19610.010320,642.260836,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1398,1440.000000,121,0,-1.000000,630.600000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,1329,1440.010320,121,0,80183.010320,602.010836,hint,nbiot,60 +on3,0,0,24,1,0,660,1441.989680,121,0,39731.010320,602.815996,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,120,1441.010320,121,0,10384.010320,630.367544,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,820,1500.010320,121,1,50746.010320,639.465836,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,121,0,-1.000000,790.430372,hint,nbiot,60 +on4,0,0,24,1,0,1265,1440.000000,121,0,76644.010320,602.006708,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1404,1440.000000,122,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,1,0,540,1440.010320,122,0,33642.010320,602.010836,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,122,0,-1.000000,691.070124,hint,nbiot,60 +on7,0,0,24,0,0,1433,1440.000000,122,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1397,1440.000000,122,0,-1.000000,605.250000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1434,1440.000000,122,0,-1.000000,580.550000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,120,1440.020640,122,0,8078.010320,602.021672,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,318,1442.959040,123,0,20879.010320,640.513532,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,26,1,0,908,1560.310320,123,3,51842.010320,663.130628,hint,nbiot,60 +on9,0,0,26,1,0,341,1560.310320,123,3,23024.010320,679.374128,hint,nbiot,60 +on5,0,0,24,1,0,795,1440.969360,123,0,48032.010320,602.400952,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,1293,1440.989680,123,0,80322.010320,629.702580,hint,nbiot,60 +on10,0,0,24,1,0,431,1441.979360,123,0,26814.010320,602.811868,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,123,0,-1.000000,775.233788,hint,nbiot,60 +on1,0,0,24,0,0,1412,1440.000000,124,1,-1.000000,593.556500,hint,nbiot,60 +on2,0,0,25,1,0,751,1518.010320,124,2,49561.010320,682.675420,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,26,1,0,653,1563.290000,124,3,40512.010320,713.989208,hint,nbiot,60 +on5,0,0,24,1,0,600,1441.969360,124,0,37093.010320,617.744244,hint,nbiot,60 +on10,0,0,25,1,0,1362,1501.310320,124,1,81373.010320,676.580836,hint,nbiot,60 +on9,0,0,25,1,0,664,1503.289680,124,2,44014.010320,729.885664,hint,nbiot,60 +on6,0,0,24,0,0,1404,1440.000000,124,0,-1.000000,600.050000,hint,nbiot,60 +on8,0,0,24,1,0,0,1440.010320,124,0,3087.010320,602.010836,hint,nbiot,60 +on3,0,0,25,1,0,1177,1501.620640,124,1,73885.620640,704.206672,hint,nbiot,60 +on7,0,0,25,1,0,899,1500.220320,124,1,51218.010320,626.101336,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,124,0,-1.000000,886.007204,hint,nbiot,60 +on4,0,0,24,0,0,1431,1440.000000,124,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,1,0,1242,1440.010320,125,0,78238.010320,620.210836,hint,nbiot,60 +on2,0,0,25,1,0,566,1500.969360,125,1,37616.010320,669.300952,hint,nbiot,60 +on8,0,0,24,0,0,1398,1440.000000,125,0,-1.000000,604.600000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1439,1440.000000,125,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,1,0,638,1459.510320,125,2,40243.210320,631.904128,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,125,0,-1.000000,744.636832,hint,nbiot,60 +on12,0,0,24,0,0,1404,1440.000000,126,0,-1.000000,600.700000,hint,nbiot,60 +on9,0,0,24,1,0,424,1441.000000,126,0,25668.010320,612.800000,hint,nbiot,60 +on11,0,0,24,1,0,799,1441.000000,126,0,48318.010320,602.413416,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,26,1,0,334,1560.310320,126,2,24403.010320,748.540836,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,126,0,-1.000000,862.190372,hint,nbiot,60 +on6,0,0,24,1,0,607,1440.989680,126,0,36322.010320,602.402580,hint,nbiot,60 +on3,0,0,24,1,0,130,1442.958720,126,0,8477.010320,603.203612,hint,nbiot,60 +on2,0,0,24,0,0,1408,1440.000000,126,0,-1.000000,597.450000,hint,nbiot,60 +on5,0,0,25,1,0,718,1500.010320,126,1,46190.010320,644.860836,hint,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,126,0,-1.000000,598.100000,hint,nbiot,60 +on4,0,0,24,1,0,0,1440.969360,127,0,1414.010320,602.400952,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,127,0,-1.000000,817.477080,hint,nbiot,60 +on9,0,0,25,1,0,1006,1501.269360,127,1,62282.010320,660.314244,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,472,1440.010320,127,0,28901.010320,607.860836,hint,nbiot,60 +on11,0,0,26,1,0,1119,1560.510320,127,3,67199.010320,664.302212,hint,nbiot,60 +on10,0,0,25,1,0,38,1500.310320,127,2,5175.010320,665.124128,hint,nbiot,60 +on2,0,0,24,1,0,1286,1440.010320,127,0,79594.010320,641.010836,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,554,1440.000000,127,0,32732.010320,602.006708,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,955,1441.989680,127,0,58538.010320,618.662372,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,614,1440.000000,128,0,39033.010320,602.006708,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,1324,1440.989680,128,0,80371.010320,602.402580,hint,nbiot,60 +on4,0,0,24,1,0,960,1440.010320,128,0,60955.010320,602.010836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1410,1440.000000,128,0,-1.000000,596.150000,hint,nbiot,60 +on2,0,0,24,1,0,303,1440.010320,128,0,19521.010320,602.010836,hint,nbiot,60 +on12,0,0,24,1,0,1056,1440.010320,128,0,66318.010320,618.260836,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,128,0,-1.000000,742.433540,hint,nbiot,60 +on1,0,0,24,0,0,1380,1440.000000,129,0,-1.000000,649.450000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,129,0,-1.000000,826.824288,hint,nbiot,60 +on4,0,0,25,1,0,1283,1500.010320,129,1,80175.010320,640.505836,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,26,1,0,732,1561.010640,129,2,45301.620640,656.489088,hint,nbiot,60 +on11,0,0,27,1,0,972,1621.020640,129,3,57103.030640,677.677964,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.650000,hint,nbiot,60 +on3,0,0,24,0,0,1426,1440.000000,129,0,-1.000000,585.750000,hint,nbiot,60 +on10,0,0,24,1,0,16,1440.989680,129,0,2377.010320,602.402580,hint,nbiot,60 +on5,0,0,27,1,0,1026,1621.000000,129,4,59252.010320,710.598084,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,25,1,0,733,1503.310320,129,2,47929.010320,741.197420,hint,nbiot,60 +on8,0,0,24,0,0,1407,1440.000000,130,0,-1.000000,598.100000,hint,nbiot,60 +on3,0,0,25,1,0,975,1500.010320,130,1,58954.010320,665.017336,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,600.700000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,770,1501.000000,130,1,47454.010320,638.366292,hint,nbiot,60 +on10,0,0,25,1,0,691,1501.969360,130,1,45269.010320,639.995744,hint,nbiot,60 +on4,0,0,28,1,0,966,1681.520320,130,5,57244.010320,756.334212,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1418,1440.000000,130,0,-1.000000,591.600000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,130,0,-1.000000,826.406832,hint,nbiot,60 +on1,0,0,24,0,0,1403,1440.000000,130,0,-1.000000,600.700000,hint,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,130,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1408,1440.000000,131,0,-1.000000,597.450000,hint,nbiot,60 +on7,0,0,24,0,0,1417,1440.000000,131,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1426,1440.000000,131,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1412,1440.000000,131,0,-1.000000,629.300000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1405,1440.000000,131,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,131,0,-1.000000,665.700000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,132,0,-1.000000,724.870124,hint,nbiot,60 +on4,0,0,24,0,0,1411,1440.000000,132,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1409,1440.000000,132,0,-1.000000,597.450000,hint,nbiot,60 +on11,0,0,24,0,0,1415,1440.000000,132,0,-1.000000,592.900000,hint,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,132,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,25,1,0,1046,1501.310320,132,2,66007.010320,686.974128,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,1031,1440.030640,132,0,64102.010320,602.025464,hint,nbiot,60 +on10,0,0,24,0,0,1420,1440.000000,132,0,-1.000000,589.650000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1439,1440.000000,133,0,-1.000000,577.300000,hint,nbiot,60 +on10,0,0,24,1,0,540,1440.010320,133,0,35733.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1377,1440.000000,133,0,-1.000000,642.950000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,153,1501.269360,133,2,12444.010320,644.064244,hint,nbiot,60 +on3,0,0,24,1,0,458,1459.000000,133,1,29382.010320,609.613208,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,104,1502.969360,133,1,7416.010320,677.965952,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,133,0,-1.000000,809.677080,hint,nbiot,60 +on9,0,0,24,1,0,928,1440.000000,133,0,57743.010320,624.756708,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,245,1561.510000,133,3,14962.010320,663.617208,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1402,1440.000000,134,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1401,1440.000000,134,0,-1.000000,626.050000,hint,nbiot,60 +on6,0,0,25,1,0,273,1500.210320,134,1,18709.010320,641.690836,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1364,1440.000000,134,0,-1.000000,627.350000,hint,nbiot,60 +on5,0,0,24,0,0,1404,1440.000000,134,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1410,1440.000000,134,0,-1.000000,596.150000,hint,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,134,0,-1.000000,599.400000,hint,nbiot,60 +on8,0,0,24,0,0,1439,1440.000000,134,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,25,1,0,600,1500.630960,134,1,36420.620640,626.467508,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,134,0,-1.000000,815.486832,hint,nbiot,60 +on12,0,0,24,0,0,1419,1440.000000,135,0,-1.000000,590.950000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,135,0,-1.000000,788.623788,hint,nbiot,60 +on6,0,0,25,1,0,315,1501.489680,135,2,20290.010320,642.410580,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,416,1562.300000,135,3,22610.010320,691.239916,hint,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,135,0,-1.000000,596.800000,hint,nbiot,60 +on7,0,0,24,1,0,240,1440.990000,135,0,14476.010320,602.415916,hint,nbiot,60 +on10,0,0,24,1,0,921,1441.000000,135,0,59214.010320,654.400000,hint,nbiot,60 +on1,0,0,24,0,0,1432,1440.000000,135,0,-1.000000,581.850000,hint,nbiot,60 +on8,0,0,24,0,0,1424,1440.000000,135,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,25,1,0,1056,1501.010320,135,1,65600.010320,707.017336,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,1221,1500.010320,136,1,76998.010320,686.460836,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,583.150000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1423,1440.000000,136,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1430,1440.000000,136,0,-1.000000,617.600000,hint,nbiot,60 +on1,0,0,24,0,0,1407,1440.000000,136,0,-1.000000,598.100000,hint,nbiot,60 +on4,0,0,24,1,0,994,1440.989680,136,0,62381.010320,622.552580,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,136,0,-1.000000,741.373416,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1336,1485.300000,137,1,-1.000000,700.720000,hint,nbiot,60 +on8,0,0,25,1,0,686,1500.010320,137,1,43915.010320,639.010836,hint,nbiot,60 +on6,0,0,25,1,0,1078,1500.210000,137,1,63947.010320,677.440500,hint,nbiot,60 +on7,0,0,24,1,0,610,1442.000000,137,0,38342.010320,640.123416,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,416,1501.300000,137,2,28446.010320,666.813292,hint,nbiot,60 +on10,0,0,25,1,0,151,1500.010320,137,1,11600.010320,633.810836,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,137,0,-1.000000,831.016996,hint,nbiot,60 +on11,0,0,24,1,0,1380,1440.000000,137,0,85307.010000,602.006500,hint,nbiot,60 +on12,0,0,25,1,0,269,1501.010320,137,1,20214.010320,650.720836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,398,1503.969680,137,1,23689.010320,666.627704,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,540,1440.010320,138,0,35858.010320,602.010836,hint,nbiot,60 +on5,0,0,24,1,0,671,1440.030640,138,0,40719.010320,602.025464,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1400,1440.000000,138,0,-1.000000,638.400000,hint,nbiot,60 +on4,0,0,24,1,0,732,1441.959040,138,0,45857.010320,602.803532,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,27,1,0,914,1620.820320,138,5,55200.010320,700.327920,hint,nbiot,60 +on2,0,0,25,1,0,819,1502.479360,138,1,53677.010320,680.311452,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,138,0,-1.000000,759.373788,hint,nbiot,60 +on11,0,0,26,1,0,772,1562.779360,138,4,47679.010320,687.973036,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,139,0,-1.000000,781.070164,hint,nbiot,60 +on3,0,0,24,1,0,1380,1440.000000,139,0,83379.010000,602.006500,hint,nbiot,60 +on1,0,0,25,1,0,1241,1501.300000,139,2,78727.010320,676.563292,hint,nbiot,60 +on12,0,0,24,0,0,1428,1440.000000,139,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1383,1440.000000,139,0,-1.000000,629.950000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,1,0,977,1441.010320,139,0,58146.010320,602.424252,hint,nbiot,60 +on5,0,0,25,1,0,1171,1501.948720,139,1,72112.010320,634.599404,hint,nbiot,60 +on10,0,0,24,1,0,1313,1441.000000,139,0,79871.010320,620.600000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1427,1440.000000,139,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,140,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,1003,1440.000000,140,0,63213.010320,618.906708,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1428,1440.000000,140,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,25,1,0,191,1500.310320,140,2,13366.010320,643.674128,hint,nbiot,60 +on3,0,0,24,1,0,76,1444.969040,140,0,7084.010320,646.517740,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,140,0,-1.000000,734.646956,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,162,1500.979360,140,1,10463.010320,626.411452,hint,nbiot,60 +on4,0,0,24,0,0,1432,1440.000000,140,0,-1.000000,582.500000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1423,1440.000000,141,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.650000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,141,0,-1.000000,640.363416,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,974,1440.000000,141,0,58451.010320,602.006708,hint,nbiot,60 +on11,0,0,24,1,0,120,1440.010320,141,0,10079.010320,602.010836,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,26,1,0,1015,1560.310320,142,3,63239.010320,702.130628,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,142,0,-1.000000,599.400000,hint,nbiot,60 +on3,0,0,24,0,0,1416,1440.000000,142,0,-1.000000,592.250000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,300,1440.010320,142,0,20149.010320,602.010836,hint,nbiot,60 +on5,0,0,26,1,0,1004,1562.169040,142,2,60920.010320,677.544032,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,142,0,-1.000000,734.503540,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1410,1440.000000,143,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1396,1440.000000,143,0,-1.000000,654.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,143,0,-1.000000,733.600248,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,498,1443.338400,143,0,32416.010320,634.158568,hint,nbiot,60 +on6,0,0,24,0,0,1407,1440.000000,143,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1432,1440.000000,143,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,25,1,0,596,1520.600000,143,3,37430.010320,686.876584,hint,nbiot,60 +on5,0,0,25,1,0,538,1500.979680,143,1,33827.010320,627.964872,hint,nbiot,60 +on6,0,0,25,1,0,676,1500.000000,144,1,41294.010320,626.019708,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,705,1488.210320,144,1,45904.010320,639.685836,hint,nbiot,60 +on12,0,0,24,1,0,0,1440.010320,144,0,572.010320,602.010836,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,144,0,-1.000000,725.527040,hint,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,144,0,-1.000000,582.500000,hint,nbiot,60 +on7,0,0,24,1,0,600,1441.010320,144,0,38588.010320,610.470836,hint,nbiot,60 +on5,0,0,24,0,0,1409,1440.000000,144,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1388,1440.000000,145,0,-1.000000,654.000000,hint,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,145,0,-1.000000,594.200000,hint,nbiot,60 +on12,0,0,24,0,0,1434,1440.000000,145,0,-1.000000,580.550000,hint,nbiot,60 +on8,0,0,24,0,0,1409,1440.000000,145,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,145,0,-1.000000,769.090248,hint,nbiot,60 +on5,0,0,24,1,0,908,1440.030640,145,0,56116.010320,602.025464,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1418,1440.000000,145,1,-1.000000,576.656500,hint,nbiot,60 +on4,0,0,25,1,0,936,1500.320640,145,2,59090.010320,641.734964,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,433,1441.989680,145,0,25481.010320,612.812580,hint,nbiot,60 +on9,0,0,24,1,0,1020,1440.010320,145,0,61600.010320,602.010836,hint,nbiot,60 +on2,0,0,24,0,0,1426,1440.000000,145,0,-1.000000,585.750000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,146,0,-1.000000,799.893748,hint,nbiot,60 +on5,0,0,24,0,0,1432,1440.000000,146,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,240,1440.010320,146,0,17358.010320,602.010836,hint,nbiot,60 +on6,0,0,27,1,0,1248,1620.910320,146,5,77066.010320,726.344004,hint,nbiot,60 +on7,0,0,26,1,0,1107,1561.010320,146,2,66852.030640,656.267336,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,360,1440.010320,146,0,24054.010320,602.010836,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,1148,1559.220000,146,2,70227.010320,724.567376,hint,nbiot,60 +on3,0,0,24,0,0,1413,1440.000000,146,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,1206,1560.969360,146,2,72244.010320,673.150536,hint,nbiot,60 +on4,0,0,24,1,0,969,1440.010320,147,0,58816.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1416,1440.000000,147,0,-1.000000,592.250000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,147,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1423,1440.000000,147,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,609,1440.020640,147,0,36859.010320,602.021672,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,147,0,-1.000000,673.520124,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,99,1501.979680,148,1,7944.010320,664.128288,hint,nbiot,60 +on10,0,0,27,1,0,434,1621.979360,148,3,24304.010320,701.643036,hint,nbiot,60 +on8,0,0,25,1,0,10,1501.020640,148,1,1077.620640,646.389880,hint,nbiot,60 +on3,0,0,25,1,0,34,1502.300000,148,2,4541.010320,682.026584,hint,nbiot,60 +on6,0,0,26,1,0,264,1562.289680,148,2,17425.010320,709.928956,hint,nbiot,60 +on5,0,0,27,1,0,463,1622.289680,148,4,27387.010320,699.888872,hint,nbiot,60 +on7,0,0,26,1,0,237,1563.289680,148,3,12055.010320,715.295164,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,148,0,-1.000000,851.194036,hint,nbiot,60 +on12,0,0,25,1,0,713,1500.010320,148,1,41534.010320,631.217336,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,27,1,0,320,1621.610320,148,3,18998.010320,729.633504,hint,nbiot,60 +on4,0,0,25,1,0,1053,1500.010320,149,2,66708.010320,659.810836,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.650000,hint,nbiot,60 +on6,0,0,25,1,0,159,1500.010320,149,1,10060.010320,626.017336,hint,nbiot,60 +on12,0,0,25,1,0,98,1501.010320,149,1,7063.010320,630.577336,hint,nbiot,60 +on1,0,0,25,1,0,350,1502.269360,149,1,21315.010320,664.490952,hint,nbiot,60 +on3,0,0,24,0,0,1423,1440.000000,149,0,-1.000000,624.750000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,149,0,-1.000000,819.700704,hint,nbiot,60 +on10,0,0,25,1,0,398,1502.179360,149,1,24316.010320,642.101452,hint,nbiot,60 +on7,0,0,24,1,0,18,1442.020640,149,0,1781.010320,648.191672,hint,nbiot,60 +on9,0,0,24,0,0,1424,1440.000000,149,0,-1.000000,623.450000,hint,nbiot,60 +on5,0,0,28,1,0,445,1682.279360,149,6,26967.620640,805.706744,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1419,1440.000000,150,0,-1.000000,590.300000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,19,1440.989680,150,0,729.010320,602.402580,hint,nbiot,60 +on2,0,0,24,0,0,1400,1440.000000,150,0,-1.000000,631.250000,hint,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,150,0,-1.000000,591.600000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,150,0,-1.000000,729.420124,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1413,1440.000000,150,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,1,0,551,1440.000000,150,0,35331.010320,602.006708,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,120,1440.010320,150,0,9475.010320,602.010836,hint,nbiot,60 +on7,0,0,27,1,0,1016,1620.310320,151,4,60560.010320,712.265296,hint,nbiot,60 +on8,0,0,26,1,0,702,1562.000000,151,2,45772.010320,694.596168,hint,nbiot,60 +on11,0,0,27,1,0,926,1622.699680,151,3,55077.010320,689.607788,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1388,1440.000000,151,0,-1.000000,611.100000,hint,nbiot,60 +on2,0,0,24,1,0,670,1441.000000,151,0,41604.020640,608.893292,hint,nbiot,60 +on10,0,0,26,1,0,828,1563.310320,151,2,51257.010320,749.245588,hint,nbiot,60 +on9,0,0,27,1,0,804,1622.889680,151,6,48642.010320,735.742164,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,151,0,-1.000000,843.053748,hint,nbiot,60 +on12,0,0,24,0,0,1425,1440.000000,151,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1418,1440.000000,151,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,26,1,0,240,1563.310000,152,2,15753.010320,746.093584,hint,nbiot,60 +on8,0,0,24,1,0,0,1442.010320,152,0,3128.010320,660.140836,hint,nbiot,60 +on12,0,0,24,1,0,1025,1440.000000,152,0,61395.010320,602.006708,hint,nbiot,60 +on11,0,0,28,1,0,418,1682.379360,152,5,27558.010320,813.611120,hint,nbiot,60 +on10,0,0,28,1,0,394,1681.600000,152,4,21536.010320,748.539460,hint,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,152,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,26,1,0,205,1563.289680,152,2,11855.010320,696.685456,hint,nbiot,60 +on5,0,0,26,1,0,476,1560.520320,152,3,31433.010320,663.214628,hint,nbiot,60 +on3,0,0,26,1,0,399,1561.969360,152,2,21976.010320,672.770536,hint,nbiot,60 +on4,0,0,25,1,0,97,1502.000000,152,1,8292.010320,678.019792,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,152,0,-1.000000,885.460372,hint,nbiot,60 +on1,0,0,25,1,0,634,1500.210320,153,1,40159.010320,630.640836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,840,1501.310320,153,2,55110.010320,671.634128,hint,nbiot,60 +on11,0,0,24,1,0,804,1474.030640,153,1,50481.010320,635.775464,hint,nbiot,60 +on7,0,0,24,1,0,971,1442.000000,153,0,60175.010320,645.959792,hint,nbiot,60 +on4,0,0,25,1,0,318,1502.000000,153,1,22587.010320,675.556708,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,153,0,-1.000000,891.960164,hint,nbiot,60 +on6,0,0,24,1,0,1380,1440.000000,153,0,84525.010000,602.006500,hint,nbiot,60 +on2,0,0,25,1,0,1116,1500.010320,153,1,70531.010320,657.860836,hint,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,153,0,-1.000000,595.500000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,26,1,0,1078,1560.220320,153,2,63254.010320,662.054420,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,541,1501.010320,154,1,35870.010320,660.860836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1219,1441.969040,154,0,73436.010320,602.801032,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,154,0,-1.000000,652.986832,hint,nbiot,60 +on6,0,0,24,0,0,1427,1440.000000,154,0,-1.000000,585.100000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,155,0,-1.000000,749.446832,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1430,1440.000000,155,0,-1.000000,583.150000,hint,nbiot,60 +on12,0,0,24,1,0,312,1440.010320,155,0,19009.010320,602.010836,hint,nbiot,60 +on7,0,0,25,1,0,1275,1500.010320,155,1,81274.010320,650.710836,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,155,0,-1.000000,601.350000,hint,nbiot,60 +on11,0,0,24,1,0,257,1440.000000,155,0,17783.010320,602.006708,hint,nbiot,60 +on8,0,0,25,1,0,86,1500.010320,155,1,7537.010320,639.010836,hint,nbiot,60 +on11,0,0,24,1,0,1320,1440.010320,156,0,79468.010320,602.010836,hint,nbiot,60 +on1,0,0,25,1,0,699,1500.010320,156,1,40156.010320,626.017336,hint,nbiot,60 +on7,0,0,24,1,0,74,1441.000000,156,0,6037.010320,639.716708,hint,nbiot,60 +on9,0,0,24,1,0,600,1441.010320,156,0,36801.010320,635.820836,hint,nbiot,60 +on12,0,0,25,1,0,175,1501.010320,156,1,9706.010320,663.467336,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,1,1441.979680,156,0,3330.010320,603.455288,hint,nbiot,60 +on10,0,0,24,0,0,1428,1440.000000,156,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1401,1440.000000,156,0,-1.000000,602.000000,hint,nbiot,60 +on5,0,0,24,1,0,737,1440.000000,156,0,45859.010320,602.006708,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,156,0,-1.000000,818.517080,hint,nbiot,60 +on6,0,0,24,1,0,780,1440.010320,156,0,48160.010320,602.010836,hint,nbiot,60 +on2,0,0,24,0,0,1421,1440.000000,157,0,-1.000000,589.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1428,1440.000000,157,0,-1.000000,584.450000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1437,1440.000000,157,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,26,1,0,1042,1560.320320,157,3,63048.010320,676.979628,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,938,1500.969360,157,1,58875.010320,626.407452,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,157,0,-1.000000,664.680124,hint,nbiot,60 +on10,0,0,29,1,0,847,1743.359360,158,6,50729.010320,855.929704,hint,nbiot,60 +on5,0,0,25,1,0,516,1501.000000,158,1,32581.010320,679.778208,hint,nbiot,60 +on3,0,0,26,1,0,726,1561.300000,158,2,43374.010320,698.872876,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,25,1,0,693,1501.300000,158,1,42270.010320,656.413500,hint,nbiot,60 +on8,0,0,25,1,0,593,1501.300000,158,1,39614.010320,682.289792,hint,nbiot,60 +on2,0,0,28,1,0,812,1681.800000,158,4,47073.010320,763.544292,hint,nbiot,60 +on6,0,0,25,1,0,901,1500.310320,158,2,55428.010320,650.174128,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,158,0,-1.000000,887.520456,hint,nbiot,60 +on9,0,0,24,1,0,240,1440.010320,158,0,17497.010320,602.010836,hint,nbiot,60 +on7,0,0,24,0,0,1401,1440.000000,158,0,-1.000000,602.650000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1408,1440.000000,159,0,-1.000000,597.450000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,159,0,-1.000000,831.133788,hint,nbiot,60 +on6,0,0,27,1,0,440,1621.330320,159,6,25555.010320,712.621712,hint,nbiot,60 +on8,0,0,24,0,0,1427,1440.000000,159,0,-1.000000,585.100000,hint,nbiot,60 +on7,0,0,25,1,0,145,1500.010320,159,1,11791.010320,648.760836,hint,nbiot,60 +on12,0,0,25,1,0,404,1500.979680,159,1,24068.010320,631.618288,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,329,1501.189680,159,1,19929.010320,642.752288,hint,nbiot,60 +on5,0,0,24,0,0,1403,1440.000000,159,0,-1.000000,600.700000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,1157,1440.000000,159,0,71081.010320,602.006708,hint,nbiot,60 +on4,0,0,24,1,0,250,1440.000000,159,0,16320.010320,602.013208,hint,nbiot,60 +on9,0,0,26,1,0,799,1560.610320,160,3,50053.010320,701.334128,hint,nbiot,60 +on2,0,0,24,1,0,304,1440.989680,160,0,20450.010320,602.415788,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,10,1441.989680,160,0,347.010320,611.909288,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,347,1502.259040,160,2,25009.010320,660.066824,hint,nbiot,60 +on5,0,0,25,1,0,692,1501.269360,160,1,45811.010320,663.310952,hint,nbiot,60 +on4,0,0,25,1,0,521,1501.179360,160,1,32392.010320,626.491452,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,160,0,-1.000000,802.314036,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,534,1501.310320,160,2,34329.010320,691.530836,hint,nbiot,60 +on7,0,0,25,1,0,372,1501.320640,160,2,27267.010320,695.044964,hint,nbiot,60 +on11,0,0,24,0,0,1430,1440.000000,161,0,-1.000000,654.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,247,1441.979360,161,0,17417.010320,602.805160,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,161,0,-1.000000,654.026832,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1422,1440.000000,161,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,1,0,3,1440.020640,161,0,2015.010320,602.021672,hint,nbiot,60 +on4,0,0,23,0,0,1430,1432.000000,161,0,-1.000000,611.800000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1435,1440.000000,161,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1412,1440.000000,162,0,-1.000000,594.850000,hint,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,162,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,24,0,0,1432,1440.000000,162,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,25,1,0,1086,1500.310320,162,2,65477.010320,646.924128,hint,nbiot,60 +on4,0,0,24,1,0,762,1440.020640,162,0,50281.010320,641.021672,hint,nbiot,60 +on2,0,0,24,0,0,1425,1440.000000,162,0,-1.000000,586.400000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,984,1440.969360,162,0,63792.010320,641.400952,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,162,0,-1.000000,792.490040,hint,nbiot,60 +on10,0,0,24,1,0,1349,1440.000000,162,0,86263.010000,641.006500,hint,nbiot,60 +on1,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,587.050000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1373,1440.000000,163,0,-1.000000,637.750000,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,163,0,-1.000000,596.800000,hint,nbiot,60 +on3,0,0,24,0,0,1414,1440.000000,163,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,163,0,-1.000000,737.206708,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1424,1440.000000,163,0,-1.000000,587.050000,hint,nbiot,60 +on9,0,0,24,0,0,1413,1440.000000,163,0,-1.000000,594.200000,hint,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,163,0,-1.000000,615.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,366,1440.010320,163,0,23519.010320,602.010836,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,27,1,0,406,1621.410000,164,4,26701.010320,738.061460,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,164,0,-1.000000,936.030372,hint,nbiot,60 +on11,0,0,29,0,0,1503,1740.900000,164,5,-1.000000,792.519336,hint,nbiot,60 +on9,0,0,24,1,0,291,1442.000000,164,0,19533.010320,685.869792,hint,nbiot,60 +on2,0,0,25,1,0,180,1501.620640,164,1,11334.620640,664.563380,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,28,1,0,782,1681.810000,164,5,43693.010320,726.245416,hint,nbiot,60 +on3,0,0,25,1,0,405,1501.000000,164,1,24733.010320,638.756500,hint,nbiot,60 +on10,0,0,29,1,0,675,1743.220000,164,5,39191.010320,778.532124,hint,nbiot,60 +on5,0,0,25,1,0,455,1502.000000,164,1,30712.010320,663.388084,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1412,1440.000000,164,0,-1.000000,594.850000,hint,nbiot,60 +on12,0,0,24,1,0,240,1442.000000,164,0,17850.010320,653.110000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,165,0,-1.000000,753.120372,hint,nbiot,60 +on1,0,0,26,1,0,1392,1560.320320,165,3,82817.010320,663.134628,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,26,1,0,1274,1561.269360,165,3,76168.010320,702.520744,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,855,1501.169360,165,1,52856.010320,627.780952,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,909,1502.300000,165,2,57324.010320,683.086708,hint,nbiot,60 +on11,0,0,24,1,0,1166,1441.030640,165,0,75553.010320,668.335464,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,840,1442.979680,166,0,53070.010320,612.311788,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,166,0,-1.000000,808.794120,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,628,1440.010320,166,0,41239.010320,641.017544,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,25,1,0,996,1501.979360,166,1,63598.010320,668.801452,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,25,1,0,383,1500.020320,166,1,21988.010320,637.071336,hint,nbiot,60 +on10,0,0,24,1,0,699,1495.610320,166,1,43821.620640,638.759252,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,312,1441.020640,166,0,21397.010320,639.731672,hint,nbiot,60 +on5,0,0,26,1,0,1076,1561.490000,166,3,67357.010320,663.609208,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1389,1440.000000,167,0,-1.000000,631.900000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.650000,hint,nbiot,60 +on4,0,0,24,0,0,1434,1440.000000,167,0,-1.000000,580.550000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,1273,1440.989680,167,0,78992.010320,602.402580,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,167,0,-1.000000,647.506708,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1432,1440.000000,167,0,-1.000000,581.850000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,168,0,-1.000000,809.724036,hint,nbiot,60 +on5,0,0,25,1,0,920,1502.300000,168,2,58087.010320,691.276708,hint,nbiot,60 +on1,0,0,29,1,0,479,1743.150320,168,8,28803.010320,807.837712,hint,nbiot,60 +on9,0,0,24,1,0,900,1440.969360,168,0,56419.010320,602.400952,hint,nbiot,60 +on6,0,0,25,1,0,158,1501.000000,168,1,11651.010320,639.217792,hint,nbiot,60 +on2,0,0,24,1,0,120,1441.800000,168,0,9107.010320,612.730000,hint,nbiot,60 +on8,0,0,26,1,0,238,1561.969360,168,2,15056.010320,662.773952,hint,nbiot,60 +on7,0,0,25,1,0,404,1500.969360,168,1,25103.010320,626.407452,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,168,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1437,1440.000000,168,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,25,1,0,339,1502.948720,168,1,21530.010320,627.212612,hint,nbiot,60 +on4,0,0,24,0,0,1433,1440.000000,169,0,-1.000000,581.200000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1402,1440.000000,169,0,-1.000000,602.000000,hint,nbiot,60 +on5,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,598.750000,hint,nbiot,60 +on6,0,0,24,0,0,1428,1440.000000,169,0,-1.000000,619.550000,hint,nbiot,60 +on11,0,0,24,1,0,259,1440.989680,169,0,17143.010320,602.402580,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,169,0,-1.000000,739.840248,hint,nbiot,60 +on12,0,0,24,1,0,0,1440.010320,169,0,2710.010320,602.010836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,360,1502.600000,169,1,22129.620640,627.261832,hint,nbiot,60 +on3,0,0,24,0,0,1406,1440.000000,169,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,25,1,0,412,1501.269360,170,2,29189.010320,671.364244,hint,nbiot,60 +on10,0,0,24,1,0,643,1440.000000,170,0,40803.010320,641.006708,hint,nbiot,60 +on3,0,0,24,0,0,1418,1440.000000,170,0,-1.000000,591.600000,hint,nbiot,60 +on6,0,0,26,1,0,537,1561.679360,170,3,35484.620640,724.323452,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,1,0,426,1441.948720,170,0,27630.010320,602.799404,hint,nbiot,60 +on1,0,0,24,0,0,1371,1440.000000,170,0,-1.000000,638.400000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,170,0,-1.000000,820.460372,hint,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,170,0,85861.010000,602.006500,hint,nbiot,60 +on12,0,0,24,0,0,1424,1440.000000,170,0,-1.000000,605.243500,hint,nbiot,60 +on8,0,0,24,0,0,1419,1440.000000,170,0,-1.000000,615.000000,hint,nbiot,60 +on6,0,0,25,1,0,420,1501.379680,171,1,25357.620640,628.983496,hint,nbiot,60 +on4,0,0,25,1,0,578,1501.000000,171,1,34471.010320,626.419916,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1396,1440.000000,171,0,-1.000000,605.900000,hint,nbiot,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,171,0,-1.000000,582.500000,hint,nbiot,60 +on11,0,0,24,0,0,1426,1440.000000,171,0,-1.000000,585.750000,hint,nbiot,60 +on9,0,0,24,1,0,1052,1440.000000,171,0,66453.010320,628.656708,hint,nbiot,60 +on5,0,0,25,1,0,472,1501.300000,171,2,30782.010320,669.016584,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1414,1440.000000,171,0,-1.000000,593.550000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,171,0,-1.000000,770.403664,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1433,1440.000000,172,0,-1.000000,581.200000,hint,nbiot,60 +on9,0,0,24,0,0,1387,1440.000000,172,0,-1.000000,611.750000,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,172,0,-1.000000,801.460248,hint,nbiot,60 +on1,0,0,25,0,0,1427,1500.300000,172,2,-1.000000,648.213292,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,181,1500.010320,172,1,13165.010320,642.260836,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,25,1,0,1294,1501.269360,172,2,79883.010320,643.414244,hint,nbiot,60 +on7,0,0,24,0,0,1406,1440.000000,172,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,25,1,0,268,1500.010320,172,1,19580.010320,642.260836,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,1276,1440.000000,172,0,76346.010320,602.013208,hint,nbiot,60 +on2,0,0,24,0,0,1407,1440.000000,173,0,-1.000000,598.100000,hint,nbiot,60 +on10,0,0,25,1,0,609,1501.299680,173,1,38954.010320,648.067788,hint,nbiot,60 +on7,0,0,25,1,0,516,1501.030640,173,1,33489.010320,666.725672,hint,nbiot,60 +on8,0,0,25,1,0,399,1500.969360,173,1,23888.010320,627.258952,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,173,0,-1.000000,824.380496,hint,nbiot,60 +on5,0,0,26,1,0,703,1560.310320,173,3,42541.010320,663.130628,hint,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,173,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,1,0,480,1440.369680,173,0,29566.010320,602.407872,hint,nbiot,60 +on9,0,0,26,1,0,476,1560.530320,173,3,27882.010320,663.218628,hint,nbiot,60 +on6,0,0,24,1,0,19,1441.989680,173,0,1960.010320,633.359288,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,173,0,-1.000000,585.100000,hint,nbiot,60 +on12,0,0,24,1,0,306,1441.010320,173,0,19542.010320,614.370836,hint,nbiot,60 +on11,0,0,24,0,0,1388,1440.000000,174,0,-1.000000,628.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,174,0,-1.000000,719.020124,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,313,1440.010320,174,0,18512.010320,641.010836,hint,nbiot,60 +on4,0,0,24,0,0,1415,1440.000000,174,0,-1.000000,592.900000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1429,1440.000000,174,0,-1.000000,583.800000,hint,nbiot,60 +on9,0,0,24,1,0,660,1440.010320,174,0,42617.010320,602.010836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,421,1440.989680,174,0,27339.010320,602.402580,hint,nbiot,60 +on10,0,0,24,0,0,1401,1440.000000,175,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,24,1,0,720,1440.010320,175,0,43358.010320,602.010836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1369,1440.000000,175,0,-1.000000,623.450000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,175,0,-1.000000,771.019916,hint,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,175,0,83802.010000,602.006500,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,962,1440.000000,175,0,60378.010320,602.006708,hint,nbiot,60 +on6,0,0,24,0,0,1430,1440.000000,175,0,-1.000000,615.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1386,1440.000000,175,0,-1.000000,625.400000,hint,nbiot,60 +on3,0,0,24,1,0,1375,1440.000000,176,0,83206.010000,616.306500,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,176,0,-1.000000,732.013416,hint,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,176,0,-1.000000,605.243500,hint,nbiot,60 +on10,0,0,24,0,0,1415,1440.000000,176,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,309,1441.010320,176,0,20620.010320,639.720836,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,417,1500.010320,176,1,24194.010320,626.017336,hint,nbiot,60 +on12,0,0,24,0,0,1429,1440.000000,176,0,-1.000000,583.800000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1431,1440.000000,176,0,-1.000000,582.500000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1411,1440.000000,176,0,-1.000000,615.000000,hint,nbiot,60 +on12,0,0,25,1,0,785,1501.279680,177,1,50136.010320,661.501788,hint,nbiot,60 +on6,0,0,26,1,0,638,1562.959040,177,2,37640.010320,682.013116,hint,nbiot,60 +on0,1,10,24,0,0,0,1440.000000,177,0,-1.000000,870.550620,hint,nbiot,60 +on5,0,0,26,1,0,858,1560.500320,177,3,50683.010320,663.200128,hint,nbiot,60 +on9,0,0,24,1,0,480,1441.969360,177,0,30772.010320,616.710952,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,27,1,0,620,1622.079360,177,5,42341.010320,779.676328,hint,nbiot,60 +on4,0,0,25,1,0,578,1501.210000,177,1,35412.010320,638.840500,hint,nbiot,60 +on3,0,0,24,1,0,187,1440.989680,177,0,14426.010320,602.402580,hint,nbiot,60 +on10,0,0,26,1,0,754,1561.520320,177,3,45709.010320,666.734628,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1202,1441.989680,177,0,72356.010320,637.902580,hint,nbiot,60 +on2,0,0,24,1,0,432,1440.010320,177,0,25971.010320,602.010836,hint,nbiot,60 +on4,0,0,25,1,0,377,1500.969360,178,1,24019.010320,626.407452,hint,nbiot,60 +on11,0,0,24,0,0,1427,1440.000000,178,0,-1.000000,585.100000,hint,nbiot,60 +on5,0,0,24,0,0,1411,1440.000000,178,0,-1.000000,615.000000,hint,nbiot,60 +on3,0,0,24,0,0,1419,1440.000000,178,0,-1.000000,590.300000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,1020,1440.010320,178,0,62205.010320,602.010836,hint,nbiot,60 +on12,0,0,25,1,0,412,1501.310320,178,2,28739.010320,693.734128,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,178,0,-1.000000,792.750248,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1403,1440.000000,178,0,-1.000000,637.100000,hint,nbiot,60 +on9,0,0,25,1,0,527,1500.010320,178,1,32418.010320,626.017336,hint,nbiot,60 +on7,0,0,25,1,0,261,1501.010320,178,1,18318.010320,670.870836,hint,nbiot,60 +on10,0,0,24,0,0,1413,1440.000000,179,0,-1.000000,615.000000,hint,nbiot,60 +on8,0,0,24,0,0,1405,1440.000000,179,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1429,1440.000000,179,0,-1.000000,583.800000,hint,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,179,0,-1.000000,598.100000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,1149,1440.010320,179,0,71816.010320,602.010836,hint,nbiot,60 +on5,0,0,24,0,0,1412,1440.000000,179,0,-1.000000,594.850000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,25,1,0,1334,1500.000000,179,1,82509.620640,626.208416,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,179,0,-1.000000,744.376624,hint,nbiot,60 +on9,0,0,24,1,0,1380,1440.000000,179,0,86132.010000,602.006500,hint,nbiot,60 +on11,0,0,24,0,0,1434,1440.000000,180,0,-1.000000,580.550000,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,180,0,-1.000000,674.163416,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1429,1440.000000,180,0,-1.000000,654.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,441,1440.010320,180,0,31851.010320,628.010836,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,535,1440.000000,180,0,35228.010320,641.006708,hint,nbiot,60 +on11,0,0,24,1,0,377,1441.030640,181,0,24501.010320,639.735464,hint,nbiot,60 +on9,0,0,25,1,0,196,1501.000000,181,1,13244.010320,639.406500,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,62,1501.269360,181,2,7063.010320,649.914244,hint,nbiot,60 +on3,0,0,26,1,0,474,1561.610320,181,4,31766.010320,679.250836,hint,nbiot,60 +on8,0,0,25,1,0,459,1501.959040,181,1,28250.010320,626.810032,hint,nbiot,60 +on6,0,0,24,1,0,14,1441.030640,181,0,1188.010320,639.735464,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,27,1,0,164,1622.131280,181,4,9530.620640,694.177428,hint,nbiot,60 +on7,0,0,24,0,0,1426,1440.000000,181,0,-1.000000,585.750000,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,181,0,-1.000000,791.257328,hint,nbiot,60 +on12,0,0,24,0,0,1405,1440.000000,181,0,-1.000000,615.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1390,1440.000000,182,0,-1.000000,636.450000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,304,1440.989680,182,0,21417.010320,602.402580,hint,nbiot,60 +on6,0,0,25,1,0,1060,1500.310320,182,2,67233.010320,664.474128,hint,nbiot,60 +on7,0,0,24,0,0,1411,1440.000000,182,0,-1.000000,595.500000,hint,nbiot,60 +on11,0,0,24,1,0,1037,1440.030640,182,0,64411.010320,602.025464,hint,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,182,0,-1.000000,767.133540,hint,nbiot,60 +on8,0,0,24,1,0,180,1440.010320,182,0,11951.010320,602.010836,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1427,1440.000000,182,0,-1.000000,585.100000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1407,1440.000000,182,0,-1.000000,598.100000,hint,nbiot,60 +on10,0,0,24,0,0,1417,1440.000000,183,0,-1.000000,615.650000,hint,nbiot,60 +on1,0,0,24,1,0,693,1441.989680,183,0,45533.010320,634.002580,hint,nbiot,60 +on12,0,0,26,1,0,956,1562.000000,183,2,58944.010320,724.510000,hint,nbiot,60 +on8,0,0,24,0,0,1401,1440.000000,183,0,-1.000000,602.000000,hint,nbiot,60 +on4,0,0,24,0,0,1407,1440.000000,183,0,-1.000000,598.100000,hint,nbiot,60 +on3,0,0,25,1,0,358,1501.459360,183,2,24341.010320,653.441744,hint,nbiot,60 +on7,0,0,26,1,0,356,1561.459360,183,3,19841.010320,663.596744,hint,nbiot,60 +on9,0,0,26,1,0,476,1560.310320,183,3,27654.010320,663.130628,hint,nbiot,60 +on11,0,0,25,1,0,1166,1500.010320,183,1,74281.010320,639.010836,hint,nbiot,60 +on6,0,0,24,0,0,1430,1440.000000,183,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,183,0,-1.000000,960.647328,hint,nbiot,60 +on5,0,0,25,1,0,218,1503.458720,183,2,16793.010320,678.304904,hint,nbiot,60 +on2,0,0,25,1,0,142,1500.990000,183,1,14220.010320,690.115916,hint,nbiot,60 +on12,0,0,25,1,0,1275,1500.010320,184,1,78950.010320,627.960836,hint,nbiot,60 +on9,0,0,24,1,0,499,1440.020640,184,0,30813.010320,602.028172,hint,nbiot,60 +on8,0,0,25,1,0,360,1500.630640,184,1,22084.620640,626.473880,hint,nbiot,60 +on7,0,0,26,1,0,565,1561.489680,184,3,35986.010320,675.055580,hint,nbiot,60 +on6,0,0,26,1,0,656,1562.500320,184,3,38009.010320,707.829836,hint,nbiot,60 +on2,0,0,24,0,0,1413,1440.000000,184,0,-1.000000,594.200000,hint,nbiot,60 +on5,0,0,25,1,0,778,1500.310320,184,2,49271.010320,652.124128,hint,nbiot,60 +on10,0,0,25,1,0,719,1500.969360,184,1,42923.010320,626.407452,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,184,0,-1.000000,823.380952,hint,nbiot,60 +on11,0,0,26,1,0,750,1561.569360,184,4,46348.010320,680.527536,hint,nbiot,60 +on3,0,0,24,0,0,1427,1440.000000,184,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,1081,1440.989680,185,0,65980.010320,602.402580,hint,nbiot,60 +on2,0,0,25,1,0,600,1501.610320,185,1,39005.620640,626.859252,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,185,0,-1.000000,725.533540,hint,nbiot,60 +on4,0,0,24,0,0,1410,1440.000000,185,0,-1.000000,596.150000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,1,0,300,1440.010320,185,0,20797.010320,602.010836,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1389,1440.000000,185,0,-1.000000,654.000000,hint,nbiot,60 +on3,0,0,24,0,0,1415,1440.000000,185,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1414,1440.000000,186,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,0,24,0,0,0,1440.000000,186,0,-1.000000,657.900000,hint,nbiot,60 +on4,0,0,24,0,0,1400,1440.000000,186,0,-1.000000,693.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1410,1440.000000,186,0,-1.000000,596.150000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1417,1440.000000,186,0,-1.000000,654.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1423,1440.000000,187,0,-1.000000,587.700000,hint,nbiot,60 +on9,0,0,26,1,0,1435,1560.310000,187,3,83378.010000,663.130292,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,187,0,-1.000000,779.380164,hint,nbiot,60 +on10,0,0,25,1,0,1332,1501.379360,187,1,80982.010320,631.966452,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,1092,1440.010320,187,0,67231.010320,602.010836,hint,nbiot,60 +on11,0,0,24,1,0,1140,1440.010320,187,0,69682.010320,602.010836,hint,nbiot,60 +on2,0,0,25,1,0,956,1500.010320,187,1,60163.010320,647.460836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,25,1,0,195,1501.610320,187,1,14098.620640,626.859252,hint,nbiot,60 +on8,0,0,24,0,0,1426,1440.000000,187,0,-1.000000,618.900000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1410,1440.000000,188,0,-1.000000,615.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,188,0,-1.000000,739.846956,hint,nbiot,60 +on2,0,0,24,0,0,1412,1440.000000,188,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,188,0,-1.000000,582.500000,hint,nbiot,60 +on3,0,0,25,1,0,360,1500.390000,188,1,22648.620640,626.384332,hint,nbiot,60 +on8,0,0,24,0,0,1426,1440.000000,188,0,-1.000000,585.750000,hint,nbiot,60 +on11,0,0,25,1,0,437,1501.300000,188,2,27998.010320,652.766584,hint,nbiot,60 +on12,0,0,24,0,0,1409,1440.000000,188,0,-1.000000,596.800000,hint,nbiot,60 +on5,0,0,24,0,0,1427,1440.000000,188,0,-1.000000,585.750000,hint,nbiot,60 +on1,0,0,24,1,0,1140,1440.010320,188,0,70888.010320,602.010836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,780,1440.010320,189,0,49055.010320,602.010836,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,1172,1500.030640,189,1,70329.010320,626.032172,hint,nbiot,60 +on5,0,0,25,1,0,1020,1502.610320,189,1,62192.620640,664.569252,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,189,0,-1.000000,679.390248,hint,nbiot,60 +on10,0,0,24,0,0,1409,1440.000000,189,0,-1.000000,615.000000,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1434,1440.000000,189,0,-1.000000,580.550000,hint,nbiot,60 +on5,0,0,24,1,0,363,1440.969360,190,0,23380.010320,602.400952,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,190,0,-1.000000,808.110372,hint,nbiot,60 +on9,0,0,24,0,0,1351,1440.000000,190,0,-1.000000,674.150000,hint,nbiot,60 +on11,0,0,26,1,0,470,1562.810000,190,4,30363.010320,698.125500,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,462,1500.969360,190,1,28386.010320,626.407452,hint,nbiot,60 +on7,0,0,25,1,0,264,1500.010320,190,1,15627.010320,642.267336,hint,nbiot,60 +on12,0,0,24,1,0,187,1441.989680,190,0,12233.010320,640.112580,hint,nbiot,60 +on2,0,0,24,1,0,720,1440.010320,190,0,45393.010320,602.010836,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,60,1440.010320,191,0,4432.010320,602.010836,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,244,1440.989680,191,0,18031.010320,602.402580,hint,nbiot,60 +on3,0,0,26,1,0,1302,1560.969360,191,2,77719.010320,662.360536,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,1080,1440.969360,191,0,64906.010320,602.400952,hint,nbiot,60 +on9,0,0,25,1,0,1139,1500.300000,191,2,71809.010320,651.476500,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,191,0,-1.000000,772.607164,hint,nbiot,60 +on4,0,0,27,1,0,1332,1620.820320,191,4,80043.010320,703.967920,hint,nbiot,60 +on8,0,0,24,1,0,1215,1441.000000,191,0,73785.010320,604.609792,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1402,1440.000000,192,0,-1.000000,601.350000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1429,1440.000000,192,0,-1.000000,583.800000,hint,nbiot,60 +on0,1,1,24,0,0,0,1440.000000,192,0,-1.000000,661.820124,hint,nbiot,60 +on10,0,0,24,0,0,1427,1440.000000,192,0,-1.000000,585.100000,hint,nbiot,60 +on1,0,0,25,1,0,172,1501.610320,192,1,11356.620640,665.859252,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1430,1440.000000,192,0,-1.000000,583.150000,hint,nbiot,60 +on9,0,0,24,0,0,1434,1440.000000,192,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,1,0,399,1459.000000,193,1,27519.010320,609.613208,hint,nbiot,60 +on9,0,0,25,1,0,781,1500.010320,193,1,49622.010320,642.260836,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,1,0,1034,1441.000000,193,0,63342.010320,639.716708,hint,nbiot,60 +on7,0,0,24,1,0,859,1441.979360,193,0,50510.010320,602.805160,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,193,0,-1.000000,776.780372,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,25,1,0,326,1501.020640,193,1,21773.010320,661.131672,hint,nbiot,60 +on2,0,0,25,1,0,1109,1502.000000,193,1,67303.010320,698.319916,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1433,1440.000000,193,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,25,1,0,1276,1501.310320,194,2,79370.010320,661.234128,hint,nbiot,60 +on10,0,0,24,0,0,1426,1440.000000,194,0,-1.000000,586.400000,hint,nbiot,60 +on1,0,0,24,0,0,1415,1440.000000,194,0,-1.000000,592.900000,hint,nbiot,60 +on9,0,0,25,0,0,1430,1500.000000,194,1,-1.000000,618.206500,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,194,0,-1.000000,793.803664,hint,nbiot,60 +on6,0,0,25,1,0,799,1500.969360,194,1,48084.010320,640.908952,hint,nbiot,60 +on12,0,0,26,1,0,896,1560.310320,194,3,51697.010320,663.130628,hint,nbiot,60 +on4,0,0,24,0,0,1437,1440.000000,194,0,-1.000000,578.600000,hint,nbiot,60 +on5,0,0,24,1,0,1219,1441.989680,194,0,74181.010320,638.162580,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,1,0,720,1441.010320,194,0,46036.010320,606.570836,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,1,0,1297,1498.969360,194,1,77276.010320,625.607452,hint,nbiot,60 +on6,0,0,24,0,0,1425,1440.000000,195,0,-1.000000,586.400000,hint,nbiot,60 +on8,0,0,27,1,0,1011,1621.479360,195,4,63083.010320,723.354744,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,1,0,9,1440.041280,195,0,1466.010320,602.036636,hint,nbiot,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,hint,nbiot,60 +on1,0,0,26,1,0,259,1561.310320,195,2,15080.010320,679.787336,hint,nbiot,60 +on9,0,0,26,1,0,1136,1560.310320,195,3,66472.010320,663.130628,hint,nbiot,60 +on3,0,0,25,1,0,60,1502.610320,195,1,7202.620640,664.569252,hint,nbiot,60 +on4,0,0,25,1,0,987,1501.969360,195,1,60877.010320,660.867452,hint,nbiot,60 +on12,0,0,24,0,0,1417,1440.000000,195,0,-1.000000,592.250000,hint,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,195,0,-1.000000,814.507204,hint,nbiot,60 +on7,0,0,24,0,0,1439,1440.000000,195,0,-1.000000,615.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,25,1,0,669,1500.010320,196,1,42986.010320,633.810836,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1406,1440.000000,196,0,-1.000000,615.000000,hint,nbiot,60 +on5,0,0,25,1,0,496,1501.300000,196,2,34139.010320,655.126708,hint,nbiot,60 +on9,0,0,24,0,0,1416,1440.000000,196,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,196,0,-1.000000,721.250248,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,1,0,450,1440.979680,196,0,30264.010320,680.411788,hint,nbiot,60 +on3,0,0,24,0,0,1437,1440.000000,197,0,-1.000000,578.600000,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,197,0,-1.000000,781.070580,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,26,1,0,417,1560.969360,197,2,22306.010320,663.212452,hint,nbiot,60 +on4,0,0,26,1,0,487,1560.490000,197,3,30783.010320,663.209000,hint,nbiot,60 +on2,0,0,25,1,0,549,1500.010320,197,1,34828.010320,634.655836,hint,nbiot,60 +on10,0,0,24,0,0,1431,1440.000000,197,0,-1.000000,582.500000,hint,nbiot,60 +on11,0,0,24,0,0,1421,1440.000000,197,0,-1.000000,616.300000,hint,nbiot,60 +on6,0,0,25,1,0,186,1502.610320,197,1,11203.620640,655.469252,hint,nbiot,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hint,nbiot,60 +on9,0,0,25,1,0,380,1502.469040,197,2,25641.010320,679.202324,hint,nbiot,60 +on0,1,2,24,0,0,0,1440.000000,198,0,-1.000000,679.623416,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on3,0,0,24,0,0,1402,1440.000000,198,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,976,1440.989680,198,0,59984.010320,602.402580,hint,nbiot,60 +on6,0,0,25,1,0,1278,1500.010320,198,1,82334.010320,647.460836,hint,nbiot,60 +on9,0,0,24,0,0,1433,1440.000000,198,0,-1.000000,581.200000,hint,nbiot,60 +on11,0,0,28,1,0,1292,1682.479040,199,6,78533.620640,740.864824,hint,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,nbiot,60 +on5,0,0,25,1,0,1237,1500.969360,199,1,74724.010320,639.407452,hint,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,nbiot,60 +on8,0,0,24,1,0,1092,1440.969360,199,0,66023.010320,602.400952,hint,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,199,0,-1.000000,736.617080,hint,nbiot,60 +on4,0,0,24,1,0,480,1440.010320,199,0,29626.010320,602.010836,hint,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hint,nbiot,60 +on1,0,0,24,0,0,1431,1440.000000,199,0,-1.000000,582.500000,hint,nbiot,60 +on2,0,0,24,0,0,1424,1440.000000,199,0,-1.000000,615.000000,hint,nbiot,60 +on7,0,0,25,1,0,1118,1501.689360,199,2,69929.010320,666.533744,hint,nbiot,60 +on3,0,0,24,1,0,905,1441.000000,200,0,55760.010320,640.756708,hint,nbiot,60 +on10,0,0,25,1,0,0,1502.620640,200,1,2638.620640,677.559964,hint,nbiot,60 +on11,0,0,24,0,0,1436,1440.000000,200,0,-1.000000,615.000000,hint,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on12,0,0,24,1,0,679,1441.979680,200,0,42143.010320,618.391872,hint,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,200,0,-1.000000,773.270372,hint,nbiot,60 +on5,0,0,25,1,0,234,1500.989680,200,1,12961.010320,626.415788,hint,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on2,0,0,26,1,0,141,1561.020320,200,2,7596.010320,699.684420,hint,nbiot,60 +on7,0,0,24,1,0,68,1441.010320,200,0,6749.010320,609.170628,hint,nbiot,60 +on9,0,0,24,1,0,369,1440.010320,200,0,23145.010320,602.010836,hint,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hint,nbiot,60 +on6,0,0,24,1,0,1187,1467.010000,1,0,70206.010000,612.810500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,279,1459.010000,1,0,17366.010000,609.610500,extended,nbiot,60 +on8,0,0,24,1,0,439,1440.000000,1,0,27193.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,483,1440.000000,1,0,29036.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,710,1470.010000,1,0,43036.010000,614.010500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,300,1440.000000,1,0,19017.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1473.010000,1,0,-1.000000,745.243000,extended,nbiot,60 +on10,0,0,24,1,0,1050,1450.010000,2,0,62194.010000,606.010500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,753,1453.010000,2,0,45776.010000,607.210500,extended,nbiot,60 +on7,0,0,24,1,0,600,1440.000000,2,0,38862.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,991,1451.010000,2,0,59844.010000,606.410500,extended,nbiot,60 +on0,1,7,24,0,0,0,1491.020000,2,0,-1.000000,778.453500,extended,nbiot,60 +on6,0,0,24,1,0,211,1451.010000,2,0,10970.010000,606.410500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,2,0,15844.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,552,1440.000000,2,0,35430.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1499.040000,3,0,-1.000000,755.655000,extended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,3,0,19062.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,3,0,16334.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,480,1440.000000,3,0,31263.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,398,1458.010000,3,0,25233.010000,609.210500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1096,1440.000000,3,0,66938.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,519,1459.020000,3,0,31303.020000,609.614500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1401,1441.010000,4,0,82981.010000,602.410500,extended,nbiot,60 +on2,0,0,24,1,0,1409,1449.020000,4,0,83021.020000,605.614500,extended,nbiot,60 +on0,1,6,24,0,0,0,1528.040000,4,0,-1.000000,767.255000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,599,1479.010000,4,0,33918.010000,617.610500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,17,1440.000000,4,0,2205.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,4,0,27192.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,4,0,40067.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1432,1472.010000,5,0,83018.010000,614.810500,extended,nbiot,60 +on0,1,5,24,0,0,0,1462.020000,5,0,-1.000000,714.840500,extended,nbiot,60 +on5,0,0,24,1,0,120,1440.000000,5,0,7651.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,383,1443.010000,5,0,25043.010000,603.210500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,947,1467.010000,5,0,54911.010000,612.810500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,5,0,2293.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1077,1477.010000,6,0,61767.010000,616.810500,extended,nbiot,60 +on7,0,0,24,1,0,498,1440.000000,6,0,30239.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1070,1470.020000,6,0,61807.020000,614.014500,extended,nbiot,60 +on0,1,5,24,0,0,0,1460.020000,6,0,-1.000000,714.040500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,861,1441.010000,6,0,53782.010000,602.410500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1260,1440.000000,6,0,77057.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1462.020000,7,0,-1.000000,662.827500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,180,1440.000000,7,0,13903.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,23,1443.010000,7,0,3549.010000,603.210500,extended,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,7,0,45521.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1467.010000,8,0,-1.000000,716.836500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,8,0,66597.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,180,1440.000000,8,0,13026.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,519,1459.010000,8,0,31722.010000,609.610500,extended,nbiot,60 +on12,0,0,24,1,0,952,1472.010000,8,0,54296.010000,614.810500,extended,nbiot,60 +on4,0,0,24,1,0,326,1446.010000,8,0,19275.010000,604.410500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,172,1472.010000,9,0,8888.010000,614.810500,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,9,0,11683.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,814,1454.020000,9,0,48931.020000,607.614500,extended,nbiot,60 +on9,0,0,24,1,0,997,1457.010000,9,0,60640.010000,608.810500,extended,nbiot,60 +on0,1,9,24,0,0,0,1538.060000,9,0,-1.000000,849.282500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,9,0,1577.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,813,1453.010000,9,0,48891.010000,607.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,9,0,42484.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,9,0,4784.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,200,1440.010000,9,0,11627.010000,602.010500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,933,1453.010000,10,0,56769.010000,607.210500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1444.020000,10,0,-1.000000,733.647000,extended,nbiot,60 +on4,0,0,24,1,0,1260,1440.000000,10,0,78319.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,337,1457.010000,10,0,20603.010000,608.810500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,960,1440.000000,10,0,58767.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,204,1444.010000,10,0,13632.010000,603.610500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,683,1443.010000,10,0,42123.010000,603.210500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,312,1440.000000,11,0,19828.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,11,0,37310.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,300,1440.000000,11,0,19874.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,540,1440.000000,11,0,35029.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,566,1446.010000,11,0,34972.010000,604.410500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1134,1474.010000,11,0,66269.010000,615.610500,extended,nbiot,60 +on1,0,0,24,1,0,34,1454.010000,11,0,230.010000,607.610500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,11,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,11,0,17969.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,11,0,60359.010000,602.006500,extended,nbiot,60 +on0,1,10,24,0,0,0,1543.040000,11,0,-1.000000,877.281000,extended,nbiot,60 +on4,0,0,24,1,0,731,1440.000000,11,0,45323.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,180,1440.000000,12,0,13162.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,126,1440.000000,12,0,10783.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1301,1461.010000,12,0,76410.010000,610.410500,extended,nbiot,60 +on9,0,0,24,1,0,840,1440.000000,12,0,50572.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,12,0,37549.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,324,1444.010000,12,0,18213.010000,603.610500,extended,nbiot,60 +on8,0,0,24,1,0,991,1451.010000,12,0,57994.010000,606.410500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1497.020000,12,0,-1.000000,780.853500,extended,nbiot,60 +on7,0,0,24,1,0,600,1440.000000,13,0,38128.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,13,0,10195.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,273,1453.010000,13,0,16803.010000,607.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,13,0,2089.020000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,3,1440.000000,13,0,2049.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1499.040000,13,0,-1.000000,755.655000,extended,nbiot,60 +on1,0,0,24,1,0,148,1448.010000,13,0,10147.010000,605.210500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,840,1440.000000,14,0,52042.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1500.030000,14,0,-1.000000,782.057500,extended,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,14,0,1892.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,60,1440.000000,14,0,6711.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,239,1479.010000,14,0,14106.010000,617.610500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,374,1440.000000,14,0,22852.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,14,0,15944.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,823,1463.010000,14,0,48467.010000,611.210500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,423,1440.000000,15,0,28721.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,1020,1440.000000,15,0,63627.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,869,1449.010000,15,0,52350.010000,605.610500,extended,nbiot,60 +on11,0,0,24,1,0,180,1440.000000,15,0,13028.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1504.020000,15,0,-1.000000,783.653500,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,15,0,39898.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,663,1440.000000,15,0,39850.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,294,1474.010000,15,0,17049.010000,615.610500,extended,nbiot,60 +on7,0,0,24,1,0,685,1445.010000,16,0,41380.010000,604.010500,extended,nbiot,60 +on12,0,0,24,1,0,420,1440.000000,16,0,27208.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,488,1440.000000,16,0,30750.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,300,1440.000000,16,0,19733.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,900,1440.000000,16,0,55309.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1491.020000,16,0,-1.000000,778.453500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,328,1448.010000,16,0,19691.010000,605.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1263,1440.000000,16,0,79149.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1532.060000,17,0,-1.000000,794.869500,extended,nbiot,60 +on6,0,0,24,1,0,660,1440.000000,17,0,40568.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,240,1440.000000,17,0,14468.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,1242,1462.020000,17,0,74991.020000,610.814500,extended,nbiot,60 +on2,0,0,23,0,0,1430,1430.000000,17,0,-1.000000,572.000000,extended,nbiot,60 +on12,0,0,24,1,0,1235,1455.010000,17,0,74951.010000,608.010500,extended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,17,0,44188.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,17,0,6314.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,590,1470.010000,17,0,34272.010000,614.010500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,159,1459.010000,18,0,8943.010000,609.610500,extended,nbiot,60 +on5,0,0,24,1,0,131,1440.000000,18,0,8983.020000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,601,1440.000000,18,0,36148.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,378,1440.000000,18,0,23198.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,18,0,69122.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1460.020000,18,0,-1.000000,766.053500,extended,nbiot,60 +on6,0,0,24,1,0,1031,1440.000000,18,0,62863.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1246,1466.010000,18,0,75082.010000,612.410500,extended,nbiot,60 +on7,0,0,24,1,0,533,1473.010000,19,0,30064.010000,615.210500,extended,nbiot,60 +on12,0,0,24,1,0,867,1447.010000,19,0,51036.010000,604.810500,extended,nbiot,60 +on3,0,0,24,1,0,476,1476.010000,19,0,25770.010000,616.410500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,19,0,11654.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1466.010000,19,0,-1.000000,742.443000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,75,1440.000000,19,0,4538.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,19,0,43514.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1452.010000,20,0,-1.000000,710.836500,extended,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,20,0,83759.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,540,1440.000000,20,0,34276.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,20,0,7802.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,755,1455.010000,20,0,45348.010000,608.010500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,272,1452.010000,20,0,15241.010000,606.810500,extended,nbiot,60 +on3,0,0,24,1,0,660,1440.000000,21,0,40631.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1446.020000,21,0,-1.000000,734.447000,extended,nbiot,60 +on7,0,0,24,1,0,1100,1440.010000,21,0,65746.010000,602.010500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,406,1466.010000,21,0,22311.010000,612.410500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,216,1456.010000,21,0,12332.010000,608.410500,extended,nbiot,60 +on2,0,0,24,1,0,1320,1440.000000,21,0,82527.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,33,1453.010000,21,0,199.010000,607.210500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1115,1455.010000,22,0,65430.010000,608.010500,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,22,0,4852.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,204,1444.010000,22,0,12941.010000,603.610500,extended,nbiot,60 +on0,1,6,24,0,0,0,1467.010000,22,0,-1.000000,742.843000,extended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,22,0,40018.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,498,1440.000000,22,0,30272.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,893,1473.010000,22,0,53851.010000,615.210500,extended,nbiot,60 +on9,0,0,24,1,0,1124,1464.010000,23,0,65383.010000,611.610500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,0,1440.000000,23,0,3255.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,660,1440.000000,23,0,43211.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,23,0,43763.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,26,1446.020000,23,0,3295.020000,604.414500,extended,nbiot,60 +on0,1,9,24,0,0,0,1533.040000,23,0,-1.000000,847.274500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1335,1440.000000,23,0,79463.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,23,0,49227.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1200,1440.000000,23,0,72332.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,600,1440.000000,23,0,37840.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,979,1440.000000,24,0,58636.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,975,1440.000000,24,0,58676.020000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,24,0,13338.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,383,1443.010000,24,0,24733.010000,603.210500,extended,nbiot,60 +on8,0,0,24,1,0,130,1440.000000,24,0,8599.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,368,1440.000000,24,0,24773.020000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1480.040000,24,0,-1.000000,774.061500,extended,nbiot,60 +on7,0,0,24,1,0,605,1440.000000,24,0,37424.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,287,1467.010000,25,0,17644.010000,612.810500,extended,nbiot,60 +on12,0,0,24,1,0,853,1440.000000,25,0,53923.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1015,1475.010000,25,0,59107.010000,616.010500,extended,nbiot,60 +on11,0,0,24,1,0,180,1440.000000,25,0,13888.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,780,1440.000000,25,0,49699.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1473.020000,25,0,-1.000000,745.247000,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,25,0,34395.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,840,1440.000000,26,0,53194.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,410,1470.010000,26,0,24427.010000,614.010500,extended,nbiot,60 +on0,1,9,24,0,0,0,1466.020000,26,0,-1.000000,820.466500,extended,nbiot,60 +on10,0,0,24,1,0,226,1466.010000,26,0,14344.010000,612.410500,extended,nbiot,60 +on6,0,0,24,1,0,1200,1440.000000,26,0,74269.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,780,1440.000000,26,0,48034.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,595,1475.010000,26,0,33853.010000,616.010500,extended,nbiot,60 +on1,0,0,24,1,0,1211,1440.000000,26,0,74225.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,44,1464.010000,26,0,2768.010000,611.610500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,347,1467.010000,26,0,21112.010000,612.810500,extended,nbiot,60 +on5,0,0,24,1,0,1037,1440.000000,27,0,64615.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,27,0,9457.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,828,1468.010000,27,0,49382.010000,613.210500,extended,nbiot,60 +on8,0,0,24,1,0,322,1442.010000,27,0,18987.010000,602.810500,extended,nbiot,60 +on2,0,0,24,1,0,443,1443.010000,27,0,26812.010000,603.210500,extended,nbiot,60 +on10,0,0,24,1,0,1173,1453.010000,27,0,68482.010000,607.210500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,605,1440.000000,27,0,38174.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,720,1440.000000,27,0,46344.010000,602.006500,extended,nbiot,60 +on0,1,10,24,0,0,0,1493.030000,27,0,-1.000000,857.277000,extended,nbiot,60 +on3,0,0,24,1,0,482,1440.000000,27,0,28940.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,27,0,1517.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,693,1453.020000,28,0,40991.020000,607.214500,extended,nbiot,60 +on8,0,0,24,1,0,335,1455.010000,28,0,18118.010000,608.010500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1234,1454.010000,28,0,74137.010000,607.610500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,836,1476.010000,28,0,47368.010000,616.410500,extended,nbiot,60 +on0,1,6,24,0,0,0,1495.030000,28,0,-1.000000,754.051000,extended,nbiot,60 +on10,0,0,24,1,0,1380,1440.000000,28,0,84565.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,682,1442.010000,28,0,40951.010000,602.810500,extended,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,29,0,68772.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,607,1440.000000,29,0,37166.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,717,1477.010000,29,0,39830.010000,616.810500,extended,nbiot,60 +on7,0,0,24,1,0,172,1472.010000,29,0,8044.010000,614.810500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,29,0,32562.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1454.010000,29,0,-1.000000,711.636500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1016,1476.010000,30,0,59383.010000,616.410500,extended,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,30,0,-1.000000,654.019500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,331,1451.010000,30,0,21565.010000,606.410500,extended,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,30,0,45453.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,780,1440.000000,31,0,49563.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1495.050000,31,0,-1.000000,754.059000,extended,nbiot,60 +on10,0,0,24,1,0,894,1474.010000,31,0,53226.010000,615.610500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,503,1443.010000,31,0,30177.010000,603.210500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,31,0,33300.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1140,1440.000000,31,0,69022.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,879,1459.020000,31,0,53266.020000,609.614500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,967,1440.000000,32,0,60880.020000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,993,1453.010000,32,0,60840.010000,607.210500,extended,nbiot,60 +on5,0,0,24,1,0,1062,1462.010000,32,0,62905.010000,610.810500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1308,1468.010000,32,0,76652.010000,613.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,900,1440.000000,32,0,54988.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1469.030000,32,0,-1.000000,743.651000,extended,nbiot,60 +on6,0,0,24,1,0,179,1479.010000,32,0,7553.010000,617.610500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,33,0,61588.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,33,0,33211.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,452,1452.010000,33,0,26017.010000,606.810500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,193,1440.000000,33,0,14053.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1080,1440.000000,33,0,64897.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1448.020000,33,0,-1.000000,709.240500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1415,1455.010000,34,0,83159.010000,608.010500,extended,nbiot,60 +on0,1,6,24,0,0,0,1481.030000,34,0,-1.000000,748.451000,extended,nbiot,60 +on12,0,0,24,1,0,579,1459.010000,34,0,35593.010000,609.610500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,300,1440.000000,34,0,19079.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,1200,1440.000000,34,0,74417.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,34,0,53400.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,34,0,62342.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,720,1440.000000,35,0,46649.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,629,1449.020000,35,0,39448.020000,605.614500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,641,1461.010000,35,0,39408.010000,610.410500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1200,1440.000000,35,0,72154.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1384,1440.000000,35,0,86345.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1470.030000,35,0,-1.000000,718.044500,extended,nbiot,60 +on0,1,7,24,0,0,0,1471.020000,36,0,-1.000000,770.453500,extended,nbiot,60 +on11,0,0,24,1,0,1014,1474.010000,36,0,60025.010000,615.610500,extended,nbiot,60 +on1,0,0,24,1,0,484,1440.000000,36,0,31127.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1306,1466.010000,36,0,77372.010000,612.410500,extended,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,36,0,635.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,670,1440.000000,36,0,43178.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,36,0,26211.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,36,0,61544.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,878,1458.010000,37,0,51973.010000,609.210500,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,37,0,22887.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1320,1440.000000,37,0,81769.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,37,0,8672.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,1250,1470.010000,37,0,73797.010000,614.010500,extended,nbiot,60 +on10,0,0,24,1,0,480,1440.000000,37,0,32243.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1593.060000,37,0,-1.000000,871.282500,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,37,0,83917.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,300,1440.000000,37,0,19261.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,780,1440.000000,37,0,49407.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,947,1467.010000,38,0,54222.010000,612.810500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,293,1473.010000,38,0,14812.010000,615.210500,extended,nbiot,60 +on9,0,0,24,1,0,633,1453.010000,38,0,39427.010000,607.210500,extended,nbiot,60 +on12,0,0,24,1,0,150,1450.010000,38,0,8131.010000,606.010500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,319,1440.000000,38,0,20927.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,38,0,-1.000000,706.032500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,803,1443.010000,39,0,50355.010000,603.210500,extended,nbiot,60 +on4,0,0,24,1,0,926,1446.010000,39,0,56778.010000,604.410500,extended,nbiot,60 +on0,1,6,24,0,0,0,1460.020000,39,0,-1.000000,740.047000,extended,nbiot,60 +on5,0,0,23,1,0,468,1468.010000,39,0,27695.010000,613.210500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,441,1441.020000,39,0,27735.020000,602.414500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,693,1453.010000,39,0,41583.010000,607.210500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,18,1440.000000,39,0,2674.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,260,1440.010000,40,0,17332.010000,602.010500,extended,nbiot,60 +on7,0,0,24,1,0,468,1468.010000,40,0,26017.010000,613.210500,extended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,40,0,9991.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,540,1440.000000,40,0,32805.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,744,1444.010000,40,0,46486.010000,603.610500,extended,nbiot,60 +on0,1,7,24,0,0,0,1447.020000,40,0,-1.000000,760.853500,extended,nbiot,60 +on1,0,0,24,1,0,1380,1440.000000,40,0,86196.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,1177,1457.010000,40,0,69395.010000,608.810500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,16,1440.000000,41,0,1179.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,41,0,44885.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1476.020000,41,0,-1.000000,694.434000,extended,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,41,0,14457.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,145,1445.010000,41,0,7507.010000,604.010500,extended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,42,0,17276.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1460.030000,42,0,-1.000000,714.044500,extended,nbiot,60 +on11,0,0,24,1,0,960,1440.000000,42,0,60852.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,42,0,31105.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,42,0,260.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,99,1459.010000,42,0,6004.010000,609.610500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,402,1462.020000,43,0,24677.020000,610.814500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,300,1440.000000,43,0,19953.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,38,1458.010000,43,0,151.010000,609.210500,extended,nbiot,60 +on6,0,0,24,1,0,1140,1440.000000,43,0,71284.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,399,1459.010000,43,0,24637.010000,609.610500,extended,nbiot,60 +on11,0,0,24,1,0,845,1440.000000,43,0,53373.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1432,1472.010000,43,0,85960.010000,614.810500,extended,nbiot,60 +on0,1,7,24,0,0,0,1468.030000,43,0,-1.000000,769.257500,extended,nbiot,60 +on0,1,7,24,0,0,0,1458.010000,44,0,-1.000000,765.249500,extended,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,44,0,4409.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,44,0,28581.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,44,0,67693.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,998,1458.010000,44,0,60961.010000,609.210500,extended,nbiot,60 +on9,0,0,24,1,0,540,1440.000000,44,0,32494.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,22,1442.010000,44,0,1578.010000,602.810500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,653,1473.010000,44,0,38601.010000,615.210500,extended,nbiot,60 +on4,0,0,24,1,0,1336,1440.000000,45,0,79876.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1460.020000,45,0,-1.000000,766.053500,extended,nbiot,60 +on2,0,0,24,1,0,360,1440.000000,45,0,21646.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,547,1440.000000,45,0,33034.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,85,1445.010000,45,0,4734.010000,604.010500,extended,nbiot,60 +on8,0,0,24,1,0,556,1440.000000,45,0,33074.020000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1125,1465.010000,45,0,66577.010000,612.010500,extended,nbiot,60 +on3,0,0,24,1,0,625,1445.010000,45,0,37632.010000,604.010500,extended,nbiot,60 +on0,1,7,24,0,0,0,1476.030000,46,0,-1.000000,772.457500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,87,1447.010000,46,0,6368.010000,604.810500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,46,0,74665.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,478,1478.010000,46,0,27118.010000,617.210500,extended,nbiot,60 +on3,0,0,24,1,0,976,1440.000000,46,0,60492.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,46,0,29522.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,905,1440.000000,46,0,54698.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,981,1441.020000,46,0,60532.020000,602.414500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,420,1440.000000,47,0,27132.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,960,1440.000000,47,0,60056.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,300,1440.000000,47,0,21493.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1499.020000,47,0,-1.000000,755.647000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1009,1469.010000,47,0,60014.010000,613.610500,extended,nbiot,60 +on10,0,0,24,1,0,811,1451.010000,47,0,49914.010000,606.410500,extended,nbiot,60 +on7,0,0,24,1,0,262,1442.010000,47,0,15992.010000,602.810500,extended,nbiot,60 +on2,0,0,24,1,0,765,1465.010000,48,0,43755.010000,612.010500,extended,nbiot,60 +on0,1,5,24,0,0,0,1457.010000,48,0,-1.000000,712.836500,extended,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,48,0,2016.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,940,1460.010000,48,0,56730.010000,610.010500,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,48,0,4044.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,188,1440.000000,48,0,12724.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,677,1440.000000,49,0,40995.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1286,1446.010000,49,0,77525.010000,604.410500,extended,nbiot,60 +on0,1,6,24,0,0,0,1494.020000,49,0,-1.000000,753.647000,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,49,0,85455.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,49,0,4288.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,427,1440.000000,49,0,25423.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,49,0,68541.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,900,1440.000000,50,0,56115.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1473.020000,50,0,-1.000000,797.260000,extended,nbiot,60 +on2,0,0,24,1,0,24,1444.010000,50,0,3654.010000,603.610500,extended,nbiot,60 +on3,0,0,24,1,0,1080,1440.000000,50,0,66219.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,725,1440.000000,50,0,46467.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,480,1440.000000,50,0,28876.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,45,1465.010000,50,0,907.010000,612.010500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1140,1440.000000,50,0,71107.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,50,0,9204.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1200,1440.000000,51,0,74978.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,51,0,12713.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1502.020000,51,0,-1.000000,808.860000,extended,nbiot,60 +on6,0,0,24,1,0,717,1477.010000,51,0,42308.010000,616.810500,extended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,51,0,42356.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,1355,1455.010000,51,0,82494.010000,608.010500,extended,nbiot,60 +on11,0,0,24,1,0,929,1449.010000,51,0,55602.010000,605.610500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,420,1440.000000,51,0,27548.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,51,0,67874.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,52,0,23419.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,52,0,1663.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,614,1440.000000,52,0,39604.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,52,0,33129.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1454.020000,52,0,-1.000000,763.653500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1360,1460.010000,52,0,80276.010000,610.010500,extended,nbiot,60 +on11,0,0,24,1,0,297,1477.010000,52,0,14896.010000,616.810500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,730,1440.000000,52,0,44566.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,53,0,33040.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,53,0,27281.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,53,0,15618.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,53,0,37902.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1068,1468.010000,53,0,61774.010000,613.210500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1519.040000,53,0,-1.000000,763.655000,extended,nbiot,60 +on1,0,0,24,1,0,245,1440.000000,53,0,15658.020000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1349,1449.010000,54,0,80510.010000,605.610500,extended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,54,0,1032.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,457,1457.010000,54,0,28803.010000,608.810500,extended,nbiot,60 +on3,0,0,24,1,0,720,1440.000000,54,0,45698.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1054,1454.020000,54,0,61480.020000,607.614500,extended,nbiot,60 +on9,0,0,24,1,0,1073,1473.010000,54,0,61440.010000,615.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1474.030000,54,0,-1.000000,771.657500,extended,nbiot,60 +on1,0,0,24,1,0,780,1440.000000,54,0,48892.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,55,0,42199.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,55,0,66808.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,960,1440.000000,55,0,59352.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,401,1461.010000,55,0,24221.010000,610.410500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,502,1442.010000,55,0,30894.010000,602.810500,extended,nbiot,60 +on6,0,0,24,1,0,540,1440.000000,55,0,33058.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1488.020000,55,0,-1.000000,751.247000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1200,1440.000000,56,0,75431.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,2,24,0,0,0,1449.010000,56,0,-1.000000,631.617000,extended,nbiot,60 +on12,0,0,24,1,0,1074,1474.010000,56,0,64845.010000,615.610500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,524,1464.010000,57,0,30942.010000,611.610500,extended,nbiot,60 +on0,1,4,24,0,0,0,1445.010000,57,0,-1.000000,682.030000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1165,1445.010000,57,0,68496.010000,604.010500,extended,nbiot,60 +on7,0,0,24,1,0,420,1440.000000,57,0,25843.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,570,1450.010000,57,0,35162.010000,606.010500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,55,1475.020000,58,0,3320.020000,616.014500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,9,1440.000000,58,0,3280.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,58,0,36392.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1464.030000,58,0,-1.000000,715.644500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1068,1468.010000,58,0,63290.010000,613.210500,extended,nbiot,60 +on6,0,0,24,1,0,865,1445.010000,58,0,50477.010000,604.010500,extended,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,59,0,439.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,1200,1440.000000,59,0,74943.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,888,1468.010000,59,0,51171.010000,613.210500,extended,nbiot,60 +on10,0,0,24,1,0,360,1440.000000,59,0,24492.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1483.040000,59,0,-1.000000,775.261500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1080,1440.000000,59,0,67294.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,540,1440.000000,59,0,35552.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,59,0,17140.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,77,1440.000000,60,0,4629.020000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,118,1478.010000,60,0,4589.010000,617.210500,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,60,0,69225.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,480,1440.000000,60,0,32380.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,765,1465.010000,60,0,43913.010000,612.010500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1475.030000,60,0,-1.000000,720.044500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,584,1464.020000,61,0,34819.020000,611.614500,extended,nbiot,60 +on10,0,0,24,1,0,488,1440.000000,61,0,32215.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,61,0,43151.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,61,0,6841.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1480.030000,61,0,-1.000000,722.044500,extended,nbiot,60 +on2,0,0,24,1,0,589,1469.010000,61,0,34779.010000,613.610500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,951,1471.010000,62,0,56742.010000,614.410500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1423,1463.010000,62,0,84826.010000,611.210500,extended,nbiot,60 +on6,0,0,24,1,0,1096,1440.000000,62,0,65906.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,62,0,-1.000000,706.032500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,75,1440.000000,62,0,4155.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,480,1440.000000,62,0,30107.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1065,1465.010000,63,0,61681.010000,612.010500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1167,1447.010000,63,0,70075.010000,604.810500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,581,1461.010000,63,0,34280.010000,610.410500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1501.040000,63,0,-1.000000,808.468000,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,63,0,23549.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,63,0,36607.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,280,1460.010000,63,0,14882.010000,610.010500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1320,1440.000000,63,0,80334.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,63,0,64981.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1504.030000,64,0,-1.000000,783.657500,extended,nbiot,60 +on12,0,0,24,1,0,206,1446.010000,64,0,14199.010000,604.410500,extended,nbiot,60 +on8,0,0,24,1,0,240,1440.000000,64,0,14489.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,540,1440.000000,64,0,34850.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,180,1440.000000,64,0,14246.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,64,0,61328.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,64,0,56428.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,543,1440.000000,64,0,34797.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,300,1440.000000,65,0,19744.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1080,1440.000000,65,0,68428.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,63,1440.000000,65,0,6408.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1479.040000,65,0,-1.000000,773.661500,extended,nbiot,60 +on11,0,0,24,1,0,221,1461.010000,65,0,14143.010000,610.410500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,900,1440.000000,65,0,54557.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,480,1440.000000,65,0,31620.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,610,1440.000000,65,0,39561.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,66,0,6670.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,240,1440.000000,66,0,15482.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,421,1440.000000,66,0,27559.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,125,1440.000000,66,0,7658.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,1375,1475.010000,66,0,82352.010000,616.010500,extended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,66,0,7704.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1519.040000,66,0,-1.000000,815.668000,extended,nbiot,60 +on8,0,0,24,1,0,1225,1445.010000,66,0,75023.010000,604.010500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,66,0,57303.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1153,1440.000000,67,0,69525.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,43,1463.010000,67,0,2836.010000,611.210500,extended,nbiot,60 +on5,0,0,24,1,0,960,1440.000000,67,0,58628.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1533.050000,67,0,-1.000000,821.272000,extended,nbiot,60 +on6,0,0,24,1,0,300,1440.000000,67,0,20093.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,32,1452.020000,67,0,2876.020000,606.814500,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,67,0,6050.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,540,1440.000000,67,0,33117.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,167,1467.010000,67,0,9705.010000,612.810500,extended,nbiot,60 +on7,0,0,24,1,0,0,1440.000000,68,0,1059.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,500,1440.010000,68,0,32277.010000,602.010500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,967,1440.000000,68,0,58550.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,68,0,75140.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,1260,1440.000000,68,0,78029.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1449.010000,68,0,-1.000000,761.649500,extended,nbiot,60 +on11,0,0,24,1,0,390,1450.010000,68,0,22166.010000,606.010500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1340,1440.010000,68,0,82446.010000,602.010500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1344,1444.010000,69,0,79353.010000,603.610500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,319,1440.000000,69,0,19433.010000,602.006500,extended,nbiot,60 +on0,1,4,24,0,0,0,1442.010000,69,0,-1.000000,680.830000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,240,1440.000000,69,0,18013.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,471,1471.010000,69,0,28265.010000,614.410500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,540,1440.000000,70,0,33809.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,307,1440.000000,70,0,18424.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,70,0,42415.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,70,0,26542.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1356,1456.010000,70,0,81632.010000,608.410500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1450.010000,70,0,-1.000000,762.049500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,787,1440.000000,70,0,47068.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,35,1455.010000,70,0,93.010000,608.010500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,213,1453.010000,71,0,13308.010000,607.210500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,60,1440.000000,71,0,6171.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,480,1440.000000,71,0,32117.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,71,0,78458.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1479.020000,71,0,-1.000000,721.640500,extended,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,71,0,35212.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,853,1440.000000,72,0,52367.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1262,1440.000000,72,0,77657.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,385,1445.010000,72,0,23603.010000,604.010500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,600,1440.000000,72,0,36159.010000,602.006500,extended,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,72,0,-1.000000,680.026000,extended,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,73,0,77449.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,0,1440.000000,73,0,918.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,174,1474.010000,73,0,8728.010000,615.610500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1020,1440.000000,73,0,63252.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1483.020000,73,0,-1.000000,723.240500,extended,nbiot,60 +on9,0,0,24,1,0,1353,1453.010000,73,0,80826.010000,607.210500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,16,1440.000000,74,0,976.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,447,1447.010000,74,0,25617.010000,604.810500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1482.020000,74,0,-1.000000,748.847000,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,74,0,70646.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1020,1440.000000,74,0,63851.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,960,1440.000000,74,0,58307.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,74,0,23241.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,816,1456.020000,75,0,47683.020000,608.414500,extended,nbiot,60 +on10,0,0,24,1,0,1220,1440.010000,75,0,72904.010000,602.010500,extended,nbiot,60 +on4,0,0,24,1,0,995,1455.010000,75,0,60163.010000,608.010500,extended,nbiot,60 +on12,0,0,24,1,0,300,1440.000000,75,0,18927.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,479,1479.010000,75,0,26267.010000,617.610500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,790,1440.000000,75,0,47643.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,307,1440.000000,75,0,18967.020000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,75,0,9377.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,75,0,39077.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1510.050000,75,0,-1.000000,838.078500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,85,1445.010000,76,0,4206.010000,604.010500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1139,1479.010000,76,0,67350.010000,617.610500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,993,1453.010000,76,0,57986.010000,607.210500,extended,nbiot,60 +on1,0,0,24,1,0,1075,1475.010000,76,0,62168.010000,616.010500,extended,nbiot,60 +on9,0,0,24,1,0,574,1454.010000,76,0,35175.010000,607.610500,extended,nbiot,60 +on0,1,7,24,0,0,0,1460.020000,76,0,-1.000000,766.053500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,661,1440.000000,76,0,40363.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,703,1463.020000,76,0,40403.020000,611.214500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,8,1440.000000,77,0,2968.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,60,1440.000000,77,0,5402.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1320,1440.000000,77,0,79755.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1141,1440.000000,77,0,69273.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1385,1440.000000,77,0,86171.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1465.010000,77,0,-1.000000,716.036500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,913,1440.000000,78,0,57415.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,757,1457.010000,78,0,45753.010000,608.810500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1260,1440.000000,78,0,75962.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,627,1447.010000,78,0,37597.010000,604.810500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1424,1464.010000,78,0,86289.010000,611.610500,extended,nbiot,60 +on0,1,5,24,0,0,0,1450.010000,78,0,-1.000000,710.036500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,79,0,7744.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,79,0,42578.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,724,1440.000000,79,0,45685.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,79,0,73041.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1206,1440.000000,79,0,73081.020000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1508.030000,79,0,-1.000000,733.244500,extended,nbiot,60 +on12,0,0,24,1,0,420,1440.000000,80,0,27327.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,619,1440.000000,80,0,36988.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1540.060000,80,0,-1.000000,798.069500,extended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,80,0,11674.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1200,1440.000000,80,0,72733.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,152,1452.010000,80,0,10755.010000,606.810500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,607,1440.000000,80,0,37028.020000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,480,1440.000000,80,0,32206.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,310,1440.000000,81,0,19831.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,630,1450.010000,81,0,36233.010000,606.010500,extended,nbiot,60 +on8,0,0,24,1,0,154,1454.010000,81,0,9712.010000,607.610500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,extended,nbiot,60 +on9,0,0,24,1,0,382,1442.010000,81,0,22179.010000,602.810500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,81,0,-1.000000,706.032500,extended,nbiot,60 +on2,0,0,24,1,0,1291,1451.010000,81,0,77082.010000,606.410500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,446,1446.010000,82,0,25581.010000,604.410500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,776,1476.010000,82,0,43363.010000,616.410500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,705,1465.010000,82,0,41053.010000,612.010500,extended,nbiot,60 +on4,0,0,24,1,0,1200,1440.000000,82,0,75398.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,180,1440.000000,82,0,13054.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,82,0,-1.000000,732.039000,extended,nbiot,60 +on2,0,0,24,1,0,275,1455.010000,82,0,17248.010000,608.010500,extended,nbiot,60 +on6,0,0,24,1,0,84,1444.010000,83,0,5241.010000,603.610500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1080,1440.000000,83,0,65973.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,83,0,45529.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1038,1440.000000,83,0,62556.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,18,1440.000000,83,0,3209.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,1320,1440.000000,83,0,80171.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1518.040000,83,0,-1.000000,815.268000,extended,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,83,0,85594.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,120,1440.000000,83,0,8526.010000,602.006500,extended,nbiot,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,900,1440.000000,84,0,56293.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,659,1479.010000,84,0,38037.010000,617.610500,extended,nbiot,60 +on2,0,0,24,1,0,340,1460.010000,84,0,21133.010000,610.010500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,442,1442.010000,84,0,28389.010000,602.810500,extended,nbiot,60 +on4,0,0,24,1,0,780,1440.000000,84,0,49098.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,84,0,5032.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1488.030000,84,0,-1.000000,751.251000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,596,1476.010000,85,0,35795.010000,616.410500,extended,nbiot,60 +on8,0,0,24,1,0,669,1440.000000,85,0,41291.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1024,1440.000000,85,0,64331.020000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,1071,1471.010000,85,0,64291.010000,614.410500,extended,nbiot,60 +on0,1,5,24,0,0,0,1490.030000,85,0,-1.000000,726.044500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1320,1440.000000,85,0,81564.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1497.020000,86,0,-1.000000,806.860000,extended,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,86,0,40859.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,425,1440.000000,86,0,25692.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,831,1471.010000,86,0,47045.010000,614.410500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1320,1440.000000,86,0,81510.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,588,1468.010000,86,0,35863.010000,613.210500,extended,nbiot,60 +on5,0,0,24,1,0,262,1442.010000,86,0,14945.010000,602.810500,extended,nbiot,60 +on3,0,0,24,1,0,997,1457.010000,86,0,60638.010000,608.810500,extended,nbiot,60 +on11,0,0,24,1,0,368,1440.000000,86,0,22049.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,1161,1441.010000,87,0,69711.010000,602.410500,extended,nbiot,60 +on1,0,0,24,1,0,932,1452.010000,87,0,55666.010000,606.810500,extended,nbiot,60 +on4,0,0,24,1,0,1397,1440.000000,87,0,83589.010000,602.006500,extended,nbiot,60 +on0,1,10,24,0,0,0,1554.040000,87,0,-1.000000,881.681000,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,87,0,40053.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,300,1440.000000,87,0,18911.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,87,0,5485.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,322,1442.010000,87,0,18855.010000,602.810500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,58,1478.010000,87,0,637.010000,617.210500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,384,1444.010000,87,0,24025.010000,603.610500,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,87,0,36024.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,551,1440.000000,88,0,33484.020000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,0,1440.000000,88,0,3350.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1525.060000,88,0,-1.000000,818.076000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,379,1440.000000,88,0,21805.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,192,1440.000000,88,0,13405.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,396,1456.020000,88,0,21845.020000,608.414500,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,88,0,13462.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,480,1440.000000,88,0,29186.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,88,0,33444.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,980,1440.020000,89,0,61005.020000,602.014500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,120,1440.000000,89,0,7450.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,24,1444.010000,89,0,1263.010000,603.610500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,89,0,3897.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,960,1440.000000,89,0,60965.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1515.040000,89,0,-1.000000,736.048500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,510,1450.010000,90,0,29407.010000,606.010500,extended,nbiot,60 +on8,0,0,24,1,0,1380,1440.000000,90,0,82856.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1019,1479.010000,90,0,60496.010000,617.610500,extended,nbiot,60 +on12,0,0,24,1,0,1288,1448.020000,90,0,78409.020000,605.214500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1264,1440.000000,90,0,78369.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,360,1440.000000,90,0,25109.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1480.030000,90,0,-1.000000,748.051000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,91,0,81777.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1481.020000,91,0,-1.000000,722.440500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,91,0,17408.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,420,1440.000000,91,0,26791.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,354,1474.010000,91,0,18840.010000,615.610500,extended,nbiot,60 +on8,0,0,24,1,0,1140,1440.000000,91,0,70710.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,92,0,30911.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1528.030000,92,0,-1.000000,715.238000,extended,nbiot,60 +on11,0,0,24,1,0,634,1454.010000,92,0,36742.010000,607.610500,extended,nbiot,60 +on12,0,0,24,1,0,60,1440.000000,92,0,6037.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,92,0,62101.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,93,0,39282.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,508,1448.010000,93,0,32071.010000,605.210500,extended,nbiot,60 +on7,0,0,24,1,0,120,1440.000000,93,0,9174.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,244,1440.000000,93,0,15093.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,60,1440.000000,93,0,5632.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,93,0,15148.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1500.020000,93,0,-1.000000,782.053500,extended,nbiot,60 +on8,0,0,24,1,0,1001,1461.010000,93,0,60727.010000,610.410500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,780,1440.000000,94,0,48898.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,349,1469.010000,94,0,19376.010000,613.610500,extended,nbiot,60 +on2,0,0,24,1,0,629,1449.010000,94,0,37023.010000,605.610500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,300,1440.000000,94,0,19429.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1479.020000,94,0,-1.000000,695.634000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,326,1446.010000,95,0,20201.010000,604.410500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,540,1440.000000,95,0,35693.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1432,1472.010000,95,0,84359.010000,614.810500,extended,nbiot,60 +on0,1,8,24,0,0,0,1470.020000,95,0,-1.000000,796.060000,extended,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,95,0,73.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,95,0,64538.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,95,0,22238.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1003,1463.010000,95,0,59237.010000,611.210500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,96,1456.010000,95,0,5672.010000,608.410500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,96,0,44433.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1203,1440.000000,96,0,74435.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,1095,1440.000000,96,0,67094.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,599,1479.010000,96,0,36081.010000,617.610500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,96,0,2383.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1460.020000,96,0,-1.000000,740.047000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1138,1478.020000,96,0,67134.020000,617.214500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1196,1476.010000,97,0,70414.010000,616.410500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,420,1440.000000,97,0,28619.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,298,1478.010000,97,0,17859.010000,617.210500,extended,nbiot,60 +on8,0,0,24,1,0,1080,1440.000000,97,0,66472.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,97,0,5758.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1478.010000,97,0,-1.000000,773.249500,extended,nbiot,60 +on7,0,0,24,1,0,56,1476.010000,97,0,2174.010000,616.410500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,753,1453.010000,97,0,43661.010000,607.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,98,0,76514.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,786,1440.000000,98,0,47187.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,1020,1440.000000,98,0,62366.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1236,1456.010000,98,0,72419.010000,608.410500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1382,1440.000000,98,0,84990.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1515.030000,98,0,-1.000000,788.057500,extended,nbiot,60 +on1,0,0,24,1,0,983,1443.010000,98,0,60082.010000,603.210500,extended,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,98,0,37476.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,36,1456.020000,99,0,882.020000,608.414500,extended,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,99,0,842.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,83,1443.010000,99,0,5190.010000,603.210500,extended,nbiot,60 +on2,0,0,24,1,0,780,1440.000000,99,0,47091.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,99,0,13012.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,99,0,17041.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,99,0,42117.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,489,1440.000000,99,0,31070.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,420,1440.000000,99,0,26156.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,10,24,0,0,0,1541.060000,99,0,-1.000000,876.489000,extended,nbiot,60 +on9,0,0,24,1,0,647,1467.010000,99,0,39222.010000,612.810500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1340,1440.010000,100,0,80798.010000,602.010500,extended,nbiot,60 +on2,0,0,24,1,0,920,1440.010000,100,0,55036.010000,602.010500,extended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,100,0,37677.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1459.010000,100,0,-1.000000,713.636500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,195,1440.000000,100,0,12812.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,129,1440.000000,100,0,8835.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1491.020000,101,0,-1.000000,700.434000,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,101,0,83208.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,103,1463.010000,101,0,5138.010000,611.210500,extended,nbiot,60 +on9,0,0,24,1,0,207,1447.010000,101,0,12783.010000,604.810500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,960,1440.000000,101,0,61156.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,874,1454.010000,102,0,51401.010000,607.610500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,737,1440.000000,102,0,46032.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,102,0,-1.000000,654.019500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1282,1442.010000,102,0,76783.010000,602.810500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,728,1440.000000,103,0,46804.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,382,1442.010000,103,0,22387.010000,602.810500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1475.020000,103,0,-1.000000,746.047000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1200,1440.000000,103,0,75610.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,600,1440.000000,103,0,38682.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,527,1467.010000,103,0,31176.010000,612.810500,extended,nbiot,60 +on11,0,0,24,1,0,1367,1467.010000,103,0,79662.010000,612.810500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,407,1467.010000,104,0,24585.010000,612.810500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1460.020000,104,0,-1.000000,766.053500,extended,nbiot,60 +on8,0,0,24,1,0,262,1442.010000,104,0,15340.010000,602.810500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,104,0,63685.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,904,1440.000000,104,0,55914.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,406,1466.020000,104,0,24625.020000,612.414500,extended,nbiot,60 +on2,0,0,24,1,0,235,1475.010000,104,0,12392.010000,616.010500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,833,1473.010000,104,0,47249.010000,615.210500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,480,1440.000000,105,0,28895.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,105,0,12662.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1524.030000,105,0,-1.000000,713.638000,extended,nbiot,60 +on10,0,0,24,1,0,1380,1440.000000,105,0,84915.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1361,1461.010000,105,0,80429.010000,610.410500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,780,1440.000000,106,0,49192.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,240,1440.000000,106,0,16856.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1069,1469.010000,106,0,62961.010000,613.610500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,35,1455.010000,106,0,3247.010000,608.010500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1140,1440.000000,106,0,71926.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,86,1446.010000,106,0,5577.010000,604.410500,extended,nbiot,60 +on10,0,0,24,1,0,787,1440.000000,106,0,49232.020000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1515.040000,106,0,-1.000000,788.061500,extended,nbiot,60 +on1,0,0,24,1,0,300,1440.000000,107,0,18528.010000,602.006500,extended,nbiot,60 +on0,1,4,24,0,0,0,1453.010000,107,0,-1.000000,685.230000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,494,1440.000000,107,0,30537.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1351,1451.010000,107,0,79757.010000,606.410500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1175,1455.010000,107,0,69142.010000,608.010500,extended,nbiot,60 +on7,0,0,24,1,0,420,1440.000000,108,0,25978.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,374,1440.000000,108,0,24633.020000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1485.030000,108,0,-1.000000,724.044500,extended,nbiot,60 +on10,0,0,24,1,0,144,1444.010000,108,0,9945.010000,603.610500,extended,nbiot,60 +on9,0,0,24,1,0,772,1472.010000,108,0,45793.010000,614.810500,extended,nbiot,60 +on8,0,0,24,1,0,366,1440.000000,108,0,24593.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,335,1455.010000,109,0,20162.010000,608.010500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1473.010000,109,0,-1.000000,719.236500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,109,0,6930.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,625,1445.010000,109,0,38665.010000,604.010500,extended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,109,0,8354.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,239,1479.010000,109,0,11822.010000,617.610500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1488.020000,110,0,-1.000000,751.247000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,476,1476.010000,110,0,26511.010000,616.410500,extended,nbiot,60 +on3,0,0,24,1,0,27,1447.010000,110,0,2285.010000,604.810500,extended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,110,0,43756.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,480,1440.000000,110,0,31832.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,960,1440.000000,110,0,60284.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,62,1440.000000,110,0,6164.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1444.010000,111,0,-1.000000,733.643000,extended,nbiot,60 +on4,0,0,24,1,0,480,1440.000000,111,0,30155.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,400,1460.010000,111,0,24248.010000,610.010500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,798,1440.000000,111,0,47500.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1052,1452.010000,111,0,62711.010000,606.810500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,111,0,44344.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,966,1440.000000,111,0,60265.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1397,1440.000000,112,0,82864.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1493.020000,112,0,-1.000000,779.253500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,37,1457.010000,112,0,1296.010000,608.810500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,112,0,39958.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,1163,1443.010000,112,0,71781.010000,603.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,815,1455.010000,112,0,48290.010000,608.010500,extended,nbiot,60 +on5,0,0,24,1,0,1289,1449.010000,112,0,77293.010000,605.610500,extended,nbiot,60 +on7,0,0,24,1,0,300,1440.000000,112,0,18995.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,900,1440.000000,113,0,57367.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,113,0,27878.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1471.020000,113,0,-1.000000,666.427500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,788,1440.000000,113,0,50046.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,680,1440.010000,114,0,41581.010000,602.010500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,114,0,64364.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,114,0,22286.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,667,1440.000000,114,0,41621.020000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,364,1440.000000,114,0,22326.020000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,844,1440.000000,114,0,52230.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,780,1440.000000,114,0,50276.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1508.050000,114,0,-1.000000,785.265500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1482.030000,115,0,-1.000000,748.851000,extended,nbiot,60 +on10,0,0,24,1,0,531,1471.010000,115,0,31604.010000,614.410500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,935,1455.010000,115,0,57529.010000,608.010500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,115,0,36640.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,115,0,13712.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,240,1440.000000,115,0,16226.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,201,1441.020000,115,0,13752.020000,602.414500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1260,1440.000000,116,0,75733.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1519.040000,116,0,-1.000000,763.655000,extended,nbiot,60 +on2,0,0,24,1,0,540,1440.000000,116,0,32722.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,1080,1440.000000,116,0,67133.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,607,1440.000000,116,0,39381.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,660,1440.000000,116,0,42758.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,94,1454.010000,116,0,6896.010000,607.610500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,900,1440.000000,117,0,55446.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,117,0,4115.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1480.030000,117,0,-1.000000,696.038000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1020,1440.000000,117,0,62632.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,117,0,22323.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1371,1471.020000,118,0,82038.020000,614.414500,extended,nbiot,60 +on6,0,0,24,1,0,1212,1440.000000,118,0,73803.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1327,1440.000000,118,0,81998.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,480,1440.000000,118,0,31537.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,180,1440.000000,118,0,12078.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1414,1454.010000,118,0,86017.010000,607.610500,extended,nbiot,60 +on0,1,8,24,0,0,0,1464.030000,118,0,-1.000000,793.664000,extended,nbiot,60 +on5,0,0,24,1,0,360,1440.000000,118,0,24524.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,118,0,35520.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1218,1440.000000,119,0,75501.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,1020,1440.000000,119,0,64116.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,300,1440.000000,119,0,18157.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,360,1440.000000,119,0,23285.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,900,1440.000000,119,0,57439.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,39,1459.010000,119,0,2371.010000,609.610500,extended,nbiot,60 +on7,0,0,24,1,0,1319,1479.010000,119,0,77389.010000,617.610500,extended,nbiot,60 +on0,1,10,24,0,0,0,1568.040000,119,0,-1.000000,887.281000,extended,nbiot,60 +on11,0,0,24,1,0,1200,1440.000000,119,0,75557.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,1380,1440.000000,119,0,85428.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,824,1464.010000,119,0,47322.010000,611.610500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,607,1440.000000,120,0,37573.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,491,1440.000000,120,0,31934.020000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,420,1440.000000,120,0,28165.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,491,1440.000000,120,0,31894.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,120,0,49049.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,51,1471.010000,120,0,1295.010000,614.410500,extended,nbiot,60 +on0,1,6,24,0,0,0,1479.030000,120,0,-1.000000,747.651000,extended,nbiot,60 +on8,0,0,24,1,0,240,1440.000000,121,0,16542.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,539,1479.010000,121,0,32275.010000,617.610500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1329,1440.000000,121,0,80183.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,660,1440.000000,121,0,39731.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,120,1440.000000,121,0,10384.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,778,1478.010000,121,0,46889.010000,617.210500,extended,nbiot,60 +on5,0,0,24,1,0,836,1476.020000,121,0,46929.020000,616.414500,extended,nbiot,60 +on0,1,8,24,0,0,0,1475.030000,121,0,-1.000000,798.064000,extended,nbiot,60 +on4,0,0,24,1,0,1265,1440.000000,121,0,76644.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1140,1440.000000,122,0,68832.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,122,0,33642.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1475.020000,122,0,-1.000000,746.047000,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,122,0,83816.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,322,1442.010000,122,0,20060.010000,602.810500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,833,1473.010000,122,0,48002.010000,615.210500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,120,1440.000000,122,0,8078.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,318,1440.000000,123,0,20879.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,123,0,16306.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,795,1440.000000,123,0,48032.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,535,1475.010000,123,0,30038.010000,616.010500,extended,nbiot,60 +on10,0,0,24,1,0,431,1440.000000,123,0,26814.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1455.010000,123,0,-1.000000,712.036500,extended,nbiot,60 +on1,0,0,24,1,0,1131,1471.010000,124,0,66761.010000,614.410500,extended,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,124,0,44031.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,540,1440.000000,124,0,33479.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,600,1440.000000,124,0,37093.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,124,0,30187.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,563,1443.010000,124,0,33425.010000,603.210500,extended,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,124,0,3087.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,300,1440.000000,124,0,19595.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1525.040000,124,0,-1.000000,844.074500,extended,nbiot,60 +on4,0,0,24,1,0,1380,1440.000000,124,0,85830.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,32,1452.010000,125,0,1181.010000,606.810500,extended,nbiot,60 +on2,0,0,24,1,0,212,1452.010000,125,0,13886.010000,606.810500,extended,nbiot,60 +on8,0,0,24,1,0,809,1449.010000,125,0,48960.010000,605.610500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,900,1440.000000,125,0,55103.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,600,1440.000000,125,0,37630.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1478.010000,125,0,-1.000000,721.236500,extended,nbiot,60 +on12,0,0,24,1,0,278,1458.010000,126,0,16342.010000,609.210500,extended,nbiot,60 +on9,0,0,24,1,0,424,1440.000000,126,0,25668.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,799,1440.000000,126,0,48318.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,126,0,11587.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1456.020000,126,0,-1.000000,816.466500,extended,nbiot,60 +on6,0,0,24,1,0,607,1440.000000,126,0,36322.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,327,1447.010000,126,0,19145.010000,604.810500,extended,nbiot,60 +on3,0,0,24,1,0,130,1440.000000,126,0,8477.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,126,0,42987.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,1106,1446.010000,126,0,67498.010000,604.410500,extended,nbiot,60 +on4,0,0,24,1,0,0,1440.000000,127,0,1414.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1517.040000,127,0,-1.000000,788.861500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,411,1471.010000,127,0,21981.010000,614.410500,extended,nbiot,60 +on11,0,0,24,1,0,960,1440.000000,127,0,58563.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,127,0,1463.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,375,1440.000000,127,0,22021.020000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,554,1440.000000,127,0,32732.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,294,1474.010000,127,0,15438.010000,615.610500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,614,1440.000000,128,0,39033.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1324,1440.000000,128,0,80371.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,960,1440.000000,128,0,60955.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,209,1449.010000,128,0,12891.010000,605.610500,extended,nbiot,60 +on2,0,0,24,1,0,303,1440.000000,128,0,19521.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,755,1455.010000,128,0,45770.010000,608.010500,extended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,128,0,-1.000000,732.039000,extended,nbiot,60 +on1,0,0,24,1,0,276,1456.010000,129,0,18049.010000,608.410500,extended,nbiot,60 +on0,1,8,24,0,0,0,1530.040000,129,0,-1.000000,820.068000,extended,nbiot,60 +on4,0,0,24,1,0,712,1472.010000,129,0,41188.010000,614.810500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,660,1440.000000,129,0,41239.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,779,1479.010000,129,0,45300.010000,617.610500,extended,nbiot,60 +on3,0,0,24,1,0,945,1465.010000,129,0,57088.010000,612.010500,extended,nbiot,60 +on10,0,0,24,1,0,16,1440.000000,129,0,2377.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,300,1440.000000,129,0,18108.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,732,1440.000000,129,0,45340.020000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,686,1446.010000,130,0,40525.010000,604.410500,extended,nbiot,60 +on3,0,0,24,1,0,360,1440.000000,130,0,21897.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,322,1442.010000,130,0,18489.010000,602.810500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,660,1440.000000,130,0,40572.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,594,1474.010000,130,0,33353.010000,615.610500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,179,1479.010000,130,0,8831.010000,617.610500,extended,nbiot,60 +on0,1,8,24,0,0,0,1514.030000,130,0,-1.000000,813.664000,extended,nbiot,60 +on1,0,0,24,1,0,862,1442.010000,130,0,51580.010000,602.810500,extended,nbiot,60 +on2,0,0,24,1,0,1200,1440.000000,130,0,72045.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,987,1447.010000,131,0,60498.010000,604.810500,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,131,0,34584.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,720,1440.000000,131,0,44224.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,98,1458.010000,131,0,6717.010000,609.210500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,131,0,24309.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1485.030000,131,0,-1.000000,724.044500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1471.040000,132,0,-1.000000,770.461500,extended,nbiot,60 +on4,0,0,24,1,0,1380,1440.000000,132,0,83296.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,277,1457.010000,132,0,16870.010000,608.810500,extended,nbiot,60 +on11,0,0,24,1,0,634,1454.010000,132,0,36881.010000,607.610500,extended,nbiot,60 +on7,0,0,24,1,0,60,1440.000000,132,0,5611.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,1046,1446.020000,132,0,64142.020000,604.414500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1031,1440.000000,132,0,64102.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,159,1459.010000,132,0,9225.010000,609.610500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,58,1478.010000,133,0,858.010000,617.210500,extended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,133,0,35733.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,3,1440.000000,133,0,898.020000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,120,1440.000000,133,0,7423.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,133,0,29401.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,100,1460.010000,133,0,6095.010000,610.010500,extended,nbiot,60 +on0,1,8,24,0,0,0,1460.020000,133,0,-1.000000,792.060000,extended,nbiot,60 +on9,0,0,24,1,0,865,1445.010000,133,0,53650.010000,604.010500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,634,1454.010000,133,0,36502.010000,607.610500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,840,1440.000000,134,0,53633.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,134,0,10371.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,270,1450.020000,134,0,15266.020000,606.014500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,710,1470.010000,134,0,41818.010000,614.010500,extended,nbiot,60 +on5,0,0,24,1,0,1200,1440.000000,134,0,73230.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,1109,1449.010000,134,0,68281.010000,605.610500,extended,nbiot,60 +on12,0,0,24,1,0,264,1444.010000,134,0,15226.010000,603.610500,extended,nbiot,60 +on8,0,0,24,1,0,720,1440.000000,134,0,44585.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,600,1440.000000,134,0,36420.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1518.060000,134,0,-1.000000,841.282500,extended,nbiot,60 +on12,0,0,24,1,0,45,1465.010000,135,0,3609.010000,612.010500,extended,nbiot,60 +on0,1,9,24,0,0,0,1546.060000,135,0,-1.000000,852.482500,extended,nbiot,60 +on6,0,0,24,1,0,277,1457.020000,135,0,14516.020000,608.814500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1020,1440.000000,135,0,61836.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,1228,1448.010000,135,0,74248.010000,605.210500,extended,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,135,0,14476.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,840,1440.000000,135,0,51167.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,831,1471.010000,135,0,50378.010000,614.410500,extended,nbiot,60 +on8,0,0,24,1,0,420,1440.000000,135,0,26457.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,135,0,29889.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,0,1440.000000,136,0,1470.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,649,1469.010000,136,0,36943.010000,613.610500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,136,0,14559.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,136,0,44542.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,86,1446.010000,136,0,7240.010000,604.410500,extended,nbiot,60 +on4,0,0,24,1,0,989,1449.010000,136,0,59260.010000,605.610500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1498.030000,136,0,-1.000000,755.251000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,137,0,64006.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,660,1440.000000,137,0,40917.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,900,1440.000000,137,0,55615.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,610,1440.000000,137,0,38342.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,360,1440.000000,137,0,23711.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,137,0,9680.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1591.060000,137,0,-1.000000,870.482500,extended,nbiot,60 +on11,0,0,24,1,0,1380,1440.000000,137,0,85307.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,240,1440.000000,137,0,15003.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,420,1440.000000,137,0,28458.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,138,0,35858.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,671,1440.000000,138,0,40719.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,84,1444.010000,138,0,6047.010000,603.610500,extended,nbiot,60 +on4,0,0,24,1,0,732,1440.000000,138,0,45857.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1460.020000,138,0,-1.000000,714.040500,extended,nbiot,60 +on11,0,0,24,1,0,694,1454.020000,138,0,40759.020000,607.614500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1538.040000,139,0,-1.000000,823.268000,extended,nbiot,60 +on3,0,0,24,1,0,1380,1440.000000,139,0,83379.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,139,0,72149.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,240,1440.000000,139,0,15515.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,37,1457.010000,139,0,330.010000,608.810500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,977,1440.000000,139,0,58146.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,1140,1440.000000,139,0,71875.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,282,1462.010000,139,0,15468.010000,610.810500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,360,1440.000000,139,0,24667.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1080,1440.000000,140,0,66085.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,274,1454.010000,140,0,17303.010000,607.610500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,600,1440.000000,140,0,36722.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,140,0,10470.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,76,1440.000000,140,0,7084.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1472.020000,140,0,-1.000000,744.847000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,713,1473.010000,140,0,41204.010000,615.210500,extended,nbiot,60 +on3,0,0,24,1,0,300,1440.000000,141,0,21545.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,599,1479.010000,141,0,34252.010000,617.610500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1462.010000,141,0,-1.000000,688.830000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,974,1440.000000,141,0,58451.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,120,1440.000000,141,0,10079.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,720,1440.000000,142,0,46711.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,924,1444.010000,142,0,55419.010000,603.610500,extended,nbiot,60 +on3,0,0,24,1,0,95,1455.010000,142,0,5923.010000,608.010500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,142,0,20149.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,900,1440.000000,142,0,54072.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1480.020000,142,0,-1.000000,722.040500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,300,1440.000000,143,0,20390.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,360,1440.000000,143,0,23747.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1506.060000,143,0,-1.000000,784.469500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,498,1440.000000,143,0,32416.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1200,1440.000000,143,0,72407.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,660,1440.000000,143,0,41523.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,600,1440.000000,143,0,37449.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,536,1476.020000,143,0,32456.020000,616.414500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,42,1462.010000,144,0,553.010000,610.810500,extended,nbiot,60 +on12,0,0,24,1,0,21,1441.020000,144,0,593.020000,602.414500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1468.030000,144,0,-1.000000,717.244500,extended,nbiot,60 +on10,0,0,24,1,0,1310,1470.010000,144,0,76780.010000,614.010500,extended,nbiot,60 +on7,0,0,24,1,0,600,1440.000000,144,0,38588.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,780,1440.000000,144,0,49947.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,145,0,43613.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,32,1452.010000,145,0,2726.010000,606.810500,extended,nbiot,60 +on12,0,0,24,1,0,1253,1473.010000,145,0,74102.010000,615.210500,extended,nbiot,60 +on8,0,0,24,1,0,300,1440.000000,145,0,19066.010000,602.006500,extended,nbiot,60 +on0,1,10,24,0,0,0,1473.040000,145,0,-1.000000,849.281000,extended,nbiot,60 +on5,0,0,24,1,0,908,1440.000000,145,0,56116.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,539,1479.010000,145,0,31816.010000,617.610500,extended,nbiot,60 +on4,0,0,24,1,0,936,1456.020000,145,0,56156.020000,608.414500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,433,1440.000000,145,0,25481.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,145,0,61600.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,1185,1465.010000,145,0,71551.010000,612.010500,extended,nbiot,60 +on0,1,8,24,0,0,0,1502.040000,146,0,-1.000000,808.868000,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,146,0,29835.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,146,0,17358.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1080,1440.000000,146,0,66872.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1341,1441.010000,146,0,79768.010000,602.410500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,360,1440.000000,146,0,24054.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,220,1460.010000,146,0,11103.010000,610.010500,extended,nbiot,60 +on3,0,0,24,1,0,188,1440.000000,146,0,11143.020000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1076,1476.010000,146,0,62038.010000,616.410500,extended,nbiot,60 +on4,0,0,24,1,0,969,1440.000000,147,0,58816.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,455,1455.010000,147,0,26272.010000,608.010500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,840,1440.000000,147,0,51624.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1200,1440.000000,147,0,75154.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,609,1440.000000,147,0,36859.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1475.020000,147,0,-1.000000,720.040500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,611,1440.000000,148,0,38796.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,180,1440.000000,148,0,12100.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,42,1462.020000,148,0,1109.020000,610.814500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,960,1440.000000,148,0,59083.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,900,1440.000000,148,0,54996.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,468,1468.010000,148,0,27387.010000,613.210500,extended,nbiot,60 +on0,1,8,24,0,0,0,1497.040000,148,0,-1.000000,806.868000,extended,nbiot,60 +on12,0,0,24,1,0,52,1472.010000,148,0,1069.010000,614.810500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,743,1443.010000,148,0,44528.010000,603.210500,extended,nbiot,60 +on4,0,0,24,1,0,629,1449.010000,149,0,39261.010000,605.610500,extended,nbiot,60 +on2,0,0,24,1,0,1379,1479.010000,149,0,81306.010000,617.610500,extended,nbiot,60 +on6,0,0,24,1,0,538,1478.010000,149,0,29786.010000,617.210500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,285,1465.010000,149,0,15142.010000,612.010500,extended,nbiot,60 +on0,1,8,24,0,0,0,1474.010000,149,0,-1.000000,797.656000,extended,nbiot,60 +on10,0,0,24,1,0,1020,1440.000000,149,0,64240.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,18,1440.000000,149,0,1781.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,467,1467.010000,149,0,26954.010000,612.810500,extended,nbiot,60 +on5,0,0,24,1,0,240,1440.000000,149,0,15196.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1178,1458.010000,150,0,68703.010000,609.210500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,19,1440.000000,150,0,729.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,455,1455.010000,150,0,27107.010000,608.010500,extended,nbiot,60 +on6,0,0,24,1,0,876,1456.010000,150,0,53090.010000,608.410500,extended,nbiot,60 +on0,1,7,24,0,0,0,1452.010000,150,0,-1.000000,762.849500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,180,1440.000000,150,0,12099.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,551,1440.000000,150,0,35331.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,120,1440.000000,150,0,9475.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,780,1440.000000,151,0,48645.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,583,1463.010000,151,0,34241.010000,611.210500,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,151,0,65559.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,382,1442.010000,151,0,23350.010000,602.810500,extended,nbiot,60 +on2,0,0,24,1,0,660,1440.000000,151,0,41594.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,151,0,45816.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,151,0,36385.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1556.050000,151,0,-1.000000,856.478500,extended,nbiot,60 +on12,0,0,24,1,0,1380,1440.000000,151,0,85101.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,151,0,26781.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,0,1440.000000,152,0,3128.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1025,1440.000000,152,0,61395.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,960,1440.000000,152,0,60588.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,1100,1440.010000,152,0,66754.010000,602.010500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,470,1470.010000,152,0,27558.010000,614.010500,extended,nbiot,60 +on4,0,0,24,1,0,60,1440.000000,152,0,5591.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1477.020000,152,0,-1.000000,746.847000,extended,nbiot,60 +on1,0,0,24,1,0,600,1440.000000,153,0,36666.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,840,1440.000000,153,0,50530.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,805,1445.020000,153,0,47706.020000,604.014500,extended,nbiot,60 +on7,0,0,24,1,0,971,1440.000000,153,0,60175.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,300,1440.000000,153,0,20980.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1529.050000,153,0,-1.000000,819.672000,extended,nbiot,60 +on6,0,0,24,1,0,1380,1440.000000,153,0,84525.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,811,1451.010000,153,0,47666.010000,606.410500,extended,nbiot,60 +on5,0,0,24,1,0,1290,1450.010000,153,0,78997.010000,606.010500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,154,0,29065.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1219,1440.000000,154,0,73436.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,3,24,0,0,0,1455.010000,154,0,-1.000000,660.023500,extended,nbiot,60 +on6,0,0,24,1,0,1066,1466.010000,154,0,63267.010000,612.410500,extended,nbiot,60 +on0,1,6,24,0,0,0,1462.020000,155,0,-1.000000,740.847000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,589,1469.010000,155,0,33247.010000,613.610500,extended,nbiot,60 +on12,0,0,24,1,0,312,1440.000000,155,0,19009.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,155,0,78674.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1101,1441.010000,155,0,66020.010000,602.410500,extended,nbiot,60 +on11,0,0,24,1,0,257,1440.000000,155,0,17783.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,60,1440.000000,155,0,5031.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,1320,1440.000000,156,0,79468.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,74,1440.000000,156,0,6037.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,600,1440.000000,156,0,36801.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,420,1440.000000,156,0,25357.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1,1440.000000,156,0,3330.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,180,1440.000000,156,0,14369.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,440,1440.010000,156,0,25300.010000,602.010500,extended,nbiot,60 +on5,0,0,24,1,0,737,1440.000000,156,0,45859.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1504.020000,156,0,-1.000000,835.666500,extended,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,156,0,48160.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,640,1460.010000,157,0,38900.010000,610.010500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,167,1467.010000,157,0,8382.010000,612.810500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,157,0,11829.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,900,1440.000000,157,0,56179.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1061,1461.010000,157,0,63048.010000,610.410500,extended,nbiot,60 +on0,1,5,24,0,0,0,1496.020000,157,0,-1.000000,728.440500,extended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,158,0,32625.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,508,1448.010000,158,0,29242.010000,605.210500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,459,1459.010000,158,0,26464.010000,609.610500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,840,1440.000000,158,0,50746.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1464.010000,158,0,-1.000000,741.643000,extended,nbiot,60 +on9,0,0,24,1,0,240,1440.000000,158,0,17497.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,206,1446.010000,158,0,13377.010000,604.410500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,807,1447.010000,159,0,48722.010000,604.810500,extended,nbiot,60 +on0,1,9,24,0,0,0,1480.040000,159,0,-1.000000,826.074500,extended,nbiot,60 +on6,0,0,24,1,0,284,1464.020000,159,0,16360.020000,611.614500,extended,nbiot,60 +on8,0,0,24,1,0,706,1466.010000,159,0,42185.010000,612.410500,extended,nbiot,60 +on7,0,0,24,1,0,156,1456.020000,159,0,9026.020000,608.414500,extended,nbiot,60 +on12,0,0,24,1,0,52,1472.010000,159,0,3361.010000,614.810500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,155,1455.010000,159,0,8986.010000,608.010500,extended,nbiot,60 +on5,0,0,24,1,0,562,1442.010000,159,0,36012.010000,602.810500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1157,1440.000000,159,0,71081.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,250,1440.000000,159,0,16320.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,304,1440.000000,160,0,20450.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,10,1440.000000,160,0,347.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,309,1440.000000,160,0,20490.020000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,152,1452.010000,160,0,10683.010000,606.810500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1472.040000,160,0,-1.000000,744.855000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,480,1440.000000,160,0,32416.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,360,1440.000000,160,0,25037.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,180,1440.000000,161,0,12422.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,247,1440.000000,161,0,17417.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1568.040000,161,0,-1.000000,783.255000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1200,1440.000000,161,0,72242.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,3,1440.000000,161,0,2015.010000,602.006500,extended,nbiot,60 +on4,0,0,23,1,0,0,1432.000000,161,0,2072.010000,598.806500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,161,0,44386.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,271,1451.010000,162,0,14798.010000,606.410500,extended,nbiot,60 +on12,0,0,24,1,0,120,1440.000000,162,0,8724.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,162,0,11227.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1020,1440.000000,162,0,63804.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,480,1440.000000,162,0,31449.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,1364,1464.010000,162,0,82082.010000,611.610500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,360,1440.000000,162,0,24710.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1512.050000,162,0,-1.000000,812.872000,extended,nbiot,60 +on10,0,0,24,1,0,1260,1440.000000,162,0,77444.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,943,1463.010000,163,0,54980.010000,611.210500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,85,1445.010000,163,0,7258.010000,604.010500,extended,nbiot,60 +on4,0,0,24,1,0,335,1455.010000,163,0,19109.010000,608.010500,extended,nbiot,60 +on3,0,0,24,1,0,1020,1440.000000,163,0,63228.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1475.020000,163,0,-1.000000,798.060000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1183,1463.010000,163,0,71042.010000,611.210500,extended,nbiot,60 +on9,0,0,24,1,0,1352,1452.010000,163,0,80546.010000,606.810500,extended,nbiot,60 +on12,0,0,24,1,0,780,1440.000000,163,0,48295.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,366,1440.000000,163,0,23519.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,99,1459.010000,164,0,4401.010000,609.610500,extended,nbiot,60 +on0,1,9,24,0,0,0,1482.030000,164,0,-1.000000,826.870500,extended,nbiot,60 +on11,0,0,24,1,0,681,1441.010000,164,0,40015.010000,602.410500,extended,nbiot,60 +on9,0,0,24,1,0,120,1440.000000,164,0,8215.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,164,0,11334.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1144,1440.000000,164,0,70547.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,681,1441.020000,164,0,40055.020000,602.414500,extended,nbiot,60 +on5,0,0,24,1,0,420,1440.000000,164,0,26718.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,571,1451.010000,164,0,34626.010000,606.410500,extended,nbiot,60 +on12,0,0,24,1,0,240,1440.000000,164,0,17850.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,4,24,0,0,0,1491.020000,165,0,-1.000000,700.434000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,420,1440.000000,165,0,25617.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,780,1440.000000,165,0,48029.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,840,1440.000000,165,0,52865.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,515,1455.010000,165,0,31257.010000,608.010500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,840,1440.000000,166,0,53070.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1481.020000,166,0,-1.000000,774.453500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,166,0,26911.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,960,1440.000000,166,0,60666.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,283,1463.010000,166,0,16322.010000,611.210500,extended,nbiot,60 +on10,0,0,24,1,0,638,1458.010000,166,0,39062.010000,609.210500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,312,1440.000000,166,0,21397.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,1156,1440.000000,166,0,71551.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,154,1454.010000,167,0,9899.010000,607.610500,extended,nbiot,60 +on11,0,0,24,1,0,119,1479.010000,167,0,6721.010000,617.610500,extended,nbiot,60 +on4,0,0,24,1,0,533,1473.010000,167,0,30204.010000,615.210500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1273,1440.000000,167,0,78992.010000,602.006500,extended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,167,0,-1.000000,706.032500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1371,1471.010000,167,0,82277.010000,614.410500,extended,nbiot,60 +on0,1,8,24,0,0,0,1548.040000,168,0,-1.000000,827.268000,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,168,0,11707.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,716,1476.010000,168,0,42512.010000,616.410500,extended,nbiot,60 +on9,0,0,24,1,0,900,1440.000000,168,0,56419.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,120,1440.000000,168,0,9107.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,597,1477.010000,168,0,34071.010000,616.810500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1260,1440.000000,168,0,78976.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,1140,1440.000000,168,0,69532.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,840,1440.000000,168,0,50642.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,1252,1472.010000,169,0,74439.010000,614.810500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,516,1456.010000,169,0,31780.010000,608.410500,extended,nbiot,60 +on5,0,0,24,1,0,205,1445.010000,169,0,14167.010000,604.010500,extended,nbiot,60 +on6,0,0,24,1,0,180,1440.000000,169,0,14220.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,259,1440.000000,169,0,17143.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1478.020000,169,0,-1.000000,799.260000,extended,nbiot,60 +on12,0,0,24,1,0,0,1440.000000,169,0,2710.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,360,1440.000000,169,0,22129.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,600,1440.000000,169,0,36909.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,221,1461.010000,170,0,11057.010000,610.410500,extended,nbiot,60 +on10,0,0,24,1,0,240,1440.000000,170,0,16161.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,587,1467.010000,170,0,35471.010000,612.810500,extended,nbiot,60 +on6,0,0,24,1,0,480,1440.000000,170,0,29223.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,426,1440.000000,170,0,27630.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,1104,1444.010000,170,0,68064.010000,603.610500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,170,0,85861.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1512.050000,170,0,-1.000000,838.878500,extended,nbiot,60 +on12,0,0,24,1,0,1395,1440.000000,170,0,85901.020000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,600,1440.000000,170,0,39387.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,420,1440.000000,171,0,25357.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,1178,1458.010000,171,0,71069.010000,609.210500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,221,1461.010000,171,0,13244.010000,610.410500,extended,nbiot,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,710,1470.010000,171,0,39988.010000,614.010500,extended,nbiot,60 +on11,0,0,24,1,0,405,1465.010000,171,0,23391.010000,612.010500,extended,nbiot,60 +on9,0,0,24,1,0,658,1478.010000,171,0,39364.010000,617.210500,extended,nbiot,60 +on5,0,0,24,1,0,434,1440.000000,171,0,25397.020000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1413,1453.010000,171,0,86264.010000,607.210500,extended,nbiot,60 +on0,1,8,24,0,0,0,1469.020000,171,0,-1.000000,795.660000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,532,1472.010000,172,0,29831.010000,614.810500,extended,nbiot,60 +on9,0,0,24,1,0,265,1445.010000,172,0,17575.010000,604.010500,extended,nbiot,60 +on0,1,8,24,0,0,0,1500.060000,172,0,-1.000000,808.076000,extended,nbiot,60 +on1,0,0,24,1,0,1320,1440.000000,172,0,79897.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,120,1440.000000,172,0,8103.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1294,1454.020000,172,0,76386.020000,607.614500,extended,nbiot,60 +on7,0,0,24,1,0,1020,1440.000000,172,0,62099.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,258,1440.000000,172,0,17615.020000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1276,1440.000000,172,0,76346.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,1166,1446.010000,173,0,70719.010000,604.410500,extended,nbiot,60 +on10,0,0,24,1,0,1320,1440.000000,173,0,82114.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,480,1440.000000,173,0,29620.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1527.040000,173,0,-1.000000,844.874500,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,173,0,84563.010000,602.006500,extended,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,173,0,10347.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,480,1440.000000,173,0,29566.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,19,1440.000000,173,0,1960.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,766,1466.010000,173,0,44871.010000,612.410500,extended,nbiot,60 +on12,0,0,24,1,0,306,1440.000000,173,0,19542.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,900,1440.000000,174,0,56160.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1518.030000,174,0,-1.000000,789.257500,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,174,0,83066.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,60,1440.000000,174,0,5810.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,1114,1454.010000,174,0,66913.010000,607.610500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1308,1468.010000,174,0,76615.010000,613.210500,extended,nbiot,60 +on9,0,0,24,1,0,660,1440.000000,174,0,42617.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,421,1440.000000,174,0,27339.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,540,1440.000000,175,0,35844.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,175,0,43358.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,20,1440.010000,175,0,2016.010000,602.010500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1469.030000,175,0,-1.000000,769.657500,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,175,0,83802.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,962,1440.000000,175,0,60378.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,175,0,64375.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,120,1440.000000,175,0,7943.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,1238,1458.010000,176,0,73264.010000,609.210500,extended,nbiot,60 +on0,1,7,24,0,0,0,1469.030000,176,0,-1.000000,769.657500,extended,nbiot,60 +on11,0,0,24,1,0,1380,1440.000000,176,0,83231.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,1140,1440.000000,176,0,70026.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,309,1440.000000,176,0,20620.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,1368,1468.010000,176,0,81960.010000,613.210500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,290,1470.010000,176,0,17814.010000,614.010500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,180,1440.000000,176,0,12012.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1371,1471.010000,177,0,79673.010000,614.410500,extended,nbiot,60 +on6,0,0,24,1,0,1260,1440.000000,177,0,77627.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1495.020000,177,0,-1.000000,806.060000,extended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,177,0,83550.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,480,1440.000000,177,0,30772.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,120,1440.000000,177,0,7993.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,187,1440.000000,177,0,14426.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,110,1470.010000,177,0,6532.010000,614.010500,extended,nbiot,60 +on2,0,0,24,1,0,432,1440.000000,177,0,25971.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1246,1466.010000,178,0,72177.010000,612.410500,extended,nbiot,60 +on5,0,0,24,1,0,1320,1440.000000,178,0,80450.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,878,1458.010000,178,0,52537.010000,609.210500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1020,1440.000000,178,0,62205.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,360,1440.000000,178,0,24045.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1467.030000,178,0,-1.000000,768.857500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,926,1446.010000,178,0,55644.010000,604.410500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,240,1440.000000,178,0,14877.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1362,1462.020000,179,0,82537.020000,610.814500,extended,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,179,0,20298.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,1200,1440.000000,179,0,75100.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1368,1468.010000,179,0,82497.010000,613.210500,extended,nbiot,60 +on4,0,0,24,1,0,926,1446.010000,179,0,55923.010000,604.410500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1149,1440.000000,179,0,71816.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,391,1451.010000,179,0,23933.010000,606.410500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,8,24,0,0,0,1476.040000,179,0,-1.000000,798.468000,extended,nbiot,60 +on9,0,0,24,1,0,1380,1440.000000,179,0,86132.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,1433,1473.010000,180,0,82901.010000,615.210500,extended,nbiot,60 +on0,1,5,24,0,0,0,1498.020000,180,0,-1.000000,729.240500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,240,1440.000000,180,0,15242.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,320,1440.010000,180,0,18760.010000,602.010500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,585,1465.010000,180,0,35228.010000,612.010500,extended,nbiot,60 +on2,0,0,24,1,0,0,1440.000000,180,0,1863.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,377,1440.000000,181,0,24501.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,24,1444.020000,181,0,1228.020000,603.614500,extended,nbiot,60 +on3,0,0,24,1,0,396,1456.020000,181,0,24541.020000,608.414500,extended,nbiot,60 +on8,0,0,24,1,0,900,1440.000000,181,0,56253.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,14,1440.000000,181,0,1188.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,165,1465.010000,181,0,9515.010000,612.010500,extended,nbiot,60 +on0,1,7,24,0,0,0,1501.060000,181,0,-1.000000,782.469500,extended,nbiot,60 +on12,0,0,24,1,0,1380,1440.000000,181,0,85813.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,0,1440.000000,182,0,1464.010000,602.006500,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,304,1440.000000,182,0,21417.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,476,1476.010000,182,0,28601.010000,616.410500,extended,nbiot,60 +on7,0,0,24,1,0,750,1450.010000,182,0,45038.010000,606.010500,extended,nbiot,60 +on11,0,0,24,1,0,1037,1440.000000,182,0,64411.010000,602.006500,extended,nbiot,60 +on0,1,8,24,0,0,0,1461.010000,182,0,-1.000000,792.456000,extended,nbiot,60 +on8,0,0,24,1,0,180,1440.000000,182,0,11951.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1366,1466.010000,182,0,79441.010000,612.410500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,626,1446.010000,182,0,39397.010000,604.410500,extended,nbiot,60 +on10,0,0,24,1,0,179,1479.010000,183,0,9281.010000,617.610500,extended,nbiot,60 +on1,0,0,24,1,0,510,1450.010000,183,0,32223.010000,606.010500,extended,nbiot,60 +on12,0,0,24,1,0,882,1462.020000,183,0,50763.020000,610.814500,extended,nbiot,60 +on8,0,0,24,1,0,860,1440.010000,183,0,50723.010000,602.010500,extended,nbiot,60 +on4,0,0,24,1,0,926,1446.010000,183,0,55053.010000,604.410500,extended,nbiot,60 +on3,0,0,24,1,0,300,1440.000000,183,0,19861.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,183,0,69549.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,183,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1508.060000,183,0,-1.000000,837.282500,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,183,0,14260.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,183,0,5392.010000,602.006500,extended,nbiot,60 +on12,0,0,24,1,0,1200,1440.000000,184,0,72820.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,499,1440.000000,184,0,30813.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,184,0,22084.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,420,1440.000000,184,0,25317.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,814,1454.010000,184,0,49271.010000,607.610500,extended,nbiot,60 +on2,0,0,24,1,0,872,1452.010000,184,0,52858.010000,606.810500,extended,nbiot,60 +on5,0,0,24,1,0,720,1440.000000,184,0,46368.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,9,24,0,0,0,1527.040000,184,0,-1.000000,844.874500,extended,nbiot,60 +on3,0,0,24,1,0,540,1440.000000,184,0,36032.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,600,1440.000000,184,0,38015.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,1081,1440.000000,185,0,65980.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,600,1440.000000,185,0,39005.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,6,24,0,0,0,1473.020000,185,0,-1.000000,745.247000,extended,nbiot,60 +on4,0,0,24,1,0,809,1449.010000,185,0,47462.010000,605.610500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,185,0,20797.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,185,0,13881.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,0,1440.000000,185,0,1835.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,840,1440.000000,186,0,54024.010000,602.006500,extended,nbiot,60 +on0,1,4,24,0,0,0,1528.030000,186,0,-1.000000,715.238000,extended,nbiot,60 +on4,0,0,24,1,0,660,1440.000000,186,0,39896.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,929,1449.010000,186,0,56803.010000,605.610500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,186,0,64537.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,222,1462.010000,187,0,14080.010000,610.810500,extended,nbiot,60 +on0,1,7,24,0,0,0,1500.040000,187,0,-1.000000,782.061500,extended,nbiot,60 +on10,0,0,24,1,0,1260,1440.000000,187,0,75818.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1092,1440.000000,187,0,67231.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,1140,1440.000000,187,0,69682.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,900,1440.000000,187,0,56110.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,217,1457.020000,187,0,14120.020000,608.814500,extended,nbiot,60 +on8,0,0,24,1,0,54,1474.010000,187,0,2493.010000,615.610500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,540,1440.000000,188,0,32620.010000,602.006500,extended,nbiot,60 +on0,1,9,24,0,0,0,1498.040000,188,0,-1.000000,833.274500,extended,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,188,0,83295.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,350,1470.010000,188,0,18600.010000,614.010500,extended,nbiot,60 +on3,0,0,24,1,0,360,1440.000000,188,0,22648.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,945,1465.010000,188,0,56087.010000,612.010500,extended,nbiot,60 +on11,0,0,24,1,0,399,1459.020000,188,0,22688.020000,609.614500,extended,nbiot,60 +on12,0,0,24,1,0,988,1448.010000,188,0,59486.010000,605.210500,extended,nbiot,60 +on5,0,0,24,1,0,539,1479.010000,188,0,28907.010000,617.610500,extended,nbiot,60 +on1,0,0,24,1,0,1140,1440.000000,188,0,70888.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,780,1440.000000,189,0,49055.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,1200,1440.000000,189,0,72784.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,1020,1440.000000,189,0,62192.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1448.010000,189,0,-1.000000,709.236500,extended,nbiot,60 +on10,0,0,24,1,0,720,1440.000000,189,0,46061.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1313,1473.010000,189,0,76876.010000,615.210500,extended,nbiot,60 +on5,0,0,24,1,0,363,1440.000000,190,0,23380.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1466.030000,190,0,-1.000000,742.451000,extended,nbiot,60 +on9,0,0,24,1,0,60,1440.000000,190,0,4018.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,392,1452.020000,190,0,23420.020000,606.814500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,155,1455.010000,190,0,8251.010000,608.010500,extended,nbiot,60 +on12,0,0,24,1,0,187,1440.000000,190,0,12233.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,720,1440.000000,190,0,45393.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,60,1440.000000,191,0,4432.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,244,1440.000000,191,0,18031.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,1080,1440.000000,191,0,64906.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1101,1441.020000,191,0,64946.020000,602.414500,extended,nbiot,60 +on0,1,6,24,0,0,0,1503.030000,191,0,-1.000000,757.251000,extended,nbiot,60 +on4,0,0,24,1,0,1140,1440.000000,191,0,71865.010000,602.006500,extended,nbiot,60 +on8,0,0,24,1,0,1215,1440.000000,191,0,73785.010000,602.006500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,1041,1441.010000,192,0,62483.010000,602.410500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,1428,1468.010000,192,0,85296.010000,613.210500,extended,nbiot,60 +on0,1,6,24,0,0,0,1504.020000,192,0,-1.000000,757.647000,extended,nbiot,60 +on10,0,0,24,1,0,1246,1466.010000,192,0,73312.010000,612.410500,extended,nbiot,60 +on1,0,0,24,1,0,60,1440.000000,192,0,6379.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,949,1469.010000,192,0,56764.010000,613.610500,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,192,0,62536.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,420,1440.000000,193,0,27538.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,720,1440.000000,193,0,46238.010000,602.006500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1034,1440.000000,193,0,63342.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,859,1440.000000,193,0,50510.010000,602.006500,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,7,24,0,0,0,1530.040000,193,0,-1.000000,794.061500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,300,1440.000000,193,0,21261.010000,602.006500,extended,nbiot,60 +on2,0,0,24,1,0,120,1440.000000,193,0,9252.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1020,1440.000000,193,0,63394.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1260,1440.000000,194,0,77300.010000,602.006500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,1,0,770,1470.010000,194,0,46023.010000,614.010500,extended,nbiot,60 +on1,0,0,24,1,0,1408,1448.010000,194,0,84246.010000,605.210500,extended,nbiot,60 +on0,1,7,24,0,0,0,1464.030000,194,0,-1.000000,767.657500,extended,nbiot,60 +on6,0,0,24,1,0,699,1459.010000,194,0,41608.010000,609.610500,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,1,0,116,1476.010000,194,0,7158.010000,616.410500,extended,nbiot,60 +on5,0,0,24,1,0,1219,1440.000000,194,0,74181.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,1,0,747,1447.020000,194,0,46063.020000,604.814500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,23,0,0,1438,1438.000000,194,0,-1.000000,575.200000,extended,nbiot,60 +on6,0,0,24,1,0,764,1464.010000,195,0,43626.010000,611.610500,extended,nbiot,60 +on8,0,0,24,1,0,840,1440.000000,195,0,53553.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,9,1440.000000,195,0,1466.010000,602.006500,extended,nbiot,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,60,1440.000000,195,0,7202.010000,602.006500,extended,nbiot,60 +on4,0,0,24,1,0,929,1449.010000,195,0,54646.010000,605.610500,extended,nbiot,60 +on12,0,0,24,1,0,220,1460.010000,195,0,12939.010000,610.010500,extended,nbiot,60 +on0,1,7,24,0,0,0,1493.020000,195,0,-1.000000,779.253500,extended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,195,0,85969.010000,602.006500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,600,1440.000000,196,0,37560.010000,602.006500,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,720,1440.000000,196,0,43288.010000,602.006500,extended,nbiot,60 +on5,0,0,24,1,0,480,1440.000000,196,0,30288.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,1020,1440.000000,196,0,61290.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on0,1,5,24,0,0,0,1512.050000,196,0,-1.000000,734.852500,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,180,1440.000000,196,0,11127.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,716,1476.010000,197,0,40168.010000,616.410500,extended,nbiot,60 +on0,1,7,24,0,0,0,1506.020000,197,0,-1.000000,784.453500,extended,nbiot,60 +on5,0,0,24,1,0,180,1440.000000,197,0,11260.010000,602.006500,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,1,0,480,1440.000000,197,0,30830.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,770,1470.010000,197,0,43560.010000,614.010500,extended,nbiot,60 +on11,0,0,24,1,0,238,1478.010000,197,0,11201.010000,617.210500,extended,nbiot,60 +on6,0,0,24,1,0,173,1473.010000,197,0,8590.010000,615.210500,extended,nbiot,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,extended,nbiot,60 +on9,0,0,24,1,0,320,1440.010000,197,0,21270.010000,602.010500,extended,nbiot,60 +on0,1,4,24,0,0,0,1448.020000,198,0,-1.000000,683.234000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,1,0,1020,1440.000000,198,0,62193.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,976,1440.000000,198,0,59984.010000,602.006500,extended,nbiot,60 +on6,0,0,24,1,0,1260,1440.000000,198,0,76819.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,172,1472.010000,198,0,9544.010000,614.810500,extended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on5,0,0,24,1,0,820,1460.010000,199,0,49625.010000,610.010500,extended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on8,0,0,24,1,0,1092,1440.000000,199,0,66023.010000,602.006500,extended,nbiot,60 +on0,1,6,24,0,0,0,1489.020000,199,0,-1.000000,751.647000,extended,nbiot,60 +on4,0,0,24,1,0,480,1440.000000,199,0,29626.010000,602.006500,extended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,extended,nbiot,60 +on1,0,0,24,1,0,1310,1470.010000,199,0,78523.010000,614.010500,extended,nbiot,60 +on2,0,0,24,1,0,1320,1440.000000,199,0,79914.010000,602.006500,extended,nbiot,60 +on7,0,0,24,1,0,1080,1440.000000,199,0,66069.010000,602.006500,extended,nbiot,60 +on3,0,0,24,1,0,905,1440.000000,200,0,55760.010000,602.006500,extended,nbiot,60 +on10,0,0,24,1,0,0,1440.000000,200,0,2638.010000,602.006500,extended,nbiot,60 +on11,0,0,24,1,0,480,1440.000000,200,0,30091.010000,602.006500,extended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on12,0,0,24,1,0,60,1440.000000,200,0,6803.010000,602.006500,extended,nbiot,60 +on0,1,7,24,0,0,0,1522.030000,200,0,-1.000000,790.857500,extended,nbiot,60 +on5,0,0,24,1,0,660,1440.000000,200,0,42176.010000,602.006500,extended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on7,0,0,24,1,0,68,1440.000000,200,0,6749.010000,602.006500,extended,nbiot,60 +on9,0,0,24,1,0,369,1440.000000,200,0,23145.010000,602.006500,extended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,extended,nbiot,60 +on6,0,0,24,1,0,1187,1467.010320,1,0,70206.010320,612.810836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,279,1459.010320,1,0,17366.010320,609.610836,hintandextended,nbiot,60 +on8,0,0,24,1,0,439,1441.989680,1,0,27193.010320,606.052580,hintandextended,nbiot,60 +on2,0,0,24,1,0,483,1440.010320,1,0,29036.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,710,1471.010320,1,0,43036.010320,652.760836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,1,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,300,1502.600000,1,1,19017.620640,627.261832,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1473.620640,1,0,-1.000000,745.515336,hintandextended,nbiot,60 +on10,0,0,24,1,0,1050,1450.010320,2,0,62194.010320,606.010836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,398,1502.030960,2,1,28129.010320,673.249008,hintandextended,nbiot,60 +on7,0,0,24,1,0,600,1441.010320,2,0,38862.010320,623.210836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,350,1500.600320,2,1,22770.010320,626.513336,hintandextended,nbiot,60 +on11,0,0,24,1,0,991,1451.010320,2,0,59844.010320,606.410836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1491.020640,2,0,-1.000000,830.502168,hintandextended,nbiot,60 +on6,0,0,24,1,0,211,1451.010320,2,0,10970.010320,606.410836,hintandextended,nbiot,60 +on2,0,0,25,1,0,483,1500.310320,2,1,30836.010320,662.400836,hintandextended,nbiot,60 +on9,0,0,24,1,0,240,1442.979360,2,0,15844.010320,615.165160,hintandextended,nbiot,60 +on5,0,0,25,1,0,270,1502.300000,2,1,18898.010320,678.549916,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,2,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,26,1,0,467,1561.420320,3,2,27759.010320,664.634128,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1519.692560,3,0,-1.000000,841.997768,hintandextended,nbiot,60 +on4,0,0,24,1,0,300,1443.989680,3,0,19062.010320,664.299164,hintandextended,nbiot,60 +on9,0,0,26,1,0,415,1580.112560,3,2,25273.040960,658.078148,hintandextended,nbiot,60 +on6,0,0,24,1,0,240,1441.000000,3,0,16334.010320,602.413416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,520,1520.651600,3,1,31303.630960,634.280556,hintandextended,nbiot,60 +on2,0,0,24,1,0,398,1459.010320,3,0,25233.010320,646.920836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,662,1501.300000,3,1,42894.010320,664.233416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,3,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,510,1503.510000,3,2,31262.010320,653.663584,hintandextended,nbiot,60 +on12,0,0,27,1,0,540,1621.900000,3,3,32862.010320,751.453084,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1401,1441.010000,4,0,82981.010000,602.410500,hintandextended,nbiot,60 +on2,0,0,24,1,0,1409,1449.020000,4,0,83021.020000,605.614500,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1528.650960,4,0,-1.000000,767.520340,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,599,1479.010320,4,0,33918.010320,617.610836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,17,1440.989680,4,0,2205.010320,602.409288,hintandextended,nbiot,60 +on11,0,0,25,1,0,420,1501.610320,4,1,27192.620640,626.859252,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,660,1440.010320,4,0,40067.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,4,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1432,1472.010000,5,0,83018.010000,614.810500,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1462.020640,5,0,-1.000000,714.848296,hintandextended,nbiot,60 +on5,0,0,24,1,0,120,1440.010320,5,0,7651.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,383,1443.010320,5,0,25043.010320,603.210836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,947,1467.010320,5,0,54911.010320,612.810836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,5,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,0,1441.000000,5,0,2293.010320,602.413416,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1077,1478.010320,6,0,61767.010320,654.520836,hintandextended,nbiot,60 +on7,0,0,24,1,0,498,1440.010320,6,0,30239.010320,602.010836,hintandextended,nbiot,60 +on9,0,0,25,1,0,1070,1531.651600,6,1,61807.630960,676.185764,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.630960,6,0,-1.000000,766.312756,hintandextended,nbiot,60 +on4,0,0,25,1,0,1122,1502.000000,6,1,65251.010320,678.156500,hintandextended,nbiot,60 +on3,0,0,24,1,0,861,1441.010320,6,0,53782.010320,602.410836,hintandextended,nbiot,60 +on1,0,0,25,1,0,1127,1500.010320,6,1,70400.010320,626.017336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1260,1440.010320,6,0,77057.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,6,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1463.241280,7,0,-1.000000,767.390424,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,180,1502.600000,7,1,13903.620640,627.261832,hintandextended,nbiot,60 +on7,0,0,25,1,0,599,1500.220320,7,1,33588.010320,626.101336,hintandextended,nbiot,60 +on10,0,0,24,1,0,23,1444.010320,7,0,3549.010320,628.317544,hintandextended,nbiot,60 +on8,0,0,25,1,0,720,1502.000640,7,1,45521.620640,647.685380,hintandextended,nbiot,60 +on2,0,0,26,1,0,918,1560.310320,7,3,54818.010320,663.124128,hintandextended,nbiot,60 +on1,0,0,25,1,0,847,1501.269360,7,1,52160.010320,659.020952,hintandextended,nbiot,60 +on9,0,0,25,1,0,458,1501.010320,7,1,28892.010320,663.727336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,7,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1467.010320,8,0,-1.000000,716.857792,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1080,1441.000000,8,0,66597.010320,602.413416,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,180,1501.610320,8,1,13026.620640,626.859252,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,519,1459.010320,8,0,31722.010320,609.610836,hintandextended,nbiot,60 +on12,0,0,24,1,0,952,1472.010320,8,0,54296.010320,614.810836,hintandextended,nbiot,60 +on4,0,0,24,1,0,326,1446.010320,8,0,19275.010320,604.410836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,8,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,172,1472.030960,9,0,8888.010320,614.832508,hintandextended,nbiot,60 +on6,0,0,24,1,0,180,1440.010320,9,0,11683.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,25,1,0,854,1502.300000,9,1,52329.010320,698.549792,hintandextended,nbiot,60 +on7,0,0,25,1,0,814,1516.630960,9,1,48931.630960,658.724092,hintandextended,nbiot,60 +on9,0,0,24,1,0,997,1457.010320,9,0,60640.010320,608.810836,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1560.913520,9,0,-1.000000,910.506276,hintandextended,nbiot,60 +on12,0,0,26,1,0,916,1582.920640,9,2,52370.630960,662.431672,hintandextended,nbiot,60 +on10,0,0,24,1,0,0,1440.010320,9,0,1577.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,813,1453.010320,9,0,48891.010320,607.210836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,9,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,660,1440.030960,9,0,42484.010320,602.025800,hintandextended,nbiot,60 +on3,0,0,25,1,0,60,1501.620640,9,1,4784.620640,626.870088,hintandextended,nbiot,60 +on8,0,0,24,1,0,200,1441.010320,9,0,11627.010320,619.317544,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,933,1453.010320,10,0,56769.010320,607.210836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1444.020640,10,0,-1.000000,733.661920,hintandextended,nbiot,60 +on4,0,0,24,1,0,1260,1441.010320,10,0,78319.010320,640.760836,hintandextended,nbiot,60 +on6,0,0,24,1,0,337,1457.010320,10,0,20603.010320,608.810836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,960,1440.020640,10,0,58767.010320,602.021672,hintandextended,nbiot,60 +on3,0,0,24,1,0,204,1444.010320,10,0,13632.010320,603.610836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,683,1444.020640,10,0,42123.010320,608.821672,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,10,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,312,1441.000000,11,0,19828.010320,607.600000,hintandextended,nbiot,60 +on3,0,0,25,1,0,600,1501.610320,11,1,37310.620640,626.859252,hintandextended,nbiot,60 +on11,0,0,24,1,0,300,1441.010320,11,0,19874.010320,615.137628,hintandextended,nbiot,60 +on6,0,0,25,1,0,418,1502.180000,11,1,22875.010320,652.046500,hintandextended,nbiot,60 +on8,0,0,24,1,0,566,1446.010320,11,0,34972.010320,604.410836,hintandextended,nbiot,60 +on2,0,0,26,1,0,459,1583.630960,11,2,22916.630960,709.775384,hintandextended,nbiot,60 +on9,0,0,26,1,0,518,1582.651600,11,2,26630.630960,667.147056,hintandextended,nbiot,60 +on1,0,0,24,1,0,34,1455.010320,11,0,230.010320,612.820836,hintandextended,nbiot,60 +on5,0,0,25,1,0,518,1501.000000,11,1,31414.010320,639.406500,hintandextended,nbiot,60 +on10,0,0,25,1,0,240,1501.630640,11,2,17969.630640,629.460464,hintandextended,nbiot,60 +on7,0,0,26,1,0,380,1561.600000,11,2,26589.010320,713.949584,hintandextended,nbiot,60 +on0,1,12,24,0,0,0,1550.523520,11,0,-1.000000,932.356984,hintandextended,nbiot,60 +on4,0,0,24,1,0,731,1441.000000,11,0,45323.010320,608.250000,hintandextended,nbiot,60 +on3,0,0,25,1,0,180,1501.610320,12,1,13162.620640,626.859252,hintandextended,nbiot,60 +on10,0,0,24,1,0,126,1440.010320,12,0,10783.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,27,1,0,1018,1642.100640,12,4,58034.630960,696.055172,hintandextended,nbiot,60 +on7,0,0,25,1,0,939,1501.969360,12,1,56482.010320,633.515660,hintandextended,nbiot,60 +on9,0,0,24,1,0,840,1441.010320,12,0,50572.010320,620.220836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,398,1500.010320,12,1,23904.010320,626.017336,hintandextended,nbiot,60 +on4,0,0,24,1,0,600,1441.000000,12,0,37549.010320,602.413416,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,324,1446.000000,12,0,18213.010320,631.973416,hintandextended,nbiot,60 +on8,0,0,24,1,0,991,1451.020640,12,0,57994.010320,606.421672,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,12,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1518.261920,12,0,-1.000000,841.425512,hintandextended,nbiot,60 +on7,0,0,24,1,0,600,1440.020640,13,0,38128.010320,602.021672,hintandextended,nbiot,60 +on12,0,0,25,1,0,120,1502.610320,13,1,10195.620640,665.609252,hintandextended,nbiot,60 +on3,0,0,24,1,0,273,1453.010320,13,0,16803.010320,607.210836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,0,1494.310320,13,2,6416.010320,662.724128,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,3,1442.969360,13,0,2049.010320,641.564368,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,13,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1479.630960,13,0,-1.000000,747.939588,hintandextended,nbiot,60 +on1,0,0,24,1,0,148,1448.020640,13,0,10147.010320,605.221672,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,840,1440.010320,14,0,52042.010320,602.010836,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1500.651280,14,0,-1.000000,782.341008,hintandextended,nbiot,60 +on3,0,0,25,1,0,0,1500.630640,14,1,1892.620640,626.473880,hintandextended,nbiot,60 +on1,0,0,25,1,0,60,1502.020320,14,1,6711.020320,645.684752,hintandextended,nbiot,60 +on4,0,0,24,1,0,239,1479.010320,14,0,14106.010320,617.610836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,374,1440.989680,14,0,22852.010320,602.409288,hintandextended,nbiot,60 +on10,0,0,24,1,0,240,1440.010320,14,0,15944.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,823,1463.010320,14,0,48467.010320,611.210836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,14,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,423,1440.010320,15,0,28721.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,1,0,1020,1440.010320,15,0,63627.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,869,1449.010320,15,0,52350.010320,605.610836,hintandextended,nbiot,60 +on11,0,0,24,1,0,180,1441.000000,15,0,13028.010320,602.413416,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,15,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1504.020640,15,0,-1.000000,783.675336,hintandextended,nbiot,60 +on8,0,0,24,1,0,660,1441.000000,15,0,39898.010320,602.413416,hintandextended,nbiot,60 +on2,0,0,24,1,0,663,1440.010320,15,0,39850.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,1,0,294,1476.000000,15,0,17049.010320,654.763416,hintandextended,nbiot,60 +on7,0,0,24,1,0,685,1446.010320,16,0,41380.010320,623.917544,hintandextended,nbiot,60 +on12,0,0,26,1,0,532,1561.610320,16,4,33825.010320,711.997420,hintandextended,nbiot,60 +on3,0,0,24,1,0,488,1440.040960,16,0,30750.010320,602.036300,hintandextended,nbiot,60 +on8,0,0,24,1,0,300,1441.010320,16,0,19733.010320,639.720836,hintandextended,nbiot,60 +on10,0,0,25,1,0,476,1502.959040,16,1,27202.010320,665.560032,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,579,1501.520320,16,1,39493.010320,687.721336,hintandextended,nbiot,60 +on11,0,0,25,1,0,416,1501.010320,16,1,22185.010320,663.727336,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1462.010320,16,0,-1.000000,818.898040,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,328,1448.010320,16,0,19691.010320,605.210836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,16,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1263,1440.010320,16,0,79149.010320,602.010836,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1532.672240,17,0,-1.000000,899.169516,hintandextended,nbiot,60 +on6,0,0,24,1,0,660,1440.010320,17,0,40568.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,25,1,0,879,1500.010320,17,1,53831.010320,626.017336,hintandextended,nbiot,60 +on11,0,0,24,1,0,240,1440.010320,17,0,14468.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,25,1,0,1242,1524.630960,17,1,74991.630960,676.627508,hintandextended,nbiot,60 +on2,0,0,24,1,0,1308,1491.000000,17,1,79122.010320,635.406500,hintandextended,nbiot,60 +on12,0,0,24,1,0,1235,1455.010320,17,0,74951.010320,608.010836,hintandextended,nbiot,60 +on10,0,0,24,1,0,720,1441.000000,17,0,44188.010320,614.360000,hintandextended,nbiot,60 +on3,0,0,24,1,0,60,1442.010320,17,0,6314.010320,640.134252,hintandextended,nbiot,60 +on7,0,0,25,1,0,802,1501.230640,17,1,50367.010320,634.565464,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,17,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,590,1470.010320,17,0,34272.010320,614.010836,hintandextended,nbiot,60 +on9,0,0,25,1,0,533,1500.010320,17,1,30995.010320,626.017336,hintandextended,nbiot,60 +on3,0,0,24,1,0,159,1459.010320,18,0,8943.010320,609.610836,hintandextended,nbiot,60 +on5,0,0,25,1,0,131,1502.000000,18,1,8983.630960,663.291832,hintandextended,nbiot,60 +on8,0,0,24,1,0,601,1441.000000,18,0,36148.010320,639.723208,hintandextended,nbiot,60 +on1,0,0,25,1,0,837,1500.979360,18,1,48175.010320,626.411452,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,378,1441.000000,18,0,23198.010320,602.413416,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,18,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1441.010320,18,0,69122.010320,621.260836,hintandextended,nbiot,60 +on7,0,0,26,1,0,788,1561.269360,18,3,45994.010320,663.520744,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1460.630960,18,0,-1.000000,844.393252,hintandextended,nbiot,60 +on6,0,0,27,1,0,696,1622.789680,18,5,41190.010320,738.432372,hintandextended,nbiot,60 +on11,0,0,27,1,0,908,1620.820320,18,5,52258.010320,701.179420,hintandextended,nbiot,60 +on9,0,0,25,1,0,580,1502.259040,18,1,34667.010320,636.023532,hintandextended,nbiot,60 +on7,0,0,24,1,0,533,1474.010320,19,0,30064.010320,653.960836,hintandextended,nbiot,60 +on12,0,0,24,1,0,867,1447.010320,19,0,51036.010320,604.810836,hintandextended,nbiot,60 +on3,0,0,24,1,0,476,1476.010320,19,0,25770.010320,616.410836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,180,1440.010320,19,0,11654.010320,602.010836,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1466.010320,19,0,-1.000000,742.444376,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,75,1440.010320,19,0,4538.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,720,1440.010320,19,0,43514.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,19,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,528,1500.010320,20,1,31836.010320,626.017336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1452.010320,20,0,-1.000000,736.857584,hintandextended,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,20,0,83759.010000,602.006500,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,540,1440.010320,20,0,34276.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,120,1442.000000,20,0,7802.010320,640.123416,hintandextended,nbiot,60 +on4,0,0,24,1,0,755,1455.010320,20,0,45348.010320,608.010836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,20,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,272,1452.020640,20,0,15241.010320,606.821672,hintandextended,nbiot,60 +on3,0,0,24,1,0,660,1440.010320,21,0,40631.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1446.630960,21,0,-1.000000,734.706048,hintandextended,nbiot,60 +on7,0,0,24,1,0,1100,1440.010320,21,0,65746.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,406,1466.010320,21,0,22311.010320,612.410836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,102,1501.010000,21,1,5901.010320,626.423916,hintandextended,nbiot,60 +on2,0,0,25,1,0,1320,1500.620640,21,1,82527.620640,626.456672,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,21,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,33,1454.010320,21,0,199.010320,644.920836,hintandextended,nbiot,60 +on7,0,0,25,1,0,759,1500.010320,22,1,45259.010320,626.017336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1115,1455.010320,22,0,65430.010320,608.010836,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.010320,22,0,4852.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,204,1444.010320,22,0,12941.010320,603.610836,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1467.010320,22,0,-1.000000,768.857792,hintandextended,nbiot,60 +on9,0,0,24,1,0,660,1441.010320,22,0,40018.010320,631.920836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,498,1441.000000,22,0,30272.010320,602.413416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,22,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,893,1473.010320,22,0,53851.010320,615.210836,hintandextended,nbiot,60 +on9,0,0,25,1,0,658,1501.180000,23,1,37836.010320,626.498416,hintandextended,nbiot,60 +on10,0,0,25,1,0,916,1500.010320,23,1,57510.010320,626.017336,hintandextended,nbiot,60 +on1,0,0,24,1,0,0,1440.969360,23,0,3255.010320,602.400952,hintandextended,nbiot,60 +on6,0,0,24,1,0,660,1440.010320,23,0,43211.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,25,1,0,792,1502.479680,23,2,49180.010320,653.186664,hintandextended,nbiot,60 +on11,0,0,25,1,0,26,1503.300000,23,2,6409.010320,709.486708,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1502.061600,23,0,-1.000000,860.985632,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,26,1,0,858,1562.310320,23,4,51586.010320,715.280628,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,23,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,780,1501.071920,23,1,49227.051280,650.102184,hintandextended,nbiot,60 +on7,0,0,25,1,0,712,1502.149040,23,1,43156.010320,626.886032,hintandextended,nbiot,60 +on5,0,0,26,1,0,714,1562.769040,23,4,43757.010320,680.565616,hintandextended,nbiot,60 +on2,0,0,24,1,0,979,1440.000000,24,0,58636.010320,602.013208,hintandextended,nbiot,60 +on10,0,0,25,1,0,1013,1502.300000,24,2,63929.010320,664.613292,hintandextended,nbiot,60 +on6,0,0,24,1,0,180,1441.010320,24,0,13338.010320,637.504128,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,383,1444.000000,24,0,24733.010320,603.613416,hintandextended,nbiot,60 +on8,0,0,24,1,0,130,1440.989680,24,0,8599.010320,602.402580,hintandextended,nbiot,60 +on5,0,0,25,1,0,368,1502.969040,24,1,24773.630960,673.812740,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.630960,24,0,-1.000000,766.346296,hintandextended,nbiot,60 +on7,0,0,25,1,0,459,1501.030960,24,1,27921.010320,639.432300,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,24,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,287,1468.000000,25,0,17644.010320,613.213416,hintandextended,nbiot,60 +on12,0,0,24,1,0,853,1441.000000,25,0,53923.010320,606.950000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1015,1475.010320,25,0,59107.010320,616.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,180,1440.010320,25,0,13888.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,25,1,0,780,1501.020640,25,1,49699.020320,639.414964,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1473.030640,25,0,-1.000000,745.286044,hintandextended,nbiot,60 +on5,0,0,24,1,0,540,1442.979680,25,0,34395.010320,603.225204,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,25,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,840,1502.610320,26,1,53194.620640,664.569252,hintandextended,nbiot,60 +on7,0,0,24,1,0,410,1470.010320,26,0,24427.010320,614.010836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1466.640960,26,0,-1.000000,820.757004,hintandextended,nbiot,60 +on10,0,0,24,1,0,226,1466.010320,26,0,14344.010320,612.410836,hintandextended,nbiot,60 +on6,0,0,25,1,0,1200,1501.010000,26,1,74269.020320,626.423916,hintandextended,nbiot,60 +on8,0,0,24,1,0,780,1440.010320,26,0,48034.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,595,1476.000000,26,0,33853.010320,616.413416,hintandextended,nbiot,60 +on1,0,0,25,1,0,984,1501.190320,26,1,58270.010320,626.502544,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,44,1464.010320,26,0,2768.010320,611.610836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,26,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,347,1468.000000,26,0,21112.010320,613.213416,hintandextended,nbiot,60 +on5,0,0,24,1,0,1037,1440.000000,27,0,64615.010320,602.006708,hintandextended,nbiot,60 +on1,0,0,24,1,0,120,1441.000000,27,0,9457.010320,613.320000,hintandextended,nbiot,60 +on7,0,0,25,1,0,166,1502.269360,27,1,11071.010320,640.434244,hintandextended,nbiot,60 +on8,0,0,24,1,0,322,1442.989680,27,0,18987.010320,603.209288,hintandextended,nbiot,60 +on2,0,0,24,1,0,443,1443.030960,27,0,26812.010320,603.232508,hintandextended,nbiot,60 +on10,0,0,24,1,0,1173,1453.020640,27,0,68482.010320,607.221672,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,27,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,605,1440.989680,27,0,38174.010320,602.409288,hintandextended,nbiot,60 +on6,0,0,24,1,0,720,1441.010320,27,0,46344.010320,638.810836,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1493.030960,27,0,-1.000000,883.339836,hintandextended,nbiot,60 +on3,0,0,24,1,0,482,1440.000000,27,0,28940.010320,602.006708,hintandextended,nbiot,60 +on9,0,0,24,1,0,0,1441.000000,27,0,1517.010320,602.413416,hintandextended,nbiot,60 +on11,0,0,26,1,0,274,1560.490000,27,3,17234.010320,663.196000,hintandextended,nbiot,60 +on1,0,0,25,1,0,693,1514.641280,28,1,40991.630960,632.078344,hintandextended,nbiot,60 +on8,0,0,24,1,0,335,1456.020640,28,0,18118.010320,610.631672,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1234,1454.010320,28,0,74137.010320,607.610836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,836,1476.010320,28,0,47368.010320,616.410836,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1460.630960,28,0,-1.000000,740.326172,hintandextended,nbiot,60 +on10,0,0,25,1,0,1178,1500.010320,28,1,71463.010320,626.017336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,28,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,682,1443.010320,28,0,40951.010320,609.060836,hintandextended,nbiot,60 +on11,0,0,24,1,0,1140,1440.010320,29,0,68772.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,607,1440.989680,29,0,37166.010320,602.402580,hintandextended,nbiot,60 +on8,0,0,24,1,0,717,1478.010320,29,0,39830.010320,629.170836,hintandextended,nbiot,60 +on7,0,0,24,1,0,172,1472.010320,29,0,8044.010320,614.810836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,540,1441.030960,29,0,32562.010320,639.735800,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1454.010320,29,0,-1.000000,763.664500,hintandextended,nbiot,60 +on12,0,0,26,1,0,850,1560.500320,29,3,49798.010320,663.206628,hintandextended,nbiot,60 +on3,0,0,25,1,0,758,1501.179360,29,1,45636.010320,626.491452,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,29,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,26,1,0,558,1561.310320,30,3,32441.010320,665.740628,hintandextended,nbiot,60 +on10,0,0,25,1,0,616,1500.010320,30,1,39251.010320,626.017336,hintandextended,nbiot,60 +on12,0,0,25,1,0,399,1501.010320,30,1,23210.010320,652.027336,hintandextended,nbiot,60 +on6,0,0,25,1,0,518,1503.179040,30,1,31694.010320,656.749532,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,30,0,-1.000000,732.067080,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,331,1453.000000,30,0,21565.010320,615.273416,hintandextended,nbiot,60 +on5,0,0,25,1,0,458,1502.000000,30,1,26624.010320,640.729916,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,30,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,780,1440.041280,31,0,49563.010320,602.029928,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1475.641280,31,0,-1.000000,772.330300,hintandextended,nbiot,60 +on10,0,0,24,1,0,894,1474.010320,31,0,53226.010320,615.610836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,1215,1501.330640,31,1,72976.010320,647.728756,hintandextended,nbiot,60 +on8,0,0,24,1,0,503,1443.010320,31,0,30177.010320,603.210836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,540,1440.010320,31,0,33300.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,25,1,0,1140,1501.020640,31,1,69022.620640,638.179964,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,31,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,917,1500.310320,31,1,56540.010320,639.774128,hintandextended,nbiot,60 +on10,0,0,26,1,0,1219,1582.620640,32,2,71152.630960,659.074672,hintandextended,nbiot,60 +on11,0,0,25,1,0,967,1502.000320,32,1,60880.040960,664.136752,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,993,1454.010320,32,0,60840.010320,635.170836,hintandextended,nbiot,60 +on5,0,0,24,1,0,1062,1463.010320,32,0,62905.010320,649.560836,hintandextended,nbiot,60 +on8,0,0,28,1,0,1150,1703.230960,32,4,67905.630960,770.998468,hintandextended,nbiot,60 +on7,0,0,26,1,0,1098,1562.499680,32,3,67864.010320,675.966164,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,900,1442.000000,32,0,54988.010320,611.516708,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1512.313200,32,0,-1.000000,839.039316,hintandextended,nbiot,60 +on6,0,0,24,1,0,179,1479.010320,32,0,7553.010320,617.610836,hintandextended,nbiot,60 +on9,0,0,26,1,0,1215,1561.520000,32,2,71111.010320,676.419084,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,32,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,616,1501.989680,33,1,37516.010320,639.809080,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,540,1502.010320,33,1,33211.620640,634.682544,hintandextended,nbiot,60 +on5,0,0,24,1,0,452,1453.010320,33,0,26017.010320,638.670836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,193,1440.989680,33,0,14053.010320,602.402580,hintandextended,nbiot,60 +on4,0,0,25,1,0,518,1500.220320,33,1,31182.010320,626.101336,hintandextended,nbiot,60 +on10,0,0,24,1,0,1080,1441.010320,33,0,64897.010320,640.760836,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1448.630960,33,0,-1.000000,735.519464,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,33,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1415,1455.010000,34,0,83159.010000,608.010500,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1468.630960,34,0,-1.000000,769.525964,hintandextended,nbiot,60 +on12,0,0,24,1,0,579,1460.010320,34,0,35593.010320,647.320836,hintandextended,nbiot,60 +on11,0,0,25,1,0,647,1501.010320,34,1,41288.010320,664.767336,hintandextended,nbiot,60 +on7,0,0,25,1,0,300,1501.610320,34,1,19079.620640,626.859252,hintandextended,nbiot,60 +on8,0,0,25,1,0,922,1501.220320,34,1,57075.010320,626.508044,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,34,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,840,1441.000000,34,0,53400.010320,614.360000,hintandextended,nbiot,60 +on10,0,0,25,1,0,597,1502.000000,34,1,36464.010320,664.129916,hintandextended,nbiot,60 +on4,0,0,24,1,0,720,1440.010320,35,0,46649.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,629,1511.620640,35,1,39448.630960,633.463380,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,641,1461.010320,35,0,39408.010320,610.410836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1200,1440.010320,35,0,72154.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,35,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1384,1440.000000,35,0,86345.010000,602.006500,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1470.641280,35,0,-1.000000,718.309968,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1472.241280,36,0,-1.000000,797.003840,hintandextended,nbiot,60 +on11,0,0,24,1,0,1014,1474.020640,36,0,60025.010320,615.621672,hintandextended,nbiot,60 +on1,0,0,24,1,0,484,1441.000000,36,0,31127.010320,612.800000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1306,1467.010320,36,0,77372.010320,651.160836,hintandextended,nbiot,60 +on4,0,0,24,1,0,0,1440.010320,36,0,635.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,25,1,0,1118,1501.210000,36,1,67783.010320,639.490500,hintandextended,nbiot,60 +on10,0,0,24,1,0,670,1440.989680,36,0,43178.010320,602.402580,hintandextended,nbiot,60 +on2,0,0,25,1,0,420,1502.630960,36,1,26211.620640,654.574216,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,36,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,1020,1502.620640,36,1,61544.620640,643.130088,hintandextended,nbiot,60 +on12,0,0,24,1,0,878,1459.010320,37,0,51973.010320,646.920836,hintandextended,nbiot,60 +on6,0,0,25,1,0,360,1502.610320,37,1,22887.620640,663.529252,hintandextended,nbiot,60 +on7,0,0,24,1,0,1320,1440.010320,37,0,81769.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,25,1,0,120,1501.610320,37,1,8672.620640,626.859252,hintandextended,nbiot,60 +on2,0,0,25,1,0,518,1503.259040,37,1,32185.010320,671.393532,hintandextended,nbiot,60 +on10,0,0,24,1,0,480,1441.010320,37,0,32243.010320,607.610836,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1582.661920,37,0,-1.000000,893.192220,hintandextended,nbiot,60 +on5,0,0,26,1,0,558,1560.500320,37,3,34617.010320,663.200128,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,300,1441.010320,37,0,19261.010320,602.424252,hintandextended,nbiot,60 +on4,0,0,25,1,0,945,1500.010320,37,1,57040.010320,626.017336,hintandextended,nbiot,60 +on3,0,0,24,1,0,780,1440.020640,37,0,49407.010320,602.021672,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,37,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,947,1467.010320,38,0,54222.010320,612.810836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,293,1474.010320,38,0,14812.010320,615.624252,hintandextended,nbiot,60 +on9,0,0,24,1,0,633,1453.010320,38,0,39427.010320,607.210836,hintandextended,nbiot,60 +on12,0,0,24,1,0,150,1450.010320,38,0,8131.010320,606.010836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,319,1441.979360,38,0,20927.010320,602.805160,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,38,0,-1.000000,706.053664,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,38,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,803,1443.010320,39,0,50355.010320,603.210836,hintandextended,nbiot,60 +on4,0,0,24,1,0,926,1447.010320,39,0,56778.010320,608.970836,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.630960,39,0,-1.000000,766.319464,hintandextended,nbiot,60 +on5,0,0,23,1,0,468,1468.010320,39,0,27695.010320,613.210836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,441,1502.620640,39,1,27735.630960,627.263380,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,693,1453.010320,39,0,41583.010320,607.210836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,39,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,18,1441.000000,39,0,2674.010320,602.413416,hintandextended,nbiot,60 +on3,0,0,25,1,0,998,1500.220320,39,1,59690.010320,626.101336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,40,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,260,1440.010320,40,0,17332.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,468,1468.010320,40,0,26017.010320,613.210836,hintandextended,nbiot,60 +on10,0,0,24,1,0,120,1440.030960,40,0,9991.010320,602.032508,hintandextended,nbiot,60 +on11,0,0,24,1,0,540,1441.369680,40,0,32805.010320,620.617872,hintandextended,nbiot,60 +on4,0,0,27,1,0,756,1621.820320,40,5,46486.010320,738.037920,hintandextended,nbiot,60 +on6,0,0,25,1,0,699,1500.969360,40,1,43232.010320,626.407452,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1440.010320,40,0,-1.000000,810.091332,hintandextended,nbiot,60 +on1,0,0,25,1,0,578,1503.189680,40,1,36957.010320,681.505580,hintandextended,nbiot,60 +on8,0,0,24,1,0,1177,1457.010320,40,0,69395.010320,608.810836,hintandextended,nbiot,60 +on5,0,0,25,1,0,775,1501.010320,40,1,47450.010320,664.767336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,16,1442.969040,41,0,1179.010320,603.207740,hintandextended,nbiot,60 +on9,0,0,24,1,0,720,1440.010320,41,0,44885.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1476.020640,41,0,-1.000000,694.448504,hintandextended,nbiot,60 +on4,0,0,24,1,0,240,1440.010320,41,0,14457.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,41,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,145,1445.010320,41,0,7507.010320,604.010836,hintandextended,nbiot,60 +on6,0,0,25,1,0,240,1502.600000,42,1,17276.620640,627.261832,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,26,1,0,198,1561.310320,42,3,11328.010320,697.980628,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1455.640960,42,0,-1.000000,764.370420,hintandextended,nbiot,60 +on11,0,0,25,1,0,159,1501.959040,42,1,10256.010320,627.453532,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,480,1501.020640,42,1,31105.020320,639.155172,hintandextended,nbiot,60 +on7,0,0,25,1,0,556,1501.000000,42,1,34520.010320,639.406500,hintandextended,nbiot,60 +on9,0,0,24,1,0,0,1443.589680,42,1,260.620640,603.657704,hintandextended,nbiot,60 +on2,0,0,24,1,0,99,1461.010320,42,0,6004.010320,647.727544,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,42,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,402,1501.269360,43,1,28658.010320,638.214244,hintandextended,nbiot,60 +on9,0,0,26,1,0,499,1560.310320,43,3,29042.010320,663.130628,hintandextended,nbiot,60 +on2,0,0,25,1,0,300,1502.579360,43,1,19953.620640,627.253576,hintandextended,nbiot,60 +on7,0,0,24,1,0,38,1458.010320,43,0,151.010320,609.210836,hintandextended,nbiot,60 +on6,0,0,24,1,0,1140,1440.010320,43,0,71284.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,399,1460.010320,43,0,24637.010320,621.970836,hintandextended,nbiot,60 +on11,0,0,24,1,0,845,1440.000000,43,0,53373.010320,602.006708,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,43,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1432,1472.010000,43,0,85960.010000,614.810500,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1448.010320,43,0,-1.000000,787.291124,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1458.010320,44,0,-1.000000,817.311456,hintandextended,nbiot,60 +on10,0,0,24,1,0,60,1443.989680,44,0,4409.010320,657.559496,hintandextended,nbiot,60 +on2,0,0,24,1,0,420,1441.000000,44,0,28581.010320,602.413416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1080,1441.000000,44,0,67693.010320,614.756708,hintandextended,nbiot,60 +on3,0,0,24,1,0,998,1458.010320,44,0,60961.010320,609.210836,hintandextended,nbiot,60 +on9,0,0,24,1,0,540,1440.010320,44,0,32494.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,26,1,0,198,1560.530320,44,3,11662.010320,663.218628,hintandextended,nbiot,60 +on12,0,0,24,1,0,22,1443.000000,44,0,1578.010320,603.213416,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,44,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,173,1500.969360,44,1,9681.010320,627.258952,hintandextended,nbiot,60 +on6,0,0,24,1,0,653,1474.000000,44,0,38601.010320,615.613416,hintandextended,nbiot,60 +on4,0,0,24,1,0,1336,1441.000000,45,0,79876.010320,605.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.630960,45,0,-1.000000,766.373128,hintandextended,nbiot,60 +on2,0,0,24,1,0,360,1441.000000,45,0,21646.010320,602.413416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,547,1441.020640,45,0,33034.010320,602.441588,hintandextended,nbiot,60 +on9,0,0,24,1,0,85,1445.020640,45,0,4734.010320,604.021672,hintandextended,nbiot,60 +on8,0,0,26,1,0,596,1584.910320,45,3,37672.630960,765.479252,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,45,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1125,1465.010320,45,0,66577.010320,612.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,625,1446.020640,45,0,37632.010320,604.428380,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1456.630640,46,0,-1.000000,790.746168,hintandextended,nbiot,60 +on8,0,0,25,1,0,1313,1501.210000,46,1,77085.010320,639.490500,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,87,1448.000000,46,0,6368.010320,605.213416,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1200,1501.651280,46,2,74665.630640,665.232136,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,46,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,478,1478.010320,46,0,27118.010320,617.210836,hintandextended,nbiot,60 +on3,0,0,24,1,0,976,1440.989680,46,0,60492.010320,602.415788,hintandextended,nbiot,60 +on9,0,0,24,1,0,480,1440.010320,46,0,29522.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,1,0,905,1442.000000,46,0,54698.010320,641.026708,hintandextended,nbiot,60 +on7,0,0,25,1,0,981,1500.310320,46,2,61731.010320,651.474128,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,420,1501.610320,47,1,27132.620640,626.859252,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,960,1440.010320,47,0,60056.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,300,1440.010320,47,0,21493.010320,602.010836,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1499.630960,47,0,-1.000000,755.906048,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,47,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1009,1469.010320,47,0,60014.010320,613.610836,hintandextended,nbiot,60 +on10,0,0,24,1,0,811,1451.010320,47,0,49914.010320,606.410836,hintandextended,nbiot,60 +on7,0,0,24,1,0,262,1442.010320,47,0,15992.010320,602.810836,hintandextended,nbiot,60 +on2,0,0,27,1,0,276,1642.341280,48,4,12764.030960,746.259512,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1498.672240,48,0,-1.000000,833.569516,hintandextended,nbiot,60 +on12,0,0,24,1,0,0,1441.010320,48,0,2016.010320,639.720836,hintandextended,nbiot,60 +on6,0,0,24,1,0,940,1460.010320,48,0,56730.010320,610.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,125,1502.479360,48,2,7435.010320,685.569744,hintandextended,nbiot,60 +on9,0,0,26,1,0,259,1561.490000,48,2,15821.010320,674.892376,hintandextended,nbiot,60 +on11,0,0,27,1,0,332,1642.182240,48,3,15862.630960,708.971020,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,188,1441.000000,48,0,12724.010320,609.550000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,48,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,340,1501.000000,48,1,21172.010320,639.406500,hintandextended,nbiot,60 +on1,0,0,25,1,0,104,1500.969360,48,1,4031.010320,626.407452,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,285,1500.020640,49,1,15462.010320,626.028172,hintandextended,nbiot,60 +on11,0,0,25,1,0,223,1501.010320,49,1,11659.010320,663.727336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,110,1502.000000,49,1,7255.010320,677.116500,hintandextended,nbiot,60 +on1,0,0,24,1,0,1286,1446.010320,49,0,77525.010320,604.410836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1494.630960,49,0,-1.000000,805.932672,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,49,0,85455.010000,602.006500,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,49,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,60,1501.020640,49,1,4288.620640,638.179964,hintandextended,nbiot,60 +on9,0,0,24,1,0,427,1441.979360,49,0,25423.010320,602.805160,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1440.010320,49,0,68541.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,583,1501.200320,50,1,35621.010320,634.950044,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1453.010320,50,0,-1.000000,789.277916,hintandextended,nbiot,60 +on2,0,0,24,1,0,24,1444.020640,50,0,3654.010320,603.621672,hintandextended,nbiot,60 +on3,0,0,24,1,0,1080,1440.010320,50,0,66219.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,24,1,0,725,1440.000000,50,0,46467.010320,602.006708,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,480,1441.010320,50,0,28876.010320,639.720836,hintandextended,nbiot,60 +on9,0,0,24,1,0,45,1465.010320,50,0,907.010320,612.010836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,50,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1140,1440.010320,50,0,71107.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,120,1440.020640,50,0,9204.010320,602.021672,hintandextended,nbiot,60 +on7,0,0,25,1,0,1222,1501.310320,51,2,76254.010320,689.574128,hintandextended,nbiot,60 +on4,0,0,24,1,0,180,1441.010320,51,0,12713.010320,631.660836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1503.241280,51,0,-1.000000,835.403840,hintandextended,nbiot,60 +on6,0,0,24,1,0,717,1477.010320,51,0,42308.010320,616.810836,hintandextended,nbiot,60 +on9,0,0,25,1,0,660,1501.610320,51,1,42356.620640,626.859252,hintandextended,nbiot,60 +on8,0,0,24,1,0,1355,1455.010320,51,0,82494.010320,608.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,929,1450.989680,51,0,55602.010320,644.759288,hintandextended,nbiot,60 +on5,0,0,25,1,0,1194,1500.969360,51,1,74960.010320,626.407452,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,420,1440.010320,51,0,27548.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,51,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1080,1502.610320,51,1,67874.620640,664.569252,hintandextended,nbiot,60 +on8,0,0,25,1,0,360,1502.610320,52,1,23419.620640,642.202544,hintandextended,nbiot,60 +on9,0,0,25,1,0,0,1501.610320,52,1,1663.620640,626.859252,hintandextended,nbiot,60 +on7,0,0,25,1,0,638,1501.000000,52,1,39604.010320,638.366500,hintandextended,nbiot,60 +on3,0,0,25,1,0,660,1520.271280,52,1,39644.030960,635.824720,hintandextended,nbiot,60 +on10,0,0,26,1,0,694,1595.661920,52,3,41861.630960,690.311308,hintandextended,nbiot,60 +on12,0,0,24,1,0,540,1442.989680,52,0,33129.010320,652.856080,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1496.292880,52,0,-1.000000,858.658020,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,26,1,0,689,1562.289680,52,2,41820.010320,675.882164,hintandextended,nbiot,60 +on11,0,0,24,1,0,297,1478.010320,52,0,14896.010320,633.070836,hintandextended,nbiot,60 +on4,0,0,25,1,0,338,1500.010320,52,1,19771.010320,626.017336,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,52,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,730,1443.989680,52,0,44566.010320,686.802580,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1442.000000,53,0,33040.010320,631.413416,hintandextended,nbiot,60 +on11,0,0,26,1,0,469,1569.830320,53,5,27272.010320,680.783420,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,240,1441.969360,53,0,15618.010320,640.110952,hintandextended,nbiot,60 +on3,0,0,24,1,0,600,1440.010320,53,0,37902.010320,602.010836,hintandextended,nbiot,60 +on9,0,0,25,1,0,416,1500.969360,53,1,24783.010320,626.407452,hintandextended,nbiot,60 +on5,0,0,24,1,0,1068,1468.010320,53,0,61774.010320,613.210836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,53,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1480.020640,53,0,-1.000000,774.088752,hintandextended,nbiot,60 +on1,0,0,25,1,0,283,1501.279680,53,2,21198.010320,662.275080,hintandextended,nbiot,60 +on12,0,0,24,1,0,1349,1449.010320,54,0,80510.010320,605.610836,hintandextended,nbiot,60 +on6,0,0,24,1,0,0,1440.010320,54,0,1032.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,457,1457.010320,54,0,28803.010320,608.810836,hintandextended,nbiot,60 +on3,0,0,25,1,0,720,1500.640960,54,1,45698.620640,626.484716,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,1054,1515.620640,54,1,61480.630960,632.463380,hintandextended,nbiot,60 +on9,0,0,24,1,0,1073,1473.010320,54,0,61440.010320,615.210836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1474.641280,54,0,-1.000000,771.943716,hintandextended,nbiot,60 +on1,0,0,25,1,0,780,1501.010000,54,1,48892.020320,626.423916,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,54,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,660,1442.000000,55,0,42199.010320,641.163416,hintandextended,nbiot,60 +on11,0,0,24,1,0,1080,1440.010320,55,0,66808.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,960,1440.010320,55,0,59352.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,1,0,401,1461.010320,55,0,24221.010320,610.410836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,502,1442.010320,55,0,30894.010320,602.810836,hintandextended,nbiot,60 +on6,0,0,24,1,0,540,1440.010320,55,0,33058.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1488.020640,55,0,-1.000000,751.255212,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,55,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,26,1,0,1216,1582.840960,56,2,71981.630960,697.317592,hintandextended,nbiot,60 +on5,0,0,27,1,0,1334,1621.600000,56,3,76938.010320,712.592876,hintandextended,nbiot,60 +on10,0,0,25,1,0,1248,1502.000000,56,1,75402.010320,676.466500,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1178,1501.000000,56,1,71940.010320,638.366292,hintandextended,nbiot,60 +on7,0,0,25,1,0,1211,1501.000000,56,1,75442.030960,639.406500,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1503.292880,56,0,-1.000000,783.390940,hintandextended,nbiot,60 +on12,0,0,24,1,0,1074,1476.010320,56,0,64845.010320,687.130836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,56,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,26,1,0,1359,1582.620640,56,2,76979.630960,659.074672,hintandextended,nbiot,60 +on3,0,0,24,1,0,507,1467.010320,57,1,30942.010320,662.087336,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1465.641280,57,0,-1.000000,768.337008,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,719,1500.020640,57,1,40175.010320,626.028172,hintandextended,nbiot,60 +on7,0,0,24,1,0,420,1441.010320,57,0,25843.010320,612.420836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,26,1,0,621,1582.830640,57,2,35202.630960,696.663880,hintandextended,nbiot,60 +on8,0,0,26,1,0,1076,1560.310320,57,3,64214.010320,663.130628,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,57,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,570,1450.010320,57,0,35162.010320,606.010836,hintandextended,nbiot,60 +on2,0,0,25,1,0,938,1500.969360,57,1,58863.010320,626.407452,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,55,1500.320640,58,2,3770.010320,629.384964,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,9,1441.959040,58,0,3280.010320,602.803532,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,600,1440.020640,58,0,36392.010320,602.021672,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1444.010320,58,0,-1.000000,707.671208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,58,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1068,1468.010320,58,0,63290.010320,613.210836,hintandextended,nbiot,60 +on6,0,0,24,1,0,865,1445.020640,58,0,50477.010320,604.021672,hintandextended,nbiot,60 +on8,0,0,24,1,0,0,1441.010320,59,0,439.010320,618.270836,hintandextended,nbiot,60 +on3,0,0,24,1,0,1200,1440.010320,59,0,74943.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,1,0,888,1469.010320,59,0,51171.010320,650.920836,hintandextended,nbiot,60 +on10,0,0,24,1,0,360,1441.000000,59,0,24492.010320,602.413416,hintandextended,nbiot,60 +on4,0,0,24,1,0,240,1440.010320,59,0,17146.010320,602.010836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1489.041280,59,0,-1.000000,829.690300,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1080,1440.010320,59,0,67294.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,540,1440.010320,59,0,35552.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,25,1,0,943,1500.010320,59,1,55722.010320,626.017336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,59,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,99,1501.010320,59,1,5498.010320,634.217336,hintandextended,nbiot,60 +on1,0,0,25,1,0,77,1502.010320,60,1,4629.630960,644.835960,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,118,1479.010320,60,0,4589.010320,654.920836,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1441.010320,60,0,69225.010320,639.720836,hintandextended,nbiot,60 +on8,0,0,25,1,0,480,1503.600000,60,1,32380.620640,629.611832,hintandextended,nbiot,60 +on10,0,0,25,1,0,219,1500.010320,60,1,13896.010320,626.017336,hintandextended,nbiot,60 +on7,0,0,24,1,0,765,1465.010320,60,0,43913.010320,612.010836,hintandextended,nbiot,60 +on11,0,0,25,1,0,161,1501.000000,60,1,9314.010320,639.406500,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1476.251600,60,0,-1.000000,798.601260,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,60,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,1259,1500.010320,60,1,75063.010320,626.017336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,619,1501.000000,61,1,36590.010320,639.406500,hintandextended,nbiot,60 +on1,0,0,25,1,0,584,1525.061600,61,1,34819.040960,664.651264,hintandextended,nbiot,60 +on10,0,0,24,1,0,488,1440.000000,61,0,32215.010320,602.006708,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,660,1503.600000,61,1,43151.620640,634.811832,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,60,1504.589680,61,1,6841.620640,650.171120,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1480.661600,61,0,-1.000000,748.378676,hintandextended,nbiot,60 +on2,0,0,24,1,0,589,1469.020640,61,0,34779.010320,613.621672,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,61,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,951,1471.010320,62,0,56742.010320,614.410836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1423,1463.010000,62,0,84826.010000,611.210500,hintandextended,nbiot,60 +on6,0,0,24,1,0,1096,1440.989680,62,0,65906.010320,602.402580,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1440.000000,62,0,-1.000000,706.033332,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,75,1440.010320,62,0,4155.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,62,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,480,1440.010320,62,0,30107.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,1,0,1065,1465.010320,63,0,61681.010320,612.010836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1167,1447.010320,63,0,70075.010320,604.810836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,581,1462.010320,63,0,34280.010320,640.067544,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1501.651600,63,0,-1.000000,808.741136,hintandextended,nbiot,60 +on6,0,0,24,1,0,360,1440.010320,63,0,23549.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,600,1440.010320,63,0,36607.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,1,0,280,1461.989680,63,0,14882.010320,610.815996,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,63,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,1320,1500.620640,63,1,80334.620640,626.456672,hintandextended,nbiot,60 +on5,0,0,24,1,0,1080,1440.010320,63,0,64981.010320,602.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1471.020640,64,0,-1.000000,796.482044,hintandextended,nbiot,60 +on12,0,0,24,1,0,206,1446.010320,64,0,14199.010320,604.410836,hintandextended,nbiot,60 +on8,0,0,24,1,0,240,1441.010320,64,0,14489.010320,639.720836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,349,1501.210640,64,1,19698.010320,663.814172,hintandextended,nbiot,60 +on4,0,0,24,1,0,180,1441.010320,64,0,14246.010320,614.117544,hintandextended,nbiot,60 +on9,0,0,24,1,0,1020,1440.010320,64,0,61328.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,25,1,0,414,1500.020320,64,1,23102.010320,626.021336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,900,1440.010320,64,0,56428.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,543,1441.989680,64,0,34797.010320,613.852580,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,64,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,27,1,0,277,1621.600000,65,4,17273.010320,711.936168,hintandextended,nbiot,60 +on3,0,0,25,1,0,312,1501.620640,65,1,19756.630960,626.668172,hintandextended,nbiot,60 +on4,0,0,25,1,0,319,1561.840960,65,2,17314.630960,689.099384,hintandextended,nbiot,60 +on9,0,0,26,1,0,167,1582.361920,65,2,10768.030960,716.164892,hintandextended,nbiot,60 +on7,0,0,24,1,0,63,1441.010320,65,0,6408.010320,620.480836,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1508.303200,65,0,-1.000000,863.462148,hintandextended,nbiot,60 +on11,0,0,24,1,0,221,1464.000000,65,0,14143.010320,646.323416,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,65,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,900,1442.989680,65,0,54557.010320,654.552580,hintandextended,nbiot,60 +on6,0,0,28,1,0,368,1682.830640,65,4,19715.010320,776.527132,hintandextended,nbiot,60 +on1,0,0,25,1,0,180,1501.989680,65,1,10728.010320,639.159080,hintandextended,nbiot,60 +on12,0,0,24,1,0,610,1440.989680,65,0,39561.010320,602.402580,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,60,1440.010320,66,0,6670.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,25,1,0,240,1500.310320,66,2,20193.010320,665.124128,hintandextended,nbiot,60 +on12,0,0,25,1,0,1269,1500.310320,66,1,78696.010320,656.037336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,66,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,421,1441.989680,66,0,27559.010320,604.102580,hintandextended,nbiot,60 +on5,0,0,24,1,0,125,1440.030640,66,0,7658.010320,602.025464,hintandextended,nbiot,60 +on3,0,0,24,1,0,1375,1475.010320,66,0,82352.010320,616.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,158,1501.479360,66,2,14276.010320,666.449744,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1470.020640,66,0,-1.000000,848.095460,hintandextended,nbiot,60 +on8,0,0,24,1,0,1225,1446.010320,66,0,75023.010320,637.820836,hintandextended,nbiot,60 +on9,0,0,26,1,0,257,1561.279360,66,3,15439.010320,663.524744,hintandextended,nbiot,60 +on6,0,0,24,1,0,900,1440.010320,66,0,57303.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1153,1440.989680,67,0,69525.010320,602.402580,hintandextended,nbiot,60 +on3,0,0,24,1,0,43,1463.010320,67,0,2836.010320,611.210836,hintandextended,nbiot,60 +on5,0,0,24,1,0,960,1440.010320,67,0,58628.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1533.661920,67,0,-1.000000,821.545264,hintandextended,nbiot,60 +on6,0,0,24,1,0,300,1440.010320,67,0,20093.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,25,1,0,32,1513.620640,67,1,2876.630960,631.663380,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1441.000000,67,0,6050.010320,602.413416,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,67,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,540,1441.000000,67,0,33117.010320,602.413416,hintandextended,nbiot,60 +on2,0,0,24,1,0,167,1467.010320,67,0,9705.010320,612.810836,hintandextended,nbiot,60 +on7,0,0,24,1,0,0,1440.020640,68,0,1059.010320,602.021672,hintandextended,nbiot,60 +on9,0,0,24,1,0,500,1441.010320,68,0,32277.010320,639.720836,hintandextended,nbiot,60 +on10,0,0,25,1,0,477,1500.010320,68,1,28285.010320,626.017336,hintandextended,nbiot,60 +on12,0,0,24,1,0,967,1440.989680,68,0,58550.010320,602.402580,hintandextended,nbiot,60 +on1,0,0,24,1,0,1200,1440.010320,68,0,75140.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,25,1,0,1260,1500.641280,68,1,78029.620640,626.471636,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1449.010320,68,0,-1.000000,813.698040,hintandextended,nbiot,60 +on11,0,0,24,1,0,390,1452.989680,68,0,22166.010320,644.525996,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1340,1440.010320,68,0,82446.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,68,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,593,1500.220320,68,1,33622.010320,626.101336,hintandextended,nbiot,60 +on12,0,0,24,1,0,1344,1444.010320,69,0,79353.010320,603.610836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,319,1440.979680,69,0,19433.010320,603.041872,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1442.620640,69,0,-1.000000,681.088504,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,240,1500.641280,69,1,18013.620640,626.471636,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,471,1471.010320,69,0,28265.010320,614.410836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,69,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,540,1501.610320,70,1,33809.620640,626.859252,hintandextended,nbiot,60 +on12,0,0,24,1,0,307,1440.989680,70,0,18424.010320,602.402580,hintandextended,nbiot,60 +on9,0,0,24,1,0,660,1440.010320,70,0,42415.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,420,1440.010320,70,0,26542.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,24,1,0,1356,1457.010320,70,0,81632.010320,624.670836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,1418,1500.000000,70,1,84814.010000,626.013000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1450.010320,70,0,-1.000000,788.071000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,787,1440.989680,70,0,47068.010320,602.402580,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,70,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,35,1455.010320,70,0,93.010320,608.010836,hintandextended,nbiot,60 +on10,0,0,26,1,0,680,1582.620640,71,2,39193.630960,659.074672,hintandextended,nbiot,60 +on8,0,0,24,1,0,213,1455.000000,71,0,13308.010320,633.370124,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1019,1500.969360,71,1,61055.010320,626.407452,hintandextended,nbiot,60 +on5,0,0,25,1,0,60,1501.610320,71,1,6171.620640,626.859252,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,638,1501.000000,71,1,39152.010320,638.366292,hintandextended,nbiot,60 +on7,0,0,25,1,0,480,1502.620640,71,1,32117.620640,652.209964,hintandextended,nbiot,60 +on12,0,0,25,1,0,578,1502.010320,71,1,35210.010320,642.937128,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1523.503200,71,0,-1.000000,843.542148,hintandextended,nbiot,60 +on3,0,0,25,1,0,579,1523.630960,71,1,35251.630960,709.825800,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,71,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,26,1,0,1049,1560.490320,71,3,62354.010320,664.054128,hintandextended,nbiot,60 +on8,0,0,24,1,0,853,1441.000000,72,0,52367.010320,602.413416,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1262,1440.979360,72,0,77657.010320,602.405160,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,385,1446.989680,72,0,23603.010320,604.815996,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,72,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,600,1441.010320,72,0,36159.010320,640.760836,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1440.000000,72,0,-1.000000,680.060372,hintandextended,nbiot,60 +on5,0,0,25,1,0,1068,1502.979360,73,1,66081.010320,640.211660,hintandextended,nbiot,60 +on6,0,0,24,1,0,0,1440.010320,73,0,918.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,1,0,174,1475.000000,73,0,8728.010320,616.013416,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,1020,1502.020640,73,1,63252.620640,664.189964,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1483.630960,73,0,-1.000000,723.526172,hintandextended,nbiot,60 +on9,0,0,25,1,0,1118,1501.220320,73,1,68850.010320,632.358044,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,73,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,16,1440.989680,74,0,976.010320,602.402580,hintandextended,nbiot,60 +on1,0,0,24,1,0,447,1448.000000,74,0,25617.010320,605.213416,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1464.251600,74,0,-1.000000,767.801260,hintandextended,nbiot,60 +on2,0,0,25,1,0,497,1501.000000,74,1,31109.010320,639.406500,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,1020,1501.610320,74,1,63851.620640,626.859252,hintandextended,nbiot,60 +on3,0,0,25,1,0,960,1503.610320,74,1,58307.620640,670.169252,hintandextended,nbiot,60 +on8,0,0,24,1,0,360,1440.000000,74,0,23241.010320,602.013208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,74,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,26,1,0,438,1581.651600,74,2,25657.630960,661.092264,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,780,1502.010000,75,1,47647.020320,665.173916,hintandextended,nbiot,60 +on10,0,0,25,1,0,407,1502.199680,75,1,23861.010320,638.852872,hintandextended,nbiot,60 +on4,0,0,24,1,0,995,1456.000000,75,0,60163.010320,608.413416,hintandextended,nbiot,60 +on12,0,0,24,1,0,300,1442.959040,75,0,18927.010320,640.513532,hintandextended,nbiot,60 +on3,0,0,24,1,0,457,1479.010320,75,1,26267.010320,617.617336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,26,1,0,453,1582.610000,75,2,23902.630960,659.083624,hintandextended,nbiot,60 +on9,0,0,27,1,0,501,1622.330320,75,4,30592.010320,761.771712,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,75,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,120,1502.589680,75,1,9377.620640,627.257704,hintandextended,nbiot,60 +on11,0,0,24,1,0,600,1441.010320,75,0,39077.010320,627.110836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1482.251600,75,0,-1.000000,827.048216,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,85,1445.010320,76,0,4206.010320,604.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1139,1480.010320,76,0,67350.010320,644.660836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,993,1453.010320,76,0,57986.010320,607.210836,hintandextended,nbiot,60 +on1,0,0,24,1,0,1075,1475.010320,76,0,62168.010320,616.010836,hintandextended,nbiot,60 +on9,0,0,24,1,0,574,1454.020640,76,0,35175.010320,607.621672,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1461.630960,76,0,-1.000000,792.726172,hintandextended,nbiot,60 +on5,0,0,25,1,0,712,1501.300000,76,1,46337.010320,644.713292,hintandextended,nbiot,60 +on8,0,0,24,1,0,661,1441.000000,76,0,40363.010320,613.709792,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,76,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,704,1525.651600,76,1,40404.630960,674.630556,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,8,1442.979360,77,0,2968.010320,640.521868,hintandextended,nbiot,60 +on10,0,0,24,1,0,60,1440.010320,77,0,5402.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,25,1,0,105,1501.010320,77,1,5357.010320,634.874044,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1141,1440.989680,77,0,69273.010320,602.402580,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1385,1440.000000,77,0,86171.010000,602.006500,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1465.010320,77,0,-1.000000,716.057584,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,77,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,913,1440.989680,78,0,57415.010320,602.402580,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,757,1457.010320,78,0,45753.010320,608.810836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1260,1441.010320,78,0,75962.010320,631.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,627,1448.020640,78,0,37597.010320,643.571672,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,78,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1424,1464.010000,78,0,86289.010000,611.610500,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1450.010320,78,0,-1.000000,710.044168,hintandextended,nbiot,60 +on9,0,0,25,1,0,887,1500.969360,79,1,52393.010320,626.407452,hintandextended,nbiot,60 +on3,0,0,25,1,0,814,1501.269360,79,1,48615.010320,630.427452,hintandextended,nbiot,60 +on8,0,0,25,1,0,120,1502.020640,79,1,7744.620640,634.693380,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,660,1440.010320,79,0,42578.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,1,0,724,1441.989680,79,0,45685.010320,639.072580,hintandextended,nbiot,60 +on12,0,0,25,1,0,1277,1501.300000,79,1,76825.010320,661.230000,hintandextended,nbiot,60 +on1,0,0,27,1,0,974,1621.830320,79,5,55320.010320,721.350128,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,1200,1500.040960,79,1,73075.020320,626.036300,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,79,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,196,1501.000000,79,1,13690.010320,639.406500,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1502.640960,79,0,-1.000000,835.170420,hintandextended,nbiot,60 +on12,0,0,25,1,0,420,1501.610320,80,1,27327.620640,626.859252,hintandextended,nbiot,60 +on9,0,0,24,1,0,619,1441.979360,80,0,36988.010320,602.818368,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,26,1,0,318,1561.300000,80,2,18983.010320,676.519792,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1503.272240,80,0,-1.000000,835.429640,hintandextended,nbiot,60 +on2,0,0,24,1,0,180,1441.020640,80,0,11674.010320,604.631672,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1200,1440.010320,80,0,72733.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,26,1,0,319,1581.661600,80,2,16197.630960,659.542556,hintandextended,nbiot,60 +on3,0,0,24,1,0,152,1452.010320,80,0,10755.010320,606.810836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,80,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,607,1502.300000,80,2,40925.010320,699.726708,hintandextended,nbiot,60 +on10,0,0,25,1,0,279,1502.000000,80,1,16156.010320,677.967792,hintandextended,nbiot,60 +on12,0,0,24,1,0,310,1441.979360,81,0,19831.010320,602.805160,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,630,1450.010320,81,0,36233.010320,606.010836,hintandextended,nbiot,60 +on8,0,0,24,1,0,154,1455.020640,81,0,9712.010320,645.331672,hintandextended,nbiot,60 +on5,0,0,25,1,0,1008,1500.020320,81,1,59138.010320,626.021336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,23,0,0,1392,1392.000000,81,0,-1.000000,556.800000,hintandextended,nbiot,60 +on9,0,0,24,1,0,382,1443.010320,81,0,22179.010320,603.224252,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,81,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,81,0,-1.000000,732.067080,hintandextended,nbiot,60 +on2,0,0,24,1,0,1291,1451.010320,81,0,77082.010320,606.410836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,446,1446.010320,82,0,25581.010320,604.410836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,26,1,0,325,1582.620320,82,2,17288.630960,659.276460,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,705,1466.000000,82,0,41053.010320,612.413416,hintandextended,nbiot,60 +on4,0,0,25,1,0,1200,1502.610320,82,1,75398.620640,665.609252,hintandextended,nbiot,60 +on3,0,0,24,1,0,180,1441.010320,82,0,13054.010320,639.720836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,82,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1460.630960,82,0,-1.000000,740.332880,hintandextended,nbiot,60 +on2,0,0,24,1,0,275,1455.010320,82,0,17248.010320,608.010836,hintandextended,nbiot,60 +on6,0,0,24,1,0,84,1444.010320,83,0,5241.010320,603.610836,hintandextended,nbiot,60 +on1,0,0,25,1,0,1121,1501.000000,83,1,65973.010320,639.406500,hintandextended,nbiot,60 +on7,0,0,25,1,0,226,1501.969360,83,1,12780.010320,633.314160,hintandextended,nbiot,60 +on9,0,0,24,1,0,720,1440.010320,83,0,45529.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,26,1,0,246,1562.300000,83,3,14941.010320,701.243208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,83,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,18,1441.010320,83,0,3209.010320,602.424252,hintandextended,nbiot,60 +on4,0,0,24,1,0,1320,1440.010320,83,0,80171.010320,602.010836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1518.040960,83,0,-1.000000,841.316796,hintandextended,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,83,0,85594.010000,602.006500,hintandextended,nbiot,60 +on5,0,0,24,1,0,120,1443.000000,83,0,8526.010320,687.563292,hintandextended,nbiot,60 +on12,0,0,23,0,0,1437,1437.000000,83,0,-1.000000,574.800000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,900,1440.010320,84,0,56293.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,26,1,0,508,1581.651600,84,2,28429.630960,696.192264,hintandextended,nbiot,60 +on2,0,0,24,1,0,340,1462.000000,84,0,21133.010320,646.173416,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,442,1442.010320,84,0,28389.010320,602.810836,hintandextended,nbiot,60 +on4,0,0,24,1,0,780,1440.010320,84,0,49098.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,60,1440.010320,84,0,5032.010320,602.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1508.661920,84,0,-1.000000,811.538556,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,84,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,524,1501.000000,84,1,32104.010320,639.406500,hintandextended,nbiot,60 +on3,0,0,25,1,0,398,1501.220320,84,1,24226.010320,663.811336,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,596,1478.000000,85,0,35795.010320,654.523416,hintandextended,nbiot,60 +on8,0,0,24,1,0,669,1440.979680,85,0,41291.010320,602.411788,hintandextended,nbiot,60 +on9,0,0,25,1,0,1020,1501.010000,85,1,64350.020320,626.423916,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,745,1561.300320,85,3,45844.010320,663.539836,hintandextended,nbiot,60 +on11,0,0,24,1,0,1071,1471.010320,85,0,64291.010320,614.410836,hintandextended,nbiot,60 +on2,0,0,25,1,0,1405,1500.000000,85,1,85160.010000,626.013000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1509.030640,85,0,-1.000000,785.692544,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1320,1441.000000,85,0,81564.010320,614.360000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,85,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,86,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1538.682560,86,0,-1.000000,901.587060,hintandextended,nbiot,60 +on2,0,0,24,1,0,660,1441.000000,86,0,40859.010320,615.400000,hintandextended,nbiot,60 +on9,0,0,24,1,0,425,1441.010320,86,0,25692.010320,611.510836,hintandextended,nbiot,60 +on8,0,0,24,1,0,831,1471.010320,86,0,47045.010320,614.410836,hintandextended,nbiot,60 +on1,0,0,27,1,0,487,1640.351600,86,3,25732.030960,695.160348,hintandextended,nbiot,60 +on12,0,0,25,1,0,304,1502.269360,86,1,20617.010320,699.850952,hintandextended,nbiot,60 +on10,0,0,24,1,0,1320,1440.010320,86,0,81510.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,27,1,0,419,1643.120960,86,4,22090.630960,733.564884,hintandextended,nbiot,60 +on6,0,0,26,1,0,478,1562.589680,86,2,28919.010320,682.112372,hintandextended,nbiot,60 +on5,0,0,24,1,0,262,1443.010320,86,0,14945.010320,637.530836,hintandextended,nbiot,60 +on3,0,0,24,1,0,997,1457.010320,86,0,60638.010320,608.810836,hintandextended,nbiot,60 +on11,0,0,24,1,0,368,1441.000000,86,0,22049.010320,609.159792,hintandextended,nbiot,60 +on10,0,0,25,1,0,638,1500.020640,87,1,39597.010320,626.028172,hintandextended,nbiot,60 +on1,0,0,24,1,0,932,1452.010320,87,0,55666.010320,606.810836,hintandextended,nbiot,60 +on4,0,0,24,1,0,1397,1440.000000,87,0,83589.010000,602.006500,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1554.041280,87,0,-1.000000,881.703508,hintandextended,nbiot,60 +on8,0,0,24,1,0,660,1440.010320,87,0,40053.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,300,1441.000000,87,0,18911.010320,602.413416,hintandextended,nbiot,60 +on7,0,0,24,1,0,60,1440.010320,87,0,5485.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,322,1442.010320,87,0,18855.010320,602.810836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,58,1478.030960,87,0,637.010320,617.225800,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,87,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,384,1444.010320,87,0,24025.010320,603.610836,hintandextended,nbiot,60 +on5,0,0,24,1,0,540,1441.000000,87,0,36024.010320,610.460000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,547,1501.000000,88,2,33484.830640,664.964916,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,0,1440.010320,88,0,3350.010320,602.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1505.851280,88,0,-1.000000,810.454548,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,379,1440.000000,88,0,21805.010320,602.013208,hintandextended,nbiot,60 +on2,0,0,24,1,0,192,1440.020640,88,0,13405.010320,602.021672,hintandextended,nbiot,60 +on12,0,0,25,1,0,396,1501.310320,88,2,25313.010320,651.224128,hintandextended,nbiot,60 +on6,0,0,24,1,0,180,1440.010320,88,0,13462.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,88,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,480,1503.600000,88,1,29186.620640,645.225040,hintandextended,nbiot,60 +on7,0,0,25,1,0,540,1501.020640,88,1,33444.020320,639.291672,hintandextended,nbiot,60 +on6,0,0,25,1,0,960,1501.010000,89,1,60985.020320,626.423916,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,120,1441.000000,89,0,7450.010320,602.413416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,24,1444.010320,89,0,1263.010320,603.610836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1441.030960,89,0,3897.010320,612.442508,hintandextended,nbiot,60 +on1,0,0,25,1,0,938,1501.030640,89,1,56258.010320,664.795380,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1495.040960,89,0,-1.000000,728.090172,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,89,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,510,1450.010320,90,0,29407.010320,606.010836,hintandextended,nbiot,60 +on6,0,0,24,1,0,1019,1479.010320,90,0,60496.010320,617.610836,hintandextended,nbiot,60 +on12,0,0,25,1,0,1326,1501.300000,90,2,82816.010320,659.663292,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1264,1441.000000,90,0,78369.010320,635.823208,hintandextended,nbiot,60 +on4,0,0,24,1,0,360,1440.010320,90,0,25109.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,25,1,0,1380,1500.300000,90,1,85415.010000,665.119792,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.030960,90,0,-1.000000,766.072548,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,90,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,1398,1580.030960,90,2,82856.030960,658.032092,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,656,1561.520320,91,3,36668.010320,701.964628,hintandextended,nbiot,60 +on11,0,0,24,1,0,1320,1440.010320,91,0,81777.010320,602.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1481.020640,91,0,-1.000000,800.482044,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,25,1,0,487,1501.269360,91,1,31527.010320,658.630952,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,240,1440.020640,91,0,17408.010320,602.021672,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,91,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,26,1,0,596,1561.479360,91,3,35130.010320,664.449744,hintandextended,nbiot,60 +on3,0,0,24,1,0,420,1441.010320,91,0,26791.010320,632.830836,hintandextended,nbiot,60 +on2,0,0,24,1,0,354,1474.010320,91,0,18840.010320,615.610836,hintandextended,nbiot,60 +on8,0,0,24,1,0,1140,1440.010320,91,0,70710.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,480,1502.620640,92,1,30911.620640,637.670088,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1528.641280,92,0,-1.000000,793.563840,hintandextended,nbiot,60 +on11,0,0,24,1,0,634,1455.010320,92,0,36742.010320,614.517544,hintandextended,nbiot,60 +on12,0,0,24,1,0,60,1441.020640,92,0,6037.010320,617.371672,hintandextended,nbiot,60 +on1,0,0,24,1,0,1020,1441.000000,92,0,62101.010320,602.413416,hintandextended,nbiot,60 +on4,0,0,26,1,0,1197,1561.610320,92,3,75148.010320,740.350628,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,92,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,1118,1501.189360,92,1,68446.010320,627.346952,hintandextended,nbiot,60 +on6,0,0,25,1,0,638,1500.010320,92,1,40049.010320,626.017336,hintandextended,nbiot,60 +on1,0,0,24,1,0,600,1440.010320,93,0,39282.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,508,1448.020640,93,0,32071.010320,605.221672,hintandextended,nbiot,60 +on7,0,0,25,1,0,120,1502.021280,93,1,9174.620640,627.297052,hintandextended,nbiot,60 +on12,0,0,25,1,0,218,1501.210000,93,1,12932.010320,639.490500,hintandextended,nbiot,60 +on4,0,0,24,1,0,244,1440.000000,93,0,15093.010320,602.013208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,60,1440.010320,93,0,5632.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,93,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,240,1502.289680,93,2,18444.010320,665.929288,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1465.010320,93,0,-1.000000,794.111456,hintandextended,nbiot,60 +on8,0,0,24,1,0,1001,1461.010320,93,0,60727.010320,610.410836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,780,1440.010320,94,0,48898.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,349,1469.010320,94,0,19376.010320,613.610836,hintandextended,nbiot,60 +on2,0,0,24,1,0,629,1451.000000,94,0,37023.010320,644.763416,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,300,1441.000000,94,0,19429.010320,602.413416,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1479.020640,94,0,-1.000000,695.648504,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,94,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,326,1446.020640,95,0,20201.010320,604.421672,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,540,1501.040960,95,1,35693.020320,663.746300,hintandextended,nbiot,60 +on9,0,0,24,1,0,1432,1472.010000,95,0,84359.010000,614.810500,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1464.020320,95,0,-1.000000,845.715248,hintandextended,nbiot,60 +on4,0,0,24,1,0,0,1440.010320,95,0,73.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,25,1,0,658,1501.000000,95,1,38715.010320,639.406500,hintandextended,nbiot,60 +on2,0,0,25,1,0,477,1502.000000,95,1,29433.010320,642.679916,hintandextended,nbiot,60 +on8,0,0,25,1,0,360,1502.620640,95,1,22238.620640,665.873380,hintandextended,nbiot,60 +on12,0,0,24,1,0,1003,1463.010320,95,0,59237.010320,611.210836,hintandextended,nbiot,60 +on11,0,0,25,1,0,578,1500.000000,95,1,35649.010320,626.019708,hintandextended,nbiot,60 +on7,0,0,24,1,0,96,1457.000000,95,0,5672.010320,608.813416,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,95,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,76,1501.399680,96,1,6942.010320,627.431080,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,720,1440.010320,96,0,44433.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1203,1440.010320,96,0,74435.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,1,0,1095,1440.969360,96,0,67094.010320,602.400952,hintandextended,nbiot,60 +on7,0,0,26,1,0,176,1560.310320,96,3,10244.010320,663.130628,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,0,1440.369680,96,0,2383.010320,602.407872,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,96,0,-1.000000,758.060372,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,1176,1500.310320,96,2,70369.010320,627.424128,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,96,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1196,1476.010320,97,0,70414.010320,616.410836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,99,1501.969360,97,1,5700.010320,664.117452,hintandextended,nbiot,60 +on11,0,0,25,1,0,420,1502.610320,97,1,28619.620640,665.609252,hintandextended,nbiot,60 +on5,0,0,26,1,0,198,1563.300000,97,2,13092.010320,730.489792,hintandextended,nbiot,60 +on8,0,0,24,1,0,1080,1440.010320,97,0,66472.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1431,1440.000000,97,1,-1.000000,576.006500,hintandextended,nbiot,60 +on9,0,0,26,1,0,139,1582.161600,97,3,10603.630960,698.729348,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1461.630960,97,0,-1.000000,818.753004,hintandextended,nbiot,60 +on7,0,0,24,1,0,56,1477.010320,97,0,2174.010320,626.820836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,97,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,243,1500.310320,97,1,17859.010320,648.887336,hintandextended,nbiot,60 +on4,0,0,25,1,0,171,1501.020320,97,1,10562.010320,638.381128,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1260,1440.010320,98,0,76514.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,24,1,0,786,1440.010320,98,0,47187.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,1020,1440.010320,98,0,62366.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,1,0,1236,1456.010320,98,0,72419.010320,608.410836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,98,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1382,1440.000000,98,0,84990.010000,602.006500,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1515.030960,98,0,-1.000000,788.065840,hintandextended,nbiot,60 +on1,0,0,24,1,0,983,1443.010320,98,0,60082.010320,603.210836,hintandextended,nbiot,60 +on3,0,0,24,1,0,600,1441.000000,98,0,37476.010320,602.413416,hintandextended,nbiot,60 +on1,0,0,26,1,0,152,1561.630960,99,3,8467.010320,684.062384,hintandextended,nbiot,60 +on8,0,0,25,1,0,0,1501.328080,99,1,842.620640,626.752856,hintandextended,nbiot,60 +on11,0,0,24,1,0,83,1443.010320,99,0,5190.010320,603.210836,hintandextended,nbiot,60 +on2,0,0,26,1,0,578,1562.730320,99,2,35848.010320,704.411420,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,180,1441.010320,99,0,13012.010320,640.760836,hintandextended,nbiot,60 +on4,0,0,24,1,0,240,1440.010320,99,0,17041.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,26,1,0,619,1584.810640,99,2,35889.630960,736.650672,hintandextended,nbiot,60 +on10,0,0,24,1,0,489,1442.000000,99,0,31070.010320,623.859792,hintandextended,nbiot,60 +on3,0,0,24,1,0,420,1441.000000,99,0,26156.010320,614.360000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,99,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1524.282560,99,0,-1.000000,869.853892,hintandextended,nbiot,60 +on9,0,0,26,1,0,570,1583.820960,99,2,31111.630960,705.041384,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1340,1440.010320,100,0,80798.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,920,1441.000000,100,0,55036.010320,602.413416,hintandextended,nbiot,60 +on8,0,0,24,1,0,600,1440.989680,100,0,37677.010320,602.409288,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1459.010320,100,0,-1.000000,713.657792,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,195,1441.010320,100,0,12812.010320,631.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,129,1440.010320,100,0,8835.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,100,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,1119,1500.010320,101,1,67136.010320,626.017336,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1491.020320,101,0,-1.000000,726.468292,hintandextended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,101,0,83208.010000,602.006500,hintandextended,nbiot,60 +on3,0,0,24,1,0,103,1464.000000,101,0,5138.010320,611.613416,hintandextended,nbiot,60 +on9,0,0,24,1,0,207,1448.010320,101,0,12783.010320,605.224252,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,960,1442.000000,101,0,61156.010320,632.323416,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,101,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,874,1455.000000,102,0,51401.010320,608.013416,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,737,1440.000000,102,0,46032.010320,602.006708,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,3,24,0,0,0,1440.000000,102,0,-1.000000,654.026832,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,102,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1282,1442.010320,102,0,76783.010320,602.810836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,103,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,728,1443.359360,103,0,46804.010320,614.673868,hintandextended,nbiot,60 +on5,0,0,24,1,0,382,1442.010320,103,0,22387.010320,602.810836,hintandextended,nbiot,60 +on2,0,0,25,1,0,991,1501.269360,103,1,61144.010320,643.810952,hintandextended,nbiot,60 +on4,0,0,25,1,0,878,1501.010320,103,1,55513.010320,662.687336,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1475.020640,103,0,-1.000000,824.102168,hintandextended,nbiot,60 +on8,0,0,26,1,0,1058,1560.610320,103,3,64377.010320,681.834128,hintandextended,nbiot,60 +on3,0,0,24,1,0,1200,1441.000000,103,0,75610.010320,615.400000,hintandextended,nbiot,60 +on6,0,0,24,1,0,600,1440.010320,103,0,38682.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,1,0,527,1469.010320,103,0,31176.010320,624.017544,hintandextended,nbiot,60 +on11,0,0,25,1,0,819,1500.020640,103,1,49077.010320,626.028172,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,407,1467.989680,104,0,24585.010320,613.209288,hintandextended,nbiot,60 +on4,0,0,26,1,0,1076,1561.269360,104,3,63669.010320,663.520744,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1460.630960,104,0,-1.000000,818.353004,hintandextended,nbiot,60 +on8,0,0,24,1,0,262,1442.010320,104,0,15340.010320,602.810836,hintandextended,nbiot,60 +on12,0,0,25,1,0,999,1500.969360,104,1,60750.010320,627.258952,hintandextended,nbiot,60 +on7,0,0,25,1,0,1044,1500.310320,104,2,64873.010320,649.524128,hintandextended,nbiot,60 +on6,0,0,24,1,0,904,1442.000000,104,0,55914.010320,615.410000,hintandextended,nbiot,60 +on10,0,0,25,1,0,406,1527.620640,104,1,24625.630960,637.263380,hintandextended,nbiot,60 +on2,0,0,24,1,0,235,1475.020640,104,0,12392.010320,616.021672,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,833,1473.010320,104,0,47249.010320,615.210836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,104,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,480,1440.020640,105,0,28895.010320,602.021672,hintandextended,nbiot,60 +on9,0,0,24,1,0,180,1440.010320,105,0,12662.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1524.030640,105,0,-1.000000,713.645588,hintandextended,nbiot,60 +on10,0,0,24,1,0,1380,1440.000000,105,0,84915.010000,602.006500,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,105,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1361,1461.010320,105,0,80429.010320,610.410836,hintandextended,nbiot,60 +on1,0,0,26,1,0,1016,1561.310320,106,3,59403.010320,700.840628,hintandextended,nbiot,60 +on5,0,0,24,1,0,780,1440.969360,106,0,49192.010320,602.400952,hintandextended,nbiot,60 +on6,0,0,24,1,0,240,1440.010320,106,0,16856.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,26,1,0,1112,1581.620640,106,2,63001.630960,658.869880,hintandextended,nbiot,60 +on8,0,0,24,1,0,1069,1469.010320,106,0,62961.010320,613.610836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,35,1455.010320,106,0,3247.010320,608.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,106,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,891,1500.969360,106,1,53523.010320,626.407452,hintandextended,nbiot,60 +on7,0,0,24,1,0,1140,1440.010320,106,0,71926.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,86,1446.010320,106,0,5577.010320,604.410836,hintandextended,nbiot,60 +on10,0,0,26,1,0,903,1561.969360,106,4,57012.010320,699.940536,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1515.651600,106,0,-1.000000,866.361260,hintandextended,nbiot,60 +on1,0,0,24,1,0,300,1440.010320,107,0,18528.010320,602.010836,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1453.010320,107,0,-1.000000,685.230960,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,494,1440.000000,107,0,30537.010320,602.006708,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1351,1451.010320,107,0,79757.010320,606.410836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,107,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1175,1455.010320,107,0,69142.010320,608.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,420,1441.010320,108,0,25978.010320,639.720836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,374,1500.310320,108,2,25933.010320,656.024128,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,529,1500.200320,108,1,31030.010320,626.093336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,108,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1465.010320,108,0,-1.000000,742.057792,hintandextended,nbiot,60 +on10,0,0,24,1,0,144,1444.010320,108,0,9945.010320,603.610836,hintandextended,nbiot,60 +on9,0,0,24,1,0,772,1472.010320,108,0,45793.010320,614.810836,hintandextended,nbiot,60 +on8,0,0,24,1,0,366,1441.959040,108,0,24593.010320,602.803532,hintandextended,nbiot,60 +on7,0,0,24,1,0,335,1455.010320,109,0,20162.010320,608.010836,hintandextended,nbiot,60 +on11,0,0,26,1,0,296,1561.269360,109,2,16028.010320,663.520744,hintandextended,nbiot,60 +on10,0,0,27,1,0,403,1642.920640,109,4,20202.630960,711.333172,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1494.251600,109,0,-1.000000,779.787844,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,60,1440.010320,109,0,6930.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,625,1445.010320,109,0,38665.010320,604.010836,hintandextended,nbiot,60 +on3,0,0,25,1,0,120,1503.589680,109,1,8354.620640,676.920996,hintandextended,nbiot,60 +on12,0,0,24,1,0,239,1479.010320,109,0,11822.010320,617.610836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,109,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1464.620640,110,0,-1.000000,741.922044,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,476,1476.010320,110,0,26511.010320,616.410836,hintandextended,nbiot,60 +on3,0,0,24,1,0,27,1447.010320,110,0,2285.010320,604.810836,hintandextended,nbiot,60 +on10,0,0,25,1,0,720,1501.620640,110,1,43756.620640,626.870088,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,110,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,480,1441.010320,110,0,31832.010320,640.110836,hintandextended,nbiot,60 +on1,0,0,25,1,0,562,1500.320640,110,1,34054.010320,650.841672,hintandextended,nbiot,60 +on9,0,0,24,1,0,62,1440.989680,110,0,6164.010320,602.409288,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,111,0,-1.000000,732.073788,hintandextended,nbiot,60 +on4,0,0,25,1,0,480,1501.641280,111,1,30155.620640,664.181636,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,400,1461.000000,111,0,24248.010320,610.413416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,798,1440.010320,111,0,47500.010320,602.010836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1052,1452.010320,111,0,62711.010320,606.810836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,596,1502.979360,111,1,34365.010320,640.211660,hintandextended,nbiot,60 +on6,0,0,24,1,0,966,1440.010320,111,0,60265.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,111,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1397,1440.000000,112,0,82864.010000,602.006500,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1493.630960,112,0,-1.000000,805.532672,hintandextended,nbiot,60 +on11,0,0,25,1,0,698,1501.010320,112,1,43555.010320,664.767336,hintandextended,nbiot,60 +on9,0,0,24,1,0,37,1458.000000,112,0,1296.010320,609.213416,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,660,1441.000000,112,0,39958.010320,605.916708,hintandextended,nbiot,60 +on1,0,0,24,1,0,1163,1443.010320,112,0,71781.010320,603.210836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,815,1455.010320,112,0,48290.010320,608.010836,hintandextended,nbiot,60 +on5,0,0,24,1,0,1289,1449.010320,112,0,77293.010320,605.610836,hintandextended,nbiot,60 +on7,0,0,25,1,0,300,1502.600000,112,1,18995.620640,627.261832,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,112,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,878,1500.220320,113,1,53406.010320,626.101336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,900,1441.000000,113,0,57367.010320,602.413416,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,420,1441.000000,113,0,27878.010320,602.413416,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1471.020640,113,0,-1.000000,692.448504,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,788,1441.000000,113,0,50046.010320,610.466708,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,113,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,680,1440.010320,114,0,41581.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,1020,1501.610320,114,1,64364.620640,626.859252,hintandextended,nbiot,60 +on6,0,0,24,1,0,360,1441.969360,114,0,22286.010320,629.457660,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,667,1501.369040,114,1,41621.630960,652.762740,hintandextended,nbiot,60 +on11,0,0,25,1,0,818,1500.969360,114,1,50271.010320,626.407452,hintandextended,nbiot,60 +on10,0,0,25,1,0,402,1503.289680,114,2,28487.010320,700.382580,hintandextended,nbiot,60 +on3,0,0,25,1,0,496,1500.030960,114,1,32016.010320,626.032300,hintandextended,nbiot,60 +on1,0,0,25,1,0,816,1501.600000,114,2,52230.010320,694.233292,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1472.251600,114,0,-1.000000,797.021384,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,114,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,26,1,0,391,1580.051600,115,2,22899.030960,658.898556,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1503.292880,115,0,-1.000000,835.444604,hintandextended,nbiot,60 +on10,0,0,25,1,0,286,1502.310320,115,1,18391.010320,684.904128,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,26,1,0,416,1561.510000,115,2,26237.010320,676.603792,hintandextended,nbiot,60 +on2,0,0,24,1,0,935,1455.010320,115,0,57529.010320,608.010836,hintandextended,nbiot,60 +on8,0,0,26,1,0,319,1582.630960,115,2,18432.630960,672.975592,hintandextended,nbiot,60 +on11,0,0,25,1,0,359,1502.010320,115,1,22859.010320,677.517336,hintandextended,nbiot,60 +on6,0,0,25,1,0,180,1502.359040,115,1,13712.620640,676.421824,hintandextended,nbiot,60 +on3,0,0,25,1,0,257,1501.989680,115,1,16243.630960,639.809080,hintandextended,nbiot,60 +on9,0,0,25,1,0,239,1501.310320,115,2,16202.010320,663.437212,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,115,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,158,1501.010320,116,1,10071.010320,662.687336,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,1260,1501.610320,116,1,75733.620640,626.859252,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1504.641280,116,0,-1.000000,809.943716,hintandextended,nbiot,60 +on2,0,0,24,1,0,540,1440.010320,116,0,32722.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,1080,1440.010320,116,0,67133.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,607,1440.989680,116,0,39381.010320,602.402580,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,215,1502.269360,116,1,13131.010320,641.234368,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,26,1,0,296,1560.520320,116,3,16211.010320,663.208128,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,116,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,94,1455.010320,116,0,6896.010320,616.070836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,900,1440.010320,117,0,55446.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,60,1440.010320,117,0,4115.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1058,1501.230640,117,1,66262.010320,664.855464,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1480.030960,117,0,-1.000000,722.045924,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1020,1441.000000,117,0,62632.010320,610.460000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,360,1440.010320,117,0,22323.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,117,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1212,1440.010320,118,0,73803.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,579,1500.969360,118,1,35507.010320,626.407452,hintandextended,nbiot,60 +on10,0,0,25,1,0,669,1500.310320,118,1,42885.010320,644.980836,hintandextended,nbiot,60 +on8,0,0,24,1,0,1327,1440.000000,118,0,81998.010320,602.013208,hintandextended,nbiot,60 +on11,0,0,24,1,0,480,1441.010320,118,0,31537.010320,631.920836,hintandextended,nbiot,60 +on9,0,0,24,1,0,180,1440.989680,118,0,12078.010320,602.409288,hintandextended,nbiot,60 +on7,0,0,24,1,0,1414,1454.010000,118,0,86017.010000,607.610500,hintandextended,nbiot,60 +on2,0,0,25,1,0,1449,1520.320000,118,2,86057.020000,639.977792,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1464.030320,118,0,-1.000000,845.712332,hintandextended,nbiot,60 +on5,0,0,25,1,0,360,1501.610320,118,1,24524.620640,626.859252,hintandextended,nbiot,60 +on12,0,0,25,1,0,567,1503.300000,118,2,36220.010320,737.813292,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,118,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1218,1440.010320,119,0,75501.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,1,0,1020,1441.010320,119,0,64116.010320,639.720836,hintandextended,nbiot,60 +on2,0,0,24,1,0,300,1441.000000,119,0,18157.010320,602.413416,hintandextended,nbiot,60 +on9,0,0,24,1,0,360,1440.010320,119,0,23285.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,900,1442.989680,119,0,57439.010320,633.765996,hintandextended,nbiot,60 +on6,0,0,24,1,0,39,1459.010320,119,0,2371.010320,609.610836,hintandextended,nbiot,60 +on7,0,0,24,1,0,1319,1479.010320,119,0,77389.010320,617.610836,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1538.030960,119,0,-1.000000,875.299588,hintandextended,nbiot,60 +on11,0,0,24,1,0,1200,1440.010320,119,0,75557.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,25,1,0,1101,1500.310320,119,1,66851.010320,645.240836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,119,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,824,1464.010320,119,0,47322.010320,611.610836,hintandextended,nbiot,60 +on2,0,0,25,1,0,98,1501.010320,120,1,6993.010320,663.727336,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,607,1441.989680,120,0,37573.010320,640.112580,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,703,1500.010320,120,1,43039.010320,626.017336,hintandextended,nbiot,60 +on7,0,0,25,1,0,529,1500.330960,120,2,35700.010320,657.989092,hintandextended,nbiot,60 +on9,0,0,25,1,0,169,1500.200320,120,1,9966.010320,626.093336,hintandextended,nbiot,60 +on3,0,0,24,1,0,420,1440.010320,120,0,28165.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,491,1440.030640,120,0,31894.010320,602.025464,hintandextended,nbiot,60 +on6,0,0,25,1,0,780,1502.630960,120,1,49049.620640,703.967508,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,120,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,51,1472.010320,120,0,1295.010320,628.720836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1459.010320,120,0,-1.000000,817.698040,hintandextended,nbiot,60 +on8,0,0,25,1,0,240,1501.610320,121,1,16542.620640,626.859252,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,539,1480.010320,121,0,32275.010320,631.660836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1329,1440.010320,121,0,80183.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,660,1441.989680,121,0,39731.010320,602.815996,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,121,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,120,1441.010320,121,0,10384.010320,630.367544,hintandextended,nbiot,60 +on9,0,0,24,1,0,778,1478.010320,121,0,46889.010320,617.210836,hintandextended,nbiot,60 +on5,0,0,25,1,0,836,1537.620640,121,1,46929.630960,641.263380,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1476.251600,121,0,-1.000000,798.607968,hintandextended,nbiot,60 +on4,0,0,24,1,0,1241,1445.010320,121,1,76644.010320,604.017336,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1140,1440.010320,122,0,68832.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,1,0,540,1440.010320,122,0,33642.010320,602.010836,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1475.020320,122,0,-1.000000,746.061584,hintandextended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,122,0,83816.010000,602.006500,hintandextended,nbiot,60 +on5,0,0,24,1,0,322,1442.020640,122,0,20060.010320,602.821672,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,833,1473.010320,122,0,48002.010320,615.210836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,120,1440.020640,122,0,8078.010320,602.021672,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,122,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,318,1442.989680,123,0,20879.010320,641.812580,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,26,1,0,908,1560.310320,123,3,51842.010320,663.130628,hintandextended,nbiot,60 +on9,0,0,25,1,0,240,1500.641280,123,1,16306.620640,626.471636,hintandextended,nbiot,60 +on5,0,0,24,1,0,795,1440.969360,123,0,48032.010320,602.400952,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,123,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,535,1476.020640,123,0,30038.010320,637.878380,hintandextended,nbiot,60 +on10,0,0,24,1,0,431,1441.979360,123,0,26814.010320,602.811868,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1455.620640,123,0,-1.000000,738.342168,hintandextended,nbiot,60 +on1,0,0,24,1,0,1131,1472.010320,124,0,66761.010320,631.710836,hintandextended,nbiot,60 +on2,0,0,25,1,0,720,1502.620320,124,2,44031.630640,664.579752,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,124,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,540,1442.000000,124,0,33479.010320,641.163416,hintandextended,nbiot,60 +on5,0,0,25,1,0,398,1503.210000,124,1,24620.010320,694.123916,hintandextended,nbiot,60 +on10,0,0,25,1,0,466,1500.010320,124,1,28610.010320,626.017336,hintandextended,nbiot,60 +on9,0,0,24,1,0,480,1442.979360,124,0,30187.010320,603.218576,hintandextended,nbiot,60 +on6,0,0,24,1,0,563,1443.010320,124,0,33425.010320,603.210836,hintandextended,nbiot,60 +on8,0,0,24,1,0,0,1440.010320,124,0,3087.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,300,1440.400640,124,0,19595.010320,602.433672,hintandextended,nbiot,60 +on7,0,0,25,1,0,899,1500.220320,124,1,51218.010320,626.101336,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1525.040960,124,0,-1.000000,896.150336,hintandextended,nbiot,60 +on4,0,0,24,1,0,1380,1440.000000,124,0,85830.010000,602.006500,hintandextended,nbiot,60 +on6,0,0,24,1,0,32,1452.020640,125,0,1181.010320,606.821672,hintandextended,nbiot,60 +on2,0,0,24,1,0,212,1452.020640,125,0,13886.010320,606.821672,hintandextended,nbiot,60 +on8,0,0,24,1,0,809,1449.020640,125,0,48960.010320,605.621672,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,900,1440.010320,125,0,55103.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,600,1460.610320,125,1,37630.620640,610.459252,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,125,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1478.010320,125,0,-1.000000,721.271208,hintandextended,nbiot,60 +on12,0,0,24,1,0,267,1459.420000,126,1,16342.430320,609.787916,hintandextended,nbiot,60 +on9,0,0,25,1,0,416,1501.010320,126,1,24403.010320,664.767336,hintandextended,nbiot,60 +on11,0,0,24,1,0,788,1441.969040,126,1,48318.010320,603.659032,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,126,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,1178,1501.000000,126,1,70516.010320,639.406500,hintandextended,nbiot,60 +on7,0,0,24,1,0,180,1441.010320,126,0,11587.010320,640.104336,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1456.630960,126,0,-1.000000,842.759712,hintandextended,nbiot,60 +on6,0,0,24,1,0,607,1440.989680,126,0,36322.010320,602.402580,hintandextended,nbiot,60 +on3,0,0,24,1,0,130,1441.989680,126,0,8477.010320,602.815996,hintandextended,nbiot,60 +on2,0,0,24,1,0,327,1448.010320,126,0,19145.010320,642.520836,hintandextended,nbiot,60 +on5,0,0,25,1,0,660,1501.610320,126,1,42987.620640,626.859252,hintandextended,nbiot,60 +on4,0,0,24,1,0,1106,1447.010320,126,0,67498.010320,622.620836,hintandextended,nbiot,60 +on4,0,0,24,1,0,0,1440.969360,127,0,1414.010320,602.400952,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1482.641280,127,0,-1.000000,801.157132,hintandextended,nbiot,60 +on9,0,0,25,1,0,1036,1500.010320,127,1,62282.010320,626.017336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,411,1472.000000,127,0,21981.010320,614.813416,hintandextended,nbiot,60 +on11,0,0,24,1,0,960,1441.000000,127,0,58563.010320,615.010208,hintandextended,nbiot,60 +on10,0,0,25,1,0,38,1500.310320,127,2,5175.010320,665.124128,hintandextended,nbiot,60 +on2,0,0,25,1,0,375,1502.610320,127,1,22021.630960,627.265960,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,554,1440.000000,127,0,32732.010320,602.006708,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,127,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,294,1476.010320,127,0,15438.010320,638.524252,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,614,1440.000000,128,0,39033.010320,602.006708,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1324,1440.989680,128,0,80371.010320,602.402580,hintandextended,nbiot,60 +on4,0,0,24,1,0,960,1440.010320,128,0,60955.010320,602.010836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,128,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,209,1449.010320,128,0,12891.010320,605.610836,hintandextended,nbiot,60 +on2,0,0,24,1,0,303,1440.010320,128,0,19521.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,1,0,755,1456.000000,128,0,45770.010320,608.413416,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1440.000000,128,0,-1.000000,732.046956,hintandextended,nbiot,60 +on1,0,0,24,1,0,276,1459.020640,129,0,18049.010320,705.828380,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1518.030960,129,0,-1.000000,841.306296,hintandextended,nbiot,60 +on4,0,0,24,1,0,712,1473.000000,129,0,41188.010320,615.213416,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,660,1441.010320,129,0,41239.010320,605.667544,hintandextended,nbiot,60 +on11,0,0,25,1,0,478,1500.010320,129,1,27268.010320,626.017336,hintandextended,nbiot,60 +on6,0,0,25,1,0,415,1501.010320,129,1,24021.010320,663.727336,hintandextended,nbiot,60 +on3,0,0,24,1,0,945,1466.010320,129,0,57088.010320,639.060836,hintandextended,nbiot,60 +on10,0,0,24,1,0,16,1440.989680,129,0,2377.010320,602.402580,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,129,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,300,1441.010320,129,0,18108.010320,639.720836,hintandextended,nbiot,60 +on9,0,0,24,1,0,720,1440.020640,129,0,45328.010320,602.021672,hintandextended,nbiot,60 +on8,0,0,24,1,0,686,1447.000000,130,0,40525.010320,604.813416,hintandextended,nbiot,60 +on3,0,0,24,1,0,360,1440.010320,130,0,21897.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,322,1442.010320,130,0,18489.010320,602.810836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,660,1442.000000,130,0,40572.010320,617.106708,hintandextended,nbiot,60 +on4,0,0,24,1,0,594,1474.010320,130,0,33353.010320,615.610836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,130,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,179,1479.020640,130,0,8831.010320,617.621672,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1514.030960,130,0,-1.000000,813.686172,hintandextended,nbiot,60 +on1,0,0,24,1,0,862,1442.010320,130,0,51580.010320,602.810836,hintandextended,nbiot,60 +on2,0,0,24,1,0,1200,1440.010320,130,0,72045.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,1,0,987,1447.010320,131,0,60498.010320,604.810836,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1441.010320,131,0,34584.010320,624.120836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,720,1440.010320,131,0,44224.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,1,0,98,1459.000000,131,0,6717.010320,609.613416,hintandextended,nbiot,60 +on9,0,0,25,1,0,638,1500.010320,131,1,39100.010320,626.017336,hintandextended,nbiot,60 +on6,0,0,24,1,0,360,1440.010320,131,0,24309.010320,602.010836,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1485.030960,131,0,-1.000000,750.059340,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,131,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1451.020320,132,0,-1.000000,762.468292,hintandextended,nbiot,60 +on4,0,0,24,1,0,1380,1440.000000,132,0,83296.010000,602.006500,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,277,1458.000000,132,0,16870.010320,609.213416,hintandextended,nbiot,60 +on11,0,0,24,1,0,634,1454.010320,132,0,36881.010320,607.610836,hintandextended,nbiot,60 +on7,0,0,24,1,0,60,1440.010320,132,0,5611.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,25,1,0,1046,1501.310320,132,2,66007.010320,686.974128,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1031,1440.030640,132,0,64102.010320,602.025464,hintandextended,nbiot,60 +on10,0,0,24,1,0,159,1459.010320,132,0,9225.010320,609.610836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,132,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,58,1478.010320,133,0,858.010320,617.210836,hintandextended,nbiot,60 +on10,0,0,26,1,0,139,1582.910320,133,2,6135.630960,669.135960,hintandextended,nbiot,60 +on5,0,0,24,1,0,3,1500.620640,133,1,898.630960,738.133380,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,120,1440.010320,133,0,7423.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,458,1459.000000,133,1,29382.010320,609.613208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,85,1461.010320,133,1,6095.010320,613.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1481.261920,133,0,-1.000000,800.605388,hintandextended,nbiot,60 +on9,0,0,24,1,0,865,1446.000000,133,0,53650.010320,604.413416,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,133,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,634,1454.010320,133,0,36502.010320,607.610836,hintandextended,nbiot,60 +on10,0,0,26,1,0,1233,1562.520000,134,3,73207.010320,687.017792,hintandextended,nbiot,60 +on7,0,0,25,1,0,1265,1500.310320,134,1,78276.010320,637.830836,hintandextended,nbiot,60 +on1,0,0,24,1,0,840,1440.010320,134,0,53633.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,120,1440.020640,134,0,10371.010320,602.021672,hintandextended,nbiot,60 +on6,0,0,25,1,0,270,1511.620640,134,1,15266.630960,630.863380,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,134,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,710,1470.020640,134,0,41818.010320,614.021672,hintandextended,nbiot,60 +on5,0,0,25,1,0,1200,1501.948720,134,1,71304.010320,627.657404,hintandextended,nbiot,60 +on3,0,0,24,1,0,1109,1450.010320,134,0,68281.010320,643.704336,hintandextended,nbiot,60 +on12,0,0,24,1,0,264,1444.010320,134,0,15226.010320,603.610836,hintandextended,nbiot,60 +on8,0,0,24,1,0,720,1440.010320,134,0,44585.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,600,1500.641280,134,1,36420.620640,626.471636,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1515.661920,134,0,-1.000000,892.392220,hintandextended,nbiot,60 +on12,0,0,24,1,0,45,1465.010320,135,0,3609.010320,612.010836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1502.030960,135,0,-1.000000,834.926420,hintandextended,nbiot,60 +on6,0,0,25,1,0,315,1501.489680,135,2,20290.010320,642.410580,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,416,1562.300000,135,3,22610.010320,693.839916,hintandextended,nbiot,60 +on5,0,0,24,1,0,1228,1449.010320,135,0,74248.010320,640.060836,hintandextended,nbiot,60 +on7,0,0,24,1,0,240,1441.959040,135,0,14476.010320,602.803532,hintandextended,nbiot,60 +on10,0,0,24,1,0,840,1441.010320,135,0,51167.010320,638.817544,hintandextended,nbiot,60 +on1,0,0,24,1,0,831,1471.010320,135,0,50378.010320,614.410836,hintandextended,nbiot,60 +on8,0,0,24,1,0,420,1441.000000,135,0,26457.010320,603.700000,hintandextended,nbiot,60 +on9,0,0,24,1,0,480,1441.000000,135,0,29889.010320,602.413416,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,135,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,0,1440.020640,136,0,1470.010320,602.021672,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,649,1469.010320,136,0,36943.010320,613.610836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,240,1440.010320,136,0,14559.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,720,1441.000000,136,0,44542.010320,602.413416,hintandextended,nbiot,60 +on1,0,0,24,1,0,86,1446.010320,136,0,7240.010320,604.410836,hintandextended,nbiot,60 +on4,0,0,24,1,0,989,1450.000000,136,0,59260.010320,606.013416,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,136,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1498.030960,136,0,-1.000000,755.272756,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,1020,1442.000000,137,0,64006.010320,641.163416,hintandextended,nbiot,60 +on8,0,0,25,1,0,660,1501.610320,137,1,40917.620640,626.859252,hintandextended,nbiot,60 +on6,0,0,24,1,0,900,1441.000000,137,0,55615.010320,615.400000,hintandextended,nbiot,60 +on7,0,0,24,1,0,610,1442.000000,137,0,38342.010320,641.163416,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,416,1501.300000,137,2,28446.010320,666.813292,hintandextended,nbiot,60 +on10,0,0,25,1,0,120,1501.610320,137,1,9680.620640,626.859252,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1590.882560,137,0,-1.000000,870.493684,hintandextended,nbiot,60 +on11,0,0,24,1,0,1380,1440.000000,137,0,85307.010000,602.006500,hintandextended,nbiot,60 +on12,0,0,25,1,0,240,1502.610320,137,1,15003.620640,641.169252,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,137,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,398,1503.969360,137,1,23689.010320,665.977576,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,1178,1501.010320,138,1,73158.010320,642.277336,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1440.010320,138,0,35858.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,1,0,671,1440.030640,138,0,40719.010320,602.025464,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,84,1445.010320,138,0,6047.010320,637.160836,hintandextended,nbiot,60 +on4,0,0,24,1,0,732,1441.959040,138,0,45857.010320,602.803532,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,138,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,27,1,0,914,1620.820320,138,5,55200.010320,700.327920,hintandextended,nbiot,60 +on2,0,0,25,1,0,819,1502.479360,138,1,53677.010320,680.311452,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1440.000000,138,0,-1.000000,810.100620,hintandextended,nbiot,60 +on11,0,0,26,1,0,772,1562.779360,138,4,47679.010320,687.973036,hintandextended,nbiot,60 +on6,0,0,25,1,0,1298,1501.220320,138,1,77977.010320,664.851336,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1558.682560,139,0,-1.000000,883.593768,hintandextended,nbiot,60 +on3,0,0,26,1,0,1316,1561.300000,139,2,79871.010320,676.519792,hintandextended,nbiot,60 +on1,0,0,24,1,0,1200,1441.000000,139,0,72149.010320,614.360000,hintandextended,nbiot,60 +on12,0,0,24,1,0,240,1440.010320,139,0,15515.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,37,1458.000000,139,0,330.010320,609.213416,hintandextended,nbiot,60 +on2,0,0,26,1,0,1318,1581.410640,139,2,78767.030960,672.623548,hintandextended,nbiot,60 +on9,0,0,24,1,0,977,1441.030960,139,0,58146.010320,602.432508,hintandextended,nbiot,60 +on5,0,0,25,1,0,1140,1501.610320,139,1,71875.620640,626.859252,hintandextended,nbiot,60 +on10,0,0,24,1,0,282,1463.010320,139,0,15468.010320,617.704128,hintandextended,nbiot,60 +on4,0,0,25,1,0,1313,1501.210000,139,1,78727.010320,638.840500,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,360,1440.010320,139,0,24667.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,139,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1080,1441.010320,140,0,66085.010320,636.860836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,1064,1501.000000,140,1,63213.010320,639.406500,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,274,1454.030960,140,0,17303.010320,607.625800,hintandextended,nbiot,60 +on11,0,0,25,1,0,1016,1501.010320,140,1,60421.010320,663.727336,hintandextended,nbiot,60 +on2,0,0,24,1,0,600,1440.010320,140,0,36722.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,25,1,0,191,1500.310320,140,2,13366.010320,643.674128,hintandextended,nbiot,60 +on3,0,0,24,1,0,76,1444.969040,140,0,7084.010320,646.517740,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1472.020640,140,0,-1.000000,822.902168,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,140,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,162,1500.979360,140,1,10463.010320,626.411452,hintandextended,nbiot,60 +on4,0,0,24,1,0,713,1474.020640,140,0,41204.010320,652.931672,hintandextended,nbiot,60 +on3,0,0,24,1,0,300,1441.010320,141,0,21545.010320,639.720836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,599,1479.010320,141,0,34252.010320,617.610836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1462.010320,141,0,-1.000000,714.837668,hintandextended,nbiot,60 +on8,0,0,25,1,0,413,1500.220320,141,1,24955.010320,626.101336,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,141,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,974,1440.000000,141,0,58451.010320,602.006708,hintandextended,nbiot,60 +on11,0,0,24,1,0,120,1440.010320,141,0,10079.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,720,1440.010320,142,0,46711.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,924,1444.010320,142,0,55419.010320,603.610836,hintandextended,nbiot,60 +on3,0,0,24,1,0,95,1455.010320,142,0,5923.010320,608.010836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,142,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,300,1440.010320,142,0,20149.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,25,1,0,900,1502.630960,142,1,54072.620640,661.724216,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1480.630960,142,0,-1.000000,722.306048,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,300,1441.010320,143,0,20390.010320,639.720836,hintandextended,nbiot,60 +on10,0,0,25,1,0,418,1502.469040,143,2,28345.010320,653.852324,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1501.651600,143,0,-1.000000,782.774676,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,498,1442.369360,143,0,32416.010320,633.770952,hintandextended,nbiot,60 +on6,0,0,25,1,0,407,1501.959040,143,1,23727.010320,626.810032,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,143,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,660,1441.000000,143,0,41523.010320,615.400000,hintandextended,nbiot,60 +on12,0,0,26,1,0,576,1563.610320,143,4,33827.010320,691.743920,hintandextended,nbiot,60 +on5,0,0,25,1,0,537,1537.661920,143,1,32457.630960,641.091392,hintandextended,nbiot,60 +on6,0,0,25,1,0,676,1501.000000,144,1,41294.010320,632.913208,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,42,1463.989680,144,0,553.010320,611.615996,hintandextended,nbiot,60 +on12,0,0,25,1,0,21,1502.620640,144,1,593.630960,627.263380,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1468.641280,144,0,-1.000000,795.543716,hintandextended,nbiot,60 +on10,0,0,24,1,0,1310,1471.010320,144,0,76780.010320,626.370836,hintandextended,nbiot,60 +on7,0,0,24,1,0,600,1441.010320,144,0,38588.010320,610.470836,hintandextended,nbiot,60 +on5,0,0,24,1,0,780,1441.000000,144,0,49947.010320,614.360000,hintandextended,nbiot,60 +on1,0,0,25,1,0,859,1500.010320,144,1,53002.010320,626.017336,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,144,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,1341,1500.310320,144,1,82474.010320,644.337336,hintandextended,nbiot,60 +on10,0,0,24,1,0,720,1442.000000,145,0,43613.010320,641.163416,hintandextended,nbiot,60 +on3,0,0,24,1,0,32,1453.010320,145,0,2726.010320,619.170836,hintandextended,nbiot,60 +on12,0,0,24,1,0,1253,1474.010320,145,0,74102.010320,653.960836,hintandextended,nbiot,60 +on8,0,0,24,1,0,300,1440.010320,145,0,19066.010320,602.010836,hintandextended,nbiot,60 +on0,1,11,24,0,0,0,1453.020640,145,0,-1.000000,867.315584,hintandextended,nbiot,60 +on5,0,0,25,1,0,98,1501.020320,145,1,6306.010320,636.184544,hintandextended,nbiot,60 +on1,0,0,25,1,0,579,1500.010320,145,1,35301.010320,626.017336,hintandextended,nbiot,60 +on6,0,0,24,1,0,517,1480.010320,145,1,31816.010320,647.527336,hintandextended,nbiot,60 +on4,0,0,25,1,0,900,1500.051280,145,1,56120.020320,626.047136,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,145,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,433,1441.989680,145,0,25481.010320,612.812580,hintandextended,nbiot,60 +on9,0,0,24,1,0,1020,1440.010320,145,0,61600.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,1185,1465.010320,145,0,71551.010320,612.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1491.641280,146,0,-1.000000,804.763840,hintandextended,nbiot,60 +on5,0,0,24,1,0,480,1440.010320,146,0,29835.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,240,1501.610320,146,1,17358.620640,626.859252,hintandextended,nbiot,60 +on6,0,0,25,1,0,1127,1500.310320,146,2,70227.010320,659.274128,hintandextended,nbiot,60 +on7,0,0,25,1,0,1096,1501.010320,146,1,66841.010320,628.380544,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,360,1440.010320,146,0,24054.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,220,1463.000000,146,0,11103.010320,663.870124,hintandextended,nbiot,60 +on3,0,0,25,1,0,188,1501.000000,146,1,11143.630960,652.868416,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,146,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1076,1476.010320,146,0,62038.010320,616.410836,hintandextended,nbiot,60 +on4,0,0,24,1,0,969,1440.969360,147,0,58816.010320,602.400952,hintandextended,nbiot,60 +on5,0,0,24,1,0,455,1455.010320,147,0,26272.010320,608.010836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,878,1500.969360,147,1,57187.010320,626.407452,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,840,1442.000000,147,0,51624.010320,616.970000,hintandextended,nbiot,60 +on9,0,0,27,1,0,1095,1622.600000,147,5,64127.010320,739.396500,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,609,1440.020640,147,0,36859.010320,602.021672,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,147,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1453.010320,147,0,-1.000000,737.271208,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,99,1501.979680,148,1,7944.010320,665.168288,hintandextended,nbiot,60 +on10,0,0,26,1,0,319,1582.851600,148,2,17466.630960,696.470556,hintandextended,nbiot,60 +on8,0,0,25,1,0,42,1523.061600,148,1,1109.040960,655.011264,hintandextended,nbiot,60 +on3,0,0,25,1,0,48,1502.000000,148,1,4541.010320,665.416500,hintandextended,nbiot,60 +on6,0,0,26,1,0,225,1583.920640,148,2,12096.630960,707.674964,hintandextended,nbiot,60 +on5,0,0,25,1,0,343,1502.979360,148,1,18998.010320,640.211660,hintandextended,nbiot,60 +on7,0,0,26,1,0,237,1565.279360,148,3,12055.010320,721.297744,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1503.302880,148,0,-1.000000,835.468728,hintandextended,nbiot,60 +on12,0,0,24,1,0,52,1472.010320,148,0,1069.010320,614.810836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,148,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,278,1561.610320,148,2,17425.010320,693.680420,hintandextended,nbiot,60 +on4,0,0,24,1,0,629,1449.020640,149,0,39261.010320,605.621672,hintandextended,nbiot,60 +on2,0,0,24,1,0,1379,1480.010320,149,0,81306.010320,656.360836,hintandextended,nbiot,60 +on6,0,0,25,1,0,159,1501.000000,149,1,10060.010320,626.419916,hintandextended,nbiot,60 +on12,0,0,25,1,0,98,1501.010320,149,1,7063.010320,630.577336,hintandextended,nbiot,60 +on1,0,0,25,1,0,352,1501.310320,149,1,21315.010320,663.190836,hintandextended,nbiot,60 +on3,0,0,24,1,0,285,1466.000000,149,0,15142.010320,612.413416,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1474.010320,149,0,-1.000000,849.704748,hintandextended,nbiot,60 +on10,0,0,25,1,0,398,1501.220320,149,1,24316.010320,642.108044,hintandextended,nbiot,60 +on7,0,0,24,1,0,18,1441.010320,149,0,1781.010320,610.470836,hintandextended,nbiot,60 +on9,0,0,24,1,0,467,1468.010320,149,0,26954.010320,648.960836,hintandextended,nbiot,60 +on5,0,0,24,1,0,240,1441.010320,149,0,15196.010320,640.110836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,149,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1178,1458.010320,150,0,68703.010320,609.210836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,19,1440.989680,150,0,729.010320,602.402580,hintandextended,nbiot,60 +on2,0,0,24,1,0,455,1456.000000,150,0,27107.010320,608.413416,hintandextended,nbiot,60 +on6,0,0,24,1,0,876,1456.010320,150,0,53090.010320,608.410836,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1452.010320,150,0,-1.000000,762.857792,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,180,1440.010320,150,0,12099.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,551,1440.000000,150,0,35331.010320,602.006708,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,150,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,120,1440.010320,150,0,9475.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,780,1440.010320,151,0,48645.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,1,0,583,1463.010320,151,0,34241.010320,611.210836,hintandextended,nbiot,60 +on11,0,0,24,1,0,1080,1440.010320,151,0,65559.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,382,1442.030960,151,0,23350.010320,602.825800,hintandextended,nbiot,60 +on2,0,0,24,1,0,660,1441.000000,151,0,41594.010320,602.406708,hintandextended,nbiot,60 +on10,0,0,25,1,0,720,1502.620640,151,1,45816.620640,665.620088,hintandextended,nbiot,60 +on9,0,0,25,1,0,600,1503.989680,151,1,36385.620640,717.107580,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1557.271920,151,0,-1.000000,857.015888,hintandextended,nbiot,60 +on12,0,0,24,1,0,1380,1440.000000,151,0,85101.010000,602.006500,hintandextended,nbiot,60 +on1,0,0,24,1,0,420,1440.010320,151,0,26781.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,151,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,200,1501.010000,152,1,11855.010320,639.410500,hintandextended,nbiot,60 +on8,0,0,24,1,0,0,1442.010320,152,0,3128.010320,660.140836,hintandextended,nbiot,60 +on12,0,0,24,1,0,1025,1440.000000,152,0,61395.010320,602.006708,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,199,1581.651600,152,2,8333.630960,658.680556,hintandextended,nbiot,60 +on7,0,0,24,1,0,960,1440.010320,152,0,60588.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,25,1,0,163,1502.289680,152,1,8292.010320,646.422372,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,470,1470.010320,152,0,27558.010320,614.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,60,1503.610320,152,1,5591.620640,677.962544,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,152,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1499.261920,152,0,-1.000000,807.798680,hintandextended,nbiot,60 +on1,0,0,25,1,0,600,1501.610320,153,1,36666.620640,626.859252,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,840,1502.610320,153,1,50530.620640,633.369252,hintandextended,nbiot,60 +on11,0,0,24,1,0,805,1480.630960,153,1,47706.630960,647.320800,hintandextended,nbiot,60 +on7,0,0,24,1,0,971,1442.000000,153,0,60175.010320,645.959792,hintandextended,nbiot,60 +on4,0,0,25,1,0,300,1503.600000,153,1,20980.620640,654.955124,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1553.123840,153,0,-1.000000,855.390196,hintandextended,nbiot,60 +on6,0,0,24,1,0,1380,1440.000000,153,0,84525.010000,602.006500,hintandextended,nbiot,60 +on2,0,0,24,1,0,811,1451.020640,153,0,47666.010320,606.421672,hintandextended,nbiot,60 +on5,0,0,24,1,0,1290,1450.010320,153,0,78997.010320,606.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,153,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,26,1,0,1039,1582.830640,153,2,60216.630960,659.158672,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,480,1502.610320,154,1,29065.620640,645.459252,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1219,1441.969040,154,0,73436.010320,602.801032,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,154,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,3,24,0,0,0,1455.620640,154,0,-1.000000,660.295212,hintandextended,nbiot,60 +on6,0,0,24,1,0,1066,1466.010320,154,0,63267.010320,612.410836,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1463.241280,155,0,-1.000000,741.363592,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,589,1469.010320,155,0,33247.010320,613.610836,hintandextended,nbiot,60 +on12,0,0,24,1,0,312,1440.010320,155,0,19009.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,25,1,0,1260,1501.610320,155,1,78674.620640,626.859252,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,155,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1101,1441.010320,155,0,66020.010320,602.410836,hintandextended,nbiot,60 +on11,0,0,24,1,0,257,1440.000000,155,0,17783.010320,602.006708,hintandextended,nbiot,60 +on8,0,0,25,1,0,60,1501.610320,155,1,5031.620640,626.859252,hintandextended,nbiot,60 +on11,0,0,25,1,0,294,1501.000000,156,1,16868.010320,626.419916,hintandextended,nbiot,60 +on1,0,0,25,1,0,699,1500.010320,156,1,40156.010320,626.017336,hintandextended,nbiot,60 +on7,0,0,24,1,0,74,1441.000000,156,0,6037.010320,639.716708,hintandextended,nbiot,60 +on9,0,0,24,1,0,600,1441.010320,156,0,36801.010320,635.820836,hintandextended,nbiot,60 +on12,0,0,25,1,0,175,1501.010320,156,1,9706.010320,663.467336,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1,1441.979680,156,0,3330.010320,603.455288,hintandextended,nbiot,60 +on10,0,0,24,1,0,180,1441.010320,156,0,14369.010320,639.720836,hintandextended,nbiot,60 +on8,0,0,24,1,0,440,1440.010320,156,0,25300.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,1,0,737,1440.000000,156,0,45859.010320,602.006708,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,156,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1467.010320,156,0,-1.000000,846.891332,hintandextended,nbiot,60 +on6,0,0,24,1,0,780,1440.010320,156,0,48160.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,640,1460.010320,157,0,38900.010320,610.010836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,167,1467.010320,157,0,8382.010320,612.810836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,180,1440.010320,157,0,11829.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,25,1,0,900,1501.020640,157,1,56179.620640,638.179964,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,157,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,939,1501.010320,157,1,58875.010320,639.417336,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1496.630960,157,0,-1.000000,728.706048,hintandextended,nbiot,60 +on10,0,0,25,1,0,540,1501.641280,158,1,32625.620640,654.431636,hintandextended,nbiot,60 +on5,0,0,24,1,0,508,1448.010320,158,0,29242.010320,605.210836,hintandextended,nbiot,60 +on3,0,0,26,1,0,725,1560.610320,158,3,43374.010320,686.644128,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,693,1501.269360,158,1,42270.010320,644.064452,hintandextended,nbiot,60 +on8,0,0,24,1,0,459,1459.010320,158,0,26464.010320,609.610836,hintandextended,nbiot,60 +on2,0,0,25,1,0,639,1502.000000,158,1,39614.010320,677.506500,hintandextended,nbiot,60 +on6,0,0,24,1,0,840,1440.010320,158,0,50746.010320,602.010836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1464.620640,158,0,-1.000000,819.928752,hintandextended,nbiot,60 +on9,0,0,24,1,0,240,1440.010320,158,0,17497.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,206,1446.010320,158,0,13377.010320,604.410836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,158,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,807,1447.010320,159,0,48722.010320,604.810836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1460.630960,159,0,-1.000000,818.346296,hintandextended,nbiot,60 +on6,0,0,25,1,0,285,1501.610320,159,2,19929.010320,713.744128,hintandextended,nbiot,60 +on8,0,0,24,1,0,706,1466.010320,159,0,42185.010320,612.410836,hintandextended,nbiot,60 +on7,0,0,25,1,0,156,1517.620640,159,1,9026.630960,633.263380,hintandextended,nbiot,60 +on12,0,0,24,1,0,52,1472.020640,159,0,3361.010320,614.821672,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,155,1455.020640,159,0,8986.010320,608.021672,hintandextended,nbiot,60 +on5,0,0,24,1,0,562,1443.010320,159,0,36012.010320,641.560836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,159,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1157,1440.000000,159,0,71081.010320,602.006708,hintandextended,nbiot,60 +on4,0,0,24,1,0,250,1440.000000,159,0,16320.010320,602.013208,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,304,1440.989680,160,0,20450.010320,602.415788,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,10,1441.989680,160,0,347.010320,611.909288,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,347,1502.259040,160,2,25009.010320,660.066824,hintandextended,nbiot,60 +on5,0,0,24,1,0,152,1452.010320,160,0,10683.010320,606.810836,hintandextended,nbiot,60 +on4,0,0,25,1,0,521,1501.179360,160,1,32392.010320,626.491452,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1440.000000,160,0,-1.000000,758.100620,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,160,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,534,1501.310320,160,2,34329.010320,691.530836,hintandextended,nbiot,60 +on7,0,0,25,1,0,372,1501.320640,160,2,27267.010320,695.044964,hintandextended,nbiot,60 +on11,0,0,24,1,0,180,1442.000000,161,0,12422.010320,641.163416,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,247,1441.979360,161,0,17417.010320,602.805160,hintandextended,nbiot,60 +on0,1,6,24,0,0,0,1568.041280,161,0,-1.000000,783.276884,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1200,1440.010320,161,0,72242.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,1,0,3,1440.020640,161,0,2015.010320,602.021672,hintandextended,nbiot,60 +on4,0,0,23,1,0,0,1432.010320,161,0,2072.010320,598.810836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,161,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,720,1440.010320,161,0,44386.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,237,1472.159360,162,1,14798.010320,614.876952,hintandextended,nbiot,60 +on12,0,0,24,1,0,120,1440.010320,162,0,8724.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,1,0,180,1441.000000,162,0,11227.010320,606.826708,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,461,1501.000000,162,1,28771.010320,626.419916,hintandextended,nbiot,60 +on4,0,0,24,1,0,480,1442.010320,162,0,31449.010320,641.174252,hintandextended,nbiot,60 +on2,0,0,24,1,0,1364,1464.010320,162,0,82082.010320,611.610836,hintandextended,nbiot,60 +on6,0,0,26,1,0,299,1560.610320,162,3,21303.010320,699.514128,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,162,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,360,1442.010320,162,0,24710.010320,671.327544,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1512.051600,162,0,-1.000000,838.914552,hintandextended,nbiot,60 +on10,0,0,24,1,0,1260,1440.010320,162,0,77444.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,943,1463.010320,163,0,54980.010320,611.210836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,85,1447.000000,163,0,7258.010320,642.506916,hintandextended,nbiot,60 +on4,0,0,24,1,0,335,1455.989680,163,0,19109.010320,608.409288,hintandextended,nbiot,60 +on3,0,0,24,1,0,1020,1440.010320,163,0,63228.010320,602.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1453.010320,163,0,-1.000000,789.298040,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,169,1501.159680,163,1,14158.010320,627.341788,hintandextended,nbiot,60 +on9,0,0,24,1,0,1352,1452.010320,163,0,80546.010320,606.810836,hintandextended,nbiot,60 +on12,0,0,26,1,0,258,1561.300000,163,3,15476.010320,663.533208,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,366,1441.010320,163,0,23519.010320,604.360836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,163,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,99,1459.030960,164,0,4401.010320,609.625800,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1483.641280,164,0,-1.000000,853.583964,hintandextended,nbiot,60 +on11,0,0,25,1,0,356,1501.000000,164,1,19533.010320,638.366292,hintandextended,nbiot,60 +on9,0,0,24,1,0,120,1442.989680,164,0,8215.010320,648.312580,hintandextended,nbiot,60 +on2,0,0,25,1,0,180,1502.620640,164,1,11334.620640,672.113380,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1144,1440.989680,164,0,70547.010320,602.402580,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,164,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,405,1501.979360,164,1,24733.010320,639.804952,hintandextended,nbiot,60 +on5,0,0,24,1,0,420,1440.010320,164,0,26718.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,693,1453.010320,164,0,40015.010320,607.210836,hintandextended,nbiot,60 +on4,0,0,24,1,0,571,1451.010320,164,0,34626.010320,606.410836,hintandextended,nbiot,60 +on12,0,0,26,1,0,319,1582.161600,164,3,19574.630960,698.092556,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1491.630960,165,0,-1.000000,726.719464,hintandextended,nbiot,60 +on1,0,0,25,1,0,1314,1500.020320,165,1,76168.010320,626.021336,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,420,1440.010320,165,0,25617.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,780,1501.610320,165,1,48029.620640,626.859252,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,840,1442.000000,165,0,52865.010320,641.163416,hintandextended,nbiot,60 +on11,0,0,24,1,0,515,1457.010320,165,0,31257.010320,646.134252,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,165,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,840,1442.979680,166,0,53070.010320,612.311788,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1497.651280,166,0,-1.000000,807.194672,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,436,1501.389680,166,1,26927.630960,626.589204,hintandextended,nbiot,60 +on3,0,0,26,1,0,556,1561.490000,166,2,31688.010320,676.595792,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,960,1502.989680,166,1,60666.020320,678.552580,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,283,1464.010320,166,0,16322.010320,648.920836,hintandextended,nbiot,60 +on10,0,0,25,1,0,398,1502.989680,166,1,26886.010320,639.182288,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,166,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,312,1441.969360,166,0,21397.010320,641.150952,hintandextended,nbiot,60 +on5,0,0,26,1,0,378,1563.300000,166,3,21988.010320,707.753208,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,154,1456.000000,167,0,9899.010320,645.723416,hintandextended,nbiot,60 +on11,0,0,24,1,0,119,1480.010320,167,0,6721.010320,651.420836,hintandextended,nbiot,60 +on4,0,0,24,1,0,533,1473.010320,167,0,30204.010320,615.210836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,228,1500.020320,167,1,16430.010320,626.021336,hintandextended,nbiot,60 +on12,0,0,24,1,0,1273,1440.989680,167,0,78992.010320,602.402580,hintandextended,nbiot,60 +on7,0,0,25,1,0,1435,1500.000000,167,1,85849.010000,626.013000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1460.630960,167,0,-1.000000,766.325964,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,167,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,198,1582.840960,167,2,9939.630960,696.674716,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1520.651600,168,0,-1.000000,842.381384,hintandextended,nbiot,60 +on5,0,0,25,1,0,920,1502.300000,168,2,58087.010320,691.276708,hintandextended,nbiot,60 +on1,0,0,26,1,0,245,1563.820000,168,2,15056.010320,745.726000,hintandextended,nbiot,60 +on9,0,0,24,1,0,900,1440.969360,168,0,56419.010320,602.400952,hintandextended,nbiot,60 +on6,0,0,25,1,0,158,1501.000000,168,1,11651.010320,639.217792,hintandextended,nbiot,60 +on2,0,0,24,1,0,120,1441.800000,168,0,9107.010320,612.730000,hintandextended,nbiot,60 +on8,0,0,26,1,0,199,1582.651600,168,2,11692.630960,659.100472,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1260,1440.010320,168,0,78976.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,168,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,1140,1440.010320,168,0,69532.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,25,1,0,339,1501.989680,168,1,21530.010320,626.822496,hintandextended,nbiot,60 +on4,0,0,24,1,0,1252,1473.010320,169,0,74439.010320,653.560836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,516,1458.000000,169,0,31780.010320,626.113416,hintandextended,nbiot,60 +on5,0,0,24,1,0,205,1445.010320,169,0,14167.010320,604.010836,hintandextended,nbiot,60 +on6,0,0,24,1,0,180,1441.020640,169,0,14220.010320,622.181672,hintandextended,nbiot,60 +on11,0,0,24,1,0,259,1440.000000,169,0,17143.010320,602.013208,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1473.010320,169,0,-1.000000,797.304748,hintandextended,nbiot,60 +on12,0,0,24,1,0,0,1440.010320,169,0,2710.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,169,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,360,1502.600000,169,1,22129.620640,627.261832,hintandextended,nbiot,60 +on3,0,0,26,1,0,318,1561.510000,169,3,18509.010320,663.617208,hintandextended,nbiot,60 +on2,0,0,24,1,0,221,1461.030960,170,0,11057.010320,610.425800,hintandextended,nbiot,60 +on10,0,0,24,1,0,240,1440.020640,170,0,16161.010320,602.021672,hintandextended,nbiot,60 +on3,0,0,24,1,0,587,1468.020640,170,0,35471.010320,651.571672,hintandextended,nbiot,60 +on6,0,0,24,1,0,480,1441.000000,170,0,29223.010320,614.360000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,26,1,0,601,1581.630960,170,2,35511.630960,697.217300,hintandextended,nbiot,60 +on4,0,0,24,1,0,426,1441.979360,170,0,27630.010320,611.898452,hintandextended,nbiot,60 +on1,0,0,24,1,0,1104,1445.000000,170,0,68064.010320,604.013416,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,170,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,170,0,85861.010000,602.006500,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1532.681920,170,0,-1.000000,873.186388,hintandextended,nbiot,60 +on12,0,0,24,1,0,1395,1440.000000,170,0,85901.020000,602.006500,hintandextended,nbiot,60 +on8,0,0,24,1,0,600,1440.010320,170,0,39387.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,25,1,0,420,1501.379680,171,1,25357.620640,628.983496,hintandextended,nbiot,60 +on4,0,0,25,1,0,578,1501.000000,171,1,34471.010320,626.419916,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,221,1461.020640,171,0,13244.010320,610.421672,hintandextended,nbiot,60 +on2,0,0,23,0,0,1427,1427.000000,171,0,-1.000000,570.800000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,710,1470.010320,171,0,39988.010320,614.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,405,1465.010320,171,0,23391.010320,612.010836,hintandextended,nbiot,60 +on9,0,0,24,1,0,658,1478.030960,171,0,39364.010320,617.232508,hintandextended,nbiot,60 +on5,0,0,25,1,0,472,1501.300000,171,2,30782.010320,669.016584,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,171,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,1413,1453.010000,171,0,86264.010000,607.210500,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1440.000000,171,0,-1.000000,784.100412,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,532,1473.010320,172,0,29831.010320,652.520836,hintandextended,nbiot,60 +on9,0,0,24,1,0,265,1445.010320,172,0,17575.010320,604.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1481.261920,172,0,-1.000000,800.612096,hintandextended,nbiot,60 +on1,0,0,25,1,0,589,1501.020640,172,1,34777.010320,628.638172,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,120,1501.610320,172,1,8103.620640,626.859252,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,25,1,0,1260,1501.630640,172,2,76352.630640,656.773880,hintandextended,nbiot,60 +on7,0,0,24,1,0,1020,1440.010320,172,0,62099.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,25,1,0,258,1501.620640,172,1,17615.630960,626.863380,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,172,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,638,1501.220320,172,1,37386.010320,650.811336,hintandextended,nbiot,60 +on2,0,0,24,1,0,1166,1446.010320,173,0,70719.010320,604.410836,hintandextended,nbiot,60 +on7,0,0,24,1,0,480,1440.010320,173,0,29620.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,26,1,0,296,1560.310320,173,3,17873.010320,663.124128,hintandextended,nbiot,60 +on10,0,0,25,1,0,1320,1500.630640,173,2,82114.630640,626.467172,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1527.661280,173,0,-1.000000,871.158216,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,173,0,84563.010000,602.006500,hintandextended,nbiot,60 +on1,0,0,24,1,0,120,1441.010320,173,0,10347.010320,638.680836,hintandextended,nbiot,60 +on3,0,0,24,1,0,480,1440.010320,173,0,29566.010320,602.010836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,19,1441.989680,173,0,1960.010320,632.962580,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,173,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,766,1466.010320,173,0,44871.010320,612.410836,hintandextended,nbiot,60 +on12,0,0,25,1,0,197,1503.259040,173,1,14023.010320,664.763532,hintandextended,nbiot,60 +on11,0,0,24,1,0,900,1441.020640,174,0,56160.010320,640.771672,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1518.030640,174,0,-1.000000,789.272420,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,174,0,83066.010000,602.006500,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,60,1441.000000,174,0,5810.010320,602.413416,hintandextended,nbiot,60 +on4,0,0,24,1,0,1114,1454.010320,174,0,66913.010320,607.610836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1308,1468.010320,174,0,76615.010320,613.210836,hintandextended,nbiot,60 +on9,0,0,24,1,0,660,1440.010320,174,0,42617.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,174,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,421,1440.989680,174,0,27339.010320,602.402580,hintandextended,nbiot,60 +on10,0,0,24,1,0,540,1440.010320,175,0,35844.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,1,0,720,1440.010320,175,0,43358.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,20,1440.020640,175,0,2016.010320,602.021672,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1469.030960,175,0,-1.000000,769.672548,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,175,0,83802.010000,602.006500,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,962,1440.000000,175,0,60378.010320,602.006708,hintandextended,nbiot,60 +on6,0,0,24,1,0,1020,1440.010320,175,0,64375.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,175,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,120,1441.000000,175,0,7943.010320,602.413416,hintandextended,nbiot,60 +on3,0,0,24,1,0,1238,1458.010320,176,0,73264.010320,609.210836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1469.030640,176,0,-1.000000,795.665712,hintandextended,nbiot,60 +on11,0,0,24,1,0,1380,1440.000000,176,0,83231.010000,602.006500,hintandextended,nbiot,60 +on10,0,0,24,1,0,1140,1440.010320,176,0,70026.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,309,1441.010320,176,0,20620.010320,639.720836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,417,1500.010320,176,1,24194.010320,626.017336,hintandextended,nbiot,60 +on12,0,0,24,1,0,1368,1468.010320,176,0,81960.010320,613.210836,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,290,1470.010320,176,0,17814.010320,614.010836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,176,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,180,1440.010320,176,0,12012.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,1,0,1371,1471.010320,177,0,79673.010320,614.410836,hintandextended,nbiot,60 +on6,0,0,26,1,0,296,1562.289680,177,2,17508.010320,676.922372,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1484.641280,177,0,-1.000000,853.970340,hintandextended,nbiot,60 +on5,0,0,24,1,0,1380,1440.000000,177,0,83550.010000,602.006500,hintandextended,nbiot,60 +on9,0,0,24,1,0,480,1442.010320,177,0,30772.010320,629.720836,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,120,1442.030960,177,0,7993.010320,653.135800,hintandextended,nbiot,60 +on4,0,0,25,1,0,578,1501.210000,177,1,35412.010320,639.490500,hintandextended,nbiot,60 +on3,0,0,24,1,0,187,1441.979360,177,0,14426.010320,610.208244,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,177,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,26,1,0,259,1581.871600,177,2,14467.630960,659.626556,hintandextended,nbiot,60 +on8,0,0,24,1,0,110,1472.000000,177,0,6532.010320,653.163416,hintandextended,nbiot,60 +on2,0,0,24,1,0,432,1440.010320,177,0,25971.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,377,1500.969360,178,1,24019.010320,626.407452,hintandextended,nbiot,60 +on11,0,0,24,1,0,1246,1466.010320,178,0,72177.010320,612.410836,hintandextended,nbiot,60 +on5,0,0,24,1,0,1320,1440.010320,178,0,80450.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,1,0,878,1458.010320,178,0,52537.010320,609.210836,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1020,1440.010320,178,0,62205.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,25,1,0,412,1501.310320,178,2,28739.010320,693.734128,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1461.630960,178,0,-1.000000,818.739588,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,178,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,926,1447.000000,178,0,55644.010320,604.813416,hintandextended,nbiot,60 +on9,0,0,25,1,0,527,1500.010320,178,1,32418.010320,626.017336,hintandextended,nbiot,60 +on7,0,0,25,1,0,240,1502.610320,178,1,14877.620640,652.869252,hintandextended,nbiot,60 +on10,0,0,24,1,0,300,1440.010320,179,0,20298.010320,602.010836,hintandextended,nbiot,60 +on8,0,0,24,1,0,1200,1440.010320,179,0,75100.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,1,0,1368,1468.010320,179,0,82497.010320,613.210836,hintandextended,nbiot,60 +on4,0,0,24,1,0,926,1447.010320,179,0,55923.010320,642.120836,hintandextended,nbiot,60 +on3,0,0,25,1,0,1016,1501.010320,179,1,60688.010320,660.867336,hintandextended,nbiot,60 +on11,0,0,24,1,0,1149,1440.010320,179,0,71816.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,24,1,0,391,1451.010320,179,0,23933.010320,606.410836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,179,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,25,1,0,1362,1522.630960,179,1,82537.630960,635.260800,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1476.651600,179,0,-1.000000,824.727512,hintandextended,nbiot,60 +on9,0,0,24,1,0,1380,1440.000000,179,0,86132.010000,602.006500,hintandextended,nbiot,60 +on11,0,0,24,1,0,1433,1473.010000,180,0,82901.010000,615.210500,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1498.020640,180,0,-1.000000,729.261712,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,240,1441.000000,180,0,15242.010320,602.413416,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,320,1441.000000,180,0,18760.010320,602.413416,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,180,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,585,1465.010320,180,0,35228.010320,612.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,0,1440.989680,180,0,1863.010320,602.409288,hintandextended,nbiot,60 +on11,0,0,24,1,0,377,1441.030640,181,0,24501.010320,639.735464,hintandextended,nbiot,60 +on9,0,0,25,1,0,196,1501.000000,181,1,13244.010320,639.406500,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,62,1501.269360,181,2,7063.010320,649.914244,hintandextended,nbiot,60 +on3,0,0,26,1,0,474,1561.610320,181,4,31766.010320,679.250836,hintandextended,nbiot,60 +on8,0,0,25,1,0,459,1501.959040,181,1,28250.010320,626.810032,hintandextended,nbiot,60 +on6,0,0,24,1,0,14,1441.030640,181,0,1188.010320,639.735464,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,27,1,0,189,1642.141600,181,4,9555.630960,702.181556,hintandextended,nbiot,60 +on7,0,0,24,1,0,165,1465.010320,181,0,9515.010320,612.010836,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1464.640960,181,0,-1.000000,819.976920,hintandextended,nbiot,60 +on12,0,0,24,1,0,1380,1440.000000,181,0,85813.010000,602.006500,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,181,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,0,1441.020640,182,0,1464.010320,637.781672,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,304,1440.989680,182,0,21417.010320,602.402580,hintandextended,nbiot,60 +on6,0,0,24,1,0,476,1476.989680,182,0,28601.010320,616.809288,hintandextended,nbiot,60 +on7,0,0,24,1,0,750,1450.010320,182,0,45038.010320,606.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,1037,1441.000000,182,0,64411.010320,604.350000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1461.010320,182,0,-1.000000,818.477916,hintandextended,nbiot,60 +on8,0,0,24,1,0,180,1440.010320,182,0,11951.010320,602.010836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,182,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1366,1466.010320,182,0,79441.010320,612.410836,hintandextended,nbiot,60 +on5,0,0,25,1,0,98,1500.010320,182,1,6892.010320,626.017336,hintandextended,nbiot,60 +on10,0,0,24,1,0,626,1446.010320,182,0,39397.010320,604.410836,hintandextended,nbiot,60 +on10,0,0,24,1,0,179,1480.000000,183,0,9281.010320,618.013416,hintandextended,nbiot,60 +on1,0,0,24,1,0,510,1452.000000,183,0,32223.010320,627.620124,hintandextended,nbiot,60 +on12,0,0,25,1,0,882,1522.651600,183,1,50763.630960,635.275764,hintandextended,nbiot,60 +on8,0,0,24,1,0,860,1440.010320,183,0,50723.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,24,1,0,926,1446.010320,183,0,55053.010320,604.410836,hintandextended,nbiot,60 +on3,0,0,25,1,0,358,1501.459360,183,2,24341.010320,653.441744,hintandextended,nbiot,60 +on7,0,0,26,1,0,356,1561.459360,183,3,19841.010320,663.596744,hintandextended,nbiot,60 +on9,0,0,26,1,0,476,1560.310320,183,3,27654.010320,663.130628,hintandextended,nbiot,60 +on11,0,0,25,1,0,1140,1500.620640,183,1,69549.620640,626.456672,hintandextended,nbiot,60 +on6,0,0,25,1,0,176,1549.330640,183,2,14220.010320,658.745256,hintandextended,nbiot,60 +on0,1,12,24,0,0,0,1489.261920,183,0,-1.000000,907.885884,hintandextended,nbiot,60 +on5,0,0,25,1,0,218,1503.469040,183,2,16793.010320,678.309032,hintandextended,nbiot,60 +on2,0,0,24,1,0,60,1442.958720,183,0,5392.010320,613.206904,hintandextended,nbiot,60 +on12,0,0,25,1,0,1200,1501.610320,184,1,72820.620640,626.859252,hintandextended,nbiot,60 +on9,0,0,24,1,0,499,1441.000320,184,0,30813.010320,603.056836,hintandextended,nbiot,60 +on8,0,0,25,1,0,360,1500.630640,184,1,22084.620640,626.473880,hintandextended,nbiot,60 +on7,0,0,25,1,0,420,1501.051280,184,1,25317.020320,646.207136,hintandextended,nbiot,60 +on6,0,0,25,1,0,578,1502.179360,184,1,35986.010320,626.904868,hintandextended,nbiot,60 +on2,0,0,24,1,0,872,1452.010320,184,0,52858.010320,606.810836,hintandextended,nbiot,60 +on5,0,0,24,1,0,720,1440.010320,184,0,46368.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1501.651280,184,0,-1.000000,834.801380,hintandextended,nbiot,60 +on11,0,0,25,1,0,635,1500.610320,184,2,42923.010320,681.494128,hintandextended,nbiot,60 +on3,0,0,25,1,0,578,1501.300000,184,2,38009.010320,672.026500,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,184,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,1081,1440.989680,185,0,65980.010320,602.402580,hintandextended,nbiot,60 +on2,0,0,25,1,0,660,1500.310320,185,2,40957.010320,650.824128,hintandextended,nbiot,60 +on9,0,0,25,1,0,434,1501.269360,185,1,29379.010320,651.350952,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1473.020640,185,0,-1.000000,823.302168,hintandextended,nbiot,60 +on4,0,0,24,1,0,809,1449.010320,185,0,47462.010320,605.610836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,49,1501.000000,185,1,4954.010320,626.419916,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,180,1441.010320,185,0,13881.010320,620.617544,hintandextended,nbiot,60 +on3,0,0,24,1,0,0,1441.000000,185,0,1835.010320,614.360000,hintandextended,nbiot,60 +on11,0,0,27,1,0,651,1621.789360,185,5,38987.010320,701.567036,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,185,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,524,1501.179360,185,1,33265.010320,626.491452,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,26,1,0,925,1580.361600,186,3,56843.040960,692.614556,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1496.051280,186,0,-1.000000,728.487592,hintandextended,nbiot,60 +on4,0,0,24,1,0,660,1442.000000,186,0,39896.010320,640.123416,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,929,1449.010320,186,0,56803.010320,605.610836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,25,1,0,895,1503.149040,186,1,53991.010320,664.596032,hintandextended,nbiot,60 +on8,0,0,26,1,0,1002,1561.190000,186,2,58037.010320,663.489000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,186,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,25,1,0,1359,1501.000000,187,1,80982.010320,639.406500,hintandextended,nbiot,60 +on12,0,0,24,1,0,222,1462.010320,187,0,14080.010320,610.810836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1501.872240,187,0,-1.000000,808.849516,hintandextended,nbiot,60 +on10,0,0,25,1,0,1260,1501.641280,187,1,75818.620640,660.281636,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,1092,1440.010320,187,0,67231.010320,602.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,1140,1440.010320,187,0,69682.010320,602.010836,hintandextended,nbiot,60 +on2,0,0,25,1,0,900,1501.610320,187,1,56110.620640,626.859252,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,187,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,25,1,0,217,1518.620640,187,1,14120.630960,633.663380,hintandextended,nbiot,60 +on8,0,0,24,1,0,54,1475.000000,187,0,2493.010320,616.013416,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,540,1441.000000,188,0,32620.010320,614.360000,hintandextended,nbiot,60 +on0,1,10,24,0,0,0,1460.020320,188,0,-1.000000,844.108540,hintandextended,nbiot,60 +on2,0,0,24,1,0,1380,1440.000000,188,0,83295.010000,602.006500,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,188,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,1,0,350,1470.010320,188,0,18600.010320,614.010836,hintandextended,nbiot,60 +on3,0,0,25,1,0,360,1500.379680,188,1,22648.620640,626.373496,hintandextended,nbiot,60 +on8,0,0,25,1,0,712,1501.020640,188,1,41525.010320,664.778172,hintandextended,nbiot,60 +on11,0,0,25,1,0,437,1501.300000,188,2,27998.010320,652.766584,hintandextended,nbiot,60 +on12,0,0,24,1,0,988,1448.010320,188,0,59486.010320,605.210836,hintandextended,nbiot,60 +on5,0,0,24,1,0,539,1480.000000,188,0,28907.010320,618.013416,hintandextended,nbiot,60 +on1,0,0,24,1,0,1140,1440.010320,188,0,70888.010320,602.010836,hintandextended,nbiot,60 +on4,0,0,25,1,0,582,1501.010320,188,1,38008.010320,663.727336,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,780,1440.010320,189,0,49055.010320,602.010836,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,1172,1500.030640,189,1,70329.010320,626.032172,hintandextended,nbiot,60 +on5,0,0,25,1,0,1020,1502.610320,189,1,62192.620640,664.569252,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1448.010320,189,0,-1.000000,709.257792,hintandextended,nbiot,60 +on10,0,0,24,1,0,720,1440.010320,189,0,46061.010320,602.010836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,189,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1313,1473.010320,189,0,76876.010320,615.210836,hintandextended,nbiot,60 +on5,0,0,24,1,0,363,1442.000000,190,0,23380.010320,631.393292,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1486.082240,190,0,-1.000000,802.540224,hintandextended,nbiot,60 +on9,0,0,24,1,0,60,1441.030960,190,0,4018.010320,614.379092,hintandextended,nbiot,60 +on11,0,0,25,1,0,239,1504.010320,190,1,12233.010320,691.844044,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,462,1500.010320,190,1,28386.010320,626.017336,hintandextended,nbiot,60 +on7,0,0,24,1,0,155,1456.620320,190,0,8251.010320,611.904836,hintandextended,nbiot,60 +on12,0,0,26,1,0,208,1567.480000,190,3,15627.010320,718.226624,hintandextended,nbiot,60 +on2,0,0,26,1,0,141,1584.030640,190,2,8291.040960,711.710172,hintandextended,nbiot,60 +on3,0,0,25,1,0,233,1520.330960,190,1,12273.030960,660.399092,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,190,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,60,1440.010320,191,0,4432.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,244,1440.989680,191,0,18031.010320,602.402580,hintandextended,nbiot,60 +on3,0,0,26,1,0,1301,1582.620640,191,2,73826.630960,659.074672,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,191,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,1080,1440.969360,191,0,64906.010320,602.400952,hintandextended,nbiot,60 +on9,0,0,25,1,0,1139,1500.300000,191,2,71809.010320,651.476500,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1497.651280,191,0,-1.000000,781.127592,hintandextended,nbiot,60 +on4,0,0,25,1,0,1140,1502.020320,191,1,71865.020320,677.124628,hintandextended,nbiot,60 +on8,0,0,24,1,0,1215,1441.000000,191,0,73785.010320,604.609792,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,1041,1441.010320,192,0,62483.010320,602.410836,hintandextended,nbiot,60 +on6,0,0,25,1,0,106,1501.190000,192,1,8598.010320,657.949208,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,25,1,0,158,1501.000000,192,1,11351.010320,639.406500,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1504.020640,192,0,-1.000000,783.661920,hintandextended,nbiot,60 +on10,0,0,24,1,0,1246,1466.010320,192,0,73312.010320,612.410836,hintandextended,nbiot,60 +on1,0,0,24,1,0,60,1441.979360,192,0,6379.010320,614.758452,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,1,0,949,1469.010320,192,0,56764.010320,613.610836,hintandextended,nbiot,60 +on9,0,0,24,1,0,1020,1440.010320,192,0,62536.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,192,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,399,1459.000000,193,1,27519.010320,609.613208,hintandextended,nbiot,60 +on9,0,0,25,1,0,720,1501.610320,193,1,46238.620640,626.859252,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1034,1441.000000,193,0,63342.010320,640.756708,hintandextended,nbiot,60 +on7,0,0,24,1,0,859,1441.979360,193,0,50510.010320,602.805160,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1531.261920,193,0,-1.000000,794.598680,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,25,1,0,300,1502.620640,193,1,21261.620640,648.980088,hintandextended,nbiot,60 +on2,0,0,24,1,0,120,1442.000000,193,0,9252.010320,635.313416,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,193,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,1,0,1020,1441.000000,193,0,63394.010320,615.400000,hintandextended,nbiot,60 +on7,0,0,25,1,0,1276,1501.310320,194,2,79370.010320,661.234128,hintandextended,nbiot,60 +on10,0,0,24,1,0,770,1470.010320,194,0,46023.010320,614.010836,hintandextended,nbiot,60 +on1,0,0,24,1,0,1408,1448.010000,194,0,84246.010000,605.210500,hintandextended,nbiot,60 +on9,0,0,25,1,0,1437,1520.020000,194,1,84286.020000,634.021000,hintandextended,nbiot,60 +on0,1,9,24,0,0,0,1480.650960,194,0,-1.000000,826.340464,hintandextended,nbiot,60 +on6,0,0,24,1,0,699,1459.010320,194,0,41608.010320,609.610836,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,1,0,116,1476.010320,194,0,7158.010320,616.410836,hintandextended,nbiot,60 +on5,0,0,24,1,0,1219,1441.989680,194,0,74181.010320,638.162580,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,25,1,0,747,1509.620640,194,1,46063.630960,635.263380,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,194,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,1,0,1297,1498.969360,194,1,77276.010320,625.607452,hintandextended,nbiot,60 +on6,0,0,24,1,0,764,1464.010320,195,0,43626.010320,611.610836,hintandextended,nbiot,60 +on8,0,0,25,1,0,840,1501.641280,195,1,53553.620640,665.221636,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,9,1440.020640,195,0,1466.010320,602.021672,hintandextended,nbiot,60 +on10,0,0,23,0,0,1403,1403.000000,195,0,-1.000000,561.200000,hintandextended,nbiot,60 +on1,0,0,26,1,0,279,1582.620640,195,2,12979.630960,662.519880,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,195,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,25,1,0,60,1502.610320,195,1,7202.620640,664.569252,hintandextended,nbiot,60 +on4,0,0,24,1,0,929,1449.010320,195,0,54646.010320,605.610836,hintandextended,nbiot,60 +on12,0,0,24,1,0,220,1460.010320,195,0,12939.010320,610.010836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1514.261600,195,0,-1.000000,813.805052,hintandextended,nbiot,60 +on7,0,0,24,1,0,1380,1440.000000,195,0,85969.010000,602.006500,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,25,1,0,600,1501.610320,196,1,37560.620640,626.859252,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,720,1440.010320,196,0,43288.010320,602.010836,hintandextended,nbiot,60 +on5,0,0,25,1,0,480,1501.999680,196,1,30288.020320,626.826496,hintandextended,nbiot,60 +on9,0,0,24,1,0,1020,1440.010320,196,0,61290.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on0,1,5,24,0,0,0,1512.671920,196,0,-1.000000,735.149264,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,196,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,1,0,180,1441.020320,196,0,11127.010320,602.441460,hintandextended,nbiot,60 +on3,0,0,24,1,0,716,1476.010320,197,0,40168.010320,616.410836,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1479.010320,197,0,-1.000000,799.684624,hintandextended,nbiot,60 +on5,0,0,24,1,0,180,1440.010320,197,0,11260.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,25,1,0,447,1500.200320,197,1,25641.010320,626.093336,hintandextended,nbiot,60 +on2,0,0,25,1,0,282,1501.010000,197,1,16163.010320,626.423916,hintandextended,nbiot,60 +on10,0,0,24,1,0,770,1470.010320,197,0,43560.010320,614.010836,hintandextended,nbiot,60 +on11,0,0,24,1,0,234,1480.000000,197,1,11201.010320,655.329916,hintandextended,nbiot,60 +on6,0,0,24,1,0,173,1474.010320,197,0,8590.010320,652.920836,hintandextended,nbiot,60 +on1,0,0,23,0,0,1390,1390.000000,197,0,-1.000000,556.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,197,0,-1.000000,576.000000,hintandextended,nbiot,60 +on9,0,0,24,1,0,320,1442.020640,197,0,21270.010320,640.138380,hintandextended,nbiot,60 +on0,1,4,24,0,0,0,1448.630960,198,0,-1.000000,683.492632,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on11,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on7,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on3,0,0,24,1,0,1020,1440.010320,198,0,62193.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,198,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,976,1440.989680,198,0,59984.010320,602.402580,hintandextended,nbiot,60 +on6,0,0,25,1,0,1260,1501.610320,198,1,76819.620640,626.859252,hintandextended,nbiot,60 +on9,0,0,24,1,0,172,1472.010320,198,0,9544.010320,614.810836,hintandextended,nbiot,60 +on11,0,0,26,1,0,1219,1560.820320,199,3,74724.010320,701.684628,hintandextended,nbiot,60 +on3,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on5,0,0,24,1,0,820,1460.010320,199,0,49625.010320,610.010836,hintandextended,nbiot,60 +on9,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on8,0,0,24,1,0,1092,1440.969360,199,0,66023.010320,602.400952,hintandextended,nbiot,60 +on0,1,7,24,0,0,0,1463.010320,199,0,-1.000000,767.264500,hintandextended,nbiot,60 +on4,0,0,24,1,0,480,1440.010320,199,0,29626.010320,602.010836,hintandextended,nbiot,60 +on10,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,199,0,-1.000000,576.000000,hintandextended,nbiot,60 +on1,0,0,24,1,0,1310,1470.010320,199,0,78523.010320,614.010836,hintandextended,nbiot,60 +on2,0,0,24,1,0,1320,1440.010320,199,0,79914.010320,602.010836,hintandextended,nbiot,60 +on7,0,0,25,1,0,1118,1501.479360,199,2,69929.010320,666.449744,hintandextended,nbiot,60 +on3,0,0,24,1,0,905,1441.000000,200,0,55760.010320,640.756708,hintandextended,nbiot,60 +on10,0,0,25,1,0,0,1502.620640,200,1,2638.620640,677.559964,hintandextended,nbiot,60 +on11,0,0,24,1,0,480,1440.010320,200,0,30091.010320,602.010836,hintandextended,nbiot,60 +on1,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on12,0,0,24,1,0,679,1441.979680,200,0,42143.010320,618.391872,hintandextended,nbiot,60 +on0,1,8,24,0,0,0,1496.641280,200,0,-1.000000,806.743716,hintandextended,nbiot,60 +on5,0,0,25,1,0,234,1500.989680,200,1,12961.010320,626.415788,hintandextended,nbiot,60 +on8,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on2,0,0,26,1,0,140,1583.630640,200,2,6790.630960,696.788672,hintandextended,nbiot,60 +on7,0,0,24,1,0,68,1441.010320,200,0,6749.010320,609.170628,hintandextended,nbiot,60 +on9,0,0,24,1,0,369,1440.010320,200,0,23145.010320,602.010836,hintandextended,nbiot,60 +on6,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on4,0,0,24,0,0,1440,1440.000000,200,0,-1.000000,576.000000,hintandextended,nbiot,60 +on6,0,0,24,0,0,4188,4320.000000,1,0,-1.000000,1749.280000,baseline,lora,180 +on9,0,0,24,0,0,4269,4320.000000,1,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4125,4320.000000,1,0,-1.000000,1759.520000,baseline,lora,180 +on8,0,0,24,1,0,1279,4320.000000,1,0,27313.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,1443,4320.000000,1,0,29156.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4140,4320.000000,1,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,0,0,4191,4320.000000,1,0,-1.000000,1748.800000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4230,4320.000000,1,0,-1.000000,1762.400000,baseline,lora,180 +on1,0,0,24,0,0,4138,4320.000000,1,0,-1.000000,1757.440000,baseline,lora,180 +on7,0,0,24,0,0,3944,4320.000000,1,0,-1.000000,1817.440000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,1,0,-1.000000,1995.200000,baseline,lora,180 +on10,0,0,24,0,0,4097,4320.000000,2,0,-1.000000,1780.800000,baseline,lora,180 +on3,0,0,24,0,0,4287,4320.000000,2,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,3963,4320.000000,2,0,-1.000000,1806.240000,baseline,lora,180 +on7,0,0,24,0,0,4174,4320.000000,2,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4165,4320.000000,2,0,-1.000000,1773.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4098,4320.000000,2,0,-1.000000,1781.280000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,2,0,-1.000000,2036.160000,baseline,lora,180 +on6,0,0,24,0,0,4001,4320.000000,2,0,-1.000000,1779.520000,baseline,lora,180 +on2,0,0,23,0,0,4218,4250.000000,2,0,-1.000000,1718.080000,baseline,lora,180 +on9,0,0,24,1,0,3753,4320.000000,2,0,77520.000000,1758.080000,baseline,lora,180 +on5,0,0,24,1,0,1558,4320.000000,2,0,35550.000000,1778.720000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4292,4320.000000,3,0,-1.000000,1732.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,3,0,-1.000000,2059.840000,baseline,lora,180 +on4,0,0,24,0,0,4040,4320.000000,3,0,-1.000000,1811.200000,baseline,lora,180 +on9,0,0,24,0,0,4209,4320.000000,3,0,-1.000000,1759.040000,baseline,lora,180 +on6,0,0,24,1,0,2813,4320.000000,3,0,60478.000000,1773.280000,baseline,lora,180 +on10,0,0,24,0,0,4141,4320.000000,3,0,-1.000000,1778.080000,baseline,lora,180 +on1,0,0,24,1,0,1440,4320.000000,3,0,31383.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,3827,4320.000000,3,0,-1.000000,1807.520000,baseline,lora,180 +on11,0,0,24,0,0,4221,4320.000000,3,0,-1.000000,1784.160000,baseline,lora,180 +on7,0,0,24,1,0,3048,4320.000000,3,0,67058.000000,1800.160000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4296,4320.000000,3,0,-1.000000,1760.160000,baseline,lora,180 +on12,0,0,24,0,0,4238,4320.000000,3,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4066,4320.000000,4,0,-1.000000,1814.400000,baseline,lora,180 +on7,0,0,24,0,0,4116,4320.000000,4,0,-1.000000,1782.240000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,4,0,-1.000000,1957.920000,baseline,lora,180 +on2,0,0,24,0,0,4227,4320.000000,4,0,-1.000000,1761.920000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4122,4320.000000,4,0,-1.000000,1779.840000,baseline,lora,180 +on12,0,0,24,0,0,4262,4320.000000,4,0,-1.000000,1751.200000,baseline,lora,180 +on3,0,0,24,1,0,17,4320.000000,4,0,2325.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4118,4320.000000,4,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4132,4320.000000,4,0,-1.000000,1787.840000,baseline,lora,180 +on6,0,0,24,0,0,4257,4320.000000,4,0,-1.000000,1738.240000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4193,4320.000000,5,0,-1.000000,1748.480000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,5,0,-1.000000,1986.240000,baseline,lora,180 +on5,0,0,24,0,0,4135,4320.000000,5,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4191,4320.000000,5,0,-1.000000,1771.680000,baseline,lora,180 +on7,0,0,24,0,0,4164,4320.000000,5,0,-1.000000,1753.120000,baseline,lora,180 +on6,0,0,24,0,0,4251,4320.000000,5,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4215,4320.000000,5,0,-1.000000,1777.760000,baseline,lora,180 +on2,0,0,24,0,0,4221,4320.000000,5,0,-1.000000,1744.160000,baseline,lora,180 +on8,0,0,23,0,0,4137,4235.000000,5,0,-1.000000,1709.840000,baseline,lora,180 +on11,0,0,24,0,0,4141,4320.000000,5,0,-1.000000,1756.960000,baseline,lora,180 +on1,0,0,24,0,0,4202,4320.000000,5,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,0,0,4311,4320.000000,5,0,-1.000000,1729.600000,baseline,lora,180 +on3,0,0,24,0,0,4000,4320.000000,5,0,-1.000000,1783.520000,baseline,lora,180 +on11,0,0,24,0,0,4195,4320.000000,6,0,-1.000000,1763.840000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,3924,4320.000000,6,0,-1.000000,1804.000000,baseline,lora,180 +on7,0,0,24,0,0,4137,4320.000000,6,0,-1.000000,1774.240000,baseline,lora,180 +on9,0,0,24,0,0,4189,4320.000000,6,0,-1.000000,1764.320000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,6,0,-1.000000,1945.280000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4026,4320.000000,6,0,-1.000000,1800.960000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4226,4320.000000,6,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4223,4320.000000,6,0,-1.000000,1745.760000,baseline,lora,180 +on12,0,0,24,0,0,4300,4320.000000,6,0,-1.000000,1743.680000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,7,0,-1.000000,1942.080000,baseline,lora,180 +on6,0,0,24,0,0,4202,4320.000000,7,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4298,4320.000000,7,0,-1.000000,1753.760000,baseline,lora,180 +on12,0,0,24,0,0,3965,4320.000000,7,0,-1.000000,1814.400000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,3939,4320.000000,7,0,-1.000000,1798.880000,baseline,lora,180 +on8,0,0,24,0,0,4102,4320.000000,7,0,-1.000000,1785.600000,baseline,lora,180 +on2,0,0,24,0,0,4220,4320.000000,7,0,-1.000000,1744.160000,baseline,lora,180 +on1,0,0,24,0,0,4250,4320.000000,7,0,-1.000000,1739.360000,baseline,lora,180 +on9,0,0,24,0,0,4260,4320.000000,7,0,-1.000000,1737.760000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,23,0,0,0,4313.000000,8,0,-1.000000,1995.600000,baseline,lora,180 +on3,0,0,23,0,0,4239,4239.000000,8,0,-1.000000,1695.600000,baseline,lora,180 +on5,0,0,24,0,0,4032,4320.000000,8,0,-1.000000,1814.240000,baseline,lora,180 +on7,0,0,24,0,0,4275,4320.000000,8,0,-1.000000,1735.520000,baseline,lora,180 +on11,0,0,24,1,0,540,4320.000000,8,0,13146.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,8,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4230,4320.000000,8,0,-1.000000,1742.560000,baseline,lora,180 +on1,0,0,24,0,0,4053,4320.000000,8,0,-1.000000,1781.120000,baseline,lora,180 +on12,0,0,24,0,0,4159,4320.000000,8,0,-1.000000,1754.080000,baseline,lora,180 +on4,0,0,24,0,0,4162,4320.000000,8,0,-1.000000,1771.360000,baseline,lora,180 +on2,0,0,24,0,0,4194,4320.000000,8,0,-1.000000,1768.000000,baseline,lora,180 +on9,0,0,23,0,0,3971,4293.000000,8,0,-1.000000,1778.960000,baseline,lora,180 +on8,0,0,24,0,0,4269,4320.000000,8,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,3885,4320.000000,9,0,-1.000000,1798.080000,baseline,lora,180 +on6,0,0,24,0,0,4282,4320.000000,9,0,-1.000000,1734.400000,baseline,lora,180 +on2,0,0,24,0,0,4225,4320.000000,9,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4196,4320.000000,9,0,-1.000000,1777.920000,baseline,lora,180 +on9,0,0,24,0,0,3994,4320.000000,9,0,-1.000000,1810.400000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,9,0,-1.000000,2130.560000,baseline,lora,180 +on12,0,0,24,0,0,4227,4320.000000,9,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4188,4320.000000,9,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,3990,4320.000000,9,0,-1.000000,1795.680000,baseline,lora,180 +on4,0,0,24,0,0,4294,4320.000000,9,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4037,4320.000000,9,0,-1.000000,1808.640000,baseline,lora,180 +on3,0,0,24,0,0,4070,4320.000000,9,0,-1.000000,1776.480000,baseline,lora,180 +on8,0,0,24,0,0,3967,4320.000000,9,0,-1.000000,1792.160000,baseline,lora,180 +on2,0,0,24,0,0,4274,4320.000000,10,0,-1.000000,1735.520000,baseline,lora,180 +on10,0,0,24,0,0,4174,4320.000000,10,0,-1.000000,1751.520000,baseline,lora,180 +on7,0,0,24,0,0,4251,4320.000000,10,0,-1.000000,1739.200000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,10,0,-1.000000,2044.960000,baseline,lora,180 +on4,0,0,24,0,0,4122,4320.000000,10,0,-1.000000,1788.480000,baseline,lora,180 +on6,0,0,24,0,0,4178,4320.000000,10,0,-1.000000,1750.880000,baseline,lora,180 +on9,0,0,24,0,0,4090,4320.000000,10,0,-1.000000,1775.840000,baseline,lora,180 +on8,0,0,24,0,0,4009,4320.000000,10,0,-1.000000,1781.280000,baseline,lora,180 +on3,0,0,24,0,0,4199,4320.000000,10,0,-1.000000,1766.720000,baseline,lora,180 +on1,0,0,24,0,0,4228,4320.000000,10,0,-1.000000,1743.040000,baseline,lora,180 +on12,0,0,24,0,0,4096,4320.000000,10,0,-1.000000,1774.080000,baseline,lora,180 +on5,0,0,24,0,0,4018,4320.000000,10,0,-1.000000,1776.640000,baseline,lora,180 +on11,0,0,24,0,0,4241,4320.000000,10,0,-1.000000,1782.080000,baseline,lora,180 +on12,0,0,24,0,0,4137,4320.000000,11,0,-1.000000,1757.600000,baseline,lora,180 +on3,0,0,24,0,0,4181,4320.000000,11,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,3993,4320.000000,11,0,-1.000000,1833.920000,baseline,lora,180 +on6,0,0,24,0,0,4233,4320.000000,11,0,-1.000000,1742.080000,baseline,lora,180 +on8,0,0,24,0,0,4102,4320.000000,11,0,-1.000000,1835.840000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,11,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4287,4320.000000,11,0,-1.000000,1761.760000,baseline,lora,180 +on1,0,0,24,0,0,4081,4320.000000,11,0,-1.000000,1766.560000,baseline,lora,180 +on5,0,0,24,0,0,4247,4320.000000,11,0,-1.000000,1740.000000,baseline,lora,180 +on10,0,0,24,0,0,3930,4320.000000,11,0,-1.000000,1824.320000,baseline,lora,180 +on7,0,0,24,1,0,2810,4320.000000,11,0,60479.000000,1764.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,11,0,-1.000000,2068.800000,baseline,lora,180 +on4,0,0,24,1,0,2146,4320.000000,11,0,45443.000000,1776.480000,baseline,lora,180 +on3,0,0,24,0,0,4010,4320.000000,12,0,-1.000000,1826.720000,baseline,lora,180 +on10,0,0,24,1,0,366,4320.000000,12,0,10903.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4297,4320.000000,12,0,-1.000000,1750.400000,baseline,lora,180 +on7,0,0,24,0,0,4068,4320.000000,12,0,-1.000000,1807.840000,baseline,lora,180 +on9,0,0,24,0,0,4190,4320.000000,12,0,-1.000000,1758.240000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,12,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,12,0,-1.000000,1728.160000,baseline,lora,180 +on4,0,0,24,1,0,1800,4320.000000,12,0,37669.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4245,4320.000000,12,0,-1.000000,1767.040000,baseline,lora,180 +on1,0,0,24,0,0,4165,4320.000000,12,0,-1.000000,1752.960000,baseline,lora,180 +on8,0,0,24,0,0,4132,4320.000000,12,0,-1.000000,1760.000000,baseline,lora,180 +on12,0,0,24,0,0,4296,4320.000000,12,0,-1.000000,1732.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,12,0,-1.000000,1967.040000,baseline,lora,180 +on7,0,0,24,0,0,4091,4320.000000,13,0,-1.000000,1770.080000,baseline,lora,180 +on12,0,0,24,0,0,4173,4320.000000,13,0,-1.000000,1768.960000,baseline,lora,180 +on3,0,0,24,0,0,4015,4320.000000,13,0,-1.000000,1809.120000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4115,4320.000000,13,0,-1.000000,1824.000000,baseline,lora,180 +on2,0,0,23,0,0,4310,4310.000000,13,0,-1.000000,1724.000000,baseline,lora,180 +on10,0,0,24,0,0,4313,4320.000000,13,0,-1.000000,1729.280000,baseline,lora,180 +on9,0,0,24,0,0,4168,4320.000000,13,0,-1.000000,1773.120000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,3,4320.000000,13,0,2169.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,13,0,-1.000000,1956.800000,baseline,lora,180 +on1,0,0,24,1,0,1764,4320.000000,13,0,38217.000000,1761.600000,baseline,lora,180 +on8,0,0,24,0,0,4212,4320.000000,14,0,-1.000000,1779.040000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,3981,4320.000000,14,0,-1.000000,1851.680000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,14,0,-1.000000,2007.360000,baseline,lora,180 +on3,0,0,24,0,0,4014,4320.000000,14,0,-1.000000,1821.600000,baseline,lora,180 +on1,0,0,24,0,0,3952,4320.000000,14,0,-1.000000,1795.040000,baseline,lora,180 +on4,0,0,24,0,0,4200,4320.000000,14,0,-1.000000,1747.360000,baseline,lora,180 +on11,0,0,24,0,0,4289,4320.000000,14,0,-1.000000,1733.120000,baseline,lora,180 +on2,0,0,24,1,0,1094,4320.000000,14,0,22972.000000,1753.600000,baseline,lora,180 +on10,0,0,24,1,0,720,4320.000000,14,0,16064.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4184,4320.000000,14,0,-1.000000,1749.920000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,1,0,1263,4320.000000,15,0,28841.000000,1753.600000,baseline,lora,180 +on5,0,0,24,1,0,3036,4320.000000,15,0,63747.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,4204,4320.000000,15,0,-1.000000,1757.600000,baseline,lora,180 +on6,0,0,24,0,0,4270,4320.000000,15,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4268,4320.000000,15,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4184,4320.000000,15,0,-1.000000,1801.280000,baseline,lora,180 +on4,0,0,24,0,0,4132,4320.000000,15,0,-1.000000,1758.400000,baseline,lora,180 +on11,0,0,24,1,0,957,4320.000000,15,0,22379.000000,1782.400000,baseline,lora,180 +on9,0,0,24,0,0,4295,4320.000000,15,0,-1.000000,1760.000000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,15,0,-1.000000,2068.640000,baseline,lora,180 +on8,0,0,24,0,0,3935,4320.000000,15,0,-1.000000,1803.520000,baseline,lora,180 +on2,0,0,24,1,0,1983,4320.000000,15,0,39970.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,3952,4320.000000,15,0,-1.000000,1830.720000,baseline,lora,180 +on7,0,0,23,0,0,3769,4249.000000,16,0,-1.000000,1816.400000,baseline,lora,180 +on12,0,0,24,0,0,4210,4320.000000,16,0,-1.000000,1746.720000,baseline,lora,180 +on3,0,0,24,0,0,4048,4320.000000,16,0,-1.000000,1779.040000,baseline,lora,180 +on8,0,0,24,0,0,4293,4320.000000,16,0,-1.000000,1739.200000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4182,4320.000000,16,0,-1.000000,1750.400000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4202,4320.000000,16,0,-1.000000,1747.200000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,16,0,-1.000000,2001.760000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4066,4320.000000,16,0,-1.000000,1796.960000,baseline,lora,180 +on4,0,0,24,0,0,4187,4320.000000,16,0,-1.000000,1760.480000,baseline,lora,180 +on6,0,0,24,1,0,3783,4320.000000,16,0,79269.000000,1753.600000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,17,0,-1.000000,2042.400000,baseline,lora,180 +on6,0,0,24,0,0,4197,4320.000000,17,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4289,4320.000000,17,0,-1.000000,1733.120000,baseline,lora,180 +on11,0,0,24,0,0,4162,4320.000000,17,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,23,0,0,4143,4190.000000,17,0,-1.000000,1683.680000,baseline,lora,180 +on12,0,0,24,0,0,3901,4320.000000,17,0,-1.000000,1825.920000,baseline,lora,180 +on10,0,0,24,0,0,4150,4320.000000,17,0,-1.000000,1755.520000,baseline,lora,180 +on3,0,0,24,0,0,3655,4320.000000,17,0,-1.000000,1868.320000,baseline,lora,180 +on7,0,0,24,0,0,4166,4320.000000,17,0,-1.000000,1779.040000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,23,0,0,4234,4306.000000,17,0,-1.000000,1734.240000,baseline,lora,180 +on9,0,0,24,0,0,4216,4320.000000,17,0,-1.000000,1757.760000,baseline,lora,180 +on3,0,0,24,0,0,4180,4320.000000,18,0,-1.000000,1750.560000,baseline,lora,180 +on5,0,0,24,1,0,1419,4320.000000,18,0,29900.000000,1764.480000,baseline,lora,180 +on8,0,0,24,1,0,1675,4320.000000,18,0,36268.000000,1811.200000,baseline,lora,180 +on1,0,0,24,0,0,4279,4320.000000,18,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4260,4320.000000,18,0,-1.000000,1756.480000,baseline,lora,180 +on4,0,0,24,1,0,1098,4320.000000,18,0,23318.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4213,4320.000000,18,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,1,0,3420,4320.000000,18,0,69242.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4196,4320.000000,18,0,-1.000000,1773.280000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,18,0,-1.000000,1989.760000,baseline,lora,180 +on6,0,0,24,1,0,3027,4320.000000,18,0,62983.000000,1760.800000,baseline,lora,180 +on11,0,0,24,0,0,4313,4320.000000,18,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4185,4320.000000,18,0,-1.000000,1749.920000,baseline,lora,180 +on7,0,0,24,0,0,4094,4320.000000,19,0,-1.000000,1777.120000,baseline,lora,180 +on12,0,0,24,0,0,4122,4320.000000,19,0,-1.000000,1760.000000,baseline,lora,180 +on3,0,0,24,0,0,4120,4320.000000,19,0,-1.000000,1760.320000,baseline,lora,180 +on10,0,0,24,0,0,4290,4320.000000,19,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4231,4320.000000,19,0,-1.000000,1759.360000,baseline,lora,180 +on6,0,0,24,0,0,4065,4320.000000,19,0,-1.000000,1776.480000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,19,0,-1.000000,2056.000000,baseline,lora,180 +on1,0,0,24,0,0,3973,4320.000000,19,0,-1.000000,1870.080000,baseline,lora,180 +on8,0,0,24,0,0,4233,4320.000000,19,0,-1.000000,1742.240000,baseline,lora,180 +on9,0,0,24,0,0,4152,4320.000000,19,0,-1.000000,1782.560000,baseline,lora,180 +on5,0,0,24,1,0,195,4320.000000,19,0,4658.000000,1753.600000,baseline,lora,180 +on2,0,0,22,0,0,3925,4136.000000,19,0,-1.000000,1690.400000,baseline,lora,180 +on4,0,0,24,0,0,4268,4320.000000,19,0,-1.000000,1752.640000,baseline,lora,180 +on8,0,0,24,0,0,4269,4320.000000,20,0,-1.000000,1761.280000,baseline,lora,180 +on6,0,0,24,0,0,4281,4320.000000,20,0,-1.000000,1734.560000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,20,0,-1.000000,2037.600000,baseline,lora,180 +on2,0,0,24,0,0,4049,4320.000000,20,0,-1.000000,1796.000000,baseline,lora,180 +on10,0,0,24,0,0,4289,4320.000000,20,0,-1.000000,1754.080000,baseline,lora,180 +on5,0,0,24,0,0,4186,4320.000000,20,0,-1.000000,1749.760000,baseline,lora,180 +on11,0,0,24,0,0,4015,4320.000000,20,0,-1.000000,1779.680000,baseline,lora,180 +on1,0,0,24,0,0,3909,4320.000000,20,0,-1.000000,1817.760000,baseline,lora,180 +on4,0,0,24,0,0,4176,4320.000000,20,0,-1.000000,1751.200000,baseline,lora,180 +on3,0,0,24,0,0,4287,4320.000000,20,0,-1.000000,1733.440000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4225,4320.000000,20,0,-1.000000,1756.640000,baseline,lora,180 +on7,0,0,24,0,0,3924,4320.000000,20,0,-1.000000,1792.160000,baseline,lora,180 +on3,0,0,24,0,0,4054,4320.000000,21,0,-1.000000,1814.400000,baseline,lora,180 +on4,0,0,24,0,0,4206,4320.000000,21,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4187,4320.000000,21,0,-1.000000,1767.360000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,21,0,-1.000000,1982.400000,baseline,lora,180 +on7,0,0,24,0,0,4079,4320.000000,21,0,-1.000000,1782.400000,baseline,lora,180 +on8,0,0,24,0,0,4312,4320.000000,21,0,-1.000000,1729.440000,baseline,lora,180 +on12,0,0,24,0,0,4308,4320.000000,21,0,-1.000000,1730.080000,baseline,lora,180 +on6,0,0,24,0,0,4299,4320.000000,21,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4202,4320.000000,21,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4175,4320.000000,21,0,-1.000000,1779.840000,baseline,lora,180 +on2,0,0,24,0,0,4163,4320.000000,21,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4275,4320.000000,21,0,-1.000000,1755.840000,baseline,lora,180 +on11,0,0,24,0,0,4011,4320.000000,21,0,-1.000000,1778.080000,baseline,lora,180 +on7,0,0,24,0,0,4248,4320.000000,22,0,-1.000000,1739.680000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4094,4320.000000,22,0,-1.000000,1806.720000,baseline,lora,180 +on4,0,0,24,1,0,180,4320.000000,22,0,4972.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4203,4320.000000,22,0,-1.000000,1746.880000,baseline,lora,180 +on1,0,0,24,0,0,4071,4320.000000,22,0,-1.000000,1768.320000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,22,0,-1.000000,1985.280000,baseline,lora,180 +on9,0,0,24,0,0,4037,4320.000000,22,0,-1.000000,1814.400000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,23,1,0,1376,4238.000000,22,0,30392.000000,1720.800000,baseline,lora,180 +on3,0,0,24,0,0,4201,4320.000000,22,0,-1.000000,1763.840000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4115,4320.000000,22,0,-1.000000,1804.480000,baseline,lora,180 +on9,0,0,24,0,0,4025,4320.000000,23,0,-1.000000,1787.520000,baseline,lora,180 +on10,0,0,24,0,0,4220,4320.000000,23,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4305,4320.000000,23,0,-1.000000,1754.560000,baseline,lora,180 +on6,0,0,24,0,0,4196,4320.000000,23,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,1,0,2054,4320.000000,23,0,43883.000000,1770.720000,baseline,lora,180 +on11,0,0,24,0,0,4046,4320.000000,23,0,-1.000000,1782.880000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,23,0,-1.000000,2052.320000,baseline,lora,180 +on2,0,0,24,0,0,4258,4320.000000,23,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,3914,4320.000000,23,0,79583.000000,1763.520000,baseline,lora,180 +on4,0,0,24,0,0,4271,4320.000000,23,0,-1.000000,1736.000000,baseline,lora,180 +on12,0,0,24,0,0,4186,4320.000000,23,0,-1.000000,1757.280000,baseline,lora,180 +on7,0,0,23,0,0,3986,4217.000000,23,0,-1.000000,1786.640000,baseline,lora,180 +on5,0,0,24,1,0,1724,4320.000000,23,0,37960.000000,1765.920000,baseline,lora,180 +on2,0,0,24,1,0,2899,4320.000000,24,0,58756.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,24,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,23,1,0,540,4248.000000,24,0,13458.000000,1724.800000,baseline,lora,180 +on12,0,0,24,0,0,4166,4320.000000,24,0,-1.000000,1773.280000,baseline,lora,180 +on3,0,0,24,0,0,4216,4320.000000,24,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4222,4320.000000,24,0,-1.000000,1743.840000,baseline,lora,180 +on9,0,0,24,0,0,4215,4320.000000,24,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,1,0,3542,4320.000000,24,0,76067.000000,1808.800000,baseline,lora,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8719.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4224,4320.000000,24,0,-1.000000,1805.120000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,24,0,-1.000000,1997.600000,baseline,lora,180 +on7,0,0,24,1,0,1805,4320.000000,24,0,37544.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4243,4320.000000,24,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4131,4320.000000,25,0,-1.000000,1814.560000,baseline,lora,180 +on4,0,0,24,0,0,4234,4320.000000,25,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4242,4320.000000,25,0,-1.000000,1740.640000,baseline,lora,180 +on6,0,0,24,1,0,2040,4320.000000,25,0,44921.000000,1774.880000,baseline,lora,180 +on12,0,0,24,1,0,2533,4320.000000,25,0,54043.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4132,4320.000000,25,0,-1.000000,1758.560000,baseline,lora,180 +on11,0,0,24,0,0,4147,4320.000000,25,0,-1.000000,1772.640000,baseline,lora,180 +on7,0,0,24,0,0,4274,4320.000000,25,0,-1.000000,1746.560000,baseline,lora,180 +on0,1,2,23,0,0,0,4316.000000,25,0,-1.000000,2031.360000,baseline,lora,180 +on5,0,0,24,0,0,3710,4320.000000,25,0,-1.000000,1850.240000,baseline,lora,180 +on10,0,0,24,0,0,4257,4320.000000,25,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4118,4320.000000,26,0,-1.000000,1764.320000,baseline,lora,180 +on7,0,0,24,0,0,4182,4320.000000,26,0,-1.000000,1750.400000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,26,0,-1.000000,2035.040000,baseline,lora,180 +on10,0,0,24,0,0,3918,4320.000000,26,0,-1.000000,1829.760000,baseline,lora,180 +on6,0,0,24,0,0,4288,4320.000000,26,0,-1.000000,1789.120000,baseline,lora,180 +on8,0,0,24,1,0,2340,4320.000000,26,0,48154.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4049,4320.000000,26,0,-1.000000,1776.800000,baseline,lora,180 +on1,0,0,24,1,0,3560,4320.000000,26,0,74345.000000,1788.320000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4185,4320.000000,26,0,-1.000000,1749.760000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,3973,4320.000000,26,0,-1.000000,1802.400000,baseline,lora,180 +on5,0,0,24,1,0,3063,4320.000000,27,0,64735.000000,1756.000000,baseline,lora,180 +on1,0,0,24,0,0,4134,4320.000000,27,0,-1.000000,1778.400000,baseline,lora,180 +on7,0,0,24,0,0,4301,4320.000000,27,0,-1.000000,1754.720000,baseline,lora,180 +on8,0,0,24,0,0,4023,4320.000000,27,0,-1.000000,1775.840000,baseline,lora,180 +on2,0,0,24,1,0,3307,4320.000000,27,0,74816.000000,1807.520000,baseline,lora,180 +on10,0,0,24,1,0,3647,4320.000000,27,0,77091.000000,1777.120000,baseline,lora,180 +on12,0,0,24,0,0,4186,4320.000000,27,0,-1.000000,1788.640000,baseline,lora,180 +on4,0,0,24,1,0,1805,4320.000000,27,0,38294.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4015,4320.000000,27,0,-1.000000,1780.800000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,27,0,-1.000000,2172.160000,baseline,lora,180 +on3,0,0,24,1,0,1420,4320.000000,27,0,29060.000000,1768.800000,baseline,lora,180 +on9,0,0,24,0,0,3928,4320.000000,27,0,-1.000000,1822.400000,baseline,lora,180 +on11,0,0,24,0,0,4182,4320.000000,27,0,-1.000000,1784.480000,baseline,lora,180 +on1,0,0,24,0,0,4147,4320.000000,28,0,-1.000000,1757.280000,baseline,lora,180 +on8,0,0,24,0,0,3987,4320.000000,28,0,-1.000000,1800.000000,baseline,lora,180 +on3,0,0,24,0,0,4229,4320.000000,28,0,-1.000000,1742.720000,baseline,lora,180 +on5,0,0,24,0,0,4144,4320.000000,28,0,-1.000000,1756.480000,baseline,lora,180 +on7,0,0,24,0,0,4301,4320.000000,28,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4057,4320.000000,28,0,-1.000000,1805.600000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4107,4320.000000,28,0,-1.000000,1782.080000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,28,0,-1.000000,2022.560000,baseline,lora,180 +on10,0,0,24,0,0,4111,4320.000000,28,0,-1.000000,1785.280000,baseline,lora,180 +on4,0,0,24,0,0,4204,4320.000000,28,0,-1.000000,1746.720000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4093,4320.000000,28,0,-1.000000,1764.640000,baseline,lora,180 +on11,0,0,24,0,0,4175,4320.000000,29,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4232,4320.000000,29,0,-1.000000,1756.640000,baseline,lora,180 +on6,0,0,24,1,0,1793,4320.000000,29,0,37286.000000,1756.000000,baseline,lora,180 +on8,0,0,24,0,0,4161,4320.000000,29,0,-1.000000,1753.920000,baseline,lora,180 +on7,0,0,24,0,0,4125,4320.000000,29,0,-1.000000,1759.520000,baseline,lora,180 +on4,0,0,23,0,0,4260,4320.000000,29,0,-1.000000,1737.760000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4162,4320.000000,29,0,-1.000000,1753.920000,baseline,lora,180 +on5,0,0,24,1,0,1617,4320.000000,29,0,32682.000000,1754.240000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,29,0,-1.000000,1947.200000,baseline,lora,180 +on12,0,0,24,0,0,4224,4320.000000,29,0,-1.000000,1780.000000,baseline,lora,180 +on3,0,0,24,0,0,4289,4320.000000,29,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4239,4320.000000,29,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4148,4320.000000,30,0,-1.000000,1768.960000,baseline,lora,180 +on11,0,0,24,0,0,4300,4320.000000,30,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4191,4320.000000,30,0,-1.000000,1796.960000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,30,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4206,4320.000000,30,0,-1.000000,1746.560000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,30,0,-1.000000,1964.000000,baseline,lora,180 +on2,0,0,24,0,0,4214,4320.000000,30,0,-1.000000,1763.520000,baseline,lora,180 +on3,0,0,24,0,0,4241,4320.000000,30,0,-1.000000,1740.800000,baseline,lora,180 +on8,0,0,24,0,0,4281,4320.000000,30,0,-1.000000,1734.400000,baseline,lora,180 +on7,0,0,24,0,0,4048,4320.000000,30,0,-1.000000,1774.080000,baseline,lora,180 +on5,0,0,24,1,0,1930,4320.000000,30,0,45573.000000,1825.440000,baseline,lora,180 +on9,0,0,24,0,0,4258,4320.000000,30,0,-1.000000,1738.080000,baseline,lora,180 +on4,0,0,24,0,0,4249,4320.000000,30,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4055,4320.000000,31,0,-1.000000,1803.840000,baseline,lora,180 +on12,0,0,24,0,0,4225,4320.000000,31,0,-1.000000,1743.360000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,31,0,-1.000000,1995.360000,baseline,lora,180 +on10,0,0,24,0,0,4223,4320.000000,31,0,-1.000000,1755.840000,baseline,lora,180 +on4,0,0,24,0,0,4227,4320.000000,31,0,-1.000000,1743.040000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,3973,4320.000000,31,0,-1.000000,1839.520000,baseline,lora,180 +on7,0,0,24,0,0,4286,4320.000000,31,0,-1.000000,1733.600000,baseline,lora,180 +on9,0,0,24,0,0,4071,4320.000000,31,0,-1.000000,1788.960000,baseline,lora,180 +on2,0,0,24,0,0,4178,4320.000000,31,0,-1.000000,1786.560000,baseline,lora,180 +on6,0,0,24,0,0,4163,4320.000000,31,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4178,4320.000000,31,0,-1.000000,1771.200000,baseline,lora,180 +on1,0,0,24,0,0,4294,4320.000000,31,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4135,4320.000000,32,0,-1.000000,1779.040000,baseline,lora,180 +on11,0,0,24,0,0,4090,4320.000000,32,0,-1.000000,1797.280000,baseline,lora,180 +on12,0,0,23,0,0,4104,4299.000000,32,0,-1.000000,1760.880000,baseline,lora,180 +on1,0,0,24,0,0,4084,4320.000000,32,0,-1.000000,1809.120000,baseline,lora,180 +on5,0,0,24,0,0,4082,4320.000000,32,0,-1.000000,1778.080000,baseline,lora,180 +on8,0,0,24,0,0,4178,4320.000000,32,0,-1.000000,1779.040000,baseline,lora,180 +on7,0,0,24,0,0,4176,4320.000000,32,0,-1.000000,1751.520000,baseline,lora,180 +on4,0,0,24,0,0,4285,4320.000000,32,0,-1.000000,1758.080000,baseline,lora,180 +on2,0,0,24,0,0,4199,4320.000000,32,0,-1.000000,1795.840000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,32,0,-1.000000,2025.280000,baseline,lora,180 +on6,0,0,24,0,0,4093,4320.000000,32,0,-1.000000,1770.240000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,32,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4242,4320.000000,32,0,-1.000000,1755.200000,baseline,lora,180 +on2,0,0,24,0,0,4214,4320.000000,33,0,-1.000000,1745.120000,baseline,lora,180 +on9,0,0,24,1,0,3060,4320.000000,33,0,61708.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4157,4320.000000,33,0,-1.000000,1794.080000,baseline,lora,180 +on7,0,0,24,0,0,4042,4320.000000,33,0,-1.000000,1784.960000,baseline,lora,180 +on5,0,0,24,0,0,4086,4320.000000,33,0,-1.000000,1765.760000,baseline,lora,180 +on3,0,0,24,0,0,4288,4320.000000,33,0,-1.000000,1733.280000,baseline,lora,180 +on8,0,0,24,1,0,553,4320.000000,33,0,14173.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4273,4320.000000,33,0,-1.000000,1769.920000,baseline,lora,180 +on10,0,0,24,0,0,4109,4320.000000,33,0,-1.000000,1765.440000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,33,0,-1.000000,1971.360000,baseline,lora,180 +on11,0,0,24,0,0,4204,4320.000000,33,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4077,4320.000000,34,0,-1.000000,1784.000000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,34,0,-1.000000,1993.760000,baseline,lora,180 +on12,0,0,24,0,0,4123,4320.000000,34,0,-1.000000,1779.360000,baseline,lora,180 +on11,0,0,24,0,0,4257,4320.000000,34,0,-1.000000,1738.240000,baseline,lora,180 +on7,0,0,24,0,0,4053,4320.000000,34,0,-1.000000,1814.400000,baseline,lora,180 +on8,0,0,24,0,0,4079,4320.000000,34,0,-1.000000,1814.400000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4189,4320.000000,34,0,-1.000000,1811.840000,baseline,lora,180 +on3,0,0,24,0,0,4139,4320.000000,34,0,-1.000000,1772.960000,baseline,lora,180 +on2,0,0,24,0,0,4157,4320.000000,34,0,-1.000000,1761.760000,baseline,lora,180 +on10,0,0,24,0,0,4166,4320.000000,34,0,-1.000000,1753.280000,baseline,lora,180 +on4,0,0,24,0,0,4190,4320.000000,35,0,-1.000000,1775.040000,baseline,lora,180 +on2,0,0,24,0,0,4146,4320.000000,35,0,-1.000000,1774.560000,baseline,lora,180 +on8,0,0,23,0,0,3893,4241.000000,35,0,-1.000000,1758.960000,baseline,lora,180 +on1,0,0,24,0,0,4215,4320.000000,35,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4209,4320.000000,35,0,-1.000000,1757.440000,baseline,lora,180 +on11,0,0,24,0,0,3996,4320.000000,35,0,-1.000000,1780.320000,baseline,lora,180 +on9,0,0,24,0,0,4137,4320.000000,35,0,-1.000000,1814.400000,baseline,lora,180 +on12,0,0,24,0,0,4157,4320.000000,35,0,-1.000000,1771.680000,baseline,lora,180 +on10,0,0,24,0,0,4145,4320.000000,35,0,-1.000000,1759.040000,baseline,lora,180 +on5,0,0,24,0,0,4191,4320.000000,35,0,-1.000000,1748.960000,baseline,lora,180 +on7,0,0,24,0,0,4292,4320.000000,35,0,-1.000000,1732.640000,baseline,lora,180 +on3,0,0,24,0,0,4007,4320.000000,35,0,-1.000000,1792.800000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,35,0,-1.000000,2082.240000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,36,0,-1.000000,2077.280000,baseline,lora,180 +on11,0,0,24,1,0,3417,4320.000000,36,0,68668.000000,1756.320000,baseline,lora,180 +on1,0,0,24,1,0,1444,4320.000000,36,0,31247.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4177,4320.000000,36,0,-1.000000,1751.520000,baseline,lora,180 +on4,0,0,24,0,0,3926,4320.000000,36,0,-1.000000,1833.440000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,1,0,1990,4320.000000,36,0,43298.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4121,4320.000000,36,0,-1.000000,1773.280000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,23,0,0,4262,4298.000000,36,0,-1.000000,1748.000000,baseline,lora,180 +on5,0,0,24,0,0,4201,4320.000000,36,0,-1.000000,1747.200000,baseline,lora,180 +on3,0,0,24,0,0,4194,4320.000000,36,0,-1.000000,1748.640000,baseline,lora,180 +on6,0,0,24,1,0,3476,4320.000000,36,0,81347.000000,1886.880000,baseline,lora,180 +on12,0,0,24,0,0,4012,4320.000000,37,0,-1.000000,1777.920000,baseline,lora,180 +on6,0,0,24,0,0,4194,4320.000000,37,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4080,4320.000000,37,0,-1.000000,1814.400000,baseline,lora,180 +on8,0,0,24,1,0,360,4320.000000,37,0,8792.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4166,4320.000000,37,0,-1.000000,1769.440000,baseline,lora,180 +on10,0,0,24,1,0,4034,4320.000000,37,0,84006.000000,1782.400000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,37,0,-1.000000,2133.600000,baseline,lora,180 +on5,0,0,24,0,0,4251,4320.000000,37,0,-1.000000,1744.320000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,37,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,1,0,3361,4320.000000,37,0,78148.000000,1830.080000,baseline,lora,180 +on4,0,0,24,0,0,4169,4320.000000,37,0,-1.000000,1768.640000,baseline,lora,180 +on3,0,0,23,0,0,3821,4207.000000,37,0,-1.000000,1753.520000,baseline,lora,180 +on9,0,0,24,0,0,4261,4320.000000,37,0,-1.000000,1737.600000,baseline,lora,180 +on5,0,0,24,0,0,4075,4320.000000,38,0,-1.000000,1802.560000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,3878,4320.000000,38,0,-1.000000,1799.360000,baseline,lora,180 +on9,0,0,24,0,0,4174,4320.000000,38,0,-1.000000,1751.520000,baseline,lora,180 +on12,0,0,24,0,0,4130,4320.000000,38,0,-1.000000,1780.800000,baseline,lora,180 +on6,0,0,24,0,0,4259,4320.000000,38,0,-1.000000,1757.280000,baseline,lora,180 +on11,0,0,24,0,0,4301,4320.000000,38,0,-1.000000,1743.680000,baseline,lora,180 +on1,0,0,24,0,0,4254,4320.000000,38,0,-1.000000,1764.640000,baseline,lora,180 +on3,0,0,24,1,0,919,4320.000000,38,0,21047.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4228,4320.000000,38,0,-1.000000,1742.880000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,38,0,-1.000000,1992.000000,baseline,lora,180 +on2,0,0,24,0,0,4110,4320.000000,38,0,-1.000000,1801.440000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4073,4320.000000,39,0,-1.000000,1767.840000,baseline,lora,180 +on4,0,0,23,0,0,4062,4215.000000,39,0,-1.000000,1710.640000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,39,0,-1.000000,1971.040000,baseline,lora,180 +on5,0,0,23,0,0,4111,4198.000000,39,0,-1.000000,1699.840000,baseline,lora,180 +on2,0,0,24,0,0,4123,4320.000000,39,0,-1.000000,1788.320000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4266,4320.000000,39,0,-1.000000,1736.800000,baseline,lora,180 +on10,0,0,24,0,0,3914,4320.000000,39,0,-1.000000,1843.040000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4146,4320.000000,39,0,-1.000000,1756.160000,baseline,lora,180 +on8,0,0,24,0,0,4296,4320.000000,39,0,-1.000000,1759.040000,baseline,lora,180 +on11,0,0,24,1,0,18,4320.000000,39,0,2794.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4234,4320.000000,40,0,-1.000000,1741.920000,baseline,lora,180 +on9,0,0,24,0,0,4129,4320.000000,40,0,-1.000000,1758.880000,baseline,lora,180 +on3,0,0,24,0,0,4207,4320.000000,40,0,-1.000000,1763.840000,baseline,lora,180 +on2,0,0,24,0,0,4033,4320.000000,40,0,-1.000000,1787.200000,baseline,lora,180 +on7,0,0,24,0,0,4189,4320.000000,40,0,-1.000000,1749.120000,baseline,lora,180 +on10,0,0,24,1,0,3205,4320.000000,40,0,74216.000000,1844.640000,baseline,lora,180 +on11,0,0,24,1,0,1620,4320.000000,40,0,32925.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,40,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4165,4320.000000,40,0,-1.000000,1752.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,40,0,-1.000000,2095.680000,baseline,lora,180 +on1,0,0,24,0,0,4026,4320.000000,40,0,-1.000000,1835.520000,baseline,lora,180 +on8,0,0,24,0,0,4107,4320.000000,40,0,-1.000000,1779.680000,baseline,lora,180 +on5,0,0,24,0,0,4249,4320.000000,40,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4209,4320.000000,41,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4313,4320.000000,41,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4260,4320.000000,41,0,-1.000000,1737.760000,baseline,lora,180 +on1,0,0,24,0,0,3770,4320.000000,41,0,-1.000000,1876.640000,baseline,lora,180 +on9,0,0,24,0,0,3972,4320.000000,41,0,-1.000000,1791.680000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4258,4320.000000,41,0,-1.000000,1753.760000,baseline,lora,180 +on6,0,0,24,0,0,4258,4320.000000,41,0,-1.000000,1738.080000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,41,0,-1.000000,1998.880000,baseline,lora,180 +on4,0,0,24,0,0,4137,4320.000000,41,0,-1.000000,1762.240000,baseline,lora,180 +on2,0,0,24,0,0,4225,4320.000000,41,0,-1.000000,1754.720000,baseline,lora,180 +on3,0,0,24,0,0,4127,4320.000000,41,0,-1.000000,1759.360000,baseline,lora,180 +on6,0,0,24,0,0,3977,4320.000000,42,0,-1.000000,1812.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4319,4320.000000,42,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,42,0,-1.000000,1988.480000,baseline,lora,180 +on11,0,0,24,0,0,4166,4320.000000,42,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4230,4320.000000,42,0,-1.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4155,4320.000000,42,0,-1.000000,1771.040000,baseline,lora,180 +on12,0,0,24,0,0,4284,4320.000000,42,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4012,4320.000000,42,0,-1.000000,1795.840000,baseline,lora,180 +on9,0,0,24,1,0,0,4320.000000,42,0,380.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,1245,4320.000000,42,0,31202.000000,1785.120000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4247,4320.000000,43,0,-1.000000,1762.720000,baseline,lora,180 +on9,0,0,24,0,0,4228,4320.000000,43,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,1,0,900,4320.000000,43,0,20073.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,3935,4320.000000,43,0,-1.000000,1823.200000,baseline,lora,180 +on6,0,0,24,0,0,4169,4320.000000,43,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,3957,4320.000000,43,0,-1.000000,1801.600000,baseline,lora,180 +on11,0,0,24,1,0,2525,4320.000000,43,0,53493.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4191,4320.000000,43,0,-1.000000,1785.600000,baseline,lora,180 +on10,0,0,24,0,0,4255,4320.000000,43,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4308,4320.000000,43,0,-1.000000,1730.080000,baseline,lora,180 +on5,0,0,24,0,0,4177,4320.000000,43,0,-1.000000,1751.200000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,43,0,-1.000000,2008.160000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,44,0,-1.000000,2028.160000,baseline,lora,180 +on10,0,0,24,1,0,180,4320.000000,44,0,4529.000000,1753.600000,baseline,lora,180 +on2,0,0,23,0,0,3951,4225.000000,44,0,-1.000000,1740.240000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,3240,4320.000000,44,0,67813.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,3983,4320.000000,44,0,-1.000000,1796.320000,baseline,lora,180 +on9,0,0,24,1,0,1620,4320.000000,44,0,32614.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4194,4320.000000,44,0,-1.000000,1784.640000,baseline,lora,180 +on12,0,0,24,0,0,4017,4320.000000,44,0,-1.000000,1784.480000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,3978,4320.000000,44,0,-1.000000,1792.160000,baseline,lora,180 +on4,0,0,24,1,0,3819,4320.000000,45,0,79996.000000,1811.200000,baseline,lora,180 +on6,0,0,24,0,0,4292,4320.000000,45,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4233,4320.000000,45,0,-1.000000,1807.840000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,45,0,-1.000000,2066.080000,baseline,lora,180 +on2,0,0,24,1,0,1080,4320.000000,45,0,21766.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4096,4320.000000,45,0,-1.000000,1785.600000,baseline,lora,180 +on10,0,0,24,1,0,1513,4320.000000,45,0,33154.000000,1782.400000,baseline,lora,180 +on9,0,0,24,0,0,4034,4320.000000,45,0,-1.000000,1774.080000,baseline,lora,180 +on8,0,0,24,0,0,4148,4320.000000,45,0,-1.000000,1785.920000,baseline,lora,180 +on5,0,0,24,0,0,4209,4320.000000,45,0,-1.000000,1746.080000,baseline,lora,180 +on7,0,0,24,0,0,4186,4320.000000,45,0,-1.000000,1749.600000,baseline,lora,180 +on3,0,0,24,0,0,4022,4320.000000,45,0,-1.000000,1776.160000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,46,0,-1.000000,2002.240000,baseline,lora,180 +on8,0,0,24,0,0,4286,4320.000000,46,0,-1.000000,1733.600000,baseline,lora,180 +on5,0,0,24,0,0,4251,4320.000000,46,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,1,0,568,4320.000000,46,0,17381.000000,1778.080000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4100,4320.000000,46,0,-1.000000,1788.320000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4291,4320.000000,46,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4048,4320.000000,46,0,-1.000000,1788.960000,baseline,lora,180 +on3,0,0,24,1,0,2896,4320.000000,46,0,60612.000000,1753.600000,baseline,lora,180 +on9,0,0,24,1,0,1332,4320.000000,46,0,29642.000000,1771.040000,baseline,lora,180 +on4,0,0,24,1,0,2548,4320.000000,46,0,54818.000000,1792.480000,baseline,lora,180 +on7,0,0,24,0,0,4301,4320.000000,46,0,-1.000000,1734.240000,baseline,lora,180 +on1,0,0,24,0,0,4087,4320.000000,47,0,-1.000000,1826.400000,baseline,lora,180 +on3,0,0,24,0,0,4192,4320.000000,47,0,-1.000000,1775.520000,baseline,lora,180 +on6,0,0,24,0,0,4209,4320.000000,47,0,-1.000000,1745.920000,baseline,lora,180 +on4,0,0,24,0,0,4145,4320.000000,47,0,-1.000000,1765.440000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4087,4320.000000,47,0,-1.000000,1788.160000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,47,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4086,4320.000000,47,0,-1.000000,1797.920000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,47,0,-1.000000,2024.960000,baseline,lora,180 +on9,0,0,24,0,0,4149,4320.000000,47,0,-1.000000,1780.640000,baseline,lora,180 +on2,0,0,24,0,0,4190,4320.000000,47,0,-1.000000,1748.960000,baseline,lora,180 +on10,0,0,24,0,0,4066,4320.000000,47,0,-1.000000,1768.960000,baseline,lora,180 +on7,0,0,24,0,0,4155,4320.000000,47,0,-1.000000,1767.360000,baseline,lora,180 +on2,0,0,23,0,0,3985,4265.000000,48,0,-1.000000,1751.440000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,48,0,-1.000000,2057.600000,baseline,lora,180 +on12,0,0,24,1,0,3792,4320.000000,48,0,83362.000000,1827.040000,baseline,lora,180 +on6,0,0,24,0,0,4229,4320.000000,48,0,-1.000000,1742.720000,baseline,lora,180 +on4,0,0,24,0,0,4207,4320.000000,48,0,-1.000000,1748.320000,baseline,lora,180 +on9,0,0,24,0,0,4142,4320.000000,48,0,-1.000000,1851.040000,baseline,lora,180 +on11,0,0,24,0,0,4098,4320.000000,48,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4137,4320.000000,48,0,-1.000000,1767.360000,baseline,lora,180 +on5,0,0,24,1,0,548,4320.000000,48,0,12844.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4226,4320.000000,48,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4186,4320.000000,48,0,-1.000000,1749.760000,baseline,lora,180 +on10,0,0,24,0,0,4273,4320.000000,48,0,-1.000000,1735.680000,baseline,lora,180 +on1,0,0,24,0,0,4294,4320.000000,48,0,-1.000000,1750.240000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,1902,4320.000000,49,0,41115.000000,1768.960000,baseline,lora,180 +on11,0,0,24,0,0,4277,4320.000000,49,0,-1.000000,1735.200000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4167,4320.000000,49,0,-1.000000,1752.640000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,49,0,-1.000000,1972.640000,baseline,lora,180 +on5,0,0,24,1,0,3988,4320.000000,49,0,85575.000000,1792.480000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4211,4320.000000,49,0,-1.000000,1769.920000,baseline,lora,180 +on4,0,0,24,0,0,4074,4320.000000,49,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,1,0,1226,4320.000000,49,0,25543.000000,1782.400000,baseline,lora,180 +on2,0,0,24,0,0,4123,4320.000000,49,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4181,4320.000000,50,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,50,0,-1.000000,2064.480000,baseline,lora,180 +on2,0,0,24,0,0,3936,4320.000000,50,0,-1.000000,1809.760000,baseline,lora,180 +on3,0,0,24,0,0,4204,4320.000000,50,0,-1.000000,1759.520000,baseline,lora,180 +on6,0,0,24,1,0,2112,4320.000000,50,0,46587.000000,1785.280000,baseline,lora,180 +on1,0,0,24,0,0,4285,4320.000000,50,0,-1.000000,1733.760000,baseline,lora,180 +on5,0,0,24,0,0,4303,4320.000000,50,0,-1.000000,1730.880000,baseline,lora,180 +on12,0,0,24,0,0,4091,4320.000000,50,0,-1.000000,1829.600000,baseline,lora,180 +on10,0,0,24,1,0,1440,4320.000000,50,0,28996.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4045,4320.000000,50,0,-1.000000,1805.760000,baseline,lora,180 +on8,0,0,24,0,0,4196,4320.000000,50,0,-1.000000,1760.640000,baseline,lora,180 +on7,0,0,24,0,0,4092,4320.000000,50,0,-1.000000,1770.080000,baseline,lora,180 +on11,0,0,24,1,0,374,4320.000000,50,0,9338.000000,1753.600000,baseline,lora,180 +on7,0,0,24,1,0,3401,4320.000000,51,0,75098.000000,1801.120000,baseline,lora,180 +on4,0,0,24,1,0,540,4320.000000,51,0,12833.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,51,0,-1.000000,2074.080000,baseline,lora,180 +on6,0,0,24,0,0,4051,4320.000000,51,0,-1.000000,1828.960000,baseline,lora,180 +on9,0,0,24,0,0,4159,4320.000000,51,0,-1.000000,1773.600000,baseline,lora,180 +on8,0,0,24,0,0,4114,4320.000000,51,0,-1.000000,1761.280000,baseline,lora,180 +on11,0,0,24,0,0,3900,4320.000000,51,0,-1.000000,1810.240000,baseline,lora,180 +on5,0,0,24,0,0,4211,4320.000000,51,0,-1.000000,1775.520000,baseline,lora,180 +on3,0,0,24,0,0,4319,4320.000000,51,0,-1.000000,1728.320000,baseline,lora,180 +on12,0,0,24,1,0,1213,4320.000000,51,0,27668.000000,1761.280000,baseline,lora,180 +on10,0,0,24,0,0,4250,4320.000000,51,0,-1.000000,1739.360000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,51,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4142,4320.000000,51,0,-1.000000,1789.440000,baseline,lora,180 +on8,0,0,24,1,0,1080,4320.000000,52,0,23539.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4162,4320.000000,52,0,-1.000000,1758.560000,baseline,lora,180 +on7,0,0,24,0,0,4286,4320.000000,52,0,-1.000000,1733.600000,baseline,lora,180 +on3,0,0,24,0,0,4254,4320.000000,52,0,-1.000000,1738.720000,baseline,lora,180 +on10,0,0,24,1,0,1704,4320.000000,52,0,39724.000000,1771.360000,baseline,lora,180 +on12,0,0,24,0,0,3968,4320.000000,52,0,-1.000000,1796.480000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,52,0,-1.000000,2048.960000,baseline,lora,180 +on2,0,0,24,0,0,4244,4320.000000,52,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4058,4320.000000,52,0,-1.000000,1808.000000,baseline,lora,180 +on11,0,0,24,0,0,4198,4320.000000,52,0,-1.000000,1747.680000,baseline,lora,180 +on4,0,0,24,0,0,4229,4320.000000,52,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4161,4320.000000,52,0,-1.000000,1770.720000,baseline,lora,180 +on1,0,0,24,1,0,2092,4320.000000,52,0,44686.000000,1766.240000,baseline,lora,180 +on12,0,0,24,0,0,4266,4320.000000,53,0,-1.000000,1760.000000,baseline,lora,180 +on10,0,0,23,0,0,4012,4279.000000,53,0,-1.000000,1785.520000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4019,4320.000000,53,0,-1.000000,1811.680000,baseline,lora,180 +on11,0,0,24,1,0,1260,4320.000000,53,0,27401.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4161,4320.000000,53,0,-1.000000,1753.760000,baseline,lora,180 +on4,0,0,24,1,0,720,4320.000000,53,0,15738.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4165,4320.000000,53,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4078,4320.000000,53,0,-1.000000,1767.040000,baseline,lora,180 +on8,0,0,24,0,0,4159,4320.000000,53,0,-1.000000,1775.520000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,53,0,-1.000000,2023.200000,baseline,lora,180 +on1,0,0,24,0,0,4154,4320.000000,53,0,-1.000000,1780.960000,baseline,lora,180 +on12,0,0,24,0,0,4170,4320.000000,54,0,-1.000000,1752.160000,baseline,lora,180 +on6,0,0,24,0,0,4175,4320.000000,54,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4254,4320.000000,54,0,-1.000000,1738.720000,baseline,lora,180 +on5,0,0,24,0,0,4178,4320.000000,54,0,-1.000000,1750.880000,baseline,lora,180 +on3,0,0,24,1,0,2160,4320.000000,54,0,45818.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4268,4320.000000,54,0,-1.000000,1737.440000,baseline,lora,180 +on9,0,0,24,0,0,3979,4320.000000,54,0,-1.000000,1783.040000,baseline,lora,180 +on4,0,0,24,0,0,4302,4320.000000,54,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4259,4320.000000,54,0,-1.000000,1785.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,54,0,-1.000000,1969.600000,baseline,lora,180 +on1,0,0,24,1,0,2340,4320.000000,54,0,49012.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4118,4320.000000,54,0,-1.000000,1775.040000,baseline,lora,180 +on9,0,0,24,0,0,4046,4320.000000,55,0,-1.000000,1805.120000,baseline,lora,180 +on11,0,0,24,0,0,4197,4320.000000,55,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4077,4320.000000,55,0,-1.000000,1772.320000,baseline,lora,180 +on10,0,0,24,0,0,4054,4320.000000,55,0,-1.000000,1782.240000,baseline,lora,180 +on5,0,0,23,0,0,4005,4265.000000,55,0,-1.000000,1748.400000,baseline,lora,180 +on8,0,0,24,0,0,4261,4320.000000,55,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4201,4320.000000,55,0,-1.000000,1747.200000,baseline,lora,180 +on12,0,0,24,0,0,4241,4320.000000,55,0,-1.000000,1740.800000,baseline,lora,180 +on6,0,0,24,1,0,1620,4320.000000,55,0,33178.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4191,4320.000000,55,0,-1.000000,1769.440000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,55,0,-1.000000,2004.960000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4310,4320.000000,56,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4152,4320.000000,56,0,-1.000000,1772.000000,baseline,lora,180 +on5,0,0,24,0,0,4274,4320.000000,56,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4218,4320.000000,56,0,-1.000000,1744.480000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4094,4320.000000,56,0,-1.000000,1769.120000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,56,0,-1.000000,1944.320000,baseline,lora,180 +on12,0,0,24,0,0,3841,4320.000000,56,0,-1.000000,1832.800000,baseline,lora,180 +on2,0,0,24,0,0,4160,4320.000000,56,0,-1.000000,1771.200000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4177,4320.000000,56,0,-1.000000,1793.280000,baseline,lora,180 +on3,0,0,23,1,0,2590,4281.000000,57,0,57312.000000,1796.240000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,57,0,-1.000000,2011.040000,baseline,lora,180 +on10,0,0,24,0,0,4167,4320.000000,57,0,-1.000000,1752.800000,baseline,lora,180 +on6,0,0,24,0,0,4166,4320.000000,57,0,-1.000000,1752.800000,baseline,lora,180 +on7,0,0,24,0,0,4150,4320.000000,57,0,-1.000000,1759.520000,baseline,lora,180 +on12,0,0,24,0,0,4137,4320.000000,57,0,-1.000000,1773.600000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4005,4320.000000,57,0,-1.000000,1791.200000,baseline,lora,180 +on9,0,0,24,0,0,4258,4320.000000,57,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4088,4320.000000,57,0,-1.000000,1799.040000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4171,4320.000000,57,0,-1.000000,1752.000000,baseline,lora,180 +on2,0,0,24,0,0,4223,4320.000000,57,0,-1.000000,1766.560000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4166,4320.000000,58,0,-1.000000,1752.960000,baseline,lora,180 +on12,0,0,24,0,0,4193,4320.000000,58,0,-1.000000,1814.400000,baseline,lora,180 +on1,0,0,24,0,0,4177,4320.000000,58,0,-1.000000,1766.400000,baseline,lora,180 +on4,0,0,24,1,0,9,4320.000000,58,0,3400.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,3729,4320.000000,58,0,-1.000000,1882.720000,baseline,lora,180 +on10,0,0,24,0,0,4297,4320.000000,58,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,58,0,-1.000000,2023.840000,baseline,lora,180 +on2,0,0,24,0,0,4296,4320.000000,58,0,-1.000000,1745.280000,baseline,lora,180 +on7,0,0,24,0,0,4129,4320.000000,58,0,-1.000000,1758.880000,baseline,lora,180 +on6,0,0,24,0,0,3906,4320.000000,58,0,-1.000000,1794.720000,baseline,lora,180 +on8,0,0,24,0,0,4242,4320.000000,59,0,-1.000000,1744.000000,baseline,lora,180 +on3,0,0,24,0,0,4156,4320.000000,59,0,-1.000000,1759.840000,baseline,lora,180 +on5,0,0,24,0,0,4296,4320.000000,59,0,-1.000000,1732.000000,baseline,lora,180 +on10,0,0,24,0,0,3989,4320.000000,59,0,-1.000000,1792.160000,baseline,lora,180 +on4,0,0,24,0,0,4154,4320.000000,59,0,-1.000000,1789.280000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,59,0,-1.000000,2017.120000,baseline,lora,180 +on2,0,0,24,0,0,4115,4320.000000,59,0,-1.000000,1761.120000,baseline,lora,180 +on12,0,0,24,0,0,4214,4320.000000,59,0,-1.000000,1745.120000,baseline,lora,180 +on9,0,0,24,1,0,3104,4320.000000,59,0,67414.000000,1811.200000,baseline,lora,180 +on11,0,0,23,1,0,1620,4278.000000,59,0,35672.000000,1736.800000,baseline,lora,180 +on7,0,0,24,0,0,4306,4320.000000,59,0,-1.000000,1730.400000,baseline,lora,180 +on1,0,0,24,0,0,4220,4320.000000,59,0,-1.000000,1744.160000,baseline,lora,180 +on6,0,0,24,0,0,4176,4320.000000,59,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4118,4320.000000,60,0,-1.000000,1769.760000,baseline,lora,180 +on6,0,0,24,0,0,4241,4320.000000,60,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4270,4320.000000,60,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4243,4320.000000,60,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4129,4320.000000,60,0,-1.000000,1776.320000,baseline,lora,180 +on2,0,0,24,0,0,4307,4320.000000,60,0,-1.000000,1731.680000,baseline,lora,180 +on8,0,0,24,1,0,3056,4320.000000,60,0,69342.000000,1840.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,60,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4149,4320.000000,60,0,-1.000000,1807.680000,baseline,lora,180 +on11,0,0,24,0,0,4318,4320.000000,60,0,-1.000000,1728.480000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,60,0,-1.000000,1960.320000,baseline,lora,180 +on5,0,0,24,0,0,4208,4320.000000,60,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4307,4320.000000,60,0,-1.000000,1730.240000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4154,4320.000000,61,0,-1.000000,1783.360000,baseline,lora,180 +on1,0,0,24,0,0,4091,4320.000000,61,0,-1.000000,1780.640000,baseline,lora,180 +on10,0,0,24,1,0,1448,4320.000000,61,0,32335.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4015,4320.000000,61,0,-1.000000,1777.280000,baseline,lora,180 +on4,0,0,23,0,0,4257,4263.000000,61,0,-1.000000,1706.320000,baseline,lora,180 +on8,0,0,24,0,0,4131,4320.000000,61,0,-1.000000,1764.960000,baseline,lora,180 +on7,0,0,24,0,0,4208,4320.000000,61,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,23,1,0,3517,4251.000000,61,0,80534.000000,1820.720000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,61,0,-1.000000,2117.760000,baseline,lora,180 +on2,0,0,24,0,0,3741,4320.000000,61,0,-1.000000,1873.120000,baseline,lora,180 +on11,0,0,24,0,0,4207,4320.000000,61,0,-1.000000,1765.120000,baseline,lora,180 +on8,0,0,24,0,0,4192,4320.000000,62,0,-1.000000,1792.320000,baseline,lora,180 +on11,0,0,24,0,0,4192,4320.000000,62,0,-1.000000,1748.640000,baseline,lora,180 +on5,0,0,24,0,0,4308,4320.000000,62,0,-1.000000,1748.160000,baseline,lora,180 +on3,0,0,24,0,0,4245,4320.000000,62,0,-1.000000,1740.160000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,1,0,3964,4320.000000,62,0,84946.000000,1808.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,62,0,-1.000000,1948.160000,baseline,lora,180 +on1,0,0,24,0,0,4226,4320.000000,62,0,-1.000000,1761.440000,baseline,lora,180 +on4,0,0,24,1,0,195,4320.000000,62,0,4275.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4137,4320.000000,62,0,-1.000000,1775.680000,baseline,lora,180 +on10,0,0,24,0,0,4306,4320.000000,62,0,-1.000000,1730.400000,baseline,lora,180 +on12,0,0,24,1,0,1376,4320.000000,62,0,30227.000000,1782.400000,baseline,lora,180 +on12,0,0,24,0,0,4186,4320.000000,63,0,-1.000000,1749.600000,baseline,lora,180 +on3,0,0,24,0,0,4293,4320.000000,63,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4168,4320.000000,63,0,-1.000000,1752.480000,baseline,lora,180 +on7,0,0,24,0,0,4240,4320.000000,63,0,-1.000000,1740.960000,baseline,lora,180 +on8,0,0,24,1,0,1845,4320.000000,63,0,42242.000000,1775.840000,baseline,lora,180 +on2,0,0,24,0,0,4295,4320.000000,63,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,63,0,-1.000000,2048.480000,baseline,lora,180 +on6,0,0,24,0,0,4186,4320.000000,63,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4125,4320.000000,63,0,-1.000000,1765.440000,baseline,lora,180 +on4,0,0,24,1,0,3780,4320.000000,63,0,76162.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4087,4320.000000,63,0,-1.000000,1780.320000,baseline,lora,180 +on9,0,0,24,0,0,3979,4320.000000,63,0,-1.000000,1843.200000,baseline,lora,180 +on5,0,0,24,0,0,4116,4320.000000,63,0,-1.000000,1795.680000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,64,0,-1.000000,1958.080000,baseline,lora,180 +on12,0,0,24,0,0,4162,4320.000000,64,0,-1.000000,1753.600000,baseline,lora,180 +on8,0,0,24,1,0,720,4320.000000,64,0,14609.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4263,4320.000000,64,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4175,4320.000000,64,0,-1.000000,1771.040000,baseline,lora,180 +on4,0,0,24,0,0,4272,4320.000000,64,0,-1.000000,1743.520000,baseline,lora,180 +on9,0,0,24,0,0,4165,4320.000000,64,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4179,4320.000000,64,0,-1.000000,1750.880000,baseline,lora,180 +on6,0,0,24,0,0,4231,4320.000000,64,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,1,0,2639,4320.000000,64,0,56548.000000,1763.520000,baseline,lora,180 +on11,0,0,24,1,0,1623,4320.000000,64,0,34917.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4231,4320.000000,64,0,-1.000000,1742.400000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4132,4320.000000,65,0,-1.000000,1782.080000,baseline,lora,180 +on3,0,0,24,0,0,4115,4320.000000,65,0,-1.000000,1765.760000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4058,4320.000000,65,0,-1.000000,1773.440000,baseline,lora,180 +on7,0,0,24,1,0,183,4320.000000,65,0,6528.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,65,0,-1.000000,2029.280000,baseline,lora,180 +on11,0,0,24,0,0,4023,4320.000000,65,0,-1.000000,1779.040000,baseline,lora,180 +on5,0,0,24,0,0,4289,4320.000000,65,0,-1.000000,1733.120000,baseline,lora,180 +on8,0,0,24,0,0,4029,4320.000000,65,0,-1.000000,1779.040000,baseline,lora,180 +on6,0,0,24,0,0,4298,4320.000000,65,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4109,4320.000000,65,0,-1.000000,1769.280000,baseline,lora,180 +on12,0,0,24,1,0,1772,4320.000000,65,0,39681.000000,1759.840000,baseline,lora,180 +on7,0,0,24,0,0,4307,4320.000000,66,0,-1.000000,1730.240000,baseline,lora,180 +on10,0,0,24,0,0,4061,4320.000000,66,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4184,4320.000000,66,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,66,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4225,4320.000000,66,0,-1.000000,1743.520000,baseline,lora,180 +on1,0,0,24,1,0,1149,4320.000000,66,0,27679.000000,1771.680000,baseline,lora,180 +on5,0,0,24,1,0,299,4320.000000,66,0,7778.000000,1774.880000,baseline,lora,180 +on3,0,0,24,0,0,4196,4320.000000,66,0,-1.000000,1748.000000,baseline,lora,180 +on4,0,0,24,1,0,4133,4320.000000,66,0,85724.000000,1764.160000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,66,0,-1.000000,2032.160000,baseline,lora,180 +on8,0,0,24,0,0,4147,4320.000000,66,0,-1.000000,1768.480000,baseline,lora,180 +on9,0,0,24,0,0,4301,4320.000000,66,0,-1.000000,1752.640000,baseline,lora,180 +on6,0,0,24,0,0,3933,4320.000000,66,0,-1.000000,1830.400000,baseline,lora,180 +on7,0,0,24,0,0,4181,4320.000000,67,0,-1.000000,1750.560000,baseline,lora,180 +on8,0,0,24,1,0,3289,4320.000000,67,0,69645.000000,1788.320000,baseline,lora,180 +on3,0,0,24,0,0,3936,4320.000000,67,0,-1.000000,1805.600000,baseline,lora,180 +on5,0,0,24,0,0,4195,4320.000000,67,0,-1.000000,1749.440000,baseline,lora,180 +on11,0,0,24,0,0,4212,4320.000000,67,0,-1.000000,1745.440000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,67,0,-1.000000,2122.080000,baseline,lora,180 +on6,0,0,24,0,0,4109,4320.000000,67,0,-1.000000,1793.920000,baseline,lora,180 +on1,0,0,24,0,0,4178,4320.000000,67,0,-1.000000,1752.320000,baseline,lora,180 +on4,0,0,24,1,0,1328,4320.000000,67,0,32429.000000,1782.400000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4292,4320.000000,67,0,-1.000000,1732.640000,baseline,lora,180 +on9,0,0,23,0,0,3840,4275.000000,67,0,-1.000000,1825.360000,baseline,lora,180 +on2,0,0,24,0,0,4048,4320.000000,67,0,-1.000000,1799.200000,baseline,lora,180 +on7,0,0,24,1,0,0,4320.000000,68,0,1179.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4161,4320.000000,68,0,-1.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4136,4320.000000,68,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,1,0,2874,4320.000000,68,0,58670.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,4079,4320.000000,68,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,1,0,3780,4320.000000,68,0,78149.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4316,4320.000000,68,0,-1.000000,1743.360000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,68,0,-1.000000,2063.520000,baseline,lora,180 +on11,0,0,24,1,0,3716,4320.000000,68,0,85401.000000,1832.800000,baseline,lora,180 +on6,0,0,24,0,0,4203,4320.000000,68,0,-1.000000,1814.720000,baseline,lora,180 +on5,0,0,24,0,0,4108,4320.000000,68,0,-1.000000,1762.240000,baseline,lora,180 +on8,0,0,24,0,0,4261,4320.000000,68,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4296,4320.000000,68,0,-1.000000,1771.200000,baseline,lora,180 +on12,0,0,24,0,0,4079,4320.000000,69,0,-1.000000,1788.000000,baseline,lora,180 +on6,0,0,24,0,0,4246,4320.000000,69,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4265,4320.000000,69,0,-1.000000,1736.960000,baseline,lora,180 +on11,0,0,24,1,0,919,4320.000000,69,0,19553.000000,1753.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,69,0,-1.000000,1881.760000,baseline,lora,180 +on8,0,0,24,0,0,4281,4320.000000,69,0,-1.000000,1734.400000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4158,4320.000000,69,0,-1.000000,1757.760000,baseline,lora,180 +on3,0,0,24,0,0,4251,4320.000000,69,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4190,4320.000000,69,0,-1.000000,1777.440000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4301,4320.000000,69,0,-1.000000,1745.760000,baseline,lora,180 +on8,0,0,24,0,0,4173,4320.000000,70,0,-1.000000,1766.560000,baseline,lora,180 +on12,0,0,24,1,0,907,4320.000000,70,0,18544.000000,1753.600000,baseline,lora,180 +on9,0,0,24,1,0,1980,4320.000000,70,0,42535.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4059,4320.000000,70,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4177,4320.000000,70,0,-1.000000,1751.040000,baseline,lora,180 +on10,0,0,24,0,0,4288,4320.000000,70,0,-1.000000,1733.440000,baseline,lora,180 +on5,0,0,24,0,0,4316,4320.000000,70,0,-1.000000,1728.960000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,70,0,-1.000000,1983.040000,baseline,lora,180 +on11,0,0,24,0,0,4286,4320.000000,70,0,-1.000000,1751.200000,baseline,lora,180 +on1,0,0,24,1,0,2347,4320.000000,70,0,47188.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4268,4320.000000,70,0,-1.000000,1736.480000,baseline,lora,180 +on4,0,0,24,0,0,4196,4320.000000,70,0,-1.000000,1762.400000,baseline,lora,180 +on7,0,0,24,0,0,4021,4320.000000,70,0,-1.000000,1797.600000,baseline,lora,180 +on10,0,0,24,0,0,4294,4320.000000,71,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,1,0,2420,4320.000000,71,0,57111.000000,1798.720000,baseline,lora,180 +on6,0,0,24,0,0,4219,4320.000000,71,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4088,4320.000000,71,0,-1.000000,1769.120000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4198,4320.000000,71,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,1,0,3574,4320.000000,71,0,78578.000000,1796.800000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,71,0,-1.000000,1992.800000,baseline,lora,180 +on3,0,0,24,1,0,1620,4320.000000,71,0,35332.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4170,4320.000000,71,0,-1.000000,1763.040000,baseline,lora,180 +on4,0,0,24,0,0,4279,4320.000000,71,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,1,0,2468,4320.000000,72,0,52487.000000,1764.160000,baseline,lora,180 +on9,0,0,24,0,0,4272,4320.000000,72,0,-1.000000,1735.840000,baseline,lora,180 +on4,0,0,24,0,0,4258,4320.000000,72,0,-1.000000,1766.560000,baseline,lora,180 +on7,0,0,24,0,0,4133,4320.000000,72,0,-1.000000,1758.240000,baseline,lora,180 +on5,0,0,24,0,0,4103,4320.000000,72,0,-1.000000,1763.200000,baseline,lora,180 +on1,0,0,24,0,0,4238,4320.000000,72,0,-1.000000,1762.560000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4292,4320.000000,72,0,-1.000000,1747.360000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,3764,4320.000000,72,0,-1.000000,1821.760000,baseline,lora,180 +on3,0,0,24,0,0,4220,4320.000000,72,0,-1.000000,1753.760000,baseline,lora,180 +on12,0,0,24,0,0,3882,4320.000000,72,0,-1.000000,1831.040000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,72,0,-1.000000,2042.880000,baseline,lora,180 +on5,0,0,24,0,0,4088,4320.000000,73,0,-1.000000,1781.120000,baseline,lora,180 +on6,0,0,24,0,0,4180,4320.000000,73,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,3821,4320.000000,73,0,-1.000000,1847.680000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,73,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4309,4320.000000,73,0,-1.000000,1729.920000,baseline,lora,180 +on12,0,0,24,0,0,4165,4320.000000,73,0,-1.000000,1785.600000,baseline,lora,180 +on2,0,0,24,0,0,4214,4320.000000,73,0,-1.000000,1768.800000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,73,0,-1.000000,2001.600000,baseline,lora,180 +on9,0,0,24,0,0,3992,4320.000000,73,0,-1.000000,1793.600000,baseline,lora,180 +on11,0,0,24,0,0,4283,4320.000000,73,0,-1.000000,1734.080000,baseline,lora,180 +on1,0,0,24,0,0,4270,4320.000000,73,0,-1.000000,1736.160000,baseline,lora,180 +on7,0,0,24,0,0,4229,4320.000000,73,0,-1.000000,1742.720000,baseline,lora,180 +on4,0,0,24,0,0,4281,4320.000000,73,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,3967,4320.000000,74,0,-1.000000,1822.880000,baseline,lora,180 +on1,0,0,24,0,0,3906,4320.000000,74,0,-1.000000,1833.760000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,74,0,-1.000000,2027.200000,baseline,lora,180 +on2,0,0,24,0,0,3925,4320.000000,74,0,-1.000000,1818.240000,baseline,lora,180 +on5,0,0,24,0,0,4249,4320.000000,74,0,-1.000000,1759.680000,baseline,lora,180 +on6,0,0,24,0,0,4103,4320.000000,74,0,-1.000000,1773.440000,baseline,lora,180 +on11,0,0,24,0,0,4165,4320.000000,74,0,-1.000000,1771.680000,baseline,lora,180 +on3,0,0,24,1,0,2880,4320.000000,74,0,58427.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4237,4320.000000,74,0,-1.000000,1744.480000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4210,4320.000000,75,0,-1.000000,1745.760000,baseline,lora,180 +on7,0,0,23,0,0,4117,4273.000000,75,0,-1.000000,1744.240000,baseline,lora,180 +on10,0,0,24,0,0,4107,4320.000000,75,0,-1.000000,1782.400000,baseline,lora,180 +on4,0,0,24,0,0,3915,4320.000000,75,0,-1.000000,1831.200000,baseline,lora,180 +on12,0,0,24,1,0,2114,4320.000000,75,0,44174.000000,1761.120000,baseline,lora,180 +on3,0,0,24,0,0,3926,4320.000000,75,0,-1.000000,1791.680000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,75,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,1,0,2350,4320.000000,75,0,47763.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4195,4320.000000,75,0,-1.000000,1755.040000,baseline,lora,180 +on8,0,0,24,0,0,4193,4320.000000,75,0,-1.000000,1773.760000,baseline,lora,180 +on1,0,0,24,0,0,4058,4320.000000,75,0,-1.000000,1776.640000,baseline,lora,180 +on11,0,0,24,0,0,4166,4320.000000,75,0,-1.000000,1754.880000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,75,0,-1.000000,2101.600000,baseline,lora,180 +on6,0,0,24,0,0,4167,4320.000000,76,0,-1.000000,1752.800000,baseline,lora,180 +on11,0,0,23,0,0,4102,4279.000000,76,0,-1.000000,1740.240000,baseline,lora,180 +on12,0,0,24,0,0,4259,4320.000000,76,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4146,4320.000000,76,0,-1.000000,1776.160000,baseline,lora,180 +on4,0,0,24,0,0,4313,4320.000000,76,0,-1.000000,1729.280000,baseline,lora,180 +on10,0,0,24,0,0,4174,4320.000000,76,0,-1.000000,1751.520000,baseline,lora,180 +on1,0,0,24,0,0,4144,4320.000000,76,0,-1.000000,1785.280000,baseline,lora,180 +on9,0,0,24,0,0,3940,4320.000000,76,0,-1.000000,1813.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,76,0,-1.000000,2009.920000,baseline,lora,180 +on5,0,0,24,0,0,4190,4320.000000,76,0,-1.000000,1810.880000,baseline,lora,180 +on8,0,0,24,1,0,1981,4320.000000,76,0,40483.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4196,4320.000000,76,0,-1.000000,1768.000000,baseline,lora,180 +on7,0,0,24,0,0,4272,4320.000000,76,0,-1.000000,1747.680000,baseline,lora,180 +on2,0,0,24,0,0,4202,4320.000000,77,0,-1.000000,1747.360000,baseline,lora,180 +on7,0,0,24,0,0,4050,4320.000000,77,0,-1.000000,1788.160000,baseline,lora,180 +on10,0,0,24,0,0,4186,4320.000000,77,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,3917,4320.000000,77,0,79878.000000,1761.120000,baseline,lora,180 +on3,0,0,24,0,0,4238,4320.000000,77,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,1,0,3248,4320.000000,77,0,69393.000000,1797.600000,baseline,lora,180 +on4,0,0,24,0,0,4199,4320.000000,77,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,0,0,4304,4320.000000,77,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4153,4320.000000,77,0,-1.000000,1801.760000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,77,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,3865,4320.000000,77,0,86291.000000,1831.840000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,77,0,-1.000000,2048.640000,baseline,lora,180 +on9,0,0,24,0,0,4229,4320.000000,77,0,-1.000000,1807.040000,baseline,lora,180 +on8,0,0,24,0,0,4198,4320.000000,78,0,-1.000000,1760.480000,baseline,lora,180 +on4,0,0,24,1,0,2713,4320.000000,78,0,57535.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4231,4320.000000,78,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4104,4320.000000,78,0,-1.000000,1779.680000,baseline,lora,180 +on2,0,0,23,0,0,4165,4217.000000,78,0,-1.000000,1695.280000,baseline,lora,180 +on7,0,0,24,0,0,4301,4320.000000,78,0,-1.000000,1731.200000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4169,4320.000000,78,0,-1.000000,1757.280000,baseline,lora,180 +on3,0,0,24,0,0,4069,4320.000000,78,0,-1.000000,1769.280000,baseline,lora,180 +on9,0,0,24,0,0,4220,4320.000000,78,0,-1.000000,1744.160000,baseline,lora,180 +on6,0,0,24,0,0,4150,4320.000000,78,0,-1.000000,1755.520000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,78,0,-1.000000,1943.200000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,3839,4320.000000,79,0,-1.000000,1814.720000,baseline,lora,180 +on5,0,0,24,0,0,4260,4320.000000,79,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,1,0,1824,4320.000000,79,0,42698.000000,1790.240000,baseline,lora,180 +on10,0,0,24,0,0,4167,4320.000000,79,0,-1.000000,1752.800000,baseline,lora,180 +on12,0,0,24,0,0,4202,4320.000000,79,0,-1.000000,1747.200000,baseline,lora,180 +on1,0,0,24,1,0,3479,4320.000000,79,0,73161.000000,1839.360000,baseline,lora,180 +on11,0,0,23,0,0,4176,4302.000000,79,0,-1.000000,1753.280000,baseline,lora,180 +on2,0,0,24,0,0,4312,4320.000000,79,0,-1.000000,1736.640000,baseline,lora,180 +on6,0,0,24,0,0,4192,4320.000000,79,0,-1.000000,1776.800000,baseline,lora,180 +on7,0,0,24,0,0,4282,4320.000000,79,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,79,0,-1.000000,2004.960000,baseline,lora,180 +on12,0,0,24,0,0,4177,4320.000000,80,0,-1.000000,1770.240000,baseline,lora,180 +on9,0,0,24,1,0,1787,4320.000000,80,0,37108.000000,1782.400000,baseline,lora,180 +on6,0,0,24,0,0,4315,4320.000000,80,0,-1.000000,1728.960000,baseline,lora,180 +on11,0,0,24,0,0,4104,4320.000000,80,0,-1.000000,1762.880000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,80,0,-1.000000,2069.120000,baseline,lora,180 +on2,0,0,24,0,0,4015,4320.000000,80,0,-1.000000,1780.960000,baseline,lora,180 +on7,0,0,24,0,0,4112,4320.000000,80,0,-1.000000,1761.600000,baseline,lora,180 +on5,0,0,24,0,0,4136,4320.000000,80,0,-1.000000,1766.560000,baseline,lora,180 +on1,0,0,24,0,0,4220,4320.000000,80,0,-1.000000,1744.160000,baseline,lora,180 +on3,0,0,24,0,0,4173,4320.000000,80,0,-1.000000,1751.680000,baseline,lora,180 +on4,0,0,24,0,0,4157,4320.000000,80,0,-1.000000,1774.720000,baseline,lora,180 +on8,0,0,24,0,0,4098,4320.000000,80,0,-1.000000,1794.080000,baseline,lora,180 +on10,0,0,24,0,0,4095,4320.000000,80,0,-1.000000,1773.920000,baseline,lora,180 +on12,0,0,24,0,0,4259,4320.000000,81,0,-1.000000,1738.080000,baseline,lora,180 +on10,0,0,24,0,0,4217,4320.000000,81,0,-1.000000,1756.640000,baseline,lora,180 +on6,0,0,24,0,0,4094,4320.000000,81,0,-1.000000,1799.520000,baseline,lora,180 +on1,0,0,24,0,0,4284,4320.000000,81,0,-1.000000,1733.920000,baseline,lora,180 +on8,0,0,24,0,0,3812,4320.000000,81,0,-1.000000,1813.600000,baseline,lora,180 +on5,0,0,24,0,0,4149,4320.000000,81,0,-1.000000,1755.680000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4255,4320.000000,81,0,-1.000000,1765.600000,baseline,lora,180 +on11,0,0,23,0,0,4034,4152.000000,81,0,-1.000000,1680.160000,baseline,lora,180 +on9,0,0,24,1,0,1307,4320.000000,81,0,29874.000000,1776.320000,baseline,lora,180 +on3,0,0,24,0,0,4245,4320.000000,81,0,-1.000000,1740.160000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,81,0,-1.000000,2047.200000,baseline,lora,180 +on2,0,0,24,0,0,4017,4320.000000,81,0,-1.000000,1859.040000,baseline,lora,180 +on10,0,0,23,0,0,4271,4271.000000,82,0,-1.000000,1708.400000,baseline,lora,180 +on7,0,0,24,0,0,4200,4320.000000,82,0,-1.000000,1760.160000,baseline,lora,180 +on11,0,0,24,0,0,4221,4320.000000,82,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4258,4320.000000,82,0,-1.000000,1773.280000,baseline,lora,180 +on12,0,0,24,0,0,4145,4320.000000,82,0,-1.000000,1801.280000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,82,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,1,0,2206,4320.000000,82,0,50392.000000,1775.200000,baseline,lora,180 +on4,0,0,24,1,0,3565,4320.000000,82,0,75518.000000,1782.400000,baseline,lora,180 +on3,0,0,24,1,0,439,4320.000000,82,0,13174.000000,1769.920000,baseline,lora,180 +on8,0,0,24,0,0,4214,4320.000000,82,0,-1.000000,1745.120000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,82,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,82,0,-1.000000,1980.000000,baseline,lora,180 +on2,0,0,24,0,0,4072,4320.000000,82,0,-1.000000,1768.000000,baseline,lora,180 +on6,0,0,24,0,0,4151,4320.000000,83,0,-1.000000,1781.760000,baseline,lora,180 +on1,0,0,24,0,0,4048,4320.000000,83,0,-1.000000,1787.680000,baseline,lora,180 +on7,0,0,24,1,0,3240,4320.000000,83,0,66093.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4054,4320.000000,83,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,2965,4320.000000,83,0,62676.000000,1771.840000,baseline,lora,180 +on10,0,0,24,0,0,4264,4320.000000,83,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,18,4320.000000,83,0,3329.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4057,4320.000000,83,0,-1.000000,1778.080000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,83,0,-1.000000,2074.720000,baseline,lora,180 +on2,0,0,24,0,0,4074,4320.000000,83,0,-1.000000,1819.520000,baseline,lora,180 +on5,0,0,24,0,0,4038,4320.000000,83,0,-1.000000,1794.240000,baseline,lora,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,baseline,lora,180 +on6,0,0,24,0,0,4109,4320.000000,84,0,-1.000000,1820.960000,baseline,lora,180 +on11,0,0,24,0,0,4317,4320.000000,84,0,-1.000000,1734.560000,baseline,lora,180 +on5,0,0,24,0,0,4080,4320.000000,84,0,-1.000000,1804.800000,baseline,lora,180 +on2,0,0,24,1,0,2466,4320.000000,84,0,56392.000000,1791.360000,baseline,lora,180 +on12,0,0,24,0,0,4207,4320.000000,84,0,-1.000000,1746.560000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4027,4320.000000,84,0,-1.000000,1791.200000,baseline,lora,180 +on4,0,0,24,0,0,4251,4320.000000,84,0,-1.000000,1745.280000,baseline,lora,180 +on7,0,0,24,0,0,3858,4320.000000,84,0,-1.000000,1848.480000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,84,0,-1.000000,2050.720000,baseline,lora,180 +on9,0,0,24,0,0,4228,4320.000000,84,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4216,4320.000000,84,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4310,4320.000000,84,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4210,4320.000000,85,0,-1.000000,1745.920000,baseline,lora,180 +on2,0,0,24,0,0,4125,4320.000000,85,0,-1.000000,1782.880000,baseline,lora,180 +on6,0,0,24,0,0,4051,4320.000000,85,0,-1.000000,1775.840000,baseline,lora,180 +on8,0,0,24,1,0,1989,4320.000000,85,0,41411.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4270,4320.000000,85,0,-1.000000,1736.160000,baseline,lora,180 +on12,0,0,24,0,0,4217,4320.000000,85,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4228,4320.000000,85,0,-1.000000,1770.720000,baseline,lora,180 +on11,0,0,24,0,0,3987,4320.000000,85,0,-1.000000,1781.920000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,85,0,-1.000000,2043.200000,baseline,lora,180 +on4,0,0,23,0,0,4088,4264.000000,85,0,-1.000000,1816.640000,baseline,lora,180 +on5,0,0,24,0,0,4010,4320.000000,85,0,-1.000000,1833.760000,baseline,lora,180 +on1,0,0,24,0,0,4220,4320.000000,85,0,-1.000000,1744.160000,baseline,lora,180 +on3,0,0,24,0,0,4275,4320.000000,85,0,-1.000000,1735.360000,baseline,lora,180 +on7,0,0,24,0,0,4136,4320.000000,86,0,-1.000000,1757.920000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,86,0,-1.000000,2084.160000,baseline,lora,180 +on2,0,0,24,0,0,4181,4320.000000,86,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,1,0,1265,4320.000000,86,0,25812.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4098,4320.000000,86,0,-1.000000,1763.840000,baseline,lora,180 +on1,0,0,24,0,0,4025,4320.000000,86,0,-1.000000,1811.360000,baseline,lora,180 +on12,0,0,24,0,0,4312,4320.000000,86,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4129,4320.000000,86,0,-1.000000,1799.680000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,86,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4191,4320.000000,86,0,-1.000000,1772.800000,baseline,lora,180 +on5,0,0,24,0,0,4162,4320.000000,86,0,-1.000000,1780.960000,baseline,lora,180 +on3,0,0,24,0,0,3768,4320.000000,86,0,-1.000000,1864.160000,baseline,lora,180 +on11,0,0,24,1,0,1095,4320.000000,86,0,22176.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4129,4320.000000,87,0,-1.000000,1782.240000,baseline,lora,180 +on1,0,0,24,0,0,4206,4320.000000,87,0,-1.000000,1774.240000,baseline,lora,180 +on4,0,0,24,1,0,4077,4320.000000,87,0,83709.000000,1766.560000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,87,0,-1.000000,2079.520000,baseline,lora,180 +on8,0,0,24,0,0,4187,4320.000000,87,0,-1.000000,1785.600000,baseline,lora,180 +on2,0,0,24,1,0,2094,4320.000000,87,0,43697.000000,1764.320000,baseline,lora,180 +on7,0,0,24,0,0,4200,4320.000000,87,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4129,4320.000000,87,0,-1.000000,1782.080000,baseline,lora,180 +on3,0,0,24,0,0,4158,4320.000000,87,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4103,4320.000000,87,0,-1.000000,1783.680000,baseline,lora,180 +on12,0,0,24,0,0,4183,4320.000000,87,0,-1.000000,1750.400000,baseline,lora,180 +on9,0,0,24,0,0,4156,4320.000000,87,0,-1.000000,1772.800000,baseline,lora,180 +on5,0,0,24,0,0,4043,4320.000000,87,0,-1.000000,1814.400000,baseline,lora,180 +on10,0,0,24,0,0,4301,4320.000000,88,0,-1.000000,1731.200000,baseline,lora,180 +on3,0,0,24,0,0,4244,4320.000000,88,0,-1.000000,1745.920000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,3926,4320.000000,88,0,-1.000000,1795.360000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,88,0,-1.000000,1975.200000,baseline,lora,180 +on9,0,0,24,0,0,4315,4320.000000,88,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,1,0,1099,4320.000000,88,0,21925.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,552,4320.000000,88,0,13525.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4162,4320.000000,88,0,-1.000000,1768.800000,baseline,lora,180 +on6,0,0,23,0,0,4248,4267.000000,88,0,-1.000000,1719.120000,baseline,lora,180 +on1,0,0,24,0,0,4205,4320.000000,88,0,-1.000000,1746.720000,baseline,lora,180 +on8,0,0,24,1,0,1440,4320.000000,88,0,29306.000000,1753.600000,baseline,lora,180 +on7,0,0,24,1,0,1516,4320.000000,88,0,33564.000000,1782.400000,baseline,lora,180 +on6,0,0,24,0,0,4028,4320.000000,89,0,-1.000000,1788.640000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4258,4320.000000,89,0,-1.000000,1738.080000,baseline,lora,180 +on11,0,0,24,0,0,4229,4320.000000,89,0,-1.000000,1742.720000,baseline,lora,180 +on9,0,0,24,0,0,4100,4320.000000,89,0,-1.000000,1774.880000,baseline,lora,180 +on3,0,0,24,0,0,4240,4320.000000,89,0,-1.000000,1751.520000,baseline,lora,180 +on10,0,0,24,0,0,4190,4320.000000,89,0,-1.000000,1748.960000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4100,4320.000000,89,0,-1.000000,1773.600000,baseline,lora,180 +on4,0,0,24,0,0,3747,4320.000000,89,0,-1.000000,1835.840000,baseline,lora,180 +on1,0,0,24,1,0,2880,4320.000000,89,0,61085.000000,1753.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,89,0,-1.000000,2042.560000,baseline,lora,180 +on5,0,0,24,0,0,4203,4320.000000,89,0,-1.000000,1764.640000,baseline,lora,180 +on9,0,0,24,0,0,3958,4320.000000,90,0,-1.000000,1809.600000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,90,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4037,4320.000000,90,0,-1.000000,1839.040000,baseline,lora,180 +on12,0,0,24,0,0,4286,4320.000000,90,0,-1.000000,1735.680000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,90,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,23,0,0,4199,4262.000000,90,0,-1.000000,1715.040000,baseline,lora,180 +on7,0,0,24,0,0,4155,4320.000000,90,0,-1.000000,1754.880000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,90,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,23,1,0,3606,4277.000000,90,0,78489.000000,1773.360000,baseline,lora,180 +on4,0,0,24,0,0,4256,4320.000000,90,0,-1.000000,1741.120000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,90,0,-1.000000,1961.120000,baseline,lora,180 +on11,0,0,24,0,0,4217,4320.000000,90,0,-1.000000,1814.400000,baseline,lora,180 +on2,0,0,24,0,0,4253,4320.000000,90,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4271,4320.000000,91,0,-1.000000,1763.200000,baseline,lora,180 +on10,0,0,24,0,0,4132,4320.000000,91,0,-1.000000,1776.160000,baseline,lora,180 +on11,0,0,24,0,0,4246,4320.000000,91,0,-1.000000,1742.880000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,91,0,-1.000000,2028.000000,baseline,lora,180 +on9,0,0,24,0,0,4110,4320.000000,91,0,-1.000000,1776.800000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,91,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4315,4320.000000,91,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,3898,4320.000000,91,0,-1.000000,1802.240000,baseline,lora,180 +on5,0,0,24,0,0,4274,4320.000000,91,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4252,4320.000000,91,0,-1.000000,1754.880000,baseline,lora,180 +on3,0,0,24,0,0,3909,4320.000000,91,0,-1.000000,1816.320000,baseline,lora,180 +on2,0,0,24,0,0,4145,4320.000000,91,0,-1.000000,1776.960000,baseline,lora,180 +on8,0,0,24,1,0,3379,4320.000000,91,0,70830.000000,1782.400000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,3805,4320.000000,92,0,-1.000000,1867.360000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,92,0,-1.000000,1980.640000,baseline,lora,180 +on11,0,0,24,0,0,3891,4320.000000,92,0,-1.000000,1837.760000,baseline,lora,180 +on12,0,0,24,1,0,1067,4320.000000,92,0,25619.000000,1794.080000,baseline,lora,180 +on1,0,0,24,1,0,3966,4320.000000,92,0,80205.000000,1753.600000,baseline,lora,180 +on4,0,0,23,0,0,4206,4228.000000,92,0,-1.000000,1694.880000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4235,4320.000000,92,0,-1.000000,1756.320000,baseline,lora,180 +on1,0,0,24,0,0,4174,4320.000000,93,0,-1.000000,1758.880000,baseline,lora,180 +on11,0,0,24,0,0,4021,4320.000000,93,0,-1.000000,1776.320000,baseline,lora,180 +on7,0,0,24,1,0,360,4320.000000,93,0,9294.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4172,4320.000000,93,0,-1.000000,1752.000000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4257,4320.000000,93,0,-1.000000,1738.400000,baseline,lora,180 +on6,0,0,24,1,0,180,4320.000000,93,0,5752.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4182,4320.000000,93,0,-1.000000,1798.560000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,23,0,0,3893,4276.000000,93,0,-1.000000,1806.240000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,93,0,-1.000000,2005.440000,baseline,lora,180 +on8,0,0,24,0,0,4103,4320.000000,93,0,-1.000000,1807.840000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4167,4320.000000,94,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4134,4320.000000,94,0,-1.000000,1806.560000,baseline,lora,180 +on2,0,0,24,0,0,3916,4320.000000,94,0,-1.000000,1793.280000,baseline,lora,180 +on9,0,0,24,0,0,4169,4320.000000,94,0,-1.000000,1768.160000,baseline,lora,180 +on6,0,0,24,0,0,3986,4320.000000,94,0,-1.000000,1809.120000,baseline,lora,180 +on4,0,0,23,0,0,4267,4304.000000,94,0,-1.000000,1727.680000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,94,0,-1.000000,1971.680000,baseline,lora,180 +on3,0,0,23,0,0,4213,4315.000000,94,0,-1.000000,1765.520000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4291,4320.000000,94,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4230,4320.000000,94,0,-1.000000,1742.560000,baseline,lora,180 +on12,0,0,24,0,0,4304,4320.000000,94,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,3862,4320.000000,95,0,-1.000000,1811.520000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.160000,baseline,lora,180 +on5,0,0,24,0,0,4143,4320.000000,95,0,-1.000000,1784.480000,baseline,lora,180 +on9,0,0,24,0,0,4063,4320.000000,95,0,-1.000000,1769.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,95,0,-1.000000,2040.000000,baseline,lora,180 +on4,0,0,24,1,0,0,4320.000000,95,0,193.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4143,4320.000000,95,0,-1.000000,1760.800000,baseline,lora,180 +on8,0,0,24,1,0,1080,4320.000000,95,0,22358.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4116,4320.000000,95,0,-1.000000,1760.960000,baseline,lora,180 +on11,0,0,24,0,0,4093,4320.000000,95,0,-1.000000,1799.200000,baseline,lora,180 +on7,0,0,24,0,0,4211,4320.000000,95,0,-1.000000,1745.760000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,23,0,0,4239,4316.000000,96,0,-1.000000,1750.720000,baseline,lora,180 +on11,0,0,23,0,0,4187,4295.000000,96,0,-1.000000,1735.440000,baseline,lora,180 +on2,0,0,24,0,0,4247,4320.000000,96,0,-1.000000,1742.880000,baseline,lora,180 +on12,0,0,24,0,0,4140,4320.000000,96,0,-1.000000,1767.200000,baseline,lora,180 +on10,0,0,24,1,0,3373,4320.000000,96,0,74555.000000,1790.880000,baseline,lora,180 +on4,0,0,24,1,0,3197,4320.000000,96,0,67214.000000,1775.680000,baseline,lora,180 +on7,0,0,24,0,0,3983,4320.000000,96,0,-1.000000,1794.240000,baseline,lora,180 +on6,0,0,24,0,0,4178,4320.000000,96,0,-1.000000,1751.040000,baseline,lora,180 +on9,0,0,24,1,0,0,4320.000000,96,0,2503.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,96,0,-1.000000,2035.840000,baseline,lora,180 +on3,0,0,24,0,0,4301,4320.000000,96,0,-1.000000,1756.000000,baseline,lora,180 +on5,0,0,24,0,0,4254,4320.000000,96,0,-1.000000,1738.880000,baseline,lora,180 +on1,0,0,24,0,0,4187,4320.000000,96,0,-1.000000,1778.880000,baseline,lora,180 +on3,0,0,24,0,0,4070,4320.000000,97,0,-1.000000,1788.640000,baseline,lora,180 +on6,0,0,24,0,0,4137,4320.000000,97,0,-1.000000,1779.360000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4253,4320.000000,97,0,-1.000000,1739.040000,baseline,lora,180 +on5,0,0,24,0,0,4136,4320.000000,97,0,-1.000000,1776.320000,baseline,lora,180 +on8,0,0,24,1,0,3213,4320.000000,97,0,66592.000000,1779.840000,baseline,lora,180 +on2,0,0,24,0,0,4287,4320.000000,97,0,-1.000000,1733.440000,baseline,lora,180 +on9,0,0,24,0,0,3935,4320.000000,97,0,-1.000000,1823.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,97,0,-1.000000,2033.920000,baseline,lora,180 +on7,0,0,24,0,0,4049,4320.000000,97,0,-1.000000,1794.560000,baseline,lora,180 +on10,0,0,24,0,0,4308,4320.000000,97,0,-1.000000,1730.080000,baseline,lora,180 +on12,0,0,24,0,0,4177,4320.000000,97,0,-1.000000,1771.520000,baseline,lora,180 +on4,0,0,24,0,0,4149,4320.000000,97,0,-1.000000,1782.880000,baseline,lora,180 +on4,0,0,23,0,0,4113,4201.000000,98,0,-1.000000,1721.200000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,98,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4255,4320.000000,98,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4241,4320.000000,98,0,-1.000000,1740.800000,baseline,lora,180 +on5,0,0,24,0,0,3905,4320.000000,98,0,-1.000000,1860.000000,baseline,lora,180 +on6,0,0,24,0,0,4233,4320.000000,98,0,-1.000000,1764.480000,baseline,lora,180 +on11,0,0,24,0,0,4171,4320.000000,98,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,3970,4320.000000,98,0,-1.000000,1835.200000,baseline,lora,180 +on8,0,0,24,0,0,4183,4320.000000,98,0,-1.000000,1768.160000,baseline,lora,180 +on10,0,0,24,0,0,4176,4320.000000,98,0,-1.000000,1751.200000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,98,0,-1.000000,2089.120000,baseline,lora,180 +on1,0,0,24,0,0,3988,4320.000000,98,0,-1.000000,1793.920000,baseline,lora,180 +on3,0,0,24,0,0,3939,4320.000000,98,0,-1.000000,1798.080000,baseline,lora,180 +on1,0,0,24,1,0,1970,4320.000000,99,0,42193.000000,1758.880000,baseline,lora,180 +on8,0,0,24,1,0,0,4320.000000,99,0,962.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4076,4320.000000,99,0,-1.000000,1767.360000,baseline,lora,180 +on2,0,0,24,0,0,3999,4320.000000,99,0,-1.000000,1784.160000,baseline,lora,180 +on6,0,0,24,0,0,4280,4320.000000,99,0,-1.000000,1762.720000,baseline,lora,180 +on7,0,0,24,1,0,540,4320.000000,99,0,13132.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4051,4320.000000,99,0,-1.000000,1808.960000,baseline,lora,180 +on5,0,0,24,0,0,4185,4320.000000,99,0,-1.000000,1773.600000,baseline,lora,180 +on10,0,0,24,1,0,1427,4320.000000,99,0,31190.000000,1770.880000,baseline,lora,180 +on3,0,0,24,0,0,4071,4320.000000,99,0,-1.000000,1805.440000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,99,0,-1.000000,2082.080000,baseline,lora,180 +on9,0,0,24,0,0,4068,4320.000000,99,0,-1.000000,1783.840000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4090,4320.000000,100,0,-1.000000,1765.280000,baseline,lora,180 +on2,0,0,24,0,0,3892,4320.000000,100,0,-1.000000,1811.520000,baseline,lora,180 +on8,0,0,24,1,0,3437,4320.000000,100,0,74252.000000,1786.720000,baseline,lora,180 +on9,0,0,24,0,0,4230,4320.000000,100,0,-1.000000,1758.880000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,100,0,-1.000000,2021.440000,baseline,lora,180 +on6,0,0,24,0,0,4263,4320.000000,100,0,-1.000000,1737.280000,baseline,lora,180 +on4,0,0,24,0,0,4308,4320.000000,100,0,-1.000000,1730.080000,baseline,lora,180 +on11,0,0,24,1,0,555,4320.000000,100,0,12932.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4270,4320.000000,100,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4179,4320.000000,100,0,-1.000000,1782.080000,baseline,lora,180 +on3,0,0,24,1,0,369,4320.000000,100,0,8955.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4159,4320.000000,100,0,-1.000000,1771.840000,baseline,lora,180 +on4,0,0,24,0,0,4278,4320.000000,101,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4242,4320.000000,101,0,-1.000000,1740.640000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,101,0,-1.000000,2026.720000,baseline,lora,180 +on7,0,0,24,0,0,4099,4320.000000,101,0,-1.000000,1770.400000,baseline,lora,180 +on3,0,0,24,0,0,3950,4320.000000,101,0,-1.000000,1795.840000,baseline,lora,180 +on9,0,0,24,1,0,1246,4320.000000,101,0,32212.000000,1806.880000,baseline,lora,180 +on1,0,0,24,0,0,4221,4320.000000,101,0,-1.000000,1787.360000,baseline,lora,180 +on6,0,0,24,0,0,4198,4320.000000,101,0,-1.000000,1771.360000,baseline,lora,180 +on12,0,0,24,0,0,4289,4320.000000,101,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,101,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4225,4320.000000,101,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4000,4320.000000,101,0,-1.000000,1795.840000,baseline,lora,180 +on2,0,0,24,0,0,4205,4320.000000,101,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4242,4320.000000,102,0,-1.000000,1740.640000,baseline,lora,180 +on6,0,0,24,0,0,4295,4320.000000,102,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4287,4320.000000,102,0,-1.000000,1744.000000,baseline,lora,180 +on4,0,0,24,0,0,4304,4320.000000,102,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4310,4320.000000,102,0,-1.000000,1729.760000,baseline,lora,180 +on3,0,0,24,0,0,4039,4320.000000,102,0,-1.000000,1780.160000,baseline,lora,180 +on2,0,0,24,0,0,4290,4320.000000,102,0,-1.000000,1742.720000,baseline,lora,180 +on1,0,0,24,1,0,2080,4320.000000,102,0,46152.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4067,4320.000000,102,0,-1.000000,1779.520000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,102,0,-1.000000,1928.960000,baseline,lora,180 +on11,0,0,24,0,0,4221,4320.000000,102,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4163,4320.000000,102,0,-1.000000,1753.280000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4241,4320.000000,103,0,-1.000000,1740.800000,baseline,lora,180 +on1,0,0,24,1,0,2168,4320.000000,103,0,46924.000000,1753.600000,baseline,lora,180 +on5,0,0,23,0,0,3994,4279.000000,103,0,-1.000000,1818.480000,baseline,lora,180 +on2,0,0,24,0,0,4304,4320.000000,103,0,-1.000000,1730.720000,baseline,lora,180 +on4,0,0,24,0,0,4317,4320.000000,103,0,-1.000000,1738.560000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,103,0,-1.000000,1997.440000,baseline,lora,180 +on8,0,0,24,0,0,4079,4320.000000,103,0,-1.000000,1814.400000,baseline,lora,180 +on3,0,0,24,0,0,4182,4320.000000,103,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4175,4320.000000,103,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,1,0,2274,4320.000000,103,0,52751.000000,1803.680000,baseline,lora,180 +on11,0,0,24,0,0,4125,4320.000000,103,0,-1.000000,1778.080000,baseline,lora,180 +on5,0,0,24,0,0,4264,4320.000000,104,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4115,4320.000000,104,0,-1.000000,1767.520000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,104,0,-1.000000,1997.760000,baseline,lora,180 +on8,0,0,24,0,0,3934,4320.000000,104,0,-1.000000,1857.120000,baseline,lora,180 +on12,0,0,24,0,0,4270,4320.000000,104,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,1,0,3042,4320.000000,104,0,63805.000000,1756.640000,baseline,lora,180 +on6,0,0,24,1,0,2640,4320.000000,104,0,56034.000000,1782.400000,baseline,lora,180 +on10,0,0,24,0,0,4282,4320.000000,104,0,-1.000000,1760.160000,baseline,lora,180 +on2,0,0,24,0,0,4072,4320.000000,104,0,-1.000000,1768.000000,baseline,lora,180 +on11,0,0,24,0,0,4166,4320.000000,104,0,-1.000000,1763.680000,baseline,lora,180 +on1,0,0,24,0,0,4194,4320.000000,104,0,-1.000000,1748.320000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4187,4320.000000,105,0,-1.000000,1760.640000,baseline,lora,180 +on8,0,0,24,0,0,4155,4320.000000,105,0,-1.000000,1767.680000,baseline,lora,180 +on6,0,0,24,1,0,1474,4320.000000,105,0,35767.000000,1786.720000,baseline,lora,180 +on9,0,0,24,0,0,4036,4320.000000,105,0,-1.000000,1804.960000,baseline,lora,180 +on4,0,0,24,0,0,4198,4320.000000,105,0,-1.000000,1770.720000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,105,0,-1.000000,2048.160000,baseline,lora,180 +on10,0,0,24,0,0,4185,4320.000000,105,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4256,4320.000000,105,0,-1.000000,1761.600000,baseline,lora,180 +on7,0,0,24,0,0,3966,4320.000000,105,0,-1.000000,1820.320000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4123,4320.000000,105,0,-1.000000,1770.720000,baseline,lora,180 +on11,0,0,24,0,0,4104,4320.000000,105,0,-1.000000,1836.640000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,1,0,2340,4320.000000,106,0,49312.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4179,4320.000000,106,0,-1.000000,1779.360000,baseline,lora,180 +on12,0,0,24,0,0,4272,4320.000000,106,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4072,4320.000000,106,0,-1.000000,1777.760000,baseline,lora,180 +on9,0,0,24,0,0,4136,4320.000000,106,0,-1.000000,1757.760000,baseline,lora,180 +on2,0,0,24,0,0,4082,4320.000000,106,0,-1.000000,1788.800000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4113,4320.000000,106,0,-1.000000,1808.960000,baseline,lora,180 +on3,0,0,24,0,0,4181,4320.000000,106,0,-1.000000,1750.400000,baseline,lora,180 +on10,0,0,24,0,0,4162,4320.000000,106,0,-1.000000,1753.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,106,0,-1.000000,1974.400000,baseline,lora,180 +on1,0,0,24,0,0,4165,4320.000000,107,0,-1.000000,1758.400000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,107,0,-1.000000,1921.600000,baseline,lora,180 +on8,0,0,24,0,0,4217,4320.000000,107,0,-1.000000,1758.720000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4295,4320.000000,107,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,1377,4320.000000,107,0,30657.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4212,4320.000000,107,0,-1.000000,1765.920000,baseline,lora,180 +on7,0,0,24,0,0,4172,4320.000000,107,0,-1.000000,1751.840000,baseline,lora,180 +on3,0,0,24,0,0,4265,4320.000000,107,0,-1.000000,1736.960000,baseline,lora,180 +on9,0,0,24,0,0,4177,4320.000000,107,0,-1.000000,1751.200000,baseline,lora,180 +on4,0,0,24,0,0,4098,4320.000000,107,0,-1.000000,1763.840000,baseline,lora,180 +on7,0,0,24,0,0,4119,4320.000000,108,0,-1.000000,1767.680000,baseline,lora,180 +on6,0,0,24,0,0,4084,4320.000000,108,0,-1.000000,1782.080000,baseline,lora,180 +on4,0,0,24,0,0,4214,4320.000000,108,0,-1.000000,1791.680000,baseline,lora,180 +on2,0,0,24,0,0,4129,4320.000000,108,0,-1.000000,1814.400000,baseline,lora,180 +on11,0,0,24,0,0,4291,4320.000000,108,0,-1.000000,1732.800000,baseline,lora,180 +on1,0,0,23,0,0,4300,4300.000000,108,0,-1.000000,1720.000000,baseline,lora,180 +on3,0,0,24,0,0,4123,4320.000000,108,0,-1.000000,1759.840000,baseline,lora,180 +on12,0,0,24,0,0,4126,4320.000000,108,0,-1.000000,1814.400000,baseline,lora,180 +on5,0,0,24,0,0,4204,4320.000000,108,0,-1.000000,1746.880000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,108,0,-1.000000,2032.480000,baseline,lora,180 +on10,0,0,24,0,0,4087,4320.000000,108,0,-1.000000,1781.760000,baseline,lora,180 +on9,0,0,24,0,0,4103,4320.000000,108,0,-1.000000,1763.040000,baseline,lora,180 +on8,0,0,24,1,0,1086,4320.000000,108,0,24713.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4072,4320.000000,109,0,-1.000000,1780.000000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4136,4320.000000,109,0,-1.000000,1757.920000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,109,0,-1.000000,1928.320000,baseline,lora,180 +on6,0,0,24,0,0,4292,4320.000000,109,0,-1.000000,1732.640000,baseline,lora,180 +on4,0,0,24,1,0,180,4320.000000,109,0,7050.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4108,4320.000000,109,0,-1.000000,1776.000000,baseline,lora,180 +on3,0,0,24,0,0,4033,4320.000000,109,0,-1.000000,1798.080000,baseline,lora,180 +on12,0,0,24,0,0,4200,4320.000000,109,0,-1.000000,1747.360000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,110,0,-1.000000,2036.000000,baseline,lora,180 +on11,0,0,24,0,0,4184,4320.000000,110,0,-1.000000,1750.240000,baseline,lora,180 +on6,0,0,24,0,0,4279,4320.000000,110,0,-1.000000,1734.720000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4110,4320.000000,110,0,-1.000000,1761.920000,baseline,lora,180 +on3,0,0,24,0,0,4032,4320.000000,110,0,-1.000000,1787.200000,baseline,lora,180 +on10,0,0,24,0,0,3902,4320.000000,110,0,-1.000000,1844.320000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,1321,4320.000000,110,0,31952.000000,1811.200000,baseline,lora,180 +on1,0,0,24,0,0,4175,4320.000000,110,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,3936,4320.000000,110,0,-1.000000,1801.760000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,111,0,-1.000000,2016.640000,baseline,lora,180 +on4,0,0,24,0,0,4000,4320.000000,111,0,-1.000000,1798.560000,baseline,lora,180 +on5,0,0,24,0,0,4308,4320.000000,111,0,-1.000000,1730.080000,baseline,lora,180 +on10,0,0,24,0,0,4052,4320.000000,111,0,-1.000000,1779.520000,baseline,lora,180 +on1,0,0,24,0,0,4301,4320.000000,111,0,-1.000000,1752.960000,baseline,lora,180 +on11,0,0,24,1,0,2272,4320.000000,111,0,47620.000000,1795.360000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4091,4320.000000,111,0,-1.000000,1780.480000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4008,4320.000000,111,0,-1.000000,1786.080000,baseline,lora,180 +on6,0,0,24,1,0,2899,4320.000000,111,0,60398.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4210,4320.000000,111,0,-1.000000,1745.920000,baseline,lora,180 +on12,0,0,24,0,0,4214,4320.000000,111,0,-1.000000,1761.120000,baseline,lora,180 +on2,0,0,24,1,0,4062,4320.000000,112,0,82984.000000,1768.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,112,0,-1.000000,2007.840000,baseline,lora,180 +on11,0,0,24,0,0,4132,4320.000000,112,0,-1.000000,1805.600000,baseline,lora,180 +on9,0,0,24,1,0,48,4320.000000,112,0,3830.000000,1776.480000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4210,4320.000000,112,0,-1.000000,1745.760000,baseline,lora,180 +on1,0,0,24,0,0,4053,4320.000000,112,0,-1.000000,1771.040000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4156,4320.000000,112,0,-1.000000,1754.560000,baseline,lora,180 +on5,0,0,24,0,0,4069,4320.000000,112,0,-1.000000,1783.840000,baseline,lora,180 +on7,0,0,24,0,0,4124,4320.000000,112,0,-1.000000,1776.800000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4319,4320.000000,113,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4301,4320.000000,113,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4016,4320.000000,113,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,0,0,4281,4320.000000,113,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,3839,4320.000000,113,0,-1.000000,1850.080000,baseline,lora,180 +on12,0,0,24,0,0,4201,4320.000000,113,0,-1.000000,1747.200000,baseline,lora,180 +on6,0,0,24,0,0,4205,4320.000000,113,0,-1.000000,1746.560000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,113,0,-1.000000,1983.840000,baseline,lora,180 +on4,0,0,24,0,0,4257,4320.000000,113,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,1,0,2348,4320.000000,113,0,50166.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4216,4320.000000,113,0,-1.000000,1744.800000,baseline,lora,180 +on7,0,0,24,0,0,4214,4320.000000,113,0,-1.000000,1745.120000,baseline,lora,180 +on11,0,0,24,0,0,4249,4320.000000,113,0,-1.000000,1739.680000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,114,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4068,4320.000000,114,0,-1.000000,1768.800000,baseline,lora,180 +on7,0,0,24,0,0,3982,4320.000000,114,0,-1.000000,1829.280000,baseline,lora,180 +on9,0,0,24,0,0,4242,4320.000000,114,0,-1.000000,1745.600000,baseline,lora,180 +on6,0,0,24,1,0,1080,4320.000000,114,0,22406.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4149,4320.000000,114,0,-1.000000,1755.680000,baseline,lora,180 +on12,0,0,24,0,0,4301,4320.000000,114,0,-1.000000,1736.480000,baseline,lora,180 +on11,0,0,24,0,0,4300,4320.000000,114,0,-1.000000,1731.360000,baseline,lora,180 +on10,0,0,24,0,0,4057,4320.000000,114,0,-1.000000,1824.640000,baseline,lora,180 +on3,0,0,24,1,0,2319,4320.000000,114,0,52350.000000,1811.200000,baseline,lora,180 +on1,0,0,24,1,0,2331,4320.000000,114,0,50396.000000,1782.400000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,114,0,-1.000000,2042.880000,baseline,lora,180 +on4,0,0,24,0,0,4208,4320.000000,114,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4303,4320.000000,115,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4256,4320.000000,115,0,-1.000000,1738.560000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,115,0,-1.000000,2000.000000,baseline,lora,180 +on10,0,0,24,0,0,4031,4320.000000,115,0,-1.000000,1774.880000,baseline,lora,180 +on12,0,0,24,0,0,4276,4320.000000,115,0,-1.000000,1735.200000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4176,4320.000000,115,0,-1.000000,1751.200000,baseline,lora,180 +on8,0,0,24,0,0,4185,4320.000000,115,0,-1.000000,1749.920000,baseline,lora,180 +on11,0,0,24,1,0,1588,4320.000000,115,0,36760.000000,1797.600000,baseline,lora,180 +on6,0,0,24,1,0,540,4320.000000,115,0,13832.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4023,4320.000000,115,0,-1.000000,1803.040000,baseline,lora,180 +on9,0,0,24,1,0,1627,4320.000000,115,0,32582.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4319,4320.000000,115,0,-1.000000,1756.320000,baseline,lora,180 +on4,0,0,24,0,0,4180,4320.000000,116,0,-1.000000,1769.120000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4181,4320.000000,116,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,116,0,-1.000000,2046.400000,baseline,lora,180 +on2,0,0,24,0,0,4045,4320.000000,116,0,-1.000000,1828.800000,baseline,lora,180 +on1,0,0,24,0,0,4258,4320.000000,116,0,-1.000000,1744.000000,baseline,lora,180 +on11,0,0,24,1,0,1807,4320.000000,116,0,39501.000000,1753.600000,baseline,lora,180 +on6,0,0,23,0,0,4137,4248.000000,116,0,-1.000000,1717.120000,baseline,lora,180 +on3,0,0,24,1,0,1964,4320.000000,116,0,46382.000000,1811.200000,baseline,lora,180 +on10,0,0,24,0,0,4204,4320.000000,116,0,-1.000000,1746.720000,baseline,lora,180 +on12,0,0,24,0,0,4203,4320.000000,116,0,-1.000000,1758.240000,baseline,lora,180 +on7,0,0,24,0,0,4066,4320.000000,116,0,-1.000000,1769.280000,baseline,lora,180 +on9,0,0,24,0,0,4081,4320.000000,116,0,-1.000000,1784.480000,baseline,lora,180 +on8,0,0,24,0,0,4225,4320.000000,117,0,-1.000000,1743.360000,baseline,lora,180 +on11,0,0,24,1,0,2685,4320.000000,117,0,55566.000000,1756.160000,baseline,lora,180 +on5,0,0,24,0,0,4286,4320.000000,117,0,-1.000000,1759.680000,baseline,lora,180 +on2,0,0,24,0,0,3965,4320.000000,117,0,-1.000000,1789.440000,baseline,lora,180 +on12,0,0,24,0,0,4251,4320.000000,117,0,-1.000000,1739.200000,baseline,lora,180 +on4,0,0,24,0,0,4295,4320.000000,117,0,-1.000000,1732.160000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,117,0,-1.000000,1916.320000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4081,4320.000000,117,0,-1.000000,1810.560000,baseline,lora,180 +on9,0,0,24,0,0,4318,4320.000000,117,0,-1.000000,1751.840000,baseline,lora,180 +on6,0,0,24,0,0,4153,4320.000000,117,0,-1.000000,1776.000000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4312,4320.000000,118,0,-1.000000,1729.440000,baseline,lora,180 +on6,0,0,24,0,0,4225,4320.000000,118,0,-1.000000,1743.360000,baseline,lora,180 +on4,0,0,24,0,0,4302,4320.000000,118,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4306,4320.000000,118,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,1,0,3967,4320.000000,118,0,82118.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4094,4320.000000,118,0,-1.000000,1768.320000,baseline,lora,180 +on9,0,0,24,1,0,540,4320.000000,118,0,12198.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4175,4320.000000,118,0,-1.000000,1751.360000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,118,0,-1.000000,1963.680000,baseline,lora,180 +on5,0,0,24,1,0,976,4320.000000,118,0,24644.000000,1782.400000,baseline,lora,180 +on12,0,0,24,1,0,1620,4320.000000,118,0,35640.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4108,4320.000000,118,0,-1.000000,1800.480000,baseline,lora,180 +on4,0,0,24,1,0,3217,4320.000000,119,0,75621.000000,1830.240000,baseline,lora,180 +on8,0,0,23,0,0,4089,4270.000000,119,0,-1.000000,1738.720000,baseline,lora,180 +on2,0,0,24,1,0,1379,4320.000000,119,0,29911.000000,1772.320000,baseline,lora,180 +on9,0,0,24,1,0,1080,4320.000000,119,0,23405.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,3925,4320.000000,119,0,-1.000000,1799.200000,baseline,lora,180 +on6,0,0,24,0,0,4180,4320.000000,119,0,-1.000000,1750.560000,baseline,lora,180 +on7,0,0,24,0,0,4003,4320.000000,119,0,-1.000000,1845.760000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,119,0,-1.000000,2111.840000,baseline,lora,180 +on11,0,0,24,0,0,4301,4320.000000,119,0,-1.000000,1740.160000,baseline,lora,180 +on10,0,0,24,0,0,4215,4320.000000,119,0,-1.000000,1744.960000,baseline,lora,180 +on3,0,0,24,0,0,4176,4320.000000,119,0,-1.000000,1784.480000,baseline,lora,180 +on1,0,0,24,0,0,4185,4320.000000,119,0,-1.000000,1749.760000,baseline,lora,180 +on2,0,0,24,0,0,4156,4320.000000,120,0,-1.000000,1785.600000,baseline,lora,180 +on11,0,0,24,0,0,4067,4320.000000,120,0,-1.000000,1800.800000,baseline,lora,180 +on10,0,0,24,1,0,1734,4320.000000,120,0,37693.000000,1765.440000,baseline,lora,180 +on5,0,0,24,0,0,4177,4320.000000,120,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4296,4320.000000,120,0,-1.000000,1756.960000,baseline,lora,180 +on7,0,0,24,1,0,2505,4320.000000,120,0,53482.000000,1761.440000,baseline,lora,180 +on9,0,0,24,0,0,4202,4320.000000,120,0,-1.000000,1775.840000,baseline,lora,180 +on3,0,0,24,0,0,4045,4320.000000,120,0,-1.000000,1804.960000,baseline,lora,180 +on1,0,0,24,1,0,1401,4320.000000,120,0,32014.000000,1773.760000,baseline,lora,180 +on6,0,0,24,1,0,2340,4320.000000,120,0,49169.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4301,4320.000000,120,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4098,4320.000000,120,0,-1.000000,1798.240000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,120,0,-1.000000,2051.520000,baseline,lora,180 +on8,0,0,24,0,0,4065,4320.000000,121,0,-1.000000,1774.880000,baseline,lora,180 +on11,0,0,24,0,0,4308,4320.000000,121,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,22,0,0,3818,4256.000000,121,0,-1.000000,1802.240000,baseline,lora,180 +on1,0,0,24,0,0,4292,4320.000000,121,0,-1.000000,1732.640000,baseline,lora,180 +on2,0,0,24,1,0,3924,4320.000000,121,0,80303.000000,1760.960000,baseline,lora,180 +on3,0,0,24,1,0,1980,4320.000000,121,0,39851.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,1,0,297,4320.000000,121,0,10504.000000,1782.400000,baseline,lora,180 +on9,0,0,24,0,0,4301,4320.000000,121,0,-1.000000,1748.480000,baseline,lora,180 +on5,0,0,24,0,0,4300,4320.000000,121,0,-1.000000,1731.360000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,121,0,-1.000000,1973.280000,baseline,lora,180 +on4,0,0,24,1,0,3785,4320.000000,121,0,76764.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4164,4320.000000,122,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,1,0,1620,4320.000000,122,0,33762.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,122,0,-1.000000,1997.600000,baseline,lora,180 +on7,0,0,24,0,0,4193,4320.000000,122,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,3778,4320.000000,122,0,-1.000000,1825.280000,baseline,lora,180 +on1,0,0,24,0,0,4249,4320.000000,122,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4079,4320.000000,122,0,-1.000000,1805.440000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,1,0,360,4320.000000,122,0,8198.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4115,4320.000000,122,0,-1.000000,1773.280000,baseline,lora,180 +on6,0,0,24,0,0,4314,4320.000000,122,0,-1.000000,1729.280000,baseline,lora,180 +on8,0,0,24,0,0,4277,4320.000000,123,0,-1.000000,1735.360000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4229,4320.000000,123,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,1,0,918,4320.000000,123,0,20999.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4288,4320.000000,123,0,-1.000000,1733.280000,baseline,lora,180 +on1,0,0,24,0,0,4250,4320.000000,123,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4154,4320.000000,123,0,-1.000000,1782.720000,baseline,lora,180 +on5,0,0,24,1,0,2355,4320.000000,123,0,48152.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4291,4320.000000,123,0,-1.000000,1732.800000,baseline,lora,180 +on4,0,0,24,1,0,3591,4320.000000,123,0,80442.000000,1827.520000,baseline,lora,180 +on10,0,0,24,1,0,1271,4320.000000,123,0,26934.000000,1753.600000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,123,0,-1.000000,1962.560000,baseline,lora,180 +on1,0,0,24,0,0,3931,4320.000000,124,0,-1.000000,1828.320000,baseline,lora,180 +on2,0,0,24,1,0,2006,4320.000000,124,0,44151.000000,1794.720000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,1,0,3776,4320.000000,124,0,77747.000000,1765.920000,baseline,lora,180 +on5,0,0,24,1,0,1800,4320.000000,124,0,37213.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4228,4320.000000,124,0,-1.000000,1742.880000,baseline,lora,180 +on9,0,0,24,0,0,3843,4320.000000,124,0,-1.000000,1837.600000,baseline,lora,180 +on6,0,0,24,0,0,4108,4320.000000,124,0,-1.000000,1786.240000,baseline,lora,180 +on8,0,0,24,1,0,0,4320.000000,124,0,3207.000000,1753.600000,baseline,lora,180 +on3,0,0,23,1,0,3397,4260.000000,124,0,74005.000000,1758.400000,baseline,lora,180 +on7,0,0,24,0,0,4308,4320.000000,124,0,-1.000000,1730.080000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,124,0,-1.000000,2151.360000,baseline,lora,180 +on4,0,0,23,0,0,3913,4236.000000,124,0,-1.000000,1769.760000,baseline,lora,180 +on6,0,0,24,1,0,3532,4320.000000,125,0,78358.000000,1795.040000,baseline,lora,180 +on2,0,0,24,0,0,4055,4320.000000,125,0,-1.000000,1774.240000,baseline,lora,180 +on8,0,0,24,0,0,3950,4320.000000,125,0,-1.000000,1802.240000,baseline,lora,180 +on12,0,0,24,0,0,4281,4320.000000,125,0,-1.000000,1760.000000,baseline,lora,180 +on3,0,0,24,0,0,4159,4320.000000,125,0,-1.000000,1777.120000,baseline,lora,180 +on7,0,0,24,1,0,1767,4320.000000,125,0,37752.000000,1801.440000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4228,4320.000000,125,0,-1.000000,1761.120000,baseline,lora,180 +on1,0,0,24,0,0,4263,4320.000000,125,0,-1.000000,1762.880000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4272,4320.000000,125,0,-1.000000,1736.000000,baseline,lora,180 +on4,0,0,24,0,0,4257,4320.000000,125,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,125,0,-1.000000,2004.640000,baseline,lora,180 +on12,0,0,24,0,0,4144,4320.000000,126,0,-1.000000,1756.480000,baseline,lora,180 +on9,0,0,24,1,0,1233,4320.000000,126,0,25788.000000,1773.600000,baseline,lora,180 +on11,0,0,24,1,0,2359,4320.000000,126,0,48438.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4277,4320.000000,126,0,-1.000000,1735.040000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,3958,4320.000000,126,0,-1.000000,1801.760000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,126,0,-1.000000,2042.080000,baseline,lora,180 +on6,0,0,24,1,0,1761,4320.000000,126,0,36442.000000,1761.120000,baseline,lora,180 +on3,0,0,24,1,0,370,4320.000000,126,0,8597.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4054,4320.000000,126,0,-1.000000,1781.280000,baseline,lora,180 +on5,0,0,24,0,0,4046,4320.000000,126,0,-1.000000,1807.840000,baseline,lora,180 +on4,0,0,24,0,0,4209,4320.000000,126,0,-1.000000,1745.920000,baseline,lora,180 +on4,0,0,24,1,0,0,4320.000000,127,0,1534.000000,1753.600000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,127,0,-1.000000,2046.720000,baseline,lora,180 +on9,0,0,24,0,0,4183,4320.000000,127,0,-1.000000,1772.160000,baseline,lora,180 +on12,0,0,24,0,0,3891,4320.000000,127,0,-1.000000,1845.920000,baseline,lora,180 +on8,0,0,24,1,0,1312,4320.000000,127,0,29021.000000,1774.240000,baseline,lora,180 +on11,0,0,24,0,0,4236,4320.000000,127,0,-1.000000,1771.520000,baseline,lora,180 +on10,0,0,24,0,0,4197,4320.000000,127,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,1,0,3832,4320.000000,127,0,79714.000000,1774.400000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,127,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,1617,4320.000000,127,0,32852.000000,1777.920000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,127,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4317,4320.000000,127,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,2755,4320.000000,127,0,58658.000000,1773.760000,baseline,lora,180 +on1,0,0,24,0,0,4236,4320.000000,128,0,-1.000000,1752.320000,baseline,lora,180 +on7,0,0,24,0,0,4106,4320.000000,128,0,-1.000000,1762.560000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4170,4320.000000,128,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4083,4320.000000,128,0,-1.000000,1766.560000,baseline,lora,180 +on8,0,0,24,0,0,4273,4320.000000,128,0,-1.000000,1735.680000,baseline,lora,180 +on5,0,0,24,1,0,3939,4320.000000,128,0,80491.000000,1757.760000,baseline,lora,180 +on4,0,0,24,1,0,2822,4320.000000,128,0,61075.000000,1789.920000,baseline,lora,180 +on9,0,0,24,0,0,4262,4320.000000,128,0,-1.000000,1765.760000,baseline,lora,180 +on10,0,0,24,0,0,4041,4320.000000,128,0,-1.000000,1782.720000,baseline,lora,180 +on2,0,0,24,1,0,903,4320.000000,128,0,19641.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,3955,4320.000000,128,0,-1.000000,1811.840000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,128,0,-1.000000,2051.200000,baseline,lora,180 +on1,0,0,24,0,0,3875,4320.000000,129,0,-1.000000,1808.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,129,0,-1.000000,2048.960000,baseline,lora,180 +on4,0,0,24,0,0,4209,4320.000000,129,0,-1.000000,1745.920000,baseline,lora,180 +on7,0,0,24,0,0,4213,4320.000000,129,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,1,0,3712,4320.000000,129,0,78400.000000,1774.560000,baseline,lora,180 +on11,0,0,24,0,0,4232,4320.000000,129,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4098,4320.000000,129,0,-1.000000,1778.560000,baseline,lora,180 +on3,0,0,24,0,0,4121,4320.000000,129,0,-1.000000,1779.360000,baseline,lora,180 +on10,0,0,24,1,0,16,4320.000000,129,0,2497.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,129,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4225,4320.000000,129,0,-1.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4285,4320.000000,129,0,-1.000000,1743.200000,baseline,lora,180 +on9,0,0,24,0,0,4036,4320.000000,129,0,-1.000000,1814.080000,baseline,lora,180 +on8,0,0,24,0,0,4187,4320.000000,130,0,-1.000000,1769.760000,baseline,lora,180 +on3,0,0,24,0,0,4177,4320.000000,130,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4279,4320.000000,130,0,-1.000000,1734.880000,baseline,lora,180 +on9,0,0,24,0,0,3946,4320.000000,130,0,-1.000000,1810.880000,baseline,lora,180 +on7,0,0,24,0,0,4185,4320.000000,130,0,-1.000000,1785.600000,baseline,lora,180 +on6,0,0,24,0,0,4216,4320.000000,130,0,-1.000000,1761.440000,baseline,lora,180 +on10,0,0,23,1,0,2318,4278.000000,130,0,47574.000000,1765.600000,baseline,lora,180 +on4,0,0,24,0,0,4126,4320.000000,130,0,-1.000000,1769.280000,baseline,lora,180 +on12,0,0,24,0,0,4267,4320.000000,130,0,-1.000000,1750.880000,baseline,lora,180 +on5,0,0,23,0,0,3972,4291.000000,130,0,-1.000000,1787.440000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,130,0,-1.000000,2085.440000,baseline,lora,180 +on1,0,0,24,0,0,4019,4320.000000,130,0,-1.000000,1810.880000,baseline,lora,180 +on2,0,0,24,0,0,4106,4320.000000,130,0,-1.000000,1770.720000,baseline,lora,180 +on4,0,0,24,0,0,4030,4320.000000,131,0,-1.000000,1802.880000,baseline,lora,180 +on7,0,0,24,0,0,4132,4320.000000,131,0,-1.000000,1764.160000,baseline,lora,180 +on1,0,0,24,0,0,4203,4320.000000,131,0,-1.000000,1760.480000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,131,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,131,0,-1.000000,1728.160000,baseline,lora,180 +on5,0,0,24,0,0,4287,4320.000000,131,0,-1.000000,1761.120000,baseline,lora,180 +on11,0,0,24,0,0,3980,4320.000000,131,0,-1.000000,1804.320000,baseline,lora,180 +on8,0,0,24,0,0,4109,4320.000000,131,0,-1.000000,1770.400000,baseline,lora,180 +on9,0,0,24,0,0,4199,4320.000000,131,0,-1.000000,1747.680000,baseline,lora,180 +on6,0,0,24,0,0,4078,4320.000000,131,0,-1.000000,1770.880000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,131,0,-1.000000,2000.960000,baseline,lora,180 +on2,0,0,24,0,0,4273,4320.000000,131,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4226,4320.000000,131,0,-1.000000,1756.960000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,132,0,-1.000000,2023.360000,baseline,lora,180 +on4,0,0,24,0,0,4063,4320.000000,132,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,0,0,4249,4320.000000,132,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4178,4320.000000,132,0,-1.000000,1750.880000,baseline,lora,180 +on11,0,0,24,0,0,4075,4320.000000,132,0,-1.000000,1767.520000,baseline,lora,180 +on7,0,0,24,0,0,4074,4320.000000,132,0,-1.000000,1771.040000,baseline,lora,180 +on2,0,0,24,0,0,4301,4320.000000,132,0,-1.000000,1733.440000,baseline,lora,180 +on12,0,0,23,0,0,4248,4248.000000,132,0,-1.000000,1699.200000,baseline,lora,180 +on6,0,0,24,1,0,2889,4320.000000,132,0,64222.000000,1793.600000,baseline,lora,180 +on10,0,0,23,0,0,3958,4224.000000,132,0,-1.000000,1747.520000,baseline,lora,180 +on1,0,0,24,0,0,4170,4320.000000,132,0,-1.000000,1767.840000,baseline,lora,180 +on3,0,0,24,0,0,4269,4320.000000,132,0,-1.000000,1754.080000,baseline,lora,180 +on8,0,0,24,0,0,4283,4320.000000,132,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4166,4320.000000,133,0,-1.000000,1752.960000,baseline,lora,180 +on10,0,0,24,0,0,4155,4320.000000,133,0,-1.000000,1785.120000,baseline,lora,180 +on5,0,0,24,0,0,3895,4320.000000,133,0,-1.000000,1817.280000,baseline,lora,180 +on8,0,0,24,0,0,4299,4320.000000,133,0,-1.000000,1731.520000,baseline,lora,180 +on7,0,0,24,1,0,360,4320.000000,133,0,7543.000000,1753.600000,baseline,lora,180 +on3,0,0,24,1,0,1440,4320.000000,133,0,29521.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,133,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4245,4320.000000,133,0,-1.000000,1740.160000,baseline,lora,180 +on6,0,0,24,0,0,3952,4320.000000,133,0,-1.000000,1808.160000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,133,0,-1.000000,2056.640000,baseline,lora,180 +on9,0,0,24,1,0,2728,4320.000000,133,0,57863.000000,1778.400000,baseline,lora,180 +on12,0,0,24,0,0,4162,4320.000000,133,0,-1.000000,1777.920000,baseline,lora,180 +on2,0,0,24,0,0,4285,4320.000000,133,0,-1.000000,1733.760000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4244,4320.000000,134,0,-1.000000,1740.320000,baseline,lora,180 +on1,0,0,24,0,0,4258,4320.000000,134,0,-1.000000,1741.440000,baseline,lora,180 +on11,0,0,24,0,0,3912,4320.000000,134,0,-1.000000,1836.320000,baseline,lora,180 +on6,0,0,24,0,0,4297,4320.000000,134,0,-1.000000,1733.440000,baseline,lora,180 +on2,0,0,24,0,0,4222,4320.000000,134,0,-1.000000,1743.840000,baseline,lora,180 +on9,0,0,24,0,0,3956,4320.000000,134,0,-1.000000,1786.720000,baseline,lora,180 +on5,0,0,24,0,0,4049,4320.000000,134,0,-1.000000,1799.040000,baseline,lora,180 +on3,0,0,24,0,0,4170,4320.000000,134,0,-1.000000,1752.160000,baseline,lora,180 +on12,0,0,24,0,0,3944,4320.000000,134,0,-1.000000,1812.000000,baseline,lora,180 +on8,0,0,24,0,0,4132,4320.000000,134,0,-1.000000,1767.680000,baseline,lora,180 +on4,0,0,24,1,0,1800,4320.000000,134,0,36540.000000,1753.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,134,0,-1.000000,2079.520000,baseline,lora,180 +on12,0,0,23,0,0,4000,4261.000000,135,0,-1.000000,1746.480000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,135,0,-1.000000,2099.360000,baseline,lora,180 +on6,0,0,24,1,0,2648,4320.000000,135,0,56567.000000,1765.120000,baseline,lora,180 +on11,0,0,24,0,0,4319,4320.000000,135,0,-1.000000,1728.320000,baseline,lora,180 +on3,0,0,24,0,0,4291,4320.000000,135,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,3980,4320.000000,135,0,-1.000000,1814.400000,baseline,lora,180 +on5,0,0,24,0,0,4043,4320.000000,135,0,-1.000000,1791.520000,baseline,lora,180 +on7,0,0,24,1,0,629,4320.000000,135,0,14596.000000,1768.320000,baseline,lora,180 +on10,0,0,24,1,0,2651,4320.000000,135,0,59334.000000,1793.760000,baseline,lora,180 +on1,0,0,24,0,0,4150,4320.000000,135,0,-1.000000,1777.440000,baseline,lora,180 +on8,0,0,24,0,0,4128,4320.000000,135,0,-1.000000,1765.920000,baseline,lora,180 +on9,0,0,24,0,0,4155,4320.000000,135,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,3918,4320.000000,136,0,-1.000000,1800.960000,baseline,lora,180 +on6,0,0,24,0,0,4203,4320.000000,136,0,-1.000000,1747.040000,baseline,lora,180 +on2,0,0,24,0,0,4183,4320.000000,136,0,-1.000000,1750.240000,baseline,lora,180 +on11,0,0,24,0,0,4315,4320.000000,136,0,-1.000000,1728.960000,baseline,lora,180 +on10,0,0,24,0,0,4092,4320.000000,136,0,-1.000000,1792.640000,baseline,lora,180 +on8,0,0,24,0,0,4149,4320.000000,136,0,-1.000000,1776.640000,baseline,lora,180 +on3,0,0,24,0,0,4289,4320.000000,136,0,-1.000000,1733.120000,baseline,lora,180 +on12,0,0,24,0,0,3992,4320.000000,136,0,-1.000000,1789.280000,baseline,lora,180 +on1,0,0,23,1,0,220,4253.000000,136,0,7374.000000,1726.800000,baseline,lora,180 +on4,0,0,24,1,0,2914,4320.000000,136,0,62501.000000,1777.760000,baseline,lora,180 +on9,0,0,24,0,0,4236,4320.000000,136,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4279,4320.000000,136,0,-1.000000,1734.720000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,136,0,-1.000000,2053.600000,baseline,lora,180 +on1,0,0,24,0,0,4196,4320.000000,137,0,-1.000000,1757.920000,baseline,lora,180 +on9,0,0,24,0,0,3870,4320.000000,137,0,-1.000000,1836.320000,baseline,lora,180 +on8,0,0,24,0,0,4181,4320.000000,137,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4193,4320.000000,137,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,3976,4320.000000,137,0,-1.000000,1792.000000,baseline,lora,180 +on3,0,0,24,0,0,4284,4320.000000,137,0,-1.000000,1756.640000,baseline,lora,180 +on5,0,0,24,0,0,4163,4320.000000,137,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,3969,4320.000000,137,0,-1.000000,1792.480000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,137,0,-1.000000,2134.560000,baseline,lora,180 +on11,0,0,24,0,0,4181,4320.000000,137,0,-1.000000,1782.240000,baseline,lora,180 +on12,0,0,24,0,0,4185,4320.000000,137,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4069,4320.000000,137,0,-1.000000,1795.680000,baseline,lora,180 +on2,0,0,24,1,0,1162,4320.000000,137,0,28578.000000,1811.200000,baseline,lora,180 +on10,0,0,24,0,0,4201,4320.000000,138,0,-1.000000,1747.360000,baseline,lora,180 +on12,0,0,24,0,0,4232,4320.000000,138,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4035,4320.000000,138,0,-1.000000,1816.480000,baseline,lora,180 +on5,0,0,24,1,0,1983,4320.000000,138,0,40839.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,4299,4320.000000,138,0,-1.000000,1731.520000,baseline,lora,180 +on8,0,0,24,0,0,3975,4320.000000,138,0,-1.000000,1818.240000,baseline,lora,180 +on4,0,0,24,0,0,4078,4320.000000,138,0,-1.000000,1786.880000,baseline,lora,180 +on3,0,0,24,0,0,4139,4320.000000,138,0,-1.000000,1784.960000,baseline,lora,180 +on9,0,0,24,0,0,4243,4320.000000,138,0,-1.000000,1740.480000,baseline,lora,180 +on2,0,0,24,0,0,4149,4320.000000,138,0,-1.000000,1755.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,138,0,-1.000000,2045.760000,baseline,lora,180 +on11,0,0,24,0,0,4155,4320.000000,138,0,-1.000000,1779.680000,baseline,lora,180 +on6,0,0,24,0,0,4222,4320.000000,138,0,-1.000000,1743.840000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,139,0,-1.000000,2057.920000,baseline,lora,180 +on3,0,0,24,1,0,4116,4320.000000,139,0,83499.000000,1757.600000,baseline,lora,180 +on1,0,0,24,0,0,4098,4320.000000,139,0,-1.000000,1785.280000,baseline,lora,180 +on12,0,0,24,0,0,4162,4320.000000,139,0,-1.000000,1771.040000,baseline,lora,180 +on7,0,0,24,0,0,4094,4320.000000,139,0,-1.000000,1768.320000,baseline,lora,180 +on2,0,0,24,0,0,4258,4320.000000,139,0,-1.000000,1738.080000,baseline,lora,180 +on9,0,0,24,1,0,2737,4320.000000,139,0,58266.000000,1797.600000,baseline,lora,180 +on5,0,0,24,0,0,3868,4320.000000,139,0,-1.000000,1829.280000,baseline,lora,180 +on10,0,0,24,1,0,3833,4320.000000,139,0,79991.000000,1775.680000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4197,4320.000000,139,0,-1.000000,1755.360000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4094,4320.000000,140,0,-1.000000,1796.000000,baseline,lora,180 +on10,0,0,24,0,0,4282,4320.000000,140,0,-1.000000,1734.400000,baseline,lora,180 +on12,0,0,24,0,0,4318,4320.000000,140,0,-1.000000,1728.480000,baseline,lora,180 +on8,0,0,24,0,0,4217,4320.000000,140,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,1,0,2926,4320.000000,140,0,63333.000000,1776.480000,baseline,lora,180 +on11,0,0,24,0,0,4274,4320.000000,140,0,-1.000000,1735.520000,baseline,lora,180 +on2,0,0,24,0,0,4188,4320.000000,140,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,24,0,0,4170,4320.000000,140,0,-1.000000,1764.000000,baseline,lora,180 +on3,0,0,24,0,0,3950,4320.000000,140,0,-1.000000,1787.680000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,140,0,-1.000000,2031.040000,baseline,lora,180 +on6,0,0,24,0,0,4229,4320.000000,140,0,-1.000000,1742.720000,baseline,lora,180 +on9,0,0,24,0,0,4216,4320.000000,140,0,-1.000000,1744.960000,baseline,lora,180 +on4,0,0,24,0,0,4011,4320.000000,140,0,-1.000000,1777.920000,baseline,lora,180 +on6,0,0,24,0,0,4258,4320.000000,141,0,-1.000000,1738.080000,baseline,lora,180 +on3,0,0,24,0,0,4183,4320.000000,141,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4272,4320.000000,141,0,-1.000000,1735.840000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4200,4320.000000,141,0,-1.000000,1747.360000,baseline,lora,180 +on7,0,0,24,0,0,4250,4320.000000,141,0,-1.000000,1739.360000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4253,4320.000000,141,0,-1.000000,1785.600000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,141,0,-1.000000,1928.800000,baseline,lora,180 +on8,0,0,24,0,0,4109,4320.000000,141,0,-1.000000,1803.680000,baseline,lora,180 +on5,0,0,24,0,0,4257,4320.000000,141,0,-1.000000,1738.240000,baseline,lora,180 +on4,0,0,24,0,0,4130,4320.000000,141,0,-1.000000,1758.720000,baseline,lora,180 +on11,0,0,24,1,0,247,4320.000000,141,0,10199.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,4265,4320.000000,142,0,-1.000000,1749.920000,baseline,lora,180 +on6,0,0,24,0,0,4034,4320.000000,142,0,-1.000000,1780.160000,baseline,lora,180 +on12,0,0,24,0,0,4294,4320.000000,142,0,-1.000000,1732.320000,baseline,lora,180 +on2,0,0,24,0,0,4299,4320.000000,142,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4187,4320.000000,142,0,-1.000000,1780.000000,baseline,lora,180 +on8,0,0,24,0,0,4165,4320.000000,142,0,-1.000000,1752.960000,baseline,lora,180 +on3,0,0,24,0,0,4034,4320.000000,142,0,-1.000000,1808.800000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,1,0,900,4320.000000,142,0,20269.000000,1753.600000,baseline,lora,180 +on5,0,0,24,1,0,2944,4320.000000,142,0,67600.000000,1826.080000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,142,0,-1.000000,1983.360000,baseline,lora,180 +on1,0,0,24,0,0,4186,4320.000000,143,0,-1.000000,1764.960000,baseline,lora,180 +on7,0,0,24,0,0,4086,4320.000000,143,0,-1.000000,1770.400000,baseline,lora,180 +on10,0,0,24,0,0,4062,4320.000000,143,0,-1.000000,1790.880000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4158,4320.000000,143,0,-1.000000,1754.400000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,143,0,-1.000000,2020.320000,baseline,lora,180 +on2,0,0,24,0,0,4216,4320.000000,143,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,1,0,1713,4320.000000,143,0,37550.000000,1779.040000,baseline,lora,180 +on6,0,0,24,0,0,4167,4320.000000,143,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4117,4320.000000,143,0,-1.000000,1788.000000,baseline,lora,180 +on12,0,0,24,0,0,4173,4320.000000,143,0,-1.000000,1755.200000,baseline,lora,180 +on5,0,0,24,1,0,3071,4320.000000,143,0,61589.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4273,4320.000000,144,0,-1.000000,1745.600000,baseline,lora,180 +on4,0,0,24,0,0,4253,4320.000000,144,0,-1.000000,1738.880000,baseline,lora,180 +on8,0,0,24,0,0,3923,4320.000000,144,0,-1.000000,1800.000000,baseline,lora,180 +on12,0,0,24,0,0,4279,4320.000000,144,0,-1.000000,1737.760000,baseline,lora,180 +on9,0,0,24,0,0,4273,4320.000000,144,0,-1.000000,1753.760000,baseline,lora,180 +on3,0,0,24,0,0,4249,4320.000000,144,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,144,0,-1.000000,1985.120000,baseline,lora,180 +on10,0,0,24,0,0,4141,4320.000000,144,0,-1.000000,1777.600000,baseline,lora,180 +on7,0,0,24,1,0,1709,4320.000000,144,0,38708.000000,1768.320000,baseline,lora,180 +on5,0,0,24,0,0,4051,4320.000000,144,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,144,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4249,4320.000000,144,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4170,4320.000000,144,0,-1.000000,1768.160000,baseline,lora,180 +on10,0,0,24,0,0,3811,4320.000000,145,0,-1.000000,1878.080000,baseline,lora,180 +on3,0,0,24,0,0,4144,4320.000000,145,0,-1.000000,1780.480000,baseline,lora,180 +on12,0,0,24,0,0,4059,4320.000000,145,0,-1.000000,1770.400000,baseline,lora,180 +on8,0,0,24,0,0,4180,4320.000000,145,0,-1.000000,1755.040000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,145,0,-1.000000,2176.160000,baseline,lora,180 +on5,0,0,24,0,0,3991,4320.000000,145,0,-1.000000,1823.840000,baseline,lora,180 +on1,0,0,24,0,0,4193,4320.000000,145,0,-1.000000,1814.400000,baseline,lora,180 +on6,0,0,24,0,0,4162,4320.000000,145,0,-1.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4046,4320.000000,145,0,-1.000000,1773.120000,baseline,lora,180 +on7,0,0,24,0,0,4180,4320.000000,145,0,-1.000000,1768.800000,baseline,lora,180 +on11,0,0,24,1,0,1214,4320.000000,145,0,25601.000000,1763.200000,baseline,lora,180 +on9,0,0,24,1,0,3028,4320.000000,145,0,61720.000000,1758.880000,baseline,lora,180 +on2,0,0,24,0,0,4077,4320.000000,145,0,-1.000000,1778.400000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,146,0,-1.000000,1966.080000,baseline,lora,180 +on5,0,0,24,0,0,4127,4320.000000,146,0,-1.000000,1809.760000,baseline,lora,180 +on4,0,0,24,0,0,4246,4320.000000,146,0,-1.000000,1740.000000,baseline,lora,180 +on10,0,0,24,0,0,4165,4320.000000,146,0,-1.000000,1756.160000,baseline,lora,180 +on6,0,0,24,0,0,4272,4320.000000,146,0,-1.000000,1757.920000,baseline,lora,180 +on7,0,0,24,0,0,4162,4320.000000,146,0,-1.000000,1753.440000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,146,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,1080,4320.000000,146,0,24174.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4207,4320.000000,146,0,-1.000000,1758.880000,baseline,lora,180 +on9,0,0,24,0,0,4123,4320.000000,146,0,-1.000000,1768.960000,baseline,lora,180 +on3,0,0,24,0,0,4190,4320.000000,146,0,-1.000000,1754.240000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,146,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4079,4320.000000,146,0,-1.000000,1766.880000,baseline,lora,180 +on4,0,0,24,1,0,2857,4320.000000,147,0,58936.000000,1758.880000,baseline,lora,180 +on5,0,0,24,0,0,4176,4320.000000,147,0,-1.000000,1751.200000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4258,4320.000000,147,0,-1.000000,1738.080000,baseline,lora,180 +on1,0,0,24,0,0,4243,4320.000000,147,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4160,4320.000000,147,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,3997,4320.000000,147,0,-1.000000,1798.720000,baseline,lora,180 +on6,0,0,24,0,0,4313,4320.000000,147,0,-1.000000,1729.280000,baseline,lora,180 +on7,0,0,24,0,0,4072,4320.000000,147,0,-1.000000,1778.560000,baseline,lora,180 +on2,0,0,24,1,0,1680,4320.000000,147,0,36979.000000,1811.200000,baseline,lora,180 +on8,0,0,24,0,0,4300,4320.000000,147,0,-1.000000,1731.360000,baseline,lora,180 +on3,0,0,24,0,0,4193,4320.000000,147,0,-1.000000,1760.000000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,147,0,-1.000000,1994.880000,baseline,lora,180 +on1,0,0,24,0,0,4246,4320.000000,148,0,-1.000000,1740.160000,baseline,lora,180 +on11,0,0,24,0,0,4193,4320.000000,148,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,1,0,1752,4320.000000,148,0,38916.000000,1763.200000,baseline,lora,180 +on10,0,0,24,0,0,4110,4320.000000,148,0,-1.000000,1797.760000,baseline,lora,180 +on8,0,0,24,0,0,4181,4320.000000,148,0,-1.000000,1750.560000,baseline,lora,180 +on3,0,0,24,0,0,4319,4320.000000,148,0,-1.000000,1730.560000,baseline,lora,180 +on6,0,0,24,1,0,2833,4320.000000,148,0,59217.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4120,4320.000000,148,0,-1.000000,1765.600000,baseline,lora,180 +on7,0,0,24,1,0,3214,4320.000000,148,0,65163.000000,1760.160000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,148,0,-1.000000,2028.640000,baseline,lora,180 +on12,0,0,24,0,0,4134,4320.000000,148,0,-1.000000,1781.120000,baseline,lora,180 +on9,0,0,24,0,0,4302,4320.000000,148,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4058,4320.000000,148,0,-1.000000,1770.240000,baseline,lora,180 +on4,0,0,24,0,0,4161,4320.000000,149,0,-1.000000,1780.960000,baseline,lora,180 +on2,0,0,24,0,0,4200,4320.000000,149,0,-1.000000,1747.360000,baseline,lora,180 +on6,0,0,24,0,0,4220,4320.000000,149,0,-1.000000,1744.320000,baseline,lora,180 +on12,0,0,24,0,0,4317,4320.000000,149,0,-1.000000,1756.800000,baseline,lora,180 +on1,0,0,23,0,0,4223,4290.000000,149,0,-1.000000,1726.880000,baseline,lora,180 +on3,0,0,24,0,0,3833,4320.000000,149,0,-1.000000,1815.840000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,149,0,-1.000000,2028.800000,baseline,lora,180 +on10,0,0,24,0,0,4118,4320.000000,149,0,-1.000000,1789.120000,baseline,lora,180 +on7,0,0,24,1,0,18,4320.000000,149,0,1901.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,3939,4320.000000,149,0,-1.000000,1811.520000,baseline,lora,180 +on5,0,0,24,0,0,4276,4320.000000,149,0,-1.000000,1743.840000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4186,4320.000000,149,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4316,4320.000000,150,0,-1.000000,1728.800000,baseline,lora,180 +on10,0,0,24,0,0,4127,4320.000000,150,0,-1.000000,1779.520000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,1,0,19,4320.000000,150,0,849.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,3941,4320.000000,150,0,-1.000000,1820.480000,baseline,lora,180 +on6,0,0,24,0,0,4101,4320.000000,150,0,-1.000000,1763.520000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,150,0,-1.000000,1997.440000,baseline,lora,180 +on8,0,0,24,0,0,4163,4320.000000,150,0,-1.000000,1772.960000,baseline,lora,180 +on12,0,0,24,0,0,4200,4320.000000,150,0,-1.000000,1752.480000,baseline,lora,180 +on11,0,0,24,1,0,1631,4320.000000,150,0,35451.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4262,4320.000000,150,0,-1.000000,1737.440000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4102,4320.000000,150,0,-1.000000,1776.000000,baseline,lora,180 +on7,0,0,24,1,0,2276,4320.000000,151,0,48765.000000,1783.360000,baseline,lora,180 +on8,0,0,24,0,0,4184,4320.000000,151,0,-1.000000,1749.920000,baseline,lora,180 +on11,0,0,24,0,0,4175,4320.000000,151,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4086,4320.000000,151,0,-1.000000,1780.320000,baseline,lora,180 +on3,0,0,24,0,0,4274,4320.000000,151,0,-1.000000,1735.520000,baseline,lora,180 +on5,0,0,24,0,0,4080,4320.000000,151,0,-1.000000,1766.720000,baseline,lora,180 +on2,0,0,24,0,0,4269,4320.000000,151,0,-1.000000,1736.320000,baseline,lora,180 +on10,0,0,24,0,0,3855,4320.000000,151,0,-1.000000,1846.720000,baseline,lora,180 +on9,0,0,24,0,0,4036,4320.000000,151,0,-1.000000,1801.920000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,151,0,-1.000000,2140.800000,baseline,lora,180 +on12,0,0,24,0,0,3923,4320.000000,151,0,-1.000000,1799.200000,baseline,lora,180 +on1,0,0,24,0,0,4100,4320.000000,151,0,-1.000000,1793.120000,baseline,lora,180 +on4,0,0,24,0,0,4211,4320.000000,151,0,-1.000000,1785.760000,baseline,lora,180 +on1,0,0,24,0,0,4161,4320.000000,152,0,-1.000000,1771.680000,baseline,lora,180 +on9,0,0,24,0,0,4251,4320.000000,152,0,-1.000000,1754.880000,baseline,lora,180 +on8,0,0,24,0,0,4009,4320.000000,152,0,-1.000000,1784.320000,baseline,lora,180 +on12,0,0,24,1,0,3065,4320.000000,152,0,61515.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4226,4320.000000,152,0,-1.000000,1743.200000,baseline,lora,180 +on7,0,0,24,0,0,4123,4320.000000,152,0,-1.000000,1803.360000,baseline,lora,180 +on2,0,0,24,0,0,4046,4320.000000,152,0,-1.000000,1811.200000,baseline,lora,180 +on5,0,0,24,0,0,4224,4320.000000,152,0,-1.000000,1756.800000,baseline,lora,180 +on3,0,0,24,0,0,4089,4320.000000,152,0,-1.000000,1787.840000,baseline,lora,180 +on4,0,0,24,0,0,4147,4320.000000,152,0,-1.000000,1778.880000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,152,0,-1.000000,2013.440000,baseline,lora,180 +on1,0,0,24,0,0,4145,4320.000000,153,0,-1.000000,1764.800000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,153,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4258,4320.000000,153,0,-1.000000,1738.080000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,153,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,23,0,0,4010,4276.000000,153,0,-1.000000,1775.360000,baseline,lora,180 +on7,0,0,24,1,0,2891,4320.000000,153,0,60295.000000,1753.600000,baseline,lora,180 +on4,0,0,24,1,0,1951,4320.000000,153,0,45827.000000,1834.560000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,153,0,-1.000000,2066.720000,baseline,lora,180 +on6,0,0,24,1,0,4140,4320.000000,153,0,84645.000000,1753.760000,baseline,lora,180 +on2,0,0,24,0,0,3870,4320.000000,153,0,-1.000000,1873.440000,baseline,lora,180 +on5,0,0,24,0,0,4088,4320.000000,153,0,-1.000000,1790.560000,baseline,lora,180 +on12,0,0,24,0,0,4247,4320.000000,153,0,-1.000000,1740.000000,baseline,lora,180 +on3,0,0,24,0,0,4173,4320.000000,153,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4080,4320.000000,154,0,-1.000000,1796.160000,baseline,lora,180 +on5,0,0,24,0,0,3944,4320.000000,154,0,-1.000000,1810.880000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4096,4320.000000,154,0,-1.000000,1817.280000,baseline,lora,180 +on2,0,0,24,0,0,4229,4320.000000,154,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4246,4320.000000,154,0,-1.000000,1740.000000,baseline,lora,180 +on3,0,0,24,0,0,4268,4320.000000,154,0,-1.000000,1736.480000,baseline,lora,180 +on4,0,0,24,0,0,4247,4320.000000,154,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4070,4320.000000,154,0,-1.000000,1799.520000,baseline,lora,180 +on8,0,0,24,1,0,3616,4320.000000,154,0,73556.000000,1782.400000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,154,0,-1.000000,1996.960000,baseline,lora,180 +on6,0,0,24,0,0,4205,4320.000000,154,0,-1.000000,1769.760000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,155,0,-1.000000,1985.440000,baseline,lora,180 +on10,0,0,24,0,0,4088,4320.000000,155,0,-1.000000,1796.640000,baseline,lora,180 +on2,0,0,24,0,0,4218,4320.000000,155,0,-1.000000,1744.480000,baseline,lora,180 +on3,0,0,24,0,0,4233,4320.000000,155,0,-1.000000,1742.240000,baseline,lora,180 +on6,0,0,24,0,0,4168,4320.000000,155,0,-1.000000,1765.120000,baseline,lora,180 +on1,0,0,24,0,0,4312,4320.000000,155,0,-1.000000,1756.800000,baseline,lora,180 +on9,0,0,24,0,0,4190,4320.000000,155,0,-1.000000,1748.960000,baseline,lora,180 +on12,0,0,24,1,0,912,4320.000000,155,0,19129.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4163,4320.000000,155,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4300,4320.000000,155,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4094,4320.000000,155,0,-1.000000,1782.240000,baseline,lora,180 +on11,0,0,24,1,0,737,4320.000000,155,0,17903.000000,1753.760000,baseline,lora,180 +on8,0,0,23,0,0,4111,4269.000000,155,0,-1.000000,1760.880000,baseline,lora,180 +on11,0,0,24,1,0,3941,4320.000000,156,0,79588.000000,1768.320000,baseline,lora,180 +on1,0,0,24,0,0,4301,4320.000000,156,0,-1.000000,1752.160000,baseline,lora,180 +on7,0,0,24,1,0,194,4320.000000,156,0,6157.000000,1753.600000,baseline,lora,180 +on9,0,0,24,1,0,1800,4320.000000,156,0,36921.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4301,4320.000000,156,0,-1.000000,1740.320000,baseline,lora,180 +on3,0,0,24,0,0,4118,4320.000000,156,0,-1.000000,1774.560000,baseline,lora,180 +on4,0,0,24,1,0,1,4320.000000,156,0,3450.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4072,4320.000000,156,0,-1.000000,1775.520000,baseline,lora,180 +on8,0,0,24,0,0,4016,4320.000000,156,0,-1.000000,1777.120000,baseline,lora,180 +on5,0,0,24,1,0,2067,4320.000000,156,0,45979.000000,1811.840000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,6,24,0,0,0,4320.000000,156,0,-1.000000,2031.040000,baseline,lora,180 +on6,0,0,24,1,0,2340,4320.000000,156,0,48280.000000,1753.600000,baseline,lora,180 +on2,0,0,24,0,0,4031,4320.000000,157,0,-1.000000,1786.080000,baseline,lora,180 +on11,0,0,24,0,0,4304,4320.000000,157,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,3990,4320.000000,157,0,-1.000000,1794.880000,baseline,lora,180 +on6,0,0,24,0,0,4192,4320.000000,157,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4246,4320.000000,157,0,-1.000000,1756.000000,baseline,lora,180 +on5,0,0,24,0,0,4197,4320.000000,157,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4138,4320.000000,157,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4277,4320.000000,157,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4022,4320.000000,157,0,-1.000000,1789.280000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,157,0,-1.000000,1968.000000,baseline,lora,180 +on10,0,0,24,0,0,4185,4320.000000,158,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4296,4320.000000,158,0,-1.000000,1732.000000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4138,4320.000000,158,0,-1.000000,1757.440000,baseline,lora,180 +on11,0,0,24,0,0,4291,4320.000000,158,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,3969,4320.000000,158,0,-1.000000,1841.760000,baseline,lora,180 +on2,0,0,24,0,0,4203,4320.000000,158,0,-1.000000,1763.040000,baseline,lora,180 +on6,0,0,24,1,0,2520,4320.000000,158,0,50866.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,158,0,-1.000000,1981.280000,baseline,lora,180 +on9,0,0,24,1,0,688,4320.000000,158,0,17617.000000,1782.400000,baseline,lora,180 +on7,0,0,24,0,0,3943,4320.000000,158,0,-1.000000,1788.800000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4192,4320.000000,159,0,-1.000000,1783.200000,baseline,lora,180 +on10,0,0,24,0,0,4168,4320.000000,159,0,-1.000000,1752.640000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,159,0,-1.000000,2019.360000,baseline,lora,180 +on6,0,0,24,0,0,4245,4320.000000,159,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4248,4320.000000,159,0,-1.000000,1740.000000,baseline,lora,180 +on7,0,0,24,0,0,4286,4320.000000,159,0,-1.000000,1734.240000,baseline,lora,180 +on12,0,0,24,0,0,4011,4320.000000,159,0,-1.000000,1777.920000,baseline,lora,180 +on9,0,0,24,0,0,4254,4320.000000,159,0,-1.000000,1765.920000,baseline,lora,180 +on1,0,0,24,0,0,4034,4320.000000,159,0,-1.000000,1774.080000,baseline,lora,180 +on5,0,0,24,0,0,4189,4320.000000,159,0,-1.000000,1774.720000,baseline,lora,180 +on11,0,0,24,0,0,4285,4320.000000,159,0,-1.000000,1733.760000,baseline,lora,180 +on3,0,0,24,1,0,3246,4320.000000,159,0,71201.000000,1823.680000,baseline,lora,180 +on4,0,0,24,1,0,730,4320.000000,159,0,16440.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4279,4320.000000,160,0,-1.000000,1734.720000,baseline,lora,180 +on2,0,0,24,1,0,849,4320.000000,160,0,20579.000000,1764.000000,baseline,lora,180 +on11,0,0,24,0,0,4206,4320.000000,160,0,-1.000000,1758.240000,baseline,lora,180 +on6,0,0,24,1,0,10,4320.000000,160,0,467.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4271,4320.000000,160,0,-1.000000,1736.000000,baseline,lora,180 +on12,0,0,24,0,0,4212,4320.000000,160,0,-1.000000,1785.600000,baseline,lora,180 +on8,0,0,24,0,0,4069,4320.000000,160,0,-1.000000,1787.520000,baseline,lora,180 +on5,0,0,24,0,0,4064,4320.000000,160,0,-1.000000,1769.280000,baseline,lora,180 +on4,0,0,24,0,0,4301,4320.000000,160,0,-1.000000,1752.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,160,0,-1.000000,2056.000000,baseline,lora,180 +on3,0,0,24,0,0,4181,4320.000000,160,0,-1.000000,1750.720000,baseline,lora,180 +on1,0,0,24,0,0,4053,4320.000000,160,0,-1.000000,1781.440000,baseline,lora,180 +on7,0,0,24,0,0,3919,4320.000000,160,0,-1.000000,1807.200000,baseline,lora,180 +on11,0,0,24,0,0,4070,4320.000000,161,0,-1.000000,1785.760000,baseline,lora,180 +on2,0,0,24,0,0,4184,4320.000000,161,0,-1.000000,1775.520000,baseline,lora,180 +on8,0,0,24,0,0,4236,4320.000000,161,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4316,4320.000000,161,0,-1.000000,1728.800000,baseline,lora,180 +on6,0,0,24,0,0,4247,4320.000000,161,0,-1.000000,1740.000000,baseline,lora,180 +on5,0,0,24,1,0,727,4320.000000,161,0,17537.000000,1753.600000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,161,0,-1.000000,1977.600000,baseline,lora,180 +on9,0,0,24,0,0,4252,4320.000000,161,0,-1.000000,1739.040000,baseline,lora,180 +on1,0,0,24,0,0,3971,4320.000000,161,0,-1.000000,1790.880000,baseline,lora,180 +on12,0,0,24,1,0,3,4320.000000,161,0,2135.000000,1753.600000,baseline,lora,180 +on4,0,0,23,0,0,4173,4192.000000,161,0,-1.000000,1689.120000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,161,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4079,4320.000000,161,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4066,4320.000000,162,0,-1.000000,1785.760000,baseline,lora,180 +on12,0,0,24,0,0,4202,4320.000000,162,0,-1.000000,1768.960000,baseline,lora,180 +on5,0,0,24,0,0,4224,4320.000000,162,0,-1.000000,1743.520000,baseline,lora,180 +on8,0,0,24,0,0,4223,4320.000000,162,0,-1.000000,1756.800000,baseline,lora,180 +on7,0,0,24,0,0,4220,4320.000000,162,0,-1.000000,1785.600000,baseline,lora,180 +on3,0,0,24,0,0,4308,4320.000000,162,0,-1.000000,1733.120000,baseline,lora,180 +on4,0,0,24,1,0,2131,4320.000000,162,0,50401.000000,1793.920000,baseline,lora,180 +on2,0,0,24,0,0,4099,4320.000000,162,0,-1.000000,1763.680000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,162,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4160,4320.000000,162,0,-1.000000,1754.240000,baseline,lora,180 +on11,0,0,24,1,0,2708,4320.000000,162,0,63912.000000,1825.280000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,162,0,-1.000000,2107.360000,baseline,lora,180 +on10,0,0,24,1,0,3892,4320.000000,162,0,86383.000000,1820.000000,baseline,lora,180 +on1,0,0,24,0,0,4184,4320.000000,163,0,-1.000000,1749.920000,baseline,lora,180 +on8,0,0,23,0,0,4280,4280.000000,163,0,-1.000000,1712.000000,baseline,lora,180 +on2,0,0,24,0,0,4013,4320.000000,163,0,-1.000000,1781.600000,baseline,lora,180 +on4,0,0,24,0,0,4050,4320.000000,163,0,-1.000000,1771.520000,baseline,lora,180 +on3,0,0,24,0,0,4109,4320.000000,163,0,-1.000000,1791.840000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,163,0,-1.000000,2076.160000,baseline,lora,180 +on11,0,0,24,0,0,4232,4320.000000,163,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,3949,4320.000000,163,0,-1.000000,1807.520000,baseline,lora,180 +on9,0,0,24,0,0,3974,4320.000000,163,0,-1.000000,1796.320000,baseline,lora,180 +on12,0,0,24,0,0,4268,4320.000000,163,0,-1.000000,1743.200000,baseline,lora,180 +on10,0,0,24,0,0,4256,4320.000000,163,0,-1.000000,1738.560000,baseline,lora,180 +on6,0,0,24,1,0,1086,4320.000000,163,0,23639.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4170,4320.000000,163,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,1,0,580,4320.000000,164,0,17970.000000,1776.160000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,164,0,-1.000000,2069.600000,baseline,lora,180 +on11,0,0,24,0,0,4122,4320.000000,164,0,-1.000000,1783.680000,baseline,lora,180 +on9,0,0,24,1,0,771,4320.000000,164,0,19653.000000,1782.400000,baseline,lora,180 +on2,0,0,24,1,0,540,4320.000000,164,0,11454.000000,1753.600000,baseline,lora,180 +on8,0,0,24,0,0,4292,4320.000000,164,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,3297,4320.000000,164,0,70667.000000,1792.480000,baseline,lora,180 +on3,0,0,24,0,0,4211,4320.000000,164,0,-1.000000,1745.600000,baseline,lora,180 +on10,0,0,24,0,0,4266,4320.000000,164,0,-1.000000,1768.480000,baseline,lora,180 +on5,0,0,24,1,0,1260,4320.000000,164,0,26838.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4158,4320.000000,164,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,4059,4320.000000,164,0,-1.000000,1786.560000,baseline,lora,180 +on12,0,0,24,0,0,4220,4320.000000,164,0,-1.000000,1760.000000,baseline,lora,180 +on3,0,0,24,0,0,4233,4320.000000,165,0,-1.000000,1742.240000,baseline,lora,180 +on9,0,0,24,0,0,4199,4320.000000,165,0,-1.000000,1747.680000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,165,0,-1.000000,1968.640000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4143,4320.000000,165,0,-1.000000,1775.680000,baseline,lora,180 +on10,0,0,24,0,0,4031,4320.000000,165,0,-1.000000,1780.000000,baseline,lora,180 +on7,0,0,24,0,0,4316,4320.000000,165,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4280,4320.000000,165,0,-1.000000,1743.840000,baseline,lora,180 +on8,0,0,24,0,0,4207,4320.000000,165,0,-1.000000,1769.600000,baseline,lora,180 +on4,0,0,24,0,0,4305,4320.000000,165,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,1,0,2520,4320.000000,165,0,52985.000000,1753.600000,baseline,lora,180 +on11,0,0,24,1,0,3288,4320.000000,165,0,75673.000000,1827.840000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,1,0,2804,4320.000000,166,0,60730.000000,1781.280000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,166,0,-1.000000,2058.080000,baseline,lora,180 +on11,0,0,24,0,0,4319,4320.000000,166,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,3878,4320.000000,166,0,-1.000000,1831.840000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4270,4320.000000,166,0,-1.000000,1736.160000,baseline,lora,180 +on6,0,0,24,0,0,4229,4320.000000,166,0,-1.000000,1751.840000,baseline,lora,180 +on12,0,0,24,0,0,4273,4320.000000,166,0,-1.000000,1761.280000,baseline,lora,180 +on7,0,0,24,0,0,4107,4320.000000,166,0,-1.000000,1772.320000,baseline,lora,180 +on10,0,0,24,1,0,2019,4320.000000,166,0,43941.000000,1776.320000,baseline,lora,180 +on8,0,0,24,0,0,4106,4320.000000,166,0,-1.000000,1762.560000,baseline,lora,180 +on4,0,0,24,1,0,912,4320.000000,166,0,21517.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4037,4320.000000,166,0,-1.000000,1784.320000,baseline,lora,180 +on3,0,0,23,0,0,4172,4310.000000,167,0,-1.000000,1758.720000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4072,4320.000000,167,0,-1.000000,1816.960000,baseline,lora,180 +on11,0,0,24,0,0,4200,4320.000000,167,0,-1.000000,1747.360000,baseline,lora,180 +on4,0,0,24,0,0,4049,4320.000000,167,0,-1.000000,1805.920000,baseline,lora,180 +on8,0,0,24,0,0,4306,4320.000000,167,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,23,0,0,4197,4268.000000,167,0,-1.000000,1764.800000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,1,0,3727,4320.000000,167,0,79112.000000,1764.320000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,167,0,-1.000000,1954.400000,baseline,lora,180 +on6,0,0,24,0,0,4159,4320.000000,167,0,-1.000000,1796.640000,baseline,lora,180 +on2,0,0,24,0,0,4174,4320.000000,167,0,-1.000000,1751.680000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,168,0,-1.000000,2121.280000,baseline,lora,180 +on5,0,0,24,1,0,2895,4320.000000,168,0,64178.000000,1795.200000,baseline,lora,180 +on1,0,0,24,0,0,3851,4320.000000,168,0,-1.000000,1837.440000,baseline,lora,180 +on9,0,0,24,0,0,4256,4320.000000,168,0,-1.000000,1738.400000,baseline,lora,180 +on6,0,0,24,0,0,4068,4320.000000,168,0,-1.000000,1803.680000,baseline,lora,180 +on2,0,0,24,0,0,4138,4320.000000,168,0,-1.000000,1767.840000,baseline,lora,180 +on8,0,0,24,0,0,3988,4320.000000,168,0,-1.000000,1796.960000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4212,4320.000000,168,0,-1.000000,1745.600000,baseline,lora,180 +on12,0,0,24,0,0,4127,4320.000000,168,0,-1.000000,1803.200000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4234,4320.000000,168,0,-1.000000,1776.000000,baseline,lora,180 +on3,0,0,23,1,0,3631,4252.000000,168,0,82105.000000,1773.760000,baseline,lora,180 +on4,0,0,24,0,0,4193,4320.000000,169,0,-1.000000,1748.480000,baseline,lora,180 +on1,0,0,24,0,0,4230,4320.000000,169,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4042,4320.000000,169,0,-1.000000,1801.600000,baseline,lora,180 +on5,0,0,24,0,0,4166,4320.000000,169,0,-1.000000,1752.800000,baseline,lora,180 +on6,0,0,24,0,0,4170,4320.000000,169,0,-1.000000,1760.800000,baseline,lora,180 +on11,0,0,24,1,0,739,4320.000000,169,0,17263.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,169,0,-1.000000,1965.120000,baseline,lora,180 +on12,0,0,24,1,0,0,4320.000000,169,0,2830.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4282,4320.000000,169,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,1,0,1080,4320.000000,169,0,22249.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4166,4320.000000,169,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,3980,4320.000000,170,0,-1.000000,1806.400000,baseline,lora,180 +on10,0,0,24,1,0,1843,4320.000000,170,0,40923.000000,1782.400000,baseline,lora,180 +on3,0,0,24,0,0,3953,4320.000000,170,0,-1.000000,1787.200000,baseline,lora,180 +on6,0,0,24,0,0,4167,4320.000000,170,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4244,4320.000000,170,0,-1.000000,1785.600000,baseline,lora,180 +on5,0,0,24,0,0,4269,4320.000000,170,0,-1.000000,1736.320000,baseline,lora,180 +on4,0,0,24,1,0,1805,4320.000000,170,0,39469.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,3978,4320.000000,170,0,-1.000000,1787.200000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,170,0,-1.000000,1728.000000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,170,0,-1.000000,2064.640000,baseline,lora,180 +on7,0,0,24,1,0,4041,4320.000000,170,0,85981.000000,1788.640000,baseline,lora,180 +on12,0,0,24,0,0,4304,4320.000000,170,0,-1.000000,1735.200000,baseline,lora,180 +on8,0,0,24,0,0,4301,4320.000000,170,0,-1.000000,1737.280000,baseline,lora,180 +on6,0,0,24,1,0,1167,4320.000000,171,0,25477.000000,1782.400000,baseline,lora,180 +on4,0,0,24,0,0,4255,4320.000000,171,0,-1.000000,1738.560000,baseline,lora,180 +on7,0,0,24,0,0,4204,4320.000000,171,0,-1.000000,1756.960000,baseline,lora,180 +on8,0,0,24,0,0,3921,4320.000000,171,0,-1.000000,1802.560000,baseline,lora,180 +on2,0,0,23,0,0,3993,4187.000000,171,0,-1.000000,1742.960000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,171,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4191,4320.000000,171,0,-1.000000,1748.800000,baseline,lora,180 +on11,0,0,24,0,0,4072,4320.000000,171,0,-1.000000,1768.000000,baseline,lora,180 +on9,0,0,24,1,0,2972,4320.000000,171,0,66573.000000,1798.560000,baseline,lora,180 +on5,0,0,24,0,0,4269,4320.000000,171,0,-1.000000,1796.480000,baseline,lora,180 +on3,0,0,24,0,0,4133,4320.000000,171,0,-1.000000,1786.560000,baseline,lora,180 +on12,0,0,24,0,0,4121,4320.000000,171,0,-1.000000,1780.320000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,171,0,-1.000000,2096.640000,baseline,lora,180 +on4,0,0,24,0,0,4284,4320.000000,172,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4299,4320.000000,172,0,-1.000000,1731.520000,baseline,lora,180 +on9,0,0,24,0,0,3881,4320.000000,172,0,-1.000000,1811.360000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,172,0,-1.000000,2066.240000,baseline,lora,180 +on1,0,0,24,1,0,3960,4320.000000,172,0,80017.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4187,4320.000000,172,0,-1.000000,1749.600000,baseline,lora,180 +on10,0,0,24,0,0,4072,4320.000000,172,0,-1.000000,1773.600000,baseline,lora,180 +on6,0,0,24,0,0,4137,4320.000000,172,0,-1.000000,1769.920000,baseline,lora,180 +on8,0,0,24,0,0,4054,4320.000000,172,0,-1.000000,1790.880000,baseline,lora,180 +on7,0,0,24,0,0,4157,4320.000000,172,0,-1.000000,1758.400000,baseline,lora,180 +on5,0,0,24,0,0,4289,4320.000000,172,0,-1.000000,1736.800000,baseline,lora,180 +on3,0,0,24,0,0,4092,4320.000000,172,0,-1.000000,1778.080000,baseline,lora,180 +on12,0,0,24,0,0,4139,4320.000000,172,0,-1.000000,1777.920000,baseline,lora,180 +on2,0,0,24,0,0,4065,4320.000000,173,0,-1.000000,1781.440000,baseline,lora,180 +on10,0,0,24,0,0,4068,4320.000000,173,0,-1.000000,1775.200000,baseline,lora,180 +on7,0,0,24,0,0,4197,4320.000000,173,0,-1.000000,1774.560000,baseline,lora,180 +on8,0,0,24,0,0,4301,4320.000000,173,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,173,0,-1.000000,2086.560000,baseline,lora,180 +on5,0,0,24,0,0,4069,4320.000000,173,0,-1.000000,1771.840000,baseline,lora,180 +on1,0,0,24,0,0,4032,4320.000000,173,0,-1.000000,1797.600000,baseline,lora,180 +on3,0,0,24,1,0,1440,4320.000000,173,0,29686.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,173,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,1,0,19,4320.000000,173,0,2080.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4217,4320.000000,173,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,3885,4320.000000,173,0,-1.000000,1814.400000,baseline,lora,180 +on12,0,0,24,0,0,4146,4320.000000,173,0,-1.000000,1756.160000,baseline,lora,180 +on11,0,0,24,0,0,3875,4320.000000,174,0,-1.000000,1803.840000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,174,0,-1.000000,2065.440000,baseline,lora,180 +on5,0,0,24,0,0,4261,4320.000000,174,0,-1.000000,1774.400000,baseline,lora,180 +on3,0,0,24,0,0,4191,4320.000000,174,0,-1.000000,1748.960000,baseline,lora,180 +on1,0,0,23,1,0,793,4301.000000,174,0,18632.000000,1774.800000,baseline,lora,180 +on4,0,0,24,0,0,4175,4320.000000,174,0,-1.000000,1751.360000,baseline,lora,180 +on7,0,0,24,0,0,4169,4320.000000,174,0,-1.000000,1765.440000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4190,4320.000000,174,0,-1.000000,1764.960000,baseline,lora,180 +on6,0,0,24,0,0,4189,4320.000000,174,0,-1.000000,1749.120000,baseline,lora,180 +on9,0,0,23,1,0,1980,4212.000000,174,0,42737.000000,1710.400000,baseline,lora,180 +on10,0,0,24,0,0,4136,4320.000000,174,0,-1.000000,1768.320000,baseline,lora,180 +on12,0,0,24,1,0,1149,4320.000000,174,0,27459.000000,1771.680000,baseline,lora,180 +on10,0,0,24,0,0,4085,4320.000000,175,0,-1.000000,1783.520000,baseline,lora,180 +on12,0,0,24,0,0,4187,4320.000000,175,0,-1.000000,1750.080000,baseline,lora,180 +on4,0,0,24,0,0,4107,4320.000000,175,0,-1.000000,1772.960000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,3873,4320.000000,175,0,-1.000000,1810.880000,baseline,lora,180 +on1,0,0,24,0,0,4241,4320.000000,175,0,-1.000000,1740.800000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,175,0,-1.000000,2129.440000,baseline,lora,180 +on5,0,0,24,0,0,4114,4320.000000,175,0,-1.000000,1814.400000,baseline,lora,180 +on11,0,0,24,0,0,4048,4320.000000,175,0,-1.000000,1796.320000,baseline,lora,180 +on3,0,0,24,1,0,2852,4320.000000,175,0,60500.000000,1758.880000,baseline,lora,180 +on6,0,0,24,0,0,4176,4320.000000,175,0,-1.000000,1759.200000,baseline,lora,180 +on2,0,0,24,0,0,4242,4320.000000,175,0,-1.000000,1740.640000,baseline,lora,180 +on8,0,0,24,0,0,3840,4320.000000,175,0,-1.000000,1824.960000,baseline,lora,180 +on3,0,0,24,1,0,3952,4320.000000,176,0,83326.000000,1786.720000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,176,0,-1.000000,1962.080000,baseline,lora,180 +on11,0,0,24,0,0,4260,4320.000000,176,0,-1.000000,1764.000000,baseline,lora,180 +on10,0,0,24,0,0,4090,4320.000000,176,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,0,0,4285,4320.000000,176,0,-1.000000,1733.760000,baseline,lora,180 +on8,0,0,24,1,0,909,4320.000000,176,0,20740.000000,1753.600000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,0,0,4313,4320.000000,176,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4305,4320.000000,176,0,-1.000000,1730.560000,baseline,lora,180 +on4,0,0,24,0,0,4182,4320.000000,176,0,-1.000000,1775.360000,baseline,lora,180 +on9,0,0,24,0,0,4191,4320.000000,176,0,-1.000000,1748.800000,baseline,lora,180 +on6,0,0,24,0,0,4189,4320.000000,176,0,-1.000000,1769.440000,baseline,lora,180 +on2,0,0,24,0,0,4143,4320.000000,176,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,0,0,4105,4320.000000,177,0,-1.000000,1777.440000,baseline,lora,180 +on6,0,0,24,1,0,4014,4320.000000,177,0,83651.000000,1782.400000,baseline,lora,180 +on0,1,5,24,0,0,0,4320.000000,177,0,-1.000000,2060.800000,baseline,lora,180 +on5,0,0,24,0,0,4301,4320.000000,177,0,-1.000000,1734.240000,baseline,lora,180 +on9,0,0,24,1,0,1440,4320.000000,177,0,30892.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,4187,4320.000000,177,0,-1.000000,1769.120000,baseline,lora,180 +on1,0,0,24,0,0,4169,4320.000000,177,0,-1.000000,1766.400000,baseline,lora,180 +on4,0,0,24,0,0,4319,4320.000000,177,0,-1.000000,1757.120000,baseline,lora,180 +on3,0,0,23,1,0,547,4250.000000,177,0,14546.000000,1725.600000,baseline,lora,180 +on10,0,0,24,0,0,4232,4320.000000,177,0,-1.000000,1742.240000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,1,0,3270,4320.000000,177,0,72476.000000,1823.360000,baseline,lora,180 +on2,0,0,24,1,0,1088,4320.000000,177,0,26091.000000,1795.360000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,0,0,4135,4320.000000,178,0,-1.000000,1757.920000,baseline,lora,180 +on5,0,0,24,0,0,4170,4320.000000,178,0,-1.000000,1757.120000,baseline,lora,180 +on3,0,0,24,0,0,4179,4320.000000,178,0,-1.000000,1750.720000,baseline,lora,180 +on8,0,0,24,0,0,4250,4320.000000,178,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4212,4320.000000,178,0,-1.000000,1772.800000,baseline,lora,180 +on1,0,0,24,1,0,2976,4320.000000,178,0,62325.000000,1767.200000,baseline,lora,180 +on12,0,0,24,0,0,4128,4320.000000,178,0,-1.000000,1763.360000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,178,0,-1.000000,2038.880000,baseline,lora,180 +on6,0,0,24,0,0,4114,4320.000000,178,0,-1.000000,1775.520000,baseline,lora,180 +on2,0,0,24,0,0,3976,4320.000000,178,0,-1.000000,1813.600000,baseline,lora,180 +on9,0,0,24,0,0,4276,4320.000000,178,0,-1.000000,1735.200000,baseline,lora,180 +on7,0,0,24,0,0,4083,4320.000000,178,0,-1.000000,1771.200000,baseline,lora,180 +on12,0,0,24,0,0,4275,4320.000000,179,0,-1.000000,1735.360000,baseline,lora,180 +on10,0,0,24,0,0,4079,4320.000000,179,0,-1.000000,1772.160000,baseline,lora,180 +on8,0,0,24,0,0,4109,4320.000000,179,0,-1.000000,1787.360000,baseline,lora,180 +on7,0,0,24,0,0,4189,4320.000000,179,0,-1.000000,1749.120000,baseline,lora,180 +on4,0,0,24,0,0,4131,4320.000000,179,0,-1.000000,1758.560000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,3352,4320.000000,179,0,71936.000000,1782.400000,baseline,lora,180 +on5,0,0,24,0,0,4020,4320.000000,179,0,-1.000000,1797.600000,baseline,lora,180 +on6,0,0,24,0,0,4163,4320.000000,179,0,-1.000000,1765.600000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4294,4320.000000,179,0,-1.000000,1732.320000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,179,0,-1.000000,2017.760000,baseline,lora,180 +on9,0,0,24,1,0,4045,4320.000000,179,0,86252.000000,1782.400000,baseline,lora,180 +on11,0,0,24,0,0,4067,4320.000000,180,0,-1.000000,1785.120000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,180,0,-1.000000,2027.840000,baseline,lora,180 +on12,0,0,24,0,0,4172,4320.000000,180,0,-1.000000,1814.400000,baseline,lora,180 +on3,0,0,24,0,0,4295,4320.000000,180,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,180,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,3987,4320.000000,180,0,-1.000000,1798.880000,baseline,lora,180 +on7,0,0,24,0,0,4234,4320.000000,180,0,-1.000000,1770.240000,baseline,lora,180 +on6,0,0,24,1,0,1281,4320.000000,180,0,31971.000000,1779.200000,baseline,lora,180 +on8,0,0,24,0,0,4180,4320.000000,180,0,-1.000000,1774.240000,baseline,lora,180 +on1,0,0,24,0,0,4128,4320.000000,180,0,-1.000000,1759.040000,baseline,lora,180 +on10,0,0,23,0,0,4289,4289.000000,180,0,-1.000000,1715.600000,baseline,lora,180 +on9,0,0,24,0,0,4251,4320.000000,180,0,-1.000000,1739.200000,baseline,lora,180 +on2,0,0,24,1,0,1495,4320.000000,180,0,35348.000000,1782.400000,baseline,lora,180 +on11,0,0,24,1,0,1097,4320.000000,181,0,24621.000000,1753.600000,baseline,lora,180 +on9,0,0,23,0,0,4091,4295.000000,181,0,-1.000000,1763.280000,baseline,lora,180 +on1,0,0,24,0,0,4223,4320.000000,181,0,-1.000000,1815.520000,baseline,lora,180 +on10,0,0,24,0,0,4282,4320.000000,181,0,-1.000000,1759.200000,baseline,lora,180 +on3,0,0,24,0,0,3983,4320.000000,181,0,-1.000000,1782.560000,baseline,lora,180 +on8,0,0,24,0,0,4051,4320.000000,181,0,-1.000000,1777.440000,baseline,lora,180 +on6,0,0,24,1,0,14,4320.000000,181,0,1308.000000,1753.600000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4256,4320.000000,181,0,-1.000000,1738.560000,baseline,lora,180 +on7,0,0,24,0,0,4106,4320.000000,181,0,-1.000000,1762.560000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,181,0,-1.000000,2042.080000,baseline,lora,180 +on12,0,0,24,0,0,4108,4320.000000,181,0,-1.000000,1776.480000,baseline,lora,180 +on4,0,0,24,0,0,4135,4320.000000,181,0,-1.000000,1767.840000,baseline,lora,180 +on9,0,0,24,0,0,4030,4320.000000,182,0,-1.000000,1781.280000,baseline,lora,180 +on2,0,0,24,0,0,4275,4320.000000,182,0,-1.000000,1735.360000,baseline,lora,180 +on3,0,0,24,1,0,896,4320.000000,182,0,21537.000000,1755.040000,baseline,lora,180 +on6,0,0,24,0,0,4045,4320.000000,182,0,-1.000000,1807.520000,baseline,lora,180 +on7,0,0,24,0,0,4050,4320.000000,182,0,-1.000000,1771.680000,baseline,lora,180 +on11,0,0,24,1,0,3077,4320.000000,182,0,64531.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,182,0,-1.000000,2030.720000,baseline,lora,180 +on8,0,0,24,1,0,540,4320.000000,182,0,12071.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4265,4320.000000,182,0,-1.000000,1736.960000,baseline,lora,180 +on1,0,0,24,0,0,4238,4320.000000,182,0,-1.000000,1756.800000,baseline,lora,180 +on4,0,0,24,0,0,4176,4320.000000,182,0,-1.000000,1778.240000,baseline,lora,180 +on5,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4095,4320.000000,182,0,-1.000000,1781.440000,baseline,lora,180 +on10,0,0,24,0,0,3916,4320.000000,183,0,-1.000000,1854.240000,baseline,lora,180 +on1,0,0,24,1,0,2133,4320.000000,183,0,45653.000000,1758.560000,baseline,lora,180 +on12,0,0,24,0,0,4303,4320.000000,183,0,-1.000000,1730.880000,baseline,lora,180 +on8,0,0,24,0,0,4021,4320.000000,183,0,-1.000000,1788.320000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4199,4320.000000,183,0,-1.000000,1750.720000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,lora,180 +on9,0,0,24,0,0,4270,4320.000000,183,0,-1.000000,1736.160000,baseline,lora,180 +on11,0,0,24,0,0,4181,4320.000000,183,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4306,4320.000000,183,0,-1.000000,1758.240000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,183,0,-1.000000,2122.400000,baseline,lora,180 +on5,0,0,24,0,0,3671,4320.000000,183,0,-1.000000,1885.760000,baseline,lora,180 +on2,0,0,24,1,0,2495,4320.000000,183,0,59064.000000,1825.440000,baseline,lora,180 +on12,0,0,24,0,0,4009,4320.000000,184,0,-1.000000,1822.880000,baseline,lora,180 +on9,0,0,24,1,0,1373,4320.000000,184,0,30933.000000,1782.400000,baseline,lora,180 +on8,0,0,24,1,0,1080,4320.000000,184,0,22204.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4000,4320.000000,184,0,-1.000000,1798.240000,baseline,lora,180 +on6,0,0,24,0,0,4065,4320.000000,184,0,-1.000000,1793.440000,baseline,lora,180 +on2,0,0,24,0,0,4121,4320.000000,184,0,-1.000000,1760.160000,baseline,lora,180 +on5,0,0,24,0,0,4132,4320.000000,184,0,-1.000000,1761.600000,baseline,lora,180 +on10,0,0,24,0,0,4201,4320.000000,184,0,-1.000000,1799.680000,baseline,lora,180 +on4,0,0,24,0,0,4233,4320.000000,184,0,-1.000000,1742.080000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,184,0,-1.000000,2083.200000,baseline,lora,180 +on11,0,0,24,1,0,1800,4320.000000,184,0,38135.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4168,4320.000000,184,0,-1.000000,1760.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,1,0,3241,4320.000000,185,0,66100.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,1800,4320.000000,185,0,39125.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4244,4320.000000,185,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,185,0,-1.000000,2034.240000,baseline,lora,180 +on4,0,0,24,0,0,4051,4320.000000,185,0,-1.000000,1771.520000,baseline,lora,180 +on1,0,0,24,0,0,4162,4320.000000,185,0,-1.000000,1806.880000,baseline,lora,180 +on10,0,0,24,0,0,4076,4320.000000,185,0,-1.000000,1786.400000,baseline,lora,180 +on8,0,0,24,0,0,4290,4320.000000,185,0,-1.000000,1732.960000,baseline,lora,180 +on5,0,0,24,0,0,3827,4320.000000,185,0,-1.000000,1833.600000,baseline,lora,180 +on3,0,0,24,0,0,4204,4320.000000,185,0,-1.000000,1752.160000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,185,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4222,4320.000000,185,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4230,4320.000000,185,0,-1.000000,1742.560000,baseline,lora,180 +on9,0,0,24,0,0,4262,4320.000000,186,0,-1.000000,1756.800000,baseline,lora,180 +on10,0,0,24,0,0,4174,4320.000000,186,0,-1.000000,1756.800000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,186,0,-1.000000,2040.640000,baseline,lora,180 +on4,0,0,24,0,0,3865,4320.000000,186,0,-1.000000,1823.360000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,186,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4166,4320.000000,186,0,-1.000000,1780.960000,baseline,lora,180 +on7,0,0,24,0,0,4127,4320.000000,186,0,-1.000000,1774.720000,baseline,lora,180 +on3,0,0,24,0,0,4120,4320.000000,186,0,-1.000000,1773.120000,baseline,lora,180 +on11,0,0,24,0,0,4218,4320.000000,186,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4001,4320.000000,186,0,-1.000000,1817.920000,baseline,lora,180 +on8,0,0,24,0,0,4179,4320.000000,186,0,-1.000000,1760.640000,baseline,lora,180 +on2,0,0,24,0,0,4263,4320.000000,186,0,-1.000000,1737.280000,baseline,lora,180 +on5,0,0,24,0,0,4213,4320.000000,186,0,-1.000000,1745.280000,baseline,lora,180 +on9,0,0,24,0,0,4293,4320.000000,187,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,3911,4320.000000,187,0,-1.000000,1808.000000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,187,0,-1.000000,2019.840000,baseline,lora,180 +on10,0,0,24,0,0,4191,4320.000000,187,0,-1.000000,1757.440000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4302,4320.000000,187,0,-1.000000,1731.040000,baseline,lora,180 +on5,0,0,24,0,0,4154,4320.000000,187,0,-1.000000,1808.480000,baseline,lora,180 +on11,0,0,24,1,0,3368,4320.000000,187,0,69802.000000,1762.080000,baseline,lora,180 +on2,0,0,24,0,0,4078,4320.000000,187,0,-1.000000,1782.080000,baseline,lora,180 +on4,0,0,24,0,0,4149,4320.000000,187,0,-1.000000,1785.600000,baseline,lora,180 +on1,0,0,24,0,0,4181,4320.000000,187,0,-1.000000,1751.040000,baseline,lora,180 +on8,0,0,24,0,0,4033,4320.000000,187,0,-1.000000,1782.400000,baseline,lora,180 +on6,0,0,24,0,0,4264,4320.000000,188,0,-1.000000,1765.440000,baseline,lora,180 +on7,0,0,24,0,0,4202,4320.000000,188,0,-1.000000,1758.560000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,188,0,-1.000000,2090.240000,baseline,lora,180 +on2,0,0,24,0,0,4073,4320.000000,188,0,-1.000000,1772.960000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,188,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,3998,4320.000000,188,0,-1.000000,1808.640000,baseline,lora,180 +on3,0,0,24,0,0,4080,4320.000000,188,0,-1.000000,1769.600000,baseline,lora,180 +on8,0,0,24,0,0,4106,4320.000000,188,0,-1.000000,1762.560000,baseline,lora,180 +on11,0,0,24,0,0,4216,4320.000000,188,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4176,4320.000000,188,0,-1.000000,1751.200000,baseline,lora,180 +on5,0,0,24,0,0,4008,4320.000000,188,0,-1.000000,1797.600000,baseline,lora,180 +on1,0,0,24,1,0,3420,4320.000000,188,0,71008.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,3998,4320.000000,188,0,-1.000000,1789.600000,baseline,lora,180 +on1,0,0,24,0,0,4234,4320.000000,189,0,-1.000000,1769.920000,baseline,lora,180 +on6,0,0,24,1,0,2340,4320.000000,189,0,49175.000000,1753.600000,baseline,lora,180 +on3,0,0,24,0,0,4320,4320.000000,189,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4146,4320.000000,189,0,-1.000000,1756.160000,baseline,lora,180 +on2,0,0,24,1,0,3600,4320.000000,189,0,72904.000000,1753.600000,baseline,lora,180 +on5,0,0,24,1,0,3060,4320.000000,189,0,62312.000000,1753.600000,baseline,lora,180 +on12,0,0,24,0,0,4233,4320.000000,189,0,-1.000000,1756.800000,baseline,lora,180 +on11,0,0,24,0,0,4061,4320.000000,189,0,-1.000000,1803.200000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,189,0,-1.000000,1963.040000,baseline,lora,180 +on10,0,0,24,0,0,4159,4320.000000,189,0,-1.000000,1777.280000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,189,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4263,4320.000000,189,0,-1.000000,1756.800000,baseline,lora,180 +on8,0,0,24,0,0,4169,4320.000000,189,0,-1.000000,1752.480000,baseline,lora,180 +on5,0,0,24,1,0,1083,4320.000000,190,0,23500.000000,1753.600000,baseline,lora,180 +on0,1,3,24,0,0,0,4320.000000,190,0,-1.000000,1987.360000,baseline,lora,180 +on9,0,0,24,0,0,3871,4320.000000,190,0,-1.000000,1809.760000,baseline,lora,180 +on11,0,0,24,0,0,4150,4320.000000,190,0,-1.000000,1774.560000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4038,4320.000000,190,0,-1.000000,1798.240000,baseline,lora,180 +on12,0,0,24,1,0,547,4320.000000,190,0,12353.000000,1753.600000,baseline,lora,180 +on2,0,0,24,1,0,2067,4320.000000,190,0,45513.000000,1768.640000,baseline,lora,180 +on3,0,0,24,0,0,4297,4320.000000,190,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4209,4320.000000,190,0,-1.000000,1745.920000,baseline,lora,180 +on5,0,0,24,0,0,4308,4320.000000,191,0,-1.000000,1730.080000,baseline,lora,180 +on2,0,0,24,1,0,180,4320.000000,191,0,4552.000000,1753.600000,baseline,lora,180 +on7,0,0,24,0,0,4127,4320.000000,191,0,-1.000000,1759.200000,baseline,lora,180 +on1,0,0,24,0,0,4101,4320.000000,191,0,-1.000000,1791.520000,baseline,lora,180 +on3,0,0,24,0,0,4217,4320.000000,191,0,-1.000000,1785.600000,baseline,lora,180 +on12,0,0,24,0,0,4085,4320.000000,191,0,-1.000000,1790.560000,baseline,lora,180 +on6,0,0,24,0,0,4171,4320.000000,191,0,-1.000000,1774.240000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,baseline,lora,180 +on11,0,0,24,1,0,3169,4320.000000,191,0,65026.000000,1785.760000,baseline,lora,180 +on9,0,0,24,0,0,4242,4320.000000,191,0,-1.000000,1763.040000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,191,0,-1.000000,2036.160000,baseline,lora,180 +on4,0,0,24,1,0,4010,4320.000000,191,0,85850.000000,1811.680000,baseline,lora,180 +on8,0,0,24,1,0,3543,4320.000000,191,0,73905.000000,1778.240000,baseline,lora,180 +on3,0,0,24,0,0,4223,4320.000000,192,0,-1.000000,1743.680000,baseline,lora,180 +on12,0,0,24,0,0,4210,4320.000000,192,0,-1.000000,1785.600000,baseline,lora,180 +on4,0,0,24,0,0,3992,4320.000000,192,0,-1.000000,1805.280000,baseline,lora,180 +on6,0,0,24,0,0,4302,4320.000000,192,0,-1.000000,1756.800000,baseline,lora,180 +on2,0,0,24,0,0,4090,4320.000000,192,0,-1.000000,1808.000000,baseline,lora,180 +on5,0,0,24,0,0,4048,4320.000000,192,0,-1.000000,1806.720000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,192,0,-1.000000,2002.720000,baseline,lora,180 +on10,0,0,24,0,0,4132,4320.000000,192,0,-1.000000,1758.400000,baseline,lora,180 +on1,0,0,24,1,0,412,4320.000000,192,0,11476.000000,1782.400000,baseline,lora,180 +on8,0,0,24,0,0,4317,4320.000000,192,0,-1.000000,1728.640000,baseline,lora,180 +on11,0,0,24,0,0,4190,4320.000000,192,0,-1.000000,1748.960000,baseline,lora,180 +on9,0,0,24,0,0,4289,4320.000000,192,0,-1.000000,1741.760000,baseline,lora,180 +on7,0,0,24,0,0,4320,4320.000000,192,0,-1.000000,1728.000000,baseline,lora,180 +on1,0,0,24,1,0,1260,4320.000000,193,0,27658.000000,1753.600000,baseline,lora,180 +on9,0,0,24,0,0,4176,4320.000000,193,0,-1.000000,1756.800000,baseline,lora,180 +on12,0,0,24,0,0,4151,4320.000000,193,0,-1.000000,1768.320000,baseline,lora,180 +on11,0,0,24,0,0,4270,4320.000000,193,0,-1.000000,1736.160000,baseline,lora,180 +on3,0,0,24,0,0,4218,4320.000000,193,0,-1.000000,1785.600000,baseline,lora,180 +on7,0,0,24,1,0,2451,4320.000000,193,0,50630.000000,1787.040000,baseline,lora,180 +on5,0,0,24,0,0,4204,4320.000000,193,0,-1.000000,1783.840000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,193,0,-1.000000,2026.400000,baseline,lora,180 +on4,0,0,24,0,0,4311,4320.000000,193,0,-1.000000,1729.600000,baseline,lora,180 +on10,0,0,24,0,0,4027,4320.000000,193,0,-1.000000,1781.600000,baseline,lora,180 +on2,0,0,24,0,0,4082,4320.000000,193,0,-1.000000,1773.280000,baseline,lora,180 +on8,0,0,24,0,0,4115,4320.000000,193,0,-1.000000,1761.440000,baseline,lora,180 +on6,0,0,24,0,0,4210,4320.000000,193,0,-1.000000,1754.080000,baseline,lora,180 +on7,0,0,24,0,0,4088,4320.000000,194,0,-1.000000,1785.600000,baseline,lora,180 +on9,0,0,24,0,0,4234,4320.000000,194,0,-1.000000,1773.600000,baseline,lora,180 +on10,0,0,24,0,0,4066,4320.000000,194,0,-1.000000,1768.960000,baseline,lora,180 +on1,0,0,24,0,0,4229,4320.000000,194,0,-1.000000,1743.040000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,194,0,-1.000000,2016.640000,baseline,lora,180 +on6,0,0,24,0,0,4082,4320.000000,194,0,-1.000000,1779.360000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,194,0,-1.000000,1728.000000,baseline,lora,180 +on4,0,0,24,0,0,4146,4320.000000,194,0,-1.000000,1776.640000,baseline,lora,180 +on5,0,0,24,1,0,3547,4320.000000,194,0,74301.000000,1792.800000,baseline,lora,180 +on8,0,0,24,0,0,4229,4320.000000,194,0,-1.000000,1787.040000,baseline,lora,180 +on11,0,0,24,0,0,4124,4320.000000,194,0,-1.000000,1793.120000,baseline,lora,180 +on3,0,0,24,0,0,4192,4320.000000,194,0,-1.000000,1748.800000,baseline,lora,180 +on2,0,0,23,0,0,4140,4198.000000,194,0,-1.000000,1688.640000,baseline,lora,180 +on6,0,0,24,0,0,4080,4320.000000,195,0,-1.000000,1766.720000,baseline,lora,180 +on8,0,0,24,0,0,4045,4320.000000,195,0,-1.000000,1814.400000,baseline,lora,180 +on11,0,0,24,0,0,4091,4320.000000,195,0,-1.000000,1764.960000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,195,0,-1.000000,1728.000000,baseline,lora,180 +on5,0,0,24,1,0,9,4320.000000,195,0,1586.000000,1753.600000,baseline,lora,180 +on10,0,0,23,0,0,4144,4163.000000,195,0,-1.000000,1694.000000,baseline,lora,180 +on1,0,0,24,0,0,4201,4320.000000,195,0,-1.000000,1759.680000,baseline,lora,180 +on9,0,0,24,0,0,4254,4320.000000,195,0,-1.000000,1738.880000,baseline,lora,180 +on3,0,0,24,1,0,180,4320.000000,195,0,7322.000000,1753.600000,baseline,lora,180 +on4,0,0,24,0,0,4137,4320.000000,195,0,-1.000000,1809.760000,baseline,lora,180 +on12,0,0,24,0,0,4116,4320.000000,195,0,-1.000000,1760.960000,baseline,lora,180 +on0,1,2,24,0,0,0,4320.000000,195,0,-1.000000,2004.320000,baseline,lora,180 +on7,0,0,24,0,0,4266,4320.000000,195,0,-1.000000,1746.080000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,lora,180 +on6,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4087,4320.000000,196,0,-1.000000,1773.280000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,0,0,4166,4320.000000,196,0,-1.000000,1756.800000,baseline,lora,180 +on5,0,0,24,0,0,4087,4320.000000,196,0,-1.000000,1790.240000,baseline,lora,180 +on9,0,0,24,0,0,4119,4320.000000,196,0,-1.000000,1766.080000,baseline,lora,180 +on1,0,0,24,0,0,4186,4320.000000,196,0,-1.000000,1749.760000,baseline,lora,180 +on10,0,0,24,0,0,4290,4320.000000,196,0,-1.000000,1732.960000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,196,0,-1.000000,1998.400000,baseline,lora,180 +on3,0,0,24,0,0,4164,4320.000000,196,0,-1.000000,1769.120000,baseline,lora,180 +on7,0,0,24,1,0,1067,4320.000000,196,0,30384.000000,1840.000000,baseline,lora,180 +on3,0,0,24,0,0,4220,4320.000000,197,0,-1.000000,1744.160000,baseline,lora,180 +on0,1,0,24,0,0,0,4320.000000,197,0,-1.000000,2062.240000,baseline,lora,180 +on5,0,0,24,0,0,4241,4320.000000,197,0,-1.000000,1750.400000,baseline,lora,180 +on7,0,0,24,0,0,4298,4320.000000,197,0,-1.000000,1760.000000,baseline,lora,180 +on4,0,0,24,0,0,4144,4320.000000,197,0,-1.000000,1778.560000,baseline,lora,180 +on2,0,0,24,0,0,3945,4320.000000,197,0,-1.000000,1821.440000,baseline,lora,180 +on10,0,0,24,0,0,4181,4320.000000,197,0,-1.000000,1750.560000,baseline,lora,180 +on11,0,0,24,0,0,3963,4320.000000,197,0,-1.000000,1805.440000,baseline,lora,180 +on6,0,0,24,0,0,4194,4320.000000,197,0,-1.000000,1748.320000,baseline,lora,180 +on1,0,0,23,0,0,4131,4150.000000,197,0,-1.000000,1679.360000,baseline,lora,180 +on12,0,0,24,0,0,4320,4320.000000,197,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4054,4320.000000,197,0,-1.000000,1803.360000,baseline,lora,180 +on9,0,0,24,0,0,3918,4320.000000,197,0,-1.000000,1802.080000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,198,0,-1.000000,1986.080000,baseline,lora,180 +on12,0,0,23,0,0,4097,4266.000000,198,0,-1.000000,1800.160000,baseline,lora,180 +on5,0,0,24,0,0,4191,4320.000000,198,0,-1.000000,1769.120000,baseline,lora,180 +on11,0,0,24,0,0,4227,4320.000000,198,0,-1.000000,1771.040000,baseline,lora,180 +on4,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,4292,4320.000000,198,0,-1.000000,1732.640000,baseline,lora,180 +on10,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,lora,180 +on3,0,0,24,0,0,4079,4320.000000,198,0,-1.000000,1770.240000,baseline,lora,180 +on1,0,0,24,0,0,4101,4320.000000,198,0,-1.000000,1774.720000,baseline,lora,180 +on8,0,0,24,1,0,2896,4320.000000,198,0,60104.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,3907,4320.000000,198,0,-1.000000,1852.320000,baseline,lora,180 +on9,0,0,24,0,0,4181,4320.000000,198,0,-1.000000,1750.720000,baseline,lora,180 +on11,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.160000,baseline,lora,180 +on3,0,0,24,0,0,4150,4320.000000,199,0,-1.000000,1772.960000,baseline,lora,180 +on5,0,0,24,0,0,4119,4320.000000,199,0,-1.000000,1772.480000,baseline,lora,180 +on9,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,baseline,lora,180 +on8,0,0,24,0,0,4047,4320.000000,199,0,-1.000000,1794.720000,baseline,lora,180 +on0,1,1,24,0,0,0,4320.000000,199,0,-1.000000,1969.760000,baseline,lora,180 +on4,0,0,24,1,0,1440,4320.000000,199,0,29746.000000,1753.600000,baseline,lora,180 +on10,0,0,24,0,0,4240,4320.000000,199,0,-1.000000,1740.960000,baseline,lora,180 +on12,0,0,24,0,0,4215,4320.000000,199,0,-1.000000,1756.800000,baseline,lora,180 +on6,0,0,24,0,0,4288,4320.000000,199,0,-1.000000,1733.280000,baseline,lora,180 +on1,0,0,24,0,0,4112,4320.000000,199,0,-1.000000,1785.440000,baseline,lora,180 +on2,0,0,24,0,0,4068,4320.000000,199,0,-1.000000,1775.520000,baseline,lora,180 +on7,0,0,24,0,0,4309,4320.000000,199,0,-1.000000,1737.280000,baseline,lora,180 +on3,0,0,24,1,0,2541,4320.000000,200,0,55880.000000,1798.240000,baseline,lora,180 +on10,0,0,24,1,0,0,4320.000000,200,0,2758.000000,1753.600000,baseline,lora,180 +on11,0,0,24,0,0,3983,4320.000000,200,0,-1.000000,1791.360000,baseline,lora,180 +on1,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,lora,180 +on12,0,0,24,1,0,1992,4320.000000,200,0,42263.000000,1763.520000,baseline,lora,180 +on0,1,4,24,0,0,0,4320.000000,200,0,-1.000000,2024.640000,baseline,lora,180 +on5,0,0,24,0,0,4223,4320.000000,200,0,-1.000000,1765.280000,baseline,lora,180 +on8,0,0,24,0,0,4226,4320.000000,200,0,-1.000000,1758.080000,baseline,lora,180 +on2,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,lora,180 +on7,0,0,24,0,0,3966,4320.000000,200,0,-1.000000,1804.160000,baseline,lora,180 +on9,0,0,24,1,0,1089,4320.000000,200,0,23265.000000,1753.600000,baseline,lora,180 +on6,0,0,24,0,0,4317,4320.000000,200,0,-1.000000,1728.640000,baseline,lora,180 +on4,0,0,24,0,0,4180,4320.000000,200,0,-1.000000,1767.040000,baseline,lora,180 +on6,0,0,27,1,0,2103,4864.403840,1,3,43156.001280,2059.345741,hint,lora,180 +on9,0,0,26,1,0,1657,4684.502560,1,2,33217.001280,1964.265024,hint,lora,180 +on12,0,0,26,1,0,1545,4682.201280,1,2,29156.001280,1930.528512,hint,lora,180 +on11,0,0,32,1,0,2748,5889.005120,1,11,52054.001280,2558.977434,hint,lora,180 +on8,0,0,25,1,0,1013,4504.994880,1,1,24034.001280,1863.822566,hint,lora,180 +on2,0,0,25,1,0,1226,4502.200000,1,1,27313.001280,1858.208000,hint,lora,180 +on10,0,0,25,0,0,4201,4580.502560,1,2,-1.000000,1910.008614,hint,lora,180 +on5,0,0,28,1,0,2042,5042.202560,1,4,37423.001280,2051.968614,hint,lora,180 +on3,0,0,28,1,0,2538,5042.097440,1,4,48849.001280,2085.270362,hint,lora,180 +on4,0,0,27,0,0,4344,4860.800000,1,3,-1.000000,2016.798771,hint,lora,180 +on1,0,0,26,1,0,2913,4681.000000,1,2,59589.001280,1933.839590,hint,lora,180 +on7,0,0,24,1,0,882,4374.998720,1,1,19084.001280,1806.975898,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,1,0,-1.000000,2086.786458,hint,lora,180 +on10,0,0,34,1,0,3091,6123.800000,2,10,52873.001280,2573.646157,hint,lora,180 +on3,0,0,26,1,0,1556,4827.500000,2,3,30956.001280,1976.919590,hint,lora,180 +on4,0,0,30,1,0,2391,5437.700000,2,7,45896.001280,2318.710362,hint,lora,180 +on7,0,0,27,1,0,2252,4862.500000,2,3,42787.002560,2012.215181,hint,lora,180 +on8,0,0,33,1,0,2553,6119.702560,2,10,54496.001280,2708.904410,hint,lora,180 +on1,0,0,32,1,0,2836,5763.300000,2,8,50114.001280,2406.421952,hint,lora,180 +on11,0,0,26,1,0,1378,4683.600000,2,2,28249.001280,1915.584205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,2,0,-1.000000,2118.912819,hint,lora,180 +on6,0,0,36,1,0,3267,6485.300000,2,13,59964.001280,2806.117338,hint,lora,180 +on2,0,0,25,1,0,1221,4614.500000,2,2,22890.001280,1967.623386,hint,lora,180 +on9,0,0,29,1,0,1777,5223.700000,2,5,35550.001280,2200.998976,hint,lora,180 +on5,0,0,25,1,0,793,4502.000000,2,1,19018.001280,1870.576000,hint,lora,180 +on12,0,0,29,1,0,1955,5223.200000,2,5,38949.001280,2198.671590,hint,lora,180 +on5,0,0,36,1,0,3739,6485.402560,3,12,67058.001280,2793.230566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,3,0,-1.000000,2217.569024,hint,lora,180 +on4,0,0,27,1,0,1777,4863.500000,3,4,32982.001280,2013.224000,hint,lora,180 +on9,0,0,32,1,0,2989,5863.900000,3,9,52480.001280,2498.294362,hint,lora,180 +on6,0,0,25,1,0,813,4502.994880,3,1,19159.001280,1864.302157,hint,lora,180 +on10,0,0,29,1,0,3082,5222.600000,3,5,60463.001280,2221.534771,hint,lora,180 +on1,0,0,26,1,0,1787,4683.600000,3,3,37426.001280,1942.239795,hint,lora,180 +on2,0,0,25,1,0,1967,4502.000000,3,2,50481.001280,1923.152000,hint,lora,180 +on11,0,0,26,1,0,1433,4682.300000,3,2,31382.001280,1931.480000,hint,lora,180 +on7,0,0,27,1,0,1934,4933.500000,3,4,46002.001280,2140.999795,hint,lora,180 +on3,0,0,31,1,0,3502,5584.000000,3,8,61823.001280,2354.638362,hint,lora,180 +on8,0,0,34,1,0,4221,6208.002560,3,12,70104.001280,2597.919181,hint,lora,180 +on12,0,0,31,1,0,2790,5584.700000,3,7,57633.001280,2437.142157,hint,lora,180 +on9,0,0,27,1,0,1421,4864.400000,4,6,27259.001280,2032.847590,hint,lora,180 +on7,0,0,28,1,0,2486,5045.598720,4,4,47658.001280,2158.046259,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,4,0,-1.000000,2084.098662,hint,lora,180 +on2,0,0,27,1,0,1960,4863.702560,4,3,37227.001280,2026.057434,hint,lora,180 +on5,0,0,25,1,0,1234,4500.997440,4,1,24233.001280,1825.999181,hint,lora,180 +on10,0,0,28,1,0,2309,5101.402560,4,5,44936.001280,2136.496410,hint,lora,180 +on12,0,0,27,1,0,2690,4861.301280,4,3,53053.001280,2012.263693,hint,lora,180 +on3,0,0,24,1,0,17,4321.001280,4,0,2325.001280,1765.424922,hint,lora,180 +on11,0,0,26,1,0,1676,4683.200000,4,2,34038.001280,1956.174976,hint,lora,180 +on4,0,0,26,1,0,1533,4683.300000,4,2,30477.001280,1934.247795,hint,lora,180 +on8,0,0,25,1,0,2103,4686.402560,4,3,40132.001280,1961.840614,hint,lora,180 +on6,0,0,25,1,0,1055,4500.997440,4,1,21513.001280,1825.999181,hint,lora,180 +on1,0,0,25,1,0,3645,4501.300000,4,1,72996.001280,1849.672000,hint,lora,180 +on10,0,0,32,1,0,3636,5762.807680,5,8,60853.001280,2372.274662,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,5,0,-1.000000,2171.392614,hint,lora,180 +on5,0,0,27,1,0,2498,4863.501280,5,3,50590.001280,2083.623898,hint,lora,180 +on4,0,0,30,1,0,3225,5402.197440,5,6,61668.001280,2244.396928,hint,lora,180 +on7,0,0,29,1,0,2769,5222.600000,5,6,55031.001280,2180.430771,hint,lora,180 +on6,0,0,27,1,0,2010,4862.900000,5,3,42419.001280,2037.606976,hint,lora,180 +on9,0,0,26,1,0,1239,4682.000000,5,2,28181.002560,1934.992000,hint,lora,180 +on2,0,0,25,1,0,1554,4501.000000,5,1,32100.001280,1829.088000,hint,lora,180 +on8,0,0,24,1,0,1982,4417.300000,5,1,46708.001280,1863.048000,hint,lora,180 +on11,0,0,27,1,0,2003,4861.300000,5,3,38639.001280,1975.831795,hint,lora,180 +on1,0,0,26,1,0,1669,4681.600000,5,2,35397.001280,1917.279795,hint,lora,180 +on12,0,0,34,1,0,3705,6295.205120,5,12,68324.001280,2740.032410,hint,lora,180 +on3,0,0,28,1,0,2350,5066.903840,5,5,50198.001280,2159.721126,hint,lora,180 +on11,0,0,32,1,0,4242,5763.100000,6,9,77165.001280,2435.094157,hint,lora,180 +on8,0,0,30,0,0,4719,5402.400000,6,6,-1.000000,2252.798976,hint,lora,180 +on2,0,0,27,1,0,3676,4861.497440,6,4,75690.001280,2037.878566,hint,lora,180 +on7,0,0,26,1,0,1744,4682.000000,6,2,37427.001280,1966.240000,hint,lora,180 +on9,0,0,29,1,0,3018,5222.600000,6,5,57894.001280,2231.439795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,6,0,-1.000000,2189.952819,hint,lora,180 +on4,0,0,32,1,0,4526,5762.501280,6,8,82481.001280,2408.855078,hint,lora,180 +on3,0,0,27,1,0,2077,4862.800000,6,3,44407.001280,2030.127795,hint,lora,180 +on1,0,0,34,1,0,4013,6123.601280,6,10,70520.001280,2586.687693,hint,lora,180 +on5,0,0,27,1,0,2136,4862.900000,6,3,42622.001280,2008.375795,hint,lora,180 +on10,0,0,27,1,0,2306,4862.498720,6,3,48716.001280,2044.855283,hint,lora,180 +on6,0,0,28,1,0,3057,5214.600000,6,5,56794.001280,2130.590771,hint,lora,180 +on12,0,0,28,1,0,2826,5119.500000,6,5,53902.001280,2131.528000,hint,lora,180 +on3,0,0,27,1,0,1174,4862.200000,7,3,25614.001280,2032.431590,hint,lora,180 +on5,0,0,26,1,0,2253,4681.500000,7,3,45614.001280,1904.599795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,7,0,-1.000000,2107.618458,hint,lora,180 +on6,0,0,25,0,0,4229,4500.000000,7,1,-1.000000,1831.999590,hint,lora,180 +on4,0,0,27,1,0,640,4862.600000,7,3,13988.001280,2051.439795,hint,lora,180 +on12,0,0,30,1,0,1937,5518.000000,7,7,36926.001280,2362.894362,hint,lora,180 +on7,0,0,26,1,0,843,4682.202560,7,2,16987.001280,1918.497229,hint,lora,180 +on10,0,0,25,1,0,1154,4502.300000,7,2,29012.001280,1904.023386,hint,lora,180 +on8,0,0,27,1,0,1141,4863.797440,7,3,21588.001280,2012.077952,hint,lora,180 +on2,0,0,27,1,0,1647,4862.601280,7,3,33708.001280,2029.135898,hint,lora,180 +on1,0,0,26,1,0,445,4681.000000,7,2,8263.001280,1900.943795,hint,lora,180 +on9,0,0,27,1,0,1224,4863.703840,7,3,22805.001280,2028.105741,hint,lora,180 +on11,0,0,27,1,0,1945,4862.497440,7,4,42983.001280,2045.318771,hint,lora,180 +on0,1,12,23,0,0,0,4313.000000,8,0,-1.000000,2107.953024,hint,lora,180 +on3,0,0,27,1,0,1199,4960.800000,8,4,24115.001280,2049.663795,hint,lora,180 +on5,0,0,28,1,0,1832,5042.001280,8,4,35814.001280,2091.568307,hint,lora,180 +on7,0,0,28,1,0,1667,5041.600000,8,4,31842.001280,2094.143386,hint,lora,180 +on11,0,0,25,1,0,694,4501.297440,8,1,14989.002560,1830.598976,hint,lora,180 +on10,0,0,31,1,0,2107,5583.702560,8,7,39571.001280,2364.712410,hint,lora,180 +on6,0,0,25,1,0,512,4503.200000,8,1,13137.001280,1877.184000,hint,lora,180 +on1,0,0,28,1,0,753,5043.500000,8,4,19395.001280,2157.143795,hint,lora,180 +on12,0,0,33,1,0,2397,5946.000000,8,9,39842.001280,2538.877338,hint,lora,180 +on4,0,0,31,1,0,2151,5610.000000,8,8,46033.001280,2462.255795,hint,lora,180 +on2,0,0,28,1,0,1459,5041.300000,8,4,28812.001280,2073.639795,hint,lora,180 +on9,0,0,25,1,0,287,4655.600000,8,2,7806.001280,1949.407795,hint,lora,180 +on8,0,0,37,1,0,2943,6839.801280,8,14,50474.001280,3010.798054,hint,lora,180 +on11,0,0,24,1,0,541,4344.000000,9,1,17994.001280,1786.672000,hint,lora,180 +on6,0,0,26,1,0,966,4682.300000,9,2,18558.001280,1906.135795,hint,lora,180 +on2,0,0,27,1,0,1776,4862.802560,9,3,34194.001280,1995.808819,hint,lora,180 +on7,0,0,25,1,0,1808,4503.300000,9,1,39569.001280,1890.279795,hint,lora,180 +on9,0,0,33,1,0,2785,6040.805120,9,10,52449.001280,2636.688205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,9,0,-1.000000,2149.536614,hint,lora,180 +on12,0,0,28,1,0,1447,5043.000000,9,4,25603.001280,2092.991795,hint,lora,180 +on10,0,0,25,1,0,31,4501.997440,9,1,4873.001280,1862.943181,hint,lora,180 +on1,0,0,28,1,0,1750,5129.500000,9,5,30751.001280,2095.783590,hint,lora,180 +on4,0,0,31,1,0,2299,5736.406400,9,8,42580.001280,2441.649946,hint,lora,180 +on5,0,0,25,1,0,2191,4866.900000,9,4,45429.001280,2028.806771,hint,lora,180 +on3,0,0,34,1,0,2284,6251.902560,9,15,49011.001280,2791.974976,hint,lora,180 +on8,0,0,25,1,0,875,4502.000000,9,1,22161.001280,1877.664000,hint,lora,180 +on2,0,0,29,1,0,2741,5223.101280,10,5,51754.001280,2176.488102,hint,lora,180 +on10,0,0,30,1,0,2352,5403.403840,10,6,45772.001280,2290.401126,hint,lora,180 +on7,0,0,26,1,0,1115,4682.500000,10,2,22573.001280,1924.695795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,10,0,-1.000000,2181.857638,hint,lora,180 +on4,0,0,32,1,0,2579,5926.801280,10,9,48661.001280,2519.487898,hint,lora,180 +on6,0,0,31,1,0,3541,5581.500000,10,8,63532.001280,2315.046566,hint,lora,180 +on9,0,0,26,1,0,1274,4748.600000,10,3,28876.001280,1971.231795,hint,lora,180 +on8,0,0,37,1,0,3608,6687.498720,10,14,65262.001280,2957.429850,hint,lora,180 +on3,0,0,25,1,0,635,4501.997440,10,1,14741.001280,1868.495181,hint,lora,180 +on1,0,0,31,1,0,3398,5716.100000,10,9,71334.001280,2492.454157,hint,lora,180 +on12,0,0,26,1,0,1777,4850.100000,10,4,38041.001280,2035.464000,hint,lora,180 +on5,0,0,30,1,0,2153,5427.801280,10,7,42243.001280,2312.271898,hint,lora,180 +on11,0,0,34,1,0,3026,6360.102560,10,13,58867.001280,2779.558566,hint,lora,180 +on12,0,0,26,1,0,1027,4693.600000,11,3,19948.001280,1912.319590,hint,lora,180 +on3,0,0,27,1,0,1357,4862.905120,11,3,31534.001280,2062.762048,hint,lora,180 +on11,0,0,25,1,0,110,4503.397440,11,1,4072.001280,1871.598976,hint,lora,180 +on6,0,0,26,1,0,1309,4937.100000,11,4,26709.001280,2110.934976,hint,lora,180 +on8,0,0,27,1,0,1359,4862.100000,11,3,22996.002560,1985.623181,hint,lora,180 +on2,0,0,32,1,0,2427,5923.501280,11,9,45443.001280,2541.062874,hint,lora,180 +on9,0,0,32,1,0,2683,5764.401280,11,8,42879.001280,2408.366259,hint,lora,180 +on1,0,0,25,1,0,541,4513.300000,11,2,18049.001280,1877.639590,hint,lora,180 +on5,0,0,29,1,0,2159,5507.400000,11,7,37390.001280,2299.390362,hint,lora,180 +on10,0,0,25,1,0,455,4503.300000,11,1,11108.001280,1858.407590,hint,lora,180 +on7,0,0,26,1,0,356,4681.601280,11,3,8017.001280,1939.008512,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,11,0,-1.000000,2088.929638,hint,lora,180 +on4,0,0,25,1,0,1744,4618.500000,11,2,35092.001280,1897.799795,hint,lora,180 +on3,0,0,25,1,0,566,4504.000000,12,1,14954.001280,1911.264205,hint,lora,180 +on10,0,0,24,1,0,366,4321.001280,12,0,10903.001280,1773.040512,hint,lora,180 +on5,0,0,30,1,0,2220,5402.800000,12,6,40629.001280,2251.678157,hint,lora,180 +on7,0,0,27,1,0,1811,4866.600000,12,3,33992.001280,2128.928205,hint,lora,180 +on9,0,0,27,1,0,1641,4867.498720,12,3,30191.001280,2086.423693,hint,lora,180 +on2,0,0,32,1,0,2978,5763.801280,12,9,49640.001280,2406.382874,hint,lora,180 +on6,0,0,25,1,0,1182,4502.300000,12,1,24024.001280,1860.472000,hint,lora,180 +on4,0,0,27,1,0,2116,4877.003840,12,4,37654.001280,1995.024922,hint,lora,180 +on11,0,0,25,1,0,1419,4503.000000,12,1,27804.001280,1850.384205,hint,lora,180 +on1,0,0,24,1,0,849,4347.000000,12,1,18333.001280,1812.687795,hint,lora,180 +on8,0,0,25,1,0,2280,4503.996160,12,1,45155.001280,1870.559078,hint,lora,180 +on12,0,0,26,0,0,4358,4680.600000,12,2,-1.000000,1902.095181,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,12,0,-1.000000,2066.499482,hint,lora,180 +on7,0,0,29,1,0,2558,5259.701280,13,6,46777.001280,2167.703693,hint,lora,180 +on12,0,0,27,1,0,1730,4862.697440,13,3,34198.001280,2006.470362,hint,lora,180 +on3,0,0,26,1,0,1745,4716.600000,13,4,40833.001280,2012.879590,hint,lora,180 +on4,0,0,29,1,0,1306,5222.101280,13,5,20699.001280,2155.383693,hint,lora,180 +on6,0,0,24,1,0,120,4377.300000,13,2,6536.001280,1839.623795,hint,lora,180 +on2,0,0,27,1,0,1531,5033.500000,13,4,26234.001280,2108.406976,hint,lora,180 +on10,0,0,28,1,0,993,5041.900000,13,4,16923.001280,2080.487590,hint,lora,180 +on9,0,0,33,1,0,2617,5944.602560,13,10,47808.001280,2579.951795,hint,lora,180 +on11,0,0,30,1,0,1933,5403.702560,13,7,38217.001280,2298.152410,hint,lora,180 +on8,0,0,24,1,0,3,4321.997440,13,0,2169.001280,1782.527181,hint,lora,180 +on5,0,0,26,1,0,1266,4681.900000,13,2,24863.001280,1916.375795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,13,0,-1.000000,2111.491072,hint,lora,180 +on1,0,0,25,1,0,492,4504.294880,13,1,11204.001280,1875.926157,hint,lora,180 +on8,0,0,28,1,0,1331,5174.901280,14,6,26655.001280,2200.103488,hint,lora,180 +on7,0,0,28,1,0,1812,5042.600000,14,4,36595.001280,2109.471795,hint,lora,180 +on9,0,0,25,1,0,922,4505.298720,14,1,22972.001280,1908.807488,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,14,0,-1.000000,2097.058662,hint,lora,180 +on3,0,0,26,1,0,293,4683.198720,14,2,9189.001280,1958.095078,hint,lora,180 +on1,0,0,28,0,0,4128,5040.900000,14,4,-1.000000,2129.158157,hint,lora,180 +on4,0,0,29,1,0,1695,5282.100000,14,6,31825.001280,2213.958771,hint,lora,180 +on11,0,0,26,1,0,1007,4682.000000,14,2,18509.001280,1927.424000,hint,lora,180 +on2,0,0,25,1,0,540,4503.001280,14,1,14226.001280,1855.568922,hint,lora,180 +on10,0,0,25,1,0,797,4513.501280,14,2,16052.001280,1851.272512,hint,lora,180 +on12,0,0,25,1,0,355,4501.200000,14,1,6783.001280,1829.023795,hint,lora,180 +on6,0,0,27,1,0,1729,4862.201280,14,3,34461.001280,2022.511898,hint,lora,180 +on5,0,0,31,1,0,2374,5757.000000,14,9,42185.001280,2447.694157,hint,lora,180 +on3,0,0,25,1,0,2649,4503.301280,15,2,58817.001280,1874.920307,hint,lora,180 +on5,0,0,26,1,0,1782,4683.996160,15,2,32653.001280,1958.526259,hint,lora,180 +on1,0,0,25,1,0,1076,4504.000000,15,1,22376.001280,1877.327590,hint,lora,180 +on6,0,0,25,1,0,1240,4502.300000,15,1,28841.001280,1895.768000,hint,lora,180 +on7,0,0,24,0,0,4268,4320.000000,15,0,-1.000000,1756.800000,hint,lora,180 +on12,0,0,25,1,0,2226,4739.201280,15,3,45730.001280,1968.703488,hint,lora,180 +on4,0,0,26,1,0,1687,4682.197440,15,2,31515.001280,1901.422976,hint,lora,180 +on11,0,0,26,1,0,1757,4683.500000,15,2,36656.001280,1965.959590,hint,lora,180 +on9,0,0,27,1,0,2686,5195.200000,15,5,56658.001280,2207.199590,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,15,0,-1.000000,2144.961434,hint,lora,180 +on8,0,0,24,0,0,3751,4391.000000,15,1,-1.000000,1861.167590,hint,lora,180 +on2,0,0,24,1,0,1982,4321.998720,15,1,39970.001280,1756.959693,hint,lora,180 +on10,0,0,31,0,0,4288,5749.601280,15,9,-1.000000,2509.455078,hint,lora,180 +on7,0,0,24,1,0,1159,4432.001280,16,1,22305.001280,1830.032922,hint,lora,180 +on12,0,0,27,1,0,1850,4862.400000,16,3,39613.001280,2027.695590,hint,lora,180 +on3,0,0,25,1,0,1484,4504.300000,16,1,33945.001280,1902.519590,hint,lora,180 +on8,0,0,34,1,0,3722,6124.102560,16,11,69672.001280,2616.358771,hint,lora,180 +on10,0,0,34,1,0,3449,6354.703840,16,12,65651.001280,2783.896307,hint,lora,180 +on5,0,0,26,1,0,2414,4682.500000,16,2,53669.001280,1974.823795,hint,lora,180 +on1,0,0,34,1,0,3278,6125.400000,16,10,60815.001280,2659.518771,hint,lora,180 +on11,0,0,30,1,0,2535,5402.600000,16,6,41501.002560,2217.038771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,16,0,-1.000000,2183.650048,hint,lora,180 +on2,0,0,32,1,0,2996,5765.202560,16,8,55380.001280,2480.976000,hint,lora,180 +on9,0,0,27,1,0,1871,4862.300000,16,3,43457.001280,2071.912205,hint,lora,180 +on4,0,0,35,1,0,3821,6623.000000,16,13,73095.001280,2939.052723,hint,lora,180 +on6,0,0,27,1,0,2632,4981.797440,16,4,47760.002560,2056.383386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,17,0,-1.000000,2190.018458,hint,lora,180 +on6,0,0,27,1,0,2103,4919.401280,17,4,40632.001280,2065.135488,hint,lora,180 +on5,0,0,25,1,0,2344,4650.597440,17,3,50487.001280,1942.159181,hint,lora,180 +on11,0,0,29,1,0,2401,5223.201280,17,6,53951.001280,2250.976102,hint,lora,180 +on1,0,0,31,1,0,3815,5586.600000,17,8,75071.001280,2396.366362,hint,lora,180 +on2,0,0,26,1,0,3673,4731.800000,17,4,79788.001280,1983.358771,hint,lora,180 +on12,0,0,25,1,0,3101,4503.200000,17,1,69465.001280,1937.872000,hint,lora,180 +on10,0,0,26,1,0,1106,4684.298720,17,3,22365.001280,1980.375693,hint,lora,180 +on3,0,0,25,1,0,728,4505.194880,17,1,21419.001280,1940.974157,hint,lora,180 +on7,0,0,28,1,0,1834,5043.002560,17,5,34392.001280,2095.920819,hint,lora,180 +on8,0,0,27,1,0,3799,4862.200000,17,3,79242.001280,2034.511181,hint,lora,180 +on4,0,0,24,1,0,1577,4488.000000,17,1,31115.001280,1857.120000,hint,lora,180 +on9,0,0,26,1,0,1813,4681.702560,17,3,36744.001280,1920.937229,hint,lora,180 +on3,0,0,27,0,0,3988,4997.200000,18,5,-1.000000,2121.215386,hint,lora,180 +on5,0,0,25,1,0,323,4530.300000,18,2,9063.001280,1865.463795,hint,lora,180 +on8,0,0,25,1,0,83,4504.597440,18,1,3958.001280,1860.735386,hint,lora,180 +on1,0,0,27,1,0,2648,4863.797440,18,3,52378.001280,2047.327181,hint,lora,180 +on10,0,0,25,1,0,1072,4672.200000,18,2,28255.001280,1954.800000,hint,lora,180 +on4,0,0,25,1,0,1234,4505.397440,18,1,23318.001280,1899.887181,hint,lora,180 +on12,0,0,28,1,0,2274,5043.498720,18,4,48295.001280,2135.799078,hint,lora,180 +on2,0,0,29,1,0,3027,5223.800000,18,6,56223.001280,2187.663181,hint,lora,180 +on7,0,0,30,1,0,2255,5476.701280,18,7,41310.001280,2309.911488,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,18,0,-1.000000,2102.275277,hint,lora,180 +on6,0,0,27,1,0,714,4860.602560,18,3,13875.001280,1992.177024,hint,lora,180 +on11,0,0,28,1,0,1687,5044.198720,18,4,29900.001280,2088.879283,hint,lora,180 +on9,0,0,28,0,0,4219,5041.602560,18,4,-1.000000,2102.416614,hint,lora,180 +on7,0,0,30,0,0,4324,5402.201280,19,6,-1.000000,2310.271078,hint,lora,180 +on12,0,0,25,0,0,4078,4500.300000,19,2,-1.000000,1850.839590,hint,lora,180 +on3,0,0,25,1,0,1771,4501.000000,19,1,39644.001280,1861.312000,hint,lora,180 +on10,0,0,29,1,0,2876,5222.001280,19,5,55415.001280,2171.984102,hint,lora,180 +on11,0,0,30,1,0,3565,5548.401280,19,7,69651.001280,2370.943898,hint,lora,180 +on6,0,0,31,1,0,3758,5583.001280,19,7,75545.001280,2377.310874,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,19,0,-1.000000,2224.033024,hint,lora,180 +on1,0,0,27,1,0,2732,4866.302560,19,3,58844.001280,2158.761024,hint,lora,180 +on8,0,0,32,1,0,3629,5764.005120,19,8,62594.001280,2373.905434,hint,lora,180 +on9,0,0,25,1,0,2283,4640.501280,19,2,43622.001280,1902.408512,hint,lora,180 +on5,0,0,24,1,0,195,4321.001280,19,0,4658.001280,1773.680717,hint,lora,180 +on2,0,0,25,1,0,2154,4794.702560,19,5,47901.001280,2019.144614,hint,lora,180 +on4,0,0,27,1,0,1980,4862.800000,19,3,41289.001280,2006.703795,hint,lora,180 +on8,0,0,26,1,0,2664,4836.900000,20,3,51704.001280,2004.327590,hint,lora,180 +on6,0,0,25,1,0,1156,4501.300000,20,1,25262.001280,1833.480000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,20,0,-1.000000,2192.225024,hint,lora,180 +on2,0,0,29,1,0,1981,5222.400000,20,5,38581.001280,2194.255181,hint,lora,180 +on10,0,0,34,1,0,3228,6274.801280,20,11,60453.001280,2697.022464,hint,lora,180 +on5,0,0,25,1,0,742,4503.300000,20,1,18948.001280,1895.399795,hint,lora,180 +on11,0,0,28,1,0,1752,5041.702560,20,4,31956.001280,2056.584614,hint,lora,180 +on1,0,0,27,1,0,2908,4861.300000,20,3,61440.001280,2060.390976,hint,lora,180 +on4,0,0,26,1,0,2518,4681.600000,20,2,54172.001280,1956.063590,hint,lora,180 +on3,0,0,32,1,0,3815,5764.502560,20,9,71312.001280,2470.839590,hint,lora,180 +on9,0,0,30,1,0,3427,5404.401280,20,6,67611.001280,2286.576102,hint,lora,180 +on12,0,0,28,1,0,2599,5042.300000,20,4,48790.001280,2085.287590,hint,lora,180 +on7,0,0,25,1,0,2013,4545.000000,20,2,41455.001280,1883.455590,hint,lora,180 +on3,0,0,29,1,0,1310,5223.500000,21,5,26113.001280,2207.847386,hint,lora,180 +on4,0,0,32,1,0,2072,5830.006400,21,10,35105.001280,2472.385331,hint,lora,180 +on10,0,0,25,1,0,294,4502.000000,21,1,6021.001280,1836.448000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,21,0,-1.000000,2090.432614,hint,lora,180 +on7,0,0,27,1,0,2218,4861.900000,21,3,46181.001280,2020.823181,hint,lora,180 +on8,0,0,25,1,0,378,4501.300000,21,1,8490.002560,1854.567795,hint,lora,180 +on12,0,0,28,1,0,896,5042.900000,21,4,16800.001280,2079.863181,hint,lora,180 +on6,0,0,29,1,0,2054,5222.597440,21,5,36540.001280,2165.740928,hint,lora,180 +on1,0,0,25,1,0,883,4562.600000,21,2,21445.001280,1877.647795,hint,lora,180 +on5,0,0,26,1,0,543,4717.701280,21,3,12452.001280,1943.976717,hint,lora,180 +on2,0,0,30,1,0,1609,5403.100000,21,6,31447.001280,2294.710976,hint,lora,180 +on9,0,0,28,1,0,1248,5170.800000,21,5,22432.002560,2168.414976,hint,lora,180 +on11,0,0,33,1,0,2487,6003.200000,21,11,40727.001280,2545.198362,hint,lora,180 +on7,0,0,27,1,0,1953,4866.097440,22,4,40091.001280,2077.382566,hint,lora,180 +on10,0,0,29,1,0,2900,5224.102560,22,5,55534.001280,2187.352410,hint,lora,180 +on6,0,0,26,1,0,1677,4683.300000,22,2,36354.001280,1982.024205,hint,lora,180 +on4,0,0,24,1,0,180,4321.001280,22,0,4972.001280,1757.200922,hint,lora,180 +on5,0,0,25,1,0,2461,4501.200000,22,1,53971.001280,1848.000000,hint,lora,180 +on1,0,0,28,1,0,3073,5142.302560,22,6,64501.001280,2206.408205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,22,0,-1.000000,2139.554867,hint,lora,180 +on9,0,0,27,1,0,2333,4863.298720,22,3,47542.001280,2059.254669,hint,lora,180 +on8,0,0,27,1,0,3178,4862.498720,22,3,61225.001280,1984.567488,hint,lora,180 +on12,0,0,23,1,0,1376,4242.396160,22,0,30392.001280,1759.582464,hint,lora,180 +on3,0,0,27,0,0,4093,4861.302560,22,4,-1.000000,2059.928410,hint,lora,180 +on2,0,0,25,1,0,2118,4501.000000,22,1,45379.001280,1829.040000,hint,lora,180 +on11,0,0,25,1,0,755,4500.001280,22,1,17133.001280,1829.440717,hint,lora,180 +on9,0,0,27,1,0,1637,4862.900000,23,3,35332.001280,2062.695181,hint,lora,180 +on10,0,0,27,1,0,1516,4941.600000,23,4,29091.001280,2040.879181,hint,lora,180 +on1,0,0,27,1,0,562,4862.400000,23,3,13449.001280,2010.527386,hint,lora,180 +on6,0,0,26,1,0,1827,4683.300000,23,2,37956.001280,1945.543590,hint,lora,180 +on8,0,0,26,1,0,464,4681.801280,23,2,8369.001280,1901.472512,hint,lora,180 +on11,0,0,25,1,0,38,4502.300000,23,1,6529.001280,1870.488000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,23,0,-1.000000,2098.432205,hint,lora,180 +on2,0,0,27,1,0,2156,4863.498720,23,3,43877.001280,2065.302669,hint,lora,180 +on3,0,0,28,1,0,1466,5041.702560,23,4,25831.001280,2061.752205,hint,lora,180 +on4,0,0,35,1,0,2330,6305.007680,23,11,43276.001280,2744.640819,hint,lora,180 +on12,0,0,27,1,0,728,4862.900000,23,3,15029.001280,2037.191386,hint,lora,180 +on7,0,0,24,1,0,745,4399.300000,23,1,18956.001280,1830.503590,hint,lora,180 +on5,0,0,28,1,0,1118,5148.205120,23,5,22042.001280,2203.602048,hint,lora,180 +on2,0,0,28,1,0,1956,5044.001280,24,5,35035.001280,2085.056102,hint,lora,180 +on10,0,0,26,1,0,1920,4683.202560,24,2,37544.001280,1941.329434,hint,lora,180 +on6,0,0,25,1,0,842,4609.906400,24,4,18932.001280,1936.026560,hint,lora,180 +on12,0,0,24,1,0,701,4400.196160,24,1,15921.001280,1811.918874,hint,lora,180 +on3,0,0,27,1,0,1978,4863.200000,24,3,41529.001280,2061.614976,hint,lora,180 +on11,0,0,26,0,0,4455,4680.700000,24,2,-1.000000,1894.727386,hint,lora,180 +on9,0,0,30,1,0,2334,5403.302560,24,6,46650.602560,2282.872614,hint,lora,180 +on1,0,0,25,1,0,2243,4502.000000,24,1,51949.001280,1892.688410,hint,lora,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8719.001280,1753.600205,hint,lora,180 +on5,0,0,25,1,0,444,4507.300000,24,2,13439.001280,1993.832000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,24,0,-1.000000,2076.549530,hint,lora,180 +on7,0,0,25,1,0,1374,4503.001280,24,1,28041.001280,1869.040922,hint,lora,180 +on4,0,0,27,1,0,1592,4862.798720,24,3,30781.001280,1980.687488,hint,lora,180 +on3,0,0,24,0,0,4136,4320.000000,25,0,-1.000000,1785.760000,hint,lora,180 +on4,0,0,29,1,0,2421,5222.800000,25,6,49797.001280,2171.358771,hint,lora,180 +on2,0,0,25,1,0,1766,4502.997440,25,1,37918.001280,1884.127386,hint,lora,180 +on1,0,0,26,1,0,2752,4860.903840,25,2,54204.603840,2044.265536,hint,lora,180 +on6,0,0,25,1,0,1097,4502.500000,25,1,27979.001280,1902.455795,hint,lora,180 +on12,0,0,24,1,0,2533,4324.000000,25,0,54043.001280,1780.383590,hint,lora,180 +on9,0,0,26,1,0,1536,4682.000000,25,2,30761.002560,1933.023386,hint,lora,180 +on8,0,0,25,1,0,956,4502.000000,25,1,21960.001280,1864.000410,hint,lora,180 +on11,0,0,29,1,0,2715,5451.100000,25,6,64375.001280,2427.254566,hint,lora,180 +on7,0,0,25,1,0,828,4503.201280,25,1,20845.001280,1892.704512,hint,lora,180 +on0,1,11,23,0,0,0,4316.000000,25,0,-1.000000,2178.658253,hint,lora,180 +on5,0,0,26,1,0,2187,4807.500000,25,6,44921.001280,1992.007386,hint,lora,180 +on10,0,0,25,1,0,2755,4503.200000,25,1,59227.001280,1898.304000,hint,lora,180 +on11,0,0,25,1,0,276,4502.197440,26,1,7069.001280,1836.238976,hint,lora,180 +on7,0,0,25,1,0,1321,4500.001280,26,1,25898.001280,1834.032717,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,26,0,-1.000000,2142.082253,hint,lora,180 +on10,0,0,25,1,0,2424,4502.997440,26,1,53292.001280,1871.982976,hint,lora,180 +on6,0,0,26,1,0,2657,4684.300000,26,3,54192.001280,1952.023590,hint,lora,180 +on8,0,0,24,1,0,2340,4321.997440,26,0,48154.001280,1760.703181,hint,lora,180 +on3,0,0,24,0,0,4049,4320.000000,26,0,-1.000000,1776.800000,hint,lora,180 +on1,0,0,24,1,0,3560,4321.000000,26,0,74345.001280,1789.903795,hint,lora,180 +on4,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,hint,lora,180 +on2,0,0,25,1,0,3739,4501.300000,26,1,78402.001280,1853.431386,hint,lora,180 +on12,0,0,25,0,0,4137,4676.800000,26,2,-1.000000,1942.751795,hint,lora,180 +on9,0,0,26,1,0,566,4680.501280,26,3,10548.001280,1901.000512,hint,lora,180 +on5,0,0,27,1,0,3640,4861.100000,26,3,83503.000000,2105.511590,hint,lora,180 +on5,0,0,28,1,0,2556,5207.400000,27,5,46441.001280,2134.014976,hint,lora,180 +on1,0,0,31,1,0,2553,5708.902560,27,9,52503.001280,2513.512205,hint,lora,180 +on7,0,0,28,1,0,2624,5091.900000,27,5,49502.001280,2158.566771,hint,lora,180 +on8,0,0,28,1,0,3028,5041.800000,27,5,64735.001280,2137.950976,hint,lora,180 +on2,0,0,29,1,0,2815,5258.800000,27,6,59574.001280,2268.702771,hint,lora,180 +on10,0,0,33,1,0,3236,5946.502560,27,10,55445.001280,2539.655590,hint,lora,180 +on12,0,0,27,1,0,1828,4974.602560,27,4,34965.001280,2096.064614,hint,lora,180 +on4,0,0,25,1,0,1229,4504.000000,27,1,23466.001280,1882.032410,hint,lora,180 +on6,0,0,28,1,0,2212,5041.900000,27,4,42374.001280,2053.719181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,27,0,-1.000000,2164.289843,hint,lora,180 +on3,0,0,25,1,0,1518,4575.600000,27,3,29060.001280,1875.775590,hint,lora,180 +on9,0,0,27,1,0,2001,4862.300000,27,3,38295.002560,2034.759386,hint,lora,180 +on11,0,0,36,1,0,4013,6566.202560,27,13,66163.001280,2803.038976,hint,lora,180 +on1,0,0,26,1,0,2008,4689.600000,28,3,43456.001280,1974.847181,hint,lora,180 +on8,0,0,31,1,0,2641,5619.400000,28,8,54427.001280,2435.790566,hint,lora,180 +on3,0,0,28,1,0,2250,5044.101280,28,4,47488.001280,2181.863693,hint,lora,180 +on5,0,0,29,1,0,1898,5223.501280,28,5,38072.001280,2187.863898,hint,lora,180 +on7,0,0,24,1,0,1013,4481.200000,28,1,23804.001280,1846.720000,hint,lora,180 +on9,0,0,25,1,0,454,4502.000000,28,1,11171.001280,1836.127795,hint,lora,180 +on2,0,0,27,1,0,2971,4862.200000,28,4,59342.001280,2016.175590,hint,lora,180 +on12,0,0,27,1,0,1546,4861.900000,28,3,33055.001280,2026.694771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,28,0,-1.000000,2128.288614,hint,lora,180 +on10,0,0,26,1,0,2546,4681.600000,28,2,53826.001280,1950.943181,hint,lora,180 +on4,0,0,32,1,0,2220,5885.903840,28,9,41071.001280,2533.160307,hint,lora,180 +on11,0,0,27,1,0,1357,4862.203840,28,3,25764.001280,1986.513331,hint,lora,180 +on6,0,0,26,1,0,924,4681.400000,28,2,18238.001280,1901.616205,hint,lora,180 +on11,0,0,28,1,0,2171,5043.200000,29,4,45756.001280,2157.855590,hint,lora,180 +on1,0,0,24,1,0,1238,4394.200000,29,1,28324.001280,1810.544000,hint,lora,180 +on6,0,0,25,1,0,1943,4501.200000,29,1,37286.001280,1833.503386,hint,lora,180 +on8,0,0,28,1,0,1600,5045.397440,29,4,31866.001280,2151.630771,hint,lora,180 +on7,0,0,25,1,0,417,4501.001280,29,1,11760.001280,1874.016717,hint,lora,180 +on4,0,0,23,0,0,4260,4320.000000,29,0,-1.000000,1737.760000,hint,lora,180 +on9,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,hint,lora,180 +on2,0,0,27,1,0,1171,4864.498720,29,3,21871.001280,2040.919488,hint,lora,180 +on5,0,0,26,1,0,4040,4698.101280,29,4,85504.000000,1972.951693,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,29,0,-1.000000,2065.409843,hint,lora,180 +on12,0,0,29,1,0,1733,5224.802560,29,6,32669.001280,2186.561024,hint,lora,180 +on3,0,0,30,1,0,2185,5552.802560,29,7,39950.001280,2398.272000,hint,lora,180 +on10,0,0,25,1,0,1059,4501.998720,29,1,21644.001280,1829.391693,hint,lora,180 +on1,0,0,33,1,0,3357,5944.800000,30,11,70863.001280,2630.173747,hint,lora,180 +on11,0,0,26,1,0,1694,4682.000000,30,2,32561.001280,1921.184000,hint,lora,180 +on10,0,0,26,1,0,1923,4790.600000,30,3,39371.001280,2000.415795,hint,lora,180 +on12,0,0,26,1,0,1617,4681.000000,30,2,31814.001280,1902.032205,hint,lora,180 +on6,0,0,29,1,0,2440,5224.300000,30,5,45570.001280,2205.783590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,30,0,-1.000000,2193.473434,hint,lora,180 +on2,0,0,28,1,0,2416,5043.200000,30,4,48940.001280,2129.855181,hint,lora,180 +on3,0,0,31,1,0,3017,5585.100000,30,7,59504.002560,2408.054362,hint,lora,180 +on8,0,0,27,1,0,3524,5001.297440,30,4,67303.001280,2092.230157,hint,lora,180 +on7,0,0,30,1,0,2853,5402.702560,30,6,54962.001280,2275.784205,hint,lora,180 +on5,0,0,28,1,0,1875,5132.500000,30,5,39831.001280,2184.166976,hint,lora,180 +on9,0,0,30,1,0,3382,5521.103840,30,7,61886.001280,2342.808512,hint,lora,180 +on4,0,0,31,1,0,2909,5586.496160,30,7,50627.001280,2350.741850,hint,lora,180 +on11,0,0,31,1,0,2392,5583.300000,31,8,41344.001280,2319.526362,hint,lora,180 +on12,0,0,27,1,0,1884,4863.000000,31,3,37648.001280,2034.479386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,31,0,-1.000000,2073.474253,hint,lora,180 +on10,0,0,26,1,0,926,4683.300000,31,2,20142.001280,1946.119386,hint,lora,180 +on4,0,0,31,1,0,2401,5584.897440,31,7,44480.001280,2389.876928,hint,lora,180 +on5,0,0,27,1,0,1283,4862.300000,31,3,28539.001280,2034.088000,hint,lora,180 +on8,0,0,26,1,0,671,4683.900000,31,2,14986.001280,1985.687386,hint,lora,180 +on7,0,0,26,1,0,580,4682.506400,31,2,11429.001280,1944.618560,hint,lora,180 +on9,0,0,24,1,0,989,4412.300000,31,1,22598.001280,1845.623795,hint,lora,180 +on2,0,0,31,1,0,1648,5583.300000,31,7,30298.002560,2396.887386,hint,lora,180 +on6,0,0,25,1,0,448,4501.200000,31,1,8560.001280,1836.144000,hint,lora,180 +on3,0,0,28,1,0,1680,5167.700000,31,5,33375.001280,2184.711795,hint,lora,180 +on1,0,0,33,1,0,2936,6009.302560,31,11,49655.001280,2543.112000,hint,lora,180 +on10,0,0,28,1,0,3676,5201.102560,32,6,79759.001280,2263.849024,hint,lora,180 +on11,0,0,26,1,0,2220,4682.497440,32,2,45489.001280,1946.887386,hint,lora,180 +on5,0,0,25,1,0,1672,4502.000000,32,1,37818.001280,1855.040000,hint,lora,180 +on8,0,0,27,1,0,2379,4861.997440,32,3,52070.001280,2038.655181,hint,lora,180 +on7,0,0,28,1,0,3911,5089.900000,32,6,76772.001280,2115.766976,hint,lora,180 +on4,0,0,25,1,0,1810,4502.300000,32,1,40705.001280,1884.887795,hint,lora,180 +on2,0,0,30,0,0,4501,5543.403840,32,7,-1.000000,2318.992307,hint,lora,180 +on12,0,0,35,0,0,4407,6525.100000,32,14,-1.000000,2871.941747,hint,lora,180 +on1,0,0,29,0,0,4260,5366.300000,32,6,-1.000000,2282.998771,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,32,0,-1.000000,2188.704819,hint,lora,180 +on6,0,0,29,1,0,3266,5224.000000,32,5,71231.001280,2248.911386,hint,lora,180 +on9,0,0,28,1,0,3922,5041.600000,32,4,74242.001280,2058.831590,hint,lora,180 +on3,0,0,29,1,0,3274,5222.301280,32,5,63025.001280,2166.167693,hint,lora,180 +on2,0,0,28,1,0,2077,5044.097440,33,4,48437.001280,2195.686566,hint,lora,180 +on9,0,0,26,1,0,1982,4683.400000,33,2,41722.001280,1935.119590,hint,lora,180 +on12,0,0,26,1,0,1858,4682.301280,33,2,37636.001280,1937.048307,hint,lora,180 +on7,0,0,28,1,0,2688,5091.598720,33,6,51308.001280,2127.231078,hint,lora,180 +on5,0,0,25,1,0,1410,4501.997440,33,1,31302.001280,1874.143181,hint,lora,180 +on3,0,0,25,1,0,3136,4502.197440,33,1,64996.001280,1861.839181,hint,lora,180 +on8,0,0,24,1,0,553,4321.001280,33,0,14173.001280,1754.000922,hint,lora,180 +on4,0,0,26,1,0,1635,4683.500000,33,3,33304.001280,1952.456000,hint,lora,180 +on10,0,0,26,1,0,3342,4681.900000,33,3,69685.001280,1956.567386,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,33,0,-1.000000,2073.890662,hint,lora,180 +on11,0,0,24,0,0,4204,4320.000000,33,0,-1.000000,1756.800000,hint,lora,180 +on6,0,0,25,0,0,4440,4500.000000,33,1,-1.000000,1803.199590,hint,lora,180 +on1,0,0,27,1,0,2305,4861.601280,33,3,43503.001280,1973.392307,hint,lora,180 +on6,0,0,25,0,0,4377,4500.300000,34,1,-1.000000,1812.855590,hint,lora,180 +on9,0,0,27,1,0,3454,4860.501280,34,3,67860.001280,2012.520307,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,34,0,-1.000000,2058.850048,hint,lora,180 +on12,0,0,25,1,0,1374,4501.301280,34,1,28747.001280,1836.168717,hint,lora,180 +on11,0,0,26,1,0,1934,4684.700000,34,2,41408.001280,1985.160205,hint,lora,180 +on7,0,0,24,1,0,915,4390.001280,34,1,22075.001280,1863.808717,hint,lora,180 +on8,0,0,30,1,0,2366,5405.000000,34,6,49229.001280,2360.928000,hint,lora,180 +on1,0,0,26,1,0,1534,4682.500000,34,2,30312.001280,1910.023590,hint,lora,180 +on5,0,0,25,0,0,4325,4500.300000,34,1,-1.000000,1826.007590,hint,lora,180 +on4,0,0,27,1,0,3817,4973.101280,34,4,83279.000000,2139.320102,hint,lora,180 +on3,0,0,26,1,0,1955,4836.602560,34,3,36584.001280,2012.912614,hint,lora,180 +on2,0,0,28,0,0,4285,5190.701280,34,5,-1.000000,2196.263898,hint,lora,180 +on10,0,0,27,1,0,1833,4863.203840,34,3,35713.001280,2023.585946,hint,lora,180 +on4,0,0,33,1,0,2907,5973.600000,35,11,51371.001280,2503.070771,hint,lora,180 +on2,0,0,29,1,0,3087,5223.100000,35,5,64075.001280,2244.870976,hint,lora,180 +on8,0,0,29,1,0,2850,5362.800000,35,8,59235.001280,2296.462976,hint,lora,180 +on1,0,0,26,1,0,911,4681.500000,35,2,21428.001280,1934.344000,hint,lora,180 +on6,0,0,28,1,0,2212,5220.100000,35,5,40866.001280,2199.638976,hint,lora,180 +on11,0,0,29,1,0,2216,5265.194880,35,6,39528.001280,2179.661747,hint,lora,180 +on9,0,0,32,1,0,2582,5764.900000,35,8,47109.001280,2480.182157,hint,lora,180 +on12,0,0,29,1,0,2270,5223.397440,35,5,46740.002560,2229.550362,hint,lora,180 +on10,0,0,28,1,0,1342,5042.600000,35,4,27454.001280,2114.495590,hint,lora,180 +on5,0,0,27,1,0,1769,4925.100000,35,4,34714.001280,2042.247181,hint,lora,180 +on7,0,0,35,1,0,2816,6401.102560,35,12,55532.002560,2782.616000,hint,lora,180 +on3,0,0,26,1,0,1139,4856.500000,35,3,24838.001280,2034.056000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,35,0,-1.000000,2191.266458,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,36,0,-1.000000,2087.493939,hint,lora,180 +on11,0,0,28,1,0,1596,5044.494880,36,5,35051.001280,2136.837542,hint,lora,180 +on1,0,0,27,1,0,1297,4862.502560,36,3,22782.002560,1998.168614,hint,lora,180 +on9,0,0,25,1,0,2281,4503.003840,36,2,47325.001280,1889.729741,hint,lora,180 +on4,0,0,26,1,0,382,4839.696160,36,4,11864.001280,2024.422464,hint,lora,180 +on12,0,0,26,1,0,959,4683.300000,36,2,19684.001280,1967.175795,hint,lora,180 +on10,0,0,24,1,0,1990,4321.998720,36,0,43298.001280,1783.039693,hint,lora,180 +on2,0,0,25,1,0,653,4508.193600,36,1,16057.001280,1924.461645,hint,lora,180 +on7,0,0,31,1,0,1349,5583.002560,36,8,31247.001280,2391.024000,hint,lora,180 +on8,0,0,29,1,0,2004,5381.201280,36,7,37114.001280,2267.087693,hint,lora,180 +on5,0,0,26,1,0,151,4682.997440,36,2,5933.002560,1928.943181,hint,lora,180 +on3,0,0,24,0,0,4194,4320.000000,36,0,-1.000000,1748.640000,hint,lora,180 +on6,0,0,26,1,0,1227,4688.498720,36,2,26292.002560,1998.983898,hint,lora,180 +on12,0,0,26,1,0,1622,4682.000000,37,2,34737.001280,1948.800000,hint,lora,180 +on6,0,0,32,1,0,2803,5817.301280,37,9,52093.001280,2474.582464,hint,lora,180 +on7,0,0,28,1,0,1266,5042.601280,37,4,22954.001280,2115.440102,hint,lora,180 +on8,0,0,25,1,0,360,4502.000000,37,1,8792.602560,1856.656410,hint,lora,180 +on2,0,0,30,1,0,2131,5403.901280,37,6,38672.001280,2222.599283,hint,lora,180 +on10,0,0,25,1,0,1525,4560.000000,37,2,32305.001280,1885.455590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,37,0,-1.000000,2095.392614,hint,lora,180 +on5,0,0,27,1,0,2088,4861.500000,37,3,43338.001280,2009.351181,hint,lora,180 +on11,0,0,32,1,0,2443,5764.400000,37,8,45556.001280,2479.838566,hint,lora,180 +on1,0,0,30,1,0,2775,5458.302560,37,7,49501.001280,2240.071795,hint,lora,180 +on4,0,0,26,1,0,844,4682.701280,37,2,19325.001280,1956.232307,hint,lora,180 +on3,0,0,25,1,0,772,4569.300000,37,2,14564.001280,1873.799795,hint,lora,180 +on9,0,0,28,1,0,1475,5044.000000,37,4,27188.001280,2119.055181,hint,lora,180 +on5,0,0,28,1,0,1549,5042.503840,38,4,32228.001280,2114.153536,hint,lora,180 +on4,0,0,31,1,0,2595,5583.901280,38,7,47633.001280,2357.767693,hint,lora,180 +on10,0,0,26,1,0,1252,4684.598720,38,2,28827.001280,2005.359283,hint,lora,180 +on9,0,0,25,1,0,1073,4501.200000,38,1,21047.001280,1829.328000,hint,lora,180 +on12,0,0,29,1,0,1841,5223.900000,38,5,40949.001280,2240.551181,hint,lora,180 +on6,0,0,25,1,0,3398,4500.201280,38,1,70578.001280,1847.440717,hint,lora,180 +on11,0,0,27,1,0,2410,4861.698720,38,3,52577.001280,2029.366874,hint,lora,180 +on1,0,0,27,1,0,3192,4861.501280,38,3,62582.001280,2038.520307,hint,lora,180 +on3,0,0,28,1,0,1808,5064.301280,38,5,35787.001280,2121.623693,hint,lora,180 +on7,0,0,32,1,0,3181,5763.901280,38,9,59640.001280,2474.103488,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,38,0,-1.000000,2196.354048,hint,lora,180 +on2,0,0,26,1,0,1185,4683.201280,38,2,23381.001280,1929.024307,hint,lora,180 +on8,0,0,26,1,0,3870,4681.300000,38,2,76733.001280,1932.087386,hint,lora,180 +on9,0,0,25,1,0,3372,4502.300000,39,1,71500.001280,1894.840000,hint,lora,180 +on4,0,0,26,1,0,3522,4756.198720,39,4,74516.001280,1960.030669,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,39,0,-1.000000,2074.275482,hint,lora,180 +on5,0,0,24,1,0,1321,4380.500000,39,1,31621.001280,1810.135795,hint,lora,180 +on2,0,0,25,1,0,1696,4505.301280,39,1,35759.001280,1874.728922,hint,lora,180 +on6,0,0,28,1,0,2155,5041.201280,39,5,41703.001280,2078.272102,hint,lora,180 +on7,0,0,24,0,0,4266,4320.000000,39,0,-1.000000,1736.800000,hint,lora,180 +on10,0,0,25,1,0,293,4504.201280,39,1,5156.001280,1861.841331,hint,lora,180 +on1,0,0,25,1,0,3057,4500.001280,39,1,59810.001280,1825.600717,hint,lora,180 +on12,0,0,27,1,0,1990,4860.997440,39,3,36949.001280,1976.094362,hint,lora,180 +on8,0,0,24,0,0,4296,4320.000000,39,0,-1.000000,1759.040000,hint,lora,180 +on11,0,0,24,1,0,18,4324.002560,39,0,2794.001280,1786.305434,hint,lora,180 +on3,0,0,26,1,0,3093,4683.300000,39,2,65900.002560,1952.968000,hint,lora,180 +on12,0,0,28,0,0,4479,5041.400000,40,5,-1.000000,2068.607181,hint,lora,180 +on9,0,0,25,1,0,3035,4562.702560,40,2,64307.401280,1864.473024,hint,lora,180 +on3,0,0,31,1,0,2776,5671.103840,40,8,54067.001280,2414.327898,hint,lora,180 +on2,0,0,26,1,0,1101,4682.000000,40,2,24074.001280,1950.463386,hint,lora,180 +on7,0,0,27,1,0,2197,4862.200000,40,3,46606.001280,2017.599590,hint,lora,180 +on10,0,0,26,1,0,2054,4835.300000,40,3,47570.001280,2097.432205,hint,lora,180 +on11,0,0,27,1,0,1659,4862.006400,40,3,30806.001280,2000.802560,hint,lora,180 +on4,0,0,27,1,0,2831,4863.600000,40,3,58075.001280,2064.319590,hint,lora,180 +on6,0,0,26,1,0,1731,4682.201280,40,2,32913.001280,1925.696512,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,40,0,-1.000000,2135.491072,hint,lora,180 +on1,0,0,27,1,0,1662,4865.103840,40,3,37077.001280,2128.825536,hint,lora,180 +on8,0,0,26,1,0,1941,4683.901280,40,2,43352.001280,2009.144102,hint,lora,180 +on5,0,0,25,1,0,891,4502.000000,40,1,18415.001280,1838.623590,hint,lora,180 +on5,0,0,30,1,0,2472,5404.597440,41,6,51846.001280,2318.302566,hint,lora,180 +on8,0,0,35,1,0,3374,6304.601280,41,12,55786.001280,2687.390259,hint,lora,180 +on12,0,0,27,1,0,1056,4862.300000,41,3,18696.001280,2011.272205,hint,lora,180 +on11,0,0,28,1,0,1843,5160.801280,41,5,30495.001280,2113.856512,hint,lora,180 +on1,0,0,24,1,0,80,4446.998720,41,1,4139.001280,1833.951488,hint,lora,180 +on9,0,0,30,1,0,2224,5452.601280,41,7,47519.001280,2406.783488,hint,lora,180 +on7,0,0,28,1,0,1415,5043.301280,41,4,27973.001280,2113.736102,hint,lora,180 +on10,0,0,28,1,0,2018,5042.600000,41,4,36165.001280,2061.199795,hint,lora,180 +on6,0,0,29,1,0,1994,5221.300000,41,5,35202.001280,2166.326771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,41,0,-1.000000,2175.936819,hint,lora,180 +on4,0,0,25,1,0,672,4530.600000,41,2,17093.001280,1879.231795,hint,lora,180 +on2,0,0,33,1,0,2646,5943.601280,41,9,41827.001280,2454.079283,hint,lora,180 +on3,0,0,30,1,0,2025,5564.901280,41,7,44958.001280,2415.048307,hint,lora,180 +on6,0,0,25,1,0,504,4501.000000,42,1,10376.001280,1826.000614,hint,lora,180 +on1,0,0,28,1,0,2699,5042.102560,42,5,51798.001280,2080.568410,hint,lora,180 +on3,0,0,26,1,0,2162,4681.600000,42,2,44719.001280,1939.887590,hint,lora,180 +on5,0,0,25,1,0,2528,4502.300000,42,1,55090.001280,1885.623795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,42,0,-1.000000,2113.859277,hint,lora,180 +on11,0,0,26,1,0,2547,4683.300000,42,2,49322.001280,1930.919590,hint,lora,180 +on8,0,0,25,1,0,1324,4501.200000,42,1,31201.001280,1843.680000,hint,lora,180 +on10,0,0,31,1,0,3204,5583.602560,42,7,64642.001280,2392.111795,hint,lora,180 +on12,0,0,25,1,0,1716,4502.202560,42,1,34640.001280,1855.712614,hint,lora,180 +on7,0,0,29,1,0,2875,5293.400000,42,6,60947.001280,2256.494157,hint,lora,180 +on9,0,0,24,1,0,0,4322.608960,42,1,380.602560,1783.076403,hint,lora,180 +on2,0,0,26,1,0,1568,4683.600000,42,2,36768.001280,2004.190566,hint,lora,180 +on4,0,0,25,1,0,1889,4502.600000,42,1,42463.001280,1893.264000,hint,lora,180 +on8,0,0,24,1,0,1224,4463.300000,43,1,28778.001280,1842.343590,hint,lora,180 +on9,0,0,26,1,0,2372,4768.900000,43,3,50177.001280,1984.839590,hint,lora,180 +on2,0,0,25,1,0,900,4502.605120,43,1,20073.602560,1860.354867,hint,lora,180 +on7,0,0,26,1,0,2660,4684.600000,43,3,58517.001280,2034.863386,hint,lora,180 +on6,0,0,31,1,0,2901,5584.202560,43,7,56332.001280,2378.655795,hint,lora,180 +on4,0,0,30,1,0,2468,5404.000000,43,6,46897.001280,2302.334976,hint,lora,180 +on12,0,0,28,1,0,3058,5042.200000,43,4,66435.001280,2186.111181,hint,lora,180 +on11,0,0,25,1,0,1599,4502.300000,43,1,32963.001280,1850.648000,hint,lora,180 +on1,0,0,31,1,0,3320,5583.800000,43,8,64385.001280,2404.269747,hint,lora,180 +on10,0,0,30,1,0,2373,5404.400000,43,6,40931.001280,2289.806566,hint,lora,180 +on3,0,0,26,1,0,1696,4682.900000,43,2,37186.001280,1965.847795,hint,lora,180 +on5,0,0,28,1,0,2862,5042.100000,43,4,53493.001280,2070.087181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,43,0,-1.000000,2161.953843,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,44,0,-1.000000,2027.972301,hint,lora,180 +on10,0,0,24,1,0,180,4325.000000,44,0,4529.001280,1832.624819,hint,lora,180 +on2,0,0,25,1,0,1052,4589.098720,44,2,24462.001280,1919.495078,hint,lora,180 +on1,0,0,26,0,0,4246,4761.300000,44,3,-1.000000,1958.759590,hint,lora,180 +on8,0,0,25,1,0,1447,4603.300000,44,2,32611.001280,1964.216000,hint,lora,180 +on3,0,0,26,1,0,1252,4682.600000,44,3,28663.001280,1942.640000,hint,lora,180 +on9,0,0,27,1,0,1639,4863.500000,44,3,28963.001280,2006.840000,hint,lora,180 +on4,0,0,28,1,0,1164,5046.198720,44,4,20921.001280,2158.015488,hint,lora,180 +on12,0,0,26,1,0,449,4683.401280,44,2,11782.001280,1949.232717,hint,lora,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,hint,lora,180 +on5,0,0,30,1,0,2172,5402.501280,44,7,38721.001280,2284.615078,hint,lora,180 +on7,0,0,25,1,0,479,4501.300000,44,1,9801.001280,1831.640000,hint,lora,180 +on6,0,0,27,1,0,846,4865.498720,44,3,15435.001280,2019.063488,hint,lora,180 +on4,0,0,25,1,0,2310,4586.600000,45,2,48622.001280,1924.351795,hint,lora,180 +on6,0,0,30,1,0,2946,5404.000000,45,6,55656.001280,2285.694976,hint,lora,180 +on11,0,0,29,1,0,2032,5225.102560,45,6,43789.001280,2298.424000,hint,lora,180 +on12,0,0,28,1,0,2987,5043.100000,45,5,58010.001280,2139.062771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,45,0,-1.000000,2156.163072,hint,lora,180 +on2,0,0,24,1,0,1080,4321.997440,45,0,21766.001280,1759.423181,hint,lora,180 +on1,0,0,26,1,0,3477,4781.600000,45,4,75016.001280,2017.759795,hint,lora,180 +on10,0,0,25,1,0,1650,4510.503840,45,2,33154.001280,1875.512717,hint,lora,180 +on9,0,0,28,1,0,2684,5209.901280,45,6,53771.001280,2180.199898,hint,lora,180 +on8,0,0,25,1,0,1778,4502.393600,45,1,37752.001280,1830.621645,hint,lora,180 +on5,0,0,32,1,0,3586,5764.901280,45,8,62040.001280,2412.423898,hint,lora,180 +on7,0,0,31,1,0,3731,5700.298720,45,10,72082.001280,2425.510259,hint,lora,180 +on3,0,0,26,1,0,1503,4682.000000,45,2,31808.001280,1910.352000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,46,0,-1.000000,2142.529843,hint,lora,180 +on8,0,0,28,1,0,3012,5042.102560,46,4,60612.001280,2122.040410,hint,lora,180 +on5,0,0,25,1,0,1674,4502.297440,46,1,35669.001280,1870.071181,hint,lora,180 +on10,0,0,24,1,0,568,4320.001280,46,0,17381.001280,1778.080717,hint,lora,180 +on6,0,0,26,1,0,2608,4681.000000,46,2,49265.001280,1904.239590,hint,lora,180 +on1,0,0,25,1,0,1926,4501.000000,46,1,41739.001280,1828.943795,hint,lora,180 +on12,0,0,27,1,0,2711,4863.900000,46,3,54818.001280,2065.591386,hint,lora,180 +on2,0,0,27,1,0,2985,4863.397440,46,3,61851.001280,2063.278771,hint,lora,180 +on11,0,0,29,1,0,2677,5223.000000,46,6,53223.001280,2207.406566,hint,lora,180 +on3,0,0,26,1,0,2253,4682.700000,46,2,44021.001280,1904.983795,hint,lora,180 +on9,0,0,24,1,0,1332,4321.001280,46,0,29642.001280,1789.488717,hint,lora,180 +on4,0,0,26,1,0,1798,4683.497440,46,3,37528.001280,1981.526976,hint,lora,180 +on7,0,0,26,1,0,3195,4683.600000,46,3,65137.001280,1988.847386,hint,lora,180 +on1,0,0,29,0,0,4337,5565.896160,47,8,-1.000000,2397.509440,hint,lora,180 +on3,0,0,26,1,0,1749,4744.600000,47,3,34825.001280,1966.991795,hint,lora,180 +on6,0,0,24,1,0,1315,4390.300000,47,1,30076.001280,1838.616000,hint,lora,180 +on4,0,0,29,1,0,2975,5223.098720,47,5,56241.001280,2209.366054,hint,lora,180 +on12,0,0,26,1,0,2198,4832.301280,47,3,43135.001280,1967.096102,hint,lora,180 +on11,0,0,26,1,0,1773,4811.300000,47,3,37814.001280,2006.184205,hint,lora,180 +on8,0,0,31,1,0,2487,5584.900000,47,7,44076.001280,2393.656000,hint,lora,180 +on5,0,0,32,1,0,4166,5763.602560,47,8,84966.000000,2500.288205,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,47,0,-1.000000,2200.768410,hint,lora,180 +on9,0,0,25,1,0,1130,4502.000000,47,1,27195.001280,1846.175795,hint,lora,180 +on2,0,0,34,1,0,3239,6174.302560,47,11,61387.001280,2710.039795,hint,lora,180 +on10,0,0,28,0,0,3989,5041.400000,47,5,-1.000000,2152.286976,hint,lora,180 +on7,0,0,32,1,0,2964,5843.498720,47,9,51962.001280,2457.830259,hint,lora,180 +on2,0,0,26,1,0,1323,4807.500000,48,4,23181.001280,1960.807386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,48,0,-1.000000,2108.930253,hint,lora,180 +on12,0,0,31,1,0,2288,5583.597440,48,8,42903.001280,2363.677747,hint,lora,180 +on6,0,0,28,1,0,1658,5043.900000,48,4,30568.001280,2095.127181,hint,lora,180 +on4,0,0,24,1,0,328,4459.196160,48,1,7555.001280,1855.854874,hint,lora,180 +on9,0,0,25,1,0,814,4657.500000,48,2,15941.001280,1941.399795,hint,lora,180 +on11,0,0,27,1,0,1018,4863.703840,48,3,21292.001280,2032.377741,hint,lora,180 +on7,0,0,26,1,0,2210,4681.600000,48,2,47218.001280,1940.799386,hint,lora,180 +on5,0,0,24,1,0,548,4321.000000,48,0,12844.001280,1755.760000,hint,lora,180 +on3,0,0,27,1,0,2131,4862.900000,48,4,43875.001280,2051.719386,hint,lora,180 +on8,0,0,28,1,0,1336,5043.601280,48,4,26702.001280,2120.000102,hint,lora,180 +on10,0,0,28,1,0,1968,5041.800000,48,4,34781.001280,2083.022976,hint,lora,180 +on1,0,0,29,1,0,2065,5397.200000,48,6,38212.001280,2277.710362,hint,lora,180 +on3,0,0,32,1,0,2090,5764.703840,49,8,41115.001280,2483.064512,hint,lora,180 +on7,0,0,26,1,0,1451,4682.496160,49,2,33014.001280,1945.574669,hint,lora,180 +on11,0,0,25,1,0,154,4502.000000,49,1,4368.001280,1861.999795,hint,lora,180 +on6,0,0,29,1,0,2164,5222.300000,49,5,36942.001280,2155.638976,hint,lora,180 +on10,0,0,31,1,0,1573,5583.205120,49,7,29240.001280,2379.089638,hint,lora,180 +on1,0,0,32,1,0,2199,5765.400000,49,8,46777.001280,2553.230566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,49,0,-1.000000,2111.073434,hint,lora,180 +on5,0,0,25,1,0,906,4590.300000,49,2,20843.001280,1892.119795,hint,lora,180 +on12,0,0,28,1,0,1168,5042.900000,49,4,23662.001280,2110.551181,hint,lora,180 +on8,0,0,25,1,0,371,4504.300000,49,1,11779.001280,1932.327590,hint,lora,180 +on4,0,0,25,1,0,327,4501.000000,49,1,7375.001280,1831.935386,hint,lora,180 +on9,0,0,24,1,0,1107,4328.300000,49,1,25543.001280,1784.823590,hint,lora,180 +on2,0,0,31,1,0,2520,5583.700000,49,8,49955.001280,2398.630157,hint,lora,180 +on4,0,0,25,1,0,1692,4503.300000,50,1,35741.001280,1867.688205,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,50,0,-1.000000,2099.651277,hint,lora,180 +on2,0,0,30,1,0,2062,5434.601280,50,7,37723.001280,2326.063078,hint,lora,180 +on3,0,0,29,1,0,1241,5226.501280,50,5,23183.001280,2217.032512,hint,lora,180 +on6,0,0,25,1,0,350,4665.601280,50,2,9320.001280,1964.528512,hint,lora,180 +on1,0,0,25,1,0,707,4501.000000,50,1,13049.001280,1828.784000,hint,lora,180 +on5,0,0,31,1,0,2394,5584.200000,50,7,46587.001280,2370.159181,hint,lora,180 +on12,0,0,24,1,0,733,4476.300000,50,1,20930.001280,1913.048614,hint,lora,180 +on10,0,0,33,0,0,4879,6115.101280,50,11,-1.000000,2569.510669,hint,lora,180 +on9,0,0,25,1,0,1304,4623.503840,50,2,28558.001280,1921.401536,hint,lora,180 +on8,0,0,27,1,0,849,4866.798720,50,3,15907.001280,2088.207283,hint,lora,180 +on7,0,0,28,1,0,1388,5045.801280,50,4,28983.001280,2175.280512,hint,lora,180 +on11,0,0,30,0,0,4685,5405.401280,50,7,-1.000000,2200.319283,hint,lora,180 +on7,0,0,24,1,0,1851,4499.300000,51,1,38848.001280,1860.375590,hint,lora,180 +on4,0,0,24,1,0,540,4320.001280,51,0,12833.001280,1753.600717,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,51,0,-1.000000,2148.929229,hint,lora,180 +on6,0,0,25,1,0,2003,4559.200000,51,2,42428.001280,1896.575590,hint,lora,180 +on9,0,0,28,1,0,2921,5166.498720,51,6,55722.001280,2163.990464,hint,lora,180 +on8,0,0,29,1,0,3105,5394.300000,51,7,62722.001280,2315.494362,hint,lora,180 +on11,0,0,25,1,0,2415,4502.300000,51,1,52404.001280,1875.063795,hint,lora,180 +on5,0,0,26,1,0,1394,4683.300000,51,3,35250.001280,1996.695590,hint,lora,180 +on3,0,0,25,1,0,2319,4503.300000,51,1,48031.001280,1861.383795,hint,lora,180 +on12,0,0,24,1,0,1213,4320.997440,51,0,27668.001280,1761.679181,hint,lora,180 +on10,0,0,26,1,0,3126,4682.000000,51,2,60181.001280,1942.143386,hint,lora,180 +on2,0,0,27,1,0,2292,4861.501280,51,3,44057.001280,1976.024102,hint,lora,180 +on1,0,0,27,1,0,3331,4915.500000,51,4,67940.001280,2035.014566,hint,lora,180 +on8,0,0,28,1,0,2202,5141.600000,52,6,44686.001280,2165.055590,hint,lora,180 +on9,0,0,28,1,0,734,5042.197440,52,4,15016.001280,2115.071181,hint,lora,180 +on7,0,0,25,1,0,1065,4501.300000,52,1,23530.001280,1853.240000,hint,lora,180 +on3,0,0,25,1,0,1572,4553.900000,52,2,39724.001280,1923.959795,hint,lora,180 +on10,0,0,25,1,0,1228,4501.301280,52,1,29098.001280,1855.848717,hint,lora,180 +on12,0,0,26,1,0,1253,4683.500000,52,2,25452.001280,1956.552000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,52,0,-1.000000,2167.938458,hint,lora,180 +on2,0,0,27,0,0,4362,4860.600000,52,3,-1.000000,2011.598976,hint,lora,180 +on5,0,0,26,1,0,1002,4685.496160,52,2,19900.002560,1933.142669,hint,lora,180 +on11,0,0,31,1,0,2423,5640.597440,52,9,49025.001280,2423.485952,hint,lora,180 +on4,0,0,33,1,0,2853,6030.902560,52,11,51319.001280,2568.166362,hint,lora,180 +on6,0,0,26,1,0,1892,4684.901280,52,2,41940.001280,2013.288512,hint,lora,180 +on1,0,0,26,1,0,1442,4683.600000,52,2,33226.001280,2005.327590,hint,lora,180 +on12,0,0,29,0,0,4253,5363.800000,53,7,-1.000000,2298.494771,hint,lora,180 +on10,0,0,25,1,0,1309,4644.198720,53,2,27392.001280,1971.024102,hint,lora,180 +on6,0,0,26,1,0,1905,4681.202560,53,2,37998.001280,1901.489229,hint,lora,180 +on7,0,0,26,0,0,4217,4680.300000,53,2,-1.000000,1951.478771,hint,lora,180 +on11,0,0,27,1,0,1605,4871.901280,53,4,31858.001280,1995.368307,hint,lora,180 +on2,0,0,30,1,0,3214,5488.803840,53,7,61894.001280,2336.145331,hint,lora,180 +on4,0,0,24,1,0,720,4322.000000,53,0,15738.001280,1776.320410,hint,lora,180 +on3,0,0,29,1,0,1884,5223.700000,53,5,33104.001280,2176.087181,hint,lora,180 +on9,0,0,26,1,0,1306,4682.000000,53,2,24903.001280,1923.903590,hint,lora,180 +on5,0,0,27,1,0,2204,4930.400000,53,4,44502.001280,2051.406976,hint,lora,180 +on8,0,0,31,1,0,2479,5747.303840,53,8,49977.001280,2520.585331,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,53,0,-1.000000,2087.651072,hint,lora,180 +on1,0,0,25,1,0,958,4501.503840,53,2,21318.001280,1838.249536,hint,lora,180 +on12,0,0,26,1,0,2902,4681.001280,54,2,59383.001280,1900.784512,hint,lora,180 +on6,0,0,25,1,0,2364,4501.000000,54,1,49008.001280,1858.048000,hint,lora,180 +on3,0,0,25,1,0,2160,4502.000000,54,1,45818.602560,1857.232410,hint,lora,180 +on11,0,0,32,1,0,4483,5764.700000,54,8,80630.001280,2432.069952,hint,lora,180 +on7,0,0,26,1,0,2641,4682.300000,54,2,50648.001280,1932.727590,hint,lora,180 +on9,0,0,25,1,0,2917,4554.000000,54,2,61560.001280,1884.800000,hint,lora,180 +on4,0,0,27,1,0,3541,4862.500000,54,3,69508.001280,2034.167795,hint,lora,180 +on8,0,0,30,1,0,3281,5404.201280,54,6,67576.001280,2336.815488,hint,lora,180 +on5,0,0,31,0,0,4137,5583.000000,54,7,-1.000000,2420.349747,hint,lora,180 +on2,0,0,32,1,0,4570,5762.802560,54,8,86467.000000,2414.224000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,54,0,-1.000000,2174.432410,hint,lora,180 +on1,0,0,30,1,0,3580,5404.601280,54,6,75291.001280,2349.695488,hint,lora,180 +on10,0,0,30,1,0,4020,5402.603840,54,6,79352.001280,2282.705536,hint,lora,180 +on9,0,0,33,1,0,2978,5951.702560,55,10,59440.001280,2581.207590,hint,lora,180 +on11,0,0,30,1,0,3183,5459.100000,55,8,66872.001280,2372.406157,hint,lora,180 +on3,0,0,27,1,0,1531,4864.200000,55,3,38531.001280,2098.383590,hint,lora,180 +on10,0,0,26,1,0,434,4683.506400,55,3,8970.001280,1990.010765,hint,lora,180 +on5,0,0,27,1,0,3013,4988.597440,55,4,64915.001280,2142.590566,hint,lora,180 +on8,0,0,26,1,0,938,4682.602560,55,2,20313.001280,1909.745024,hint,lora,180 +on1,0,0,31,1,0,3049,5582.800000,55,7,56958.001280,2365.262362,hint,lora,180 +on12,0,0,28,1,0,1592,5042.900000,55,4,33178.001280,2128.551386,hint,lora,180 +on6,0,0,31,1,0,2307,5585.697440,55,8,48463.001280,2430.598771,hint,lora,180 +on2,0,0,33,1,0,2834,6072.501280,55,12,53597.001280,2604.151488,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,55,0,-1.000000,2232.098458,hint,lora,180 +on4,0,0,26,1,0,875,4682.201280,55,2,16914.001280,1914.752512,hint,lora,180 +on7,0,0,25,1,0,306,4500.997440,55,1,5505.001280,1825.999181,hint,lora,180 +on8,0,0,26,1,0,1760,4684.501280,56,2,33559.001280,2013.336102,hint,lora,180 +on4,0,0,29,1,0,2940,5328.500000,56,7,55895.001280,2260.950771,hint,lora,180 +on5,0,0,27,1,0,2675,4861.000000,56,3,51535.001280,2005.039590,hint,lora,180 +on10,0,0,28,1,0,2458,5042.200000,56,4,49835.001280,2098.991795,hint,lora,180 +on9,0,0,29,0,0,4505,5222.100000,56,5,-1.000000,2166.710771,hint,lora,180 +on1,0,0,33,1,0,3661,5942.901280,56,9,60825.001280,2476.647283,hint,lora,180 +on7,0,0,27,1,0,2152,4865.598720,56,3,42080.001280,2058.159488,hint,lora,180 +on3,0,0,27,1,0,2174,4863.500000,56,3,46882.001280,2041.463590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,56,0,-1.000000,2087.265843,hint,lora,180 +on12,0,0,26,1,0,1933,4767.497440,56,3,36913.001280,1963.447181,hint,lora,180 +on2,0,0,25,1,0,1486,4501.200000,56,1,30468.001280,1829.328000,hint,lora,180 +on6,0,0,30,1,0,3204,5403.097440,56,6,64616.001280,2285.749542,hint,lora,180 +on11,0,0,33,1,0,3643,6209.898720,56,12,64965.001280,2671.414464,hint,lora,180 +on3,0,0,29,1,0,2896,5383.100000,57,8,57294.001280,2334.743181,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,57,0,-1.000000,2167.072614,hint,lora,180 +on10,0,0,31,1,0,3493,5584.400000,57,7,65193.001280,2376.126157,hint,lora,180 +on6,0,0,30,1,0,3296,5571.301280,57,7,64334.001280,2378.391693,hint,lora,180 +on7,0,0,27,1,0,2085,4948.800000,57,4,40295.001280,2035.503795,hint,lora,180 +on12,0,0,27,1,0,3107,4962.800000,57,4,58983.001280,2096.366976,hint,lora,180 +on5,0,0,35,1,0,4171,6304.797440,57,11,73321.001280,2720.956518,hint,lora,180 +on8,0,0,25,1,0,1923,4665.200000,57,2,38440.001280,1934.992000,hint,lora,180 +on9,0,0,26,1,0,2380,4682.200000,57,2,47986.001280,1919.920205,hint,lora,180 +on11,0,0,25,1,0,2157,4562.700000,57,2,46511.001280,1923.911795,hint,lora,180 +on1,0,0,34,0,0,4797,6303.101280,57,12,-1.000000,2676.087078,hint,lora,180 +on4,0,0,31,1,0,3759,5583.600000,57,7,68616.001280,2322.814566,hint,lora,180 +on2,0,0,28,1,0,2521,5154.901280,57,5,51112.001280,2193.608717,hint,lora,180 +on9,0,0,25,1,0,3580,4501.300000,58,1,75538.001280,1846.184000,hint,lora,180 +on11,0,0,25,1,0,175,4501.301280,58,2,3890.001280,1855.400512,hint,lora,180 +on12,0,0,29,1,0,1808,5369.497440,58,6,34592.001280,2296.549133,hint,lora,180 +on1,0,0,27,1,0,1227,4862.500000,58,3,22796.001280,1984.791386,hint,lora,180 +on4,0,0,24,1,0,9,4322.996160,58,0,3400.001280,1783.438874,hint,lora,180 +on5,0,0,30,1,0,1913,5403.800000,58,8,36488.001280,2282.222771,hint,lora,180 +on3,0,0,26,1,0,586,4686.000000,58,2,11991.001280,1959.728205,hint,lora,180 +on10,0,0,29,1,0,2116,5221.901280,58,5,41786.001280,2187.366669,hint,lora,180 +on8,0,0,26,1,0,848,4683.402560,58,2,15194.001280,1956.417229,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,58,0,-1.000000,2086.051072,hint,lora,180 +on2,0,0,27,1,0,1376,5030.098720,58,4,28177.001280,2130.967283,hint,lora,180 +on7,0,0,28,1,0,1124,5044.000000,58,4,19272.001280,2092.975590,hint,lora,180 +on6,0,0,27,1,0,1491,4863.503840,58,3,30470.001280,2035.593741,hint,lora,180 +on8,0,0,25,1,0,207,4501.400000,59,1,5618.001280,1842.048000,hint,lora,180 +on3,0,0,26,1,0,827,4682.000000,59,2,17225.001280,1929.824000,hint,lora,180 +on5,0,0,29,1,0,1725,5222.100000,59,5,31642.001280,2171.031590,hint,lora,180 +on10,0,0,25,1,0,1201,4501.000000,59,1,26786.001280,1835.344000,hint,lora,180 +on4,0,0,27,1,0,2040,4862.897440,59,3,44169.001280,2055.654157,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2124.352614,hint,lora,180 +on2,0,0,31,1,0,2077,5648.002560,59,8,35655.001280,2360.000205,hint,lora,180 +on12,0,0,35,1,0,2676,6305.800000,59,13,47596.001280,2734.701952,hint,lora,180 +on9,0,0,27,1,0,2305,4949.500000,59,4,40089.001280,2056.598566,hint,lora,180 +on11,0,0,29,1,0,2108,5359.900000,59,6,36682.002560,2239.190566,hint,lora,180 +on7,0,0,26,1,0,578,4682.401280,59,2,9322.001280,1930.192512,hint,lora,180 +on1,0,0,25,1,0,573,4501.000000,59,1,12526.001280,1844.944000,hint,lora,180 +on6,0,0,29,1,0,1406,5257.401280,59,6,24578.001280,2195.327693,hint,lora,180 +on1,0,0,33,1,0,2328,5945.097440,60,9,37426.001280,2513.029952,hint,lora,180 +on6,0,0,29,1,0,3668,5222.100000,60,5,69336.001280,2135.767181,hint,lora,180 +on4,0,0,29,0,0,4790,5221.200000,60,5,-1.000000,2130.014566,hint,lora,180 +on12,0,0,25,1,0,510,4502.000000,60,1,9434.001280,1856.543590,hint,lora,180 +on9,0,0,25,1,0,928,4612.300000,60,2,24920.001280,1968.791795,hint,lora,180 +on2,0,0,29,1,0,1746,5223.703840,60,5,28719.001280,2177.256922,hint,lora,180 +on8,0,0,26,1,0,796,4686.600000,60,2,20596.001280,2019.743386,hint,lora,180 +on10,0,0,26,1,0,827,4682.000000,60,2,15593.001280,1914.400000,hint,lora,180 +on7,0,0,31,1,0,2270,5915.506400,60,10,40289.001280,2515.850150,hint,lora,180 +on11,0,0,26,1,0,526,4683.601280,60,2,14016.001280,1989.792512,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,60,0,-1.000000,2081.730662,hint,lora,180 +on5,0,0,28,1,0,2021,5183.600000,60,5,34704.001280,2157.166157,hint,lora,180 +on3,0,0,31,1,0,2036,5583.900000,60,7,32465.001280,2302.647386,hint,lora,180 +on5,0,0,25,1,0,1205,4501.200000,61,1,25195.001280,1828.960000,hint,lora,180 +on3,0,0,31,1,0,2279,5584.702560,61,7,45418.001280,2436.439590,hint,lora,180 +on6,0,0,35,1,0,2861,6484.200000,61,13,52405.602560,2848.638362,hint,lora,180 +on1,0,0,25,1,0,1456,4501.301280,61,1,34899.001280,1878.616102,hint,lora,180 +on10,0,0,24,1,0,1448,4322.002560,61,0,32335.001280,1766.785229,hint,lora,180 +on12,0,0,30,1,0,2003,5402.601280,61,6,36710.001280,2232.128102,hint,lora,180 +on4,0,0,30,1,0,3846,5526.001280,61,7,72287.001280,2299.279283,hint,lora,180 +on8,0,0,32,1,0,2545,5803.703840,61,9,43231.001280,2413.961126,hint,lora,180 +on7,0,0,27,1,0,1342,4864.298720,61,3,26453.001280,2053.207693,hint,lora,180 +on9,0,0,24,1,0,270,4435.000000,61,1,7622.001280,1852.528000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,61,0,-1.000000,2172.578048,hint,lora,180 +on2,0,0,26,1,0,790,4773.500000,61,3,15839.001280,2010.087590,hint,lora,180 +on11,0,0,30,1,0,2784,5648.401280,61,8,49934.001280,2366.942464,hint,lora,180 +on8,0,0,26,1,0,2399,4684.300000,62,2,51764.001280,2014.967181,hint,lora,180 +on11,0,0,27,1,0,2224,4863.897440,62,4,43776.001280,2021.014771,hint,lora,180 +on5,0,0,26,1,0,1637,4682.497440,62,3,37610.001280,1971.462976,hint,lora,180 +on3,0,0,26,1,0,3092,4681.601280,62,2,62914.001280,1949.504307,hint,lora,180 +on9,0,0,25,1,0,2376,4501.300000,62,1,49009.001280,1848.935795,hint,lora,180 +on6,0,0,25,1,0,1164,4501.000000,62,1,25813.001280,1866.272410,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,62,0,-1.000000,2088.162662,hint,lora,180 +on1,0,0,29,1,0,2701,5223.700000,62,7,59076.001280,2256.710566,hint,lora,180 +on4,0,0,24,1,0,195,4320.001280,62,0,4275.001280,1753.600717,hint,lora,180 +on7,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,hint,lora,180 +on2,0,0,25,1,0,2640,4502.996160,62,1,56862.001280,1858.174464,hint,lora,180 +on10,0,0,25,1,0,2128,4501.000000,62,1,42831.001280,1831.440000,hint,lora,180 +on12,0,0,24,1,0,1376,4320.997440,62,0,30227.001280,1782.799181,hint,lora,180 +on12,0,0,33,1,0,2978,5945.001280,63,9,52361.001280,2521.711898,hint,lora,180 +on3,0,0,26,1,0,1456,4683.600000,63,2,29339.001280,1955.424000,hint,lora,180 +on10,0,0,27,0,0,4382,4860.801280,63,3,-1.000000,1995.695898,hint,lora,180 +on7,0,0,25,1,0,936,4502.200000,63,1,21175.001280,1858.384000,hint,lora,180 +on8,0,0,28,1,0,2534,5047.796160,63,6,54504.001280,2165.069850,hint,lora,180 +on2,0,0,29,1,0,2409,5375.500000,63,6,44585.001280,2239.687590,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,63,0,-1.000000,2168.066253,hint,lora,180 +on6,0,0,30,1,0,2476,5403.500000,63,6,47747.001280,2311.590566,hint,lora,180 +on11,0,0,28,1,0,2106,5078.801280,63,5,42242.001280,2104.416307,hint,lora,180 +on4,0,0,27,1,0,1564,4862.400000,63,3,27581.001280,1977.423795,hint,lora,180 +on1,0,0,26,1,0,1028,4682.500000,63,2,23624.001280,1933.975795,hint,lora,180 +on9,0,0,30,1,0,2976,5500.001280,63,8,57861.001280,2370.223693,hint,lora,180 +on5,0,0,27,0,0,4164,4860.900000,63,4,-1.000000,2070.279181,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,64,0,-1.000000,2074.594867,hint,lora,180 +on12,0,0,26,1,0,1884,4682.700000,64,2,43271.001280,1951.896000,hint,lora,180 +on8,0,0,26,1,0,1212,4818.797440,64,4,27397.001280,2013.550976,hint,lora,180 +on3,0,0,27,1,0,1720,4863.702560,64,3,34917.001280,2030.857024,hint,lora,180 +on1,0,0,28,1,0,2309,5042.197440,64,5,46354.001280,2102.925542,hint,lora,180 +on4,0,0,25,1,0,678,4504.996160,64,1,14607.001280,1892.942874,hint,lora,180 +on9,0,0,29,1,0,2624,5223.401280,64,6,48235.001280,2174.576102,hint,lora,180 +on2,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,hint,lora,180 +on5,0,0,25,1,0,1013,4501.000000,64,1,19818.001280,1828.944000,hint,lora,180 +on6,0,0,28,1,0,1570,5042.800000,64,4,29141.001280,2068.207795,hint,lora,180 +on7,0,0,24,1,0,2639,4321.001280,64,0,56548.001280,1770.640922,hint,lora,180 +on11,0,0,26,1,0,1858,4767.500000,64,4,37921.001280,1979.895386,hint,lora,180 +on10,0,0,27,0,0,4233,4861.101280,64,3,-1.000000,2022.199898,hint,lora,180 +on10,0,0,27,1,0,1813,4863.200000,65,3,39681.001280,2060.047795,hint,lora,180 +on2,0,0,26,1,0,747,4685.297440,65,2,14263.001280,1948.103181,hint,lora,180 +on3,0,0,27,1,0,4133,4862.002560,65,3,81541.001280,2018.176410,hint,lora,180 +on4,0,0,29,1,0,4191,5223.500000,65,5,79193.001280,2179.942976,hint,lora,180 +on9,0,0,27,1,0,2153,4863.798720,65,3,46480.001280,2050.287283,hint,lora,180 +on7,0,0,24,1,0,183,4323.000000,65,0,6528.001280,1802.192410,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,65,0,-1.000000,2123.651686,hint,lora,180 +on11,0,0,27,1,0,1357,4863.103840,65,4,31695.001280,2087.769331,hint,lora,180 +on5,0,0,28,1,0,2074,5042.800000,65,5,41042.001280,2087.391386,hint,lora,180 +on8,0,0,26,1,0,1017,4786.298720,65,3,19835.001280,2014.455693,hint,lora,180 +on6,0,0,28,1,0,1291,5170.401280,65,5,24534.001280,2199.232512,hint,lora,180 +on1,0,0,25,1,0,474,4502.300000,65,1,10848.001280,1845.640000,hint,lora,180 +on12,0,0,26,1,0,1358,4683.202560,65,2,27354.001280,1922.576819,hint,lora,180 +on7,0,0,26,1,0,931,4848.502560,66,3,20313.001280,2011.625229,hint,lora,180 +on10,0,0,25,1,0,307,4504.300000,66,2,7778.001280,1919.192000,hint,lora,180 +on11,0,0,28,1,0,1608,5042.797440,66,4,31928.001280,2092.718566,hint,lora,180 +on12,0,0,28,1,0,1801,5294.100000,66,6,37397.001280,2300.440614,hint,lora,180 +on2,0,0,24,1,0,464,4459.300000,66,1,14396.001280,1837.352000,hint,lora,180 +on1,0,0,32,1,0,1964,5764.401280,66,10,45995.001280,2529.663078,hint,lora,180 +on5,0,0,25,1,0,202,4502.197440,66,1,6757.001280,1865.199386,hint,lora,180 +on3,0,0,26,1,0,688,4682.601280,66,2,15559.001280,1950.576307,hint,lora,180 +on4,0,0,29,1,0,1494,5225.498720,66,5,27679.001280,2243.397850,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,66,0,-1.000000,2114.914048,hint,lora,180 +on8,0,0,28,1,0,1260,5044.803840,66,4,22256.002560,2121.873536,hint,lora,180 +on9,0,0,26,1,0,1719,4682.402560,66,2,32674.001280,1954.624205,hint,lora,180 +on6,0,0,27,0,0,4041,4998.200000,66,5,-1.000000,2143.662362,hint,lora,180 +on7,0,0,25,0,0,4232,4500.300000,67,2,-1.000000,1837.719590,hint,lora,180 +on8,0,0,25,1,0,530,4504.198720,67,1,11041.001280,1882.543693,hint,lora,180 +on3,0,0,28,1,0,2219,5044.201280,67,5,47037.001280,2175.503898,hint,lora,180 +on5,0,0,26,1,0,2095,4681.600000,67,2,43493.001280,1926.720410,hint,lora,180 +on11,0,0,25,1,0,868,4638.901280,67,2,20190.001280,1924.680512,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,67,0,-1.000000,2124.485325,hint,lora,180 +on6,0,0,31,1,0,2260,5607.601280,67,8,42849.001280,2365.520102,hint,lora,180 +on1,0,0,25,1,0,248,4502.997440,67,1,6119.001280,1869.359386,hint,lora,180 +on4,0,0,27,1,0,793,4862.905120,67,5,14949.001280,2018.057843,hint,lora,180 +on10,0,0,28,1,0,1549,5041.900000,67,4,32429.001280,2105.943181,hint,lora,180 +on12,0,0,26,1,0,1728,4681.200000,67,3,33178.001280,1904.223386,hint,lora,180 +on9,0,0,24,1,0,1760,4460.996160,67,1,37654.001280,1892.414464,hint,lora,180 +on2,0,0,26,1,0,1035,4792.001280,67,3,23709.001280,1993.408102,hint,lora,180 +on7,0,0,24,1,0,0,4323.997440,68,0,1179.001280,1815.327386,hint,lora,180 +on9,0,0,24,0,0,4161,4320.000000,68,0,-1.000000,1753.600000,hint,lora,180 +on10,0,0,26,1,0,488,4685.797440,68,2,13719.001280,1994.462771,hint,lora,180 +on12,0,0,30,1,0,1828,5404.896160,68,6,37131.001280,2337.765850,hint,lora,180 +on1,0,0,25,1,0,1402,4503.297440,68,1,28405.001280,1864.582976,hint,lora,180 +on3,0,0,27,1,0,788,4865.100000,68,3,15049.001280,2055.160000,hint,lora,180 +on2,0,0,25,1,0,84,4502.300000,68,2,5889.001280,1872.695590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,68,0,-1.000000,2120.579482,hint,lora,180 +on11,0,0,28,1,0,1926,5045.098720,68,4,44353.001280,2160.038669,hint,lora,180 +on6,0,0,31,1,0,4051,5584.400000,68,7,75231.001280,2330.975386,hint,lora,180 +on5,0,0,26,1,0,505,4683.000000,68,2,8738.001280,1913.168000,hint,lora,180 +on8,0,0,33,1,0,2278,5943.501280,68,9,40440.001280,2551.590669,hint,lora,180 +on4,0,0,28,1,0,1144,5042.001280,68,4,20134.001280,2080.223898,hint,lora,180 +on12,0,0,32,1,0,2642,5895.801280,69,9,49874.001280,2565.790464,hint,lora,180 +on6,0,0,24,1,0,720,4410.200000,69,1,18111.001280,1819.071795,hint,lora,180 +on9,0,0,32,1,0,2985,5763.901280,69,8,51793.001280,2400.567078,hint,lora,180 +on11,0,0,24,1,0,911,4320.000000,69,1,19553.001280,1753.600205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,69,0,-1.000000,2115.584614,hint,lora,180 +on8,0,0,26,1,0,1648,4681.200000,69,2,32053.001280,1900.864000,hint,lora,180 +on2,0,0,28,1,0,2828,5042.197440,69,5,56442.001280,2102.686566,hint,lora,180 +on1,0,0,30,1,0,2269,5577.402560,69,7,42735.001280,2354.304410,hint,lora,180 +on3,0,0,27,1,0,1885,4863.600000,69,4,37832.001280,2058.751386,hint,lora,180 +on10,0,0,30,1,0,3070,5403.600000,69,7,58267.001280,2273.278362,hint,lora,180 +on7,0,0,30,1,0,2437,5403.700000,69,6,44437.001280,2267.734771,hint,lora,180 +on5,0,0,29,1,0,2007,5223.500000,69,5,35929.001280,2190.535181,hint,lora,180 +on4,0,0,25,1,0,970,4502.300000,69,1,22931.001280,1875.447795,hint,lora,180 +on8,0,0,26,1,0,472,4684.202560,70,2,9704.001280,1975.441024,hint,lora,180 +on12,0,0,27,1,0,1126,4870.597440,70,4,26632.001280,2073.871181,hint,lora,180 +on9,0,0,26,1,0,682,4682.502560,70,2,16544.001280,1943.513434,hint,lora,180 +on2,0,0,26,1,0,995,4682.298720,70,2,18544.001280,1904.759488,hint,lora,180 +on6,0,0,25,1,0,2100,4504.300000,70,1,42525.001280,1920.120000,hint,lora,180 +on10,0,0,25,1,0,128,4503.198720,70,1,4392.001280,1832.863693,hint,lora,180 +on5,0,0,28,1,0,2049,5043.800000,70,6,45387.001280,2148.495181,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,70,0,-1.000000,2112.706458,hint,lora,180 +on11,0,0,27,1,0,1332,4862.200000,70,3,31716.001280,2056.302566,hint,lora,180 +on1,0,0,33,1,0,2355,6109.794880,70,10,39454.001280,2612.780518,hint,lora,180 +on3,0,0,26,1,0,559,4684.501280,70,2,12405.001280,1977.368512,hint,lora,180 +on4,0,0,27,0,0,4304,4950.500000,70,4,-1.000000,2061.879181,hint,lora,180 +on7,0,0,26,1,0,1678,4761.301280,70,3,33915.001280,1978.327898,hint,lora,180 +on10,0,0,32,1,0,2201,5765.502560,71,10,41062.001280,2522.647386,hint,lora,180 +on8,0,0,26,1,0,2658,4682.200000,71,3,57111.602560,1931.391590,hint,lora,180 +on6,0,0,26,1,0,793,4682.901280,71,2,16881.001280,1944.904512,hint,lora,180 +on1,0,0,25,1,0,226,4501.200000,71,1,6269.001280,1829.328000,hint,lora,180 +on5,0,0,28,1,0,1244,5043.903840,71,4,24067.001280,2084.137741,hint,lora,180 +on9,0,0,31,1,0,2138,5583.198720,71,7,39272.001280,2329.806464,hint,lora,180 +on11,0,0,27,1,0,1443,4862.500000,71,3,32180.001280,2025.959181,hint,lora,180 +on7,0,0,26,1,0,796,4794.794880,71,3,13428.001280,2002.029747,hint,lora,180 +on12,0,0,26,1,0,325,4682.401280,71,2,7622.001280,1939.632307,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,71,0,-1.000000,2104.770662,hint,lora,180 +on3,0,0,26,1,0,1300,4682.000000,71,2,25517.001280,1929.824000,hint,lora,180 +on2,0,0,26,1,0,923,4745.203840,71,3,18973.001280,2008.290150,hint,lora,180 +on4,0,0,33,1,0,2116,5945.203840,71,9,35330.001280,2554.704102,hint,lora,180 +on8,0,0,26,1,0,2661,4694.300000,72,3,52487.001280,1921.000000,hint,lora,180 +on9,0,0,26,1,0,2282,4810.601280,72,3,47729.001280,2012.784512,hint,lora,180 +on4,0,0,27,1,0,2901,5037.600000,72,4,60371.001280,2127.439795,hint,lora,180 +on7,0,0,29,1,0,4150,5220.900000,72,6,77777.001280,2130.647181,hint,lora,180 +on5,0,0,29,1,0,2862,5223.001280,72,5,55249.001280,2186.576102,hint,lora,180 +on1,0,0,31,1,0,3733,5583.302560,72,8,73864.001280,2432.696819,hint,lora,180 +on10,0,0,28,0,0,4644,5040.800000,72,4,-1.000000,2043.519386,hint,lora,180 +on2,0,0,31,0,0,4484,5673.601280,72,8,-1.000000,2412.831488,hint,lora,180 +on11,0,0,33,1,0,3717,5943.898720,72,9,71026.001280,2556.166669,hint,lora,180 +on6,0,0,27,1,0,1805,4953.202560,72,5,44095.001280,2110.817024,hint,lora,180 +on3,0,0,29,1,0,3415,5284.100000,72,6,63535.001280,2207.831590,hint,lora,180 +on12,0,0,29,0,0,4054,5221.200000,72,5,-1.000000,2270.702976,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,72,0,-1.000000,2238.272819,hint,lora,180 +on5,0,0,28,1,0,1785,5046.496160,73,4,32871.001280,2072.245645,hint,lora,180 +on6,0,0,26,1,0,1045,4682.000000,73,2,22151.001280,1955.600000,hint,lora,180 +on10,0,0,29,1,0,2056,5338.098720,73,7,41310.001280,2273.974464,hint,lora,180 +on8,0,0,25,1,0,833,4501.000000,73,1,21533.001280,1828.880000,hint,lora,180 +on3,0,0,32,1,0,2475,5764.598720,73,8,45325.001280,2461.518464,hint,lora,180 +on12,0,0,26,1,0,1190,4682.300000,73,2,25406.001280,1940.119590,hint,lora,180 +on2,0,0,28,0,0,4593,5293.500000,73,6,-1.000000,2179.415386,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,73,0,-1.000000,2093.794662,hint,lora,180 +on9,0,0,29,1,0,3212,5354.800000,73,6,63328.001280,2303.486566,hint,lora,180 +on11,0,0,27,1,0,1595,5005.200000,73,4,32100.001280,2090.111590,hint,lora,180 +on1,0,0,29,1,0,2752,5223.105120,73,5,52369.001280,2191.113638,hint,lora,180 +on7,0,0,28,1,0,1858,5043.898720,73,4,37822.001280,2124.327078,hint,lora,180 +on4,0,0,30,1,0,2768,5544.000000,73,7,47252.001280,2305.134771,hint,lora,180 +on12,0,0,25,1,0,108,4503.998720,74,1,7055.001280,1886.416307,hint,lora,180 +on1,0,0,25,1,0,815,4503.994880,74,1,17506.001280,1833.390566,hint,lora,180 +on9,0,0,30,1,0,2151,5404.501280,74,6,39207.001280,2262.599488,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,74,0,-1.000000,2094.052301,hint,lora,180 +on2,0,0,34,1,0,2387,6195.201280,74,12,49007.001280,2764.686874,hint,lora,180 +on5,0,0,30,1,0,2618,5404.301280,74,6,46393.001280,2245.288307,hint,lora,180 +on6,0,0,24,0,0,4199,4320.000000,74,0,-1.000000,1758.079590,hint,lora,180 +on11,0,0,29,1,0,1339,5224.901280,74,6,25737.001280,2235.207488,hint,lora,180 +on3,0,0,27,1,0,1632,4865.198720,74,3,32795.001280,2025.759693,hint,lora,180 +on8,0,0,29,1,0,2265,5222.601280,74,5,42529.001280,2143.919283,hint,lora,180 +on4,0,0,26,1,0,524,4684.593600,74,2,10525.602560,1957.054054,hint,lora,180 +on10,0,0,27,1,0,1566,4861.600000,74,3,31229.001280,1989.183590,hint,lora,180 +on7,0,0,26,1,0,994,4682.300000,74,2,19835.001280,1933.399795,hint,lora,180 +on5,0,0,27,1,0,1048,4863.200000,75,3,23981.001280,2058.911181,hint,lora,180 +on7,0,0,28,1,0,2919,5176.700000,75,6,56762.001280,2179.750362,hint,lora,180 +on10,0,0,34,0,0,4470,6252.501280,75,11,-1.000000,2709.718054,hint,lora,180 +on4,0,0,25,1,0,2310,4810.503840,75,3,44158.001280,2056.154150,hint,lora,180 +on12,0,0,26,1,0,1042,4693.300000,75,4,19037.001280,1956.199181,hint,lora,180 +on3,0,0,26,1,0,2245,4682.402560,75,5,51355.001280,1948.257229,hint,lora,180 +on2,0,0,28,1,0,1489,5045.703840,75,4,26387.001280,2134.698150,hint,lora,180 +on6,0,0,29,1,0,2370,5224.003840,75,5,47763.001280,2220.657536,hint,lora,180 +on9,0,0,27,1,0,1607,4862.800000,75,4,35674.001280,2057.758976,hint,lora,180 +on8,0,0,25,1,0,868,4504.997440,75,1,17281.001280,1887.663386,hint,lora,180 +on1,0,0,25,1,0,506,4503.197440,75,1,11854.001280,1880.046976,hint,lora,180 +on11,0,0,28,1,0,2810,5134.400000,75,5,64768.201280,2220.351590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,75,0,-1.000000,2201.699891,hint,lora,180 +on6,0,0,27,1,0,1279,4861.700000,76,3,27809.001280,1995.447795,hint,lora,180 +on11,0,0,25,1,0,1003,4641.000000,76,2,24760.001280,1948.767795,hint,lora,180 +on12,0,0,25,1,0,2608,4501.297440,76,1,54452.001280,1856.038362,hint,lora,180 +on3,0,0,27,1,0,1688,4863.000000,76,3,28962.001280,2026.111795,hint,lora,180 +on4,0,0,34,1,0,2725,6123.902560,76,10,51439.001280,2661.063181,hint,lora,180 +on10,0,0,31,1,0,2857,5715.902560,76,10,58106.001280,2490.711386,hint,lora,180 +on1,0,0,26,1,0,809,4682.205120,76,2,14864.001280,1930.162253,hint,lora,180 +on9,0,0,29,1,0,2303,5243.800000,76,7,50362.001280,2245.278362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,76,0,-1.000000,2181.280819,hint,lora,180 +on5,0,0,27,1,0,1020,5040.000000,76,4,18893.001280,2095.551386,hint,lora,180 +on8,0,0,28,1,0,1834,5045.401280,76,5,40483.001280,2189.183488,hint,lora,180 +on2,0,0,31,1,0,2187,5584.203840,76,7,37289.001280,2330.161126,hint,lora,180 +on7,0,0,29,1,0,2312,5226.602560,76,6,46457.001280,2199.264614,hint,lora,180 +on2,0,0,31,1,0,1934,5718.798720,77,8,37045.001280,2480.750874,hint,lora,180 +on7,0,0,31,1,0,1781,5799.698720,77,9,34816.001280,2537.381850,hint,lora,180 +on10,0,0,26,1,0,585,4682.100000,77,2,13309.001280,1905.319590,hint,lora,180 +on6,0,0,25,1,0,300,4501.000000,77,1,5477.001280,1828.943795,hint,lora,180 +on3,0,0,27,1,0,732,4864.897440,77,3,16294.001280,2031.126976,hint,lora,180 +on12,0,0,30,1,0,2966,5519.700000,77,7,60770.001280,2373.318771,hint,lora,180 +on4,0,0,33,1,0,2379,5945.698720,77,9,43631.001280,2565.765850,hint,lora,180 +on5,0,0,26,1,0,1137,4681.200000,77,2,22786.001280,1900.960000,hint,lora,180 +on11,0,0,28,1,0,1400,5043.797440,77,4,26973.001280,2099.694771,hint,lora,180 +on1,0,0,30,1,0,1591,5406.300000,77,6,30669.001280,2332.998771,hint,lora,180 +on8,0,0,26,1,0,1032,4815.401280,77,3,21160.001280,1979.792512,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,77,0,-1.000000,2135.105434,hint,lora,180 +on9,0,0,29,1,0,2460,5222.400000,77,5,49299.001280,2197.118566,hint,lora,180 +on8,0,0,26,1,0,2661,4682.500000,78,3,52598.001280,1928.408205,hint,lora,180 +on4,0,0,24,1,0,2713,4321.000000,78,0,57535.001280,1754.000410,hint,lora,180 +on12,0,0,24,0,0,4231,4320.000000,78,0,-1.000000,1756.800000,hint,lora,180 +on5,0,0,24,0,0,4104,4320.000000,78,0,-1.000000,1779.680000,hint,lora,180 +on2,0,0,23,0,0,4165,4217.000000,78,0,-1.000000,1695.280000,hint,lora,180 +on7,0,0,25,1,0,2488,4501.197440,78,1,49226.001280,1829.279181,hint,lora,180 +on10,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,hint,lora,180 +on11,0,0,25,1,0,3807,4502.297440,78,1,82798.001280,1905.943181,hint,lora,180 +on9,0,0,24,0,0,4220,4320.000000,78,0,-1.000000,1744.160000,hint,lora,180 +on6,0,0,24,0,0,4150,4320.000000,78,0,-1.000000,1755.520000,hint,lora,180 +on1,0,0,25,0,0,4417,4500.300000,78,1,-1.000000,1813.272000,hint,lora,180 +on3,0,0,25,0,0,4255,4500.300000,78,2,-1.000000,1828.599795,hint,lora,180 +on0,1,4,24,0,0,0,4320.000000,78,0,-1.000000,1996.769638,hint,lora,180 +on9,0,0,25,1,0,965,4502.300000,79,1,21386.001280,1858.120000,hint,lora,180 +on3,0,0,29,1,0,2781,5223.500000,79,6,52513.001280,2183.159181,hint,lora,180 +on8,0,0,29,1,0,1806,5250.098720,79,6,38086.001280,2227.606874,hint,lora,180 +on5,0,0,28,1,0,2182,5044.200000,79,4,45805.001280,2131.887590,hint,lora,180 +on4,0,0,27,1,0,2369,4861.597440,79,3,48735.001280,2042.925952,hint,lora,180 +on10,0,0,28,1,0,1527,5042.802560,79,4,31141.001280,2105.345024,hint,lora,180 +on12,0,0,26,1,0,1721,4863.000000,79,3,32865.001280,1990.544000,hint,lora,180 +on1,0,0,24,1,0,628,4438.000000,79,1,15143.001280,1842.528205,hint,lora,180 +on2,0,0,31,1,0,4033,5583.601280,79,7,76945.001280,2378.751693,hint,lora,180 +on6,0,0,27,1,0,2923,4864.901280,79,3,61538.001280,2132.808102,hint,lora,180 +on7,0,0,30,1,0,2252,5404.101280,79,6,42695.001280,2243.608102,hint,lora,180 +on11,0,0,27,1,0,4198,5098.500000,79,5,86312.000000,2158.119181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,79,0,-1.000000,2164.450458,hint,lora,180 +on12,0,0,31,1,0,4260,5604.302560,80,10,81566.001280,2346.055795,hint,lora,180 +on9,0,0,24,1,0,1787,4321.002560,80,0,37108.001280,1799.185434,hint,lora,180 +on6,0,0,25,1,0,3878,4501.297440,80,1,77964.001280,1839.399181,hint,lora,180 +on11,0,0,25,1,0,3068,4500.301280,80,1,68164.001280,1871.480717,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,80,0,-1.000000,2209.602867,hint,lora,180 +on2,0,0,27,1,0,2726,4862.297440,80,3,55745.001280,2034.198566,hint,lora,180 +on7,0,0,25,1,0,3052,4504.300000,80,1,62644.001280,1901.848205,hint,lora,180 +on5,0,0,26,1,0,1858,4683.801280,80,2,44549.001280,2011.760102,hint,lora,180 +on1,0,0,29,1,0,3192,5301.701280,80,7,61055.001280,2200.567488,hint,lora,180 +on3,0,0,28,1,0,2638,5163.601280,80,5,51743.001280,2168.256307,hint,lora,180 +on4,0,0,28,1,0,2455,5043.001280,80,4,49134.001280,2097.999693,hint,lora,180 +on8,0,0,25,1,0,1954,4504.298720,80,1,41045.001280,1868.007283,hint,lora,180 +on10,0,0,24,1,0,1435,4379.000000,80,1,32267.001280,1778.160205,hint,lora,180 +on12,0,0,27,1,0,1595,4863.298720,81,3,29857.001280,2011.223488,hint,lora,180 +on10,0,0,27,1,0,2170,4861.900000,81,3,44751.001280,2008.839795,hint,lora,180 +on6,0,0,26,1,0,3155,4788.401280,81,5,70165.001280,2055.727898,hint,lora,180 +on1,0,0,26,1,0,1920,4711.800000,81,3,36353.001280,1934.335795,hint,lora,180 +on8,0,0,28,1,0,2959,5241.701280,81,7,68083.001280,2269.575898,hint,lora,180 +on5,0,0,38,1,0,4116,6847.406400,81,16,77202.001280,3052.145536,hint,lora,180 +on7,0,0,29,1,0,3810,5222.797440,81,5,72904.001280,2170.877952,hint,lora,180 +on4,0,0,32,1,0,3279,5765.001280,81,8,59258.001280,2433.599898,hint,lora,180 +on9,0,0,26,1,0,1951,4685.300000,81,3,41543.001280,1964.263386,hint,lora,180 +on3,0,0,27,1,0,2328,4863.101280,81,3,49915.001280,2070.584512,hint,lora,180 +on11,0,0,27,1,0,3989,4873.398720,81,6,85954.000000,2045.854669,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,81,0,-1.000000,2305.025229,hint,lora,180 +on2,0,0,28,1,0,3129,5042.998720,81,4,63361.001280,2172.654464,hint,lora,180 +on10,0,0,34,1,0,3583,6255.602560,82,13,59247.001280,2648.767181,hint,lora,180 +on7,0,0,26,1,0,1427,4708.003840,82,3,25701.001280,1917.361741,hint,lora,180 +on11,0,0,32,1,0,3150,5762.997440,82,8,55533.001280,2396.573133,hint,lora,180 +on6,0,0,30,1,0,2000,5403.600000,82,7,33551.001280,2225.486566,hint,lora,180 +on12,0,0,26,1,0,1009,4682.000000,82,2,18796.001280,1929.920000,hint,lora,180 +on9,0,0,32,1,0,2440,5766.498720,82,8,43483.001280,2477.798464,hint,lora,180 +on1,0,0,26,1,0,2162,4697.900000,82,3,50376.001280,1970.199386,hint,lora,180 +on4,0,0,28,1,0,2135,5186.500000,82,5,39015.001280,2149.927181,hint,lora,180 +on3,0,0,24,1,0,439,4321.997440,82,0,13174.001280,1799.103181,hint,lora,180 +on8,0,0,27,1,0,1360,4937.100000,82,4,30158.001280,2126.727590,hint,lora,180 +on5,0,0,25,1,0,1037,4501.000000,82,1,22976.001280,1828.880000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,82,0,-1.000000,2134.465434,hint,lora,180 +on2,0,0,32,1,0,2780,5764.801280,82,8,50616.001280,2466.542874,hint,lora,180 +on6,0,0,26,1,0,1815,4683.200000,83,3,45623.001280,2043.423795,hint,lora,180 +on1,0,0,25,1,0,3166,4503.000000,83,1,66093.001280,1881.840410,hint,lora,180 +on7,0,0,26,1,0,2146,4684.497440,83,2,42637.001280,1950.806566,hint,lora,180 +on9,0,0,27,1,0,1536,4863.600000,83,4,27897.001280,2033.440410,hint,lora,180 +on8,0,0,27,1,0,2853,4860.601280,83,3,59416.001280,2022.640717,hint,lora,180 +on11,0,0,25,1,0,492,4570.296160,83,2,15061.001280,1956.407078,hint,lora,180 +on10,0,0,25,1,0,703,4501.201280,83,1,12900.001280,1829.024717,hint,lora,180 +on3,0,0,24,1,0,18,4322.989760,83,0,3329.001280,1754.796518,hint,lora,180 +on4,0,0,26,1,0,1643,4682.802560,83,3,32172.001280,1949.761229,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,83,0,-1.000000,2117.606144,hint,lora,180 +on2,0,0,26,1,0,304,4683.598720,83,3,8617.001280,1955.311283,hint,lora,180 +on5,0,0,28,1,0,1144,5046.398720,83,5,21944.001280,2170.414464,hint,lora,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,hint,lora,180 +on6,0,0,27,1,0,2224,5000.900000,84,5,45763.001280,2090.279181,hint,lora,180 +on11,0,0,26,1,0,1501,4685.696160,84,2,32224.001280,1940.806669,hint,lora,180 +on5,0,0,32,1,0,3241,5920.400000,84,10,59968.001280,2480.334976,hint,lora,180 +on2,0,0,30,1,0,2974,5488.100000,84,8,56376.001280,2302.008000,hint,lora,180 +on12,0,0,27,1,0,2232,4948.300000,84,4,39865.001280,2072.056000,hint,lora,180 +on1,0,0,32,1,0,2871,5763.198720,84,8,49180.001280,2377.694669,hint,lora,180 +on8,0,0,26,1,0,1656,4704.300000,84,3,34952.001280,1939.656205,hint,lora,180 +on4,0,0,37,1,0,3797,6664.002560,84,15,71787.001280,2908.462771,hint,lora,180 +on7,0,0,33,1,0,3611,6058.900000,84,11,77781.001280,2685.046362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,84,0,-1.000000,2246.754048,hint,lora,180 +on9,0,0,31,1,0,2785,5583.500000,84,7,52430.001280,2348.166771,hint,lora,180 +on10,0,0,34,1,0,3301,6379.396160,84,12,62733.001280,2792.941030,hint,lora,180 +on3,0,0,28,1,0,2024,5041.600000,84,4,38157.001280,2067.359795,hint,lora,180 +on7,0,0,34,0,0,4333,6122.700000,85,11,-1.000000,2635.222566,hint,lora,180 +on2,0,0,30,1,0,4207,5469.200000,85,8,81634.001280,2311.647181,hint,lora,180 +on6,0,0,24,1,0,1768,4349.300000,85,2,36362.001280,1795.304205,hint,lora,180 +on8,0,0,24,1,0,1989,4322.000000,85,0,41411.001280,1766.271795,hint,lora,180 +on9,0,0,26,1,0,3264,4681.500000,85,3,70774.001280,1936.743795,hint,lora,180 +on12,0,0,28,1,0,3647,5042.798720,85,4,77121.001280,2134.703283,hint,lora,180 +on10,0,0,29,1,0,3696,5395.200000,85,7,67887.001280,2218.670976,hint,lora,180 +on0,1,8,24,0,0,0,4320.000000,85,0,-1.000000,2245.696205,hint,lora,180 +on11,0,0,27,0,0,3969,4989.400000,85,5,-1.000000,2127.135181,hint,lora,180 +on4,0,0,27,1,0,2849,4986.998720,85,4,58011.001280,2130.911078,hint,lora,180 +on5,0,0,25,0,0,4234,4675.000000,85,2,-1.000000,1933.056000,hint,lora,180 +on1,0,0,28,1,0,4031,5041.200000,85,4,85280.000000,2124.207386,hint,lora,180 +on3,0,0,31,0,0,4702,5582.100000,85,7,-1.000000,2305.686976,hint,lora,180 +on7,0,0,25,1,0,3435,4503.000000,86,2,71461.001280,1882.160205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,86,0,-1.000000,2230.467072,hint,lora,180 +on2,0,0,32,1,0,2973,5824.198720,86,9,51669.001280,2486.462874,hint,lora,180 +on9,0,0,24,1,0,1265,4322.000000,86,0,25812.001280,1761.280205,hint,lora,180 +on8,0,0,25,1,0,2540,4502.300000,86,2,56319.001280,1899.000000,hint,lora,180 +on1,0,0,31,1,0,2125,5755.600000,86,9,45834.001280,2487.646976,hint,lora,180 +on12,0,0,30,1,0,1615,5556.998720,86,7,36247.001280,2454.559693,hint,lora,180 +on10,0,0,25,1,0,417,4502.198720,86,1,10942.001280,1830.191898,hint,lora,180 +on4,0,0,32,0,0,4271,5902.403840,86,9,-1.000000,2547.856307,hint,lora,180 +on6,0,0,39,1,0,3717,7075.002560,86,16,60758.001280,3011.790566,hint,lora,180 +on5,0,0,30,1,0,1850,5527.502560,86,8,40921.001280,2361.591795,hint,lora,180 +on3,0,0,25,1,0,881,4652.500000,86,2,20737.001280,1987.016614,hint,lora,180 +on11,0,0,27,1,0,1154,4862.900000,86,3,22169.001280,2053.319795,hint,lora,180 +on10,0,0,29,1,0,2637,5225.801280,87,5,51437.001280,2278.671693,hint,lora,180 +on1,0,0,25,1,0,2682,4535.500000,87,2,55786.001280,1908.183590,hint,lora,180 +on4,0,0,30,1,0,3268,5403.905120,87,6,66737.001280,2323.001434,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,87,0,-1.000000,2193.409434,hint,lora,180 +on8,0,0,29,1,0,2317,5281.500000,87,6,43678.001280,2219.894976,hint,lora,180 +on2,0,0,27,1,0,1984,4975.900000,87,4,39717.001280,2087.255386,hint,lora,180 +on7,0,0,29,1,0,2493,5222.400000,87,5,48390.001280,2189.918976,hint,lora,180 +on11,0,0,26,1,0,1564,4682.200000,87,2,30496.001280,1927.376205,hint,lora,180 +on3,0,0,31,1,0,3213,5700.802560,87,8,59529.001280,2392.239795,hint,lora,180 +on6,0,0,35,1,0,3272,6304.702560,87,11,62652.001280,2771.559386,hint,lora,180 +on12,0,0,29,0,0,4577,5497.700000,87,7,-1.000000,2291.622976,hint,lora,180 +on9,0,0,25,1,0,1336,4502.200000,87,1,28796.001280,1837.936410,hint,lora,180 +on5,0,0,24,1,0,1564,4342.000000,87,1,36123.001280,1800.687590,hint,lora,180 +on10,0,0,31,1,0,2650,5744.700000,88,9,49901.001280,2489.766771,hint,lora,180 +on3,0,0,28,1,0,1151,5042.401280,88,4,21925.001280,2101.008307,hint,lora,180 +on5,0,0,28,1,0,1435,5041.800000,88,4,29288.001280,2105.839590,hint,lora,180 +on11,0,0,25,1,0,585,4502.300000,88,1,20219.001280,1910.167795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,88,0,-1.000000,2106.272819,hint,lora,180 +on9,0,0,30,1,0,2279,5403.700000,88,6,39525.001280,2230.438566,hint,lora,180 +on4,0,0,26,1,0,1406,4700.000000,88,3,25433.001280,1909.328000,hint,lora,180 +on2,0,0,24,1,0,480,4333.200000,88,1,13525.001280,1761.920000,hint,lora,180 +on12,0,0,31,1,0,2574,5584.001280,88,7,43074.001280,2332.879078,hint,lora,180 +on6,0,0,28,1,0,1721,5171.401280,88,5,33560.001280,2208.399693,hint,lora,180 +on1,0,0,25,1,0,251,4501.001280,88,1,9705.001280,1871.680717,hint,lora,180 +on8,0,0,30,1,0,2601,5421.697440,88,7,45602.001280,2272.901542,hint,lora,180 +on7,0,0,24,1,0,691,4397.000000,88,1,17884.001280,1822.016000,hint,lora,180 +on6,0,0,25,1,0,1515,4582.002560,89,2,31210.001280,1902.464819,hint,lora,180 +on7,0,0,25,1,0,2996,4501.200000,89,1,61082.001280,1829.280000,hint,lora,180 +on2,0,0,28,1,0,1790,5043.394880,89,4,35945.001280,2109.789338,hint,lora,180 +on11,0,0,28,1,0,1970,5044.701280,89,5,39610.001280,2141.640512,hint,lora,180 +on9,0,0,26,1,0,3012,4681.301280,89,3,66234.001280,1965.464717,hint,lora,180 +on3,0,0,25,1,0,2022,4501.201280,89,2,43816.001280,1872.960717,hint,lora,180 +on10,0,0,25,1,0,50,4503.997440,89,1,3980.001280,1903.439181,hint,lora,180 +on12,0,0,25,0,0,4313,4500.000000,89,1,-1.000000,1819.519795,hint,lora,180 +on8,0,0,27,1,0,1345,4863.300000,89,3,28387.001280,2032.870976,hint,lora,180 +on4,0,0,29,1,0,1343,5225.997440,89,6,22887.001280,2159.359386,hint,lora,180 +on1,0,0,26,1,0,887,4683.400000,89,2,16702.001280,1934.320000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,89,0,-1.000000,2125.444301,hint,lora,180 +on5,0,0,26,1,0,1005,4682.200000,89,2,19547.001280,1936.527386,hint,lora,180 +on9,0,0,25,1,0,1552,4533.097440,90,3,29527.401280,1889.559386,hint,lora,180 +on8,0,0,31,1,0,3379,5583.601280,90,8,64636.001280,2378.559078,hint,lora,180 +on6,0,0,25,1,0,456,4502.998720,90,1,12245.001280,1859.920102,hint,lora,180 +on12,0,0,26,1,0,2660,4684.298720,90,2,51194.001280,1950.103283,hint,lora,180 +on1,0,0,30,1,0,2992,5403.501280,90,6,60616.001280,2317.288102,hint,lora,180 +on5,0,0,23,0,0,4199,4262.000000,90,0,-1.000000,1715.040000,hint,lora,180 +on7,0,0,27,1,0,2166,4862.201280,90,4,47871.001280,2027.360102,hint,lora,180 +on10,0,0,25,1,0,1755,4502.400000,90,1,38070.001280,1838.255795,hint,lora,180 +on3,0,0,23,1,0,2109,4374.200000,90,1,44304.002560,1845.840000,hint,lora,180 +on4,0,0,25,1,0,1303,4501.198720,90,1,27513.001280,1836.687898,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,90,0,-1.000000,2107.107277,hint,lora,180 +on11,0,0,29,1,0,2703,5302.100000,90,7,54423.001280,2236.006157,hint,lora,180 +on2,0,0,26,1,0,1875,4682.300000,90,2,42372.001280,1963.671590,hint,lora,180 +on1,0,0,25,1,0,1368,4502.000000,91,1,26869.001280,1892.927795,hint,lora,180 +on10,0,0,26,1,0,1526,4683.200000,91,2,31647.001280,1963.231590,hint,lora,180 +on11,0,0,29,1,0,3308,5224.498720,91,5,67989.001280,2252.871283,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,91,0,-1.000000,2161.731072,hint,lora,180 +on9,0,0,27,0,0,4324,4953.501280,91,4,-1.000000,2052.791693,hint,lora,180 +on7,0,0,28,1,0,2285,5041.701280,91,4,42044.001280,2048.728307,hint,lora,180 +on6,0,0,27,1,0,1927,4864.798720,91,3,36788.001280,2046.847488,hint,lora,180 +on4,0,0,28,1,0,2236,5086.800000,91,5,44619.001280,2165.872000,hint,lora,180 +on5,0,0,30,1,0,3108,5403.401280,91,7,60098.001280,2307.968102,hint,lora,180 +on12,0,0,30,1,0,2949,5403.497440,91,6,56597.001280,2269.206157,hint,lora,180 +on3,0,0,26,1,0,1439,4685.898720,91,2,35250.001280,2018.183078,hint,lora,180 +on2,0,0,30,1,0,3590,5402.900000,91,7,70826.001280,2335.254771,hint,lora,180 +on8,0,0,27,1,0,2472,4866.594880,91,3,48829.001280,2051.917952,hint,lora,180 +on7,0,0,25,1,0,3932,4501.300000,92,1,78560.001280,1833.543795,hint,lora,180 +on10,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,hint,lora,180 +on2,0,0,25,1,0,1523,4649.200000,92,2,36862.001280,1969.920410,hint,lora,180 +on5,0,0,25,1,0,3700,4502.297440,92,1,75268.001280,1857.239181,hint,lora,180 +on3,0,0,26,1,0,993,4681.301280,92,3,18484.001280,1929.704512,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,92,0,-1.000000,2107.139891,hint,lora,180 +on11,0,0,25,1,0,413,4504.001280,92,1,12603.001280,1930.208512,hint,lora,180 +on12,0,0,25,1,0,1064,4500.010240,92,2,24427.001280,1854.404915,hint,lora,180 +on1,0,0,25,1,0,3201,4502.000000,92,1,68192.001280,1853.760000,hint,lora,180 +on4,0,0,27,1,0,3791,4950.500000,92,6,80205.001280,2097.542976,hint,lora,180 +on9,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,hint,lora,180 +on8,0,0,25,1,0,3330,4502.297440,92,1,68566.001280,1869.718771,hint,lora,180 +on6,0,0,25,1,0,766,4502.197440,92,1,17567.001280,1844.286976,hint,lora,180 +on1,0,0,26,1,0,1647,4682.300000,93,2,33692.001280,1927.639795,hint,lora,180 +on11,0,0,25,1,0,1527,4529.500000,93,2,32191.001280,1847.063795,hint,lora,180 +on7,0,0,25,1,0,360,4503.396160,93,1,9294.602560,1851.070054,hint,lora,180 +on12,0,0,31,1,0,2272,5585.598720,93,7,43569.001280,2428.366464,hint,lora,180 +on4,0,0,29,1,0,1904,5223.500000,93,5,40333.001280,2240.038976,hint,lora,180 +on9,0,0,27,1,0,1350,4862.000000,93,3,27715.001280,2017.855795,hint,lora,180 +on3,0,0,25,1,0,1073,4501.600000,93,1,24482.001280,1854.191795,hint,lora,180 +on6,0,0,24,1,0,180,4320.001280,93,0,5752.001280,1753.600717,hint,lora,180 +on5,0,0,25,1,0,395,4502.300000,93,2,13052.001280,1874.231386,hint,lora,180 +on2,0,0,31,1,0,2453,5585.597440,93,8,48585.001280,2424.637542,hint,lora,180 +on10,0,0,29,1,0,1973,5359.500000,93,7,39357.001280,2240.502771,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,93,0,-1.000000,2126.690662,hint,lora,180 +on8,0,0,29,1,0,2568,5224.800000,93,6,52818.001280,2245.022976,hint,lora,180 +on7,0,0,25,1,0,1047,4500.997440,94,1,23602.002560,1826.158771,hint,lora,180 +on10,0,0,35,1,0,3650,6303.501280,94,12,62738.001280,2628.055283,hint,lora,180 +on1,0,0,26,1,0,1210,4683.200000,94,3,31337.001280,2008.207386,hint,lora,180 +on2,0,0,25,1,0,1794,4530.401280,94,2,37143.001280,1856.384512,hint,lora,180 +on9,0,0,27,1,0,2397,4862.200000,94,3,52810.001280,2055.615386,hint,lora,180 +on6,0,0,30,1,0,2387,5403.001280,94,6,44245.001280,2266.335283,hint,lora,180 +on4,0,0,30,1,0,3455,5567.700000,94,8,66179.001280,2387.622566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,94,0,-1.000000,2168.929024,hint,lora,180 +on3,0,0,29,1,0,2525,5399.601280,94,6,48992.001280,2312.143898,hint,lora,180 +on5,0,0,25,1,0,1237,4501.300000,94,1,28690.001280,1846.632000,hint,lora,180 +on8,0,0,33,1,0,3221,5945.500000,94,9,58557.001280,2538.470771,hint,lora,180 +on11,0,0,32,1,0,3283,5852.801280,94,9,55638.001280,2426.910874,hint,lora,180 +on12,0,0,29,1,0,2351,5222.501280,94,5,39920.001280,2139.416512,hint,lora,180 +on10,0,0,25,1,0,1395,4650.500000,95,3,29553.001280,1938.871386,hint,lora,180 +on1,0,0,25,1,0,1601,4502.000000,95,1,35769.001280,1845.023795,hint,lora,180 +on5,0,0,26,1,0,2022,4682.502560,95,2,41007.001280,1920.312819,hint,lora,180 +on9,0,0,27,1,0,2411,4967.900000,95,5,52559.001280,2129.623386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,95,0,-1.000000,2139.361843,hint,lora,180 +on4,0,0,24,1,0,0,4321.001280,95,0,193.001280,1782.384717,hint,lora,180 +on3,0,0,27,1,0,2367,4863.300000,95,3,44458.001280,2037.543181,hint,lora,180 +on2,0,0,27,1,0,1618,4861.900000,95,3,38835.001280,2053.127181,hint,lora,180 +on8,0,0,25,1,0,1235,4502.297440,95,2,27154.001280,1858.998976,hint,lora,180 +on12,0,0,26,1,0,556,4681.000000,95,2,9564.001280,1906.639590,hint,lora,180 +on11,0,0,25,1,0,408,4503.897440,95,1,12055.001280,1896.342771,hint,lora,180 +on7,0,0,29,1,0,1192,5221.897440,95,6,22353.001280,2179.814566,hint,lora,180 +on6,0,0,29,1,0,2759,5221.897440,95,5,50067.001280,2134.486157,hint,lora,180 +on8,0,0,26,1,0,582,4858.500000,96,4,11211.001280,2029.367795,hint,lora,180 +on11,0,0,24,1,0,390,4476.000000,96,1,10364.001280,1818.992000,hint,lora,180 +on2,0,0,25,1,0,658,4503.198720,96,1,16043.001280,1844.863693,hint,lora,180 +on12,0,0,28,1,0,1256,5107.302560,96,5,22468.001280,2162.376819,hint,lora,180 +on10,0,0,26,1,0,885,4682.600000,96,2,21684.001280,1963.279795,hint,lora,180 +on4,0,0,29,1,0,1660,5226.201280,96,5,29857.001280,2219.247283,hint,lora,180 +on7,0,0,32,1,0,2209,5830.705120,96,9,33751.001280,2430.505024,hint,lora,180 +on6,0,0,27,1,0,1465,4861.600000,96,3,26485.001280,1986.399795,hint,lora,180 +on9,0,0,24,1,0,0,4320.997440,96,0,2503.001280,1753.999181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,96,0,-1.000000,2092.289638,hint,lora,180 +on3,0,0,26,1,0,2505,4682.500000,96,2,47410.001280,1951.079590,hint,lora,180 +on5,0,0,27,1,0,1907,4862.300000,96,3,36201.001280,2013.078976,hint,lora,180 +on1,0,0,32,1,0,2456,5763.902560,96,8,42721.001280,2423.302976,hint,lora,180 +on3,0,0,27,1,0,2018,4863.797440,97,3,43781.001280,2095.934157,hint,lora,180 +on6,0,0,25,1,0,1068,4504.300000,97,1,23413.002560,1913.671590,hint,lora,180 +on1,0,0,28,1,0,2520,5042.100000,97,5,47765.001280,2076.662976,hint,lora,180 +on11,0,0,28,1,0,2383,5042.900000,97,5,42241.001280,2060.102566,hint,lora,180 +on5,0,0,26,1,0,633,4682.301280,97,3,13212.001280,1953.208512,hint,lora,180 +on8,0,0,28,1,0,1552,5383.000000,97,7,37274.001280,2334.271795,hint,lora,180 +on2,0,0,27,1,0,1064,4863.500000,97,4,29325.001280,2090.599590,hint,lora,180 +on9,0,0,25,1,0,347,4501.397440,97,1,10682.001280,1843.167181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,97,0,-1.000000,2134.818253,hint,lora,180 +on7,0,0,25,1,0,1267,4569.000000,97,2,28738.001280,1879.663795,hint,lora,180 +on10,0,0,26,1,0,2641,4682.300000,97,2,52441.001280,1940.023590,hint,lora,180 +on12,0,0,26,1,0,946,4681.802560,97,2,19235.001280,1898.529434,hint,lora,180 +on4,0,0,26,1,0,1543,4754.500000,97,3,35937.001280,2031.288410,hint,lora,180 +on4,0,0,28,1,0,1659,5103.901280,98,5,35478.001280,2136.807898,hint,lora,180 +on9,0,0,29,1,0,1717,5224.200000,98,5,31397.001280,2197.535386,hint,lora,180 +on2,0,0,31,1,0,2476,5697.597440,98,8,41752.001280,2366.173133,hint,lora,180 +on7,0,0,24,1,0,1075,4421.000000,98,1,25146.001280,1796.880000,hint,lora,180 +on5,0,0,24,1,0,590,4385.300000,98,1,16890.001280,1847.991386,hint,lora,180 +on6,0,0,28,1,0,1399,5044.000000,98,4,27952.002560,2135.471181,hint,lora,180 +on11,0,0,28,1,0,1950,5043.900000,98,5,37546.001280,2098.262976,hint,lora,180 +on12,0,0,26,1,0,997,4684.494880,98,2,20272.001280,1940.325952,hint,lora,180 +on8,0,0,28,1,0,2632,5218.894880,98,5,45485.001280,2175.173542,hint,lora,180 +on10,0,0,32,1,0,2621,5928.900000,98,10,47307.001280,2554.629747,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,98,0,-1.000000,2087.074253,hint,lora,180 +on1,0,0,26,1,0,2278,4682.900000,98,2,51712.001280,2024.903590,hint,lora,180 +on3,0,0,25,1,0,518,4503.000000,98,1,11666.001280,1853.503386,hint,lora,180 +on1,0,0,26,1,0,1715,4684.496160,99,2,31190.001280,1934.197850,hint,lora,180 +on8,0,0,25,1,0,0,4502.002560,99,1,962.602560,1857.681229,hint,lora,180 +on11,0,0,29,1,0,1786,5616.601280,99,8,42193.001280,2484.239488,hint,lora,180 +on2,0,0,26,1,0,816,4686.798720,99,2,17138.001280,1993.071283,hint,lora,180 +on6,0,0,26,1,0,1249,4684.600000,99,2,26218.001280,1975.375795,hint,lora,180 +on7,0,0,26,1,0,863,4681.600000,99,2,18339.001280,1935.039795,hint,lora,180 +on4,0,0,26,1,0,1782,4830.201280,99,3,39342.001280,2043.982874,hint,lora,180 +on5,0,0,26,1,0,498,4686.296160,99,2,8587.001280,1974.262464,hint,lora,180 +on10,0,0,31,1,0,1719,5593.802560,99,8,35968.001280,2423.311386,hint,lora,180 +on3,0,0,27,1,0,577,4863.200000,99,3,13119.001280,2034.175181,hint,lora,180 +on12,0,0,27,0,0,4414,4861.200000,99,3,-1.000000,1988.319386,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,99,0,-1.000000,2067.523072,hint,lora,180 +on9,0,0,28,1,0,1165,5043.897440,99,4,25007.002560,2120.966362,hint,lora,180 +on5,0,0,27,1,0,2569,4863.800000,100,4,48027.001280,2005.151590,hint,lora,180 +on1,0,0,23,1,0,2024,4461.000000,100,1,43255.001280,1867.328000,hint,lora,180 +on2,0,0,26,1,0,2717,4704.800000,100,3,55156.001280,1974.560205,hint,lora,180 +on8,0,0,26,1,0,2195,4682.898720,100,3,44763.001280,1929.959283,hint,lora,180 +on9,0,0,28,1,0,3423,5044.200000,100,5,68641.001280,2152.478771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,100,0,-1.000000,2070.532915,hint,lora,180 +on6,0,0,30,1,0,3562,5405.300000,100,6,66802.001280,2281.527795,hint,lora,180 +on4,0,0,28,1,0,2890,5210.901280,100,6,63098.001280,2258.743488,hint,lora,180 +on11,0,0,24,1,0,555,4324.994880,100,0,12932.001280,1782.319181,hint,lora,180 +on12,0,0,25,1,0,2372,4502.300000,100,1,53571.001280,1881.879795,hint,lora,180 +on10,0,0,25,1,0,1647,4502.297440,100,1,37758.001280,1873.655181,hint,lora,180 +on3,0,0,24,1,0,369,4320.001280,100,0,8955.001280,1753.600717,hint,lora,180 +on7,0,0,24,0,0,4159,4320.000000,100,0,-1.000000,1771.840000,hint,lora,180 +on4,0,0,32,1,0,2196,5764.698720,101,8,38969.001280,2417.926464,hint,lora,180 +on10,0,0,32,1,0,2622,5764.505120,101,8,50092.001280,2520.857024,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,101,0,-1.000000,2128.353638,hint,lora,180 +on7,0,0,26,1,0,498,4684.001280,101,2,12903.001280,1950.928717,hint,lora,180 +on3,0,0,32,1,0,2209,5767.898720,101,10,45522.001280,2545.733645,hint,lora,180 +on9,0,0,27,1,0,1343,5026.900000,101,5,26531.001280,2109.350976,hint,lora,180 +on1,0,0,31,0,0,4688,5740.300000,101,8,-1.000000,2392.246976,hint,lora,180 +on6,0,0,28,1,0,1537,5125.800000,101,5,32198.001280,2161.439386,hint,lora,180 +on12,0,0,29,1,0,1396,5221.600000,101,5,24582.001280,2122.831590,hint,lora,180 +on8,0,0,31,1,0,2396,5583.000000,101,7,39972.001280,2339.262771,hint,lora,180 +on5,0,0,28,1,0,793,5043.000000,101,4,15936.001280,2112.207795,hint,lora,180 +on11,0,0,31,1,0,1885,5585.797440,101,7,33390.001280,2379.470771,hint,lora,180 +on2,0,0,26,1,0,1059,4684.300000,101,2,19442.001280,1971.543590,hint,lora,180 +on8,0,0,24,0,0,4242,4320.000000,102,0,-1.000000,1740.640000,hint,lora,180 +on6,0,0,24,0,0,4295,4320.000000,102,0,-1.000000,1756.800000,hint,lora,180 +on12,0,0,25,1,0,2642,4500.201280,102,1,54526.001280,1831.120717,hint,lora,180 +on2,0,0,25,1,0,3912,4502.300000,102,1,82147.001280,1890.951590,hint,lora,180 +on1,0,0,24,1,0,2080,4321.000000,102,0,46152.001280,1796.560410,hint,lora,180 +on5,0,0,24,0,0,4067,4320.000000,102,0,-1.000000,1779.520000,hint,lora,180 +on3,0,0,26,0,0,4168,4680.201280,102,2,-1.000000,1945.520512,hint,lora,180 +on4,0,0,25,0,0,4460,4500.000000,102,1,-1.000000,1828.800000,hint,lora,180 +on10,0,0,26,0,0,4582,4680.500000,102,2,-1.000000,1875.447795,hint,lora,180 +on7,0,0,26,0,0,4396,4680.701280,102,2,-1.000000,1891.224512,hint,lora,180 +on0,1,4,24,0,0,0,4320.000000,102,0,-1.000000,2004.288614,hint,lora,180 +on11,0,0,25,1,0,3551,4502.300000,102,1,76903.001280,1898.664000,hint,lora,180 +on9,0,0,25,0,0,4181,4522.700000,102,2,-1.000000,1841.287590,hint,lora,180 +on12,0,0,25,1,0,3417,4500.997440,103,1,69213.001280,1825.999181,hint,lora,180 +on9,0,0,26,1,0,3173,4681.300000,103,2,64497.001280,1911.399386,hint,lora,180 +on7,0,0,24,0,0,4241,4320.000000,103,0,-1.000000,1740.800000,hint,lora,180 +on1,0,0,24,1,0,2168,4322.002560,103,0,46924.001280,1795.329434,hint,lora,180 +on5,0,0,24,1,0,2777,4550.300000,103,2,61264.001280,1944.439795,hint,lora,180 +on2,0,0,26,1,0,3331,4845.500000,103,3,65794.001280,2020.552000,hint,lora,180 +on4,0,0,25,1,0,2613,4563.300000,103,3,52735.001280,1860.583590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,103,0,-1.000000,2176.514253,hint,lora,180 +on8,0,0,25,1,0,3796,4648.300000,103,2,79782.001280,1990.999386,hint,lora,180 +on3,0,0,25,1,0,3747,4502.000000,103,1,76031.001280,1861.071590,hint,lora,180 +on6,0,0,25,1,0,2488,4503.202560,103,1,55633.001280,1883.232819,hint,lora,180 +on10,0,0,29,1,0,3786,5277.900000,103,9,75689.001280,2246.901952,hint,lora,180 +on11,0,0,25,1,0,2329,4501.297440,103,1,49197.001280,1870.695181,hint,lora,180 +on5,0,0,32,1,0,3667,5764.800000,104,9,71764.001280,2463.470362,hint,lora,180 +on3,0,0,25,1,0,2053,4501.300000,104,1,46871.001280,1875.400000,hint,lora,180 +on4,0,0,29,1,0,3312,5223.497440,104,5,64993.001280,2205.141338,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,104,0,-1.000000,2213.185024,hint,lora,180 +on8,0,0,32,1,0,2369,5765.002560,104,8,50892.001280,2559.664000,hint,lora,180 +on12,0,0,28,1,0,2854,5041.703840,104,4,56034.001280,2086.377126,hint,lora,180 +on7,0,0,27,1,0,1721,4862.500000,104,3,32953.001280,2021.064000,hint,lora,180 +on6,0,0,26,1,0,1759,4683.600000,104,2,37875.001280,1957.503181,hint,lora,180 +on10,0,0,25,1,0,1460,4663.001280,104,2,31730.001280,1925.280512,hint,lora,180 +on2,0,0,30,1,0,3362,5402.401280,104,6,63789.001280,2276.447693,hint,lora,180 +on11,0,0,27,1,0,2072,4863.001280,104,3,41604.001280,2012.432307,hint,lora,180 +on1,0,0,26,1,0,2453,4683.100000,104,2,60870.001280,2023.079590,hint,lora,180 +on9,0,0,29,1,0,3864,5222.900000,104,6,72508.001280,2195.879181,hint,lora,180 +on3,0,0,27,1,0,2991,5103.500000,105,5,58890.001280,2143.094976,hint,lora,180 +on8,0,0,26,1,0,1984,4681.300000,105,2,46515.001280,1935.975795,hint,lora,180 +on6,0,0,25,1,0,1474,4503.602560,105,1,35767.602560,1891.313638,hint,lora,180 +on9,0,0,26,1,0,2814,4894.300000,105,4,57542.001280,2066.839795,hint,lora,180 +on4,0,0,27,1,0,2429,4862.400000,105,3,48682.001280,2053.871795,hint,lora,180 +on12,0,0,30,1,0,3753,5404.402560,105,6,70676.001280,2250.144205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,105,0,-1.000000,2205.633229,hint,lora,180 +on10,0,0,30,1,0,3515,5403.202560,105,6,66078.001280,2239.136410,hint,lora,180 +on1,0,0,31,1,0,3374,5585.200000,105,7,64078.001280,2374.430976,hint,lora,180 +on7,0,0,33,1,0,4135,5944.000000,105,10,80549.001280,2587.245338,hint,lora,180 +on5,0,0,27,1,0,2609,4862.900000,105,3,53038.001280,2028.135590,hint,lora,180 +on2,0,0,30,1,0,3624,5566.300000,105,8,73275.001280,2358.406771,hint,lora,180 +on11,0,0,28,1,0,3997,5041.597440,105,4,79267.001280,2133.165952,hint,lora,180 +on1,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,hint,lora,180 +on5,0,0,25,1,0,1733,4503.000000,106,1,38871.001280,1864.720000,hint,lora,180 +on6,0,0,25,1,0,633,4643.500000,106,3,11475.001280,1888.280000,hint,lora,180 +on12,0,0,26,1,0,1294,4683.600000,106,2,29135.001280,1987.584205,hint,lora,180 +on8,0,0,28,0,0,4537,5040.800000,106,4,-1.000000,2069.118566,hint,lora,180 +on9,0,0,29,1,0,2342,5222.301280,106,5,46956.001280,2185.927488,hint,lora,180 +on2,0,0,27,1,0,1425,4862.201280,106,3,34484.001280,2045.648307,hint,lora,180 +on4,0,0,30,1,0,2323,5403.501280,106,7,41552.001280,2268.535283,hint,lora,180 +on11,0,0,25,1,0,1172,4502.300000,106,1,27425.001280,1863.480000,hint,lora,180 +on7,0,0,25,1,0,916,4504.298720,106,1,22230.001280,1911.351488,hint,lora,180 +on3,0,0,25,1,0,334,4502.197440,106,1,9593.001280,1874.639386,hint,lora,180 +on10,0,0,29,1,0,3735,5380.906400,106,6,75748.001280,2276.074765,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,106,0,-1.000000,2134.370458,hint,lora,180 +on1,0,0,28,1,0,1645,5043.702560,107,4,34444.001280,2147.176205,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,107,0,-1.000000,2101.761843,hint,lora,180 +on8,0,0,26,1,0,1930,4684.600000,107,2,40022.001280,1976.239795,hint,lora,180 +on10,0,0,27,1,0,2360,4863.002560,107,3,47573.001280,2034.432614,hint,lora,180 +on12,0,0,25,1,0,1708,4502.000000,107,1,38650.001280,1884.704000,hint,lora,180 +on6,0,0,25,1,0,1421,4515.600000,107,2,30657.001280,1857.647386,hint,lora,180 +on5,0,0,26,1,0,1517,4681.000000,107,2,28628.001280,1904.351386,hint,lora,180 +on2,0,0,32,1,0,3165,5764.108960,107,9,54872.001280,2459.834970,hint,lora,180 +on11,0,0,25,1,0,1248,4501.998720,107,1,24160.001280,1829.439693,hint,lora,180 +on7,0,0,24,0,0,4172,4320.000000,107,0,-1.000000,1751.840000,hint,lora,180 +on3,0,0,27,1,0,2486,4863.197440,107,3,53124.001280,2073.374566,hint,lora,180 +on9,0,0,25,1,0,509,4500.002560,107,1,13284.001280,1830.673434,hint,lora,180 +on4,0,0,28,1,0,2513,5147.400000,107,5,43637.001280,2204.462976,hint,lora,180 +on7,0,0,29,1,0,1963,5345.100000,108,7,35471.001280,2200.103386,hint,lora,180 +on6,0,0,28,1,0,1259,5045.798720,108,4,24713.001280,2138.271078,hint,lora,180 +on4,0,0,30,1,0,2418,5544.100000,108,7,41469.001280,2336.550566,hint,lora,180 +on2,0,0,25,1,0,1753,4503.300000,108,1,39233.001280,1890.982976,hint,lora,180 +on11,0,0,28,1,0,2833,5192.802560,108,6,56344.001280,2230.977024,hint,lora,180 +on1,0,0,32,1,0,2655,6099.601280,108,10,49970.001280,2620.527283,hint,lora,180 +on3,0,0,27,1,0,2845,4861.302560,108,3,59054.001280,2020.488614,hint,lora,180 +on12,0,0,31,1,0,2817,5747.400000,108,8,53380.001280,2425.630157,hint,lora,180 +on5,0,0,26,1,0,1088,4862.800000,108,3,19092.001280,2027.855590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,108,0,-1.000000,2213.634048,hint,lora,180 +on10,0,0,26,1,0,672,4681.000000,108,2,15595.001280,1925.744000,hint,lora,180 +on9,0,0,26,1,0,3882,4681.300000,108,2,81046.001280,1946.663590,hint,lora,180 +on8,0,0,26,1,0,693,4682.201280,108,2,14186.001280,1930.368717,hint,lora,180 +on7,0,0,30,1,0,2361,5404.301280,109,7,44518.001280,2288.679078,hint,lora,180 +on11,0,0,26,1,0,924,4681.401280,109,2,16148.001280,1901.104307,hint,lora,180 +on10,0,0,26,1,0,1500,4681.600000,109,2,31114.001280,1913.071795,hint,lora,180 +on2,0,0,26,1,0,1262,4745.398720,109,3,23655.001280,2005.423078,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,109,0,-1.000000,2124.897434,hint,lora,180 +on6,0,0,29,1,0,2658,5374.203840,109,7,53194.001280,2294.417331,hint,lora,180 +on4,0,0,24,1,0,180,4320.001280,109,0,7050.001280,1753.600717,hint,lora,180 +on1,0,0,28,1,0,1781,5041.800000,109,4,35448.001280,2077.151795,hint,lora,180 +on9,0,0,31,1,0,2913,5584.297440,109,7,50512.001280,2335.557133,hint,lora,180 +on8,0,0,31,1,0,2233,5608.001280,109,8,41443.001280,2343.503898,hint,lora,180 +on3,0,0,27,1,0,1751,4957.998720,109,4,38785.001280,2129.247488,hint,lora,180 +on12,0,0,28,0,0,4432,5041.100000,109,4,-1.000000,2085.655386,hint,lora,180 +on5,0,0,25,1,0,1380,4501.000000,109,1,27771.001280,1828.992000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,110,0,-1.000000,2135.715072,hint,lora,180 +on11,0,0,25,1,0,2952,4501.200000,110,1,60360.001280,1835.903795,hint,lora,180 +on6,0,0,26,1,0,3215,4683.300000,110,2,63111.001280,1949.383590,hint,lora,180 +on2,0,0,26,1,0,3334,4680.997440,110,2,68236.001280,1901.198771,hint,lora,180 +on5,0,0,29,1,0,2201,5221.997440,110,5,39716.001280,2151.054157,hint,lora,180 +on4,0,0,27,1,0,1528,4920.003840,110,4,26631.001280,2056.193331,hint,lora,180 +on3,0,0,26,1,0,3126,4682.600000,110,3,69380.001280,1997.807590,hint,lora,180 +on10,0,0,27,1,0,2039,4863.603840,110,5,40568.001280,2042.033946,hint,lora,180 +on8,0,0,29,1,0,1579,5222.702560,110,5,31942.001280,2198.824410,hint,lora,180 +on12,0,0,26,1,0,847,4681.501280,110,2,19065.001280,1925.320512,hint,lora,180 +on7,0,0,24,1,0,999,4498.900000,110,1,23398.001280,1869.479590,hint,lora,180 +on1,0,0,25,1,0,832,4503.300000,110,1,17355.001280,1875.160000,hint,lora,180 +on9,0,0,26,1,0,325,4683.396160,110,2,9778.602560,1956.207078,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,111,0,-1.000000,2206.113229,hint,lora,180 +on4,0,0,27,1,0,2257,5039.903840,111,5,44440.001280,2093.657536,hint,lora,180 +on5,0,0,30,1,0,2961,5403.600000,111,6,55534.002560,2265.406976,hint,lora,180 +on10,0,0,26,1,0,2877,4681.800000,111,3,67080.001280,1983.631795,hint,lora,180 +on1,0,0,31,1,0,3926,5721.302560,111,8,77201.001280,2510.566976,hint,lora,180 +on11,0,0,25,1,0,2272,4519.798720,111,2,47620.001280,1859.455283,hint,lora,180 +on9,0,0,30,1,0,3763,5403.102560,111,6,73536.001280,2267.879590,hint,lora,180 +on8,0,0,28,1,0,3145,5076.503840,111,5,62831.001280,2147.640922,hint,lora,180 +on3,0,0,28,1,0,3552,5043.302560,111,4,70767.001280,2101.896819,hint,lora,180 +on2,0,0,25,1,0,1726,4500.997440,111,1,34485.001280,1830.159181,hint,lora,180 +on6,0,0,32,1,0,4042,5770.005120,111,9,82497.001280,2503.969024,hint,lora,180 +on7,0,0,27,1,0,2646,4861.801280,111,3,50842.001280,1990.992307,hint,lora,180 +on12,0,0,25,1,0,2753,4502.000000,111,1,60385.001280,1867.328000,hint,lora,180 +on2,0,0,27,1,0,2036,4946.401280,112,4,40042.001280,2070.287898,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,112,0,-1.000000,2125.058253,hint,lora,180 +on11,0,0,26,1,0,2146,4682.300000,112,2,43675.001280,1950.583181,hint,lora,180 +on9,0,0,24,1,0,48,4320.998720,112,0,3830.001280,1776.879693,hint,lora,180 +on12,0,0,25,1,0,1404,4502.300000,112,1,28997.001280,1857.495795,hint,lora,180 +on6,0,0,28,1,0,2456,5042.100000,112,5,48410.001280,2109.078771,hint,lora,180 +on8,0,0,28,1,0,1826,5041.905120,112,4,36809.001280,2107.929638,hint,lora,180 +on1,0,0,27,1,0,3041,4861.900000,112,4,63574.001280,2052.279386,hint,lora,180 +on4,0,0,25,1,0,2739,4502.300000,112,1,56441.001280,1880.648000,hint,lora,180 +on3,0,0,24,1,0,1615,4480.300000,112,1,33017.001280,1830.168000,hint,lora,180 +on5,0,0,31,1,0,3246,5746.301280,112,9,60154.001280,2428.887898,hint,lora,180 +on7,0,0,25,1,0,937,4501.001280,112,1,22751.001280,1874.064717,hint,lora,180 +on10,0,0,26,1,0,2614,4681.997440,112,2,51374.001280,1930.238771,hint,lora,180 +on10,0,0,25,1,0,2633,4501.197440,113,1,53526.001280,1826.079181,hint,lora,180 +on2,0,0,24,0,0,4301,4320.000000,113,0,-1.000000,1756.800000,hint,lora,180 +on3,0,0,25,1,0,2834,4501.205120,113,2,57972.001280,1836.370048,hint,lora,180 +on5,0,0,30,1,0,4140,5405.200000,113,7,80966.001280,2362.127386,hint,lora,180 +on1,0,0,24,1,0,2263,4419.305120,113,2,57457.001280,1891.306253,hint,lora,180 +on12,0,0,27,1,0,3506,4861.600000,113,3,70943.001280,2023.647795,hint,lora,180 +on6,0,0,28,1,0,3572,5042.900000,113,5,73824.001280,2135.094771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,113,0,-1.000000,2161.027482,hint,lora,180 +on4,0,0,26,1,0,3992,4680.600000,113,3,84920.000000,1958.479795,hint,lora,180 +on9,0,0,24,1,0,2348,4323.000000,113,0,50166.001280,1795.087795,hint,lora,180 +on8,0,0,28,1,0,3807,5043.397440,113,4,76234.001280,2109.438157,hint,lora,180 +on7,0,0,26,1,0,3253,4804.800000,113,3,67723.001280,1993.807590,hint,lora,180 +on11,0,0,25,1,0,3069,4638.800000,113,2,63111.001280,1913.743795,hint,lora,180 +on2,0,0,25,1,0,1553,4501.000000,114,1,32136.001280,1829.040000,hint,lora,180 +on5,0,0,31,1,0,2377,5861.605120,114,10,41701.001280,2482.881843,hint,lora,180 +on7,0,0,25,1,0,333,4501.200000,114,1,9995.001280,1848.272000,hint,lora,180 +on9,0,0,26,1,0,592,4685.000000,114,2,12861.001280,2013.647795,hint,lora,180 +on6,0,0,28,1,0,1693,5087.802560,114,5,28607.001280,2088.144000,hint,lora,180 +on8,0,0,27,1,0,1073,4861.800000,114,3,22389.001280,2003.743795,hint,lora,180 +on12,0,0,28,1,0,1801,5042.501280,114,4,32681.001280,2105.495488,hint,lora,180 +on11,0,0,32,1,0,2372,5923.801280,114,9,39590.001280,2512.526669,hint,lora,180 +on10,0,0,24,1,0,798,4493.300000,114,1,17748.001280,1827.096000,hint,lora,180 +on3,0,0,30,1,0,2799,5402.403840,114,6,50391.001280,2235.487693,hint,lora,180 +on1,0,0,26,1,0,1009,4681.000000,114,2,18173.001280,1900.784000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,114,0,-1.000000,2103.968205,hint,lora,180 +on4,0,0,30,1,0,2425,5533.200000,114,7,46641.001280,2354.574362,hint,lora,180 +on1,0,0,25,1,0,678,4502.998720,115,1,13814.001280,1846.223693,hint,lora,180 +on4,0,0,25,1,0,335,4501.197440,115,1,7737.001280,1826.079181,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,115,0,-1.000000,2073.891891,hint,lora,180 +on10,0,0,28,1,0,1452,5095.803840,115,5,32582.001280,2237.985331,hint,lora,180 +on12,0,0,25,1,0,1389,4504.001280,115,1,31724.001280,1898.304717,hint,lora,180 +on5,0,0,28,1,0,1061,5043.301280,115,5,18511.001280,2108.136512,hint,lora,180 +on2,0,0,26,0,0,4185,4680.600000,115,2,-1.000000,1930.319181,hint,lora,180 +on8,0,0,30,1,0,2064,5404.505120,115,6,36755.001280,2268.025843,hint,lora,180 +on11,0,0,25,1,0,39,4507.196160,115,1,5039.001280,1982.783283,hint,lora,180 +on6,0,0,25,1,0,683,4503.301280,115,1,16322.001280,1884.968307,hint,lora,180 +on3,0,0,25,1,0,2089,4501.998720,115,1,42164.001280,1833.439693,hint,lora,180 +on9,0,0,28,1,0,1497,5044.102560,115,4,26357.001280,2085.000000,hint,lora,180 +on7,0,0,27,1,0,1046,4863.101280,115,3,22979.001280,2021.000307,hint,lora,180 +on4,0,0,28,1,0,1542,5146.398720,116,5,32795.001280,2201.374669,hint,lora,180 +on5,0,0,25,1,0,557,4502.300000,116,1,13251.001280,1859.128000,hint,lora,180 +on8,0,0,27,1,0,4293,4860.498720,116,3,84649.000000,1996.967488,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,116,0,-1.000000,2131.778253,hint,lora,180 +on2,0,0,30,1,0,2101,5405.598720,116,6,42843.001280,2326.141850,hint,lora,180 +on1,0,0,26,1,0,714,4683.300000,116,2,16331.001280,1967.495795,hint,lora,180 +on11,0,0,31,1,0,2394,5590.303840,116,8,46369.001280,2376.616512,hint,lora,180 +on6,0,0,28,1,0,1330,5151.398720,116,5,26158.001280,2192.350874,hint,lora,180 +on3,0,0,25,1,0,667,4504.597440,116,2,18285.001280,1899.118771,hint,lora,180 +on10,0,0,32,1,0,2229,5763.810240,116,8,39501.001280,2429.427891,hint,lora,180 +on12,0,0,25,1,0,1220,4595.600000,116,2,29514.001280,1910.079590,hint,lora,180 +on7,0,0,25,1,0,1126,4753.000000,116,3,22142.001280,1986.848000,hint,lora,180 +on9,0,0,24,1,0,92,4356.998720,116,1,7016.001280,1803.247898,hint,lora,180 +on8,0,0,25,1,0,1641,4501.497440,117,1,39086.001280,1869.687181,hint,lora,180 +on11,0,0,28,1,0,3336,5044.500000,117,5,69445.001280,2190.439386,hint,lora,180 +on5,0,0,25,1,0,2269,4502.000000,117,1,49159.001280,1883.680410,hint,lora,180 +on2,0,0,26,1,0,776,4681.497440,117,3,19068.001280,1940.598976,hint,lora,180 +on12,0,0,24,0,0,4210,4320.000000,117,1,-1.000000,1739.200000,hint,lora,180 +on4,0,0,26,1,0,3210,4682.600000,117,2,66382.001280,1929.807795,hint,lora,180 +on1,0,0,25,1,0,882,4501.996160,117,1,16347.001280,1826.398874,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,117,0,-1.000000,2092.131686,hint,lora,180 +on10,0,0,25,1,0,2549,4502.300000,117,1,55549.001280,1882.360000,hint,lora,180 +on3,0,0,26,1,0,1875,4683.601280,117,3,40755.001280,1993.392512,hint,lora,180 +on9,0,0,25,1,0,2715,4502.597440,117,1,61352.001280,1908.046976,hint,lora,180 +on6,0,0,24,1,0,958,4350.298720,117,2,22414.001280,1785.239488,hint,lora,180 +on7,0,0,25,1,0,2094,4501.001280,117,1,44605.001280,1854.384717,hint,lora,180 +on2,0,0,26,1,0,1007,4683.000000,118,2,18982.001280,1956.943795,hint,lora,180 +on6,0,0,28,1,0,2476,5042.897440,118,4,43005.001280,2082.278362,hint,lora,180 +on4,0,0,34,1,0,2818,6123.503840,118,12,45598.001280,2582.295693,hint,lora,180 +on10,0,0,32,1,0,1876,5764.498720,118,8,31633.001280,2419.334259,hint,lora,180 +on8,0,0,25,1,0,827,4609.003840,118,2,17445.001280,1917.841741,hint,lora,180 +on11,0,0,26,1,0,323,4685.607680,118,2,8907.001280,1998.755482,hint,lora,180 +on9,0,0,27,1,0,1559,5039.300000,118,4,28222.001280,2082.599795,hint,lora,180 +on7,0,0,26,0,0,4343,4680.200000,118,2,-1.000000,1899.215590,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,118,0,-1.000000,2089.410867,hint,lora,180 +on5,0,0,25,1,0,1101,4582.301280,118,3,24639.001280,1883.864512,hint,lora,180 +on12,0,0,27,1,0,1771,4876.498720,118,4,35627.001280,2033.062874,hint,lora,180 +on1,0,0,32,1,0,2056,5764.800000,118,8,36340.001280,2481.070362,hint,lora,180 +on3,0,0,25,1,0,385,4503.200000,118,1,12196.001280,1898.735386,hint,lora,180 +on4,0,0,26,1,0,2233,4682.503840,119,2,52892.001280,2025.306150,hint,lora,180 +on8,0,0,24,1,0,2765,4454.197440,119,1,57512.001280,1861.583181,hint,lora,180 +on2,0,0,25,1,0,999,4501.994880,119,1,23398.001280,1836.318362,hint,lora,180 +on9,0,0,26,1,0,1458,4681.300000,119,3,29894.001280,1916.631795,hint,lora,180 +on12,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,hint,lora,180 +on5,0,0,24,1,0,2720,4345.301280,119,2,61082.001280,1820.520512,hint,lora,180 +on6,0,0,24,0,0,4180,4320.000000,119,0,-1.000000,1750.560000,hint,lora,180 +on7,0,0,24,0,0,4003,4320.000000,119,0,-1.000000,1845.760000,hint,lora,180 +on0,1,8,24,0,0,0,4320.000000,119,0,-1.000000,2192.322867,hint,lora,180 +on11,0,0,26,1,0,3785,4737.600000,119,4,75621.001280,1939.199590,hint,lora,180 +on10,0,0,25,1,0,3064,4502.200000,119,1,66971.001280,1895.744000,hint,lora,180 +on3,0,0,24,0,0,4216,4320.000000,119,0,-1.000000,1755.680000,hint,lora,180 +on1,0,0,26,1,0,3320,4681.297440,119,2,71036.001280,1938.054771,hint,lora,180 +on2,0,0,31,1,0,2297,5584.400000,120,7,35820.001280,2332.798771,hint,lora,180 +on11,0,0,24,1,0,293,4412.000000,120,1,10086.001280,1885.343795,hint,lora,180 +on10,0,0,27,1,0,1045,4862.200000,120,3,18409.001280,2010.959590,hint,lora,180 +on5,0,0,28,1,0,1587,5041.501280,120,4,28246.001280,2048.919898,hint,lora,180 +on8,0,0,29,1,0,1755,5223.801280,120,5,32014.001280,2183.791488,hint,lora,180 +on7,0,0,26,1,0,2208,4681.900000,120,2,49155.001280,1969.719386,hint,lora,180 +on9,0,0,25,1,0,710,4563.000000,120,2,13691.001280,1882.592000,hint,lora,180 +on3,0,0,27,1,0,1932,4862.900000,120,3,37693.001280,2017.479386,hint,lora,180 +on1,0,0,28,1,0,806,5041.800000,120,4,15899.001280,2085.199795,hint,lora,180 +on6,0,0,35,1,0,2784,6304.800000,120,11,43159.001280,2653.917747,hint,lora,180 +on4,0,0,30,1,0,2438,5403.300000,120,6,45158.001280,2291.670771,hint,lora,180 +on12,0,0,28,1,0,1381,5145.700000,120,5,22517.001280,2158.695386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,120,0,-1.000000,2124.448614,hint,lora,180 +on8,0,0,25,1,0,743,4503.000000,121,1,19730.001280,1860.624205,hint,lora,180 +on11,0,0,28,0,0,4228,5208.598720,121,5,-1.000000,2188.830669,hint,lora,180 +on12,0,0,24,1,0,1216,4619.498720,121,2,28448.001280,1938.807283,hint,lora,180 +on2,0,0,28,1,0,2573,5043.900000,121,4,47009.001280,2098.903386,hint,lora,180 +on3,0,0,30,1,0,3968,5408.401280,121,7,76764.001280,2277.870669,hint,lora,180 +on7,0,0,32,1,0,2357,5823.100000,121,9,50866.001280,2543.831386,hint,lora,180 +on10,0,0,29,1,0,1913,5222.498720,121,5,39339.001280,2186.583283,hint,lora,180 +on6,0,0,24,1,0,297,4322.001280,121,0,10504.001280,1815.264512,hint,lora,180 +on9,0,0,30,1,0,2528,5403.703840,121,6,46327.001280,2250.008922,hint,lora,180 +on5,0,0,26,1,0,1696,4682.000000,121,2,32395.001280,1902.607795,hint,lora,180 +on1,0,0,33,1,0,4484,5942.000000,121,10,85241.000000,2513.278566,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,121,0,-1.000000,2167.873843,hint,lora,180 +on4,0,0,30,1,0,2048,5404.900000,121,6,39845.001280,2284.023386,hint,lora,180 +on4,0,0,26,1,0,2267,4683.000000,122,2,44417.001280,1961.967386,hint,lora,180 +on2,0,0,30,1,0,2634,5402.700000,122,6,48122.001280,2263.222157,hint,lora,180 +on12,0,0,25,1,0,836,4501.000000,122,1,15058.002560,1829.087795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,122,0,-1.000000,2063.457843,hint,lora,180 +on7,0,0,27,1,0,1780,4862.800000,122,3,33746.001280,2013.631386,hint,lora,180 +on5,0,0,26,1,0,854,4703.997440,122,3,22070.001280,1944.271181,hint,lora,180 +on1,0,0,25,1,0,946,4501.000000,122,1,20180.001280,1828.944000,hint,lora,180 +on9,0,0,29,1,0,1523,5222.800000,122,8,29204.001280,2172.734771,hint,lora,180 +on10,0,0,25,1,0,363,4503.300000,122,2,10978.001280,1893.607795,hint,lora,180 +on11,0,0,26,1,0,2036,4681.600000,122,2,42260.001280,1925.599590,hint,lora,180 +on3,0,0,24,1,0,360,4322.997440,122,0,8198.001280,1767.599181,hint,lora,180 +on8,0,0,26,1,0,1771,4682.600000,122,2,37214.001280,1947.471590,hint,lora,180 +on6,0,0,25,1,0,1125,4501.997440,122,2,26823.001280,1830.623181,hint,lora,180 +on8,0,0,24,0,0,4277,4320.000000,123,0,-1.000000,1735.360000,hint,lora,180 +on11,0,0,25,0,0,4365,4500.000000,123,1,-1.000000,1806.495386,hint,lora,180 +on3,0,0,25,1,0,3240,4502.300000,123,1,69613.001280,1892.983795,hint,lora,180 +on2,0,0,24,1,0,918,4323.998720,123,0,20999.001280,1797.824102,hint,lora,180 +on7,0,0,25,1,0,2634,4501.000000,123,1,51962.001280,1828.784000,hint,lora,180 +on12,0,0,25,1,0,2982,4501.000000,123,1,61333.001280,1834.320000,hint,lora,180 +on1,0,0,29,1,0,3592,5353.697440,123,6,65552.001280,2293.109542,hint,lora,180 +on9,0,0,29,1,0,3381,5362.203840,123,7,73789.001280,2338.176512,hint,lora,180 +on5,0,0,24,1,0,2355,4322.000000,123,0,48152.001280,1762.687795,hint,lora,180 +on6,0,0,26,1,0,2860,4683.502560,123,2,55735.001280,1943.705024,hint,lora,180 +on4,0,0,26,1,0,2986,4707.001280,123,3,63685.001280,2010.912307,hint,lora,180 +on10,0,0,24,1,0,1271,4321.002560,123,0,26934.001280,1781.521229,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,123,0,-1.000000,2073.250253,hint,lora,180 +on1,0,0,28,0,0,4281,5041.001280,124,5,-1.000000,2113.391488,hint,lora,180 +on2,0,0,24,1,0,329,4424.000000,124,1,10753.001280,1819.040410,hint,lora,180 +on11,0,0,28,1,0,1250,5045.100000,124,4,24740.001280,2151.046976,hint,lora,180 +on12,0,0,27,1,0,664,4865.700000,124,3,11737.001280,2011.144410,hint,lora,180 +on5,0,0,31,1,0,2463,5584.001280,124,8,40632.001280,2351.951078,hint,lora,180 +on10,0,0,26,1,0,1388,4681.601280,124,2,28730.001280,1938.464307,hint,lora,180 +on9,0,0,32,1,0,2174,5792.202560,124,10,37213.001280,2479.344819,hint,lora,180 +on6,0,0,25,1,0,868,4504.200000,124,1,16603.001280,1888.944410,hint,lora,180 +on8,0,0,24,1,0,0,4321.000000,124,0,3207.001280,1754.384205,hint,lora,180 +on3,0,0,27,1,0,1424,5178.598720,124,6,30282.001280,2212.063693,hint,lora,180 +on7,0,0,27,1,0,1101,4865.997440,124,3,19679.001280,2092.382771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,124,0,-1.000000,2086.404710,hint,lora,180 +on4,0,0,24,1,0,108,4420.300000,124,1,5651.001280,1870.696410,hint,lora,180 +on6,0,0,28,1,0,856,5043.400000,125,4,23863.001280,2144.687386,hint,lora,180 +on2,0,0,28,1,0,1853,5042.103840,125,4,37736.001280,2113.049126,hint,lora,180 +on8,0,0,26,1,0,1336,4773.198720,125,3,25869.001280,1969.759078,hint,lora,180 +on12,0,0,27,1,0,1490,4862.401280,125,3,31774.001280,2036.320102,hint,lora,180 +on3,0,0,26,1,0,842,4768.600000,125,3,18436.001280,1977.952000,hint,lora,180 +on7,0,0,26,1,0,346,4683.001280,125,3,9593.001280,1936.111898,hint,lora,180 +on9,0,0,28,1,0,2664,5043.400000,125,5,49080.001280,2102.175181,hint,lora,180 +on5,0,0,27,1,0,1755,4863.501280,125,3,35485.001280,2048.455898,hint,lora,180 +on1,0,0,26,1,0,2044,4681.497440,125,3,43501.001280,1930.998771,hint,lora,180 +on10,0,0,25,1,0,672,4500.997440,125,1,14025.002560,1826.158771,hint,lora,180 +on11,0,0,26,1,0,241,4683.200000,125,2,6040.002560,1910.351795,hint,lora,180 +on4,0,0,32,1,0,2109,5764.601280,125,8,40363.001280,2497.854464,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,125,0,-1.000000,2123.681229,hint,lora,180 +on12,0,0,35,1,0,3090,6305.400000,126,12,56767.001280,2727.453747,hint,lora,180 +on9,0,0,27,1,0,1281,4867.901280,126,4,30024.001280,2094.536717,hint,lora,180 +on11,0,0,32,1,0,2559,5763.200000,126,8,46310.001280,2429.039386,hint,lora,180 +on8,0,0,32,1,0,3558,5763.100000,126,8,67618.001280,2459.094362,hint,lora,180 +on10,0,0,26,1,0,1368,4682.300000,126,2,25788.001280,1908.552000,hint,lora,180 +on1,0,0,32,1,0,2411,5765.900000,126,8,48438.001280,2548.486771,hint,lora,180 +on7,0,0,32,1,0,3003,5834.601280,126,9,53318.001280,2489.886874,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,126,0,-1.000000,2134.882253,hint,lora,180 +on6,0,0,26,1,0,1574,4689.200000,126,3,36442.001280,1981.295386,hint,lora,180 +on3,0,0,24,1,0,370,4321.994880,126,0,8597.001280,1754.398362,hint,lora,180 +on2,0,0,30,1,0,2098,5404.697440,126,6,43076.001280,2309.238362,hint,lora,180 +on5,0,0,28,1,0,1938,5043.600000,126,4,35463.002560,2114.367590,hint,lora,180 +on4,0,0,25,1,0,1050,4501.000000,126,1,24523.001280,1828.624000,hint,lora,180 +on4,0,0,24,1,0,0,4321.997440,127,0,1534.001280,1767.903181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,127,0,-1.000000,2126.372096,hint,lora,180 +on9,0,0,28,1,0,1171,5126.900000,127,6,19884.001280,2129.607386,hint,lora,180 +on12,0,0,28,1,0,2091,5111.700000,127,7,40759.001280,2192.982566,hint,lora,180 +on8,0,0,27,1,0,2796,4862.600000,127,4,58641.001280,2051.439181,hint,lora,180 +on11,0,0,26,1,0,1201,4810.806400,127,3,27410.001280,1992.738560,hint,lora,180 +on10,0,0,25,1,0,224,4502.300000,127,2,5295.001280,1840.503795,hint,lora,180 +on2,0,0,26,1,0,566,4684.291040,127,2,10821.001280,1931.844621,hint,lora,180 +on1,0,0,28,1,0,1734,5044.700000,127,4,32852.001280,2110.150976,hint,lora,180 +on7,0,0,25,1,0,1573,4516.996160,127,2,37360.001280,1890.031078,hint,lora,180 +on3,0,0,27,1,0,1094,4863.101280,127,3,22101.001280,2050.376512,hint,lora,180 +on5,0,0,26,1,0,2979,4682.600000,127,2,62402.001280,1961.519795,hint,lora,180 +on6,0,0,26,1,0,1468,4683.202560,127,2,29019.001280,1948.208819,hint,lora,180 +on1,0,0,32,1,0,2832,5765.798720,128,8,53020.001280,2470.702669,hint,lora,180 +on7,0,0,32,1,0,2901,5763.806400,128,9,56880.001280,2478.114150,hint,lora,180 +on11,0,0,30,1,0,2109,5403.101280,128,6,43276.001280,2291.304102,hint,lora,180 +on6,0,0,28,1,0,1478,5114.101280,128,5,27337.001280,2152.247693,hint,lora,180 +on3,0,0,26,1,0,1853,4696.500000,128,4,39153.001280,1920.519795,hint,lora,180 +on8,0,0,24,0,0,4273,4320.000000,128,0,-1.000000,1735.680000,hint,lora,180 +on5,0,0,28,1,0,3971,5043.498720,128,5,80491.001280,2152.230669,hint,lora,180 +on4,0,0,25,1,0,830,4635.498720,128,2,15308.001280,1886.087488,hint,lora,180 +on9,0,0,30,1,0,1959,5528.902560,128,7,34878.001280,2305.496410,hint,lora,180 +on10,0,0,24,1,0,462,4350.000000,128,1,13011.001280,1780.592000,hint,lora,180 +on2,0,0,25,1,0,943,4507.500000,128,2,24138.001280,1871.416410,hint,lora,180 +on12,0,0,29,1,0,3159,5340.105120,128,6,66438.001280,2302.730048,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,128,0,-1.000000,2182.786458,hint,lora,180 +on1,0,0,27,1,0,908,4861.300000,129,3,17099.001280,1979.143181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,129,0,-1.000000,2091.937024,hint,lora,180 +on4,0,0,26,1,0,972,4682.000000,129,2,18169.001280,1929.824000,hint,lora,180 +on7,0,0,30,1,0,1722,5403.298720,129,6,31889.001280,2279.318464,hint,lora,180 +on12,0,0,27,1,0,1854,5169.701280,129,6,35555.001280,2199.671898,hint,lora,180 +on11,0,0,26,1,0,1104,4683.300000,129,2,24141.001280,1967.559386,hint,lora,180 +on6,0,0,27,1,0,451,4863.600000,129,4,12038.001280,2068.863386,hint,lora,180 +on3,0,0,25,1,0,1905,4501.200000,129,1,39662.001280,1836.543795,hint,lora,180 +on10,0,0,24,1,0,16,4320.000000,129,0,2497.001280,1753.600205,hint,lora,180 +on5,0,0,26,1,0,2004,4682.300000,129,2,41308.001280,1936.295181,hint,lora,180 +on8,0,0,33,1,0,2808,5944.806400,129,9,45420.001280,2508.929126,hint,lora,180 +on2,0,0,26,1,0,1232,4683.101280,129,2,27388.001280,1985.752307,hint,lora,180 +on9,0,0,25,1,0,498,4502.000000,129,1,10418.001280,1830.448000,hint,lora,180 +on8,0,0,26,1,0,689,4684.996160,130,2,14134.001280,1966.670259,hint,lora,180 +on3,0,0,30,1,0,2096,5404.101280,130,7,45389.001280,2324.679693,hint,lora,180 +on11,0,0,31,1,0,2848,5582.703840,130,7,59074.001280,2399.480922,hint,lora,180 +on9,0,0,26,1,0,953,4704.801280,130,3,18609.001280,1969.311898,hint,lora,180 +on7,0,0,28,1,0,1334,5044.201280,130,4,26687.001280,2164.719488,hint,lora,180 +on6,0,0,29,1,0,1644,5375.701280,130,6,37967.001280,2324.007898,hint,lora,180 +on10,0,0,26,1,0,918,4821.102560,130,3,21989.002560,2046.200614,hint,lora,180 +on4,0,0,27,0,0,4119,4860.600000,130,3,-1.000000,2043.119181,hint,lora,180 +on12,0,0,26,1,0,721,4682.501280,130,2,15590.001280,1956.776512,hint,lora,180 +on5,0,0,26,1,0,2725,4834.798720,130,3,57364.001280,2074.942874,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,130,0,-1.000000,2214.658458,hint,lora,180 +on1,0,0,25,1,0,3284,4503.600000,130,2,72114.001280,1906.080205,hint,lora,180 +on2,0,0,29,1,0,2636,5315.897440,130,6,47574.001280,2202.326362,hint,lora,180 +on4,0,0,28,1,0,1383,5370.010240,131,6,26228.002560,2266.628710,hint,lora,180 +on7,0,0,27,1,0,1770,4864.100000,131,3,39220.001280,2065.702566,hint,lora,180 +on1,0,0,26,1,0,639,4682.803840,131,2,14199.001280,1930.353536,hint,lora,180 +on3,0,0,28,1,0,1413,5043.100000,131,4,24405.001280,2082.887386,hint,lora,180 +on12,0,0,34,1,0,2690,6305.705120,131,12,44299.001280,2727.384614,hint,lora,180 +on5,0,0,25,1,0,871,4501.998720,131,1,20090.001280,1829.279693,hint,lora,180 +on11,0,0,30,1,0,1999,5405.698720,131,6,31754.001280,2248.726054,hint,lora,180 +on8,0,0,25,1,0,276,4503.000000,131,1,8268.001280,1868.256000,hint,lora,180 +on9,0,0,31,1,0,2063,5585.702560,131,7,42414.001280,2412.888410,hint,lora,180 +on6,0,0,26,1,0,758,4682.400000,131,2,14686.001280,1930.560000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,131,0,-1.000000,2091.811072,hint,lora,180 +on2,0,0,28,0,0,4404,5040.500000,131,4,-1.000000,2093.751590,hint,lora,180 +on10,0,0,30,1,0,2038,5584.798720,131,7,34668.001280,2412.094464,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,132,0,-1.000000,2146.371072,hint,lora,180 +on4,0,0,28,1,0,1389,5043.500000,132,4,31705.001280,2155.878771,hint,lora,180 +on5,0,0,30,1,0,2132,5527.000000,132,7,43012.001280,2347.375590,hint,lora,180 +on9,0,0,24,1,0,676,4358.002560,132,1,16990.001280,1771.681229,hint,lora,180 +on11,0,0,27,1,0,1480,4941.600000,132,4,28352.001280,2048.959795,hint,lora,180 +on7,0,0,25,0,0,4176,4500.200000,132,1,-1.000000,1846.319590,hint,lora,180 +on2,0,0,30,1,0,3465,5404.598720,132,7,64236.602560,2257.710669,hint,lora,180 +on12,0,0,29,1,0,3511,5330.601280,132,6,70419.001280,2272.223693,hint,lora,180 +on6,0,0,30,1,0,2405,5405.801280,132,7,43662.001280,2324.687693,hint,lora,180 +on10,0,0,27,1,0,1611,4948.796160,132,4,33990.001280,2049.918464,hint,lora,180 +on1,0,0,27,1,0,981,4861.198720,132,3,18479.001280,1988.655488,hint,lora,180 +on3,0,0,26,1,0,1089,4683.800000,132,2,23382.001280,1971.679590,hint,lora,180 +on8,0,0,29,1,0,2163,5223.600000,132,5,37001.001280,2190.782771,hint,lora,180 +on1,0,0,27,1,0,1236,4862.500000,133,3,29502.001280,2055.959590,hint,lora,180 +on10,0,0,29,1,0,1937,5242.001280,133,7,46838.001280,2319.262874,hint,lora,180 +on5,0,0,26,1,0,1419,4745.400000,133,3,36622.001280,2124.064000,hint,lora,180 +on8,0,0,28,1,0,1252,5042.200000,133,4,22366.001280,2082.863386,hint,lora,180 +on7,0,0,25,1,0,513,4504.298720,133,2,12564.001280,1864.759488,hint,lora,180 +on3,0,0,26,1,0,1392,4788.694880,133,3,26770.001280,1992.437952,hint,lora,180 +on4,0,0,27,0,0,4665,4860.701280,133,3,-1.000000,1950.887898,hint,lora,180 +on11,0,0,27,1,0,1755,4967.500000,133,4,43358.001280,2167.511386,hint,lora,180 +on6,0,0,25,1,0,302,4502.002560,133,2,7536.001280,1861.873434,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,133,0,-1.000000,2079.300710,hint,lora,180 +on9,0,0,25,1,0,734,4504.298720,133,1,19059.001280,1888.599693,hint,lora,180 +on12,0,0,26,1,0,801,4686.398720,133,2,15082.001280,1956.576102,hint,lora,180 +on2,0,0,30,1,0,1977,5403.598720,133,8,35835.002560,2268.302054,hint,lora,180 +on10,0,0,27,1,0,2539,4862.501280,134,3,47748.001280,1999.400307,hint,lora,180 +on7,0,0,25,1,0,2854,4501.298720,134,1,59911.001280,1854.759898,hint,lora,180 +on1,0,0,25,1,0,1816,4504.300000,134,1,41938.001280,1885.047590,hint,lora,180 +on11,0,0,25,1,0,1384,4502.300000,134,1,36539.001280,1920.776000,hint,lora,180 +on6,0,0,25,1,0,873,4502.201280,134,1,18829.001280,1864.144307,hint,lora,180 +on2,0,0,25,1,0,3888,4501.301280,134,2,81591.001280,1881.000717,hint,lora,180 +on9,0,0,25,1,0,1013,4502.197440,134,1,23919.001280,1851.599181,hint,lora,180 +on5,0,0,26,1,0,1371,4684.294880,134,3,29300.001280,1973.094362,hint,lora,180 +on3,0,0,28,0,0,4376,5041.402560,134,4,-1.000000,2097.136410,hint,lora,180 +on12,0,0,27,1,0,2553,5080.903840,134,5,54351.001280,2229.449741,hint,lora,180 +on8,0,0,27,1,0,2677,4861.600000,134,3,53732.001280,2026.430976,hint,lora,180 +on4,0,0,26,1,0,2246,4683.300000,134,2,44647.001280,1962.599795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,134,0,-1.000000,2153.475277,hint,lora,180 +on12,0,0,27,1,0,1811,4984.401280,135,4,38152.001280,2118.463898,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,135,0,-1.000000,2159.298458,hint,lora,180 +on6,0,0,33,1,0,2548,5948.606400,135,10,50498.001280,2590.081536,hint,lora,180 +on11,0,0,27,1,0,2060,4862.898720,135,3,45229.001280,2030.119078,hint,lora,180 +on3,0,0,25,1,0,994,4652.500000,135,2,22730.001280,1933.639795,hint,lora,180 +on2,0,0,27,1,0,1349,4864.201280,135,3,26534.001280,2032.304717,hint,lora,180 +on5,0,0,26,1,0,837,4684.997440,135,2,14594.001280,1939.822976,hint,lora,180 +on7,0,0,25,1,0,800,4502.302560,135,1,20410.001280,1866.457024,hint,lora,180 +on10,0,0,26,1,0,2660,4681.600000,135,2,59334.001280,1976.319386,hint,lora,180 +on1,0,0,26,1,0,620,4682.001280,135,2,11731.001280,1926.560307,hint,lora,180 +on8,0,0,29,1,0,1747,5265.603840,135,6,29950.001280,2165.264922,hint,lora,180 +on9,0,0,28,1,0,1704,5044.398720,135,4,33046.001280,2098.702054,hint,lora,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,hint,lora,180 +on5,0,0,28,1,0,1694,5127.201280,136,5,35551.001280,2201.199693,hint,lora,180 +on6,0,0,25,1,0,737,4505.298720,136,1,20369.001280,1928.583693,hint,lora,180 +on2,0,0,25,1,0,466,4502.000000,136,1,13031.001280,1832.224000,hint,lora,180 +on11,0,0,31,1,0,1918,5582.702560,136,7,31173.001280,2320.632410,hint,lora,180 +on10,0,0,25,1,0,1187,4679.300000,136,3,22978.001280,1909.863590,hint,lora,180 +on8,0,0,27,1,0,1288,4864.201280,136,3,28656.001280,2060.032922,hint,lora,180 +on3,0,0,32,1,0,2496,5912.901280,136,9,40184.001280,2483.895488,hint,lora,180 +on12,0,0,25,0,0,3893,4500.300000,136,1,-1.000000,1895.639590,hint,lora,180 +on1,0,0,24,1,0,218,4433.002560,136,1,7374.402560,1798.801434,hint,lora,180 +on4,0,0,26,1,0,850,4684.996160,136,2,14637.001280,1959.086464,hint,lora,180 +on9,0,0,31,1,0,2414,5678.897440,136,9,50058.001280,2431.413542,hint,lora,180 +on7,0,0,33,1,0,2847,5945.305120,136,10,51837.001280,2611.081229,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,136,0,-1.000000,2146.883482,hint,lora,180 +on1,0,0,30,1,0,2580,5560.901280,137,7,52307.001280,2406.983488,hint,lora,180 +on9,0,0,27,1,0,1779,4862.300000,137,3,32603.001280,1986.631795,hint,lora,180 +on8,0,0,27,1,0,1513,4863.900000,137,3,31589.001280,1999.863795,hint,lora,180 +on6,0,0,26,1,0,928,4683.300000,137,2,20334.001280,1931.240000,hint,lora,180 +on7,0,0,27,1,0,1298,4862.600000,137,3,28566.001280,2030.111386,hint,lora,180 +on3,0,0,26,1,0,1176,4682.300000,137,2,23809.001280,1932.919795,hint,lora,180 +on5,0,0,29,1,0,2109,5370.501280,137,6,38462.001280,2253.367693,hint,lora,180 +on10,0,0,30,1,0,2814,5404.400000,137,7,60311.001280,2339.758976,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,137,0,-1.000000,2139.490048,hint,lora,180 +on11,0,0,31,1,0,2661,5585.300000,137,7,47782.001280,2435.302157,hint,lora,180 +on12,0,0,29,1,0,2169,5223.198720,137,6,44035.001280,2200.590054,hint,lora,180 +on4,0,0,29,1,0,2147,5224.502560,137,5,40997.001280,2217.160205,hint,lora,180 +on2,0,0,24,1,0,624,4555.000000,137,2,15079.001280,1889.632000,hint,lora,180 +on12,0,0,25,1,0,1420,4501.197440,138,1,26247.001280,1826.079181,hint,lora,180 +on7,0,0,25,1,0,1768,4502.300000,138,1,39208.001280,1905.208000,hint,lora,180 +on5,0,0,24,1,0,1911,4332.000000,138,1,40839.001280,1789.984000,hint,lora,180 +on1,0,0,31,1,0,4488,5584.100000,138,7,82272.001280,2351.110566,hint,lora,180 +on8,0,0,32,1,0,2992,5763.600000,138,9,55320.001280,2433.102771,hint,lora,180 +on4,0,0,25,1,0,2283,4504.300000,138,1,47799.001280,1905.879590,hint,lora,180 +on3,0,0,31,1,0,3357,5660.900000,138,8,62610.001280,2420.934771,hint,lora,180 +on9,0,0,31,1,0,3227,5686.801280,138,8,61312.001280,2399.072102,hint,lora,180 +on2,0,0,32,1,0,3615,5762.301280,138,9,73278.001280,2504.390669,hint,lora,180 +on10,0,0,26,1,0,4084,4680.600000,138,2,86074.000000,1957.455590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,138,0,-1.000000,2240.961024,hint,lora,180 +on11,0,0,27,1,0,2701,4862.402560,138,3,53797.001280,2021.217024,hint,lora,180 +on6,0,0,27,1,0,3369,4862.097440,138,3,67577.001280,2005.750771,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,139,0,-1.000000,2083.331891,hint,lora,180 +on3,0,0,25,1,0,1658,4595.300000,139,2,35902.001280,1926.952205,hint,lora,180 +on1,0,0,26,1,0,1287,4683.997440,139,2,26843.001280,1956.350976,hint,lora,180 +on12,0,0,25,1,0,842,4502.997440,139,1,18723.001280,1870.607181,hint,lora,180 +on7,0,0,30,1,0,2629,5427.601280,139,7,46132.001280,2250.335693,hint,lora,180 +on2,0,0,26,1,0,1547,4684.000000,139,2,29857.001280,1979.488205,hint,lora,180 +on9,0,0,28,1,0,2037,5046.403840,139,4,41607.001280,2149.729536,hint,lora,180 +on5,0,0,24,1,0,1008,4409.298720,139,2,24741.001280,1812.519693,hint,lora,180 +on10,0,0,27,1,0,1797,4863.000000,139,3,36375.001280,2038.431590,hint,lora,180 +on4,0,0,27,1,0,3969,4861.800000,139,3,78847.001280,1995.599386,hint,lora,180 +on11,0,0,27,0,0,4488,4860.801280,139,3,-1.000000,1975.967898,hint,lora,180 +on6,0,0,29,1,0,2528,5223.196160,139,5,49552.001280,2166.141235,hint,lora,180 +on8,0,0,30,1,0,2821,5402.101280,139,7,52818.001280,2261.687898,hint,lora,180 +on5,0,0,26,1,0,927,4684.500000,140,2,20109.001280,1948.696205,hint,lora,180 +on10,0,0,26,0,0,4351,4680.501280,140,3,-1.000000,1898.071898,hint,lora,180 +on12,0,0,32,1,0,2182,5764.898720,140,9,46397.001280,2512.966259,hint,lora,180 +on8,0,0,26,1,0,1545,4682.300000,140,2,32300.001280,1922.471590,hint,lora,180 +on7,0,0,25,1,0,841,4538.498720,140,2,17423.001280,1889.335693,hint,lora,180 +on11,0,0,27,1,0,3175,4861.301280,140,4,60541.001280,2018.920307,hint,lora,180 +on2,0,0,32,1,0,3014,5811.303840,140,10,47550.001280,2413.464717,hint,lora,180 +on1,0,0,31,0,0,4613,5581.601280,140,7,-1.000000,2338.863283,hint,lora,180 +on3,0,0,29,1,0,1392,5240.500000,140,6,27693.001280,2222.391590,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,140,0,-1.000000,2120.610253,hint,lora,180 +on6,0,0,28,1,0,1619,5132.701280,140,5,36795.001280,2242.392307,hint,lora,180 +on9,0,0,26,1,0,658,4683.998720,140,2,13486.001280,1958.047488,hint,lora,180 +on4,0,0,29,1,0,2227,5277.803840,140,6,41324.001280,2245.184717,hint,lora,180 +on3,0,0,30,1,0,2464,5402.001280,141,7,45561.001280,2258.767078,hint,lora,180 +on6,0,0,26,1,0,513,4684.501280,141,2,13067.001280,2003.992512,hint,lora,180 +on10,0,0,30,1,0,1649,5405.101280,141,6,29473.001280,2314.552102,hint,lora,180 +on2,0,0,25,1,0,856,4501.200000,141,1,17681.001280,1828.960000,hint,lora,180 +on9,0,0,33,1,0,2570,6003.097440,141,10,41928.001280,2524.292928,hint,lora,180 +on7,0,0,31,1,0,2365,5691.500000,141,8,36909.001280,2351.974976,hint,lora,180 +on1,0,0,27,0,0,4447,4860.300000,141,3,-1.000000,1976.647590,hint,lora,180 +on12,0,0,30,1,0,1880,5521.302560,141,7,34372.001280,2380.952000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,141,0,-1.000000,2056.034048,hint,lora,180 +on8,0,0,28,1,0,1232,5042.401280,141,4,25075.001280,2100.576512,hint,lora,180 +on5,0,0,26,1,0,1181,4683.002560,141,2,21623.001280,1958.369229,hint,lora,180 +on4,0,0,29,1,0,1521,5224.500000,141,5,27734.001280,2198.023386,hint,lora,180 +on11,0,0,24,1,0,182,4331.298720,141,1,10191.001280,1801.399488,hint,lora,180 +on1,0,0,27,1,0,3348,4861.403840,142,3,67592.001280,1977.921946,hint,lora,180 +on6,0,0,26,0,0,3910,4680.800000,142,3,-1.000000,1960.095181,hint,lora,180 +on2,0,0,25,1,0,2972,4501.200000,142,1,61040.001280,1857.920000,hint,lora,180 +on4,0,0,28,0,0,4270,5041.200000,142,4,-1.000000,2125.822976,hint,lora,180 +on8,0,0,26,1,0,3240,4682.300000,142,2,71178.001280,1957.624000,hint,lora,180 +on7,0,0,29,1,0,4029,5224.001280,142,5,81266.001280,2212.079898,hint,lora,180 +on10,0,0,24,1,0,900,4321.000000,142,0,20269.001280,1754.000410,hint,lora,180 +on5,0,0,27,1,0,3769,5013.301280,142,5,76889.001280,2156.728512,hint,lora,180 +on3,0,0,29,0,0,4277,5323.100000,142,6,-1.000000,2266.134976,hint,lora,180 +on12,0,0,25,1,0,4160,4500.000000,142,1,86480.000000,1829.920000,hint,lora,180 +on9,0,0,28,0,0,4610,5192.200000,142,5,-1.000000,2129.519590,hint,lora,180 +on11,0,0,31,0,0,4606,5581.902560,142,7,-1.000000,2321.096205,hint,lora,180 +on0,1,7,24,0,0,0,4320.000000,142,0,-1.000000,2112.224410,hint,lora,180 +on1,0,0,30,1,0,2772,5532.697440,143,9,54050.001280,2346.789133,hint,lora,180 +on7,0,0,25,1,0,3118,4501.000000,143,1,66988.001280,1878.640000,hint,lora,180 +on10,0,0,24,1,0,508,4401.001280,143,1,13329.001280,1842.720922,hint,lora,180 +on4,0,0,26,1,0,1875,4682.900000,143,2,41592.001280,1966.023795,hint,lora,180 +on9,0,0,26,1,0,2819,4680.601280,143,3,56947.001280,1925.072512,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,143,0,-1.000000,2105.316096,hint,lora,180 +on2,0,0,25,1,0,2294,4502.997440,143,1,49659.001280,1886.814771,hint,lora,180 +on3,0,0,26,1,0,1682,4707.802560,143,4,37550.001280,1995.329229,hint,lora,180 +on6,0,0,29,1,0,2390,5223.500000,143,5,43815.001280,2181.942362,hint,lora,180 +on8,0,0,25,1,0,834,4500.001280,143,1,17776.001280,1825.600717,hint,lora,180 +on11,0,0,27,1,0,1648,4862.796160,143,4,33947.001280,2005.758259,hint,lora,180 +on12,0,0,25,1,0,1306,4503.994880,143,1,28465.001280,1847.485747,hint,lora,180 +on5,0,0,25,1,0,1544,4504.198720,143,2,32536.001280,1876.046464,hint,lora,180 +on6,0,0,24,1,0,1999,4458.300000,144,2,41414.001280,1827.063795,hint,lora,180 +on4,0,0,26,1,0,2549,4683.598720,144,2,53122.001280,1937.919488,hint,lora,180 +on8,0,0,25,1,0,396,4501.203840,144,1,9880.001280,1876.801946,hint,lora,180 +on12,0,0,25,1,0,132,4503.001280,144,1,5531.001280,1908.048512,hint,lora,180 +on9,0,0,25,1,0,2209,4501.300000,144,1,50039.001280,1850.183590,hint,lora,180 +on3,0,0,25,1,0,2202,4502.200000,144,1,46024.001280,1886.863795,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,144,0,-1.000000,2079.074253,hint,lora,180 +on10,0,0,24,0,0,4141,4320.000000,144,0,-1.000000,1777.600000,hint,lora,180 +on7,0,0,24,1,0,1709,4321.997440,144,0,38708.001280,1769.119590,hint,lora,180 +on5,0,0,26,1,0,2866,4743.398720,144,3,58493.001280,1978.271078,hint,lora,180 +on1,0,0,26,1,0,2691,4682.498720,144,2,54242.001280,1952.134669,hint,lora,180 +on2,0,0,24,0,0,4249,4320.000000,144,0,-1.000000,1756.800000,hint,lora,180 +on11,0,0,28,0,0,4431,5150.503840,144,6,-1.000000,2170.601126,hint,lora,180 +on10,0,0,27,1,0,2088,4977.101280,145,4,42517.001280,2116.184102,hint,lora,180 +on3,0,0,32,1,0,3544,5920.001280,145,11,77393.001280,2633.279488,hint,lora,180 +on12,0,0,24,0,0,4045,4320.000000,145,0,-1.000000,1772.640000,hint,lora,180 +on8,0,0,25,1,0,1043,4501.000000,145,1,22983.001280,1851.552000,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,145,0,-1.000000,2188.194662,hint,lora,180 +on5,0,0,26,1,0,1492,4683.600000,145,2,31936.001280,1978.286976,hint,lora,180 +on1,0,0,24,0,0,4193,4320.000000,145,0,-1.000000,1814.400000,hint,lora,180 +on6,0,0,26,1,0,2377,4682.597440,145,3,51293.001280,1975.006771,hint,lora,180 +on4,0,0,27,1,0,1826,4863.407680,145,3,38257.001280,2031.811686,hint,lora,180 +on7,0,0,29,1,0,2741,5431.901280,145,7,46988.001280,2247.463898,hint,lora,180 +on11,0,0,24,1,0,1214,4322.000000,145,0,25601.001280,1786.624000,hint,lora,180 +on9,0,0,28,1,0,2278,5043.002560,145,4,43708.001280,2092.289024,hint,lora,180 +on2,0,0,24,0,0,4077,4320.000000,145,0,-1.000000,1778.400000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,146,0,-1.000000,2095.586867,hint,lora,180 +on5,0,0,33,1,0,3129,6137.402560,146,11,51436.001280,2602.622771,hint,lora,180 +on4,0,0,27,1,0,1400,4863.000000,146,3,27965.001280,2002.528000,hint,lora,180 +on10,0,0,25,1,0,833,4503.303840,146,1,20651.001280,1866.121741,hint,lora,180 +on6,0,0,31,1,0,2447,5692.902560,146,8,44737.001280,2503.496205,hint,lora,180 +on7,0,0,26,1,0,1120,4683.001280,146,2,24155.001280,1936.240717,hint,lora,180 +on1,0,0,28,0,0,4441,5041.400000,146,5,-1.000000,2071.327181,hint,lora,180 +on11,0,0,31,1,0,2818,5583.800000,146,7,49017.001280,2345.693952,hint,lora,180 +on8,0,0,30,1,0,2252,5570.800000,146,7,38393.001280,2350.767181,hint,lora,180 +on9,0,0,32,1,0,2229,5768.300000,146,8,41021.001280,2550.295795,hint,lora,180 +on3,0,0,28,1,0,1742,5131.000000,146,5,29904.001280,2137.599590,hint,lora,180 +on12,0,0,25,1,0,1668,4502.298720,146,1,36030.001280,1850.519693,hint,lora,180 +on2,0,0,33,1,0,3012,5945.701280,146,10,54552.001280,2612.678669,hint,lora,180 +on4,0,0,24,1,0,2857,4320.001280,147,0,58936.001280,1758.880717,hint,lora,180 +on5,0,0,24,0,0,4176,4320.000000,147,0,-1.000000,1751.200000,hint,lora,180 +on10,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,hint,lora,180 +on1,0,0,24,0,0,4243,4320.000000,147,0,-1.000000,1756.800000,hint,lora,180 +on12,0,0,24,0,0,4160,4320.000000,147,0,-1.000000,1785.600000,hint,lora,180 +on9,0,0,25,1,0,3544,4500.301280,147,1,78180.001280,1892.392717,hint,lora,180 +on6,0,0,24,0,0,4313,4320.000000,147,0,-1.000000,1729.280000,hint,lora,180 +on7,0,0,24,0,0,4072,4320.000000,147,0,-1.000000,1778.560000,hint,lora,180 +on2,0,0,24,1,0,1680,4321.002560,147,0,36979.001280,1811.601638,hint,lora,180 +on8,0,0,24,0,0,4300,4320.000000,147,0,-1.000000,1731.360000,hint,lora,180 +on3,0,0,24,0,0,4193,4320.000000,147,0,-1.000000,1760.000000,hint,lora,180 +on11,0,0,25,0,0,4212,4500.000000,147,1,-1.000000,1835.632000,hint,lora,180 +on0,1,3,24,0,0,0,4320.000000,147,0,-1.000000,2045.985024,hint,lora,180 +on1,0,0,24,0,0,4246,4320.000000,148,0,-1.000000,1740.160000,hint,lora,180 +on11,0,0,28,1,0,1755,5202.202560,148,5,31096.001280,2206.191386,hint,lora,180 +on4,0,0,25,1,0,589,4627.297440,148,3,12175.001280,1968.582771,hint,lora,180 +on10,0,0,25,1,0,1730,4591.400000,148,2,38916.001280,1944.671386,hint,lora,180 +on8,0,0,25,1,0,131,4501.997440,148,1,4661.001280,1858.463181,hint,lora,180 +on3,0,0,29,1,0,1172,5223.205120,148,7,19118.001280,2164.945434,hint,lora,180 +on6,0,0,24,1,0,1021,4439.001280,148,1,24424.001280,1823.120717,hint,lora,180 +on5,0,0,26,1,0,1419,4684.202560,148,2,27507.001280,1958.433229,hint,lora,180 +on7,0,0,25,1,0,481,4502.998720,148,1,8072.002560,1857.103488,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,148,0,-1.000000,2075.363482,hint,lora,180 +on12,0,0,26,1,0,797,4681.301280,148,2,17545.001280,1924.680307,hint,lora,180 +on9,0,0,32,1,0,2503,5765.403840,148,9,41654.001280,2464.864102,hint,lora,180 +on2,0,0,26,1,0,1631,4681.502560,148,3,32947.001280,1924.505229,hint,lora,180 +on4,0,0,25,1,0,1836,4530.201280,149,2,39381.001280,1842.271898,hint,lora,180 +on2,0,0,25,1,0,1344,4502.301280,149,1,27074.001280,1873.464717,hint,lora,180 +on6,0,0,25,1,0,474,4500.001280,149,1,10180.001280,1825.600717,hint,lora,180 +on12,0,0,25,1,0,293,4504.000000,149,1,7183.001280,1901.824410,hint,lora,180 +on1,0,0,24,1,0,920,4473.300000,149,1,21435.001280,1887.591795,hint,lora,180 +on3,0,0,25,1,0,2304,4504.001280,149,1,54194.001280,1939.568717,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,149,0,-1.000000,2096.323891,hint,lora,180 +on10,0,0,25,1,0,1193,4502.200000,149,1,24436.001280,1852.464000,hint,lora,180 +on7,0,0,24,1,0,18,4322.998720,149,0,1901.001280,1804.367898,hint,lora,180 +on9,0,0,26,1,0,1254,4730.600000,149,3,29906.001280,2006.703590,hint,lora,180 +on5,0,0,32,1,0,2095,5763.402560,149,10,42346.002560,2483.471590,hint,lora,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,hint,lora,180 +on11,0,0,26,1,0,1972,4683.896160,149,3,45707.001280,2003.238054,hint,lora,180 +on1,0,0,31,1,0,2303,5583.300000,150,7,42495.001280,2370.486566,hint,lora,180 +on10,0,0,26,1,0,1029,4682.594880,150,2,21638.001280,1924.557952,hint,lora,180 +on7,0,0,30,1,0,2611,5405.400000,150,6,47692.001280,2272.158566,hint,lora,180 +on5,0,0,24,1,0,19,4320.998720,150,0,849.001280,1753.999693,hint,lora,180 +on2,0,0,25,1,0,807,4502.400000,150,1,17977.001280,1868.751795,hint,lora,180 +on6,0,0,30,1,0,2350,5517.400000,150,7,43758.001280,2386.222566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,150,0,-1.000000,2149.537229,hint,lora,180 +on8,0,0,31,1,0,2745,5584.000000,150,7,55585.001280,2418.894362,hint,lora,180 +on12,0,0,32,1,0,2596,5764.400000,150,8,53210.001280,2511.614362,hint,lora,180 +on11,0,0,24,1,0,1611,4321.000000,150,0,35451.001280,1758.384000,hint,lora,180 +on3,0,0,27,1,0,1263,4861.000000,150,3,21983.001280,1982.480000,hint,lora,180 +on9,0,0,29,1,0,1610,5223.800000,150,6,30102.001280,2211.710976,hint,lora,180 +on4,0,0,32,1,0,1855,5763.800000,150,8,37804.001280,2476.799181,hint,lora,180 +on7,0,0,25,1,0,749,4623.400000,151,2,16952.001280,1918.751386,hint,lora,180 +on8,0,0,28,1,0,1902,5162.198720,151,6,36448.001280,2174.830874,hint,lora,180 +on11,0,0,27,1,0,1755,4865.297440,151,3,34361.001280,2018.822976,hint,lora,180 +on6,0,0,28,0,0,4137,5041.500000,151,4,-1.000000,2135.670566,hint,lora,180 +on3,0,0,25,1,0,655,4501.200000,151,1,14347.001280,1829.120000,hint,lora,180 +on5,0,0,28,1,0,3739,5041.101280,151,4,78121.001280,2121.319898,hint,lora,180 +on10,0,0,31,1,0,2687,5629.507680,151,8,55197.001280,2504.618867,hint,lora,180 +on9,0,0,29,1,0,2176,5287.698720,151,6,48762.001280,2292.806054,hint,lora,180 +on2,0,0,28,1,0,4355,5040.501280,151,4,85177.000000,2088.151898,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,151,0,-1.000000,2198.594048,hint,lora,180 +on12,0,0,31,0,0,4276,5667.902560,151,8,-1.000000,2434.184819,hint,lora,180 +on1,0,0,25,1,0,1179,4539.301280,151,2,26864.001280,1874.760512,hint,lora,180 +on4,0,0,28,1,0,1763,5216.101280,151,5,30364.001280,2149.672512,hint,lora,180 +on1,0,0,30,1,0,1822,5404.700000,152,7,39133.001280,2354.695181,hint,lora,180 +on9,0,0,24,1,0,559,4451.998720,152,1,11975.001280,1835.727693,hint,lora,180 +on8,0,0,24,1,0,91,4352.000000,152,1,5654.001280,1814.463795,hint,lora,180 +on12,0,0,27,1,0,1215,4862.500000,152,3,21656.001280,1989.256000,hint,lora,180 +on11,0,0,29,1,0,1193,5225.297440,152,5,22097.002560,2258.006362,hint,lora,180 +on10,0,0,31,1,0,1988,5669.198720,152,8,34311.001280,2416.430874,hint,lora,180 +on7,0,0,28,0,0,4412,5041.400000,152,4,-1.000000,2128.014976,hint,lora,180 +on2,0,0,30,1,0,1405,5578.400000,152,7,31553.001280,2422.159181,hint,lora,180 +on5,0,0,31,1,0,2213,5582.501280,152,7,43202.001280,2419.511283,hint,lora,180 +on3,0,0,27,1,0,1272,4915.396160,152,4,27678.001280,2076.142054,hint,lora,180 +on4,0,0,25,1,0,321,4503.000000,152,1,8412.001280,1887.039386,hint,lora,180 +on6,0,0,26,1,0,852,4682.000000,152,2,15873.001280,1929.824000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,152,0,-1.000000,2106.178662,hint,lora,180 +on1,0,0,26,1,0,2142,4682.600000,153,2,45814.001280,1943.455795,hint,lora,180 +on10,0,0,27,0,0,4585,4860.900000,153,3,-1.000000,1957.799181,hint,lora,180 +on8,0,0,28,1,0,2277,5043.800000,153,4,47786.001280,2150.351386,hint,lora,180 +on9,0,0,28,1,0,2825,5042.897440,153,4,55230.001280,2110.038157,hint,lora,180 +on11,0,0,24,1,0,1468,4460.300000,153,2,34309.001280,1872.567181,hint,lora,180 +on7,0,0,25,1,0,2948,4515.600000,153,3,60295.201280,1920.447795,hint,lora,180 +on4,0,0,24,1,0,952,4418.197440,153,1,22707.001280,1841.903590,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,153,0,-1.000000,2081.315686,hint,lora,180 +on6,0,0,26,1,0,1946,4683.600000,153,2,40279.001280,1964.015795,hint,lora,180 +on2,0,0,25,1,0,2103,4537.300000,153,3,50601.001280,2002.984205,hint,lora,180 +on5,0,0,25,1,0,1106,4502.998720,153,1,25905.001280,1876.943898,hint,lora,180 +on12,0,0,26,0,0,4378,4680.000000,153,2,-1.000000,1899.423386,hint,lora,180 +on3,0,0,25,1,0,1373,4502.997440,153,1,30315.001280,1861.807386,hint,lora,180 +on9,0,0,25,1,0,1870,4615.402560,154,2,37594.001280,1904.177229,hint,lora,180 +on5,0,0,34,1,0,3761,6227.605120,154,12,71311.001280,2689.392614,hint,lora,180 +on10,0,0,30,1,0,2986,5403.602560,154,6,59734.001280,2292.528000,hint,lora,180 +on12,0,0,25,1,0,1286,4502.400000,154,1,28883.001280,1875.567795,hint,lora,180 +on2,0,0,29,1,0,3068,5378.400000,154,7,66052.001280,2334.062771,hint,lora,180 +on11,0,0,27,1,0,2973,5087.800000,154,5,63389.003840,2177.151795,hint,lora,180 +on3,0,0,25,1,0,1888,4614.800000,154,2,43559.001280,1923.712410,hint,lora,180 +on4,0,0,25,1,0,1786,4501.005120,154,1,35990.001280,1829.042253,hint,lora,180 +on7,0,0,25,1,0,2085,4594.302560,154,3,40527.001280,1898.040819,hint,lora,180 +on8,0,0,30,1,0,2887,5404.101280,154,6,53495.001280,2249.863693,hint,lora,180 +on1,0,0,28,1,0,2816,5041.800000,154,4,54465.001280,2089.343590,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,154,0,-1.000000,2149.090867,hint,lora,180 +on6,0,0,28,1,0,2494,5043.102560,154,4,48453.001280,2085.528000,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,155,0,-1.000000,2104.290253,hint,lora,180 +on10,0,0,25,1,0,1228,4502.494880,155,1,28632.001280,1846.518157,hint,lora,180 +on2,0,0,28,1,0,1937,5045.303840,155,4,37425.001280,2137.593741,hint,lora,180 +on3,0,0,27,1,0,932,4862.197440,155,3,17903.001280,1977.134976,hint,lora,180 +on6,0,0,28,0,0,4512,5041.500000,155,4,-1.000000,2061.670771,hint,lora,180 +on1,0,0,29,1,0,1770,5224.802560,155,5,30258.001280,2217.968614,hint,lora,180 +on9,0,0,26,1,0,1770,4731.800000,155,3,33367.001280,1958.783386,hint,lora,180 +on12,0,0,24,1,0,912,4321.000000,155,0,19129.001280,1754.960000,hint,lora,180 +on7,0,0,25,1,0,999,4502.301280,155,1,24366.001280,1851.320512,hint,lora,180 +on5,0,0,24,1,0,533,4480.200000,155,1,14217.001280,1846.160000,hint,lora,180 +on4,0,0,32,1,0,2506,5765.001280,155,8,44886.001280,2456.782669,hint,lora,180 +on11,0,0,28,0,0,3981,5129.702560,155,7,-1.000000,2216.888614,hint,lora,180 +on8,0,0,30,1,0,1912,5533.403840,155,8,40082.001280,2419.808102,hint,lora,180 +on11,0,0,28,1,0,2477,5042.800000,156,4,48274.001280,2104.191386,hint,lora,180 +on1,0,0,27,1,0,2215,4861.501280,156,3,40276.001280,2005.287898,hint,lora,180 +on7,0,0,24,1,0,194,4321.002560,156,0,6157.001280,1782.385229,hint,lora,180 +on9,0,0,28,1,0,1456,5045.398720,156,4,25420.001280,2126.767078,hint,lora,180 +on12,0,0,30,1,0,1597,5461.301280,156,7,29257.001280,2348.854669,hint,lora,180 +on3,0,0,26,1,0,1140,4682.501280,156,2,22610.001280,1941.864307,hint,lora,180 +on4,0,0,24,1,0,1,4321.000000,156,0,3450.001280,1756.880000,hint,lora,180 +on10,0,0,27,1,0,1753,4860.601280,156,3,35696.001280,1995.727693,hint,lora,180 +on8,0,0,25,1,0,671,4502.000000,156,1,14442.001280,1852.768000,hint,lora,180 +on5,0,0,26,1,0,274,4684.600000,156,4,9826.001280,1978.895590,hint,lora,180 +on2,0,0,26,1,0,1007,4681.000000,156,2,19697.001280,1901.040000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,156,0,-1.000000,2074.369843,hint,lora,180 +on6,0,0,27,1,0,767,4863.502560,156,3,16988.001280,2017.529024,hint,lora,180 +on2,0,0,24,1,0,1735,4361.301280,157,1,39020.001280,1787.304512,hint,lora,180 +on11,0,0,31,1,0,3169,5745.601280,157,8,53517.001280,2384.799283,hint,lora,180 +on12,0,0,29,1,0,2627,5223.301280,157,5,48944.001280,2181.751898,hint,lora,180 +on1,0,0,27,0,0,4146,4860.300000,157,4,-1.000000,2046.039181,hint,lora,180 +on6,0,0,25,1,0,1240,4503.400000,157,1,27557.001280,1903.487795,hint,lora,180 +on8,0,0,29,1,0,3139,5222.800000,157,5,56259.001280,2169.102566,hint,lora,180 +on5,0,0,27,1,0,1763,4862.803840,157,3,34684.001280,2026.129741,hint,lora,180 +on7,0,0,27,1,0,3296,4862.800000,157,4,66931.001280,2049.759386,hint,lora,180 +on9,0,0,30,1,0,2726,5403.801280,157,6,46508.001280,2229.727693,hint,lora,180 +on3,0,0,27,0,0,4566,4860.600000,157,3,-1.000000,1978.639181,hint,lora,180 +on10,0,0,26,1,0,2087,4683.000000,157,2,41629.001280,1931.024205,hint,lora,180 +on4,0,0,25,1,0,2966,4543.596160,157,2,63168.001280,1880.478464,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,157,0,-1.000000,2134.657638,hint,lora,180 +on10,0,0,28,1,0,2519,5043.502560,158,5,50849.001280,2149.080410,hint,lora,180 +on5,0,0,26,1,0,1739,4710.498720,158,4,32701.001280,1943.767488,hint,lora,180 +on3,0,0,28,1,0,2353,5041.800000,158,5,42390.001280,2069.615590,hint,lora,180 +on12,0,0,24,0,0,4138,4320.000000,158,0,-1.000000,1757.440000,hint,lora,180 +on11,0,0,30,1,0,2740,5403.101280,158,7,55548.001280,2308.328307,hint,lora,180 +on4,0,0,26,1,0,1090,4682.197440,158,2,22873.001280,1949.743181,hint,lora,180 +on8,0,0,25,1,0,1341,4504.997440,158,2,29362.001280,1925.567590,hint,lora,180 +on2,0,0,27,1,0,2527,4961.103840,158,4,47193.001280,2050.249331,hint,lora,180 +on6,0,0,26,1,0,2950,4681.602560,158,3,59504.001280,1961.712819,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,158,0,-1.000000,2136.067277,hint,lora,180 +on9,0,0,24,1,0,688,4321.001280,158,0,17617.001280,1811.280717,hint,lora,180 +on7,0,0,25,1,0,1651,4502.300000,158,3,39734.001280,1865.800205,hint,lora,180 +on1,0,0,26,0,0,4306,4680.900000,158,2,-1.000000,1913.607386,hint,lora,180 +on2,0,0,25,1,0,836,4501.300000,159,1,24188.001280,1880.552000,hint,lora,180 +on10,0,0,27,1,0,1897,4862.402560,159,3,36132.001280,2001.456819,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,159,0,-1.000000,2073.153843,hint,lora,180 +on6,0,0,28,0,0,4615,5041.401280,159,5,-1.000000,2057.887283,hint,lora,180 +on8,0,0,26,0,0,4287,4726.502560,159,3,-1.000000,1938.968819,hint,lora,180 +on7,0,0,25,1,0,505,4501.001280,159,1,11911.001280,1859.984717,hint,lora,180 +on12,0,0,27,1,0,1490,4863.501280,159,3,30903.001280,2042.456512,hint,lora,180 +on9,0,0,25,0,0,4559,4669.500000,159,2,-1.000000,1910.039386,hint,lora,180 +on1,0,0,31,1,0,2234,5581.903840,159,7,42305.001280,2347.096717,hint,lora,180 +on5,0,0,25,1,0,721,4502.300000,159,1,20049.001280,1866.807590,hint,lora,180 +on11,0,0,26,1,0,1367,4681.000000,159,2,25675.001280,1901.040000,hint,lora,180 +on3,0,0,26,1,0,1840,4684.800000,159,2,39217.001280,1966.223795,hint,lora,180 +on4,0,0,24,1,0,689,4332.000000,159,1,16440.001280,1761.552205,hint,lora,180 +on9,0,0,28,1,0,2794,5040.901280,160,5,59094.001280,2129.592307,hint,lora,180 +on2,0,0,27,1,0,1257,4863.400000,160,4,32512.001280,2067.583590,hint,lora,180 +on11,0,0,30,1,0,2461,5405.501280,160,6,45931.001280,2295.846874,hint,lora,180 +on6,0,0,24,1,0,10,4322.000000,160,0,467.001280,1793.023795,hint,lora,180 +on10,0,0,27,1,0,1109,4861.198720,160,3,20579.002560,1976.895283,hint,lora,180 +on12,0,0,33,1,0,2312,6195.000000,160,11,53726.001280,2778.542771,hint,lora,180 +on8,0,0,28,1,0,1793,5043.600000,160,4,37736.001280,2114.208205,hint,lora,180 +on5,0,0,29,1,0,1538,5221.800000,160,5,34449.001280,2202.735590,hint,lora,180 +on4,0,0,27,1,0,621,4862.100000,160,4,11495.001280,2015.351795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,160,0,-1.000000,2207.170048,hint,lora,180 +on3,0,0,26,0,0,4316,4680.900000,160,2,-1.000000,1930.279386,hint,lora,180 +on1,0,0,31,1,0,2682,5754.998720,160,9,50173.001280,2468.334054,hint,lora,180 +on7,0,0,31,1,0,1866,5614.400000,160,8,41107.001280,2468.127386,hint,lora,180 +on11,0,0,26,1,0,1170,4757.900000,161,3,22036.001280,1998.870771,hint,lora,180 +on2,0,0,25,1,0,595,4504.300000,161,1,17537.001280,1920.663795,hint,lora,180 +on8,0,0,29,1,0,3075,5224.200000,161,5,61649.001280,2250.383181,hint,lora,180 +on7,0,0,26,1,0,2000,4683.298720,161,2,39206.001280,1970.983488,hint,lora,180 +on6,0,0,24,0,0,4247,4320.000000,161,0,-1.000000,1740.000000,hint,lora,180 +on5,0,0,25,1,0,190,4503.298720,161,1,7509.001280,1884.679488,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,161,0,-1.000000,2090.499072,hint,lora,180 +on9,0,0,25,1,0,1728,4501.200000,161,1,33943.001280,1840.063795,hint,lora,180 +on1,0,0,25,1,0,602,4564.300000,161,2,12486.001280,1910.520000,hint,lora,180 +on12,0,0,24,1,0,3,4321.997440,161,0,2135.001280,1770.239386,hint,lora,180 +on4,0,0,24,1,0,103,4373.301280,161,2,4355.001280,1815.368512,hint,lora,180 +on3,0,0,27,1,0,2058,4862.901280,161,5,41257.001280,2063.512102,hint,lora,180 +on10,0,0,29,1,0,1211,5224.901280,161,5,26264.001280,2244.184717,hint,lora,180 +on1,0,0,24,1,0,675,4353.000000,162,1,14918.001280,1772.928205,hint,lora,180 +on12,0,0,27,1,0,1202,4861.700000,162,3,24807.001280,1999.127590,hint,lora,180 +on5,0,0,28,1,0,1539,5041.500000,162,4,28901.002560,2065.703386,hint,lora,180 +on8,0,0,31,1,0,2472,5584.601280,162,7,50390.001280,2409.791078,hint,lora,180 +on7,0,0,31,1,0,2412,5584.101280,162,8,43262.001280,2385.255283,hint,lora,180 +on3,0,0,29,1,0,1701,5223.701280,162,5,35424.001280,2211.272102,hint,lora,180 +on4,0,0,27,1,0,1678,4904.800000,162,4,31528.001280,2039.231181,hint,lora,180 +on2,0,0,30,1,0,2493,5403.101280,162,6,43963.001280,2277.095488,hint,lora,180 +on6,0,0,33,1,0,2981,5944.302560,162,9,54761.001280,2556.791590,hint,lora,180 +on9,0,0,33,1,0,2965,5944.103840,162,10,53246.001280,2552.664307,hint,lora,180 +on11,0,0,25,1,0,972,4502.005120,162,1,21423.001280,1874.402253,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,162,0,-1.000000,2167.105229,hint,lora,180 +on10,0,0,25,1,0,1815,4502.300000,162,1,39035.001280,1887.960000,hint,lora,180 +on1,0,0,28,0,0,4205,5041.802560,163,4,-1.000000,2125.440410,hint,lora,180 +on8,0,0,26,1,0,1674,4822.500000,163,3,30469.001280,1992.423386,hint,lora,180 +on2,0,0,28,1,0,2078,5069.800000,163,5,39998.001280,2121.679386,hint,lora,180 +on4,0,0,29,1,0,2107,5257.602560,163,6,37688.001280,2166.880205,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,163,0,-1.000000,2170.529638,hint,lora,180 +on3,0,0,30,0,0,4488,5542.805120,163,7,-1.000000,2337.314048,hint,lora,180 +on11,0,0,25,1,0,820,4502.300000,163,1,19229.001280,1844.232000,hint,lora,180 +on5,0,0,24,1,0,579,4383.201280,163,1,15596.001280,1803.424922,hint,lora,180 +on9,0,0,28,0,0,4127,5211.800000,163,5,-1.000000,2213.935386,hint,lora,180 +on12,0,0,26,1,0,1107,4683.502560,163,2,23639.001280,1962.056819,hint,lora,180 +on10,0,0,26,1,0,2502,4681.301280,163,3,48373.001280,1912.360512,hint,lora,180 +on6,0,0,28,1,0,1827,5225.600000,163,6,46788.001280,2307.104410,hint,lora,180 +on7,0,0,25,1,0,1312,4501.998720,163,1,28534.001280,1858.079693,hint,lora,180 +on1,0,0,31,1,0,2114,5585.302560,164,8,40135.001280,2388.632205,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,164,0,-1.000000,2157.314458,hint,lora,180 +on11,0,0,27,1,0,1478,4864.300000,164,3,26821.001280,2033.079386,hint,lora,180 +on9,0,0,24,1,0,771,4322.994880,164,0,19653.001280,1813.645952,hint,lora,180 +on2,0,0,25,1,0,540,4501.602560,164,1,11454.602560,1854.769638,hint,lora,180 +on8,0,0,28,1,0,2488,5042.202560,164,4,50413.001280,2100.335795,hint,lora,180 +on6,0,0,27,1,0,2181,5135.900000,164,5,43813.001280,2182.966771,hint,lora,180 +on3,0,0,25,1,0,1200,4501.000000,164,1,24853.001280,1828.784000,hint,lora,180 +on10,0,0,28,1,0,3003,5061.497440,164,5,58517.001280,2106.326157,hint,lora,180 +on5,0,0,25,1,0,1404,4504.300000,164,1,30832.001280,1890.040000,hint,lora,180 +on7,0,0,28,1,0,1722,5043.101280,164,4,39311.001280,2158.088307,hint,lora,180 +on4,0,0,26,1,0,2235,4823.498720,164,3,51940.001280,2058.951693,hint,lora,180 +on12,0,0,24,1,0,720,4323.000000,164,0,17970.001280,1804.943795,hint,lora,180 +on3,0,0,27,1,0,1892,5133.100000,165,5,34948.001280,2119.799795,hint,lora,180 +on9,0,0,29,1,0,2902,5345.400000,165,6,61294.001280,2335.950362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,165,0,-1.000000,2142.529434,hint,lora,180 +on1,0,0,31,1,0,2441,5585.200000,165,7,43399.001280,2396.431181,hint,lora,180 +on12,0,0,32,1,0,3656,5763.397440,165,8,63178.001280,2404.460518,hint,lora,180 +on10,0,0,35,1,0,3525,6306.005120,165,14,67394.001280,2735.168819,hint,lora,180 +on7,0,0,26,1,0,1329,4683.300000,165,2,25704.001280,1968.472000,hint,lora,180 +on2,0,0,28,1,0,2805,5042.100000,165,4,57444.001280,2118.903590,hint,lora,180 +on8,0,0,25,1,0,811,4502.200000,165,1,20029.001280,1863.616000,hint,lora,180 +on4,0,0,31,1,0,2850,5584.597440,165,7,52976.001280,2381.853952,hint,lora,180 +on6,0,0,26,1,0,1335,4682.194880,165,2,23677.001280,1904.973747,hint,lora,180 +on11,0,0,24,1,0,1589,4462.000000,165,1,38899.001280,1858.944000,hint,lora,180 +on5,0,0,32,1,0,2523,5763.400000,165,8,48091.001280,2430.766771,hint,lora,180 +on2,0,0,30,1,0,3611,5497.701280,166,9,67477.001280,2299.366464,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,166,0,-1.000000,2192.738253,hint,lora,180 +on11,0,0,31,1,0,2441,5584.400000,166,7,47023.001280,2412.463181,hint,lora,180 +on1,0,0,25,1,0,1047,4504.294880,166,1,22108.001280,1888.741952,hint,lora,180 +on3,0,0,28,1,0,1901,5044.000000,166,4,34087.001280,2100.718976,hint,lora,180 +on9,0,0,31,1,0,3009,5583.800000,166,7,60730.001280,2397.310976,hint,lora,180 +on6,0,0,31,1,0,3029,5584.700000,166,8,63718.001280,2435.830157,hint,lora,180 +on12,0,0,29,1,0,2971,5222.302560,166,5,57327.001280,2215.048410,hint,lora,180 +on7,0,0,25,1,0,1154,4659.300000,166,2,27006.001280,1959.591590,hint,lora,180 +on10,0,0,25,1,0,2032,4515.300000,166,2,43927.001280,1883.463795,hint,lora,180 +on8,0,0,31,1,0,3789,5584.301280,166,7,71671.001280,2400.935078,hint,lora,180 +on4,0,0,24,1,0,912,4321.001280,166,0,21517.001280,1782.224717,hint,lora,180 +on5,0,0,26,1,0,1453,4685.300000,166,3,31808.001280,1990.279590,hint,lora,180 +on3,0,0,26,1,0,1446,4854.601280,167,4,26458.001280,2041.584307,hint,lora,180 +on7,0,0,26,1,0,1890,4681.597440,167,3,38074.001280,1918.558566,hint,lora,180 +on1,0,0,25,1,0,1390,4596.000000,167,2,30324.001280,1936.767795,hint,lora,180 +on11,0,0,26,1,0,1393,4682.897440,167,2,33321.001280,1984.646976,hint,lora,180 +on4,0,0,25,1,0,1039,4503.197440,167,1,24174.001280,1878.574566,hint,lora,180 +on8,0,0,24,0,0,4306,4320.000000,167,0,-1.000000,1756.800000,hint,lora,180 +on10,0,0,25,1,0,915,4501.300000,167,1,20409.001280,1854.183795,hint,lora,180 +on5,0,0,24,1,0,843,4451.005120,167,1,16550.001280,1867.410867,hint,lora,180 +on9,0,0,27,1,0,2443,4861.900000,167,5,46059.001280,1984.327590,hint,lora,180 +on12,0,0,25,1,0,2106,4502.000000,167,1,40259.001280,1837.280614,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,167,0,-1.000000,2066.980301,hint,lora,180 +on6,0,0,24,1,0,470,4487.002560,167,1,12861.001280,1882.865434,hint,lora,180 +on2,0,0,24,0,0,4174,4320.000000,167,0,-1.000000,1751.680000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,168,0,-1.000000,2185.922253,hint,lora,180 +on5,0,0,34,1,0,3244,6163.398720,168,11,56522.001280,2611.965645,hint,lora,180 +on1,0,0,29,0,0,4211,5335.600000,168,6,-1.000000,2288.126976,hint,lora,180 +on9,0,0,29,1,0,2382,5223.700000,168,5,43434.001280,2195.079181,hint,lora,180 +on6,0,0,26,1,0,796,4769.302560,168,3,21650.001280,2047.544819,hint,lora,180 +on2,0,0,24,1,0,440,4423.000000,168,1,11771.001280,1827.056000,hint,lora,180 +on8,0,0,30,1,0,2038,5461.302560,168,7,34191.001280,2302.745024,hint,lora,180 +on7,0,0,35,1,0,3116,6305.802560,168,11,50729.001280,2718.863386,hint,lora,180 +on4,0,0,28,1,0,1439,5042.298720,168,4,28923.001280,2073.303283,hint,lora,180 +on12,0,0,27,1,0,1536,4940.798720,168,4,32192.001280,2049.375693,hint,lora,180 +on11,0,0,35,1,0,3568,6302.303840,168,11,58207.001280,2647.031898,hint,lora,180 +on10,0,0,26,1,0,1751,4685.397440,168,2,39326.001280,2006.222771,hint,lora,180 +on3,0,0,31,1,0,2885,5697.801280,168,8,47090.001280,2392.335898,hint,lora,180 +on4,0,0,26,1,0,1339,4681.597440,169,2,28332.001280,1932.222771,hint,lora,180 +on1,0,0,25,1,0,3015,4500.301280,169,1,63928.001280,1876.120717,hint,lora,180 +on8,0,0,27,1,0,2055,4861.600000,169,4,37004.001280,2005.407795,hint,lora,180 +on2,0,0,25,1,0,3713,4502.200000,169,1,77283.001280,1839.600000,hint,lora,180 +on7,0,0,25,1,0,2671,4503.300000,169,1,61167.001280,1930.440410,hint,lora,180 +on5,0,0,25,1,0,3292,4502.300000,169,1,74559.001280,1901.783795,hint,lora,180 +on6,0,0,26,1,0,963,4681.201280,169,2,18629.001280,1905.648717,hint,lora,180 +on11,0,0,24,1,0,739,4320.002560,169,0,17263.001280,1753.601434,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,169,0,-1.000000,2117.155686,hint,lora,180 +on12,0,0,24,1,0,0,4320.001280,169,0,2830.001280,1753.600717,hint,lora,180 +on10,0,0,25,1,0,2631,4501.500000,169,1,55530.001280,1865.768205,hint,lora,180 +on9,0,0,28,1,0,1941,5070.396160,169,7,33236.001280,2112.254054,hint,lora,180 +on3,0,0,27,1,0,1281,4862.997440,169,3,22231.001280,2005.326566,hint,lora,180 +on2,0,0,34,1,0,3340,6125.602560,170,10,64613.001280,2692.079590,hint,lora,180 +on10,0,0,25,1,0,1999,4506.300000,170,2,40923.001280,1862.519590,hint,lora,180 +on3,0,0,30,1,0,2868,5405.000000,170,6,55317.001280,2327.231181,hint,lora,180 +on6,0,0,26,1,0,1958,4681.500000,170,2,39470.002560,1909.447590,hint,lora,180 +on9,0,0,34,1,0,4190,6250.600000,170,12,75589.001280,2713.820928,hint,lora,180 +on5,0,0,27,1,0,2734,5094.700000,170,5,48813.001280,2099.911590,hint,lora,180 +on4,0,0,25,1,0,1390,4503.000000,170,1,29309.001280,1881.328000,hint,lora,180 +on1,0,0,27,1,0,2549,5007.500000,170,4,43684.001280,2035.783795,hint,lora,180 +on11,0,0,27,1,0,2650,5023.900000,170,4,52238.001280,2112.631795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,170,0,-1.000000,2200.128614,hint,lora,180 +on7,0,0,31,1,0,2974,5584.401280,170,7,60463.001280,2404.351898,hint,lora,180 +on12,0,0,34,1,0,4159,6122.997440,170,10,71810.001280,2548.861133,hint,lora,180 +on8,0,0,31,1,0,3725,5622.800000,170,8,68184.001280,2393.341952,hint,lora,180 +on6,0,0,26,1,0,1468,4682.300000,171,2,30902.001280,1929.095386,hint,lora,180 +on4,0,0,30,1,0,2373,5404.202560,171,6,50230.001280,2347.791795,hint,lora,180 +on7,0,0,34,1,0,3102,6123.300000,171,10,46118.001280,2511.030362,hint,lora,180 +on8,0,0,27,1,0,1020,4864.594880,171,3,25468.001280,2099.566157,hint,lora,180 +on2,0,0,31,1,0,2289,5754.300000,171,9,39484.001280,2424.150566,hint,lora,180 +on10,0,0,27,1,0,1001,4863.100000,171,3,20032.001280,2031.047590,hint,lora,180 +on1,0,0,32,1,0,2469,5814.100000,171,10,40108.001280,2467.878566,hint,lora,180 +on11,0,0,29,1,0,2603,5223.097440,171,5,53427.001280,2215.957952,hint,lora,180 +on9,0,0,29,1,0,1955,5222.300000,171,5,34591.001280,2150.087795,hint,lora,180 +on5,0,0,28,1,0,2588,5201.500000,171,6,54810.001280,2239.158976,hint,lora,180 +on3,0,0,27,1,0,819,4861.600000,171,3,16287.001280,1999.999795,hint,lora,180 +on12,0,0,25,1,0,499,4502.200000,171,1,10468.001280,1858.015795,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,171,0,-1.000000,2168.097434,hint,lora,180 +on4,0,0,29,1,0,1720,5221.998720,172,5,29952.002560,2147.663488,hint,lora,180 +on2,0,0,31,1,0,3125,5583.798720,172,7,62194.001280,2420.173645,hint,lora,180 +on9,0,0,29,1,0,2399,5221.900000,172,5,49155.001280,2206.135181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,172,0,-1.000000,2198.497024,hint,lora,180 +on1,0,0,26,1,0,1752,4682.300000,172,2,34897.001280,1945.815795,hint,lora,180 +on11,0,0,31,1,0,3111,5742.198720,172,8,59346.001280,2448.270054,hint,lora,180 +on10,0,0,32,1,0,2305,5765.396160,172,8,40228.002560,2482.525235,hint,lora,180 +on6,0,0,28,1,0,1341,5041.800000,172,4,22262.001280,2077.247386,hint,lora,180 +on8,0,0,27,1,0,2001,4863.600000,172,3,45071.001280,2116.735590,hint,lora,180 +on7,0,0,25,1,0,503,4502.200000,172,1,13285.001280,1857.295795,hint,lora,180 +on5,0,0,31,1,0,2650,5756.801280,172,8,51482.001280,2500.991283,hint,lora,180 +on3,0,0,26,1,0,878,4682.000000,172,2,19700.001280,1966.832000,hint,lora,180 +on12,0,0,29,1,0,2656,5310.701280,172,6,57552.001280,2299.944512,hint,lora,180 +on2,0,0,25,1,0,2157,4501.601280,173,1,44991.001280,1858.256307,hint,lora,180 +on10,0,0,28,1,0,1910,5042.097440,173,5,39074.001280,2116.374157,hint,lora,180 +on7,0,0,27,1,0,1306,4972.800000,173,4,24008.001280,2095.310566,hint,lora,180 +on8,0,0,31,1,0,1290,5583.400000,173,8,28002.001280,2410.430157,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,173,0,-1.000000,2121.409843,hint,lora,180 +on5,0,0,25,1,0,1584,4502.000000,173,1,33609.001280,1854.495795,hint,lora,180 +on1,0,0,24,1,0,316,4372.000000,173,1,10417.001280,1814.031795,hint,lora,180 +on3,0,0,26,1,0,1671,4683.500000,173,3,29684.001280,1912.518976,hint,lora,180 +on9,0,0,25,1,0,2976,4501.500000,173,1,62764.001280,1862.728000,hint,lora,180 +on6,0,0,24,1,0,19,4320.997440,173,0,2080.001280,1753.999386,hint,lora,180 +on11,0,0,28,1,0,2317,5042.102560,173,5,42661.001280,2092.952614,hint,lora,180 +on4,0,0,26,1,0,601,4683.300000,173,2,14143.001280,1958.663795,hint,lora,180 +on12,0,0,26,1,0,842,4682.502560,173,2,17993.001280,1955.721434,hint,lora,180 +on11,0,0,28,1,0,2264,5044.801280,174,4,42737.001280,2137.552102,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,174,0,-1.000000,2153.921638,hint,lora,180 +on5,0,0,24,1,0,4068,4379.000000,174,1,83127.000000,1779.216000,hint,lora,180 +on3,0,0,31,1,0,2542,5583.901280,174,7,48889.001280,2368.872307,hint,lora,180 +on1,0,0,23,1,0,793,4301.397440,174,0,18632.001280,1775.022771,hint,lora,180 +on4,0,0,29,0,0,4376,5221.301280,174,5,-1.000000,2184.087693,hint,lora,180 +on7,0,0,28,1,0,1702,5045.100000,174,4,32574.001280,2161.047386,hint,lora,180 +on2,0,0,25,1,0,1791,4503.000000,174,1,36463.001280,1855.824000,hint,lora,180 +on8,0,0,27,1,0,1240,4862.300000,174,3,22302.001280,1976.664000,hint,lora,180 +on6,0,0,30,0,0,4563,5401.900000,174,6,-1.000000,2221.782976,hint,lora,180 +on9,0,0,24,1,0,1580,4395.200000,174,1,31860.001280,1819.568000,hint,lora,180 +on10,0,0,32,0,0,4705,5761.801280,174,9,-1.000000,2382.974874,hint,lora,180 +on12,0,0,24,1,0,1149,4321.000000,174,0,27459.001280,1774.960000,hint,lora,180 +on10,0,0,27,1,0,1595,4864.100000,175,3,30081.001280,2023.606976,hint,lora,180 +on12,0,0,28,1,0,1399,5043.307680,175,4,27175.001280,2109.738867,hint,lora,180 +on4,0,0,24,1,0,696,4389.001280,175,1,17883.001280,1852.032717,hint,lora,180 +on9,0,0,28,1,0,2278,5042.901280,175,5,43476.001280,2086.679898,hint,lora,180 +on7,0,0,26,1,0,299,4683.300000,175,2,8043.001280,1962.680000,hint,lora,180 +on1,0,0,25,1,0,1007,4609.000000,175,2,18719.001280,1918.000000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,175,0,-1.000000,2114.977843,hint,lora,180 +on5,0,0,30,1,0,3512,5671.000000,175,8,64446.001280,2383.725747,hint,lora,180 +on11,0,0,27,1,0,1194,4949.101280,175,4,22717.001280,2030.456102,hint,lora,180 +on3,0,0,26,1,0,1693,4829.001280,175,3,36828.001280,2042.064717,hint,lora,180 +on6,0,0,27,1,0,1776,4862.200000,175,3,35944.001280,2017.599590,hint,lora,180 +on2,0,0,28,1,0,2560,5042.002560,175,4,48560.001280,2099.344614,hint,lora,180 +on8,0,0,24,1,0,470,4365.300000,175,1,13897.001280,1790.439795,hint,lora,180 +on3,0,0,27,1,0,1897,4863.497440,176,3,38622.001280,2021.383181,hint,lora,180 +on0,1,9,24,0,0,0,4320.000000,176,0,-1.000000,2072.451482,hint,lora,180 +on11,0,0,26,1,0,1685,4681.000000,176,2,35742.001280,1933.919590,hint,lora,180 +on10,0,0,24,1,0,1972,4415.998720,176,1,43032.001280,1805.279488,hint,lora,180 +on7,0,0,29,1,0,2403,5223.201280,176,7,43648.001280,2191.152307,hint,lora,180 +on8,0,0,24,1,0,909,4323.000000,176,0,20740.001280,1808.848410,hint,lora,180 +on1,0,0,25,1,0,2256,4501.601280,176,1,49617.001280,1887.584717,hint,lora,180 +on5,0,0,25,1,0,1205,4500.001280,176,1,24314.001280,1854.400717,hint,lora,180 +on12,0,0,24,0,0,4189,4320.000000,176,0,-1.000000,1749.120000,hint,lora,180 +on4,0,0,26,1,0,2713,4682.601280,176,3,54494.001280,1980.880512,hint,lora,180 +on9,0,0,24,0,0,4191,4320.000000,176,0,-1.000000,1748.800000,hint,lora,180 +on6,0,0,25,1,0,2528,4502.297440,176,1,52003.001280,1848.119386,hint,lora,180 +on2,0,0,24,0,0,4143,4320.000000,176,0,-1.000000,1785.600000,hint,lora,180 +on12,0,0,25,1,0,1436,4502.000000,177,1,30888.001280,1836.224000,hint,lora,180 +on6,0,0,31,1,0,2498,5584.101280,177,7,50256.001280,2381.430874,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,177,0,-1.000000,2129.793638,hint,lora,180 +on5,0,0,25,1,0,833,4500.997440,177,1,17628.001280,1825.999181,hint,lora,180 +on9,0,0,26,1,0,1796,4681.798720,177,2,37760.001280,1927.567283,hint,lora,180 +on11,0,0,25,1,0,758,4502.301280,177,2,18365.001280,1877.848512,hint,lora,180 +on1,0,0,27,1,0,1899,4863.098720,177,3,42461.001280,2054.806874,hint,lora,180 +on4,0,0,30,1,0,2910,5404.700000,177,8,54991.001280,2289.510566,hint,lora,180 +on3,0,0,23,1,0,547,4251.000000,177,0,14546.001280,1730.544000,hint,lora,180 +on10,0,0,28,1,0,2407,5043.301280,177,4,45831.002560,2114.135693,hint,lora,180 +on7,0,0,30,1,0,2779,5403.700000,177,7,50803.001280,2297.814976,hint,lora,180 +on8,0,0,27,1,0,1750,4861.400000,177,3,35532.001280,1998.031590,hint,lora,180 +on2,0,0,24,1,0,1053,4333.200000,177,1,26091.001280,1792.160000,hint,lora,180 +on4,0,0,29,1,0,1875,5221.800000,178,6,32538.001280,2126.959386,hint,lora,180 +on11,0,0,27,1,0,1935,4992.001280,178,4,36184.001280,2130.864102,hint,lora,180 +on5,0,0,29,1,0,2629,5223.700000,178,7,55764.001280,2239.463181,hint,lora,180 +on3,0,0,29,1,0,2265,5222.800000,178,5,46180.001280,2217.519181,hint,lora,180 +on8,0,0,25,1,0,249,4501.201280,178,1,8777.001280,1865.920717,hint,lora,180 +on10,0,0,25,1,0,686,4503.994880,178,1,13685.001280,1884.222362,hint,lora,180 +on1,0,0,27,1,0,1085,4865.494880,178,4,18438.001280,2032.134566,hint,lora,180 +on12,0,0,32,1,0,2871,5764.098720,178,8,52657.001280,2409.734259,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,178,0,-1.000000,2113.571686,hint,lora,180 +on6,0,0,26,1,0,1467,4683.503840,178,2,28859.001280,1948.969946,hint,lora,180 +on2,0,0,25,1,0,1716,4580.300000,178,2,33881.001280,1897.927795,hint,lora,180 +on9,0,0,25,0,0,4327,4500.000000,178,1,-1.000000,1818.879590,hint,lora,180 +on7,0,0,25,1,0,878,4502.000000,178,1,24139.001280,1885.663795,hint,lora,180 +on12,0,0,33,1,0,2691,5943.303840,179,9,47813.001280,2541.544307,hint,lora,180 +on10,0,0,29,1,0,2205,5365.797440,179,6,40499.001280,2326.221952,hint,lora,180 +on8,0,0,30,1,0,2413,5706.302560,179,8,46638.001280,2438.007795,hint,lora,180 +on7,0,0,30,1,0,3442,5403.800000,179,6,60808.001280,2268.078771,hint,lora,180 +on4,0,0,26,1,0,645,4683.201280,179,2,13957.001280,1954.784512,hint,lora,180 +on3,0,0,32,1,0,2037,5763.701280,179,8,32802.001280,2430.726874,hint,lora,180 +on11,0,0,26,1,0,1421,4682.000000,179,2,25471.001280,1930.032000,hint,lora,180 +on5,0,0,27,1,0,1603,4861.700000,179,3,37382.001280,2016.583181,hint,lora,180 +on6,0,0,25,1,0,528,4502.005120,179,1,10617.001280,1858.082253,hint,lora,180 +on2,0,0,30,1,0,1844,5403.300000,179,6,30329.001280,2257.415181,hint,lora,180 +on1,0,0,26,1,0,827,4684.201280,179,2,16605.001280,1947.408717,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,179,0,-1.000000,2100.033843,hint,lora,180 +on9,0,0,25,1,0,833,4503.200000,179,1,20386.001280,1861.967386,hint,lora,180 +on11,0,0,25,1,0,1815,4566.600000,180,2,38920.001280,1877.583386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,180,0,-1.000000,2234.817434,hint,lora,180 +on12,0,0,30,1,0,3364,5404.800000,180,6,68488.001280,2312.239590,hint,lora,180 +on3,0,0,31,1,0,3716,5584.100000,180,8,71053.001280,2439.462771,hint,lora,180 +on5,0,0,27,1,0,2774,4862.300000,180,3,50666.001280,2006.951590,hint,lora,180 +on4,0,0,26,1,0,1381,4682.201280,180,2,31965.001280,1991.072717,hint,lora,180 +on7,0,0,28,1,0,2693,5043.998720,180,4,49853.001280,2094.671283,hint,lora,180 +on6,0,0,27,1,0,1900,4977.801280,180,4,45854.001280,2176.224307,hint,lora,180 +on8,0,0,27,1,0,3164,4861.500000,180,3,60106.001280,1982.838976,hint,lora,180 +on1,0,0,27,1,0,2807,4861.701280,180,3,56543.001280,2033.864102,hint,lora,180 +on10,0,0,28,1,0,4237,5191.100000,180,5,79968.001280,2143.207181,hint,lora,180 +on9,0,0,29,1,0,3386,5223.302560,180,6,63110.001280,2185.304410,hint,lora,180 +on2,0,0,24,1,0,1450,4327.000000,180,1,35348.001280,1817.200205,hint,lora,180 +on11,0,0,25,1,0,1126,4519.300000,181,2,24621.001280,1877.224000,hint,lora,180 +on9,0,0,28,1,0,3929,5257.100000,181,6,75719.001280,2194.774566,hint,lora,180 +on1,0,0,28,1,0,1580,5320.602560,181,6,34166.001280,2319.023795,hint,lora,180 +on10,0,0,25,1,0,257,4501.300000,181,2,7183.001280,1834.823590,hint,lora,180 +on3,0,0,28,1,0,1056,5043.202560,181,4,16446.001280,2091.744819,hint,lora,180 +on8,0,0,25,1,0,1274,4501.998720,181,1,28370.001280,1845.439693,hint,lora,180 +on6,0,0,24,1,0,14,4321.002560,181,0,1308.001280,1782.481229,hint,lora,180 +on5,0,0,28,1,0,1484,5043.200000,181,4,31886.001280,2134.191590,hint,lora,180 +on2,0,0,27,1,0,714,4864.297440,181,3,13364.001280,2002.727181,hint,lora,180 +on7,0,0,31,1,0,1972,5583.300000,181,7,43325.001280,2418.038566,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,181,0,-1.000000,2114.659072,hint,lora,180 +on12,0,0,29,1,0,2211,5223.900000,181,6,44232.001280,2244.231386,hint,lora,180 +on4,0,0,29,1,0,1689,5336.300000,181,7,38856.001280,2339.974771,hint,lora,180 +on9,0,0,32,1,0,2618,5887.905120,182,9,51649.001280,2574.522048,hint,lora,180 +on2,0,0,25,1,0,2112,4502.300000,182,1,45158.001280,1867.224000,hint,lora,180 +on3,0,0,24,1,0,899,4326.001280,182,1,21537.001280,1771.584512,hint,lora,180 +on6,0,0,25,1,0,1306,4503.303840,182,1,31477.001280,1889.225331,hint,lora,180 +on7,0,0,29,1,0,3290,5221.702560,182,6,64531.001280,2176.472205,hint,lora,180 +on11,0,0,25,1,0,1193,4502.201280,182,1,25069.001280,1830.000512,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,182,0,-1.000000,2206.113434,hint,lora,180 +on8,0,0,24,1,0,540,4322.000000,182,0,12071.001280,1783.424000,hint,lora,180 +on12,0,0,25,0,0,4245,4500.200000,182,1,-1.000000,1830.479795,hint,lora,180 +on1,0,0,31,1,0,2402,5682.101280,182,8,40687.001280,2402.679693,hint,lora,180 +on4,0,0,29,0,0,4042,5221.500000,182,5,-1.000000,2230.086976,hint,lora,180 +on5,0,0,34,1,0,3259,6123.797440,182,10,57107.001280,2567.789542,hint,lora,180 +on10,0,0,26,1,0,2762,4682.300000,182,3,58203.001280,1956.135181,hint,lora,180 +on10,0,0,30,1,0,1854,5441.002560,183,7,33659.001280,2295.840614,hint,lora,180 +on1,0,0,28,1,0,2100,5245.505120,183,6,45653.001280,2269.818458,hint,lora,180 +on12,0,0,29,1,0,2897,5222.301280,183,5,49443.001280,2156.903488,hint,lora,180 +on8,0,0,27,0,0,4340,4860.300000,183,4,-1.000000,2006.312000,hint,lora,180 +on4,0,0,29,1,0,1806,5223.200000,183,5,32343.001280,2175.599590,hint,lora,180 +on3,0,0,27,0,0,4524,4860.797440,183,3,-1.000000,1972.686771,hint,lora,180 +on7,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,hint,lora,180 +on9,0,0,25,1,0,950,4624.300000,183,2,19961.001280,1906.039795,hint,lora,180 +on11,0,0,28,1,0,1442,5043.801280,183,4,27774.001280,2127.552102,hint,lora,180 +on6,0,0,27,1,0,1078,4863.898720,183,3,24461.001280,2039.319078,hint,lora,180 +on0,1,8,24,0,0,0,4320.000000,183,0,-1.000000,2125.026867,hint,lora,180 +on5,0,0,26,0,0,3916,4868.900000,183,5,-1.000000,2118.919181,hint,lora,180 +on2,0,0,25,1,0,436,4504.200000,183,1,14340.001280,1907.072410,hint,lora,180 +on12,0,0,27,1,0,3716,4989.598720,184,4,79070.001280,2131.439693,hint,lora,180 +on9,0,0,24,1,0,1373,4320.000000,184,0,30933.001280,1782.400205,hint,lora,180 +on8,0,0,25,1,0,1080,4502.602560,184,1,22204.602560,1869.057638,hint,lora,180 +on7,0,0,31,1,0,2766,5655.297440,184,8,55048.001280,2414.310362,hint,lora,180 +on6,0,0,30,1,0,2845,5403.501280,184,7,58061.001280,2346.087078,hint,lora,180 +on2,0,0,25,1,0,3817,4502.300000,184,2,82951.001280,1899.000000,hint,lora,180 +on5,0,0,27,1,0,1883,4862.500000,184,3,38129.001280,1999.335386,hint,lora,180 +on10,0,0,26,1,0,2889,4954.101280,184,5,68553.001280,2148.296102,hint,lora,180 +on4,0,0,25,1,0,2107,4644.300000,184,2,43043.001280,1911.959795,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,184,0,-1.000000,2172.450458,hint,lora,180 +on11,0,0,28,1,0,3244,5043.897440,184,4,63770.001280,2114.838157,hint,lora,180 +on3,0,0,27,1,0,2305,4862.300000,184,3,46468.001280,2003.783590,hint,lora,180 +on1,0,0,27,0,0,4435,4861.200000,184,3,-1.000000,1981.375386,hint,lora,180 +on7,0,0,26,1,0,3250,4681.300000,185,2,62912.001280,1907.399590,hint,lora,180 +on2,0,0,30,1,0,1607,5405.393600,185,6,29499.001280,2303.884826,hint,lora,180 +on9,0,0,28,1,0,1561,5102.500000,185,5,27757.001280,2102.215181,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,185,0,-1.000000,2086.147072,hint,lora,180 +on4,0,0,26,1,0,780,4806.402560,185,3,18033.001280,2004.625229,hint,lora,180 +on1,0,0,25,1,0,982,4610.297440,185,2,20902.001280,2002.727181,hint,lora,180 +on10,0,0,25,1,0,120,4501.998720,185,1,5074.001280,1829.343693,hint,lora,180 +on8,0,0,27,1,0,1691,5011.897440,185,4,33385.001280,2089.526157,hint,lora,180 +on5,0,0,26,1,0,725,4721.400000,185,3,13962.001280,1958.223181,hint,lora,180 +on3,0,0,26,1,0,303,4683.000000,185,2,8343.001280,1957.311795,hint,lora,180 +on11,0,0,29,1,0,2069,5456.400000,185,9,39107.001280,2324.958566,hint,lora,180 +on12,0,0,28,1,0,2665,5042.200000,185,4,53215.001280,2108.142771,hint,lora,180 +on6,0,0,28,1,0,1353,5042.201280,185,4,25114.001280,2069.104307,hint,lora,180 +on9,0,0,26,1,0,3024,4683.600000,186,3,65463.001280,2003.711795,hint,lora,180 +on10,0,0,31,0,0,4640,5582.002560,186,7,-1.000000,2329.135386,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,186,0,-1.000000,2099.809229,hint,lora,180 +on4,0,0,30,1,0,3973,5699.301280,186,9,76486.001280,2457.990874,hint,lora,180 +on1,0,0,30,1,0,3943,5542.701280,186,7,73742.001280,2301.447078,hint,lora,180 +on12,0,0,25,1,0,2760,4530.300000,186,2,56923.001280,1870.136000,hint,lora,180 +on7,0,0,25,1,0,2174,4501.997440,186,1,48370.001280,1875.647181,hint,lora,180 +on3,0,0,25,1,0,3281,4659.300000,186,3,69168.001280,1946.488000,hint,lora,180 +on11,0,0,25,1,0,2944,4579.300000,186,2,58157.001280,1917.320000,hint,lora,180 +on6,0,0,27,1,0,3212,4921.205120,186,4,64598.001280,2050.401638,hint,lora,180 +on8,0,0,32,1,0,4540,5823.700000,186,10,83436.000000,2452.694157,hint,lora,180 +on2,0,0,29,1,0,4337,5344.401280,186,6,82078.001280,2208.270669,hint,lora,180 +on5,0,0,25,1,0,2690,4502.000000,186,1,54111.001280,1857.520000,hint,lora,180 +on9,0,0,29,1,0,1964,5224.698720,187,5,43282.001280,2230.006259,hint,lora,180 +on12,0,0,25,1,0,679,4502.000000,187,1,15296.001280,1857.520000,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,187,0,-1.000000,2171.426662,hint,lora,180 +on10,0,0,30,1,0,3386,5402.801280,187,7,61670.001280,2228.095693,hint,lora,180 +on3,0,0,30,1,0,3193,5401.698720,187,6,60283.001280,2216.455283,hint,lora,180 +on7,0,0,28,1,0,1726,5041.500000,187,4,27287.002560,2047.783795,hint,lora,180 +on6,0,0,29,1,0,1755,5223.100000,187,5,35432.001280,2195.063590,hint,lora,180 +on5,0,0,33,1,0,2488,6279.502560,187,12,49282.001280,2773.687795,hint,lora,180 +on11,0,0,29,1,0,1806,5350.798720,187,6,29791.001280,2206.031078,hint,lora,180 +on2,0,0,29,1,0,1929,5290.798720,187,6,37447.001280,2253.118259,hint,lora,180 +on4,0,0,31,1,0,2314,5679.896160,187,8,45715.001280,2456.917645,hint,lora,180 +on1,0,0,26,1,0,949,4683.200000,187,2,19666.001280,1936.320205,hint,lora,180 +on8,0,0,27,1,0,823,4863.598720,187,3,22710.001280,2063.727488,hint,lora,180 +on6,0,0,28,1,0,2907,5044.497440,188,4,64554.001280,2185.478566,hint,lora,180 +on7,0,0,24,1,0,1781,4392.001280,188,1,38128.001280,1797.072307,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,188,0,-1.000000,2191.522662,hint,lora,180 +on2,0,0,25,1,0,1013,4500.001280,188,1,18720.001280,1825.600717,hint,lora,180 +on9,0,0,26,1,0,2663,4681.600000,188,2,56207.001280,1920.735590,hint,lora,180 +on10,0,0,25,1,0,632,4501.001280,188,1,14855.001280,1897.216717,hint,lora,180 +on3,0,0,25,1,0,1273,4501.297440,188,1,28118.001280,1842.279181,hint,lora,180 +on8,0,0,25,1,0,2107,4501.200000,188,1,41645.001280,1829.328000,hint,lora,180 +on11,0,0,29,1,0,2706,5223.100000,188,6,51650.001280,2194.151181,hint,lora,180 +on12,0,0,29,1,0,3284,5223.301280,188,5,74155.001280,2300.807693,hint,lora,180 +on5,0,0,27,1,0,2202,4863.807680,188,3,49905.001280,2095.875072,hint,lora,180 +on1,0,0,25,1,0,1551,4503.300000,188,1,32711.001280,1871.080205,hint,lora,180 +on4,0,0,33,1,0,3477,5943.701280,188,11,67159.001280,2583.542669,hint,lora,180 +on1,0,0,33,1,0,2246,5944.097440,189,11,40037.001280,2542.916723,hint,lora,180 +on6,0,0,26,1,0,1782,4683.500000,189,2,34850.001280,1948.072205,hint,lora,180 +on3,0,0,25,1,0,1223,4503.000000,189,1,27803.001280,1883.760000,hint,lora,180 +on4,0,0,25,1,0,527,4503.000000,189,1,13318.001280,1861.840000,hint,lora,180 +on2,0,0,28,1,0,1592,5041.903840,189,4,30528.001280,2074.777741,hint,lora,180 +on5,0,0,33,1,0,2577,5944.201280,189,10,46153.001280,2539.951078,hint,lora,180 +on12,0,0,27,1,0,2809,4861.600000,189,3,60673.001280,2041.215181,hint,lora,180 +on11,0,0,25,1,0,233,4503.197440,189,1,8335.001280,1873.663386,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,189,0,-1.000000,2096.834458,hint,lora,180 +on10,0,0,30,1,0,2049,5403.903840,189,6,37855.001280,2322.104307,hint,lora,180 +on9,0,0,27,1,0,1242,4861.300000,189,3,24055.001280,1982.055795,hint,lora,180 +on7,0,0,26,1,0,862,4682.300000,189,2,16695.001280,1933.095795,hint,lora,180 +on8,0,0,26,1,0,1007,4682.000000,189,2,18293.001280,1926.944000,hint,lora,180 +on5,0,0,24,1,0,1083,4321.994880,190,0,23500.001280,1754.398362,hint,lora,180 +on0,1,10,24,0,0,0,4320.000000,190,0,-1.000000,2141.410662,hint,lora,180 +on9,0,0,24,0,0,3872,4320.000000,190,0,-1.000000,1809.599795,hint,lora,180 +on11,0,0,29,1,0,2636,5330.000000,190,9,48146.001280,2272.942976,hint,lora,180 +on8,0,0,27,1,0,2607,4863.098720,190,3,54091.001280,2060.327488,hint,lora,180 +on1,0,0,30,1,0,2947,5404.203840,190,7,56988.001280,2326.225126,hint,lora,180 +on4,0,0,28,1,0,2903,5040.901280,190,4,59764.001280,2126.711898,hint,lora,180 +on10,0,0,25,1,0,1377,4500.997440,190,1,28506.001280,1825.999181,hint,lora,180 +on7,0,0,25,1,0,1318,4503.000000,190,2,34335.001280,1928.239795,hint,lora,180 +on12,0,0,24,1,0,547,4322.997440,190,0,12353.001280,1783.183386,hint,lora,180 +on2,0,0,24,1,0,2067,4322.000000,190,0,45513.001280,1780.480000,hint,lora,180 +on3,0,0,24,0,0,4297,4320.000000,190,0,-1.000000,1756.800000,hint,lora,180 +on6,0,0,25,1,0,1756,4569.600000,190,2,39449.001280,1888.319795,hint,lora,180 +on5,0,0,27,1,0,3855,4861.800000,191,5,77839.001280,2008.303386,hint,lora,180 +on2,0,0,24,1,0,180,4325.001280,191,0,4552.001280,1838.065331,hint,lora,180 +on7,0,0,25,1,0,2505,4501.300000,191,2,57419.001280,1880.840410,hint,lora,180 +on1,0,0,24,1,0,772,4496.000000,191,1,21021.001280,1873.279795,hint,lora,180 +on3,0,0,26,1,0,1172,4682.000000,191,2,22111.001280,1933.919590,hint,lora,180 +on12,0,0,31,1,0,2085,5585.302560,191,8,41705.001280,2409.945229,hint,lora,180 +on6,0,0,26,1,0,387,4681.301280,191,3,11008.001280,1961.496512,hint,lora,180 +on10,0,0,25,1,0,3466,4502.200000,191,1,71929.001280,1858.063795,hint,lora,180 +on11,0,0,25,1,0,1129,4504.600000,191,1,27948.001280,1938.223795,hint,lora,180 +on9,0,0,31,1,0,1960,5584.298720,191,8,36873.001280,2372.551488,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,191,0,-1.000000,2166.980096,hint,lora,180 +on4,0,0,27,1,0,2131,4864.902560,191,3,45989.001280,2084.888819,hint,lora,180 +on8,0,0,25,1,0,3472,4582.497440,191,2,73905.001280,1915.078566,hint,lora,180 +on3,0,0,26,1,0,1427,4764.498720,192,3,28941.001280,1979.127078,hint,lora,180 +on12,0,0,25,1,0,380,4506.300000,192,1,11471.001280,1952.695795,hint,lora,180 +on4,0,0,29,1,0,1906,5524.800000,192,7,34043.001280,2345.599181,hint,lora,180 +on6,0,0,24,1,0,102,4389.997440,192,1,6448.001280,1784.799181,hint,lora,180 +on2,0,0,26,1,0,888,4682.300000,192,2,19822.001280,1926.151795,hint,lora,180 +on5,0,0,27,1,0,1882,4933.601280,192,5,41713.001280,2071.728102,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,192,0,-1.000000,2101.954867,hint,lora,180 +on10,0,0,24,0,0,4120,4320.000000,192,0,-1.000000,1760.320000,hint,lora,180 +on1,0,0,25,1,0,274,4552.301280,192,3,8718.001280,1881.688512,hint,lora,180 +on8,0,0,25,1,0,689,4502.000000,192,1,16283.001280,1857.568000,hint,lora,180 +on11,0,0,30,1,0,2195,5544.494880,192,7,38558.001280,2352.308723,hint,lora,180 +on9,0,0,27,1,0,3156,4967.201280,192,4,64996.001280,2087.072102,hint,lora,180 +on7,0,0,29,1,0,1757,5224.598720,192,5,30745.001280,2208.350669,hint,lora,180 +on1,0,0,24,1,0,1194,4339.002560,193,1,27639.001280,1761.201229,hint,lora,180 +on9,0,0,25,1,0,2296,4501.001280,193,1,49742.001280,1862.800512,hint,lora,180 +on3,0,0,27,1,0,3143,4878.797440,193,4,70394.001280,2119.694976,hint,lora,180 +on7,0,0,24,1,0,1358,4414.501280,193,2,30282.201280,1860.360922,hint,lora,180 +on5,0,0,27,1,0,2979,4863.600000,193,3,63462.001280,2077.071386,hint,lora,180 +on11,0,0,25,0,0,4380,4500.000000,193,1,-1.000000,1811.568000,hint,lora,180 +on12,0,0,25,1,0,4121,4500.000000,193,1,84567.000000,1865.920000,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,193,0,-1.000000,2182.338867,hint,lora,180 +on4,0,0,25,1,0,3800,4671.297440,193,3,73429.001280,1897.526976,hint,lora,180 +on10,0,0,25,1,0,926,4501.001280,193,1,21893.001280,1872.944717,hint,lora,180 +on2,0,0,25,1,0,3224,4501.000000,193,1,67423.001280,1857.743795,hint,lora,180 +on8,0,0,25,1,0,2696,4501.300000,193,1,56059.001280,1857.575795,hint,lora,180 +on6,0,0,26,1,0,3782,4681.300000,193,3,76631.001280,1935.559386,hint,lora,180 +on7,0,0,27,1,0,1488,4983.101280,194,5,33375.001280,2136.695488,hint,lora,180 +on9,0,0,25,1,0,881,4501.297440,194,2,20982.001280,1847.238976,hint,lora,180 +on10,0,0,29,1,0,2043,5223.600000,194,5,39285.001280,2156.255181,hint,lora,180 +on1,0,0,25,1,0,2622,4504.296160,194,1,51817.001280,1896.822874,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,194,0,-1.000000,2139.490867,hint,lora,180 +on6,0,0,24,1,0,1889,4361.297440,194,1,41728.001280,1785.510976,hint,lora,180 +on12,0,0,32,1,0,3189,5764.700000,194,10,56416.001280,2414.934771,hint,lora,180 +on4,0,0,25,1,0,1113,4501.000000,194,1,23528.001280,1848.991795,hint,lora,180 +on5,0,0,25,1,0,468,4500.001280,194,1,7678.001280,1827.040717,hint,lora,180 +on8,0,0,25,1,0,712,4500.998720,194,1,15570.001280,1827.391898,hint,lora,180 +on11,0,0,26,1,0,2211,4682.698720,194,2,48204.001280,1987.527078,hint,lora,180 +on3,0,0,25,1,0,3039,4502.000000,194,2,64153.001280,1856.000000,hint,lora,180 +on2,0,0,26,1,0,2060,4740.600000,194,3,46143.001280,1997.102976,hint,lora,180 +on6,0,0,28,1,0,1814,5044.398720,195,4,42710.001280,2194.926874,hint,lora,180 +on8,0,0,27,1,0,1517,4864.900000,195,3,30596.001280,2062.760000,hint,lora,180 +on11,0,0,27,1,0,1737,4864.603840,195,5,33144.001280,2066.273331,hint,lora,180 +on2,0,0,26,1,0,1366,4681.600000,195,2,27810.001280,1930.047386,hint,lora,180 +on5,0,0,24,1,0,9,4321.998720,195,0,1586.001280,1755.039488,hint,lora,180 +on10,0,0,25,1,0,2281,4527.198720,195,2,43746.001280,1886.463078,hint,lora,180 +on1,0,0,25,1,0,1072,4503.298720,195,2,24841.001280,1877.911693,hint,lora,180 +on9,0,0,31,1,0,2499,5725.603840,195,8,48511.001280,2465.985331,hint,lora,180 +on3,0,0,25,1,0,180,4503.601280,195,1,7322.602560,1869.201126,hint,lora,180 +on4,0,0,26,1,0,587,4685.497440,195,2,15200.001280,2017.399590,hint,lora,180 +on12,0,0,25,1,0,711,4504.298720,195,2,19807.001280,1895.159898,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,195,0,-1.000000,2044.453734,hint,lora,180 +on7,0,0,31,0,0,4053,5889.900000,195,10,-1.000000,2610.230157,hint,lora,180 +on11,0,0,28,1,0,2396,5043.500000,196,4,47978.001280,2126.583386,hint,lora,180 +on6,0,0,26,1,0,1907,4682.605120,196,2,37632.001280,1930.114253,hint,lora,180 +on2,0,0,25,1,0,1957,4626.800000,196,3,43106.001280,1921.215590,hint,lora,180 +on4,0,0,30,1,0,3618,5403.400000,196,6,69426.001280,2285.406976,hint,lora,180 +on8,0,0,30,1,0,2966,5403.302560,196,7,60631.001280,2307.464614,hint,lora,180 +on12,0,0,28,1,0,2708,5042.200000,196,4,50996.001280,2092.526362,hint,lora,180 +on5,0,0,25,1,0,1467,4502.296160,196,1,34259.001280,1864.886259,hint,lora,180 +on9,0,0,28,1,0,2389,5044.100000,196,4,43384.002560,2107.814771,hint,lora,180 +on1,0,0,30,1,0,3005,5404.400000,196,6,61375.001280,2340.158771,hint,lora,180 +on10,0,0,32,1,0,3190,5913.601280,196,9,65765.001280,2599.727488,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,196,0,-1.000000,2147.809843,hint,lora,180 +on3,0,0,30,1,0,2862,5404.300000,196,6,55585.001280,2316.166976,hint,lora,180 +on7,0,0,24,1,0,1067,4322.400000,196,0,30384.001280,1844.927386,hint,lora,180 +on3,0,0,30,0,0,4858,5401.301280,197,7,-1.000000,2186.920102,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,197,0,-1.000000,2177.123482,hint,lora,180 +on5,0,0,30,1,0,2405,5559.498720,197,7,40288.001280,2293.702669,hint,lora,180 +on7,0,0,26,1,0,1448,4683.998720,197,2,30903.001280,1937.567488,hint,lora,180 +on4,0,0,24,1,0,1289,4459.200000,197,1,25761.001280,1847.104205,hint,lora,180 +on2,0,0,27,1,0,3101,4863.596160,197,3,60757.001280,2030.558669,hint,lora,180 +on10,0,0,31,1,0,3428,5633.600000,197,10,63481.001280,2344.830566,hint,lora,180 +on11,0,0,27,1,0,3083,5042.097440,197,6,69570.001280,2153.270362,hint,lora,180 +on6,0,0,28,1,0,2117,5042.402560,197,4,43680.001280,2142.336819,hint,lora,180 +on1,0,0,27,1,0,3361,4999.100000,197,5,65610.001280,2082.407795,hint,lora,180 +on12,0,0,27,1,0,1873,4862.300000,197,3,36364.001280,2020.728000,hint,lora,180 +on8,0,0,26,1,0,3375,4898.801280,197,6,74178.001280,2084.048102,hint,lora,180 +on9,0,0,27,1,0,1546,4862.203840,197,3,34948.001280,2034.609946,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,198,0,-1.000000,2103.236096,hint,lora,180 +on12,0,0,28,1,0,1788,5170.001280,198,5,30478.001280,2185.343898,hint,lora,180 +on5,0,0,31,1,0,2680,5584.001280,198,9,54067.001280,2381.279283,hint,lora,180 +on11,0,0,26,1,0,513,4683.197440,198,2,11191.001280,1965.198771,hint,lora,180 +on4,0,0,26,1,0,2108,4682.197440,198,2,43222.002560,1935.166976,hint,lora,180 +on2,0,0,30,1,0,2414,5403.101280,198,6,48817.001280,2301.288102,hint,lora,180 +on7,0,0,28,1,0,1917,5044.398720,198,4,36754.001280,2111.982874,hint,lora,180 +on10,0,0,30,1,0,1661,5402.400000,198,8,26978.001280,2208.111386,hint,lora,180 +on3,0,0,26,1,0,1580,4683.500000,198,2,34101.001280,1945.560205,hint,lora,180 +on1,0,0,28,1,0,1931,5044.698720,198,4,45092.001280,2168.007078,hint,lora,180 +on8,0,0,27,1,0,1190,4864.500000,198,3,22533.001280,2032.040614,hint,lora,180 +on6,0,0,25,1,0,991,4649.997440,198,2,21381.001280,1912.527590,hint,lora,180 +on9,0,0,25,0,0,4234,4500.200000,198,1,-1.000000,1825.999386,hint,lora,180 +on11,0,0,29,1,0,1841,5223.601280,199,6,35909.001280,2209.855898,hint,lora,180 +on3,0,0,25,1,0,533,4503.200000,199,1,12485.001280,1882.048000,hint,lora,180 +on5,0,0,28,1,0,2663,5157.900000,199,6,49745.001280,2125.015386,hint,lora,180 +on9,0,0,28,1,0,1458,5043.200000,199,4,27631.001280,2091.087386,hint,lora,180 +on8,0,0,29,1,0,2411,5222.900000,199,5,44260.001280,2178.454362,hint,lora,180 +on0,1,12,24,0,0,0,4320.000000,199,0,-1.000000,2103.073638,hint,lora,180 +on4,0,0,25,1,0,1252,4501.005120,199,1,25136.001280,1828.786253,hint,lora,180 +on10,0,0,25,1,0,1061,4502.000000,199,1,20937.001280,1857.824000,hint,lora,180 +on12,0,0,28,1,0,2537,5042.500000,199,5,52372.001280,2121.862771,hint,lora,180 +on6,0,0,25,1,0,328,4502.001280,199,1,9628.001280,1888.400717,hint,lora,180 +on1,0,0,26,1,0,1637,4828.600000,199,3,29738.001280,2002.047795,hint,lora,180 +on2,0,0,29,1,0,2022,5222.500000,199,5,39671.001280,2203.414771,hint,lora,180 +on7,0,0,33,1,0,2663,5944.503840,199,9,40278.001280,2468.808717,hint,lora,180 +on3,0,0,29,1,0,1553,5225.003840,200,5,30156.001280,2279.360922,hint,lora,180 +on10,0,0,25,1,0,0,4503.605120,200,1,2758.602560,1904.434662,hint,lora,180 +on11,0,0,26,1,0,1322,4683.696160,200,2,27434.001280,1941.526669,hint,lora,180 +on1,0,0,26,1,0,938,4684.600000,200,2,23265.001280,2007.935590,hint,lora,180 +on12,0,0,28,1,0,2160,5061.900000,200,6,42263.201280,2141.910566,hint,lora,180 +on0,1,11,24,0,0,0,4320.000000,200,0,-1.000000,2130.723482,hint,lora,180 +on5,0,0,26,1,0,738,4683.203840,200,2,15496.001280,1978.257741,hint,lora,180 +on8,0,0,25,1,0,1688,4502.298720,200,1,38375.001280,1847.383283,hint,lora,180 +on2,0,0,29,1,0,1161,5222.500000,200,5,20856.002560,2177.559181,hint,lora,180 +on7,0,0,25,1,0,271,4507.297440,200,1,7716.001280,1916.807590,hint,lora,180 +on9,0,0,27,0,0,4221,4869.802560,200,4,-1.000000,2016.384819,hint,lora,180 +on6,0,0,26,1,0,2870,4680.801280,200,3,63857.001280,1975.728512,hint,lora,180 +on4,0,0,27,1,0,1306,5028.600000,200,5,35698.001280,2151.327795,hint,lora,180 +on6,0,0,24,1,0,3467,4347.000000,1,0,70326.000000,1764.400000,extended,lora,180 +on9,0,0,24,1,0,2880,4320.000000,1,0,59717.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,759,4339.000000,1,0,17486.000000,1761.200000,extended,lora,180 +on8,0,0,24,1,0,1279,4320.000000,1,0,27313.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1443,4320.000000,1,0,29156.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,1,0,33315.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2030,4350.000000,1,0,43156.000000,1765.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,2845,4445.000000,1,0,57307.000000,1803.600000,extended,lora,180 +on1,0,0,24,1,0,249,4369.000000,1,0,4653.000000,1773.200000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,1,0,19137.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4539.000000,1,0,-1.000000,2071.600000,extended,lora,180 +on10,0,0,24,1,0,3022,4442.000000,2,0,59964.000000,1802.400000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,2,0,23036.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2193,4333.000000,2,0,45896.000000,1758.800000,extended,lora,180 +on7,0,0,24,1,0,1800,4320.000000,2,0,38982.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,795,4375.000000,2,0,15906.000000,1775.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1980,4320.000000,2,0,42894.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4827.000000,2,0,-1.000000,2186.800000,extended,lora,180 +on6,0,0,24,1,0,571,4331.000000,2,0,11090.000000,1758.000000,extended,lora,180 +on2,0,0,23,1,0,2170,4310.000000,2,0,46056.000000,1749.600000,extended,lora,180 +on9,0,0,24,1,0,822,4402.000000,2,0,16066.000000,1786.400000,extended,lora,180 +on5,0,0,24,1,0,1632,4320.000000,2,0,35550.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,3,0,19225.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4945.000000,3,0,-1.000000,2259.600000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,3,0,5748.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2439,4399.000000,3,0,50481.000000,1785.200000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,3,0,16454.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,389,4329.000000,3,0,8465.000000,1757.200000,extended,lora,180 +on1,0,0,24,1,0,1440,4320.000000,3,0,31383.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,473,4413.000000,3,0,8305.000000,1790.800000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,3,0,25486.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,3,0,1404.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,1343,4383.000000,3,0,27879.000000,1778.800000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,3,0,33079.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,720,4320.000000,4,0,15401.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3240,4320.000000,4,0,66799.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4875.000000,4,0,-1.000000,2180.400000,extended,lora,180 +on2,0,0,24,1,0,2700,4320.000000,4,0,56158.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,4,0,4465.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,4,0,34124.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,17,4320.000000,4,0,2325.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,4,0,27312.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,4,0,37355.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2096,4416.000000,4,0,40132.000000,1792.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,4192,4352.000000,5,0,83138.000000,1766.400000,extended,lora,180 +on0,1,12,24,0,0,0,4697.000000,5,0,-1.000000,2186.000000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,5,0,7771.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,627,4387.000000,5,0,13706.000000,1780.400000,extended,lora,180 +on7,0,0,24,1,0,1103,4323.000000,5,0,25163.000000,1754.800000,extended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,5,0,32210.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,604,4364.000000,5,0,13866.000000,1771.200000,extended,lora,180 +on2,0,0,24,1,0,3005,4425.000000,5,0,60853.000000,1795.600000,extended,lora,180 +on8,0,0,23,1,0,3596,4296.000000,5,0,72767.000000,1744.000000,extended,lora,180 +on11,0,0,24,1,0,2747,4347.000000,5,0,55031.000000,1764.400000,extended,lora,180 +on1,0,0,24,1,0,3420,4320.000000,5,0,70179.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1970,4470.000000,5,0,38639.000000,1813.600000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,5,0,2413.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1756,4436.000000,6,0,35649.000000,1800.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,6,0,28140.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,6,0,3635.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,6,0,21996.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4654.000000,6,0,-1.000000,2092.000000,extended,lora,180 +on4,0,0,24,1,0,3347,4407.000000,6,0,65371.000000,1788.400000,extended,lora,180 +on3,0,0,24,1,0,1503,4363.000000,6,0,30359.000000,1770.800000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1980,4320.000000,6,0,42707.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2872,4472.000000,6,0,56794.000000,1814.400000,extended,lora,180 +on12,0,0,24,1,0,2520,4320.000000,6,0,53979.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,extended,lora,180 +on0,1,8,24,0,0,0,4669.000000,7,0,-1.000000,2072.400000,extended,lora,180 +on6,0,0,24,1,0,4140,4320.000000,7,0,83879.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,540,4320.000000,7,0,14023.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1795,4475.000000,7,0,33708.000000,1815.600000,extended,lora,180 +on10,0,0,24,1,0,23,4323.000000,7,0,3669.000000,1754.800000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,7,0,8376.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3859,4379.000000,7,0,78090.000000,1777.200000,extended,lora,180 +on1,0,0,24,1,0,235,4355.000000,7,0,3829.000000,1767.600000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,7,0,25694.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,23,0,0,0,4740.000000,8,0,-1.000000,2152.000000,extended,lora,180 +on3,0,0,23,0,0,4239,4239.000000,8,0,-1.000000,1695.600000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,8,0,7973.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,164,4464.000000,8,0,2085.000000,1811.200000,extended,lora,180 +on11,0,0,24,1,0,540,4320.000000,8,0,13146.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,8,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1889,4389.000000,8,0,39571.000000,1781.200000,extended,lora,180 +on1,0,0,24,1,0,278,4398.000000,8,0,6587.000000,1784.800000,extended,lora,180 +on12,0,0,24,1,0,2752,4352.000000,8,0,54416.000000,1766.400000,extended,lora,180 +on4,0,0,24,1,0,320,4440.000000,8,0,6427.000000,1801.600000,extended,lora,180 +on2,0,0,24,1,0,3181,4421.000000,8,0,64653.000000,1794.000000,extended,lora,180 +on9,0,0,23,1,0,827,4380.000000,8,0,14988.000000,1777.600000,extended,lora,180 +on8,0,0,24,1,0,32,4332.000000,8,0,2245.000000,1758.400000,extended,lora,180 +on11,0,0,24,1,0,412,4352.000000,9,0,9008.000000,1766.400000,extended,lora,180 +on6,0,0,24,1,0,644,4404.000000,9,0,11907.000000,1787.200000,extended,lora,180 +on2,0,0,24,1,0,2424,4384.000000,9,0,49011.000000,1779.200000,extended,lora,180 +on7,0,0,24,1,0,2067,4387.000000,9,0,42580.000000,1780.400000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,9,0,25700.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4929.000000,9,0,-1.000000,2253.200000,extended,lora,180 +on12,0,0,24,1,0,4140,4320.000000,9,0,84582.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,9,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,154,4454.000000,9,0,1650.000000,1807.200000,extended,lora,180 +on4,0,0,24,1,0,1620,4320.000000,9,0,34347.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1080,4320.000000,9,0,22234.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3,4320.000000,9,0,1810.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,560,4320.000000,9,0,11747.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1573,4433.000000,10,0,29799.000000,1798.800000,extended,lora,180 +on10,0,0,24,1,0,2733,4333.000000,10,0,56889.000000,1758.800000,extended,lora,180 +on7,0,0,24,1,0,650,4410.000000,10,0,13752.000000,1789.600000,extended,lora,180 +on0,1,12,24,0,0,0,4740.000000,10,0,-1.000000,2203.200000,extended,lora,180 +on4,0,0,24,1,0,1422,4462.000000,10,0,28876.000000,1810.400000,extended,lora,180 +on6,0,0,24,1,0,937,4337.000000,10,0,20723.000000,1760.400000,extended,lora,180 +on9,0,0,24,1,0,1353,4393.000000,10,0,29036.000000,1782.800000,extended,lora,180 +on8,0,0,24,1,0,2880,4320.000000,10,0,58887.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,941,4341.000000,10,0,20883.000000,1762.000000,extended,lora,180 +on1,0,0,24,1,0,159,4459.000000,10,0,2030.000000,1809.200000,extended,lora,180 +on12,0,0,24,1,0,1872,4372.000000,10,0,38041.000000,1774.400000,extended,lora,180 +on5,0,0,24,1,0,2003,4323.000000,10,0,42243.000000,1754.800000,extended,lora,180 +on11,0,0,24,1,0,566,4326.000000,10,0,13912.000000,1756.000000,extended,lora,180 +on12,0,0,24,1,0,1072,4472.000000,11,0,20108.000000,1814.400000,extended,lora,180 +on3,0,0,24,1,0,1800,4320.000000,11,0,37430.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,540,4320.000000,11,0,11247.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,992,4392.000000,11,0,19948.000000,1782.400000,extended,lora,180 +on8,0,0,24,1,0,1646,4326.000000,11,0,35092.000000,1756.000000,extended,lora,180 +on2,0,0,24,1,0,1240,4460.000000,11,0,22995.000000,1809.600000,extended,lora,180 +on9,0,0,24,1,0,2340,4320.000000,11,0,48449.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,34,4334.000000,11,0,350.000000,1759.200000,extended,lora,180 +on5,0,0,24,1,0,845,4425.000000,11,0,18049.000000,1795.600000,extended,lora,180 +on10,0,0,24,1,0,840,4420.000000,11,0,18209.000000,1793.600000,extended,lora,180 +on7,0,0,24,1,0,1,4320.000000,11,0,510.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,5175.000000,11,0,-1.000000,2377.200000,extended,lora,180 +on4,0,0,24,1,0,1663,4343.000000,11,0,35252.000000,1762.800000,extended,lora,180 +on3,0,0,24,1,0,540,4320.000000,12,0,13282.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,366,4320.000000,12,0,10903.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,944,4344.000000,12,0,18493.000000,1763.200000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,12,0,2746.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2623,4403.000000,12,0,50795.000000,1786.800000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,12,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1799,4479.000000,12,0,33992.000000,1817.200000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,12,0,37669.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2456,4416.000000,12,0,50635.000000,1792.000000,extended,lora,180 +on1,0,0,24,1,0,924,4324.000000,12,0,18333.000000,1755.200000,extended,lora,180 +on8,0,0,24,1,0,2911,4331.000000,12,0,58114.000000,1758.000000,extended,lora,180 +on12,0,0,24,1,0,4295,4455.000000,12,0,86362.000000,1807.600000,extended,lora,180 +on0,1,11,24,0,0,0,4724.000000,12,0,-1.000000,2171.200000,extended,lora,180 +on7,0,0,24,1,0,1551,4411.000000,13,0,31350.000000,1790.000000,extended,lora,180 +on12,0,0,24,1,0,472,4412.000000,13,0,10427.000000,1790.400000,extended,lora,180 +on3,0,0,24,1,0,753,4333.000000,13,0,16923.000000,1758.800000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,120,4420.000000,13,0,2329.000000,1793.600000,extended,lora,180 +on2,0,0,23,0,0,4310,4310.000000,13,0,-1.000000,1724.000000,extended,lora,180 +on10,0,0,24,1,0,3952,4472.000000,13,0,76942.000000,1814.400000,extended,lora,180 +on9,0,0,24,1,0,438,4378.000000,13,0,10267.000000,1776.800000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,3,4320.000000,13,0,2169.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,lora,180 +on0,1,8,24,0,0,0,4600.000000,13,0,-1.000000,2044.800000,extended,lora,180 +on1,0,0,24,1,0,1813,4320.000000,13,0,38217.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,14,0,9267.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,14,0,18681.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,4306,4466.000000,14,0,84210.000000,1812.000000,extended,lora,180 +on0,1,10,24,0,0,0,4565.000000,14,0,-1.000000,2082.000000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,14,0,2012.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,180,4320.000000,14,0,6831.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,599,4359.000000,14,0,14226.000000,1769.200000,extended,lora,180 +on11,0,0,24,1,0,1408,4448.000000,14,0,26655.000000,1804.800000,extended,lora,180 +on2,0,0,24,1,0,1094,4320.000000,14,0,22972.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,14,0,16064.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,2383,4343.000000,14,0,48587.000000,1762.800000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,1263,4320.000000,15,0,28841.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,15,0,56813.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1800,4320.000000,15,0,36723.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,0,4320.000000,15,0,3692.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3960,4320.000000,15,0,79944.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,15,0,22457.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2301,4441.000000,15,0,45730.000000,1802.000000,extended,lora,180 +on11,0,0,24,1,0,540,4320.000000,15,0,13148.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2520,4320.000000,15,0,52643.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4968.000000,15,0,-1.000000,2294.400000,extended,lora,180 +on8,0,0,24,1,0,999,4399.000000,15,0,18340.000000,1785.200000,extended,lora,180 +on2,0,0,24,1,0,1983,4320.000000,15,0,39970.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,774,4354.000000,15,0,17169.000000,1767.200000,extended,lora,180 +on7,0,0,23,1,0,1382,4249.000000,16,0,31030.000000,1725.200000,extended,lora,180 +on12,0,0,24,1,0,1414,4454.000000,16,0,27482.000000,1807.200000,extended,lora,180 +on3,0,0,24,1,0,1371,4411.000000,16,0,27322.000000,1790.000000,extended,lora,180 +on8,0,0,24,1,0,900,4320.000000,16,0,19853.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,16,0,55429.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1518,4378.000000,16,0,30870.000000,1776.800000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,2421,4381.000000,16,0,47759.000000,1778.000000,extended,lora,180 +on0,1,10,24,0,0,0,4699.000000,16,0,-1.000000,2135.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,81,4381.000000,16,0,2927.000000,1778.000000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,16,0,6446.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2100,4420.000000,16,0,41500.000000,1793.600000,extended,lora,180 +on0,1,11,24,0,0,0,4466.000000,17,0,-1.000000,2068.000000,extended,lora,180 +on6,0,0,24,1,0,1980,4320.000000,17,0,40688.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2488,4448.000000,17,0,50487.000000,1804.800000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,17,0,14588.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3602,4320.000000,17,0,75071.000000,1753.600000,extended,lora,180 +on2,0,0,23,1,0,1392,4302.000000,17,0,27790.000000,1746.400000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,17,0,2703.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1715,4395.000000,17,0,34392.000000,1783.600000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,17,0,6434.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2160,4320.000000,17,0,44331.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,23,1,0,497,4437.000000,17,0,7621.000000,1800.400000,extended,lora,180 +on9,0,0,24,1,0,1501,4361.000000,17,0,31115.000000,1770.000000,extended,lora,180 +on3,0,0,24,1,0,399,4339.000000,18,0,9063.000000,1761.200000,extended,lora,180 +on5,0,0,24,1,0,491,4431.000000,18,0,9223.000000,1798.000000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,18,0,2430.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2700,4320.000000,18,0,56361.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1440,4320.000000,18,0,30016.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1098,4320.000000,18,0,23318.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1861,4361.000000,18,0,36268.000000,1770.000000,extended,lora,180 +on2,0,0,24,1,0,2160,4320.000000,18,0,46284.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,18,0,4032.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,5268.000000,18,0,-1.000000,2414.400000,extended,lora,180 +on6,0,0,24,1,0,1710,4390.000000,18,0,34787.000000,1781.600000,extended,lora,180 +on11,0,0,24,1,0,3420,4320.000000,18,0,69404.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,18,0,18642.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1493,4353.000000,19,0,30184.000000,1766.800000,extended,lora,180 +on12,0,0,24,1,0,2547,4327.000000,19,0,51156.000000,1756.400000,extended,lora,180 +on3,0,0,24,1,0,1182,4402.000000,19,0,22056.000000,1786.400000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,19,0,3476.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,19,0,25995.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,19,0,11774.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4985.000000,19,0,-1.000000,2301.200000,extended,lora,180 +on1,0,0,24,1,0,720,4320.000000,19,0,17237.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,499,4439.000000,19,0,10103.000000,1801.200000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,19,0,39813.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,195,4320.000000,19,0,4658.000000,1753.600000,extended,lora,180 +on2,0,0,22,1,0,1972,4221.000000,19,0,41289.000000,1714.000000,extended,lora,180 +on4,0,0,24,1,0,1499,4359.000000,19,0,30344.000000,1769.200000,extended,lora,180 +on8,0,0,24,1,0,2520,4320.000000,20,0,51859.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2586,4366.000000,20,0,54172.000000,1772.000000,extended,lora,180 +on0,1,11,24,0,0,0,4911.000000,20,0,-1.000000,2246.000000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,20,0,41605.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,20,0,15492.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2441,4401.000000,20,0,48790.000000,1786.000000,extended,lora,180 +on11,0,0,24,1,0,1765,4445.000000,20,0,34541.000000,1803.600000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,20,0,7922.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2195,4335.000000,20,0,45468.000000,1759.600000,extended,lora,180 +on3,0,0,24,1,0,1766,4446.000000,20,0,34381.000000,1804.000000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,3600,4320.000000,20,0,74966.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,358,4478.000000,20,0,6643.000000,1816.800000,extended,lora,180 +on3,0,0,24,1,0,1980,4320.000000,21,0,40751.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,21,0,16865.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3420,4320.000000,21,0,69744.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4937.000000,21,0,-1.000000,2282.000000,extended,lora,180 +on7,0,0,24,1,0,3260,4320.000000,21,0,65866.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2331,4471.000000,21,0,46181.000000,1814.000000,extended,lora,180 +on12,0,0,24,1,0,1126,4346.000000,21,0,22431.000000,1764.000000,extended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,21,0,31605.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,21,0,21506.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,21,0,496.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3960,4320.000000,21,0,82647.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1112,4332.000000,21,0,22591.000000,1758.400000,extended,lora,180 +on11,0,0,24,1,0,33,4333.000000,21,0,319.000000,1758.800000,extended,lora,180 +on7,0,0,24,1,0,4067,4407.000000,22,0,81624.000000,1788.400000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1453,4320.000000,22,0,30552.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,22,0,4972.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,62,4362.000000,22,0,1465.000000,1770.400000,extended,lora,180 +on1,0,0,24,1,0,564,4324.000000,22,0,13061.000000,1755.200000,extended,lora,180 +on0,1,9,24,0,0,0,4720.000000,22,0,-1.000000,2118.400000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,22,0,27171.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,23,1,0,1376,4238.000000,22,0,30392.000000,1720.800000,extended,lora,180 +on3,0,0,24,1,0,898,4478.000000,22,0,18314.000000,1816.800000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,553,4320.000000,22,0,13221.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2464,4424.000000,23,0,49300.000000,1795.200000,extended,lora,180 +on10,0,0,24,1,0,981,4381.000000,23,0,19116.000000,1778.000000,extended,lora,180 +on1,0,0,24,1,0,1800,4320.000000,23,0,38106.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1980,4320.000000,23,0,43331.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1153,4373.000000,23,0,22042.000000,1774.800000,extended,lora,180 +on11,0,0,24,1,0,135,4435.000000,23,0,3524.000000,1799.600000,extended,lora,180 +on0,1,12,24,0,0,0,5118.000000,23,0,-1.000000,2354.400000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,23,0,51823.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,118,4418.000000,23,0,3364.000000,1792.800000,extended,lora,180 +on4,0,0,24,1,0,3718,4418.000000,23,0,72433.000000,1792.800000,extended,lora,180 +on12,0,0,24,1,0,2453,4413.000000,23,0,49460.000000,1790.800000,extended,lora,180 +on7,0,0,23,1,0,720,4217.000000,23,0,15165.000000,1712.400000,extended,lora,180 +on5,0,0,24,1,0,1003,4403.000000,23,0,18956.000000,1786.800000,extended,lora,180 +on2,0,0,24,1,0,2899,4320.000000,24,0,58756.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3015,4435.000000,24,0,58916.000000,1799.600000,extended,lora,180 +on6,0,0,23,1,0,540,4248.000000,24,0,13458.000000,1724.800000,extended,lora,180 +on12,0,0,24,1,0,797,4377.000000,24,0,15921.000000,1776.400000,extended,lora,180 +on3,0,0,24,1,0,1440,4320.000000,24,0,30856.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,261,4381.000000,24,0,6226.000000,1778.000000,extended,lora,180 +on9,0,0,24,1,0,3240,4320.000000,24,0,66732.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1103,4323.000000,24,0,24853.000000,1754.800000,extended,lora,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8719.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,444,4384.000000,24,0,8879.000000,1779.200000,extended,lora,180 +on0,1,12,24,0,0,0,4791.000000,24,0,-1.000000,2223.600000,extended,lora,180 +on7,0,0,24,1,0,1805,4320.000000,24,0,37544.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3420,4320.000000,24,0,72067.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,62,4362.000000,25,0,989.000000,1770.400000,extended,lora,180 +on4,0,0,24,1,0,2047,4367.000000,25,0,42152.000000,1772.400000,extended,lora,180 +on2,0,0,24,1,0,1682,4362.000000,25,0,34500.000000,1770.400000,extended,lora,180 +on1,0,0,24,1,0,2081,4401.000000,25,0,41992.000000,1786.000000,extended,lora,180 +on6,0,0,24,1,0,767,4347.000000,25,0,17764.000000,1764.400000,extended,lora,180 +on12,0,0,24,1,0,2533,4320.000000,25,0,54043.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,122,4422.000000,25,0,829.000000,1794.400000,extended,lora,180 +on11,0,0,24,1,0,540,4320.000000,25,0,14008.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,811,4391.000000,25,0,17924.000000,1782.000000,extended,lora,180 +on0,1,11,23,0,0,0,5008.000000,25,0,-1.000000,2284.800000,extended,lora,180 +on5,0,0,24,1,0,1765,4445.000000,25,0,34660.000000,1803.600000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,25,0,7896.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,511,4451.000000,26,0,10548.000000,1806.000000,extended,lora,180 +on7,0,0,24,1,0,1130,4350.000000,26,0,24547.000000,1765.600000,extended,lora,180 +on0,1,10,24,0,0,0,4599.000000,26,0,-1.000000,2095.600000,extended,lora,180 +on10,0,0,24,1,0,586,4346.000000,26,0,14464.000000,1764.000000,extended,lora,180 +on6,0,0,24,1,0,2382,4342.000000,26,0,48314.000000,1762.400000,extended,lora,180 +on8,0,0,24,1,0,2340,4320.000000,26,0,48154.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1675,4355.000000,26,0,33973.000000,1767.600000,extended,lora,180 +on1,0,0,24,1,0,3023,4443.000000,26,0,58390.000000,1802.800000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,3600,4320.000000,26,0,74485.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,44,4344.000000,26,0,2888.000000,1763.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,947,4347.000000,26,0,21232.000000,1764.400000,extended,lora,180 +on5,0,0,24,1,0,1311,4351.000000,27,0,27092.000000,1766.000000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,27,0,9577.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2388,4348.000000,27,0,49502.000000,1764.800000,extended,lora,180 +on8,0,0,24,1,0,922,4322.000000,27,0,19107.000000,1754.400000,extended,lora,180 +on2,0,0,24,1,0,1283,4323.000000,27,0,26932.000000,1754.800000,extended,lora,180 +on10,0,0,24,1,0,3453,4333.000000,27,0,68602.000000,1758.800000,extended,lora,180 +on12,0,0,24,1,0,1490,4350.000000,27,0,29220.000000,1765.600000,extended,lora,180 +on4,0,0,24,1,0,1805,4320.000000,27,0,38294.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2160,4320.000000,27,0,46464.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4793.000000,27,0,-1.000000,2224.400000,extended,lora,180 +on3,0,0,24,1,0,1442,4320.000000,27,0,29060.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,27,0,1637.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,996,4396.000000,27,0,19267.000000,1784.000000,extended,lora,180 +on1,0,0,24,1,0,2133,4453.000000,28,0,41231.000000,1806.800000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,28,0,11285.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1528,4388.000000,28,0,32464.000000,1780.800000,extended,lora,180 +on5,0,0,24,1,0,781,4361.000000,28,0,15615.000000,1770.000000,extended,lora,180 +on7,0,0,24,1,0,1080,4320.000000,28,0,23964.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,28,0,10331.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,28,0,18360.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4996.000000,28,0,-1.000000,2254.400000,extended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,28,0,38164.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,4023,4363.000000,28,0,82761.000000,1770.800000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,2002,4322.000000,28,0,41071.000000,1754.400000,extended,lora,180 +on11,0,0,24,1,0,3420,4320.000000,29,0,68892.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1620,4320.000000,29,0,32758.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,345,4465.000000,29,0,6178.000000,1811.600000,extended,lora,180 +on8,0,0,24,1,0,2037,4357.000000,29,0,39950.000000,1768.400000,extended,lora,180 +on7,0,0,24,1,0,647,4407.000000,29,0,14609.000000,1788.400000,extended,lora,180 +on4,0,0,23,1,0,2999,4419.000000,29,0,59092.000000,1793.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1415,4455.000000,29,0,28324.000000,1807.600000,extended,lora,180 +on5,0,0,24,1,0,536,4476.000000,29,0,8164.000000,1816.000000,extended,lora,180 +on0,1,11,24,0,0,0,4666.000000,29,0,-1.000000,2148.000000,extended,lora,180 +on12,0,0,24,1,0,3780,4320.000000,29,0,77377.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,29,0,22019.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1906,4406.000000,29,0,37286.000000,1788.000000,extended,lora,180 +on1,0,0,24,1,0,3704,4404.000000,30,0,75043.000000,1787.200000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,30,0,39530.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,30,0,17730.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,30,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1228,4448.000000,30,0,23330.000000,1804.800000,extended,lora,180 +on0,1,11,24,0,0,0,4828.000000,30,0,-1.000000,2212.800000,extended,lora,180 +on2,0,0,24,1,0,138,4438.000000,30,0,2351.000000,1800.800000,extended,lora,180 +on3,0,0,24,1,0,280,4400.000000,30,0,4444.000000,1785.600000,extended,lora,180 +on8,0,0,24,1,0,3020,4440.000000,30,0,59503.000000,1801.600000,extended,lora,180 +on7,0,0,24,1,0,931,4331.000000,30,0,21685.000000,1758.000000,extended,lora,180 +on5,0,0,24,1,0,237,4357.000000,30,0,4604.000000,1768.400000,extended,lora,180 +on9,0,0,24,1,0,3177,4417.000000,30,0,61886.000000,1792.400000,extended,lora,180 +on4,0,0,24,1,0,1260,4320.000000,30,0,26886.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,31,0,15152.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2064,4384.000000,31,0,41344.000000,1779.200000,extended,lora,180 +on0,1,10,24,0,0,0,4970.000000,31,0,-1.000000,2244.000000,extended,lora,180 +on10,0,0,24,1,0,2065,4385.000000,31,0,41504.000000,1779.600000,extended,lora,180 +on4,0,0,24,1,0,2420,4380.000000,31,0,49655.000000,1777.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,31,0,8677.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,31,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,31,0,20271.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,31,0,2718.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3420,4320.000000,31,0,69142.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,315,4435.000000,31,0,4115.000000,1799.600000,extended,lora,180 +on1,0,0,24,1,0,1505,4365.000000,31,0,30297.000000,1771.600000,extended,lora,180 +on10,0,0,24,1,0,2763,4363.000000,32,0,55079.000000,1770.800000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,32,0,25558.000000,1753.600000,extended,lora,180 +on12,0,0,23,1,0,1722,4381.000000,32,0,35087.000000,1778.000000,extended,lora,180 +on1,0,0,24,1,0,2160,4320.000000,32,0,45633.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1707,4387.000000,32,0,35247.000000,1780.400000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,32,0,11609.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1603,4463.000000,32,0,31526.000000,1810.800000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,32,0,37969.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,32,0,40847.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,5202.000000,32,0,-1.000000,2388.000000,extended,lora,180 +on6,0,0,24,1,0,419,4359.000000,32,0,7673.000000,1769.200000,extended,lora,180 +on9,0,0,24,1,0,3370,4430.000000,32,0,67984.000000,1797.600000,extended,lora,180 +on3,0,0,24,1,0,3309,4369.000000,32,0,68144.000000,1773.200000,extended,lora,180 +on2,0,0,24,1,0,973,4373.000000,33,0,21756.000000,1774.800000,extended,lora,180 +on9,0,0,24,1,0,2664,4444.000000,33,0,51308.000000,1803.200000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,33,0,10917.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1620,4320.000000,33,0,33331.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1292,4332.000000,33,0,26137.000000,1758.400000,extended,lora,180 +on3,0,0,24,1,0,327,4447.000000,33,0,6939.000000,1804.400000,extended,lora,180 +on8,0,0,24,1,0,553,4320.000000,33,0,14173.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1293,4333.000000,33,0,26297.000000,1758.800000,extended,lora,180 +on10,0,0,24,1,0,3240,4320.000000,33,0,65017.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4633.000000,33,0,-1.000000,2109.200000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,33,0,2679.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,2756,4356.000000,34,0,57355.000000,1768.000000,extended,lora,180 +on0,1,9,24,0,0,0,4930.000000,34,0,-1.000000,2202.400000,extended,lora,180 +on12,0,0,24,1,0,1659,4339.000000,34,0,35713.000000,1761.200000,extended,lora,180 +on11,0,0,24,1,0,2816,4416.000000,34,0,57195.000000,1792.000000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,34,0,5459.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,34,0,16001.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,34,0,14399.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1260,4320.000000,34,0,28844.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2309,4449.000000,34,0,46218.000000,1805.200000,extended,lora,180 +on10,0,0,24,1,0,3060,4320.000000,34,0,62462.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,537,4477.000000,35,0,7571.000000,1816.400000,extended,lora,180 +on2,0,0,24,1,0,1515,4375.000000,35,0,29614.000000,1775.600000,extended,lora,180 +on8,0,0,23,1,0,333,4374.000000,35,0,4758.000000,1775.200000,extended,lora,180 +on1,0,0,24,1,0,446,4386.000000,35,0,7731.000000,1780.000000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,35,0,24909.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1841,4341.000000,35,0,39528.000000,1762.000000,extended,lora,180 +on9,0,0,24,1,0,239,4359.000000,35,0,4918.000000,1769.200000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,35,0,1749.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,35,0,34796.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,802,4382.000000,35,0,15515.000000,1778.400000,extended,lora,180 +on7,0,0,24,1,0,724,4320.000000,35,0,15675.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,540,4320.000000,35,0,12838.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,5009.000000,35,0,-1.000000,2310.800000,extended,lora,180 +on0,1,11,24,0,0,0,4944.000000,36,0,-1.000000,2259.200000,extended,lora,180 +on11,0,0,24,1,0,2934,4354.000000,36,0,60145.000000,1767.200000,extended,lora,180 +on1,0,0,24,1,0,1444,4320.000000,36,0,31247.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,351,4471.000000,36,0,5924.000000,1814.000000,extended,lora,180 +on4,0,0,24,1,0,154,4454.000000,36,0,909.000000,1807.200000,extended,lora,180 +on12,0,0,24,1,0,3060,4320.000000,36,0,61801.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1990,4320.000000,36,0,43298.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1380,4420.000000,36,0,26451.000000,1793.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,23,1,0,3758,4298.000000,36,0,77635.000000,1744.800000,extended,lora,180 +on5,0,0,24,1,0,1320,4360.000000,36,0,26291.000000,1769.600000,extended,lora,180 +on3,0,0,24,1,0,138,4438.000000,36,0,749.000000,1800.800000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,36,0,10758.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,603,4363.000000,37,0,13602.000000,1770.800000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,37,0,23007.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,37,0,6932.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,37,0,8792.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3060,4320.000000,37,0,63933.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1440,4320.000000,37,0,32363.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3729,4429.000000,37,0,73917.000000,1797.200000,extended,lora,180 +on0,1,12,24,0,0,0,4967.000000,37,0,-1.000000,2294.000000,extended,lora,180 +on11,0,0,24,1,0,4140,4320.000000,37,0,84184.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,37,0,19381.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,599,4359.000000,37,0,13762.000000,1769.200000,extended,lora,180 +on3,0,0,23,1,0,1324,4251.000000,37,0,27188.000000,1726.000000,extended,lora,180 +on9,0,0,24,1,0,2460,4420.000000,37,0,49501.000000,1793.600000,extended,lora,180 +on5,0,0,24,1,0,2294,4434.000000,38,0,46308.000000,1799.200000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,773,4353.000000,38,0,14932.000000,1766.800000,extended,lora,180 +on9,0,0,24,1,0,1833,4333.000000,38,0,39547.000000,1758.800000,extended,lora,180 +on12,0,0,24,1,0,390,4330.000000,38,0,8251.000000,1757.600000,extended,lora,180 +on6,0,0,24,1,0,2744,4344.000000,38,0,54342.000000,1763.200000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,38,0,21125.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1800,4320.000000,38,0,39708.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,749,4329.000000,38,0,15092.000000,1757.200000,extended,lora,180 +on7,0,0,24,1,0,4227,4387.000000,38,0,84869.000000,1780.400000,extended,lora,180 +on0,1,10,24,0,0,0,4659.000000,38,0,-1.000000,2119.600000,extended,lora,180 +on2,0,0,24,1,0,1341,4381.000000,38,0,28827.000000,1778.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,2363,4323.000000,39,0,50475.000000,1754.800000,extended,lora,180 +on4,0,0,23,1,0,2726,4221.000000,39,0,56898.000000,1714.000000,extended,lora,180 +on0,1,10,24,0,0,0,4551.000000,39,0,-1.000000,2076.400000,extended,lora,180 +on5,0,0,23,1,0,4018,4198.000000,39,0,83090.000000,1704.800000,extended,lora,180 +on2,0,0,24,1,0,1420,4460.000000,39,0,27815.000000,1809.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1205,4425.000000,39,0,23203.000000,1795.600000,extended,lora,180 +on10,0,0,24,1,0,1178,4398.000000,39,0,23363.000000,1784.800000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2013,4333.000000,39,0,41703.000000,1758.800000,extended,lora,180 +on8,0,0,24,1,0,3406,4466.000000,39,0,65886.000000,1812.000000,extended,lora,180 +on11,0,0,24,1,0,18,4320.000000,39,0,2794.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3060,4320.000000,39,0,61819.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,40,0,10184.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3122,4362.000000,40,0,64307.000000,1770.400000,extended,lora,180 +on3,0,0,24,1,0,2069,4389.000000,40,0,43352.000000,1781.200000,extended,lora,180 +on2,0,0,24,1,0,604,4364.000000,40,0,12175.000000,1771.200000,extended,lora,180 +on7,0,0,24,1,0,1308,4348.000000,40,0,26137.000000,1764.800000,extended,lora,180 +on10,0,0,24,1,0,151,4451.000000,40,0,397.000000,1806.000000,extended,lora,180 +on11,0,0,24,1,0,1620,4320.000000,40,0,32925.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,40,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,2184,4324.000000,40,0,46606.000000,1755.200000,extended,lora,180 +on0,1,11,24,0,0,0,4636.000000,40,0,-1.000000,2136.000000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,40,0,572.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1440,4320.000000,40,0,30914.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,788,4368.000000,40,0,17452.000000,1772.800000,extended,lora,180 +on5,0,0,24,1,0,3240,4320.000000,41,0,67641.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,41,0,35374.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1559,4419.000000,41,0,30495.000000,1793.200000,extended,lora,180 +on1,0,0,24,1,0,176,4476.000000,41,0,1459.000000,1816.000000,extended,lora,180 +on9,0,0,24,1,0,619,4379.000000,41,0,14548.000000,1777.200000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,41,0,25039.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,117,4417.000000,41,0,1299.000000,1792.400000,extended,lora,180 +on0,1,10,24,0,0,0,5039.000000,41,0,-1.000000,2271.600000,extended,lora,180 +on4,0,0,24,1,0,851,4431.000000,41,0,14708.000000,1798.000000,extended,lora,180 +on2,0,0,24,1,0,450,4390.000000,41,0,7787.000000,1781.600000,extended,lora,180 +on3,0,0,24,1,0,385,4325.000000,41,0,7627.000000,1755.600000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,42,0,17396.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,1620,4320.000000,42,0,34818.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,extended,lora,180 +on0,1,9,24,0,0,0,4638.000000,42,0,-1.000000,2085.600000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,42,0,60972.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1351,4391.000000,42,0,28233.000000,1782.000000,extended,lora,180 +on10,0,0,24,1,0,1351,4391.000000,42,0,28073.000000,1782.000000,extended,lora,180 +on12,0,0,24,1,0,1440,4320.000000,42,0,31225.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1870,4370.000000,42,0,36768.000000,1773.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,42,0,380.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,219,4339.000000,42,0,6124.000000,1761.200000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,1082,4320.000000,43,0,24757.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2340,4320.000000,43,0,46984.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,900,4320.000000,43,0,20073.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,38,4338.000000,43,0,271.000000,1760.800000,extended,lora,180 +on6,0,0,24,1,0,3060,4320.000000,43,0,64558.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,43,0,16143.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2525,4320.000000,43,0,53493.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1980,4320.000000,43,0,41037.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2340,4320.000000,43,0,50320.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,527,4467.000000,43,0,9126.000000,1812.400000,extended,lora,180 +on5,0,0,24,1,0,703,4463.000000,43,0,11497.000000,1810.800000,extended,lora,180 +on0,1,11,24,0,0,0,4823.000000,43,0,-1.000000,2210.800000,extended,lora,180 +on0,1,8,24,0,0,0,4338.000000,44,0,-1.000000,1940.000000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,44,0,4529.000000,1753.600000,extended,lora,180 +on2,0,0,23,1,0,1260,4225.000000,44,0,28701.000000,1715.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,3240,4320.000000,44,0,67813.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,975,4375.000000,44,0,20921.000000,1775.600000,extended,lora,180 +on9,0,0,24,1,0,1620,4320.000000,44,0,32614.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1416,4456.000000,44,0,28963.000000,1808.000000,extended,lora,180 +on12,0,0,24,1,0,22,4322.000000,44,0,1698.000000,1754.400000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1853,4353.000000,44,0,38721.000000,1766.800000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,45,0,20145.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,45,0,11287.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1108,4328.000000,45,0,21926.000000,1756.800000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,extended,lora,180 +on0,1,11,24,0,0,0,4827.000000,45,0,-1.000000,2212.400000,extended,lora,180 +on2,0,0,24,1,0,1080,4320.000000,45,0,21766.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2061,4381.000000,45,0,42515.000000,1778.000000,extended,lora,180 +on10,0,0,24,1,0,1355,4395.000000,45,0,28766.000000,1783.600000,extended,lora,180 +on9,0,0,24,1,0,205,4325.000000,45,0,4854.000000,1755.600000,extended,lora,180 +on8,0,0,24,1,0,172,4472.000000,45,0,1714.000000,1814.400000,extended,lora,180 +on5,0,0,24,1,0,1396,4436.000000,45,0,28606.000000,1800.000000,extended,lora,180 +on7,0,0,24,1,0,2592,4372.000000,45,0,53771.000000,1774.400000,extended,lora,180 +on3,0,0,24,1,0,1825,4325.000000,45,0,37752.000000,1755.600000,extended,lora,180 +on0,1,11,24,0,0,0,5017.000000,46,0,-1.000000,2288.400000,extended,lora,180 +on8,0,0,24,1,0,3385,4445.000000,46,0,65137.000000,1803.600000,extended,lora,180 +on5,0,0,24,1,0,2160,4320.000000,46,0,44131.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,207,4327.000000,46,0,6488.000000,1756.400000,extended,lora,180 +on6,0,0,24,1,0,3600,4320.000000,46,0,74858.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3420,4320.000000,46,0,70396.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,3960,4320.000000,46,0,79559.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,46,0,18429.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2896,4320.000000,46,0,60612.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,71,4371.000000,46,0,2843.000000,1774.000000,extended,lora,180 +on4,0,0,24,1,0,1080,4320.000000,46,0,22123.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3021,4441.000000,46,0,60772.000000,1802.000000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,47,0,7560.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,47,0,2717.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1508,4368.000000,47,0,30076.000000,1772.800000,extended,lora,180 +on4,0,0,24,1,0,846,4426.000000,47,0,16112.000000,1796.000000,extended,lora,180 +on12,0,0,24,1,0,1800,4320.000000,47,0,37965.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,966,4366.000000,47,0,21602.000000,1772.000000,extended,lora,180 +on11,0,0,24,1,0,1749,4429.000000,47,0,34825.000000,1797.200000,extended,lora,180 +on8,0,0,24,1,0,1049,4449.000000,47,0,21762.000000,1805.200000,extended,lora,180 +on0,1,12,24,0,0,0,5030.000000,47,0,-1.000000,2319.200000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,47,0,24223.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2929,4349.000000,47,0,60134.000000,1765.200000,extended,lora,180 +on10,0,0,24,1,0,2371,4331.000000,47,0,50034.000000,1758.000000,extended,lora,180 +on7,0,0,24,1,0,1701,4381.000000,47,0,34985.000000,1778.000000,extended,lora,180 +on2,0,0,23,1,0,479,4364.000000,48,0,7555.000000,1771.200000,extended,lora,180 +on0,1,11,24,0,0,0,4860.000000,48,0,-1.000000,2225.600000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,48,0,2136.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,48,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,327,4447.000000,48,0,4311.000000,1804.400000,extended,lora,180 +on9,0,0,24,1,0,720,4320.000000,48,0,16096.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,48,0,26765.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,294,4414.000000,48,0,4151.000000,1791.200000,extended,lora,180 +on5,0,0,24,1,0,548,4320.000000,48,0,12844.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1620,4320.000000,48,0,34866.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2129,4449.000000,48,0,42903.000000,1805.200000,extended,lora,180 +on10,0,0,24,1,0,2832,4432.000000,48,0,56850.000000,1798.400000,extended,lora,180 +on1,0,0,24,1,0,589,4349.000000,48,0,13004.000000,1765.200000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,804,4384.000000,49,0,15582.000000,1779.200000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,3806,4326.000000,49,0,77645.000000,1756.000000,extended,lora,180 +on0,1,7,24,0,0,0,4614.000000,49,0,-1.000000,2024.800000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,49,0,20932.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,89,4389.000000,49,0,2518.000000,1781.200000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,49,0,4408.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,49,0,23800.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3060,4320.000000,49,0,64641.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2820,4420.000000,50,0,56355.000000,1793.600000,extended,lora,180 +on0,1,12,24,0,0,0,5025.000000,50,0,-1.000000,2317.200000,extended,lora,180 +on2,0,0,24,1,0,24,4324.000000,50,0,3774.000000,1755.200000,extended,lora,180 +on3,0,0,24,1,0,1537,4397.000000,50,0,29156.000000,1784.400000,extended,lora,180 +on6,0,0,24,1,0,17,4320.000000,50,0,1187.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1944,4444.000000,50,0,37723.000000,1803.200000,extended,lora,180 +on5,0,0,24,1,0,2862,4462.000000,50,0,56195.000000,1810.400000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,50,0,21082.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1440,4320.000000,50,0,28996.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,45,4345.000000,50,0,1027.000000,1763.600000,extended,lora,180 +on8,0,0,24,1,0,262,4382.000000,50,0,3934.000000,1778.400000,extended,lora,180 +on7,0,0,24,1,0,3337,4397.000000,50,0,66337.000000,1784.400000,extended,lora,180 +on11,0,0,24,1,0,360,4320.000000,50,0,9324.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1620,4320.000000,51,0,35345.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,51,0,12833.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4588.000000,51,0,-1.000000,2116.800000,extended,lora,180 +on6,0,0,24,1,0,2037,4357.000000,51,0,42428.000000,1768.400000,extended,lora,180 +on9,0,0,24,1,0,2092,4412.000000,51,0,42588.000000,1790.400000,extended,lora,180 +on8,0,0,24,1,0,1557,4417.000000,51,0,29311.000000,1792.400000,extended,lora,180 +on11,0,0,24,1,0,506,4446.000000,51,0,8845.000000,1804.000000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,51,0,20330.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1078,4478.000000,51,0,21839.000000,1816.800000,extended,lora,180 +on12,0,0,24,1,0,852,4432.000000,51,0,14956.000000,1798.400000,extended,lora,180 +on10,0,0,24,1,0,289,4409.000000,51,0,5217.000000,1789.200000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,51,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,61,4361.000000,51,0,3296.000000,1770.000000,extended,lora,180 +on8,0,0,24,1,0,1080,4320.000000,52,0,23539.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,52,0,1783.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1405,4445.000000,52,0,29098.000000,1803.600000,extended,lora,180 +on3,0,0,24,1,0,293,4413.000000,52,0,4986.000000,1790.800000,extended,lora,180 +on10,0,0,24,1,0,609,4369.000000,52,0,14221.000000,1773.200000,extended,lora,180 +on12,0,0,24,1,0,1071,4471.000000,52,0,19891.000000,1814.000000,extended,lora,180 +on0,1,12,24,0,0,0,4625.000000,52,0,-1.000000,2157.200000,extended,lora,180 +on2,0,0,24,1,0,3553,4433.000000,52,0,70990.000000,1798.800000,extended,lora,180 +on5,0,0,24,1,0,246,4366.000000,52,0,5146.000000,1772.000000,extended,lora,180 +on11,0,0,24,1,0,777,4357.000000,52,0,15016.000000,1768.400000,extended,lora,180 +on4,0,0,24,1,0,1980,4320.000000,52,0,42028.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2700,4320.000000,52,0,55437.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,461,4401.000000,52,0,8887.000000,1786.000000,extended,lora,180 +on12,0,0,24,1,0,196,4320.000000,53,0,5301.000000,1753.600000,extended,lora,180 +on10,0,0,23,1,0,540,4279.000000,53,0,12189.000000,1737.200000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,53,0,10592.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,53,0,27401.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,293,4413.000000,53,0,5141.000000,1790.800000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,53,0,15738.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1800,4320.000000,53,0,38022.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2520,4320.000000,53,0,51596.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2228,4368.000000,53,0,44502.000000,1772.800000,extended,lora,180 +on8,0,0,24,1,0,2142,4462.000000,53,0,42659.000000,1810.400000,extended,lora,180 +on0,1,11,24,0,0,0,4990.000000,53,0,-1.000000,2277.600000,extended,lora,180 +on1,0,0,24,1,0,845,4425.000000,53,0,15898.000000,1795.600000,extended,lora,180 +on12,0,0,24,1,0,3989,4329.000000,54,0,80630.000000,1757.200000,extended,lora,180 +on6,0,0,24,1,0,0,4320.000000,54,0,1152.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1553,4413.000000,54,0,32177.000000,1790.800000,extended,lora,180 +on5,0,0,24,1,0,1297,4337.000000,54,0,28923.000000,1760.400000,extended,lora,180 +on3,0,0,24,1,0,2160,4320.000000,54,0,45818.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,3060,4320.000000,54,0,61566.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1157,4377.000000,54,0,25106.000000,1776.400000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,54,0,32338.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1121,4341.000000,54,0,25266.000000,1762.000000,extended,lora,180 +on0,1,11,24,0,0,0,4615.000000,54,0,-1.000000,2127.600000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,54,0,49012.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2766,4366.000000,54,0,56054.000000,1772.000000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,55,0,42319.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3240,4320.000000,55,0,66928.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1996,4320.000000,55,0,42479.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1121,4341.000000,55,0,24341.000000,1762.000000,extended,lora,180 +on5,0,0,23,1,0,164,4409.000000,55,0,3350.000000,1789.200000,extended,lora,180 +on8,0,0,24,1,0,580,4340.000000,55,0,14364.000000,1761.600000,extended,lora,180 +on1,0,0,24,1,0,600,4360.000000,55,0,14204.000000,1769.600000,extended,lora,180 +on12,0,0,24,1,0,1462,4322.000000,55,0,31014.000000,1754.400000,extended,lora,180 +on6,0,0,24,1,0,1620,4320.000000,55,0,33178.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2340,4320.000000,55,0,48591.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4751.000000,55,0,-1.000000,2156.400000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,180,4320.000000,56,0,4569.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1525,4385.000000,56,0,30468.000000,1779.600000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,56,0,1349.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,437,4377.000000,56,0,8106.000000,1776.400000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,2803,4403.000000,56,0,55895.000000,1786.800000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,lora,180 +on0,1,8,24,0,0,0,4670.000000,56,0,-1.000000,2072.800000,extended,lora,180 +on12,0,0,24,1,0,652,4412.000000,56,0,12765.000000,1790.400000,extended,lora,180 +on2,0,0,24,1,0,1800,4320.000000,56,0,37021.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1032,4432.000000,56,0,21019.000000,1798.400000,extended,lora,180 +on3,0,0,23,1,0,1080,4281.000000,57,0,25342.000000,1738.000000,extended,lora,180 +on0,1,10,24,0,0,0,5017.000000,57,0,-1.000000,2262.800000,extended,lora,180 +on10,0,0,24,1,0,1339,4379.000000,57,0,25938.000000,1777.200000,extended,lora,180 +on6,0,0,24,1,0,2520,4320.000000,57,0,51279.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1395,4435.000000,57,0,26098.000000,1799.600000,extended,lora,180 +on12,0,0,24,1,0,615,4375.000000,57,0,11269.000000,1775.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,457,4397.000000,57,0,10304.000000,1784.400000,extended,lora,180 +on9,0,0,24,1,0,3316,4376.000000,57,0,68616.000000,1776.000000,extended,lora,180 +on11,0,0,24,1,0,551,4320.000000,57,0,11429.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,1650,4330.000000,57,0,35282.000000,1757.600000,extended,lora,180 +on2,0,0,24,1,0,1705,4385.000000,57,0,35442.000000,1779.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,175,4475.000000,58,0,3560.000000,1815.600000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,58,0,19416.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,58,0,12086.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,9,4320.000000,58,0,3400.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,1209,4429.000000,58,0,22796.000000,1797.200000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,58,0,34771.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,extended,lora,180 +on0,1,9,24,0,0,0,4881.000000,58,0,-1.000000,2182.800000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,58,0,50680.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1919,4419.000000,58,0,36488.000000,1793.200000,extended,lora,180 +on6,0,0,24,1,0,425,4365.000000,58,0,9056.000000,1771.600000,extended,lora,180 +on8,0,0,24,1,0,139,4439.000000,59,0,698.000000,1801.200000,extended,lora,180 +on3,0,0,24,1,0,2501,4461.000000,59,0,47596.000000,1810.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,59,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1039,4439.000000,59,0,19080.000000,1801.200000,extended,lora,180 +on4,0,0,24,1,0,1977,4477.000000,59,0,36679.000000,1816.400000,extended,lora,180 +on0,1,10,24,0,0,0,4589.000000,59,0,-1.000000,2091.600000,extended,lora,180 +on2,0,0,24,1,0,1505,4365.000000,59,0,31642.000000,1771.600000,extended,lora,180 +on12,0,0,24,1,0,2593,4373.000000,59,0,51291.000000,1774.800000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,59,0,9456.000000,1753.600000,extended,lora,180 +on11,0,0,23,1,0,1620,4278.000000,59,0,35672.000000,1736.800000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,59,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,79,4379.000000,59,0,538.000000,1777.200000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,59,0,17260.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3240,4320.000000,60,0,66755.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,60,0,9534.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3991,4331.000000,60,0,82435.000000,1758.000000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,60,0,15695.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,238,4358.000000,60,0,4709.000000,1768.800000,extended,lora,180 +on2,0,0,24,1,0,3420,4320.000000,60,0,69345.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,60,0,3582.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,60,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,60,0,14171.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,4137,4477.000000,60,0,82275.000000,1816.400000,extended,lora,180 +on0,1,11,24,0,0,0,5008.000000,60,0,-1.000000,2284.800000,extended,lora,180 +on5,0,0,24,1,0,197,4320.000000,60,0,4869.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2686,4466.000000,60,0,52359.000000,1812.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1455,4320.000000,61,0,32495.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,61,0,7719.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1448,4320.000000,61,0,32335.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,268,4388.000000,61,0,6952.000000,1780.800000,extended,lora,180 +on4,0,0,23,1,0,2636,4416.000000,61,0,52398.000000,1792.000000,extended,lora,180 +on8,0,0,24,1,0,1980,4320.000000,61,0,43271.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2700,4320.000000,61,0,54240.000000,1753.600000,extended,lora,180 +on9,0,0,23,1,0,331,4382.000000,61,0,7112.000000,1778.400000,extended,lora,180 +on0,1,10,24,0,0,0,4884.000000,61,0,-1.000000,2209.600000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,61,0,3297.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,61,0,26570.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,62,0,18026.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2751,4351.000000,62,0,56862.000000,1766.000000,extended,lora,180 +on5,0,0,24,1,0,1440,4320.000000,62,0,30333.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3344,4404.000000,62,0,66026.000000,1787.200000,extended,lora,180 +on9,0,0,24,1,0,4183,4343.000000,62,0,84946.000000,1762.800000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,62,0,21695.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4923.000000,62,0,-1.000000,2250.800000,extended,lora,180 +on1,0,0,24,1,0,1771,4451.000000,62,0,32931.000000,1806.000000,extended,lora,180 +on4,0,0,24,1,0,195,4320.000000,62,0,4275.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,62,0,51877.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,525,4465.000000,62,0,8221.000000,1811.600000,extended,lora,180 +on12,0,0,24,1,0,405,4345.000000,62,0,8381.000000,1763.600000,extended,lora,180 +on12,0,0,24,1,0,3105,4345.000000,63,0,61801.000000,1763.600000,extended,lora,180 +on3,0,0,24,1,0,3068,4320.000000,63,0,61961.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3447,4327.000000,63,0,70195.000000,1756.400000,extended,lora,180 +on7,0,0,24,1,0,99,4399.000000,63,0,547.000000,1785.200000,extended,lora,180 +on8,0,0,24,1,0,1661,4341.000000,63,0,34400.000000,1762.000000,extended,lora,180 +on2,0,0,24,1,0,893,4473.000000,63,0,15002.000000,1814.800000,extended,lora,180 +on0,1,12,24,0,0,0,4640.000000,63,0,-1.000000,2163.200000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,63,0,23669.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,497,4437.000000,63,0,7536.000000,1800.400000,extended,lora,180 +on4,0,0,24,1,0,1980,4320.000000,63,0,42254.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,63,0,27673.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,63,0,11623.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1917,4417.000000,63,0,36691.000000,1792.400000,extended,lora,180 +on0,1,11,24,0,0,0,4698.000000,64,0,-1.000000,2160.800000,extended,lora,180 +on12,0,0,24,1,0,566,4326.000000,64,0,14319.000000,1756.000000,extended,lora,180 +on8,0,0,24,1,0,750,4330.000000,64,0,14639.000000,1757.600000,extended,lora,180 +on3,0,0,24,1,0,3420,4320.000000,64,0,69110.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1064,4464.000000,64,0,19818.000000,1811.200000,extended,lora,180 +on4,0,0,24,1,0,653,4413.000000,64,0,14479.000000,1790.800000,extended,lora,180 +on9,0,0,24,1,0,3060,4320.000000,64,0,61448.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,2076,4396.000000,64,0,43271.000000,1784.000000,extended,lora,180 +on6,0,0,24,1,0,2160,4320.000000,64,0,43443.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1198,4418.000000,64,0,23222.000000,1792.800000,extended,lora,180 +on11,0,0,24,1,0,1623,4320.000000,64,0,34917.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3870,4390.000000,64,0,77434.000000,1781.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,65,0,53373.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,900,4320.000000,65,0,19864.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,1696,4376.000000,65,0,36086.000000,1776.000000,extended,lora,180 +on7,0,0,24,1,0,183,4320.000000,65,0,6528.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4595.000000,65,0,-1.000000,2068.400000,extended,lora,180 +on11,0,0,24,1,0,581,4341.000000,65,0,14263.000000,1762.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,822,4402.000000,65,0,17393.000000,1786.400000,extended,lora,180 +on6,0,0,24,1,0,3600,4320.000000,65,0,74132.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1182,4402.000000,65,0,24534.000000,1786.400000,extended,lora,180 +on12,0,0,24,1,0,1581,4441.000000,65,0,31695.000000,1802.000000,extended,lora,180 +on7,0,0,24,1,0,886,4466.000000,66,0,15559.000000,1812.000000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,66,0,6790.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,837,4417.000000,66,0,15719.000000,1792.400000,extended,lora,180 +on12,0,0,24,1,0,1241,4461.000000,66,0,22255.000000,1810.000000,extended,lora,180 +on2,0,0,24,1,0,678,4438.000000,66,0,14396.000000,1800.800000,extended,lora,180 +on1,0,0,24,1,0,67,4367.000000,66,0,1077.000000,1772.400000,extended,lora,180 +on5,0,0,24,1,0,94,4394.000000,66,0,1237.000000,1783.200000,extended,lora,180 +on3,0,0,24,1,0,4015,4355.000000,66,0,82472.000000,1767.600000,extended,lora,180 +on4,0,0,24,1,0,360,4320.000000,66,0,7824.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4893.000000,66,0,-1.000000,2264.400000,extended,lora,180 +on8,0,0,24,1,0,3625,4325.000000,66,0,75143.000000,1755.600000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,66,0,27813.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,595,4355.000000,66,0,14556.000000,1767.600000,extended,lora,180 +on7,0,0,24,1,0,1003,4403.000000,67,0,20190.000000,1786.800000,extended,lora,180 +on8,0,0,24,1,0,1980,4320.000000,67,0,42920.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,43,4343.000000,67,0,2956.000000,1762.800000,extended,lora,180 +on5,0,0,24,1,0,2880,4320.000000,67,0,58748.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2411,4371.000000,67,0,47037.000000,1774.000000,extended,lora,180 +on0,1,10,24,0,0,0,4721.000000,67,0,-1.000000,2144.400000,extended,lora,180 +on6,0,0,24,1,0,1037,4437.000000,67,0,20350.000000,1800.400000,extended,lora,180 +on1,0,0,24,1,0,152,4452.000000,67,0,3116.000000,1806.400000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,67,0,6170.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,23,1,0,1620,4275.000000,67,0,33237.000000,1735.600000,extended,lora,180 +on2,0,0,24,1,0,407,4347.000000,67,0,9825.000000,1764.400000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,68,0,1179.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1460,4320.000000,68,0,32397.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1980,4320.000000,68,0,40521.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,68,0,20300.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1800,4320.000000,68,0,37219.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3780,4320.000000,68,0,78149.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,84,4384.000000,68,0,1339.000000,1779.200000,extended,lora,180 +on0,1,12,24,0,0,0,5144.000000,68,0,-1.000000,2364.800000,extended,lora,180 +on11,0,0,24,1,0,1110,4330.000000,68,0,22286.000000,1757.600000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,68,0,8912.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3366,4426.000000,68,0,67719.000000,1796.000000,extended,lora,180 +on8,0,0,24,1,0,180,4320.000000,68,0,6009.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1530,4390.000000,68,0,32557.000000,1781.600000,extended,lora,180 +on12,0,0,24,1,0,1289,4329.000000,69,0,28545.000000,1757.200000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,69,0,13279.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,304,4424.000000,69,0,4960.000000,1795.200000,extended,lora,180 +on11,0,0,24,1,0,919,4320.000000,69,0,19553.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4777.000000,69,0,-1.000000,2141.200000,extended,lora,180 +on8,0,0,24,1,0,2660,4440.000000,69,0,51793.000000,1801.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,720,4320.000000,69,0,18133.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3240,4320.000000,69,0,65636.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1311,4351.000000,69,0,28385.000000,1766.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,969,4369.000000,69,0,19713.000000,1773.200000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,70,0,33929.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,907,4320.000000,70,0,18544.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1980,4320.000000,70,0,42535.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,70,0,26662.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3996,4336.000000,70,0,81752.000000,1760.000000,extended,lora,180 +on10,0,0,24,1,0,56,4356.000000,70,0,373.000000,1768.000000,extended,lora,180 +on5,0,0,24,1,0,3584,4464.000000,70,0,69060.000000,1811.200000,extended,lora,180 +on0,1,11,24,0,0,0,4610.000000,70,0,-1.000000,2125.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,70,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,2347,4320.000000,70,0,47188.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,847,4427.000000,70,0,16544.000000,1796.400000,extended,lora,180 +on4,0,0,24,1,0,971,4371.000000,70,0,18704.000000,1774.000000,extended,lora,180 +on7,0,0,24,1,0,35,4335.000000,70,0,213.000000,1759.600000,extended,lora,180 +on10,0,0,24,1,0,2340,4320.000000,71,0,50403.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,573,4333.000000,71,0,13428.000000,1758.800000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,71,0,7796.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,71,0,6291.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,71,0,32237.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,71,0,2924.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4808.000000,71,0,-1.000000,2153.600000,extended,lora,180 +on3,0,0,24,1,0,1620,4320.000000,71,0,35332.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,782,4362.000000,71,0,16881.000000,1770.400000,extended,lora,180 +on4,0,0,24,1,0,3060,4320.000000,71,0,62612.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2094,4414.000000,72,0,41243.000000,1791.200000,extended,lora,180 +on9,0,0,24,1,0,1571,4431.000000,72,0,30261.000000,1798.000000,extended,lora,180 +on4,0,0,24,1,0,1397,4437.000000,72,0,28179.000000,1800.400000,extended,lora,180 +on7,0,0,24,1,0,1771,4451.000000,72,0,34797.000000,1806.000000,extended,lora,180 +on5,0,0,24,1,0,640,4400.000000,72,0,13205.000000,1785.600000,extended,lora,180 +on1,0,0,24,1,0,28,4328.000000,72,0,1833.000000,1756.800000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,170,4470.000000,72,0,1673.000000,1813.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1105,4325.000000,72,0,23723.000000,1755.600000,extended,lora,180 +on3,0,0,24,1,0,2340,4320.000000,72,0,47789.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1800,4320.000000,72,0,36279.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4500.000000,72,0,-1.000000,2056.000000,extended,lora,180 +on5,0,0,24,1,0,1800,4320.000000,73,0,37932.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,121,4421.000000,73,0,1159.000000,1794.000000,extended,lora,180 +on10,0,0,24,1,0,414,4354.000000,73,0,8848.000000,1767.200000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,73,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,2654,4434.000000,73,0,52369.000000,1799.200000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,73,0,21692.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1440,4320.000000,73,0,32247.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5185.000000,73,0,-1.000000,2355.600000,extended,lora,180 +on9,0,0,24,1,0,146,4446.000000,73,0,999.000000,1804.000000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,73,0,15631.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3009,4429.000000,73,0,60799.000000,1797.200000,extended,lora,180 +on7,0,0,24,1,0,3060,4320.000000,73,0,63484.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1260,4320.000000,73,0,25546.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,176,4476.000000,74,0,1256.000000,1816.000000,extended,lora,180 +on1,0,0,24,1,0,700,4460.000000,74,0,13258.000000,1809.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4902.000000,74,0,-1.000000,2216.800000,extended,lora,180 +on2,0,0,24,1,0,89,4389.000000,74,0,1096.000000,1781.200000,extended,lora,180 +on5,0,0,24,1,0,522,4462.000000,74,0,10507.000000,1810.400000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,74,0,19899.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,427,4367.000000,74,0,10667.000000,1772.400000,extended,lora,180 +on3,0,0,24,1,0,2880,4320.000000,74,0,58427.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1080,4320.000000,74,0,23361.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3600,4320.000000,74,0,74166.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1181,4401.000000,74,0,23521.000000,1786.000000,extended,lora,180 +on5,0,0,24,1,0,249,4369.000000,75,0,4685.000000,1773.200000,extended,lora,180 +on7,0,0,23,1,0,2092,4365.000000,75,0,41614.000000,1771.600000,extended,lora,180 +on10,0,0,24,1,0,3010,4430.000000,75,0,60283.000000,1797.600000,extended,lora,180 +on4,0,0,24,1,0,2001,4321.000000,75,0,41774.000000,1754.000000,extended,lora,180 +on12,0,0,24,1,0,493,4433.000000,75,0,9457.000000,1798.800000,extended,lora,180 +on3,0,0,24,1,0,1026,4426.000000,75,0,19037.000000,1796.000000,extended,lora,180 +on2,0,0,24,1,0,3960,4320.000000,75,0,81894.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2350,4320.000000,75,0,47763.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1017,4417.000000,75,0,19197.000000,1792.400000,extended,lora,180 +on8,0,0,24,1,0,3600,4320.000000,75,0,73181.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,480,4420.000000,75,0,9617.000000,1793.600000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,75,0,39197.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4945.000000,75,0,-1.000000,2285.200000,extended,lora,180 +on6,0,0,24,1,0,604,4364.000000,76,0,12244.000000,1771.200000,extended,lora,180 +on11,0,0,23,1,0,205,4284.000000,76,0,4326.000000,1739.200000,extended,lora,180 +on12,0,0,24,1,0,360,4320.000000,76,0,7836.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2520,4320.000000,76,0,51564.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3928,4448.000000,76,0,76369.000000,1804.800000,extended,lora,180 +on10,0,0,24,1,0,2438,4398.000000,76,0,50362.000000,1784.800000,extended,lora,180 +on1,0,0,24,1,0,1027,4427.000000,76,0,18893.000000,1796.400000,extended,lora,180 +on9,0,0,24,1,0,1654,4334.000000,76,0,35295.000000,1759.200000,extended,lora,180 +on0,1,12,24,0,0,0,4862.000000,76,0,-1.000000,2252.000000,extended,lora,180 +on5,0,0,24,1,0,274,4394.000000,76,0,4486.000000,1783.200000,extended,lora,180 +on8,0,0,24,1,0,1981,4320.000000,76,0,40483.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,469,4409.000000,76,0,7659.000000,1789.200000,extended,lora,180 +on7,0,0,24,1,0,2143,4463.000000,76,0,40643.000000,1810.800000,extended,lora,180 +on2,0,0,24,1,0,1214,4434.000000,77,0,22786.000000,1799.200000,extended,lora,180 +on7,0,0,24,1,0,168,4468.000000,77,0,3248.000000,1812.800000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,77,0,5522.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2293,4433.000000,77,0,43631.000000,1798.800000,extended,lora,180 +on3,0,0,24,1,0,2340,4320.000000,77,0,49396.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,445,4385.000000,77,0,9803.000000,1779.600000,extended,lora,180 +on4,0,0,24,1,0,2520,4320.000000,77,0,52536.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3780,4320.000000,77,0,78128.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,77,0,30824.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2164,4320.000000,77,0,43791.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,168,4468.000000,77,0,3088.000000,1812.800000,extended,lora,180 +on0,1,12,24,0,0,0,5198.000000,77,0,-1.000000,2386.400000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,77,0,13441.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,78,0,45951.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2713,4320.000000,78,0,57535.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1510,4370.000000,78,0,31610.000000,1773.600000,extended,lora,180 +on5,0,0,24,1,0,55,4355.000000,78,0,2092.000000,1767.600000,extended,lora,180 +on2,0,0,23,1,0,3804,4324.000000,78,0,76052.000000,1755.200000,extended,lora,180 +on7,0,0,24,1,0,1600,4460.000000,78,0,31450.000000,1809.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,154,4454.000000,78,0,1932.000000,1807.200000,extended,lora,180 +on3,0,0,24,1,0,1827,4327.000000,78,0,37717.000000,1756.400000,extended,lora,180 +on9,0,0,24,1,0,979,4379.000000,78,0,18584.000000,1777.200000,extended,lora,180 +on6,0,0,24,1,0,3024,4444.000000,78,0,59930.000000,1803.200000,extended,lora,180 +on0,1,10,24,0,0,0,4658.000000,78,0,-1.000000,2119.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,463,4403.000000,79,0,7967.000000,1786.800000,extended,lora,180 +on5,0,0,24,1,0,2520,4320.000000,79,0,52632.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,516,4456.000000,79,0,7807.000000,1808.000000,extended,lora,180 +on10,0,0,24,1,0,2164,4320.000000,79,0,45805.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1949,4449.000000,79,0,38086.000000,1805.200000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,79,0,13949.000000,1753.600000,extended,lora,180 +on11,0,0,23,1,0,1620,4302.000000,79,0,32940.000000,1746.400000,extended,lora,180 +on2,0,0,24,1,0,3600,4320.000000,79,0,73195.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1173,4393.000000,79,0,23828.000000,1782.800000,extended,lora,180 +on7,0,0,24,1,0,3240,4320.000000,79,0,66554.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4879.000000,79,0,-1.000000,2207.600000,extended,lora,180 +on12,0,0,24,1,0,1143,4363.000000,80,0,22296.000000,1770.800000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,80,0,19250.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1254,4474.000000,80,0,22136.000000,1815.200000,extended,lora,180 +on11,0,0,24,1,0,793,4373.000000,80,0,16276.000000,1774.800000,extended,lora,180 +on0,1,12,24,0,0,0,4643.000000,80,0,-1.000000,2164.400000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,80,0,11794.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,82,4382.000000,80,0,969.000000,1778.400000,extended,lora,180 +on5,0,0,24,1,0,1682,4362.000000,80,0,34830.000000,1770.400000,extended,lora,180 +on1,0,0,24,1,0,2959,4379.000000,80,0,61055.000000,1777.200000,extended,lora,180 +on3,0,0,24,1,0,392,4332.000000,80,0,10875.000000,1758.400000,extended,lora,180 +on4,0,0,24,1,0,1328,4368.000000,80,0,27425.000000,1772.800000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,80,0,37141.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1440,4320.000000,80,0,32326.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,910,4320.000000,81,0,19951.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1705,4385.000000,81,0,34678.000000,1779.600000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,81,0,12038.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1830,4330.000000,81,0,36353.000000,1757.600000,extended,lora,180 +on8,0,0,24,1,0,394,4334.000000,81,0,9832.000000,1759.200000,extended,lora,180 +on5,0,0,24,1,0,831,4411.000000,81,0,16868.000000,1790.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,305,4425.000000,81,0,6313.000000,1795.600000,extended,lora,180 +on11,0,0,23,1,0,1371,4243.000000,81,0,25966.000000,1722.800000,extended,lora,180 +on9,0,0,24,1,0,1102,4322.000000,81,0,22299.000000,1754.400000,extended,lora,180 +on3,0,0,24,1,0,1724,4404.000000,81,0,34518.000000,1787.200000,extended,lora,180 +on0,1,11,24,0,0,0,4616.000000,81,0,-1.000000,2128.000000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,81,0,3069.000000,1753.600000,extended,lora,180 +on10,0,0,23,0,0,4271,4271.000000,82,0,-1.000000,1708.400000,extended,lora,180 +on7,0,0,24,1,0,3019,4439.000000,82,0,59247.000000,1801.200000,extended,lora,180 +on11,0,0,24,1,0,3960,4320.000000,82,0,79370.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,82,0,13257.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,82,0,23128.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,763,4343.000000,82,0,17528.000000,1762.800000,extended,lora,180 +on1,0,0,24,1,0,2025,4345.000000,82,0,41173.000000,1763.600000,extended,lora,180 +on4,0,0,24,1,0,1620,4320.000000,82,0,33695.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,438,4378.000000,82,0,7763.000000,1776.800000,extended,lora,180 +on8,0,0,24,1,0,1333,4373.000000,82,0,25701.000000,1774.800000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,82,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4839.000000,82,0,-1.000000,2191.600000,extended,lora,180 +on2,0,0,24,1,0,755,4335.000000,82,0,17368.000000,1759.600000,extended,lora,180 +on6,0,0,24,1,0,204,4324.000000,83,0,5361.000000,1755.200000,extended,lora,180 +on1,0,0,24,1,0,996,4396.000000,83,0,21593.000000,1784.000000,extended,lora,180 +on7,0,0,24,1,0,3240,4320.000000,83,0,66093.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2160,4320.000000,83,0,45649.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,606,4366.000000,83,0,12900.000000,1772.000000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,83,0,35615.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,18,4320.000000,83,0,3329.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2094,4414.000000,83,0,42637.000000,1791.200000,extended,lora,180 +on0,1,10,24,0,0,0,4578.000000,83,0,-1.000000,2087.200000,extended,lora,180 +on2,0,0,24,1,0,52,4352.000000,83,0,3489.000000,1766.400000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,83,0,8646.000000,1753.600000,extended,lora,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,84,0,15257.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2700,4320.000000,84,0,56413.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,921,4321.000000,84,0,21413.000000,1754.000000,extended,lora,180 +on2,0,0,24,1,0,940,4340.000000,84,0,21253.000000,1761.600000,extended,lora,180 +on12,0,0,24,1,0,1227,4447.000000,84,0,24346.000000,1804.400000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,1282,4322.000000,84,0,28509.000000,1754.400000,extended,lora,180 +on4,0,0,24,1,0,2340,4320.000000,84,0,49218.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,84,0,5152.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4949.000000,84,0,-1.000000,2261.200000,extended,lora,180 +on9,0,0,24,1,0,1440,4320.000000,84,0,32311.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1133,4353.000000,84,0,24506.000000,1766.800000,extended,lora,180 +on3,0,0,24,1,0,3240,4320.000000,84,0,65639.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1341,4381.000000,85,0,28567.000000,1778.000000,extended,lora,180 +on2,0,0,24,1,0,1275,4320.000000,85,0,28727.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1676,4356.000000,85,0,35915.000000,1768.000000,extended,lora,180 +on8,0,0,24,1,0,1989,4320.000000,85,0,41411.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,849,4429.000000,85,0,17944.000000,1797.200000,extended,lora,180 +on12,0,0,24,1,0,3420,4320.000000,85,0,70850.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2700,4320.000000,85,0,55040.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,612,4372.000000,85,0,14482.000000,1774.400000,extended,lora,180 +on0,1,12,24,0,0,0,4913.000000,85,0,-1.000000,2272.400000,extended,lora,180 +on4,0,0,23,1,0,58,4302.000000,85,0,1196.000000,1746.400000,extended,lora,180 +on5,0,0,24,1,0,93,4393.000000,85,0,1036.000000,1782.800000,extended,lora,180 +on1,0,0,24,1,0,1440,4320.000000,85,0,30306.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2474,4434.000000,85,0,48296.000000,1799.200000,extended,lora,180 +on7,0,0,24,1,0,669,4429.000000,86,0,12138.000000,1797.200000,extended,lora,180 +on0,1,12,24,0,0,0,5041.000000,86,0,-1.000000,2323.600000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,86,0,40979.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1265,4320.000000,86,0,25812.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,805,4385.000000,86,0,15065.000000,1779.600000,extended,lora,180 +on1,0,0,24,1,0,70,4370.000000,86,0,646.000000,1773.600000,extended,lora,180 +on12,0,0,24,1,0,1230,4450.000000,86,0,22169.000000,1805.600000,extended,lora,180 +on10,0,0,24,1,0,2520,4320.000000,86,0,51812.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,251,4371.000000,86,0,4318.000000,1774.000000,extended,lora,180 +on6,0,0,24,1,0,11,4320.000000,86,0,806.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1352,4392.000000,86,0,25972.000000,1782.400000,extended,lora,180 +on3,0,0,24,1,0,261,4381.000000,86,0,4158.000000,1778.000000,extended,lora,180 +on11,0,0,24,1,0,1248,4468.000000,86,0,22329.000000,1812.800000,extended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,87,0,36190.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2124,4444.000000,87,0,40115.000000,1803.200000,extended,lora,180 +on4,0,0,24,1,0,459,4399.000000,87,0,8868.000000,1785.200000,extended,lora,180 +on0,1,12,24,0,0,0,5025.000000,87,0,-1.000000,2317.200000,extended,lora,180 +on8,0,0,24,1,0,2082,4402.000000,87,0,40275.000000,1786.400000,extended,lora,180 +on2,0,0,24,1,0,1004,4404.000000,87,0,19135.000000,1787.200000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,87,0,5605.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,922,4322.000000,87,0,18975.000000,1754.400000,extended,lora,180 +on3,0,0,24,1,0,2520,4320.000000,87,0,51554.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,58,4358.000000,87,0,757.000000,1768.800000,extended,lora,180 +on12,0,0,24,1,0,1204,4424.000000,87,0,24145.000000,1795.200000,extended,lora,180 +on9,0,0,24,1,0,3960,4320.000000,87,0,82145.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,87,0,14297.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1960,4460.000000,88,0,39525.000000,1809.600000,extended,lora,180 +on3,0,0,24,1,0,358,4478.000000,88,0,4568.000000,1816.800000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,88,0,3470.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4813.000000,88,0,-1.000000,2206.800000,extended,lora,180 +on9,0,0,24,1,0,2880,4320.000000,88,0,59355.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1099,4320.000000,88,0,21925.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,552,4320.000000,88,0,13525.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1236,4456.000000,88,0,22085.000000,1808.000000,extended,lora,180 +on6,0,0,23,1,0,643,4350.000000,88,0,13685.000000,1765.600000,extended,lora,180 +on1,0,0,24,1,0,4133,4473.000000,88,0,81917.000000,1814.800000,extended,lora,180 +on8,0,0,24,1,0,1440,4320.000000,88,0,29306.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,720,4320.000000,88,0,17959.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,482,4422.000000,89,0,7515.000000,1794.400000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,3537,4417.000000,89,0,70030.000000,1792.400000,extended,lora,180 +on11,0,0,24,1,0,2788,4388.000000,89,0,56378.000000,1780.800000,extended,lora,180 +on9,0,0,24,1,0,465,4405.000000,89,0,7675.000000,1787.600000,extended,lora,180 +on3,0,0,24,1,0,1980,4320.000000,89,0,39915.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2456,4416.000000,89,0,49804.000000,1792.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,155,4455.000000,89,0,1383.000000,1807.600000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,89,0,4017.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2880,4320.000000,89,0,61085.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4523.000000,89,0,-1.000000,2065.200000,extended,lora,180 +on5,0,0,24,1,0,698,4458.000000,89,0,12684.000000,1808.800000,extended,lora,180 +on9,0,0,24,1,0,1470,4330.000000,90,0,29527.000000,1757.600000,extended,lora,180 +on8,0,0,24,1,0,4140,4320.000000,90,0,82976.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,360,4320.000000,90,0,9882.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2324,4464.000000,90,0,44288.000000,1811.200000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,90,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,23,1,0,1736,4358.000000,90,0,32947.000000,1768.800000,extended,lora,180 +on7,0,0,24,1,0,140,4440.000000,90,0,302.000000,1801.600000,extended,lora,180 +on10,0,0,24,1,0,1657,4337.000000,90,0,33107.000000,1760.400000,extended,lora,180 +on3,0,0,23,1,0,2226,4323.000000,90,0,44448.000000,1754.800000,extended,lora,180 +on4,0,0,24,1,0,1080,4320.000000,90,0,25229.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5002.000000,90,0,-1.000000,2282.400000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,90,0,29705.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,900,4320.000000,90,0,21352.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,91,0,11394.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1210,4430.000000,91,0,23224.000000,1797.600000,extended,lora,180 +on11,0,0,24,1,0,3960,4320.000000,91,0,81897.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5092.000000,91,0,-1.000000,2318.400000,extended,lora,180 +on9,0,0,24,1,0,444,4384.000000,91,0,8043.000000,1779.200000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,91,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,3240,4320.000000,91,0,68163.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,91,0,17528.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3060,4320.000000,91,0,62147.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1980,4320.000000,91,0,42143.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,130,4430.000000,91,0,3042.000000,1797.600000,extended,lora,180 +on2,0,0,24,1,0,31,4331.000000,91,0,3202.000000,1758.000000,extended,lora,180 +on8,0,0,24,1,0,900,4320.000000,91,0,19098.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,92,0,3687.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,lora,180 +on0,1,7,24,0,0,0,4590.000000,92,0,-1.000000,2015.200000,extended,lora,180 +on11,0,0,24,1,0,360,4320.000000,92,0,9780.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,180,4320.000000,92,0,6157.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3060,4320.000000,92,0,62221.000000,1753.600000,extended,lora,180 +on4,0,0,23,1,0,1597,4365.000000,92,0,32700.000000,1771.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,3240,4320.000000,92,0,68263.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1027,4427.000000,92,0,18484.000000,1796.400000,extended,lora,180 +on1,0,0,24,1,0,1800,4320.000000,93,0,39402.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1055,4455.000000,93,0,18564.000000,1807.600000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,93,0,9294.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,884,4464.000000,93,0,15373.000000,1811.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,852,4432.000000,93,0,15213.000000,1798.400000,extended,lora,180 +on6,0,0,24,1,0,180,4320.000000,93,0,5752.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,395,4335.000000,93,0,9454.000000,1759.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,23,1,0,0,4276.000000,93,0,1663.000000,1736.000000,extended,lora,180 +on0,1,9,24,0,0,0,4704.000000,93,0,-1.000000,2112.000000,extended,lora,180 +on8,0,0,24,1,0,2921,4341.000000,93,0,60847.000000,1762.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,2340,4320.000000,94,0,49018.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,94,0,8682.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,132,4432.000000,94,0,1070.000000,1798.400000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,94,0,11417.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,94,0,19549.000000,1753.600000,extended,lora,180 +on4,0,0,23,1,0,846,4426.000000,94,0,16023.000000,1796.000000,extended,lora,180 +on0,1,10,24,0,0,0,4839.000000,94,0,-1.000000,2191.600000,extended,lora,180 +on3,0,0,23,1,0,312,4427.000000,94,0,4417.000000,1796.400000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,1260,4320.000000,94,0,28840.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2789,4389.000000,94,0,55638.000000,1781.200000,extended,lora,180 +on12,0,0,24,1,0,3240,4320.000000,94,0,66342.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,926,4326.000000,95,0,20321.000000,1756.000000,extended,lora,180 +on1,0,0,24,1,0,2942,4362.000000,95,0,59357.000000,1770.400000,extended,lora,180 +on5,0,0,24,1,0,1620,4320.000000,95,0,35813.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,302,4422.000000,95,0,5792.000000,1794.400000,extended,lora,180 +on0,1,10,24,0,0,0,4436.000000,95,0,-1.000000,2030.400000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,95,0,193.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,800,4380.000000,95,0,17310.000000,1777.600000,extended,lora,180 +on8,0,0,24,1,0,1080,4320.000000,95,0,22358.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2451,4411.000000,95,0,50067.000000,1790.000000,extended,lora,180 +on11,0,0,24,1,0,360,4320.000000,95,0,9676.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2560,4340.000000,95,0,52559.000000,1761.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,23,1,0,103,4399.000000,96,0,2663.000000,1785.200000,extended,lora,180 +on11,0,0,23,1,0,2926,4346.000000,96,0,59939.000000,1764.000000,extended,lora,180 +on2,0,0,24,1,0,1727,4407.000000,96,0,36201.000000,1788.400000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,96,0,16106.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,282,4402.000000,96,0,7062.000000,1786.400000,extended,lora,180 +on4,0,0,24,1,0,1881,4381.000000,96,0,36361.000000,1778.000000,extended,lora,180 +on7,0,0,24,1,0,427,4367.000000,96,0,10364.000000,1772.400000,extended,lora,180 +on6,0,0,24,1,0,1503,4363.000000,96,0,29857.000000,1770.800000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,96,0,2503.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4934.000000,96,0,-1.000000,2280.800000,extended,lora,180 +on3,0,0,24,1,0,3240,4320.000000,96,0,67369.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2440,4400.000000,96,0,47410.000000,1785.600000,extended,lora,180 +on1,0,0,24,1,0,222,4342.000000,96,0,7222.000000,1762.400000,extended,lora,180 +on3,0,0,24,1,0,285,4405.000000,97,0,5820.000000,1787.600000,extended,lora,180 +on6,0,0,24,1,0,2098,4418.000000,97,0,42241.000000,1792.800000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,97,0,28739.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,778,4358.000000,97,0,17979.000000,1768.800000,extended,lora,180 +on8,0,0,24,1,0,745,4325.000000,97,0,18139.000000,1755.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,282,4402.000000,97,0,5980.000000,1786.400000,extended,lora,180 +on0,1,10,24,0,0,0,4889.000000,97,0,-1.000000,2211.600000,extended,lora,180 +on7,0,0,24,1,0,56,4356.000000,97,0,2294.000000,1768.000000,extended,lora,180 +on10,0,0,24,1,0,1247,4467.000000,97,0,23400.000000,1812.400000,extended,lora,180 +on12,0,0,24,1,0,1113,4333.000000,97,0,23560.000000,1758.800000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,97,0,2463.000000,1753.600000,extended,lora,180 +on4,0,0,23,1,0,720,4201.000000,98,0,17068.000000,1706.000000,extended,lora,180 +on9,0,0,24,1,0,3240,4320.000000,98,0,68495.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,98,0,41866.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1180,4400.000000,98,0,25146.000000,1785.600000,extended,lora,180 +on5,0,0,24,1,0,497,4437.000000,98,0,10238.000000,1800.400000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,98,0,11824.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3060,4320.000000,98,0,62486.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1331,4371.000000,98,0,28111.000000,1774.000000,extended,lora,180 +on8,0,0,24,1,0,2340,4320.000000,98,0,47418.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,98,0,35642.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,5296.000000,98,0,-1.000000,2425.600000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,98,0,2814.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1345,4385.000000,98,0,27951.000000,1779.600000,extended,lora,180 +on1,0,0,24,1,0,156,4456.000000,99,0,1122.000000,1808.000000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,99,0,962.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,203,4323.000000,99,0,5310.000000,1754.800000,extended,lora,180 +on2,0,0,24,1,0,1149,4369.000000,99,0,25006.000000,1773.200000,extended,lora,180 +on6,0,0,24,1,0,3060,4320.000000,99,0,62076.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,99,0,13132.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,99,0,17161.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1980,4320.000000,99,0,42237.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,255,4375.000000,99,0,5470.000000,1775.600000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,99,0,25180.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,extended,lora,180 +on0,1,11,24,0,0,0,4945.000000,99,0,-1.000000,2259.600000,extended,lora,180 +on9,0,0,24,1,0,1847,4347.000000,99,0,39342.000000,1764.400000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,2156,4476.000000,100,0,43255.000000,1816.000000,extended,lora,180 +on2,0,0,24,1,0,127,4427.000000,100,0,791.000000,1796.400000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,100,0,37797.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2700,4320.000000,100,0,55257.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4620.000000,100,0,-1.000000,2129.600000,extended,lora,180 +on6,0,0,24,1,0,3902,4422.000000,100,0,77986.000000,1794.400000,extended,lora,180 +on4,0,0,24,1,0,3047,4467.000000,100,0,58075.000000,1812.400000,extended,lora,180 +on11,0,0,24,1,0,555,4320.000000,100,0,12932.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2340,4320.000000,100,0,48156.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1439,4479.000000,100,0,28965.000000,1817.200000,extended,lora,180 +on3,0,0,24,1,0,369,4320.000000,100,0,8955.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,100,0,27872.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3780,4320.000000,101,0,77903.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2801,4401.000000,101,0,55055.000000,1786.000000,extended,lora,180 +on0,1,12,24,0,0,0,5086.000000,101,0,-1.000000,2341.600000,extended,lora,180 +on7,0,0,24,1,0,3155,4395.000000,101,0,64644.000000,1783.600000,extended,lora,180 +on3,0,0,24,1,0,73,4373.000000,101,0,3147.000000,1774.800000,extended,lora,180 +on9,0,0,24,1,0,360,4320.000000,101,0,7573.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,49,4349.000000,101,0,3307.000000,1765.200000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,101,0,13050.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,101,0,26679.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3058,4478.000000,101,0,61227.000000,1816.800000,extended,lora,180 +on5,0,0,24,1,0,1980,4320.000000,101,0,40056.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,263,4383.000000,101,0,7407.000000,1778.800000,extended,lora,180 +on2,0,0,24,1,0,2160,4320.000000,101,0,45586.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3341,4401.000000,102,0,66419.000000,1786.000000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,102,0,16557.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2614,4394.000000,102,0,51681.000000,1783.200000,extended,lora,180 +on4,0,0,24,1,0,3240,4320.000000,102,0,66582.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,2880,4320.000000,102,0,61319.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2554,4334.000000,102,0,51521.000000,1759.200000,extended,lora,180 +on2,0,0,24,1,0,2296,4436.000000,102,0,46152.000000,1800.000000,extended,lora,180 +on1,0,0,24,1,0,1980,4320.000000,102,0,42544.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,464,4404.000000,102,0,8458.000000,1787.200000,extended,lora,180 +on0,1,11,24,0,0,0,5049.000000,102,0,-1.000000,2301.200000,extended,lora,180 +on11,0,0,24,1,0,2340,4320.000000,102,0,48981.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3802,4322.000000,102,0,76903.000000,1754.400000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,2080,4400.000000,103,0,41256.000000,1785.600000,extended,lora,180 +on1,0,0,24,1,0,2168,4320.000000,103,0,46924.000000,1753.600000,extended,lora,180 +on5,0,0,23,1,0,529,4428.000000,103,0,10114.000000,1796.800000,extended,lora,180 +on2,0,0,24,1,0,3223,4463.000000,103,0,64497.000000,1810.800000,extended,lora,180 +on4,0,0,24,1,0,2520,4320.000000,103,0,52797.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4674.000000,103,0,-1.000000,2125.600000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,103,0,15765.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,900,4320.000000,103,0,19924.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1800,4320.000000,103,0,38802.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,103,0,26522.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,404,4344.000000,103,0,10274.000000,1763.200000,extended,lora,180 +on5,0,0,24,1,0,1837,4337.000000,104,0,38035.000000,1760.400000,extended,lora,180 +on3,0,0,24,1,0,1127,4347.000000,104,0,24705.000000,1764.400000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,extended,lora,180 +on0,1,11,24,0,0,0,4963.000000,104,0,-1.000000,2266.800000,extended,lora,180 +on8,0,0,24,1,0,742,4322.000000,104,0,15460.000000,1754.400000,extended,lora,180 +on12,0,0,24,1,0,2520,4320.000000,104,0,51021.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1961,4461.000000,104,0,37875.000000,1810.000000,extended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,104,0,31845.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,339,4459.000000,104,0,5696.000000,1809.200000,extended,lora,180 +on2,0,0,24,1,0,595,4355.000000,104,0,12512.000000,1767.600000,extended,lora,180 +on11,0,0,24,1,0,3027,4447.000000,104,0,60870.000000,1804.400000,extended,lora,180 +on1,0,0,24,1,0,1099,4320.000000,104,0,24865.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,104,0,2075.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1980,4320.000000,105,0,42107.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,252,4372.000000,105,0,6410.000000,1774.400000,extended,lora,180 +on6,0,0,24,1,0,1413,4453.000000,105,0,28956.000000,1806.800000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,105,0,12782.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,197,4320.000000,105,0,6570.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4894.000000,105,0,-1.000000,2213.600000,extended,lora,180 +on10,0,0,24,1,0,4140,4320.000000,105,0,85035.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1816,4320.000000,105,0,38221.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,105,0,1947.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1977,4477.000000,105,0,38061.000000,1816.400000,extended,lora,180 +on11,0,0,24,1,0,1080,4320.000000,105,0,22434.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3142,4382.000000,106,0,63081.000000,1778.400000,extended,lora,180 +on5,0,0,24,1,0,2340,4320.000000,106,0,49312.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,106,0,11617.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2340,4320.000000,106,0,47087.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,106,0,38932.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,825,4405.000000,106,0,16940.000000,1787.600000,extended,lora,180 +on2,0,0,24,1,0,35,4335.000000,106,0,3367.000000,1759.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,106,0,18429.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,206,4326.000000,106,0,5697.000000,1756.000000,extended,lora,180 +on10,0,0,24,1,0,2139,4459.000000,106,0,41552.000000,1809.200000,extended,lora,180 +on0,1,10,24,0,0,0,4670.000000,106,0,-1.000000,2124.000000,extended,lora,180 +on1,0,0,24,1,0,1027,4427.000000,107,0,18775.000000,1796.400000,extended,lora,180 +on0,1,9,24,0,0,0,4676.000000,107,0,-1.000000,2100.800000,extended,lora,180 +on8,0,0,24,1,0,1068,4468.000000,107,0,18615.000000,1812.800000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,180,4320.000000,107,0,4693.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,107,0,24262.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1743,4423.000000,107,0,34444.000000,1794.800000,extended,lora,180 +on7,0,0,24,1,0,3991,4331.000000,107,0,79877.000000,1758.000000,extended,lora,180 +on3,0,0,24,1,0,484,4424.000000,107,0,9044.000000,1795.200000,extended,lora,180 +on9,0,0,24,1,0,3847,4367.000000,107,0,78595.000000,1772.400000,extended,lora,180 +on4,0,0,24,1,0,2261,4401.000000,107,0,43637.000000,1786.000000,extended,lora,180 +on7,0,0,24,1,0,1375,4415.000000,108,0,26213.000000,1791.600000,extended,lora,180 +on6,0,0,24,1,0,243,4363.000000,108,0,6502.000000,1770.800000,extended,lora,180 +on4,0,0,24,1,0,231,4351.000000,108,0,6662.000000,1766.000000,extended,lora,180 +on2,0,0,24,1,0,1620,4320.000000,108,0,35612.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1546,4406.000000,108,0,31150.000000,1788.000000,extended,lora,180 +on1,0,0,23,1,0,900,4300.000000,108,0,19268.000000,1745.600000,extended,lora,180 +on3,0,0,24,1,0,1360,4400.000000,108,0,26053.000000,1785.600000,extended,lora,180 +on12,0,0,24,1,0,540,4320.000000,108,0,14253.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,899,4479.000000,108,0,15595.000000,1817.200000,extended,lora,180 +on0,1,12,24,0,0,0,4924.000000,108,0,-1.000000,2276.800000,extended,lora,180 +on10,0,0,24,1,0,384,4324.000000,108,0,10065.000000,1755.200000,extended,lora,180 +on9,0,0,24,1,0,2212,4352.000000,108,0,45913.000000,1766.400000,extended,lora,180 +on8,0,0,24,1,0,1086,4320.000000,108,0,24713.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,935,4335.000000,109,0,20282.000000,1759.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1910,4410.000000,109,0,38785.000000,1789.600000,extended,lora,180 +on2,0,0,24,1,0,101,4401.000000,109,0,965.000000,1786.000000,extended,lora,180 +on0,1,9,24,0,0,0,4633.000000,109,0,-1.000000,2083.600000,extended,lora,180 +on6,0,0,24,1,0,2311,4451.000000,109,0,44518.000000,1806.000000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,109,0,7050.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1885,4385.000000,109,0,38945.000000,1779.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,614,4374.000000,109,0,12102.000000,1775.200000,extended,lora,180 +on3,0,0,24,1,0,360,4320.000000,109,0,8474.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,599,4359.000000,109,0,11942.000000,1769.200000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,lora,180 +on0,1,8,24,0,0,0,4651.000000,110,0,-1.000000,2065.200000,extended,lora,180 +on11,0,0,24,1,0,539,4479.000000,110,0,9777.000000,1817.200000,extended,lora,180 +on6,0,0,24,1,0,3378,4438.000000,110,0,68236.000000,1800.800000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,1316,4356.000000,110,0,26631.000000,1768.000000,extended,lora,180 +on3,0,0,24,1,0,27,4327.000000,110,0,2405.000000,1756.400000,extended,lora,180 +on10,0,0,24,1,0,332,4452.000000,110,0,6284.000000,1806.400000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,110,0,19127.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,110,0,47990.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,342,4462.000000,110,0,6444.000000,1810.400000,extended,lora,180 +on0,1,10,24,0,0,0,4712.000000,111,0,-1.000000,2140.800000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,111,0,30275.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3047,4467.000000,111,0,60385.000000,1812.400000,extended,lora,180 +on10,0,0,24,1,0,1120,4340.000000,111,0,24368.000000,1761.600000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,111,0,47756.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,459,4399.000000,111,0,7645.000000,1785.200000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,3092,4332.000000,111,0,62831.000000,1758.400000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1260,4320.000000,111,0,27571.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3046,4466.000000,111,0,60545.000000,1812.000000,extended,lora,180 +on7,0,0,24,1,0,2110,4430.000000,111,0,41500.000000,1797.600000,extended,lora,180 +on12,0,0,24,1,0,1919,4419.000000,111,0,38124.000000,1793.200000,extended,lora,180 +on2,0,0,24,1,0,2064,4384.000000,112,0,40042.000000,1779.200000,extended,lora,180 +on0,1,8,24,0,0,0,4497.000000,112,0,-1.000000,2003.600000,extended,lora,180 +on11,0,0,24,1,0,2051,4371.000000,112,0,40202.000000,1774.000000,extended,lora,180 +on9,0,0,24,1,0,37,4337.000000,112,0,1416.000000,1760.400000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,2483,4443.000000,112,0,48410.000000,1802.800000,extended,lora,180 +on1,0,0,24,1,0,1328,4368.000000,112,0,26844.000000,1772.800000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,1779,4459.000000,112,0,33017.000000,1809.200000,extended,lora,180 +on5,0,0,24,1,0,3042,4462.000000,112,0,60154.000000,1810.400000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,112,0,19115.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,3600,4320.000000,113,0,74002.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1620,4320.000000,113,0,34186.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2700,4320.000000,113,0,57487.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1800,4320.000000,113,0,38279.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,677,4437.000000,113,0,11419.000000,1800.400000,extended,lora,180 +on12,0,0,24,1,0,60,4360.000000,113,0,598.000000,1769.600000,extended,lora,180 +on6,0,0,24,1,0,784,4364.000000,113,0,14822.000000,1771.200000,extended,lora,180 +on0,1,12,24,0,0,0,4844.000000,113,0,-1.000000,2244.800000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,113,0,20595.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2348,4320.000000,113,0,50166.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2055,4375.000000,113,0,41523.000000,1775.600000,extended,lora,180 +on7,0,0,24,1,0,2233,4373.000000,113,0,43743.000000,1774.800000,extended,lora,180 +on11,0,0,24,1,0,3197,4437.000000,113,0,63111.000000,1800.400000,extended,lora,180 +on2,0,0,24,1,0,3204,4444.000000,114,0,64453.000000,1803.200000,extended,lora,180 +on5,0,0,24,1,0,645,4405.000000,114,0,12861.000000,1787.600000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,114,0,6608.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3189,4429.000000,114,0,64613.000000,1797.200000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,114,0,22406.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,87,4387.000000,114,0,1188.000000,1780.400000,extended,lora,180 +on12,0,0,24,1,0,1980,4320.000000,114,0,41734.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1959,4459.000000,114,0,39590.000000,1809.200000,extended,lora,180 +on10,0,0,24,1,0,892,4472.000000,114,0,17748.000000,1814.400000,extended,lora,180 +on3,0,0,24,1,0,360,4320.000000,114,0,10084.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1440,4320.000000,114,0,32306.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4843.000000,114,0,-1.000000,2244.400000,extended,lora,180 +on4,0,0,24,1,0,2160,4320.000000,114,0,46771.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3600,4320.000000,115,0,72352.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1409,4449.000000,115,0,26357.000000,1805.200000,extended,lora,180 +on0,1,11,24,0,0,0,4665.000000,115,0,-1.000000,2147.600000,extended,lora,180 +on10,0,0,24,1,0,1491,4351.000000,115,0,31724.000000,1766.000000,extended,lora,180 +on12,0,0,24,1,0,3555,4435.000000,115,0,72190.000000,1799.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,2735,4335.000000,115,0,57649.000000,1759.600000,extended,lora,180 +on8,0,0,24,1,0,3162,4402.000000,115,0,64753.000000,1786.400000,extended,lora,180 +on11,0,0,24,1,0,0,4320.000000,115,0,3363.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,115,0,13832.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,720,4320.000000,115,0,16346.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1627,4320.000000,115,0,32582.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,543,4320.000000,115,0,13992.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,643,4403.000000,116,0,13251.000000,1786.800000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,1080,4320.000000,116,0,22259.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4945.000000,116,0,-1.000000,2259.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,116,0,7177.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,884,4464.000000,116,0,18285.000000,1811.200000,extended,lora,180 +on11,0,0,24,1,0,1807,4320.000000,116,0,39501.000000,1753.600000,extended,lora,180 +on6,0,0,23,1,0,68,4296.000000,116,0,334.000000,1744.000000,extended,lora,180 +on3,0,0,24,1,0,720,4320.000000,116,0,16458.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3303,4363.000000,116,0,67216.000000,1770.800000,extended,lora,180 +on12,0,0,24,1,0,990,4390.000000,116,0,18445.000000,1781.600000,extended,lora,180 +on7,0,0,24,1,0,463,4403.000000,116,0,10191.000000,1786.800000,extended,lora,180 +on9,0,0,24,1,0,49,4349.000000,116,0,494.000000,1765.200000,extended,lora,180 +on8,0,0,24,1,0,84,4384.000000,117,0,3394.000000,1779.200000,extended,lora,180 +on11,0,0,24,1,0,704,4464.000000,117,0,13404.000000,1811.200000,extended,lora,180 +on5,0,0,24,1,0,1260,4320.000000,117,0,26053.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3170,4410.000000,117,0,62706.000000,1789.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,117,0,4235.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1594,4454.000000,117,0,32234.000000,1807.200000,extended,lora,180 +on1,0,0,24,1,0,3129,4369.000000,117,0,62866.000000,1773.200000,extended,lora,180 +on0,1,10,24,0,0,0,4917.000000,117,0,-1.000000,2222.800000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,1620,4320.000000,117,0,34344.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,117,0,19170.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2700,4320.000000,117,0,55669.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,4131,4471.000000,118,0,82278.000000,1814.000000,extended,lora,180 +on6,0,0,24,1,0,3612,4320.000000,118,0,73923.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,118,0,6763.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,118,0,3170.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3967,4320.000000,118,0,82118.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,118,0,31657.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,118,0,12198.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,4174,4334.000000,118,0,86137.000000,1759.200000,extended,lora,180 +on0,1,11,24,0,0,0,4805.000000,118,0,-1.000000,2203.600000,extended,lora,180 +on5,0,0,24,1,0,720,4320.000000,118,0,17520.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,118,0,35640.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,267,4387.000000,118,0,6602.000000,1780.400000,extended,lora,180 +on4,0,0,24,1,0,962,4362.000000,119,0,18222.000000,1770.400000,extended,lora,180 +on8,0,0,23,1,0,827,4357.000000,119,0,15534.000000,1768.400000,extended,lora,180 +on2,0,0,24,1,0,1005,4405.000000,119,0,18382.000000,1787.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,119,0,23405.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,611,4371.000000,119,0,12368.000000,1774.000000,extended,lora,180 +on6,0,0,24,1,0,39,4339.000000,119,0,2491.000000,1761.200000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,119,0,9676.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4670.000000,119,0,-1.000000,2149.600000,extended,lora,180 +on11,0,0,24,1,0,3600,4320.000000,119,0,75677.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,254,4374.000000,119,0,5265.000000,1775.200000,extended,lora,180 +on3,0,0,24,1,0,1260,4320.000000,119,0,28884.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2384,4344.000000,119,0,47442.000000,1763.200000,extended,lora,180 +on2,0,0,24,1,0,2160,4320.000000,120,0,45234.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,360,4320.000000,120,0,10174.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,286,4406.000000,120,0,7113.000000,1788.000000,extended,lora,180 +on5,0,0,24,1,0,215,4335.000000,120,0,7273.000000,1759.600000,extended,lora,180 +on8,0,0,24,1,0,2118,4438.000000,120,0,43159.000000,1800.800000,extended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,120,0,32043.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,601,4361.000000,120,0,13691.000000,1770.000000,extended,lora,180 +on3,0,0,24,1,0,1260,4320.000000,120,0,28285.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,85,4385.000000,120,0,1575.000000,1779.600000,extended,lora,180 +on6,0,0,24,1,0,2340,4320.000000,120,0,49169.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2880,4320.000000,120,0,60928.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,51,4351.000000,120,0,1415.000000,1766.000000,extended,lora,180 +on0,1,12,24,0,0,0,4892.000000,120,0,-1.000000,2264.000000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,121,0,16662.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,121,0,28615.000000,1753.600000,extended,lora,180 +on12,0,0,22,1,0,900,4256.000000,121,0,19873.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1231,4451.000000,121,0,23778.000000,1806.000000,extended,lora,180 +on2,0,0,24,1,0,1754,4434.000000,121,0,33715.000000,1799.200000,extended,lora,180 +on3,0,0,24,1,0,1980,4320.000000,121,0,39851.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2220,4360.000000,121,0,47009.000000,1769.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,0,4320.000000,121,0,2465.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3960,4320.000000,121,0,80411.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2516,4476.000000,121,0,47169.000000,1816.000000,extended,lora,180 +on0,1,11,24,0,0,0,4987.000000,121,0,-1.000000,2276.400000,extended,lora,180 +on4,0,0,24,1,0,3600,4320.000000,121,0,72761.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,2520,4320.000000,122,0,52893.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,122,0,33762.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4742.000000,122,0,-1.000000,2127.200000,extended,lora,180 +on7,0,0,24,1,0,4140,4320.000000,122,0,83936.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,137,4437.000000,122,0,1151.000000,1800.400000,extended,lora,180 +on1,0,0,24,1,0,3060,4320.000000,122,0,63509.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,363,4320.000000,122,0,8358.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,360,4320.000000,122,0,8198.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2777,4377.000000,122,0,54618.000000,1776.400000,extended,lora,180 +on6,0,0,24,1,0,898,4478.000000,122,0,15056.000000,1816.800000,extended,lora,180 +on8,0,0,24,1,0,344,4464.000000,123,0,6254.000000,1811.200000,extended,lora,180 +on11,0,0,24,1,0,2520,4320.000000,123,0,52042.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,0,4320.000000,123,0,629.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,918,4320.000000,123,0,20999.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,867,4447.000000,123,0,16391.000000,1804.400000,extended,lora,180 +on1,0,0,24,1,0,3060,4320.000000,123,0,61461.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,845,4425.000000,123,0,16551.000000,1795.600000,extended,lora,180 +on5,0,0,24,1,0,2355,4320.000000,123,0,48152.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3930,4450.000000,123,0,76217.000000,1805.600000,extended,lora,180 +on4,0,0,24,1,0,1495,4355.000000,123,0,30158.000000,1767.600000,extended,lora,180 +on10,0,0,24,1,0,1271,4320.000000,123,0,26934.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4696.000000,123,0,-1.000000,2160.000000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,124,0,11841.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,360,4320.000000,124,0,10854.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,124,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,1726,4406.000000,124,0,33705.000000,1788.000000,extended,lora,180 +on5,0,0,24,1,0,1800,4320.000000,124,0,37213.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2787,4387.000000,124,0,55916.000000,1780.400000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,124,0,5768.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1643,4323.000000,124,0,33545.000000,1754.800000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,124,0,3207.000000,1753.600000,extended,lora,180 +on3,0,0,23,1,0,840,4260.000000,124,0,19715.000000,1729.600000,extended,lora,180 +on7,0,0,24,1,0,2867,4467.000000,124,0,57815.000000,1812.400000,extended,lora,180 +on0,1,11,24,0,0,0,4738.000000,124,0,-1.000000,2176.800000,extended,lora,180 +on4,0,0,23,1,0,2040,4360.000000,124,0,40632.000000,1769.600000,extended,lora,180 +on6,0,0,24,1,0,32,4332.000000,125,0,1301.000000,1758.400000,extended,lora,180 +on2,0,0,24,1,0,1758,4438.000000,125,0,35645.000000,1800.800000,extended,lora,180 +on8,0,0,24,1,0,1080,4320.000000,125,0,23954.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3220,4460.000000,125,0,62408.000000,1809.600000,extended,lora,180 +on3,0,0,24,1,0,720,4320.000000,125,0,14972.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,73,4373.000000,125,0,1461.000000,1774.800000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,701,4461.000000,125,0,14006.000000,1810.000000,extended,lora,180 +on1,0,0,24,1,0,345,4465.000000,125,0,6025.000000,1811.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1758,4438.000000,125,0,35485.000000,1800.800000,extended,lora,180 +on4,0,0,24,1,0,360,4320.000000,125,0,9709.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4833.000000,125,0,-1.000000,2189.200000,extended,lora,180 +on12,0,0,24,1,0,3378,4438.000000,126,0,67618.000000,1800.800000,extended,lora,180 +on9,0,0,24,1,0,787,4367.000000,126,0,16622.000000,1772.400000,extended,lora,180 +on11,0,0,24,1,0,2359,4320.000000,126,0,48438.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1756,4436.000000,126,0,35462.000000,1800.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,126,0,11707.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4476.000000,126,0,-1.000000,2020.800000,extended,lora,180 +on6,0,0,24,1,0,853,4433.000000,126,0,16462.000000,1798.800000,extended,lora,180 +on2,0,0,24,1,0,927,4327.000000,126,0,19265.000000,1756.400000,extended,lora,180 +on3,0,0,24,1,0,370,4320.000000,126,0,8597.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1980,4320.000000,126,0,43107.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,127,0,1534.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5063.000000,127,0,-1.000000,2306.800000,extended,lora,180 +on9,0,0,24,1,0,984,4384.000000,127,0,19884.000000,1779.200000,extended,lora,180 +on12,0,0,24,1,0,1980,4320.000000,127,0,40826.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1131,4351.000000,127,0,22101.000000,1766.000000,extended,lora,180 +on11,0,0,24,1,0,673,4433.000000,127,0,14440.000000,1798.800000,extended,lora,180 +on10,0,0,24,1,0,111,4411.000000,127,0,1694.000000,1790.000000,extended,lora,180 +on2,0,0,24,1,0,1215,4435.000000,127,0,22261.000000,1799.600000,extended,lora,180 +on1,0,0,24,1,0,935,4335.000000,127,0,20044.000000,1759.600000,extended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,127,0,29153.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,127,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,2700,4320.000000,127,0,56928.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,774,4354.000000,127,0,15558.000000,1767.200000,extended,lora,180 +on1,0,0,24,1,0,3780,4320.000000,128,0,76245.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,435,4375.000000,128,0,8578.000000,1775.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,0,4320.000000,128,0,1562.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1404,4444.000000,128,0,27337.000000,1803.200000,extended,lora,180 +on8,0,0,24,1,0,1572,4432.000000,128,0,29487.000000,1798.400000,extended,lora,180 +on5,0,0,24,1,0,2258,4398.000000,128,0,46963.000000,1784.800000,extended,lora,180 +on4,0,0,24,1,0,853,4433.000000,128,0,15308.000000,1798.800000,extended,lora,180 +on9,0,0,24,1,0,1744,4424.000000,128,0,34878.000000,1795.200000,extended,lora,180 +on10,0,0,24,1,0,460,4400.000000,128,0,8738.000000,1785.600000,extended,lora,180 +on2,0,0,24,1,0,903,4320.000000,128,0,19641.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1917,4417.000000,128,0,39153.000000,1792.400000,extended,lora,180 +on0,1,11,24,0,0,0,4624.000000,128,0,-1.000000,2131.200000,extended,lora,180 +on1,0,0,24,1,0,756,4336.000000,129,0,18169.000000,1760.000000,extended,lora,180 +on0,1,11,24,0,0,0,4775.000000,129,0,-1.000000,2191.600000,extended,lora,180 +on4,0,0,24,1,0,2032,4352.000000,129,0,41308.000000,1766.400000,extended,lora,180 +on7,0,0,24,1,0,2340,4320.000000,129,0,48121.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1434,4474.000000,129,0,27388.000000,1815.200000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,129,0,17190.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,69,4369.000000,129,0,2657.000000,1773.200000,extended,lora,180 +on3,0,0,24,1,0,313,4433.000000,129,0,5744.000000,1798.800000,extended,lora,180 +on10,0,0,24,1,0,16,4320.000000,129,0,2497.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,129,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,129,0,35619.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1001,4401.000000,129,0,18329.000000,1786.000000,extended,lora,180 +on9,0,0,24,1,0,2160,4320.000000,129,0,45448.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2340,4320.000000,130,0,47618.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,130,0,22017.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,325,4445.000000,130,0,7240.000000,1803.600000,extended,lora,180 +on9,0,0,24,1,0,922,4322.000000,130,0,18609.000000,1754.400000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,130,0,1859.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,365,4320.000000,130,0,7400.000000,1753.600000,extended,lora,180 +on10,0,0,23,1,0,540,4278.000000,130,0,14277.000000,1736.800000,extended,lora,180 +on4,0,0,24,1,0,1575,4435.000000,130,0,30734.000000,1799.600000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,130,0,33562.000000,1753.600000,extended,lora,180 +on5,0,0,23,1,0,419,4330.000000,130,0,8951.000000,1757.600000,extended,lora,180 +on0,1,12,24,0,0,0,4769.000000,130,0,-1.000000,2214.800000,extended,lora,180 +on1,0,0,24,1,0,1439,4479.000000,130,0,26687.000000,1817.200000,extended,lora,180 +on2,0,0,24,1,0,2073,4393.000000,130,0,40645.000000,1782.800000,extended,lora,180 +on4,0,0,24,1,0,514,4454.000000,131,0,8268.000000,1807.200000,extended,lora,180 +on7,0,0,24,1,0,1620,4320.000000,131,0,34704.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,256,4376.000000,131,0,6997.000000,1776.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,131,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,719,4479.000000,131,0,14199.000000,1817.200000,extended,lora,180 +on5,0,0,24,1,0,1412,4452.000000,131,0,26227.000000,1806.400000,extended,lora,180 +on11,0,0,24,1,0,2160,4320.000000,131,0,44344.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2520,4320.000000,131,0,53942.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,303,4423.000000,131,0,6837.000000,1794.800000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,131,0,24429.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4677.000000,131,0,-1.000000,2152.400000,extended,lora,180 +on2,0,0,24,1,0,2771,4371.000000,131,0,54713.000000,1774.000000,extended,lora,180 +on10,0,0,24,1,0,615,4375.000000,131,0,14359.000000,1775.600000,extended,lora,180 +on0,1,11,24,0,0,0,4914.000000,132,0,-1.000000,2247.200000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,132,0,1944.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1297,4337.000000,132,0,28512.000000,1760.400000,extended,lora,180 +on9,0,0,24,1,0,757,4337.000000,132,0,16990.000000,1760.400000,extended,lora,180 +on11,0,0,24,1,0,1339,4379.000000,132,0,28352.000000,1777.200000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,132,0,5731.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3060,4320.000000,132,0,64236.000000,1753.600000,extended,lora,180 +on12,0,0,23,0,0,4248,4248.000000,132,0,-1.000000,1699.200000,extended,lora,180 +on6,0,0,24,1,0,627,4387.000000,132,0,13082.000000,1780.400000,extended,lora,180 +on10,0,0,23,1,0,399,4243.000000,132,0,9345.000000,1722.800000,extended,lora,180 +on1,0,0,24,1,0,423,4363.000000,132,0,9505.000000,1770.800000,extended,lora,180 +on3,0,0,24,1,0,770,4350.000000,132,0,17150.000000,1765.600000,extended,lora,180 +on8,0,0,24,1,0,2700,4320.000000,132,0,56089.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,58,4358.000000,133,0,978.000000,1768.800000,extended,lora,180 +on10,0,0,24,1,0,264,4384.000000,133,0,6215.000000,1779.200000,extended,lora,180 +on5,0,0,24,1,0,123,4423.000000,133,0,1138.000000,1794.800000,extended,lora,180 +on8,0,0,24,1,0,1778,4458.000000,133,0,35834.000000,1808.800000,extended,lora,180 +on7,0,0,24,1,0,360,4320.000000,133,0,7543.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1260,4320.000000,133,0,26874.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,133,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1904,4404.000000,133,0,36622.000000,1787.200000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,133,0,15163.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4605.000000,133,0,-1.000000,2098.000000,extended,lora,180 +on9,0,0,24,1,0,2545,4325.000000,133,0,53770.000000,1755.600000,extended,lora,180 +on12,0,0,24,1,0,2406,4366.000000,133,0,50329.000000,1772.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,133,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,3883,4403.000000,134,0,78396.000000,1786.800000,extended,lora,180 +on1,0,0,24,1,0,1816,4320.000000,134,0,36700.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,134,0,3834.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,134,0,15356.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1341,4381.000000,134,0,27453.000000,1778.000000,extended,lora,180 +on9,0,0,24,1,0,2030,4350.000000,134,0,41938.000000,1765.600000,extended,lora,180 +on5,0,0,24,1,0,1080,4320.000000,134,0,24001.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3269,4329.000000,134,0,68401.000000,1757.200000,extended,lora,180 +on12,0,0,24,1,0,180,4320.000000,134,0,4756.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,134,0,44705.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,134,0,36540.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4751.000000,134,0,-1.000000,2182.000000,extended,lora,180 +on12,0,0,23,1,0,45,4286.000000,135,0,3729.000000,1740.000000,extended,lora,180 +on0,1,11,24,0,0,0,4734.000000,135,0,-1.000000,2175.200000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,135,0,14599.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3058,4478.000000,135,0,59322.000000,1816.800000,extended,lora,180 +on3,0,0,24,1,0,900,4320.000000,135,0,20560.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,3060,4320.000000,135,0,61956.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1735,4415.000000,135,0,33046.000000,1791.600000,extended,lora,180 +on7,0,0,24,1,0,448,4388.000000,135,0,10919.000000,1780.800000,extended,lora,180 +on10,0,0,24,1,0,2089,4409.000000,135,0,40333.000000,1789.200000,extended,lora,180 +on1,0,0,24,1,0,2160,4320.000000,135,0,45366.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,303,4423.000000,135,0,5521.000000,1794.800000,extended,lora,180 +on9,0,0,24,1,0,821,4401.000000,135,0,14759.000000,1786.000000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,136,0,1590.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,503,4443.000000,136,0,9363.000000,1802.800000,extended,lora,180 +on2,0,0,24,1,0,352,4472.000000,136,0,7360.000000,1814.400000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,136,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,136,0,14679.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2336,4476.000000,136,0,44610.000000,1816.000000,extended,lora,180 +on3,0,0,24,1,0,2128,4448.000000,136,0,40184.000000,1804.800000,extended,lora,180 +on12,0,0,24,1,0,1849,4349.000000,136,0,37063.000000,1765.200000,extended,lora,180 +on1,0,0,23,1,0,366,4306.000000,136,0,7520.000000,1748.000000,extended,lora,180 +on4,0,0,24,1,0,2161,4320.000000,136,0,44770.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,136,0,23073.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,4278,4438.000000,136,0,86084.000000,1800.800000,extended,lora,180 +on0,1,11,24,0,0,0,4701.000000,136,0,-1.000000,2162.000000,extended,lora,180 +on1,0,0,24,1,0,2497,4457.000000,137,0,47782.000000,1808.400000,extended,lora,180 +on9,0,0,24,1,0,675,4435.000000,137,0,11720.000000,1799.600000,extended,lora,180 +on8,0,0,24,1,0,1980,4320.000000,137,0,41037.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2700,4320.000000,137,0,55735.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1810,4320.000000,137,0,38462.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1260,4320.000000,137,0,28706.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1080,4320.000000,137,0,23831.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,137,0,9800.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4850.000000,137,0,-1.000000,2247.200000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,137,0,4410.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,137,0,15123.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,297,4417.000000,137,0,4232.000000,1792.400000,extended,lora,180 +on2,0,0,24,1,0,576,4336.000000,137,0,11880.000000,1760.000000,extended,lora,180 +on10,0,0,24,1,0,3555,4435.000000,138,0,71880.000000,1799.600000,extended,lora,180 +on12,0,0,24,1,0,2520,4320.000000,138,0,53888.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,491,4431.000000,138,0,8108.000000,1798.000000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,138,0,8279.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3938,4458.000000,138,0,78097.000000,1808.800000,extended,lora,180 +on8,0,0,24,1,0,204,4324.000000,138,0,6167.000000,1755.200000,extended,lora,180 +on4,0,0,24,1,0,2332,4472.000000,138,0,46137.000000,1814.400000,extended,lora,180 +on3,0,0,24,1,0,1503,4363.000000,138,0,30818.000000,1770.800000,extended,lora,180 +on9,0,0,24,1,0,1902,4402.000000,138,0,39208.000000,1786.400000,extended,lora,180 +on2,0,0,24,1,0,2231,4371.000000,138,0,45977.000000,1774.000000,extended,lora,180 +on0,1,12,24,0,0,0,4822.000000,138,0,-1.000000,2236.000000,extended,lora,180 +on11,0,0,24,1,0,1683,4363.000000,138,0,35974.000000,1770.800000,extended,lora,180 +on6,0,0,24,1,0,1521,4381.000000,138,0,30658.000000,1778.000000,extended,lora,180 +on0,1,9,24,0,0,0,4745.000000,139,0,-1.000000,2128.400000,extended,lora,180 +on3,0,0,24,1,0,3600,4320.000000,139,0,72332.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2799,4399.000000,139,0,55041.000000,1785.200000,extended,lora,180 +on12,0,0,24,1,0,833,4413.000000,139,0,15748.000000,1790.800000,extended,lora,180 +on7,0,0,24,1,0,37,4337.000000,139,0,450.000000,1760.400000,extended,lora,180 +on2,0,0,24,1,0,1737,4417.000000,139,0,35902.000000,1792.400000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,139,0,26956.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,139,0,18829.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,762,4342.000000,139,0,15588.000000,1762.400000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,139,0,24787.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,140,0,13657.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,4128,4468.000000,140,0,82480.000000,1812.800000,extended,lora,180 +on12,0,0,24,1,0,897,4477.000000,140,0,17423.000000,1816.400000,extended,lora,180 +on8,0,0,24,1,0,3600,4320.000000,140,0,74647.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,3068,4320.000000,140,0,63333.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1213,4433.000000,140,0,23376.000000,1798.800000,extended,lora,180 +on2,0,0,24,1,0,1800,4320.000000,140,0,36842.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,513,4453.000000,140,0,10743.000000,1806.800000,extended,lora,180 +on3,0,0,24,1,0,356,4476.000000,140,0,7364.000000,1816.000000,extended,lora,180 +on0,1,12,24,0,0,0,4834.000000,140,0,-1.000000,2240.800000,extended,lora,180 +on6,0,0,24,1,0,1708,4388.000000,140,0,33285.000000,1780.800000,extended,lora,180 +on9,0,0,24,1,0,310,4430.000000,140,0,7204.000000,1797.600000,extended,lora,180 +on4,0,0,24,1,0,478,4418.000000,140,0,10583.000000,1792.800000,extended,lora,180 +on3,0,0,24,1,0,900,4320.000000,141,0,21665.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,4077,4417.000000,141,0,81146.000000,1792.400000,extended,lora,180 +on10,0,0,24,1,0,3551,4431.000000,141,0,69643.000000,1798.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,1679,4359.000000,141,0,34372.000000,1769.200000,extended,lora,180 +on7,0,0,24,1,0,1909,4409.000000,141,0,36909.000000,1789.200000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,141,0,27850.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4764.000000,141,0,-1.000000,2161.600000,extended,lora,180 +on8,0,0,24,1,0,1815,4320.000000,141,0,37069.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,2996,4416.000000,141,0,58571.000000,1792.000000,extended,lora,180 +on4,0,0,24,1,0,3054,4474.000000,141,0,58731.000000,1815.200000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,141,0,6355.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2781,4381.000000,142,0,55699.000000,1778.000000,extended,lora,180 +on6,0,0,24,1,0,1210,4430.000000,142,0,22273.000000,1797.600000,extended,lora,180 +on12,0,0,24,1,0,3213,4453.000000,142,0,63359.000000,1806.800000,extended,lora,180 +on2,0,0,24,1,0,1620,4320.000000,142,0,34961.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,0,4320.000000,142,0,1523.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2724,4324.000000,142,0,55539.000000,1755.200000,extended,lora,180 +on3,0,0,24,1,0,215,4335.000000,142,0,6043.000000,1759.600000,extended,lora,180 +on9,0,0,24,1,0,3960,4320.000000,142,0,81417.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,142,0,61136.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,142,0,20269.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,142,0,10746.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,5000.000000,142,0,-1.000000,2281.600000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,143,0,28560.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,143,0,20510.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,540,4320.000000,143,0,13407.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,511,4451.000000,143,0,10494.000000,1806.000000,extended,lora,180 +on0,1,11,24,0,0,0,4828.000000,143,0,-1.000000,2212.800000,extended,lora,180 +on2,0,0,24,1,0,2160,4320.000000,143,0,43890.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1458,4320.000000,143,0,32536.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1198,4418.000000,143,0,23847.000000,1792.800000,extended,lora,180 +on8,0,0,24,1,0,3417,4477.000000,143,0,66988.000000,1816.400000,extended,lora,180 +on11,0,0,24,1,0,1980,4320.000000,143,0,41643.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1081,4320.000000,143,0,24007.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1616,4476.000000,143,0,32696.000000,1816.000000,extended,lora,180 +on6,0,0,24,1,0,1800,4320.000000,144,0,38754.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,3532,4412.000000,144,0,70967.000000,1790.400000,extended,lora,180 +on8,0,0,24,1,0,42,4342.000000,144,0,673.000000,1762.400000,extended,lora,180 +on12,0,0,24,1,0,141,4441.000000,144,0,833.000000,1802.000000,extended,lora,180 +on9,0,0,24,1,0,2160,4320.000000,144,0,46137.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,900,4320.000000,144,0,19712.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4918.000000,144,0,-1.000000,2248.800000,extended,lora,180 +on10,0,0,24,1,0,3091,4331.000000,144,0,61583.000000,1758.000000,extended,lora,180 +on7,0,0,24,1,0,1348,4388.000000,144,0,25700.000000,1780.800000,extended,lora,180 +on5,0,0,24,1,0,2340,4320.000000,144,0,50067.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,144,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,720,4320.000000,144,0,17651.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2989,4409.000000,144,0,61423.000000,1789.200000,extended,lora,180 +on10,0,0,24,1,0,1260,4320.000000,145,0,25670.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,32,4332.000000,145,0,2846.000000,1758.400000,extended,lora,180 +on12,0,0,24,1,0,701,4461.000000,145,0,14328.000000,1810.000000,extended,lora,180 +on8,0,0,24,1,0,1032,4432.000000,145,0,19318.000000,1798.400000,extended,lora,180 +on0,1,12,24,0,0,0,4935.000000,145,0,-1.000000,2281.200000,extended,lora,180 +on5,0,0,24,1,0,1081,4320.000000,145,0,23143.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,145,0,3012.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1041,4441.000000,145,0,19158.000000,1802.000000,extended,lora,180 +on4,0,0,24,1,0,264,4384.000000,145,0,6426.000000,1779.200000,extended,lora,180 +on7,0,0,24,1,0,1177,4397.000000,145,0,22983.000000,1784.400000,extended,lora,180 +on11,0,0,24,1,0,480,4420.000000,145,0,8600.000000,1793.600000,extended,lora,180 +on9,0,0,24,1,0,3027,4447.000000,145,0,59210.000000,1804.400000,extended,lora,180 +on2,0,0,24,1,0,450,4390.000000,145,0,8760.000000,1781.600000,extended,lora,180 +on0,1,12,24,0,0,0,5070.000000,146,0,-1.000000,2335.200000,extended,lora,180 +on5,0,0,24,1,0,1440,4320.000000,146,0,29955.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,825,4405.000000,146,0,17459.000000,1787.600000,extended,lora,180 +on10,0,0,24,1,0,861,4441.000000,146,0,17619.000000,1802.000000,extended,lora,180 +on6,0,0,24,1,0,1153,4373.000000,146,0,24334.000000,1774.800000,extended,lora,180 +on7,0,0,24,1,0,3144,4384.000000,146,0,62318.000000,1779.200000,extended,lora,180 +on1,0,0,24,1,0,3359,4419.000000,146,0,66961.000000,1793.200000,extended,lora,180 +on11,0,0,24,1,0,1080,4320.000000,146,0,24174.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1967,4467.000000,146,0,38393.000000,1812.400000,extended,lora,180 +on9,0,0,24,1,0,580,4340.000000,146,0,11223.000000,1761.600000,extended,lora,180 +on3,0,0,24,1,0,668,4428.000000,146,0,11383.000000,1796.800000,extended,lora,180 +on12,0,0,24,1,0,3279,4339.000000,146,0,67121.000000,1761.200000,extended,lora,180 +on2,0,0,24,1,0,3116,4356.000000,146,0,62158.000000,1768.000000,extended,lora,180 +on4,0,0,24,1,0,327,4447.000000,147,0,7378.000000,1804.400000,extended,lora,180 +on5,0,0,24,1,0,1295,4335.000000,147,0,26392.000000,1759.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,2520,4320.000000,147,0,51796.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,147,0,11162.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1260,4320.000000,147,0,26557.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,147,0,3813.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3232,4472.000000,147,0,64247.000000,1814.400000,extended,lora,180 +on7,0,0,24,1,0,2413,4373.000000,147,0,50327.000000,1774.800000,extended,lora,180 +on2,0,0,24,1,0,438,4378.000000,147,0,7538.000000,1776.800000,extended,lora,180 +on8,0,0,24,1,0,3759,4459.000000,147,0,75232.000000,1809.200000,extended,lora,180 +on3,0,0,24,1,0,3149,4389.000000,147,0,64407.000000,1781.200000,extended,lora,180 +on0,1,11,24,0,0,0,4945.000000,147,0,-1.000000,2259.600000,extended,lora,180 +on1,0,0,24,1,0,3046,4466.000000,148,0,59203.000000,1812.000000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,148,0,27664.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,660,4420.000000,148,0,12175.000000,1793.600000,extended,lora,180 +on10,0,0,24,1,0,180,4320.000000,148,0,4839.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,162,4462.000000,148,0,1349.000000,1810.400000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,148,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,148,0,24542.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,532,4472.000000,148,0,8064.000000,1814.400000,extended,lora,180 +on7,0,0,24,1,0,837,4417.000000,148,0,17545.000000,1792.400000,extended,lora,180 +on0,1,11,24,0,0,0,4994.000000,148,0,-1.000000,2279.200000,extended,lora,180 +on12,0,0,24,1,0,52,4352.000000,148,0,1189.000000,1766.400000,extended,lora,180 +on9,0,0,24,1,0,2520,4320.000000,148,0,54056.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2183,4323.000000,148,0,44648.000000,1754.800000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,149,0,30076.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,4019,4359.000000,149,0,81426.000000,1769.200000,extended,lora,180 +on6,0,0,24,1,0,1232,4452.000000,149,0,24436.000000,1806.400000,extended,lora,180 +on12,0,0,24,1,0,2880,4320.000000,149,0,60889.000000,1753.600000,extended,lora,180 +on1,0,0,23,1,0,2602,4382.000000,149,0,51518.000000,1778.400000,extended,lora,180 +on3,0,0,24,1,0,765,4345.000000,149,0,15262.000000,1763.600000,extended,lora,180 +on0,1,11,24,0,0,0,4846.000000,149,0,-1.000000,2220.000000,extended,lora,180 +on10,0,0,24,1,0,1572,4432.000000,149,0,29906.000000,1798.400000,extended,lora,180 +on7,0,0,24,1,0,18,4320.000000,149,0,1901.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,900,4320.000000,149,0,21517.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,826,4406.000000,149,0,15422.000000,1788.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,149,0,39535.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3235,4475.000000,150,0,63017.000000,1815.600000,extended,lora,180 +on10,0,0,24,1,0,1080,4320.000000,150,0,22110.000000,1753.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,19,4320.000000,150,0,849.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,467,4407.000000,150,0,9582.000000,1788.400000,extended,lora,180 +on6,0,0,24,1,0,2274,4414.000000,150,0,43758.000000,1791.200000,extended,lora,180 +on0,1,10,24,0,0,0,4809.000000,150,0,-1.000000,2179.600000,extended,lora,180 +on8,0,0,24,1,0,4140,4320.000000,150,0,84686.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,668,4428.000000,150,0,12347.000000,1796.800000,extended,lora,180 +on11,0,0,24,1,0,1419,4459.000000,150,0,27227.000000,1809.200000,extended,lora,180 +on3,0,0,24,1,0,661,4421.000000,150,0,12187.000000,1794.000000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,507,4447.000000,150,0,9742.000000,1804.400000,extended,lora,180 +on7,0,0,24,1,0,720,4320.000000,151,0,17072.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1663,4343.000000,151,0,34361.000000,1762.800000,extended,lora,180 +on11,0,0,24,1,0,3240,4320.000000,151,0,65679.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,67,4367.000000,151,0,2583.000000,1772.400000,extended,lora,180 +on3,0,0,24,1,0,2833,4433.000000,151,0,55197.000000,1798.800000,extended,lora,180 +on5,0,0,24,1,0,2024,4344.000000,151,0,41708.000000,1763.200000,extended,lora,180 +on2,0,0,24,1,0,1208,4428.000000,151,0,23470.000000,1796.800000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,151,0,7648.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1800,4320.000000,151,0,36505.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4844.000000,151,0,-1.000000,2244.800000,extended,lora,180 +on12,0,0,24,1,0,1346,4386.000000,151,0,26864.000000,1780.000000,extended,lora,180 +on1,0,0,24,1,0,900,4320.000000,151,0,21460.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1080,4320.000000,151,0,23643.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,87,4387.000000,152,0,3240.000000,1780.400000,extended,lora,180 +on9,0,0,24,1,0,669,4429.000000,152,0,11975.000000,1797.200000,extended,lora,180 +on8,0,0,24,1,0,152,4452.000000,152,0,3400.000000,1806.400000,extended,lora,180 +on12,0,0,24,1,0,3065,4320.000000,152,0,61515.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1705,4385.000000,152,0,34311.000000,1779.600000,extended,lora,180 +on7,0,0,24,1,0,2880,4320.000000,152,0,60708.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1440,4320.000000,152,0,31726.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,152,0,8495.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1310,4350.000000,152,0,27678.000000,1765.600000,extended,lora,180 +on4,0,0,24,1,0,180,4320.000000,152,0,5711.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4713.000000,152,0,-1.000000,2141.200000,extended,lora,180 +on1,0,0,24,1,0,1060,4460.000000,153,0,21073.000000,1809.600000,extended,lora,180 +on10,0,0,24,1,0,1800,4320.000000,153,0,36864.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,297,4417.000000,153,0,7381.000000,1792.400000,extended,lora,180 +on9,0,0,24,1,0,2520,4320.000000,153,0,50650.000000,1753.600000,extended,lora,180 +on11,0,0,23,1,0,1396,4276.000000,153,0,30403.000000,1736.000000,extended,lora,180 +on7,0,0,24,1,0,2891,4320.000000,153,0,60295.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1033,4433.000000,153,0,21233.000000,1798.800000,extended,lora,180 +on0,1,12,24,0,0,0,5043.000000,153,0,-1.000000,2324.400000,extended,lora,180 +on6,0,0,24,1,0,179,4479.000000,153,0,2817.000000,1817.200000,extended,lora,180 +on2,0,0,24,1,0,1620,4320.000000,153,0,34482.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,720,4320.000000,153,0,16092.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3361,4421.000000,153,0,67079.000000,1794.000000,extended,lora,180 +on3,0,0,24,1,0,1980,4320.000000,153,0,40385.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,628,4388.000000,154,0,13671.000000,1780.800000,extended,lora,180 +on5,0,0,24,1,0,1040,4440.000000,154,0,20361.000000,1801.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,900,4320.000000,154,0,20534.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1440,4320.000000,154,0,29036.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2265,4405.000000,154,0,43559.000000,1787.600000,extended,lora,180 +on3,0,0,24,1,0,667,4427.000000,154,0,13511.000000,1796.400000,extended,lora,180 +on4,0,0,24,1,0,1800,4320.000000,154,0,37700.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,720,4320.000000,154,0,18099.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3060,4320.000000,154,0,63563.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,extended,lora,180 +on0,1,10,24,0,0,0,4991.000000,154,0,-1.000000,2252.400000,extended,lora,180 +on6,0,0,24,1,0,328,4448.000000,154,0,5348.000000,1804.800000,extended,lora,180 +on0,1,12,24,0,0,0,5121.000000,155,0,-1.000000,2355.600000,extended,lora,180 +on10,0,0,24,1,0,471,4411.000000,155,0,7657.000000,1790.000000,extended,lora,180 +on2,0,0,24,1,0,2417,4377.000000,155,0,50134.000000,1776.400000,extended,lora,180 +on3,0,0,24,1,0,1966,4466.000000,155,0,37425.000000,1812.000000,extended,lora,180 +on6,0,0,24,1,0,2422,4382.000000,155,0,50294.000000,1778.400000,extended,lora,180 +on1,0,0,24,1,0,2880,4320.000000,155,0,59428.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1669,4349.000000,155,0,33367.000000,1765.200000,extended,lora,180 +on12,0,0,24,1,0,912,4320.000000,155,0,19129.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,996,4396.000000,155,0,19289.000000,1784.000000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,155,0,14376.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,155,0,30369.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,359,4479.000000,155,0,5111.000000,1817.200000,extended,lora,180 +on8,0,0,23,1,0,300,4369.000000,155,0,5271.000000,1773.200000,extended,lora,180 +on11,0,0,24,1,0,2160,4320.000000,156,0,46051.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3960,4320.000000,156,0,79719.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,194,4320.000000,156,0,6157.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1800,4320.000000,156,0,36921.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1363,4403.000000,156,0,25580.000000,1786.800000,extended,lora,180 +on3,0,0,24,1,0,3420,4320.000000,156,0,68767.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1,4320.000000,156,0,3450.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,540,4320.000000,156,0,14489.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1280,4320.000000,156,0,25420.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,0,4320.000000,156,0,3625.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,extended,lora,180 +on0,1,11,24,0,0,0,4872.000000,156,0,-1.000000,2230.400000,extended,lora,180 +on6,0,0,24,1,0,2340,4320.000000,156,0,48280.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1620,4320.000000,157,0,34755.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,157,0,32216.000000,1753.600000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,407,4347.000000,157,0,8502.000000,1764.400000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,157,0,24343.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2880,4320.000000,157,0,59095.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,157,0,11949.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,180,4320.000000,157,0,5306.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,3240,4320.000000,157,0,67067.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1556,4416.000000,157,0,32053.000000,1792.000000,extended,lora,180 +on0,1,9,24,0,0,0,4916.000000,157,0,-1.000000,2196.800000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,158,0,32745.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1468,4328.000000,158,0,29362.000000,1756.800000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2259,4399.000000,158,0,43494.000000,1785.200000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,158,0,7187.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,158,0,10485.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2340,4320.000000,158,0,47293.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2520,4320.000000,158,0,50866.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4821.000000,158,0,-1.000000,2158.800000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,158,0,2600.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,566,4326.000000,158,0,13497.000000,1756.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,159,0,5727.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2367,4327.000000,159,0,48842.000000,1756.400000,extended,lora,180 +on0,1,12,24,0,0,0,4989.000000,159,0,-1.000000,2302.800000,extended,lora,180 +on6,0,0,24,1,0,4140,4320.000000,159,0,84028.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2672,4452.000000,159,0,51048.000000,1806.400000,extended,lora,180 +on7,0,0,24,1,0,516,4456.000000,159,0,9266.000000,1808.000000,extended,lora,180 +on12,0,0,24,1,0,52,4352.000000,159,0,3481.000000,1766.400000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,159,0,25844.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,395,4335.000000,159,0,9106.000000,1759.600000,extended,lora,180 +on5,0,0,24,1,0,721,4320.000000,159,0,16600.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,2046,4366.000000,159,0,42305.000000,1772.000000,extended,lora,180 +on3,0,0,24,1,0,1440,4320.000000,159,0,31008.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,730,4320.000000,159,0,16440.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1398,4438.000000,160,0,27387.000000,1800.800000,extended,lora,180 +on2,0,0,24,1,0,655,4415.000000,160,0,11495.000000,1791.600000,extended,lora,180 +on11,0,0,24,1,0,1071,4471.000000,160,0,20570.000000,1814.000000,extended,lora,180 +on6,0,0,24,1,0,10,4320.000000,160,0,467.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1570,4430.000000,160,0,32512.000000,1797.600000,extended,lora,180 +on12,0,0,24,1,0,920,4320.000000,160,0,18223.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1029,4429.000000,160,0,20730.000000,1797.200000,extended,lora,180 +on5,0,0,24,1,0,250,4370.000000,160,0,4572.000000,1773.600000,extended,lora,180 +on4,0,0,24,1,0,24,4324.000000,160,0,627.000000,1755.200000,extended,lora,180 +on0,1,12,24,0,0,0,4888.000000,160,0,-1.000000,2262.400000,extended,lora,180 +on3,0,0,24,1,0,831,4411.000000,160,0,18063.000000,1790.000000,extended,lora,180 +on1,0,0,24,1,0,1576,4436.000000,160,0,32672.000000,1800.000000,extended,lora,180 +on7,0,0,24,1,0,1080,4320.000000,160,0,25157.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,644,4404.000000,161,0,12646.000000,1787.200000,extended,lora,180 +on2,0,0,24,1,0,1080,4320.000000,161,0,22195.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,360,4320.000000,161,0,7604.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2875,4475.000000,161,0,55552.000000,1815.600000,extended,lora,180 +on6,0,0,24,1,0,3036,4456.000000,161,0,59791.000000,1808.000000,extended,lora,180 +on5,0,0,24,1,0,727,4320.000000,161,0,17537.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4857.000000,161,0,-1.000000,2250.000000,extended,lora,180 +on9,0,0,24,1,0,1011,4411.000000,161,0,18527.000000,1790.000000,extended,lora,180 +on1,0,0,24,1,0,600,4360.000000,161,0,12486.000000,1769.600000,extended,lora,180 +on12,0,0,24,1,0,3,4320.000000,161,0,2135.000000,1753.600000,extended,lora,180 +on4,0,0,23,1,0,103,4275.000000,161,0,2295.000000,1735.600000,extended,lora,180 +on3,0,0,24,1,0,1416,4456.000000,161,0,26264.000000,1808.000000,extended,lora,180 +on10,0,0,24,1,0,1440,4320.000000,161,0,29984.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,751,4331.000000,162,0,14918.000000,1758.000000,extended,lora,180 +on12,0,0,24,1,0,491,4431.000000,162,0,8975.000000,1798.000000,extended,lora,180 +on5,0,0,24,1,0,83,4383.000000,162,0,618.000000,1778.800000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,162,0,44045.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,162,0,790.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3060,4320.000000,162,0,63924.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,162,0,31569.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,273,4393.000000,162,0,4364.000000,1782.800000,extended,lora,180 +on6,0,0,24,1,0,540,4320.000000,162,0,11397.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1221,4441.000000,162,0,24807.000000,1802.000000,extended,lora,180 +on11,0,0,24,1,0,436,4376.000000,162,0,8815.000000,1776.000000,extended,lora,180 +on0,1,12,24,0,0,0,4916.000000,162,0,-1.000000,2273.600000,extended,lora,180 +on10,0,0,24,1,0,204,4324.000000,162,0,4524.000000,1755.200000,extended,lora,180 +on1,0,0,24,1,0,2743,4343.000000,163,0,55100.000000,1762.800000,extended,lora,180 +on8,0,0,23,0,0,4280,4280.000000,163,0,-1.000000,1712.000000,extended,lora,180 +on2,0,0,24,1,0,205,4325.000000,163,0,7378.000000,1755.600000,extended,lora,180 +on4,0,0,24,1,0,935,4335.000000,163,0,19229.000000,1759.600000,extended,lora,180 +on3,0,0,24,1,0,3060,4320.000000,163,0,63348.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4574.000000,163,0,-1.000000,2111.200000,extended,lora,180 +on11,0,0,24,1,0,2494,4454.000000,163,0,48373.000000,1807.200000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,163,0,14339.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2151,4471.000000,163,0,39998.000000,1814.000000,extended,lora,180 +on12,0,0,24,1,0,2458,4418.000000,163,0,48533.000000,1792.800000,extended,lora,180 +on10,0,0,24,1,0,1751,4431.000000,163,0,36134.000000,1798.000000,extended,lora,180 +on6,0,0,24,1,0,1086,4320.000000,163,0,23639.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,163,0,242.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,219,4339.000000,164,0,4521.000000,1761.200000,extended,lora,180 +on0,1,12,24,0,0,0,4905.000000,164,0,-1.000000,2269.200000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,164,0,30979.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,478,4418.000000,164,0,8453.000000,1792.800000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,164,0,11454.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1629,4320.000000,164,0,34906.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1080,4320.000000,164,0,25008.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,3670,4370.000000,164,0,75619.000000,1773.600000,extended,lora,180 +on10,0,0,24,1,0,507,4447.000000,164,0,8293.000000,1804.400000,extended,lora,180 +on5,0,0,24,1,0,1260,4320.000000,164,0,26838.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,0,4320.000000,164,0,2746.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1651,4331.000000,164,0,34746.000000,1758.000000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,164,0,17970.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1234,4454.000000,165,0,23677.000000,1807.200000,extended,lora,180 +on9,0,0,24,1,0,2121,4441.000000,165,0,43016.000000,1802.000000,extended,lora,180 +on0,1,10,24,0,0,0,4880.000000,165,0,-1.000000,2208.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2700,4320.000000,165,0,57563.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,83,4383.000000,165,0,1407.000000,1778.800000,extended,lora,180 +on7,0,0,24,1,0,3060,4320.000000,165,0,61469.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2340,4320.000000,165,0,48149.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,720,4320.000000,165,0,16348.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,165,0,20193.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2520,4320.000000,165,0,52985.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1475,4335.000000,165,0,31377.000000,1759.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,2160,4320.000000,166,0,44004.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4716.000000,166,0,-1.000000,2168.000000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,166,0,5774.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,166,0,27031.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,489,4429.000000,166,0,7727.000000,1797.200000,extended,lora,180 +on6,0,0,24,1,0,2880,4320.000000,166,0,60786.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,166,0,1068.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,763,4343.000000,166,0,16442.000000,1762.800000,extended,lora,180 +on10,0,0,24,1,0,1838,4338.000000,166,0,39182.000000,1760.800000,extended,lora,180 +on8,0,0,24,1,0,2595,4375.000000,166,0,53175.000000,1775.600000,extended,lora,180 +on4,0,0,24,1,0,912,4320.000000,166,0,21517.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,279,4399.000000,166,0,5595.000000,1785.200000,extended,lora,180 +on3,0,0,23,1,0,2150,4310.000000,167,0,46136.000000,1749.600000,extended,lora,180 +on7,0,0,24,1,0,1440,4320.000000,167,0,30443.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,394,4334.000000,167,0,10019.000000,1759.200000,extended,lora,180 +on11,0,0,24,1,0,239,4359.000000,167,0,6841.000000,1769.200000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,167,0,20470.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2700,4320.000000,167,0,54368.000000,1753.600000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,167,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,23,1,0,2490,4270.000000,167,0,54054.000000,1733.600000,extended,lora,180 +on9,0,0,24,1,0,4095,4435.000000,167,0,82397.000000,1799.600000,extended,lora,180 +on12,0,0,24,1,0,2993,4413.000000,167,0,61118.000000,1790.800000,extended,lora,180 +on0,1,11,24,0,0,0,4931.000000,167,0,-1.000000,2254.000000,extended,lora,180 +on6,0,0,24,1,0,420,4360.000000,167,0,10179.000000,1769.600000,extended,lora,180 +on2,0,0,24,1,0,2681,4461.000000,167,0,53894.000000,1810.000000,extended,lora,180 +on0,1,10,24,0,0,0,4956.000000,168,0,-1.000000,2238.400000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,168,0,11827.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,0,4320.000000,168,0,1418.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1195,4415.000000,168,0,25223.000000,1791.600000,extended,lora,180 +on6,0,0,24,1,0,410,4350.000000,168,0,9370.000000,1765.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,168,0,7344.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1677,4357.000000,168,0,34191.000000,1768.400000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,477,4417.000000,168,0,9210.000000,1792.400000,extended,lora,180 +on12,0,0,24,1,0,720,4320.000000,168,0,15329.000000,1753.600000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1624,4320.000000,168,0,34351.000000,1753.600000,extended,lora,180 +on3,0,0,23,1,0,2452,4252.000000,168,0,50762.000000,1726.400000,extended,lora,180 +on4,0,0,24,1,0,3652,4352.000000,169,0,74559.000000,1766.400000,extended,lora,180 +on1,0,0,24,1,0,2340,4320.000000,169,0,47122.000000,1753.600000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1476,4336.000000,169,0,31900.000000,1760.000000,extended,lora,180 +on5,0,0,24,1,0,565,4325.000000,169,0,14287.000000,1755.600000,extended,lora,180 +on6,0,0,24,1,0,647,4407.000000,169,0,14447.000000,1788.400000,extended,lora,180 +on11,0,0,24,1,0,739,4320.000000,169,0,17263.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4689.000000,169,0,-1.000000,2131.600000,extended,lora,180 +on12,0,0,24,1,0,0,4320.000000,169,0,2830.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2520,4320.000000,169,0,51990.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1080,4320.000000,169,0,22249.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1800,4320.000000,169,0,37029.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,403,4343.000000,170,0,10060.000000,1762.800000,extended,lora,180 +on10,0,0,24,1,0,720,4320.000000,170,0,16281.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,434,4374.000000,170,0,9900.000000,1775.200000,extended,lora,180 +on6,0,0,24,1,0,1440,4320.000000,170,0,29343.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,170,0,5997.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,1905,4405.000000,170,0,39469.000000,1787.600000,extended,lora,180 +on4,0,0,24,1,0,635,4395.000000,170,0,11177.000000,1783.600000,extended,lora,180 +on1,0,0,24,1,0,2306,4446.000000,170,0,43684.000000,1804.000000,extended,lora,180 +on11,0,0,24,1,0,2520,4320.000000,170,0,52400.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1401,4441.000000,170,0,27750.000000,1802.000000,extended,lora,180 +on0,1,12,24,0,0,0,4917.000000,170,0,-1.000000,2274.000000,extended,lora,180 +on12,0,0,24,1,0,4140,4320.000000,170,0,86006.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1922,4422.000000,170,0,39629.000000,1794.400000,extended,lora,180 +on6,0,0,24,1,0,720,4320.000000,171,0,16373.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2709,4320.000000,171,0,54970.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2783,4383.000000,171,0,54810.000000,1778.800000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,171,0,1038.000000,1753.600000,extended,lora,180 +on2,0,0,23,1,0,235,4222.000000,171,0,5692.000000,1714.400000,extended,lora,180 +on10,0,0,24,1,0,1620,4320.000000,171,0,34678.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,2030,4350.000000,171,0,40108.000000,1765.600000,extended,lora,180 +on11,0,0,24,1,0,245,4365.000000,171,0,5532.000000,1771.600000,extended,lora,180 +on9,0,0,24,1,0,1858,4358.000000,171,0,39484.000000,1768.800000,extended,lora,180 +on5,0,0,24,1,0,1385,4425.000000,171,0,25628.000000,1795.600000,extended,lora,180 +on3,0,0,24,1,0,1254,4474.000000,171,0,25468.000000,1815.200000,extended,lora,180 +on12,0,0,24,1,0,3600,4320.000000,171,0,74744.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,5023.000000,171,0,-1.000000,2316.400000,extended,lora,180 +on4,0,0,24,1,0,3420,4320.000000,172,0,69054.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,172,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,1,0,745,4325.000000,172,0,17695.000000,1755.600000,extended,lora,180 +on0,1,11,24,0,0,0,4757.000000,172,0,-1.000000,2184.400000,extended,lora,180 +on1,0,0,24,1,0,3960,4320.000000,172,0,80017.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1326,4366.000000,172,0,28270.000000,1772.000000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,172,0,8223.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1514,4374.000000,172,0,29951.000000,1775.200000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,172,0,705.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2129,4449.000000,172,0,40227.000000,1805.200000,extended,lora,180 +on5,0,0,24,1,0,858,4438.000000,172,0,17855.000000,1800.800000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,172,0,6952.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2247,4387.000000,172,0,45071.000000,1780.400000,extended,lora,180 +on2,0,0,24,1,0,1980,4320.000000,173,0,42738.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,994,4394.000000,173,0,19662.000000,1783.200000,extended,lora,180 +on7,0,0,24,1,0,323,4443.000000,173,0,4578.000000,1802.800000,extended,lora,180 +on8,0,0,24,1,0,0,4320.000000,173,0,2240.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4874.000000,173,0,-1.000000,2256.800000,extended,lora,180 +on5,0,0,24,1,0,3866,4386.000000,173,0,76417.000000,1780.000000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,173,0,10467.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1440,4320.000000,173,0,29686.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2880,4320.000000,173,0,58492.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,19,4320.000000,173,0,2080.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1620,4320.000000,173,0,33685.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1860,4360.000000,173,0,39074.000000,1769.600000,extended,lora,180 +on12,0,0,24,1,0,1066,4466.000000,173,0,19822.000000,1812.000000,extended,lora,180 +on11,0,0,24,1,0,1325,4365.000000,174,0,27459.000000,1771.600000,extended,lora,180 +on0,1,11,24,0,0,0,4690.000000,174,0,-1.000000,2157.600000,extended,lora,180 +on5,0,0,24,1,0,3960,4320.000000,174,0,80959.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,845,4425.000000,174,0,17515.000000,1795.600000,extended,lora,180 +on1,0,0,23,1,0,180,4301.000000,174,0,5930.000000,1746.000000,extended,lora,180 +on4,0,0,24,1,0,3274,4334.000000,174,0,67033.000000,1759.200000,extended,lora,180 +on7,0,0,24,1,0,619,4379.000000,174,0,12987.000000,1777.200000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,2649,4429.000000,174,0,51337.000000,1797.200000,extended,lora,180 +on6,0,0,24,1,0,3828,4348.000000,174,0,76735.000000,1764.800000,extended,lora,180 +on9,0,0,23,1,0,1980,4212.000000,174,0,42737.000000,1710.400000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,174,0,9584.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,607,4367.000000,174,0,12827.000000,1772.400000,extended,lora,180 +on10,0,0,24,1,0,1760,4440.000000,175,0,36104.000000,1801.600000,extended,lora,180 +on12,0,0,24,1,0,149,4449.000000,175,0,2136.000000,1805.200000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,175,0,17949.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,175,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1980,4320.000000,175,0,42674.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,3600,4320.000000,175,0,72374.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4855.000000,175,0,-1.000000,2223.600000,extended,lora,180 +on5,0,0,24,1,0,1080,4320.000000,175,0,22837.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,900,4320.000000,175,0,18806.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1767,4447.000000,175,0,35944.000000,1804.400000,extended,lora,180 +on6,0,0,24,1,0,3060,4320.000000,175,0,64495.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,2801,4401.000000,175,0,57165.000000,1786.000000,extended,lora,180 +on8,0,0,24,1,0,302,4422.000000,175,0,7285.000000,1794.400000,extended,lora,180 +on3,0,0,24,1,0,3385,4445.000000,176,0,65452.000000,1803.600000,extended,lora,180 +on0,1,11,24,0,0,0,4810.000000,176,0,-1.000000,2205.600000,extended,lora,180 +on11,0,0,24,1,0,1260,4320.000000,176,0,28905.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1980,4320.000000,176,0,43126.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,2484,4444.000000,176,0,49617.000000,1803.200000,extended,lora,180 +on8,0,0,24,1,0,909,4320.000000,176,0,20740.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,176,0,20912.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,4008,4348.000000,176,0,82080.000000,1764.800000,extended,lora,180 +on4,0,0,24,1,0,360,4320.000000,176,0,10333.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,770,4350.000000,176,0,17934.000000,1765.600000,extended,lora,180 +on6,0,0,24,1,0,1541,4401.000000,176,0,31412.000000,1786.000000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,176,0,12132.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3240,4320.000000,177,0,67490.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3780,4320.000000,177,0,77747.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4549.000000,177,0,-1.000000,2101.200000,extended,lora,180 +on5,0,0,24,1,0,4140,4320.000000,177,0,83670.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1440,4320.000000,177,0,30892.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,720,4320.000000,177,0,17750.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,360,4320.000000,177,0,8113.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2338,4478.000000,177,0,45829.000000,1816.800000,extended,lora,180 +on3,0,0,23,1,0,547,4250.000000,177,0,14546.000000,1725.600000,extended,lora,180 +on10,0,0,24,1,0,2611,4391.000000,177,0,50803.000000,1782.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,230,4350.000000,177,0,6652.000000,1765.600000,extended,lora,180 +on2,0,0,24,1,0,97,4397.000000,177,0,283.000000,1784.400000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,1747,4427.000000,178,0,36184.000000,1796.400000,extended,lora,180 +on5,0,0,24,1,0,1798,4478.000000,178,0,33881.000000,1816.800000,extended,lora,180 +on3,0,0,24,1,0,2558,4338.000000,178,0,52657.000000,1760.800000,extended,lora,180 +on8,0,0,24,1,0,180,4320.000000,178,0,5388.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1391,4431.000000,178,0,28859.000000,1798.000000,extended,lora,180 +on1,0,0,24,1,0,2435,4395.000000,178,0,48724.000000,1783.600000,extended,lora,180 +on12,0,0,24,1,0,863,4443.000000,178,0,14966.000000,1802.800000,extended,lora,180 +on0,1,11,24,0,0,0,4801.000000,178,0,-1.000000,2202.000000,extended,lora,180 +on6,0,0,24,1,0,1871,4371.000000,178,0,36344.000000,1774.000000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,178,0,350.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2115,4435.000000,178,0,39897.000000,1799.600000,extended,lora,180 +on7,0,0,24,1,0,849,4429.000000,178,0,15126.000000,1797.200000,extended,lora,180 +on12,0,0,24,1,0,4122,4462.000000,179,0,82777.000000,1810.400000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,179,0,20418.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1800,4320.000000,179,0,37515.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,4008,4348.000000,179,0,82617.000000,1764.800000,extended,lora,180 +on4,0,0,24,1,0,2726,4326.000000,179,0,56043.000000,1756.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,3060,4320.000000,179,0,64911.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,180,4320.000000,179,0,6202.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1980,4320.000000,179,0,40575.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,2673,4453.000000,179,0,50754.000000,1806.800000,extended,lora,180 +on0,1,10,24,0,0,0,4898.000000,179,0,-1.000000,2215.200000,extended,lora,180 +on9,0,0,24,1,0,2160,4320.000000,179,0,46722.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1440,4320.000000,180,0,32066.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4774.000000,180,0,-1.000000,2165.600000,extended,lora,180 +on12,0,0,24,1,0,3780,4320.000000,180,0,76559.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,180,0,6693.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,180,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,180,0,15362.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,636,4396.000000,180,0,13682.000000,1784.000000,extended,lora,180 +on6,0,0,24,1,0,920,4320.000000,180,0,18880.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2160,4320.000000,180,0,46001.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,1172,4392.000000,180,0,25333.000000,1782.400000,extended,lora,180 +on10,0,0,23,0,0,4289,4289.000000,180,0,-1.000000,1715.600000,extended,lora,180 +on9,0,0,24,1,0,1370,4410.000000,180,0,27543.000000,1789.600000,extended,lora,180 +on2,0,0,24,1,0,0,4320.000000,180,0,1983.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1097,4320.000000,181,0,24621.000000,1753.600000,extended,lora,180 +on9,0,0,23,1,0,3678,4295.000000,181,0,75719.000000,1743.600000,extended,lora,180 +on1,0,0,24,1,0,540,4320.000000,181,0,13511.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,144,4444.000000,181,0,1468.000000,1803.200000,extended,lora,180 +on3,0,0,24,1,0,1236,4456.000000,181,0,24781.000000,1808.000000,extended,lora,180 +on8,0,0,24,1,0,979,4379.000000,181,0,20569.000000,1777.200000,extended,lora,180 +on6,0,0,24,1,0,14,4320.000000,181,0,1308.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1609,4469.000000,181,0,31886.000000,1813.200000,extended,lora,180 +on7,0,0,24,1,0,405,4345.000000,181,0,9635.000000,1763.600000,extended,lora,180 +on0,1,11,24,0,0,0,4814.000000,181,0,-1.000000,2207.200000,extended,lora,180 +on12,0,0,24,1,0,3420,4320.000000,181,0,70212.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,720,4320.000000,181,0,16508.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,182,0,1584.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1754,4434.000000,182,0,34127.000000,1799.200000,extended,lora,180 +on3,0,0,24,1,0,904,4320.000000,182,0,21537.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,292,4412.000000,182,0,7012.000000,1790.400000,extended,lora,180 +on7,0,0,24,1,0,823,4403.000000,182,0,16633.000000,1786.800000,extended,lora,180 +on11,0,0,24,1,0,3077,4320.000000,182,0,64531.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4566.000000,182,0,-1.000000,2108.000000,extended,lora,180 +on8,0,0,24,1,0,540,4320.000000,182,0,12071.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1384,4424.000000,182,0,28721.000000,1795.200000,extended,lora,180 +on1,0,0,24,1,0,1440,4320.000000,182,0,31574.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,540,4320.000000,182,0,12233.000000,1753.600000,extended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,1,0,1826,4326.000000,182,0,39517.000000,1756.000000,extended,lora,180 +on10,0,0,24,1,0,419,4359.000000,183,0,9401.000000,1769.200000,extended,lora,180 +on1,0,0,24,1,0,1073,4473.000000,183,0,19961.000000,1814.800000,extended,lora,180 +on12,0,0,24,1,0,2522,4320.000000,183,0,50843.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,863,4443.000000,183,0,16913.000000,1802.800000,extended,lora,180 +on4,0,0,24,1,0,2726,4326.000000,183,0,55173.000000,1756.000000,extended,lora,180 +on3,0,0,24,1,0,1040,4440.000000,183,0,20121.000000,1801.600000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,3420,4320.000000,183,0,69669.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,3780,4320.000000,183,0,79254.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4661.000000,183,0,-1.000000,2120.400000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,183,0,14380.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,183,0,5512.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1980,4320.000000,184,0,43169.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,540,4320.000000,184,0,14559.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1080,4320.000000,184,0,22204.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1260,4320.000000,184,0,25437.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2700,4320.000000,184,0,55198.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1747,4427.000000,184,0,36106.000000,1796.400000,extended,lora,180 +on5,0,0,24,1,0,2160,4320.000000,184,0,46488.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,1027,4427.000000,184,0,21701.000000,1796.400000,extended,lora,180 +on4,0,0,24,1,0,2497,4457.000000,184,0,49391.000000,1808.400000,extended,lora,180 +on0,1,11,24,0,0,0,4793.000000,184,0,-1.000000,2198.800000,extended,lora,180 +on3,0,0,24,1,0,1734,4414.000000,184,0,36266.000000,1791.200000,extended,lora,180 +on11,0,0,24,1,0,1800,4320.000000,184,0,38135.000000,1753.600000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,3241,4320.000000,185,0,66100.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1800,4320.000000,185,0,39125.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,1260,4320.000000,185,0,27817.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4720.000000,185,0,-1.000000,2169.600000,extended,lora,180 +on4,0,0,24,1,0,117,4417.000000,185,0,1921.000000,1792.400000,extended,lora,180 +on1,0,0,24,1,0,1003,4403.000000,185,0,20902.000000,1786.800000,extended,lora,180 +on10,0,0,24,1,0,115,4415.000000,185,0,2081.000000,1791.600000,extended,lora,180 +on8,0,0,24,1,0,1769,4449.000000,185,0,33385.000000,1805.200000,extended,lora,180 +on5,0,0,24,1,0,540,4320.000000,185,0,14001.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,185,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,908,4320.000000,185,0,21062.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3600,4320.000000,185,0,74489.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2069,4389.000000,185,0,41077.000000,1781.200000,extended,lora,180 +on9,0,0,24,1,0,0,4320.000000,186,0,2099.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2520,4320.000000,186,0,54144.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1980,4320.000000,186,0,40016.000000,1753.600000,extended,lora,180 +on0,1,12,24,0,0,0,4743.000000,186,0,-1.000000,2204.400000,extended,lora,180 +on1,0,0,24,1,0,4140,4320.000000,186,0,83517.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1080,4320.000000,186,0,25328.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1032,4432.000000,186,0,19420.000000,1798.400000,extended,lora,180 +on3,0,0,24,1,0,3318,4378.000000,186,0,65463.000000,1776.800000,extended,lora,180 +on11,0,0,24,1,0,2880,4320.000000,186,0,58234.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,498,4438.000000,186,0,10457.000000,1800.800000,extended,lora,180 +on8,0,0,24,1,0,1596,4456.000000,186,0,30169.000000,1808.000000,extended,lora,180 +on2,0,0,24,1,0,4082,4422.000000,186,0,82078.000000,1794.400000,extended,lora,180 +on5,0,0,24,1,0,2872,4472.000000,186,0,56923.000000,1814.400000,extended,lora,180 +on9,0,0,24,1,0,8,4320.000000,187,0,2773.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,582,4342.000000,187,0,14200.000000,1762.400000,extended,lora,180 +on0,1,10,24,0,0,0,4818.000000,187,0,-1.000000,2183.200000,extended,lora,180 +on10,0,0,24,1,0,1436,4476.000000,187,0,27283.000000,1816.000000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,1,0,3041,4461.000000,187,0,60283.000000,1810.000000,extended,lora,180 +on5,0,0,24,1,0,900,4320.000000,187,0,19830.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1567,4427.000000,187,0,29791.000000,1796.400000,extended,lora,180 +on2,0,0,24,1,0,335,4455.000000,187,0,6651.000000,1807.600000,extended,lora,180 +on4,0,0,24,1,0,1620,4320.000000,187,0,35526.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,697,4457.000000,187,0,14360.000000,1808.400000,extended,lora,180 +on8,0,0,24,1,0,54,4354.000000,187,0,2613.000000,1767.200000,extended,lora,180 +on6,0,0,24,1,0,688,4448.000000,188,0,13782.000000,1804.800000,extended,lora,180 +on7,0,0,24,1,0,1751,4431.000000,188,0,32871.000000,1798.000000,extended,lora,180 +on2,0,0,24,1,0,1706,4386.000000,188,0,32711.000000,1780.000000,extended,lora,180 +on0,1,12,24,0,0,0,4813.000000,188,0,-1.000000,2232.400000,extended,lora,180 +on9,0,0,24,1,0,4140,4320.000000,188,0,83441.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,360,4320.000000,188,0,9813.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1080,4320.000000,188,0,22768.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2745,4345.000000,188,0,56207.000000,1763.600000,extended,lora,180 +on11,0,0,24,1,0,1239,4459.000000,188,0,22928.000000,1809.200000,extended,lora,180 +on12,0,0,24,1,0,2908,4328.000000,188,0,59606.000000,1756.800000,extended,lora,180 +on5,0,0,24,1,0,1499,4359.000000,188,0,29027.000000,1769.200000,extended,lora,180 +on1,0,0,24,1,0,3420,4320.000000,188,0,71008.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,499,4439.000000,188,0,9635.000000,1801.200000,extended,lora,180 +on1,0,0,24,1,0,3060,4320.000000,189,0,62485.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,2340,4320.000000,189,0,49175.000000,1753.600000,extended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,189,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,1525,4385.000000,189,0,30528.000000,1779.600000,extended,lora,180 +on2,0,0,24,1,0,3600,4320.000000,189,0,72904.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,3060,4320.000000,189,0,62312.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,2700,4320.000000,189,0,56623.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,189,0,4325.000000,1753.600000,extended,lora,180 +on0,1,10,24,0,0,0,4808.000000,189,0,-1.000000,2179.200000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,189,0,1848.000000,1753.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,189,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,1620,4320.000000,189,0,34972.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,3833,4353.000000,189,0,76996.000000,1766.800000,extended,lora,180 +on5,0,0,24,1,0,1083,4320.000000,190,0,23500.000000,1753.600000,extended,lora,180 +on0,1,8,24,0,0,0,4602.000000,190,0,-1.000000,2045.600000,extended,lora,180 +on9,0,0,24,1,0,180,4320.000000,190,0,4138.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1232,4452.000000,190,0,23660.000000,1806.400000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,395,4335.000000,190,0,8371.000000,1759.600000,extended,lora,180 +on12,0,0,24,1,0,547,4320.000000,190,0,12353.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,1526,4386.000000,190,0,30483.000000,1780.000000,extended,lora,180 +on3,0,0,24,1,0,3060,4320.000000,190,0,62280.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1868,4368.000000,190,0,39449.000000,1772.800000,extended,lora,180 +on5,0,0,24,1,0,1967,4467.000000,191,0,36873.000000,1812.400000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,191,0,4552.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1532,4392.000000,191,0,31751.000000,1782.400000,extended,lora,180 +on1,0,0,24,1,0,884,4464.000000,191,0,18311.000000,1811.200000,extended,lora,180 +on3,0,0,24,1,0,441,4381.000000,191,0,8966.000000,1778.000000,extended,lora,180 +on12,0,0,24,1,0,480,4420.000000,191,0,8806.000000,1793.600000,extended,lora,180 +on6,0,0,24,1,0,213,4333.000000,191,0,4712.000000,1758.800000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,extended,lora,180 +on11,0,0,24,1,0,159,4459.000000,191,0,889.000000,1809.200000,extended,lora,180 +on9,0,0,24,1,0,2340,4320.000000,191,0,47887.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4904.000000,191,0,-1.000000,2243.200000,extended,lora,180 +on4,0,0,24,1,0,877,4457.000000,191,0,18151.000000,1808.400000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,191,0,34153.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,1342,4382.000000,192,0,28941.000000,1778.400000,extended,lora,180 +on12,0,0,24,1,0,1620,4320.000000,192,0,34120.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,1269,4320.000000,192,0,25490.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,0,4320.000000,192,0,582.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,540,4320.000000,192,0,11572.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,720,4320.000000,192,0,16355.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4962.000000,192,0,-1.000000,2266.400000,extended,lora,180 +on10,0,0,24,1,0,1192,4412.000000,192,0,25330.000000,1790.400000,extended,lora,180 +on1,0,0,24,1,0,180,4320.000000,192,0,6499.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1076,4476.000000,192,0,19822.000000,1816.000000,extended,lora,180 +on11,0,0,24,1,0,2749,4349.000000,192,0,56884.000000,1765.200000,extended,lora,180 +on9,0,0,24,1,0,1494,4354.000000,192,0,29101.000000,1767.200000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,192,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1260,4320.000000,193,0,27658.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2160,4320.000000,193,0,46358.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,180,4320.000000,193,0,4376.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,3009,4429.000000,193,0,57889.000000,1797.200000,extended,lora,180 +on3,0,0,24,1,0,2700,4320.000000,193,0,56199.000000,1753.600000,extended,lora,180 +on7,0,0,24,1,0,1320,4360.000000,193,0,27818.000000,1769.600000,extended,lora,180 +on5,0,0,24,1,0,2595,4375.000000,193,0,50790.000000,1775.600000,extended,lora,180 +on0,1,12,24,0,0,0,4858.000000,193,0,-1.000000,2250.400000,extended,lora,180 +on4,0,0,24,1,0,3770,4470.000000,193,0,73429.000000,1813.600000,extended,lora,180 +on10,0,0,24,1,0,900,4320.000000,193,0,21381.000000,1753.600000,extended,lora,180 +on2,0,0,24,1,0,360,4320.000000,193,0,9372.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,1697,4377.000000,193,0,33047.000000,1776.400000,extended,lora,180 +on6,0,0,24,1,0,2578,4358.000000,193,0,50630.000000,1768.800000,extended,lora,180 +on7,0,0,24,1,0,900,4320.000000,194,0,21084.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,720,4320.000000,194,0,15682.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,2210,4350.000000,194,0,46143.000000,1765.600000,extended,lora,180 +on1,0,0,24,1,0,3000,4420.000000,194,0,60031.000000,1793.600000,extended,lora,180 +on0,1,11,24,0,0,0,4925.000000,194,0,-1.000000,2251.600000,extended,lora,180 +on6,0,0,24,1,0,2019,4339.000000,194,0,41728.000000,1761.200000,extended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,194,0,-1.000000,1728.000000,extended,lora,180 +on4,0,0,24,1,0,236,4356.000000,194,0,7278.000000,1768.000000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,194,0,7449.000000,1753.600000,extended,lora,180 +on8,0,0,24,1,0,2887,4320.000000,194,0,60191.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,1357,4397.000000,194,0,26442.000000,1784.400000,extended,lora,180 +on3,0,0,24,1,0,1361,4401.000000,194,0,26282.000000,1786.000000,extended,lora,180 +on2,0,0,23,1,0,661,4299.000000,194,0,13487.000000,1745.200000,extended,lora,180 +on6,0,0,24,1,0,2204,4344.000000,195,0,43746.000000,1763.200000,extended,lora,180 +on8,0,0,24,1,0,2645,4425.000000,195,0,53798.000000,1795.600000,extended,lora,180 +on11,0,0,24,1,0,1867,4367.000000,195,0,36434.000000,1772.400000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,195,0,-1.000000,1728.000000,extended,lora,180 +on5,0,0,24,1,0,9,4320.000000,195,0,1586.000000,1753.600000,extended,lora,180 +on10,0,0,23,1,0,2723,4163.000000,195,0,61157.000000,1690.800000,extended,lora,180 +on1,0,0,24,1,0,661,4421.000000,195,0,13059.000000,1794.000000,extended,lora,180 +on9,0,0,24,1,0,1401,4441.000000,195,0,27810.000000,1802.000000,extended,lora,180 +on3,0,0,24,1,0,180,4320.000000,195,0,7322.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,900,4320.000000,195,0,19983.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,3240,4320.000000,195,0,66687.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4831.000000,195,0,-1.000000,2214.000000,extended,lora,180 +on7,0,0,24,1,0,2696,4476.000000,195,0,53638.000000,1816.000000,extended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,lora,180 +on2,0,0,24,1,0,1440,4320.000000,196,0,30468.000000,1753.600000,extended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,lora,180 +on12,0,0,24,1,0,2160,4320.000000,196,0,43408.000000,1753.600000,extended,lora,180 +on5,0,0,24,1,0,360,4320.000000,196,0,10787.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,3060,4320.000000,196,0,61410.000000,1753.600000,extended,lora,180 +on1,0,0,24,1,0,113,4413.000000,196,0,1905.000000,1790.800000,extended,lora,180 +on10,0,0,24,1,0,3029,4449.000000,196,0,60631.000000,1805.200000,extended,lora,180 +on0,1,8,24,0,0,0,4472.000000,196,0,-1.000000,1993.600000,extended,lora,180 +on3,0,0,24,1,0,3523,4403.000000,196,0,69426.000000,1786.800000,extended,lora,180 +on7,0,0,24,1,0,540,4320.000000,196,0,11247.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,2036,4356.000000,197,0,40288.000000,1768.000000,extended,lora,180 +on0,1,12,24,0,0,0,4640.000000,197,0,-1.000000,2163.200000,extended,lora,180 +on5,0,0,24,1,0,641,4401.000000,197,0,11481.000000,1786.000000,extended,lora,180 +on7,0,0,24,1,0,1240,4460.000000,197,0,22426.000000,1809.600000,extended,lora,180 +on4,0,0,24,1,0,1396,4436.000000,197,0,25761.000000,1800.000000,extended,lora,180 +on2,0,0,24,1,0,180,4320.000000,197,0,4649.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,858,4438.000000,197,0,16283.000000,1800.800000,extended,lora,180 +on11,0,0,24,1,0,598,4358.000000,197,0,11321.000000,1768.800000,extended,lora,180 +on6,0,0,24,1,0,413,4353.000000,197,0,8710.000000,1766.800000,extended,lora,180 +on1,0,0,23,1,0,959,4189.000000,197,0,21550.000000,1701.200000,extended,lora,180 +on12,0,0,24,1,0,2258,4398.000000,197,0,43680.000000,1784.800000,extended,lora,180 +on8,0,0,24,1,0,1900,4400.000000,197,0,36364.000000,1785.600000,extended,lora,180 +on9,0,0,24,1,0,920,4320.000000,197,0,21390.000000,1753.600000,extended,lora,180 +on0,1,9,24,0,0,0,4895.000000,198,0,-1.000000,2188.400000,extended,lora,180 +on12,0,0,23,1,0,0,4266.000000,198,0,2987.000000,1732.000000,extended,lora,180 +on5,0,0,24,1,0,463,4403.000000,198,0,9664.000000,1786.800000,extended,lora,180 +on11,0,0,24,1,0,180,4320.000000,198,0,6837.000000,1753.600000,extended,lora,180 +on4,0,0,24,1,0,2160,4320.000000,198,0,45254.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,lora,180 +on3,0,0,24,1,0,816,4396.000000,198,0,17683.000000,1784.000000,extended,lora,180 +on1,0,0,24,1,0,2425,4385.000000,198,0,48817.000000,1779.600000,extended,lora,180 +on8,0,0,24,1,0,2896,4320.000000,198,0,60104.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,900,4320.000000,198,0,21529.000000,1753.600000,extended,lora,180 +on9,0,0,24,1,0,2829,4429.000000,198,0,55183.000000,1797.200000,extended,lora,180 +on11,0,0,24,1,0,2159,4479.000000,199,0,40278.000000,1817.200000,extended,lora,180 +on3,0,0,24,1,0,2031,4351.000000,199,0,40438.000000,1766.000000,extended,lora,180 +on5,0,0,24,1,0,805,4385.000000,199,0,17610.000000,1779.600000,extended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,extended,lora,180 +on8,0,0,24,1,0,305,4425.000000,199,0,5009.000000,1795.600000,extended,lora,180 +on0,1,10,24,0,0,0,4828.000000,199,0,-1.000000,2187.200000,extended,lora,180 +on4,0,0,24,1,0,1440,4320.000000,199,0,29746.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,3159,4399.000000,199,0,63827.000000,1785.200000,extended,lora,180 +on12,0,0,24,1,0,540,4320.000000,199,0,12559.000000,1753.600000,extended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.000000,extended,lora,180 +on1,0,0,24,1,0,1461,4321.000000,199,0,29906.000000,1754.000000,extended,lora,180 +on2,0,0,24,1,0,783,4363.000000,199,0,17450.000000,1770.800000,extended,lora,180 +on7,0,0,24,1,0,3240,4320.000000,199,0,66189.000000,1753.600000,extended,lora,180 +on3,0,0,24,1,0,360,4320.000000,200,0,7829.000000,1753.600000,extended,lora,180 +on10,0,0,24,1,0,0,4320.000000,200,0,2758.000000,1753.600000,extended,lora,180 +on11,0,0,24,1,0,278,4398.000000,200,0,6869.000000,1784.800000,extended,lora,180 +on1,0,0,24,1,0,2880,4320.000000,200,0,60712.000000,1753.600000,extended,lora,180 +on12,0,0,24,1,0,1999,4320.000000,200,0,42263.000000,1753.600000,extended,lora,180 +on0,1,11,24,0,0,0,4890.000000,200,0,-1.000000,2237.600000,extended,lora,180 +on5,0,0,24,1,0,2107,4427.000000,200,0,42423.000000,1796.400000,extended,lora,180 +on8,0,0,24,1,0,1620,4320.000000,200,0,35790.000000,1753.600000,extended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,lora,180 +on7,0,0,24,1,0,348,4468.000000,200,0,7029.000000,1812.800000,extended,lora,180 +on9,0,0,24,1,0,1089,4320.000000,200,0,23265.000000,1753.600000,extended,lora,180 +on6,0,0,24,1,0,1076,4476.000000,200,0,20852.000000,1816.000000,extended,lora,180 +on4,0,0,24,1,0,836,4416.000000,200,0,15496.000000,1792.000000,extended,lora,180 +on6,0,0,27,1,0,1959,4863.497440,1,3,43156.001280,2062.166771,hintandextended,lora,180 +on9,0,0,26,1,0,1446,4824.303840,1,2,29316.003840,2090.969536,hintandextended,lora,180 +on12,0,0,26,1,0,1533,4682.300000,1,2,29156.001280,1933.239795,hintandextended,lora,180 +on11,0,0,24,1,0,759,4339.997440,1,0,17486.001280,1761.599386,hintandextended,lora,180 +on8,0,0,25,1,0,1013,4504.000000,1,1,24034.001280,1875.199590,hintandextended,lora,180 +on2,0,0,25,1,0,1226,4503.198720,1,1,27313.001280,1858.287488,hintandextended,lora,180 +on10,0,0,24,1,0,1620,4321.001280,1,0,33315.001280,1782.640717,hintandextended,lora,180 +on5,0,0,26,1,0,1481,4820.403840,1,2,27473.003840,1953.969741,hintandextended,lora,180 +on3,0,0,25,1,0,1766,4502.000000,1,1,37423.001280,1858.080000,hintandextended,lora,180 +on4,0,0,28,1,0,1991,5043.100000,1,5,46909.001280,2170.007590,hintandextended,lora,180 +on1,0,0,24,1,0,249,4369.001280,1,0,4653.001280,1773.200717,hintandextended,lora,180 +on7,0,0,25,1,0,900,4501.007680,1,1,19137.602560,1854.691891,hintandextended,lora,180 +on0,1,12,24,0,0,0,4711.611520,1,0,-1.000000,2191.849318,hintandextended,lora,180 +on10,0,0,30,1,0,2106,5542.403840,2,6,35710.003840,2295.873331,hintandextended,lora,180 +on3,0,0,24,1,0,1173,4467.000000,2,1,23050.003840,1813.264205,hintandextended,lora,180 +on4,0,0,27,1,0,1702,5000.603840,2,3,31116.003840,2066.369741,hintandextended,lora,180 +on7,0,0,28,1,0,1948,5042.601280,2,4,35550.001280,2082.368102,hintandextended,lora,180 +on8,0,0,24,1,0,795,4377.001280,2,0,15906.001280,1811.184102,hintandextended,lora,180 +on1,0,0,29,1,0,2114,5222.901280,2,5,38949.001280,2160.487898,hintandextended,lora,180 +on11,0,0,26,1,0,1378,4682.600000,2,2,28249.001280,1905.488000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.015360,2,0,-1.000000,2259.210445,hintandextended,lora,180 +on6,0,0,24,1,0,571,4332.001280,2,0,11090.001280,1776.800307,hintandextended,lora,180 +on2,0,0,25,1,0,1221,4612.500000,2,2,22890.001280,1922.919795,hintandextended,lora,180 +on9,0,0,27,1,0,1617,5002.303840,2,4,28409.003840,2081.017126,hintandextended,lora,180 +on5,0,0,25,1,0,848,4502.000000,2,1,19018.001280,1861.872205,hintandextended,lora,180 +on12,0,0,27,1,0,1619,4861.600000,2,3,30956.001280,1993.919795,hintandextended,lora,180 +on5,0,0,27,1,0,1356,4862.900000,3,3,31382.001280,2055.126976,hintandextended,lora,180 +on0,1,12,24,0,0,0,4804.212800,3,0,-1.000000,2228.890240,hintandextended,lora,180 +on4,0,0,25,1,0,1065,4502.300000,3,1,25353.001280,1887.208000,hintandextended,lora,180 +on9,0,0,25,1,0,957,4539.008960,3,1,19319.003840,1850.227994,hintandextended,lora,180 +on6,0,0,25,1,0,825,4503.300000,3,2,19159.001280,1888.679590,hintandextended,lora,180 +on10,0,0,25,1,0,390,4512.602560,3,1,8466.603840,1859.025434,hintandextended,lora,180 +on1,0,0,26,1,0,516,4824.803840,3,2,5736.603840,1990.769126,hintandextended,lora,180 +on2,0,0,25,1,0,147,4501.001280,3,1,5575.001280,1828.944307,hintandextended,lora,180 +on11,0,0,26,1,0,495,4683.500000,3,2,8305.001280,1948.503181,hintandextended,lora,180 +on7,0,0,24,1,0,0,4322.000000,3,0,1404.001280,1785.824000,hintandextended,lora,180 +on3,0,0,25,1,0,671,4501.597440,3,1,16399.001280,1852.799181,hintandextended,lora,180 +on8,0,0,25,1,0,1376,4583.305120,3,2,27881.003840,1870.282662,hintandextended,lora,180 +on12,0,0,26,1,0,1537,4779.100000,3,3,32982.001280,2016.279795,hintandextended,lora,180 +on9,0,0,25,1,0,720,4503.605120,4,2,15401.602560,1901.938867,hintandextended,lora,180 +on7,0,0,25,1,0,326,4501.001280,4,1,7604.001280,1854.640717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4710.811520,4,0,-1.000000,2191.529728,hintandextended,lora,180 +on2,0,0,25,1,0,2425,4502.600000,4,1,53053.001280,1886.256205,hintandextended,lora,180 +on5,0,0,25,1,0,1234,4500.001280,4,1,24233.001280,1825.600717,hintandextended,lora,180 +on10,0,0,24,1,0,180,4322.000000,4,0,4465.001280,1757.344205,hintandextended,lora,180 +on12,0,0,25,1,0,1620,4502.001280,4,1,34124.001280,1857.024512,hintandextended,lora,180 +on3,0,0,24,1,0,17,4321.001280,4,0,2325.001280,1765.424922,hintandextended,lora,180 +on11,0,0,25,1,0,1260,4502.601280,4,1,27312.602560,1831.649126,hintandextended,lora,180 +on4,0,0,25,1,0,2993,4501.000000,4,1,59258.001280,1829.200000,hintandextended,lora,180 +on8,0,0,24,1,0,1833,4390.603840,4,1,37388.603840,1837.841741,hintandextended,lora,180 +on6,0,0,25,1,0,1055,4501.002560,4,1,21513.001280,1829.201229,hintandextended,lora,180 +on1,0,0,25,1,0,1913,4501.200000,4,1,37227.001280,1829.023795,hintandextended,lora,180 +on10,0,0,26,1,0,1160,4820.903840,5,2,20856.003840,1990.665536,hintandextended,lora,180 +on0,1,12,24,0,0,0,4903.617920,5,0,-1.000000,2268.651674,hintandextended,lora,180 +on5,0,0,24,1,0,360,4321.001280,5,0,7771.001280,1771.824717,hintandextended,lora,180 +on4,0,0,24,1,0,627,4387.001280,5,0,13706.001280,1780.400717,hintandextended,lora,180 +on7,0,0,26,1,0,1094,4705.402560,5,3,25163.001280,1948.160614,hintandextended,lora,180 +on6,0,0,25,1,0,1491,4531.603840,5,1,32261.603840,1838.241741,hintandextended,lora,180 +on9,0,0,26,1,0,950,4683.502560,5,3,20696.001280,1945.992819,hintandextended,lora,180 +on2,0,0,26,1,0,756,4820.308960,5,2,13866.003840,1968.444198,hintandextended,lora,180 +on8,0,0,24,1,0,653,4417.202560,5,1,15761.001280,1824.049024,hintandextended,lora,180 +on11,0,0,27,1,0,1308,4863.401280,5,4,28170.001280,2063.904102,hintandextended,lora,180 +on1,0,0,28,1,0,1332,5183.705120,5,4,28330.003840,2221.545843,hintandextended,lora,180 +on12,0,0,27,1,0,1398,4863.500000,5,3,32100.001280,2081.943386,hintandextended,lora,180 +on3,0,0,24,1,0,0,4320.001280,5,0,2413.001280,1753.600717,hintandextended,lora,180 +on11,0,0,26,1,0,1893,4817.800000,6,3,35649.001280,1961.839181,hintandextended,lora,180 +on8,0,0,27,1,0,1980,5002.608960,6,3,37587.003840,2083.907789,hintandextended,lora,180 +on2,0,0,27,1,0,1952,4862.997440,6,3,37427.001280,1998.478771,hintandextended,lora,180 +on7,0,0,24,1,0,0,4321.997440,6,0,3635.001280,1755.358771,hintandextended,lora,180 +on9,0,0,24,1,0,1080,4321.001280,6,0,21996.001280,1774.448717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4897.014080,6,0,-1.000000,2266.010138,hintandextended,lora,180 +on4,0,0,26,1,0,2253,4682.497440,6,2,44407.001280,1904.038976,hintandextended,lora,180 +on3,0,0,24,1,0,1503,4363.001280,6,0,30359.001280,1770.800717,hintandextended,lora,180 +on1,0,0,27,1,0,2055,4863.500000,6,3,42622.001280,2066.679386,hintandextended,lora,180 +on5,0,0,25,1,0,1714,4641.303840,6,1,35809.003840,1918.761741,hintandextended,lora,180 +on10,0,0,25,1,0,1275,4503.008960,6,1,28225.003840,1892.307584,hintandextended,lora,180 +on6,0,0,28,1,0,2466,5043.702560,6,5,48716.001280,2140.248819,hintandextended,lora,180 +on12,0,0,25,1,0,1314,4501.300000,6,1,28065.001280,1844.328000,hintandextended,lora,180 +on3,0,0,25,1,0,852,4502.300000,7,1,21588.001280,1882.392000,hintandextended,lora,180 +on5,0,0,26,1,0,633,4682.500000,7,2,13988.001280,1927.719795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5024.220480,7,0,-1.000000,2316.893926,hintandextended,lora,180 +on6,0,0,25,1,0,366,4502.300000,7,1,8263.001280,1873.304000,hintandextended,lora,180 +on4,0,0,25,1,0,301,4501.197440,7,1,7035.001280,1829.022771,hintandextended,lora,180 +on12,0,0,26,1,0,493,4824.803840,7,2,7196.603840,1973.890150,hintandextended,lora,180 +on7,0,0,26,1,0,832,4683.300000,7,2,16987.001280,1922.407590,hintandextended,lora,180 +on10,0,0,24,1,0,23,4326.002560,7,0,3669.001280,1824.865638,hintandextended,lora,180 +on8,0,0,25,1,0,407,4530.005120,7,1,8423.003840,1897.666048,hintandextended,lora,180 +on2,0,0,24,1,0,3859,4379.001280,7,0,78090.001280,1777.200717,hintandextended,lora,180 +on1,0,0,25,1,0,235,4537.005120,7,1,3829.003840,1870.802458,hintandextended,lora,180 +on9,0,0,26,1,0,813,4825.202560,7,2,14149.005120,1994.449638,hintandextended,lora,180 +on11,0,0,27,1,0,1088,5002.906400,7,3,17148.603840,2045.322355,hintandextended,lora,180 +on0,1,12,23,0,0,0,4882.216640,8,0,-1.000000,2260.091366,hintandextended,lora,180 +on3,0,0,24,1,0,1373,4420.200000,8,1,28812.001280,1796.880000,hintandextended,lora,180 +on5,0,0,25,1,0,360,4500.010240,8,1,7973.005120,1825.604506,hintandextended,lora,180 +on7,0,0,24,1,0,164,4464.001280,8,0,2085.001280,1811.200717,hintandextended,lora,180 +on11,0,0,25,1,0,693,4501.297440,8,1,14989.002560,1830.598976,hintandextended,lora,180 +on10,0,0,26,1,0,1217,4682.502560,8,2,24115.001280,1942.617024,hintandextended,lora,180 +on6,0,0,25,1,0,512,4503.200000,8,1,13137.001280,1877.344000,hintandextended,lora,180 +on1,0,0,28,1,0,703,5044.100000,8,7,19395.001280,2179.046976,hintandextended,lora,180 +on12,0,0,29,1,0,1107,5364.603840,8,5,24276.603840,2318.416922,hintandextended,lora,180 +on4,0,0,24,1,0,320,4440.001280,8,0,6427.001280,1801.600717,hintandextended,lora,180 +on2,0,0,27,1,0,930,5001.303840,8,3,19555.003840,2057.801331,hintandextended,lora,180 +on9,0,0,25,1,0,503,4656.300000,8,2,7806.001280,1950.679590,hintandextended,lora,180 +on8,0,0,25,1,0,32,4514.600000,8,1,2245.603840,1859.872614,hintandextended,lora,180 +on11,0,0,24,1,0,412,4352.002560,9,0,9008.001280,1766.401434,hintandextended,lora,180 +on6,0,0,25,1,0,757,4501.300000,9,1,17994.001280,1841.479795,hintandextended,lora,180 +on2,0,0,24,1,0,2424,4386.001280,9,0,49011.001280,1825.440717,hintandextended,lora,180 +on7,0,0,24,1,0,2067,4388.003840,9,0,42580.001280,1809.441946,hintandextended,lora,180 +on9,0,0,24,1,0,1260,4323.997440,9,0,25700.001280,1805.567181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4590.006400,9,0,-1.000000,2143.208090,hintandextended,lora,180 +on12,0,0,25,1,0,3169,4501.300000,9,1,64432.001280,1830.504000,hintandextended,lora,180 +on10,0,0,25,1,0,155,4501.202560,9,1,4873.001280,1829.281024,hintandextended,lora,180 +on1,0,0,24,1,0,154,4456.001280,9,0,1650.001280,1815.041126,hintandextended,lora,180 +on4,0,0,25,1,0,1596,4501.002560,9,1,30751.001280,1840.721434,hintandextended,lora,180 +on5,0,0,24,1,0,1080,4323.003840,9,0,22234.001280,1824.242150,hintandextended,lora,180 +on3,0,0,24,1,0,3,4352.005120,9,1,1810.003840,1766.402867,hintandextended,lora,180 +on8,0,0,24,1,0,560,4321.002560,9,0,11747.001280,1782.641434,hintandextended,lora,180 +on2,0,0,25,1,0,1686,4634.502560,10,2,29799.001280,1883.960819,hintandextended,lora,180 +on10,0,0,25,1,0,1398,4640.303840,10,1,29036.003840,1909.897741,hintandextended,lora,180 +on7,0,0,24,1,0,650,4410.001280,10,0,13752.001280,1789.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4883.815360,10,0,-1.000000,2260.729830,hintandextended,lora,180 +on4,0,0,24,1,0,1422,4462.001280,10,0,28876.001280,1810.400717,hintandextended,lora,180 +on6,0,0,24,1,0,937,4337.001280,10,0,20723.001280,1760.400717,hintandextended,lora,180 +on9,0,0,26,1,0,1515,4824.903840,10,2,29960.603840,2029.705331,hintandextended,lora,180 +on8,0,0,25,1,0,473,4500.001280,10,1,9620.001280,1825.600717,hintandextended,lora,180 +on3,0,0,25,1,0,941,4523.602560,10,1,20883.603840,1863.473638,hintandextended,lora,180 +on1,0,0,24,1,0,159,4460.001280,10,0,2030.001280,1834.624717,hintandextended,lora,180 +on12,0,0,26,1,0,2011,4894.106400,10,3,35625.603840,1986.442560,hintandextended,lora,180 +on5,0,0,25,1,0,1657,4501.300000,10,1,35464.001280,1850.503795,hintandextended,lora,180 +on11,0,0,25,1,0,293,4501.003840,10,1,6236.001280,1832.305946,hintandextended,lora,180 +on12,0,0,26,1,0,1508,4757.900000,11,4,31534.001280,1993.559386,hintandextended,lora,180 +on3,0,0,24,1,0,1800,4321.000000,11,0,37430.001280,1757.200000,hintandextended,lora,180 +on11,0,0,25,1,0,135,4506.003840,11,1,4072.001280,1919.106150,hintandextended,lora,180 +on6,0,0,24,1,0,992,4394.001280,11,0,19948.001280,1833.600717,hintandextended,lora,180 +on8,0,0,25,1,0,993,4646.201280,11,1,18209.003840,1960.081331,hintandextended,lora,180 +on2,0,0,26,0,0,4251,4841.200000,11,3,-1.000000,2017.295181,hintandextended,lora,180 +on9,0,0,26,1,0,1156,4825.802560,11,2,20108.003840,2093.889229,hintandextended,lora,180 +on1,0,0,24,1,0,34,4334.998720,11,0,350.001280,1759.599898,hintandextended,lora,180 +on5,0,0,24,1,0,845,4425.003840,11,0,18049.001280,1795.601946,hintandextended,lora,180 +on10,0,0,27,1,0,1230,4864.897440,11,3,26709.001280,2047.622976,hintandextended,lora,180 +on7,0,0,25,1,0,1,4503.993600,11,1,510.003840,1865.758464,hintandextended,lora,180 +on0,1,11,24,0,0,0,4857.615360,11,0,-1.000000,2224.654541,hintandextended,lora,180 +on4,0,0,25,1,0,1620,4505.603840,11,1,35209.602560,1950.290355,hintandextended,lora,180 +on3,0,0,24,1,0,660,4422.003840,12,0,13402.003840,1805.762355,hintandextended,lora,180 +on10,0,0,24,1,0,366,4322.000000,12,0,10903.001280,1775.359590,hintandextended,lora,180 +on5,0,0,27,1,0,901,5120.610240,12,4,15115.603840,2146.708301,hintandextended,lora,180 +on7,0,0,24,1,0,0,4321.000000,12,0,2746.001280,1756.944000,hintandextended,lora,180 +on9,0,0,25,1,0,633,4641.203840,12,1,11063.003840,1910.465741,hintandextended,lora,180 +on2,0,0,27,1,0,1112,4861.801280,12,4,27804.001280,2074.224307,hintandextended,lora,180 +on6,0,0,25,1,0,141,4502.001280,12,1,4971.001280,1856.032717,hintandextended,lora,180 +on4,0,0,26,1,0,687,4682.501280,12,2,13242.001280,1921.800922,hintandextended,lora,180 +on11,0,0,24,1,0,2456,4416.001280,12,0,50635.001280,1792.000717,hintandextended,lora,180 +on1,0,0,24,1,0,924,4325.001280,12,0,18333.001280,1781.840717,hintandextended,lora,180 +on8,0,0,28,1,0,1257,5044.197440,12,4,24024.001280,2131.758362,hintandextended,lora,180 +on12,0,0,27,1,0,752,4862.702560,12,3,14954.001280,2031.848819,hintandextended,lora,180 +on0,1,12,24,0,0,0,4845.612800,12,0,-1.000000,2245.450035,hintandextended,lora,180 +on7,0,0,27,1,0,853,5005.903840,13,3,11365.603840,2120.073331,hintandextended,lora,180 +on12,0,0,26,1,0,795,4820.903840,13,2,17083.003840,1996.361126,hintandextended,lora,180 +on3,0,0,25,1,0,693,4535.200000,13,2,20699.001280,1885.344205,hintandextended,lora,180 +on4,0,0,26,1,0,479,4822.903840,13,2,6697.603840,1986.409741,hintandextended,lora,180 +on6,0,0,24,1,0,120,4375.300000,13,2,6536.001280,1796.903590,hintandextended,lora,180 +on2,0,0,25,1,0,646,4672.500000,13,2,11204.001280,1903.303386,hintandextended,lora,180 +on10,0,0,26,1,0,726,4820.303840,13,2,10427.003840,1956.921536,hintandextended,lora,180 +on9,0,0,24,1,0,438,4378.001280,13,0,10267.001280,1776.800717,hintandextended,lora,180 +on11,0,0,26,1,0,1184,4681.600000,13,2,24863.001280,1918.479795,hintandextended,lora,180 +on8,0,0,24,1,0,3,4321.997440,13,0,2169.001280,1782.527181,hintandextended,lora,180 +on5,0,0,26,1,0,1189,4822.903840,13,2,20860.603840,1966.473741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5024.819200,13,0,-1.000000,2317.131366,hintandextended,lora,180 +on1,0,0,25,1,0,706,4502.300000,13,1,16923.001280,1861.512000,hintandextended,lora,180 +on8,0,0,25,1,0,360,4503.000000,14,1,9267.001280,1882.383795,hintandextended,lora,180 +on7,0,0,27,1,0,1657,4862.700000,14,4,34461.001280,2035.479590,hintandextended,lora,180 +on9,0,0,25,1,0,900,4503.000000,14,1,18681.001280,1887.024000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4959.216640,14,0,-1.000000,2290.891571,hintandextended,lora,180 +on3,0,0,25,1,0,0,4504.602560,14,1,2012.602560,1910.592819,hintandextended,lora,180 +on1,0,0,25,1,0,293,4595.405120,14,1,6944.603840,1887.602458,hintandextended,lora,180 +on4,0,0,25,1,0,617,4699.303840,14,2,14386.003840,1918.473536,hintandextended,lora,180 +on11,0,0,24,1,0,1408,4449.001280,14,0,26655.001280,1833.584717,hintandextended,lora,180 +on2,0,0,25,1,0,480,4502.302560,14,1,14226.001280,1855.945024,hintandextended,lora,180 +on10,0,0,25,1,0,785,4513.605120,14,2,16052.001280,1854.402048,hintandextended,lora,180 +on12,0,0,25,1,0,355,4501.200000,14,1,6783.001280,1829.023795,hintandextended,lora,180 +on6,0,0,25,1,0,1594,4501.997440,14,1,31825.001280,1847.359181,hintandextended,lora,180 +on5,0,0,25,1,0,955,4814.303840,14,2,16212.003840,1984.537946,hintandextended,lora,180 +on3,0,0,24,1,0,1263,4321.000000,15,0,28841.001280,1756.560000,hintandextended,lora,180 +on5,0,0,26,1,0,1066,4820.303840,15,2,22536.003840,1981.081741,hintandextended,lora,180 +on1,0,0,24,1,0,959,4395.000000,15,1,18340.001280,1783.600410,hintandextended,lora,180 +on6,0,0,24,1,0,0,4320.001280,15,0,3692.001280,1753.600717,hintandextended,lora,180 +on7,0,0,25,1,0,931,4640.005120,15,1,17329.003840,1882.226253,hintandextended,lora,180 +on12,0,0,26,1,0,1198,4763.102560,15,3,22376.001280,1973.976614,hintandextended,lora,180 +on4,0,0,26,1,0,1354,4821.306400,15,2,29001.003840,2002.282970,hintandextended,lora,180 +on11,0,0,24,1,0,540,4322.000000,15,0,13148.001280,1773.504000,hintandextended,lora,180 +on9,0,0,26,1,0,1088,4821.303840,15,2,18500.003840,1971.017536,hintandextended,lora,180 +on0,1,12,24,0,0,0,5053.019200,15,0,-1.000000,2328.411776,hintandextended,lora,180 +on8,0,0,24,1,0,1804,4321.300000,15,1,40018.001280,1783.688000,hintandextended,lora,180 +on2,0,0,29,1,0,1826,5223.300000,15,5,31515.001280,2127.927590,hintandextended,lora,180 +on10,0,0,24,1,0,774,4354.001280,15,0,17169.001280,1767.200717,hintandextended,lora,180 +on7,0,0,24,1,0,1108,4432.300000,16,1,22305.001280,1853.303181,hintandextended,lora,180 +on12,0,0,27,1,0,1866,5003.103840,16,3,34106.603840,2057.449536,hintandextended,lora,180 +on3,0,0,24,1,0,1371,4412.001280,16,0,27322.001280,1818.464512,hintandextended,lora,180 +on8,0,0,25,1,0,900,4501.003840,16,1,19853.001280,1854.481946,hintandextended,lora,180 +on10,0,0,26,1,0,507,4680.601280,16,3,11216.001280,1929.680512,hintandextended,lora,180 +on5,0,0,24,1,0,1515,4378.001280,16,1,30870.001280,1776.800717,hintandextended,lora,180 +on1,0,0,26,1,0,1565,4822.203840,16,2,27482.003840,1986.161536,hintandextended,lora,180 +on11,0,0,25,1,0,526,4501.297440,16,1,9835.001280,1828.359181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4671.610240,16,0,-1.000000,2175.848397,hintandextended,lora,180 +on2,0,0,26,1,0,1690,4682.600000,16,2,33945.001280,1934.095181,hintandextended,lora,180 +on9,0,0,24,1,0,81,4381.001280,16,0,2927.001280,1778.000922,hintandextended,lora,180 +on4,0,0,24,1,0,180,4321.000000,16,0,6446.001280,1756.944000,hintandextended,lora,180 +on6,0,0,26,1,0,1807,4682.900000,16,2,39613.001280,1952.167795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4794.812800,17,0,-1.000000,2225.130650,hintandextended,lora,180 +on6,0,0,25,1,0,949,4503.298720,17,1,21419.001280,1856.439488,hintandextended,lora,180 +on5,0,0,26,1,0,1090,4823.906400,17,2,21580.603840,2005.690765,hintandextended,lora,180 +on11,0,0,25,1,0,814,4643.603840,17,2,14717.603840,1898.945946,hintandextended,lora,180 +on1,0,0,25,1,0,621,4501.200000,17,1,14556.001280,1829.023795,hintandextended,lora,180 +on2,0,0,24,1,0,2225,4372.300000,17,2,50487.001280,1835.000000,hintandextended,lora,180 +on12,0,0,24,1,0,0,4322.001280,17,0,2703.001280,1789.984922,hintandextended,lora,180 +on10,0,0,26,1,0,1106,4684.303840,17,2,22365.001280,1965.209536,hintandextended,lora,180 +on3,0,0,26,1,0,479,4825.906400,17,3,7781.603840,2048.202970,hintandextended,lora,180 +on7,0,0,25,1,0,1385,4504.300000,17,1,27790.001280,1882.840000,hintandextended,lora,180 +on8,0,0,25,1,0,294,4500.997440,17,1,6413.001280,1825.999181,hintandextended,lora,180 +on4,0,0,23,1,0,497,4439.001280,17,0,7621.001280,1838.864717,hintandextended,lora,180 +on9,0,0,24,1,0,1493,4362.401280,17,1,31115.401280,1784.320717,hintandextended,lora,180 +on3,0,0,28,1,0,884,5082.203840,18,5,18495.001280,2148.385946,hintandextended,lora,180 +on5,0,0,28,1,0,758,5212.503840,18,5,15995.003840,2203.032717,hintandextended,lora,180 +on8,0,0,25,1,0,0,4501.006400,18,1,2430.602560,1827.875174,hintandextended,lora,180 +on1,0,0,25,1,0,635,4640.203840,18,1,9223.003840,1881.889741,hintandextended,lora,180 +on10,0,0,26,1,0,1083,4682.600000,18,3,23318.001280,1935.119795,hintandextended,lora,180 +on4,0,0,26,1,0,942,4821.003840,18,2,14035.003840,1963.233741,hintandextended,lora,180 +on12,0,0,28,1,0,1361,5181.603840,18,4,23478.003840,2132.961126,hintandextended,lora,180 +on2,0,0,26,1,0,389,4681.300000,18,2,9063.001280,1903.719795,hintandextended,lora,180 +on7,0,0,24,1,0,113,4396.200000,18,1,3958.001280,1815.487795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5131.621760,18,0,-1.000000,2359.853210,hintandextended,lora,180 +on6,0,0,28,1,0,849,5042.801280,18,4,15835.001280,2097.743898,hintandextended,lora,180 +on11,0,0,25,1,0,273,4640.203840,18,1,4118.003840,1881.889741,hintandextended,lora,180 +on9,0,0,26,1,0,494,4683.600000,18,2,13875.001280,1983.582976,hintandextended,lora,180 +on7,0,0,24,1,0,1493,4354.001280,19,0,30184.001280,1795.840717,hintandextended,lora,180 +on12,0,0,26,1,0,988,4822.903840,19,2,20368.603840,2013.337741,hintandextended,lora,180 +on3,0,0,26,1,0,208,4823.902560,19,2,4819.603840,1987.737024,hintandextended,lora,180 +on10,0,0,24,1,0,0,4321.000000,19,0,3476.001280,1756.688000,hintandextended,lora,180 +on11,0,0,26,1,0,587,4681.301280,19,2,11728.001280,1904.936512,hintandextended,lora,180 +on6,0,0,25,1,0,683,4686.006400,19,2,10263.003840,1900.002970,hintandextended,lora,180 +on0,1,12,24,0,0,0,5296.819200,19,0,-1.000000,2425.932800,hintandextended,lora,180 +on1,0,0,24,1,0,720,4324.001280,19,0,17237.001280,1814.944922,hintandextended,lora,180 +on8,0,0,24,1,0,980,4432.001280,19,1,20208.001280,1798.400717,hintandextended,lora,180 +on9,0,0,24,1,0,1980,4321.000000,19,0,39813.001280,1757.200000,hintandextended,lora,180 +on5,0,0,24,1,0,195,4321.003840,19,0,4658.001280,1754.545536,hintandextended,lora,180 +on2,0,0,24,1,0,428,4497.500000,19,2,10103.001280,1831.047795,hintandextended,lora,180 +on4,0,0,25,1,0,1499,4542.603840,19,1,30344.603840,1915.169946,hintandextended,lora,180 +on8,0,0,24,1,0,2520,4321.000000,20,0,51859.001280,1754.000410,hintandextended,lora,180 +on6,0,0,25,1,0,1622,4505.297440,20,1,38581.001280,1917.863181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4530.003840,20,0,-1.000000,2119.207885,hintandextended,lora,180 +on2,0,0,26,1,0,1353,4682.303840,20,3,26597.001280,1948.441741,hintandextended,lora,180 +on10,0,0,25,1,0,862,4503.301280,20,2,18948.001280,1917.768717,hintandextended,lora,180 +on5,0,0,25,1,0,1190,4503.300000,20,1,25262.001280,1889.448614,hintandextended,lora,180 +on11,0,0,26,1,0,2151,4685.598720,20,3,41455.001280,1995.039693,hintandextended,lora,180 +on1,0,0,24,1,0,360,4323.000000,20,0,7922.001280,1784.240614,hintandextended,lora,180 +on4,0,0,25,1,0,651,4502.294880,20,1,15361.001280,1837.558362,hintandextended,lora,180 +on3,0,0,24,1,0,1766,4446.001280,20,0,34381.001280,1804.000717,hintandextended,lora,180 +on9,0,0,25,1,0,3853,4501.300000,20,1,79332.001280,1846.440000,hintandextended,lora,180 +on12,0,0,25,1,0,3600,4502.000000,20,1,74966.001280,1858.240000,hintandextended,lora,180 +on7,0,0,24,1,0,358,4480.002560,20,0,6643.001280,1859.201434,hintandextended,lora,180 +on3,0,0,24,1,0,1980,4322.002560,21,0,40751.001280,1785.921638,hintandextended,lora,180 +on4,0,0,27,1,0,763,4863.900000,21,3,12452.001280,2026.103795,hintandextended,lora,180 +on10,0,0,25,1,0,294,4503.998720,21,1,6021.001280,1865.887693,hintandextended,lora,180 +on0,1,12,24,0,0,0,4803.214080,21,0,-1.000000,2228.490957,hintandextended,lora,180 +on7,0,0,24,1,0,3260,4320.001280,21,0,65866.001280,1753.600717,hintandextended,lora,180 +on8,0,0,25,1,0,368,4501.301280,21,1,8480.001280,1856.008717,hintandextended,lora,180 +on12,0,0,26,1,0,399,4820.203840,21,2,6181.003840,1953.889741,hintandextended,lora,180 +on6,0,0,25,1,0,968,4503.300000,21,1,22431.001280,1882.535795,hintandextended,lora,180 +on1,0,0,25,1,0,900,4501.996160,21,1,21506.602560,1829.294669,hintandextended,lora,180 +on5,0,0,25,1,0,0,4502.000000,21,1,496.602560,1857.680000,hintandextended,lora,180 +on2,0,0,25,1,0,1191,4501.301280,21,1,26113.001280,1865.800717,hintandextended,lora,180 +on9,0,0,26,1,0,533,4822.306400,21,2,8640.003840,2019.002765,hintandextended,lora,180 +on11,0,0,24,1,0,33,4333.602560,21,0,319.001280,1759.041434,hintandextended,lora,180 +on7,0,0,25,1,0,1555,4503.597440,22,1,34961.001280,1887.550976,hintandextended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,hintandextended,lora,180 +on6,0,0,25,1,0,1454,4503.001280,22,1,30553.603840,1884.081126,hintandextended,lora,180 +on4,0,0,24,1,0,180,4321.001280,22,0,4972.001280,1757.200922,hintandextended,lora,180 +on5,0,0,24,1,0,62,4362.001280,22,0,1465.001280,1770.400717,hintandextended,lora,180 +on1,0,0,24,1,0,564,4326.003840,22,0,13061.001280,1813.026150,hintandextended,lora,180 +on0,1,11,24,0,0,0,4722.208960,22,0,-1.000000,2170.489114,hintandextended,lora,180 +on9,0,0,24,1,0,1260,4323.997440,22,0,27171.001280,1784.863386,hintandextended,lora,180 +on8,0,0,25,1,0,4065,4500.300000,22,1,84629.000000,1837.720000,hintandextended,lora,180 +on12,0,0,23,1,0,1334,4261.197440,22,1,30392.001280,1769.982976,hintandextended,lora,180 +on3,0,0,24,1,0,898,4482.998720,22,0,18314.001280,1880.240102,hintandextended,lora,180 +on2,0,0,25,1,0,3042,4500.001280,22,1,61225.001280,1825.600717,hintandextended,lora,180 +on11,0,0,25,1,0,553,4501.397440,22,1,13221.603840,1826.208000,hintandextended,lora,180 +on9,0,0,25,1,0,1855,4501.300000,23,1,37956.001280,1849.320000,hintandextended,lora,180 +on10,0,0,26,1,0,498,4821.012800,23,2,6689.003840,1982.389734,hintandextended,lora,180 +on1,0,0,26,1,0,454,4683.802560,23,2,8369.001280,1958.577024,hintandextended,lora,180 +on6,0,0,25,1,0,478,4501.000000,23,1,13449.001280,1829.040000,hintandextended,lora,180 +on8,0,0,29,1,0,951,5363.505120,23,5,15189.003840,2265.657229,hintandextended,lora,180 +on11,0,0,25,1,0,164,4504.000000,23,1,6529.001280,1881.776410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.015360,23,0,-1.000000,2259.211264,hintandextended,lora,180 +on2,0,0,25,1,0,2089,4501.300000,23,1,43276.001280,1840.680000,hintandextended,lora,180 +on3,0,0,24,1,0,118,4419.001280,23,0,3364.001280,1821.584717,hintandextended,lora,180 +on4,0,0,24,1,0,88,4389.003840,23,0,3524.003840,1809.841741,hintandextended,lora,180 +on12,0,0,27,1,0,727,5000.903840,23,3,13609.003840,2058.089536,hintandextended,lora,180 +on7,0,0,24,1,0,744,4399.300000,23,1,18956.001280,1831.079795,hintandextended,lora,180 +on5,0,0,27,1,0,627,4865.098720,23,4,15029.001280,2092.487488,hintandextended,lora,180 +on2,0,0,27,1,0,1562,4864.900000,24,3,30781.001280,2068.903590,hintandextended,lora,180 +on10,0,0,25,1,0,2880,4503.000000,24,1,58781.001280,1870.320205,hintandextended,lora,180 +on6,0,0,25,1,0,842,4609.902560,24,4,18932.001280,1936.025024,hintandextended,lora,180 +on12,0,0,24,1,0,701,4400.196160,24,1,15921.001280,1811.918874,hintandextended,lora,180 +on3,0,0,25,1,0,1526,4569.602560,24,1,30942.603840,1910.721434,hintandextended,lora,180 +on11,0,0,24,1,0,261,4381.001280,24,0,6226.001280,1778.000717,hintandextended,lora,180 +on9,0,0,25,1,0,3240,4501.602560,24,1,66732.602560,1839.089434,hintandextended,lora,180 +on1,0,0,24,1,0,1103,4324.998720,24,0,24853.001280,1755.600102,hintandextended,lora,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8719.001280,1753.600205,hintandextended,lora,180 +on5,0,0,25,1,0,444,4507.292320,24,2,13439.001280,1949.669338,hintandextended,lora,180 +on0,1,12,24,0,0,0,4661.211520,24,0,-1.000000,2171.691162,hintandextended,lora,180 +on7,0,0,25,1,0,1374,4503.997440,24,1,28041.001280,1852.479386,hintandextended,lora,180 +on4,0,0,27,1,0,1594,5001.503840,24,3,28201.003840,2032.649126,hintandextended,lora,180 +on3,0,0,25,1,0,62,4543.605120,25,1,989.603840,1846.290458,hintandextended,lora,180 +on4,0,0,25,1,0,993,4643.003840,25,1,17924.003840,1921.521946,hintandextended,lora,180 +on2,0,0,27,1,0,1183,4861.801280,25,4,21960.001280,2004.096307,hintandextended,lora,180 +on1,0,0,25,1,0,332,4501.001280,25,1,6240.001280,1829.152512,hintandextended,lora,180 +on6,0,0,24,1,0,767,4348.001280,25,0,17764.001280,1782.720922,hintandextended,lora,180 +on12,0,0,24,1,0,2533,4322.000000,25,0,54043.001280,1757.280000,hintandextended,lora,180 +on9,0,0,26,1,0,464,4822.602560,25,2,6401.603840,1954.641434,hintandextended,lora,180 +on8,0,0,24,1,0,122,4423.001280,25,0,829.001280,1823.280717,hintandextended,lora,180 +on11,0,0,24,1,0,540,4322.998720,25,0,14008.001280,1759.503898,hintandextended,lora,180 +on7,0,0,25,1,0,867,4503.997440,25,1,20845.001280,1903.407590,hintandextended,lora,180 +on0,1,12,23,0,0,0,4870.214080,25,0,-1.000000,2255.291571,hintandextended,lora,180 +on5,0,0,24,1,0,1620,4377.602560,25,2,34515.602560,1798.610048,hintandextended,lora,180 +on10,0,0,24,1,0,360,4320.001280,25,0,7896.001280,1753.600717,hintandextended,lora,180 +on11,0,0,24,1,0,511,4452.003840,26,0,10548.001280,1821.345946,hintandextended,lora,180 +on7,0,0,26,1,0,788,4821.902560,26,2,14624.603840,1960.969638,hintandextended,lora,180 +on0,1,11,24,0,0,0,4580.605120,26,0,-1.000000,2113.847373,hintandextended,lora,180 +on10,0,0,24,1,0,586,4347.998720,26,0,14464.001280,1773.279693,hintandextended,lora,180 +on6,0,0,25,1,0,2495,4504.298720,26,2,53292.001280,1869.719693,hintandextended,lora,180 +on8,0,0,24,1,0,2340,4321.997440,26,0,48154.001280,1760.959181,hintandextended,lora,180 +on3,0,0,25,1,0,1228,4501.001280,26,1,24547.001280,1826.001126,hintandextended,lora,180 +on1,0,0,24,1,0,3023,4446.001280,26,0,58390.001280,1864.224922,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,hintandextended,lora,180 +on2,0,0,25,1,0,3600,4501.998720,26,1,74485.001280,1829.599693,hintandextended,lora,180 +on12,0,0,24,1,0,44,4345.001280,26,0,2888.001280,1764.080717,hintandextended,lora,180 +on9,0,0,25,1,0,3411,4501.001280,26,1,68542.001280,1854.640717,hintandextended,lora,180 +on5,0,0,24,1,0,947,4349.000000,26,0,21232.001280,1793.584410,hintandextended,lora,180 +on5,0,0,25,1,0,1311,4502.301280,27,1,29060.001280,1865.560512,hintandextended,lora,180 +on1,0,0,26,1,0,681,4821.606400,27,2,11352.603840,1954.242970,hintandextended,lora,180 +on7,0,0,24,1,0,484,4424.003840,27,0,9703.003840,1795.201741,hintandextended,lora,180 +on8,0,0,24,1,0,922,4322.001280,27,0,19107.001280,1754.400717,hintandextended,lora,180 +on2,0,0,24,1,0,1283,4324.002560,27,0,26932.001280,1783.841434,hintandextended,lora,180 +on10,0,0,26,1,0,491,4681.300000,27,3,9543.001280,1904.359795,hintandextended,lora,180 +on12,0,0,26,1,0,578,4684.201280,27,2,11191.001280,1965.312102,hintandextended,lora,180 +on4,0,0,24,1,0,1805,4321.000000,27,0,38294.001280,1772.560205,hintandextended,lora,180 +on6,0,0,25,1,0,2160,4501.602560,27,1,46464.602560,1854.449434,hintandextended,lora,180 +on0,1,12,24,0,0,0,4641.211520,27,0,-1.000000,2163.689933,hintandextended,lora,180 +on3,0,0,25,1,0,130,4502.998720,27,1,5986.001280,1839.824102,hintandextended,lora,180 +on9,0,0,24,1,0,0,4323.000000,27,0,1637.001280,1809.167590,hintandextended,lora,180 +on11,0,0,26,1,0,783,4682.901280,27,2,17354.001280,1940.680102,hintandextended,lora,180 +on1,0,0,25,1,0,1980,4505.998720,28,2,41078.602560,1941.551693,hintandextended,lora,180 +on8,0,0,25,1,0,587,4531.601280,28,1,11332.603840,1913.121126,hintandextended,lora,180 +on3,0,0,24,1,0,1528,4388.001280,28,0,32464.001280,1780.800717,hintandextended,lora,180 +on5,0,0,24,1,0,781,4361.998720,28,0,15615.001280,1770.399898,hintandextended,lora,180 +on7,0,0,24,1,0,1013,4481.000000,28,1,23804.001280,1846.543795,hintandextended,lora,180 +on9,0,0,25,1,0,360,4504.000000,28,1,10331.602560,1834.800205,hintandextended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,hintandextended,lora,180 +on12,0,0,26,1,0,1100,4826.201280,28,2,23965.603840,2050.320922,hintandextended,lora,180 +on0,1,11,24,0,0,0,4946.016640,28,0,-1.000000,2260.013210,hintandextended,lora,180 +on10,0,0,25,1,0,1800,4502.602560,28,1,38164.602560,1883.873229,hintandextended,lora,180 +on4,0,0,25,1,0,529,4501.397440,28,1,11171.001280,1829.103181,hintandextended,lora,180 +on11,0,0,26,1,0,938,4824.903840,28,2,18399.603840,2009.865536,hintandextended,lora,180 +on6,0,0,26,1,0,926,4683.700000,28,2,18238.001280,1958.231795,hintandextended,lora,180 +on11,0,0,24,1,0,3420,4321.001280,29,0,68892.001280,1782.640717,hintandextended,lora,180 +on1,0,0,24,1,0,1332,4373.996160,29,0,28324.001280,1799.422874,hintandextended,lora,180 +on6,0,0,24,1,0,345,4465.002560,29,0,6178.001280,1811.601434,hintandextended,lora,180 +on8,0,0,27,1,0,1637,5008.503840,29,3,32027.603840,2136.137741,hintandextended,lora,180 +on7,0,0,24,1,0,647,4408.001280,29,0,14609.001280,1817.184717,hintandextended,lora,180 +on4,0,0,24,1,0,1065,4501.002560,29,1,21644.001280,1854.641434,hintandextended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,hintandextended,lora,180 +on2,0,0,25,1,0,1298,4658.600000,29,2,31866.001280,1982.767181,hintandextended,lora,180 +on5,0,0,24,1,0,536,4479.002560,29,0,8164.001280,1878.865229,hintandextended,lora,180 +on0,1,11,24,0,0,0,4604.207680,29,0,-1.000000,2123.289216,hintandextended,lora,180 +on12,0,0,25,1,0,2261,4503.300000,29,1,45756.001280,1879.368410,hintandextended,lora,180 +on3,0,0,25,1,0,1080,4502.405120,29,1,22019.602560,1849.042253,hintandextended,lora,180 +on10,0,0,27,1,0,1807,4863.598720,29,3,32669.001280,1993.279078,hintandextended,lora,180 +on1,0,0,25,1,0,323,4502.000000,30,1,7363.001280,1857.935795,hintandextended,lora,180 +on11,0,0,24,1,0,1800,4320.001280,30,0,39530.001280,1753.600717,hintandextended,lora,180 +on10,0,0,25,1,0,753,4514.005120,30,1,17763.003840,1834.402253,hintandextended,lora,180 +on12,0,0,25,1,0,466,4501.300000,30,1,13418.001280,1838.696000,hintandextended,lora,180 +on6,0,0,27,1,0,1131,4863.200000,30,3,21685.001280,2026.655386,hintandextended,lora,180 +on0,1,12,24,0,0,0,5020.616640,30,0,-1.000000,2315.450957,hintandextended,lora,180 +on2,0,0,24,1,0,138,4438.001280,30,0,2351.001280,1800.800717,hintandextended,lora,180 +on3,0,0,24,1,0,280,4400.001280,30,0,4444.001280,1785.600717,hintandextended,lora,180 +on8,0,0,25,1,0,635,4641.303840,30,1,13578.003840,1936.521741,hintandextended,lora,180 +on7,0,0,26,1,0,1228,4851.403840,30,3,26744.001280,2086.689741,hintandextended,lora,180 +on5,0,0,25,1,0,237,4540.206400,30,1,4604.003840,1873.011174,hintandextended,lora,180 +on9,0,0,26,1,0,859,4682.300000,30,2,17603.001280,1933.399795,hintandextended,lora,180 +on4,0,0,26,1,0,454,4823.606400,30,2,7524.603840,1985.666970,hintandextended,lora,180 +on11,0,0,24,1,0,720,4322.000000,31,0,15152.001280,1757.440410,hintandextended,lora,180 +on12,0,0,27,1,0,1045,5001.902560,31,3,22758.003840,2086.520819,hintandextended,lora,180 +on0,1,12,24,0,0,0,5141.617920,31,0,-1.000000,2363.853926,hintandextended,lora,180 +on10,0,0,25,1,0,507,4503.002560,31,1,11429.001280,1899.281434,hintandextended,lora,180 +on4,0,0,26,1,0,1134,4685.502560,31,2,22598.001280,1968.553229,hintandextended,lora,180 +on5,0,0,25,1,0,1022,4502.300000,31,1,20142.001280,1866.632000,hintandextended,lora,180 +on8,0,0,24,1,0,360,4323.996160,31,0,8677.001280,1775.742874,hintandextended,lora,180 +on7,0,0,27,1,0,1672,5001.305120,31,3,28699.003840,2057.962253,hintandextended,lora,180 +on9,0,0,24,1,0,931,4423.003840,31,1,20302.003840,1840.881536,hintandextended,lora,180 +on2,0,0,24,1,0,0,4322.002560,31,0,2718.001280,1767.681638,hintandextended,lora,180 +on6,0,0,25,1,0,3420,4501.000000,31,1,69142.602560,1829.152000,hintandextended,lora,180 +on3,0,0,24,1,0,315,4438.002560,31,0,4115.001280,1860.161229,hintandextended,lora,180 +on1,0,0,25,1,0,1195,4504.300000,31,1,28539.001280,1914.360410,hintandextended,lora,180 +on10,0,0,25,1,0,601,4501.297440,32,1,16691.001280,1841.142976,hintandextended,lora,180 +on11,0,0,27,1,0,1772,4863.897440,32,5,37818.001280,2055.110976,hintandextended,lora,180 +on12,0,0,25,1,0,971,4660.301280,32,3,18458.001280,1921.304512,hintandextended,lora,180 +on1,0,0,25,1,0,1257,4500.997440,32,1,22500.001280,1825.999181,hintandextended,lora,180 +on5,0,0,25,1,0,1577,4574.300000,32,2,35087.001280,1886.248205,hintandextended,lora,180 +on8,0,0,24,1,0,540,4321.000000,32,0,11609.001280,1757.040000,hintandextended,lora,180 +on7,0,0,24,1,0,1603,4463.001280,32,0,31526.001280,1810.800717,hintandextended,lora,180 +on4,0,0,25,1,0,1809,4503.300000,32,2,40705.001280,1914.503590,hintandextended,lora,180 +on2,0,0,25,1,0,1587,4642.503840,32,1,31686.003840,1965.801536,hintandextended,lora,180 +on0,1,12,24,0,0,0,4680.608960,32,0,-1.000000,2179.447475,hintandextended,lora,180 +on6,0,0,24,1,0,419,4359.001280,32,0,7673.001280,1769.200717,hintandextended,lora,180 +on9,0,0,26,1,0,1240,4682.797440,32,3,25392.001280,1946.766976,hintandextended,lora,180 +on3,0,0,26,1,0,2286,4822.603840,32,2,40866.603840,1983.281741,hintandextended,lora,180 +on2,0,0,25,1,0,813,4640.003840,33,1,14333.003840,1881.601741,hintandextended,lora,180 +on9,0,0,25,1,0,1045,4504.998720,33,1,21756.001280,1880.239898,hintandextended,lora,180 +on12,0,0,28,1,0,1098,5183.108960,33,5,21916.003840,2179.579994,hintandextended,lora,180 +on7,0,0,26,1,0,849,4685.201280,33,2,17356.001280,1984.720512,hintandextended,lora,180 +on5,0,0,26,1,0,1055,4684.597440,33,2,22287.001280,1949.327181,hintandextended,lora,180 +on3,0,0,24,1,0,327,4449.000000,33,0,6939.001280,1819.664410,hintandextended,lora,180 +on8,0,0,24,1,0,553,4321.998720,33,0,14173.001280,1755.359693,hintandextended,lora,180 +on4,0,0,25,1,0,473,4502.998720,33,1,10775.001280,1870.224102,hintandextended,lora,180 +on10,0,0,24,1,0,3240,4321.001280,33,0,65017.001280,1782.640717,hintandextended,lora,180 +on0,1,11,24,0,0,0,4785.614080,33,0,-1.000000,2195.851571,hintandextended,lora,180 +on11,0,0,24,1,0,0,4320.001280,33,0,2679.001280,1753.600717,hintandextended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,hintandextended,lora,180 +on1,0,0,27,1,0,1154,5002.903840,33,3,17517.603840,2058.441536,hintandextended,lora,180 +on6,0,0,26,1,0,838,4820.008960,34,2,14425.003840,1953.603994,hintandextended,lora,180 +on9,0,0,28,1,0,1428,5187.602560,34,4,22235.003840,2217.185024,hintandextended,lora,180 +on0,1,11,24,0,0,0,4900.612800,34,0,-1.000000,2241.852902,hintandextended,lora,180 +on12,0,0,27,1,0,1117,4863.503840,34,3,19177.001280,2008.649946,hintandextended,lora,180 +on11,0,0,25,1,0,316,4504.198720,34,1,8863.001280,1901.007898,hintandextended,lora,180 +on7,0,0,24,1,0,180,4321.005120,34,0,5459.001280,1756.946253,hintandextended,lora,180 +on8,0,0,28,1,0,1449,5187.803840,34,5,28908.603840,2212.881741,hintandextended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,25,1,0,1479,4501.300000,34,1,30312.001280,1851.880000,hintandextended,lora,180 +on4,0,0,24,1,0,473,4457.001280,34,1,14265.001280,1854.160512,hintandextended,lora,180 +on3,0,0,24,1,0,1232,4422.997440,34,1,28747.001280,1879.663181,hintandextended,lora,180 +on2,0,0,26,1,0,1173,4686.503840,34,3,22075.001280,2033.001536,hintandextended,lora,180 +on10,0,0,26,1,0,929,4684.498720,34,2,15861.001280,1950.919283,hintandextended,lora,180 +on4,0,0,24,1,0,537,4479.001280,35,0,7571.001280,1868.400307,hintandextended,lora,180 +on2,0,0,27,1,0,1468,4862.100000,35,3,27454.001280,2003.303386,hintandextended,lora,180 +on8,0,0,23,1,0,333,4374.001280,35,0,4758.001280,1775.200717,hintandextended,lora,180 +on1,0,0,24,1,0,446,4484.300000,35,1,12750.001280,1863.383590,hintandextended,lora,180 +on6,0,0,25,1,0,1169,4569.003840,35,1,24998.003840,1853.201741,hintandextended,lora,180 +on11,0,0,26,1,0,1208,4820.003840,35,2,21588.003840,1953.601741,hintandextended,lora,180 +on9,0,0,25,1,0,239,4541.600000,35,1,4918.603840,1870.928614,hintandextended,lora,180 +on12,0,0,24,1,0,0,4320.001280,35,0,1749.001280,1753.600717,hintandextended,lora,180 +on10,0,0,25,1,0,562,4502.608960,35,1,12911.603840,1826.643994,hintandextended,lora,180 +on5,0,0,24,1,0,802,4383.001280,35,0,15515.001280,1807.184717,hintandextended,lora,180 +on7,0,0,25,1,0,820,4501.600000,35,1,21428.001280,1861.855590,hintandextended,lora,180 +on3,0,0,26,1,0,1060,4857.302560,35,3,24838.001280,2067.400819,hintandextended,lora,180 +on0,1,12,24,0,0,0,4970.216640,35,0,-1.000000,2295.290957,hintandextended,lora,180 +on0,1,12,24,0,0,0,4745.211520,36,0,-1.000000,2205.292595,hintandextended,lora,180 +on11,0,0,25,1,0,808,4502.198720,36,1,16057.001280,1846.479898,hintandextended,lora,180 +on1,0,0,24,1,0,1444,4322.000000,36,0,31247.001280,1785.440000,hintandextended,lora,180 +on9,0,0,24,1,0,351,4475.005120,36,0,5924.001280,1918.482253,hintandextended,lora,180 +on4,0,0,25,1,0,154,4637.996160,36,1,909.003840,1908.959283,hintandextended,lora,180 +on12,0,0,25,1,0,2327,4502.200000,36,1,45688.001280,1852.720205,hintandextended,lora,180 +on10,0,0,25,1,0,1743,4503.300000,36,1,35051.001280,1893.064410,hintandextended,lora,180 +on2,0,0,25,1,0,1260,4504.603840,36,2,26331.602560,1865.730150,hintandextended,lora,180 +on7,0,0,25,1,0,416,4501.000000,36,1,10665.001280,1828.943795,hintandextended,lora,180 +on8,0,0,23,1,0,3758,4299.000000,36,0,77635.001280,1748.400000,hintandextended,lora,180 +on5,0,0,27,1,0,680,4864.800000,36,3,11864.001280,2048.655590,hintandextended,lora,180 +on3,0,0,24,1,0,138,4439.001280,36,0,749.001280,1801.201126,hintandextended,lora,180 +on6,0,0,25,1,0,428,4553.602560,36,1,10826.603840,1861.442253,hintandextended,lora,180 +on12,0,0,24,1,0,603,4363.001280,37,0,13602.001280,1770.800717,hintandextended,lora,180 +on6,0,0,24,1,0,930,4330.998720,37,0,19485.003840,1757.999898,hintandextended,lora,180 +on7,0,0,24,1,0,180,4320.001280,37,0,6932.001280,1753.600717,hintandextended,lora,180 +on8,0,0,25,1,0,360,4502.000000,37,1,8792.602560,1856.912410,hintandextended,lora,180 +on2,0,0,26,1,0,725,4682.800000,37,2,14564.001280,1939.439590,hintandextended,lora,180 +on10,0,0,27,1,0,1352,4863.100000,37,3,27188.001280,2016.199386,hintandextended,lora,180 +on0,1,12,24,0,0,0,5040.616640,37,0,-1.000000,2323.450752,hintandextended,lora,180 +on5,0,0,25,1,0,818,4640.003840,37,1,13762.003840,1881.809741,hintandextended,lora,180 +on11,0,0,27,1,0,1495,5002.503840,37,3,27349.603840,2046.729536,hintandextended,lora,180 +on1,0,0,25,1,0,994,4557.500000,37,2,22954.001280,1863.479795,hintandextended,lora,180 +on4,0,0,29,1,0,1707,5222.902560,37,6,32305.001280,2175.976205,hintandextended,lora,180 +on3,0,0,26,1,0,975,4887.303840,37,3,14724.003840,1983.401331,hintandextended,lora,180 +on9,0,0,27,1,0,1022,4863.000000,37,3,19325.001280,1991.215181,hintandextended,lora,180 +on5,0,0,28,1,0,1383,5185.106400,38,4,28988.603840,2188.554765,hintandextended,lora,180 +on4,0,0,25,1,0,1337,4502.300000,38,1,28827.001280,1868.823795,hintandextended,lora,180 +on10,0,0,24,1,0,773,4356.001280,38,0,14932.001280,1806.561126,hintandextended,lora,180 +on9,0,0,25,1,0,1073,4502.197440,38,1,21047.001280,1829.727181,hintandextended,lora,180 +on12,0,0,24,1,0,390,4331.001280,38,0,8251.001280,1775.440717,hintandextended,lora,180 +on6,0,0,24,1,0,2744,4344.003840,38,0,54342.001280,1763.201946,hintandextended,lora,180 +on11,0,0,26,1,0,1256,4825.903840,38,3,23542.603840,2037.881126,hintandextended,lora,180 +on1,0,0,24,1,0,1800,4320.998720,38,0,39708.001280,1753.999898,hintandextended,lora,180 +on3,0,0,24,1,0,749,4350.008960,38,1,15092.003840,1781.764608,hintandextended,lora,180 +on7,0,0,24,1,0,4227,4387.000000,38,0,84869.000000,1780.400000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4884.212800,38,0,-1.000000,2260.891469,hintandextended,lora,180 +on2,0,0,26,1,0,1174,4684.300000,38,2,23381.001280,1950.743795,hintandextended,lora,180 +on8,0,0,25,1,0,3607,4501.600000,38,1,76733.001280,1885.439795,hintandextended,lora,180 +on9,0,0,26,1,0,1827,4682.701280,39,2,35759.001280,1933.608307,hintandextended,lora,180 +on4,0,0,25,1,0,1893,4718.006400,39,2,35919.003840,1984.163174,hintandextended,lora,180 +on0,1,12,24,0,0,0,4670.008960,39,0,-1.000000,2175.209114,hintandextended,lora,180 +on5,0,0,24,1,0,1474,4380.000000,39,1,31621.001280,1792.480000,hintandextended,lora,180 +on2,0,0,24,1,0,1420,4463.002560,39,0,27815.001280,1854.289638,hintandextended,lora,180 +on6,0,0,27,1,0,1894,4862.002560,39,3,36949.001280,2003.761024,hintandextended,lora,180 +on7,0,0,24,1,0,1205,4426.001280,39,0,23203.001280,1798.464717,hintandextended,lora,180 +on10,0,0,25,1,0,293,4503.205120,39,1,5156.001280,1843.842458,hintandextended,lora,180 +on1,0,0,25,1,0,3057,4500.001280,39,1,59810.001280,1825.600717,hintandextended,lora,180 +on12,0,0,27,1,0,1807,5002.505120,39,3,31781.003840,2087.498253,hintandextended,lora,180 +on8,0,0,24,1,0,3406,4467.001280,39,0,65886.001280,1838.640717,hintandextended,lora,180 +on11,0,0,24,1,0,18,4323.006400,39,0,2794.001280,1768.147174,hintandextended,lora,180 +on3,0,0,24,1,0,3060,4321.000000,39,0,61819.001280,1757.200000,hintandextended,lora,180 +on12,0,0,24,1,0,360,4321.997440,40,0,10184.001280,1757.599181,hintandextended,lora,180 +on9,0,0,24,1,0,2992,4383.300000,40,1,64307.401280,1795.911795,hintandextended,lora,180 +on3,0,0,27,1,0,1513,5005.903840,40,4,26297.603840,2129.290150,hintandextended,lora,180 +on2,0,0,24,1,0,604,4365.002560,40,0,12175.001280,1800.081434,hintandextended,lora,180 +on7,0,0,24,1,0,1308,4348.001280,40,0,26137.001280,1764.800717,hintandextended,lora,180 +on10,0,0,24,1,0,151,4454.998720,40,0,397.001280,1866.160102,hintandextended,lora,180 +on11,0,0,25,1,0,1110,4503.997440,40,1,24074.001280,1902.191590,hintandextended,lora,180 +on4,0,0,25,1,0,1913,4501.201280,40,1,37077.001280,1840.544717,hintandextended,lora,180 +on6,0,0,26,1,0,558,4824.903840,40,2,12335.603840,2069.401946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4917.211520,40,0,-1.000000,2274.090957,hintandextended,lora,180 +on1,0,0,24,1,0,0,4323.002560,40,0,572.001280,1786.353843,hintandextended,lora,180 +on8,0,0,25,1,0,887,4503.000000,40,1,18415.001280,1870.864205,hintandextended,lora,180 +on5,0,0,24,1,0,2587,4321.600000,40,2,58183.001280,1802.720000,hintandextended,lora,180 +on5,0,0,26,1,0,993,4686.298720,41,2,18696.001280,1987.543488,hintandextended,lora,180 +on8,0,0,27,1,0,976,5003.406400,41,3,17254.603840,2064.082765,hintandextended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,hintandextended,lora,180 +on11,0,0,24,1,0,750,4330.005120,41,0,14708.003840,1757.602458,hintandextended,lora,180 +on1,0,0,24,1,0,176,4606.601280,41,1,1459.603840,1913.409741,hintandextended,lora,180 +on9,0,0,24,1,0,619,4381.001280,41,0,14548.001280,1804.304717,hintandextended,lora,180 +on7,0,0,25,1,0,1014,4501.497440,41,1,24941.001280,1854.839181,hintandextended,lora,180 +on10,0,0,25,1,0,1157,4501.601280,41,2,27973.001280,1898.816512,hintandextended,lora,180 +on6,0,0,24,1,0,117,4417.001280,41,0,1299.001280,1792.400717,hintandextended,lora,180 +on0,1,11,24,0,0,0,4882.815360,41,0,-1.000000,2234.732288,hintandextended,lora,180 +on4,0,0,25,1,0,852,4503.300000,41,1,17093.001280,1873.063795,hintandextended,lora,180 +on2,0,0,25,1,0,450,4572.602560,41,1,7787.603840,1870.849638,hintandextended,lora,180 +on3,0,0,24,1,0,385,4326.002560,41,0,7627.001280,1761.825434,hintandextended,lora,180 +on6,0,0,25,1,0,504,4506.994880,42,1,10376.001280,1893.038362,hintandextended,lora,180 +on1,0,0,26,1,0,1227,4684.000000,42,2,21914.603840,1915.327386,hintandextended,lora,180 +on3,0,0,26,1,0,1295,4825.902560,42,2,23726.603840,2053.305434,hintandextended,lora,180 +on5,0,0,25,1,0,4018,4502.300000,42,1,80987.001280,1873.080000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4744.811520,42,0,-1.000000,2205.132186,hintandextended,lora,180 +on11,0,0,25,1,0,1155,4504.300000,42,1,23565.001280,1866.855386,hintandextended,lora,180 +on8,0,0,25,1,0,978,4504.298720,42,1,21753.001280,1889.367283,hintandextended,lora,180 +on10,0,0,25,1,0,679,4503.500000,42,1,17365.001280,1883.864000,hintandextended,lora,180 +on12,0,0,26,1,0,994,4827.603840,42,2,17526.603840,2037.345536,hintandextended,lora,180 +on7,0,0,26,1,0,700,4684.702560,42,3,11448.001280,1936.249229,hintandextended,lora,180 +on9,0,0,24,1,0,0,4324.601280,42,1,380.602560,1787.393536,hintandextended,lora,180 +on2,0,0,24,1,0,219,4341.996160,42,0,6124.001280,1798.142874,hintandextended,lora,180 +on4,0,0,25,1,0,1576,4502.000000,42,1,31201.001280,1841.920000,hintandextended,lora,180 +on8,0,0,24,1,0,1081,4322.000000,43,1,24757.001280,1783.039795,hintandextended,lora,180 +on9,0,0,25,1,0,2340,4502.000000,43,1,46984.602560,1835.472000,hintandextended,lora,180 +on2,0,0,25,1,0,1059,4643.003840,43,1,20232.003840,1964.785741,hintandextended,lora,180 +on7,0,0,24,1,0,38,4340.996160,43,0,271.001280,1790.479283,hintandextended,lora,180 +on6,0,0,25,1,0,3060,4501.001280,43,1,64558.001280,1836.880717,hintandextended,lora,180 +on4,0,0,25,1,0,896,4502.200000,43,1,16049.001280,1855.008000,hintandextended,lora,180 +on12,0,0,25,1,0,857,4502.001280,43,1,20072.001280,1852.432922,hintandextended,lora,180 +on11,0,0,26,1,0,1008,4820.005120,43,2,16209.003840,1953.602458,hintandextended,lora,180 +on1,0,0,27,1,0,1205,4862.501280,43,3,28778.001280,2057.799898,hintandextended,lora,180 +on10,0,0,26,1,0,1404,4822.002560,43,2,24917.003840,1972.481638,hintandextended,lora,180 +on3,0,0,24,1,0,527,4469.001280,43,0,9126.001280,1870.480717,hintandextended,lora,180 +on5,0,0,24,1,0,703,4463.001280,43,0,11497.001280,1810.800717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4960.615360,43,0,-1.000000,2291.452083,hintandextended,lora,180 +on0,1,11,24,0,0,0,4320.000000,44,0,-1.000000,2009.605530,hintandextended,lora,180 +on10,0,0,24,1,0,180,4325.002560,44,0,4529.001280,1818.482048,hintandextended,lora,180 +on2,0,0,24,1,0,1215,4406.998720,44,1,24462.001280,1788.400102,hintandextended,lora,180 +on1,0,0,25,1,0,2093,4500.001280,44,1,42570.001280,1825.600717,hintandextended,lora,180 +on8,0,0,24,1,0,3240,4322.000000,44,0,67813.001280,1762.720000,hintandextended,lora,180 +on3,0,0,24,1,0,975,4376.002560,44,0,20921.001280,1804.385434,hintandextended,lora,180 +on9,0,0,24,1,0,1620,4320.001280,44,0,32614.001280,1753.600717,hintandextended,lora,180 +on4,0,0,26,1,0,600,4685.598720,44,3,11782.001280,2004.991898,hintandextended,lora,180 +on12,0,0,24,1,0,22,4323.001280,44,0,1698.001280,1754.801126,hintandextended,lora,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,25,1,0,2994,4500.001280,44,1,61081.001280,1825.600717,hintandextended,lora,180 +on7,0,0,25,1,0,479,4501.297440,44,1,9801.001280,1828.599181,hintandextended,lora,180 +on6,0,0,24,1,0,1853,4356.998720,44,0,38721.001280,1802.128102,hintandextended,lora,180 +on4,0,0,25,1,0,771,4503.300000,45,1,17202.001280,1890.503795,hintandextended,lora,180 +on6,0,0,24,1,0,540,4322.000000,45,0,11287.001280,1776.832000,hintandextended,lora,180 +on11,0,0,27,1,0,1656,4863.400000,45,5,33154.001280,2041.407386,hintandextended,lora,180 +on12,0,0,25,1,0,2659,4502.300000,45,1,53771.001280,1864.920000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4592.605120,45,0,-1.000000,2144.247373,hintandextended,lora,180 +on2,0,0,24,1,0,1080,4321.997440,45,0,21766.001280,1759.423181,hintandextended,lora,180 +on1,0,0,24,1,0,2061,4381.001280,45,0,42515.001280,1778.000717,hintandextended,lora,180 +on10,0,0,26,1,0,1056,4681.607680,45,2,20029.001280,1915.619277,hintandextended,lora,180 +on9,0,0,24,1,0,205,4327.000000,45,0,4854.001280,1784.880410,hintandextended,lora,180 +on8,0,0,24,1,0,172,4473.001280,45,0,1714.001280,1821.840512,hintandextended,lora,180 +on5,0,0,24,1,0,1396,4436.001280,45,0,28606.001280,1800.000717,hintandextended,lora,180 +on7,0,0,26,1,0,994,4823.000000,45,2,17363.603840,1954.800410,hintandextended,lora,180 +on3,0,0,26,1,0,1534,4684.297440,45,2,31808.001280,1939.959181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4657.606400,46,0,-1.000000,2170.247680,hintandextended,lora,180 +on8,0,0,24,1,0,3385,4445.001280,46,0,65137.001280,1803.600717,hintandextended,lora,180 +on5,0,0,25,1,0,1674,4503.301280,46,1,35669.001280,1919.208922,hintandextended,lora,180 +on10,0,0,24,1,0,207,4329.001280,46,0,6488.001280,1766.481331,hintandextended,lora,180 +on6,0,0,25,1,0,3600,4501.001280,46,1,74858.001280,1832.560717,hintandextended,lora,180 +on1,0,0,24,1,0,3420,4359.000000,46,1,70396.602560,1818.272000,hintandextended,lora,180 +on12,0,0,26,1,0,1533,4681.500000,46,3,29625.001280,1904.599795,hintandextended,lora,180 +on2,0,0,25,1,0,2994,4501.000000,46,1,60612.001280,1829.200000,hintandextended,lora,180 +on11,0,0,24,1,0,900,4320.001280,46,0,18429.001280,1753.600717,hintandextended,lora,180 +on3,0,0,25,1,0,1351,4501.997440,46,1,27238.001280,1827.038976,hintandextended,lora,180 +on9,0,0,24,1,0,71,4372.998720,46,0,2843.001280,1793.103898,hintandextended,lora,180 +on4,0,0,24,1,0,1080,4325.002560,46,0,22123.001280,1833.073638,hintandextended,lora,180 +on7,0,0,25,1,0,2273,4502.005120,46,1,49265.001280,1883.682458,hintandextended,lora,180 +on1,0,0,24,1,0,360,4323.001280,47,0,7560.001280,1804.400512,hintandextended,lora,180 +on3,0,0,24,1,0,0,4321.001280,47,0,2717.001280,1776.560512,hintandextended,lora,180 +on6,0,0,24,1,0,1423,4390.000000,47,1,30076.001280,1813.183795,hintandextended,lora,180 +on4,0,0,24,1,0,846,4427.005120,47,0,16112.001280,1824.786458,hintandextended,lora,180 +on12,0,0,25,1,0,1800,4500.001280,47,1,37965.001280,1825.600717,hintandextended,lora,180 +on5,0,0,24,1,0,966,4366.001280,47,0,21602.001280,1772.000717,hintandextended,lora,180 +on11,0,0,24,1,0,1749,4429.001280,47,0,34825.001280,1797.200717,hintandextended,lora,180 +on8,0,0,25,1,0,1049,4629.003840,47,1,21762.003840,1877.201946,hintandextended,lora,180 +on0,1,12,24,0,0,0,5122.615360,47,0,-1.000000,2356.250445,hintandextended,lora,180 +on9,0,0,25,1,0,1171,4574.003840,47,1,24314.003840,1904.001331,hintandextended,lora,180 +on2,0,0,26,1,0,1195,4683.000000,47,2,24154.001280,1958.864000,hintandextended,lora,180 +on10,0,0,26,1,0,1555,4823.608960,47,2,30237.603840,2012.531994,hintandextended,lora,180 +on7,0,0,25,1,0,1280,4503.300000,47,1,27195.001280,1893.607590,hintandextended,lora,180 +on2,0,0,26,1,0,1234,4809.098720,48,4,23181.001280,1974.279078,hintandextended,lora,180 +on0,1,12,24,0,0,0,4963.019200,48,0,-1.000000,2292.412595,hintandextended,lora,180 +on12,0,0,24,1,0,0,4321.001280,48,0,2136.001280,1782.224717,hintandextended,lora,180 +on6,0,0,26,1,0,1106,4823.205120,48,2,21453.005120,1965.602048,hintandextended,lora,180 +on4,0,0,24,1,0,434,4458.997440,48,1,7555.001280,1837.743386,hintandextended,lora,180 +on9,0,0,25,1,0,813,4656.500000,48,3,15941.001280,1919.079590,hintandextended,lora,180 +on11,0,0,27,1,0,1007,4863.802560,48,3,21292.001280,2011.617229,hintandextended,lora,180 +on7,0,0,24,1,0,251,4414.001280,48,1,4151.001280,1791.200717,hintandextended,lora,180 +on5,0,0,24,1,0,548,4323.000000,48,0,12844.001280,1807.119590,hintandextended,lora,180 +on3,0,0,24,1,0,1620,4321.000000,48,0,34866.001280,1757.200000,hintandextended,lora,180 +on8,0,0,29,1,0,1117,5362.703840,48,6,16101.003840,2227.433331,hintandextended,lora,180 +on10,0,0,27,1,0,1403,5002.603840,48,3,23341.003840,2078.993741,hintandextended,lora,180 +on1,0,0,25,1,0,432,4642.303840,48,1,4311.003840,1926.201946,hintandextended,lora,180 +on3,0,0,27,1,0,970,5002.805120,49,3,15743.603840,2034.146048,hintandextended,lora,180 +on7,0,0,24,1,0,1877,4323.298720,49,1,41115.001280,1799.399693,hintandextended,lora,180 +on11,0,0,25,1,0,818,4641.003840,49,1,11939.003840,1910.385741,hintandextended,lora,180 +on6,0,0,27,1,0,1098,4861.501280,49,3,20843.001280,1976.344102,hintandextended,lora,180 +on10,0,0,25,1,0,350,4503.000000,49,1,7375.001280,1886.768000,hintandextended,lora,180 +on1,0,0,25,1,0,488,4502.300000,49,1,11779.001280,1851.560000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4968.816640,49,0,-1.000000,2294.731571,hintandextended,lora,180 +on5,0,0,25,1,0,972,4552.605120,49,1,21004.603840,1846.642662,hintandextended,lora,180 +on12,0,0,26,1,0,794,4681.600000,49,2,15582.001280,1916.895590,hintandextended,lora,180 +on8,0,0,24,1,0,89,4390.998720,49,0,2518.001280,1810.639898,hintandextended,lora,180 +on4,0,0,25,1,0,180,4503.002560,49,1,4408.602560,1864.097434,hintandextended,lora,180 +on9,0,0,24,1,0,1080,4330.997440,49,1,23800.001280,1788.879386,hintandextended,lora,180 +on2,0,0,24,1,0,3060,4321.000000,49,0,64641.001280,1754.320000,hintandextended,lora,180 +on4,0,0,25,1,0,1692,4501.300000,50,1,35741.001280,1841.128000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5022.219200,50,0,-1.000000,2316.092390,hintandextended,lora,180 +on2,0,0,24,1,0,24,4325.001280,50,0,3774.001280,1765.008717,hintandextended,lora,180 +on3,0,0,24,1,0,242,4364.002560,50,0,3934.003840,1773.185434,hintandextended,lora,180 +on6,0,0,25,1,0,17,4500.796160,50,1,1187.603840,1826.094259,hintandextended,lora,180 +on1,0,0,27,1,0,1029,5002.908960,50,3,16068.603840,2044.043789,hintandextended,lora,180 +on5,0,0,25,1,0,633,4640.003840,50,1,9480.003840,1881.601741,hintandextended,lora,180 +on12,0,0,26,1,0,552,4683.501280,50,2,13049.001280,1982.072307,hintandextended,lora,180 +on10,0,0,27,1,0,915,4864.702560,50,3,15907.001280,2054.441024,hintandextended,lora,180 +on9,0,0,24,1,0,45,4346.000000,50,0,1027.001280,1764.000410,hintandextended,lora,180 +on8,0,0,25,1,0,263,4502.300000,50,1,9320.001280,1860.023590,hintandextended,lora,180 +on7,0,0,25,1,0,634,4641.303840,50,1,13209.003840,1939.081331,hintandextended,lora,180 +on11,0,0,28,1,0,1203,5047.601280,50,5,20930.001280,2090.015898,hintandextended,lora,180 +on7,0,0,24,1,0,1620,4323.002560,51,0,35345.001280,1790.321638,hintandextended,lora,180 +on4,0,0,24,1,0,540,4323.001280,51,0,12833.001280,1815.344922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4448.002560,51,0,-1.000000,2086.407373,hintandextended,lora,180 +on6,0,0,25,1,0,1307,4503.000000,51,1,27652.001280,1867.280410,hintandextended,lora,180 +on9,0,0,25,1,0,1981,4500.302560,51,1,44057.001280,1854.361434,hintandextended,lora,180 +on8,0,0,24,1,0,1557,4419.998720,51,0,29311.001280,1822.240102,hintandextended,lora,180 +on11,0,0,24,1,0,506,4449.996160,51,0,8845.001280,1843.518874,hintandextended,lora,180 +on5,0,0,24,1,0,900,4320.005120,51,0,20330.001280,1753.602458,hintandextended,lora,180 +on3,0,0,24,1,0,1078,4479.001280,51,0,21839.001280,1842.704717,hintandextended,lora,180 +on12,0,0,24,1,0,852,4433.001280,51,0,14956.001280,1804.560512,hintandextended,lora,180 +on10,0,0,24,1,0,289,4409.001280,51,0,5217.001280,1789.200717,hintandextended,lora,180 +on2,0,0,25,1,0,3757,4501.000000,51,1,75080.001280,1829.200000,hintandextended,lora,180 +on1,0,0,24,1,0,61,4361.003840,51,0,3296.001280,1770.002150,hintandextended,lora,180 +on8,0,0,25,1,0,1107,4511.501280,52,2,23530.001280,1852.664307,hintandextended,lora,180 +on9,0,0,25,1,0,0,4502.596160,52,1,1783.602560,1826.687283,hintandextended,lora,180 +on7,0,0,26,1,0,1266,4682.601280,52,2,25452.001280,1957.648512,hintandextended,lora,180 +on3,0,0,24,1,0,293,4415.002560,52,0,4986.001280,1836.625434,hintandextended,lora,180 +on10,0,0,24,1,0,609,4371.000000,52,0,14221.001280,1802.640410,hintandextended,lora,180 +on12,0,0,24,1,0,1071,4474.001280,52,0,19891.001280,1900.704922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4753.214080,52,0,-1.000000,2208.492800,hintandextended,lora,180 +on2,0,0,24,1,0,3553,4433.001280,52,0,70990.001280,1798.800717,hintandextended,lora,180 +on5,0,0,26,1,0,406,4823.298720,52,2,9047.003840,2001.800102,hintandextended,lora,180 +on11,0,0,24,1,0,777,4358.001280,52,0,15016.001280,1792.160717,hintandextended,lora,180 +on4,0,0,28,1,0,1080,5184.300000,52,4,15176.003840,2153.240410,hintandextended,lora,180 +on6,0,0,29,1,0,1523,5365.306400,52,5,23691.603840,2272.058765,hintandextended,lora,180 +on1,0,0,24,1,0,461,4406.000000,52,0,8887.001280,1899.744410,hintandextended,lora,180 +on12,0,0,25,1,0,196,4503.396160,53,1,5301.603840,1864.606669,hintandextended,lora,180 +on10,0,0,24,1,0,580,4481.606400,53,1,12229.603840,1866.946970,hintandextended,lora,180 +on6,0,0,25,1,0,2633,4502.000000,53,1,54358.001280,1858.240000,hintandextended,lora,180 +on7,0,0,25,1,0,1620,4502.001280,53,1,33160.001280,1880.000922,hintandextended,lora,180 +on11,0,0,26,1,0,1122,4821.306400,53,2,21478.003840,1983.563174,hintandextended,lora,180 +on2,0,0,24,1,0,293,4413.001280,53,0,5141.001280,1790.800922,hintandextended,lora,180 +on4,0,0,25,1,0,530,4504.998720,53,1,10430.001280,1910.463693,hintandextended,lora,180 +on3,0,0,25,1,0,977,4503.298720,53,1,21318.001280,1843.303693,hintandextended,lora,180 +on9,0,0,26,1,0,1202,4682.800000,53,2,24903.001280,1946.079795,hintandextended,lora,180 +on5,0,0,25,1,0,718,4502.198720,53,1,12068.001280,1829.423488,hintandextended,lora,180 +on8,0,0,26,1,0,688,4824.603840,53,2,10591.603840,1988.561741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4954.419200,53,0,-1.000000,2288.974438,hintandextended,lora,180 +on1,0,0,25,1,0,720,4504.598720,53,2,15773.602560,1863.872307,hintandextended,lora,180 +on12,0,0,26,1,0,1906,4682.300000,54,2,38835.001280,1920.823590,hintandextended,lora,180 +on6,0,0,24,1,0,0,4320.001280,54,0,1152.001280,1753.600717,hintandextended,lora,180 +on2,0,0,24,1,0,1553,4413.001280,54,0,32177.001280,1790.800717,hintandextended,lora,180 +on5,0,0,24,1,0,1297,4337.001280,54,0,28923.001280,1760.400717,hintandextended,lora,180 +on3,0,0,27,1,0,2024,5004.408960,54,3,38996.603840,2081.075994,hintandextended,lora,180 +on11,0,0,25,1,0,2454,4500.997440,54,1,49008.001280,1825.999181,hintandextended,lora,180 +on7,0,0,27,1,0,1872,5001.508960,54,3,32337.003840,2058.251994,hintandextended,lora,180 +on9,0,0,24,1,0,1157,4378.001280,54,0,25106.001280,1805.184717,hintandextended,lora,180 +on4,0,0,25,1,0,1468,4501.600000,54,1,35872.001280,1879.871590,hintandextended,lora,180 +on8,0,0,25,1,0,1121,4525.598720,54,1,25266.603840,1882.832307,hintandextended,lora,180 +on0,1,12,24,0,0,0,4756.212800,54,0,-1.000000,2209.690035,hintandextended,lora,180 +on1,0,0,25,1,0,2496,4502.300000,54,2,50648.001280,1862.199795,hintandextended,lora,180 +on10,0,0,28,1,0,2161,5042.900000,54,5,40977.001280,2109.895386,hintandextended,lora,180 +on9,0,0,24,1,0,1980,4322.000000,55,0,42319.001280,1786.240000,hintandextended,lora,180 +on11,0,0,25,1,0,2017,4501.600000,55,1,46568.001280,1877.760000,hintandextended,lora,180 +on3,0,0,27,1,0,1811,5003.606400,55,4,31174.003840,2073.955174,hintandextended,lora,180 +on10,0,0,24,1,0,1121,4343.003840,55,0,24341.001280,1819.921946,hintandextended,lora,180 +on5,0,0,23,1,0,164,4410.002560,55,0,3350.001280,1817.985434,hintandextended,lora,180 +on8,0,0,25,1,0,580,4522.602560,55,1,14364.603840,1863.329638,hintandextended,lora,180 +on1,0,0,24,1,0,600,4360.001280,55,0,14204.001280,1769.600717,hintandextended,lora,180 +on12,0,0,24,1,0,1462,4322.001280,55,0,31014.001280,1754.400717,hintandextended,lora,180 +on6,0,0,25,1,0,1692,4502.300000,55,2,33178.001280,1866.680000,hintandextended,lora,180 +on2,0,0,25,1,0,1422,4500.997440,55,1,27173.001280,1825.999181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4600.607680,55,0,-1.000000,2147.447168,hintandextended,lora,180 +on4,0,0,25,1,0,350,4500.201280,55,1,5505.001280,1825.680717,hintandextended,lora,180 +on7,0,0,25,1,0,1957,4502.200000,55,1,38531.001280,1849.680000,hintandextended,lora,180 +on8,0,0,24,1,0,180,4323.000000,56,0,4569.001280,1795.984410,hintandextended,lora,180 +on4,0,0,24,1,0,1525,4386.002560,56,0,30468.001280,1808.641434,hintandextended,lora,180 +on5,0,0,24,1,0,0,4320.001280,56,0,1349.001280,1753.600717,hintandextended,lora,180 +on10,0,0,24,1,0,437,4377.001280,56,0,8106.001280,1776.400717,hintandextended,lora,180 +on9,0,0,26,1,0,851,4822.606400,56,2,12926.603840,1983.282970,hintandextended,lora,180 +on1,0,0,26,1,0,1173,4822.802560,56,2,21179.603840,1978.609638,hintandextended,lora,180 +on7,0,0,25,1,0,684,4504.300000,56,1,17887.001280,1874.424410,hintandextended,lora,180 +on3,0,0,26,1,0,634,4823.003840,56,2,8266.003840,1995.073741,hintandextended,lora,180 +on0,1,11,24,0,0,0,5144.817920,56,0,-1.000000,2339.533312,hintandextended,lora,180 +on12,0,0,25,1,0,716,4618.001280,56,2,12765.001280,1980.913126,hintandextended,lora,180 +on2,0,0,26,1,0,1546,4823.900000,56,2,30628.603840,1980.777024,hintandextended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,hintandextended,lora,180 +on11,0,0,24,1,0,1032,4435.002560,56,0,21019.001280,1870.161638,hintandextended,lora,180 +on3,0,0,24,1,0,1090,4464.298720,57,1,25938.001280,1892.663283,hintandextended,lora,180 +on0,1,12,24,0,0,0,5030.816640,57,0,-1.000000,2319.531366,hintandextended,lora,180 +on10,0,0,26,1,0,1106,4682.500000,57,2,19349.001280,1933.479795,hintandextended,lora,180 +on6,0,0,25,1,0,2520,4502.000000,57,1,51279.001280,1849.120000,hintandextended,lora,180 +on7,0,0,24,1,0,1396,4524.603840,57,1,26099.603840,1871.281741,hintandextended,lora,180 +on12,0,0,24,1,0,615,4376.001280,57,0,11269.001280,1785.184717,hintandextended,lora,180 +on5,0,0,26,1,0,993,4822.006400,57,2,18023.003840,2011.522970,hintandextended,lora,180 +on8,0,0,24,1,0,457,4400.002560,57,0,10304.001280,1850.721638,hintandextended,lora,180 +on9,0,0,26,1,0,1385,4822.903840,57,2,25353.603840,1963.721536,hintandextended,lora,180 +on11,0,0,25,1,0,551,4503.000000,57,1,11429.603840,1877.216614,hintandextended,lora,180 +on1,0,0,25,1,0,1082,4501.300000,57,1,25192.001280,1857.543795,hintandextended,lora,180 +on4,0,0,24,1,0,1650,4330.001280,57,0,35282.001280,1757.600717,hintandextended,lora,180 +on2,0,0,25,1,0,735,4503.296160,57,1,17863.001280,1855.110874,hintandextended,lora,180 +on9,0,0,25,1,0,3580,4501.300000,58,1,75538.001280,1846.184000,hintandextended,lora,180 +on11,0,0,25,1,0,175,4501.302560,58,2,3890.001280,1855.401229,hintandextended,lora,180 +on12,0,0,25,1,0,916,4504.301280,58,2,22796.001280,1909.240512,hintandextended,lora,180 +on1,0,0,25,1,0,605,4547.006400,58,1,12151.003840,1866.386970,hintandextended,lora,180 +on4,0,0,24,1,0,9,4322.996160,58,0,3400.001280,1783.438874,hintandextended,lora,180 +on5,0,0,25,1,0,757,4501.297440,58,1,19272.001280,1845.735181,hintandextended,lora,180 +on3,0,0,26,1,0,477,4825.002560,58,2,9216.003840,2005.250048,hintandextended,lora,180 +on10,0,0,24,1,0,1620,4320.001280,58,0,34771.001280,1753.600717,hintandextended,lora,180 +on8,0,0,25,1,0,676,4501.200000,58,1,11991.001280,1829.120000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4905.010240,58,0,-1.000000,2269.210240,hintandextended,lora,180 +on2,0,0,24,1,0,900,4322.000000,58,0,19438.001280,1783.040410,hintandextended,lora,180 +on7,0,0,27,1,0,906,4864.700000,58,3,15194.001280,2014.568205,hintandextended,lora,180 +on6,0,0,24,1,0,425,4366.002560,58,0,9056.001280,1783.361638,hintandextended,lora,180 +on8,0,0,25,1,0,139,4620.608960,59,1,698.603840,1896.996198,hintandextended,lora,180 +on3,0,0,28,1,0,1150,5043.500000,59,5,24578.001280,2163.383181,hintandextended,lora,180 +on5,0,0,25,1,0,994,4640.003840,59,1,17385.003840,1881.601741,hintandextended,lora,180 +on10,0,0,24,1,0,1039,4440.001280,59,0,19080.001280,1810.240512,hintandextended,lora,180 +on4,0,0,27,1,0,1375,5002.203840,59,3,24739.603840,2042.657741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5022.219200,59,0,-1.000000,2316.092390,hintandextended,lora,180 +on2,0,0,27,1,0,829,4863.000000,59,3,12526.001280,2007.567386,hintandextended,lora,180 +on12,0,0,26,1,0,703,4682.600000,59,2,17225.001280,1961.743795,hintandextended,lora,180 +on9,0,0,25,1,0,453,4635.300000,59,3,9322.001280,1907.239590,hintandextended,lora,180 +on11,0,0,27,1,0,1293,5140.106400,59,4,19240.003840,2142.202560,hintandextended,lora,180 +on7,0,0,27,1,0,727,5001.308960,59,3,9482.003840,2058.171789,hintandextended,lora,180 +on1,0,0,24,1,0,79,4379.001280,59,0,538.001280,1777.200717,hintandextended,lora,180 +on6,0,0,25,1,0,294,4501.000000,59,1,5618.001280,1829.248000,hintandextended,lora,180 +on1,0,0,25,1,0,618,4641.003840,60,1,9594.003840,1910.593741,hintandextended,lora,180 +on6,0,0,28,1,0,1276,5043.800000,60,4,24920.001280,2124.399181,hintandextended,lora,180 +on4,0,0,26,1,0,579,4682.202560,60,2,9434.001280,1929.809024,hintandextended,lora,180 +on12,0,0,25,1,0,274,4642.003840,60,1,4869.003840,1920.529331,hintandextended,lora,180 +on9,0,0,24,1,0,238,4359.001280,60,0,4709.001280,1797.680717,hintandextended,lora,180 +on2,0,0,25,1,0,879,4640.203840,60,1,14176.003840,1881.681741,hintandextended,lora,180 +on8,0,0,24,1,0,0,4321.000000,60,0,3582.001280,1755.024000,hintandextended,lora,180 +on10,0,0,27,1,0,976,5003.906400,60,4,15755.606400,2043.531174,hintandextended,lora,180 +on7,0,0,26,1,0,908,5153.905120,60,4,20756.003840,2179.322048,hintandextended,lora,180 +on11,0,0,26,1,0,583,4682.600000,60,2,14016.001280,1947.007795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5119.623040,60,0,-1.000000,2355.053107,hintandextended,lora,180 +on5,0,0,26,1,0,634,4825.200000,60,3,15593.001280,2070.462976,hintandextended,lora,180 +on3,0,0,28,1,0,1214,5042.600000,60,4,20596.001280,2055.599181,hintandextended,lora,180 +on5,0,0,26,1,0,1826,4681.300000,61,2,34899.001280,1904.519795,hintandextended,lora,180 +on3,0,0,27,1,0,1291,4863.397440,61,5,26453.001280,2038.462771,hintandextended,lora,180 +on6,0,0,25,1,0,1217,4500.997440,61,1,25195.001280,1825.999181,hintandextended,lora,180 +on1,0,0,25,1,0,424,4501.600000,61,2,14144.001280,1876.543590,hintandextended,lora,180 +on10,0,0,24,1,0,1448,4321.000000,61,0,32335.001280,1755.760000,hintandextended,lora,180 +on12,0,0,24,1,0,268,4388.001280,61,0,6952.001280,1780.800717,hintandextended,lora,180 +on4,0,0,25,1,0,775,4766.806400,61,2,14305.603840,1968.914970,hintandextended,lora,180 +on8,0,0,26,1,0,813,4683.500000,61,2,15839.001280,1962.327795,hintandextended,lora,180 +on7,0,0,25,1,0,1011,4500.997440,61,1,21602.001280,1825.999181,hintandextended,lora,180 +on9,0,0,24,1,0,331,4433.297440,61,1,7622.001280,1831.942976,hintandextended,lora,180 +on0,1,12,24,0,0,0,4644.608960,61,0,-1.000000,2165.047885,hintandextended,lora,180 +on2,0,0,24,1,0,0,4320.005120,61,0,3297.001280,1753.602458,hintandextended,lora,180 +on11,0,0,26,1,0,1576,4820.503840,61,3,32495.003840,1975.929536,hintandextended,lora,180 +on8,0,0,26,1,0,1313,4962.305120,62,3,25372.005120,2100.186253,hintandextended,lora,180 +on11,0,0,25,1,0,1560,4501.000000,62,1,30220.001280,1829.200000,hintandextended,lora,180 +on5,0,0,26,1,0,1258,4821.803840,62,2,21701.003840,1988.641536,hintandextended,lora,180 +on3,0,0,25,1,0,721,4502.500000,62,1,17863.001280,1876.248000,hintandextended,lora,180 +on9,0,0,28,1,0,1407,5042.503840,62,4,25813.001280,2103.401741,hintandextended,lora,180 +on6,0,0,25,1,0,993,4640.003840,62,1,18023.003840,1881.809741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5023.220480,62,0,-1.000000,2316.492083,hintandextended,lora,180 +on1,0,0,29,1,0,1594,5363.803840,62,5,25974.603840,2237.360922,hintandextended,lora,180 +on4,0,0,24,1,0,195,4320.001280,62,0,4275.001280,1753.600717,hintandextended,lora,180 +on7,0,0,26,1,0,1054,4682.900000,62,2,21541.001280,1930.647795,hintandextended,lora,180 +on2,0,0,26,1,0,1130,4681.900000,62,2,25212.002560,1951.159590,hintandextended,lora,180 +on10,0,0,24,1,0,525,4465.001280,62,0,8221.001280,1811.600717,hintandextended,lora,180 +on12,0,0,25,1,0,405,4527.602560,62,1,8381.603840,1865.169638,hintandextended,lora,180 +on12,0,0,27,1,0,1831,4863.900000,63,3,42242.001280,2074.280614,hintandextended,lora,180 +on3,0,0,25,1,0,1188,4502.597440,63,2,27581.001280,1876.879181,hintandextended,lora,180 +on10,0,0,24,1,0,3447,4327.001280,63,0,70195.001280,1756.400717,hintandextended,lora,180 +on7,0,0,24,1,0,99,4399.001280,63,0,547.001280,1785.200717,hintandextended,lora,180 +on8,0,0,24,1,0,1661,4342.001280,63,0,34400.001280,1765.120512,hintandextended,lora,180 +on2,0,0,24,1,0,893,4474.001280,63,0,15002.001280,1817.280102,hintandextended,lora,180 +on0,1,12,24,0,0,0,4701.006400,63,0,-1.000000,2187.608090,hintandextended,lora,180 +on6,0,0,24,1,0,1013,4365.997440,63,1,23624.001280,1771.999181,hintandextended,lora,180 +on11,0,0,24,1,0,497,4438.998720,63,0,7536.001280,1801.200102,hintandextended,lora,180 +on4,0,0,25,1,0,1672,4642.603840,63,1,34560.003840,1948.497331,hintandextended,lora,180 +on1,0,0,25,1,0,1328,4501.301280,63,2,29339.001280,1872.520512,hintandextended,lora,180 +on9,0,0,24,1,0,540,4322.001280,63,0,11623.001280,1778.241126,hintandextended,lora,180 +on5,0,0,25,1,0,2349,4619.600000,63,2,52539.001280,1953.664205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4733.811520,64,0,-1.000000,2200.730342,hintandextended,lora,180 +on12,0,0,24,1,0,566,4327.000000,64,0,14319.001280,1756.400410,hintandextended,lora,180 +on8,0,0,24,1,0,750,4331.605120,64,0,14639.605120,1786.626253,hintandextended,lora,180 +on3,0,0,25,1,0,2964,4503.297440,64,1,61424.001280,1874.310976,hintandextended,lora,180 +on1,0,0,24,1,0,1014,4466.403840,64,1,19818.401280,1840.546150,hintandextended,lora,180 +on4,0,0,25,1,0,653,4562.000000,64,1,14479.603840,1855.408205,hintandextended,lora,180 +on9,0,0,25,1,0,3197,4501.600000,64,2,67698.001280,1865.119795,hintandextended,lora,180 +on2,0,0,26,1,0,1370,4821.602560,64,2,23382.603840,1954.289638,hintandextended,lora,180 +on5,0,0,24,1,0,2076,4396.998720,64,0,43271.001280,1784.399898,hintandextended,lora,180 +on6,0,0,25,1,0,2160,4502.600000,64,1,43443.602560,1855.328614,hintandextended,lora,180 +on7,0,0,24,1,0,1198,4419.000000,64,0,23222.001280,1793.200410,hintandextended,lora,180 +on11,0,0,24,1,0,1623,4323.998720,64,0,34917.001280,1787.359693,hintandextended,lora,180 +on10,0,0,24,1,0,3870,4390.001280,64,0,77434.001280,1781.600717,hintandextended,lora,180 +on10,0,0,25,1,0,1773,4501.000000,65,1,36086.001280,1829.200000,hintandextended,lora,180 +on2,0,0,26,1,0,747,4681.300000,65,2,14263.001280,1904.103590,hintandextended,lora,180 +on3,0,0,24,1,0,900,4321.000000,65,0,19864.001280,1757.136000,hintandextended,lora,180 +on4,0,0,25,1,0,1126,4501.000000,65,1,24534.001280,1828.943795,hintandextended,lora,180 +on9,0,0,26,1,0,527,4822.303840,65,2,11008.003840,2010.169536,hintandextended,lora,180 +on7,0,0,24,1,0,183,4321.001280,65,0,6528.001280,1781.872717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4891.216640,65,0,-1.000000,2263.690752,hintandextended,lora,180 +on11,0,0,26,1,0,1182,4682.900000,65,3,27354.001280,1991.079795,hintandextended,lora,180 +on5,0,0,24,1,0,764,4370.001280,65,1,17393.001280,1773.600717,hintandextended,lora,180 +on8,0,0,25,1,0,842,4641.003840,65,1,14423.003840,1905.313741,hintandextended,lora,180 +on6,0,0,27,1,0,910,5129.106400,65,4,17553.603840,2208.395584,hintandextended,lora,180 +on1,0,0,25,1,0,474,4503.301280,65,1,10848.001280,1874.424717,hintandextended,lora,180 +on12,0,0,26,1,0,1347,4823.607680,65,2,24695.603840,2000.323686,hintandextended,lora,180 +on7,0,0,25,1,0,918,4806.303840,66,2,15719.003840,1976.921946,hintandextended,lora,180 +on10,0,0,25,1,0,308,4611.603840,66,1,6918.603840,1936.033536,hintandextended,lora,180 +on11,0,0,26,1,0,844,4725.797440,66,3,20313.001280,1976.686157,hintandextended,lora,180 +on12,0,0,25,1,0,746,4640.003840,66,1,14556.003840,1881.601741,hintandextended,lora,180 +on2,0,0,24,1,0,464,4459.300000,66,1,14396.001280,1837.448000,hintandextended,lora,180 +on1,0,0,24,1,0,67,4368.001280,66,0,1077.001280,1801.184717,hintandextended,lora,180 +on5,0,0,25,1,0,94,4577.603840,66,1,1237.603840,1895.249741,hintandextended,lora,180 +on3,0,0,26,1,0,749,4682.502560,66,2,15559.001280,1931.016819,hintandextended,lora,180 +on4,0,0,25,1,0,360,4502.000000,66,1,7824.602560,1856.976000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5050.421760,66,0,-1.000000,2327.372800,hintandextended,lora,180 +on8,0,0,28,1,0,1056,5184.103840,66,4,20474.603840,2165.865126,hintandextended,lora,180 +on9,0,0,28,1,0,1263,5042.102560,66,4,22255.001280,2080.568819,hintandextended,lora,180 +on6,0,0,25,1,0,320,4501.200000,66,1,6757.001280,1829.023795,hintandextended,lora,180 +on7,0,0,24,1,0,1003,4406.000000,67,0,20190.001280,1828.480410,hintandextended,lora,180 +on8,0,0,24,1,0,1980,4322.997440,67,0,42920.001280,1770.479386,hintandextended,lora,180 +on3,0,0,24,1,0,43,4345.003840,67,0,2956.001280,1800.882150,hintandextended,lora,180 +on5,0,0,25,1,0,2880,4502.603840,67,2,58748.602560,1878.690150,hintandextended,lora,180 +on11,0,0,24,1,0,2411,4371.002560,67,0,47037.001280,1774.001434,hintandextended,lora,180 +on0,1,10,24,0,0,0,4722.211520,67,0,-1.000000,2144.891776,hintandextended,lora,180 +on6,0,0,25,1,0,1037,4619.603840,67,1,20350.603840,1895.890560,hintandextended,lora,180 +on1,0,0,25,1,0,152,4635.602560,67,1,3116.603840,1915.569843,hintandextended,lora,180 +on4,0,0,24,1,0,180,4321.000000,67,0,6170.001280,1754.000410,hintandextended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,hintandextended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,hintandextended,lora,180 +on9,0,0,23,1,0,1620,4278.000000,67,0,33237.001280,1763.104614,hintandextended,lora,180 +on2,0,0,24,1,0,407,4348.002560,67,0,9825.001280,1765.121638,hintandextended,lora,180 +on7,0,0,24,1,0,0,4321.997440,68,0,1179.001280,1782.783181,hintandextended,lora,180 +on9,0,0,28,1,0,1362,5184.202560,68,4,20294.003840,2164.529024,hintandextended,lora,180 +on10,0,0,26,1,0,480,4682.800000,68,2,13719.001280,1955.631795,hintandextended,lora,180 +on12,0,0,26,1,0,884,4987.603840,68,3,15209.003840,2058.785536,hintandextended,lora,180 +on1,0,0,25,1,0,900,4501.000000,68,1,20134.001280,1829.040205,hintandextended,lora,180 +on3,0,0,27,1,0,780,4862.900000,68,3,15049.001280,2036.071795,hintandextended,lora,180 +on2,0,0,25,1,0,84,4502.300000,68,2,5889.001280,1872.695590,hintandextended,lora,180 +on0,1,12,24,0,0,0,5173.617920,68,0,-1.000000,2376.652288,hintandextended,lora,180 +on11,0,0,28,1,0,1640,5073.102560,68,5,37289.001280,2150.936819,hintandextended,lora,180 +on6,0,0,24,1,0,360,4321.001280,68,0,8912.001280,1757.040922,hintandextended,lora,180 +on5,0,0,26,1,0,504,4821.608960,68,2,6050.603840,1954.243994,hintandextended,lora,180 +on8,0,0,25,1,0,220,4502.300000,68,1,8738.001280,1856.343795,hintandextended,lora,180 +on4,0,0,26,1,0,828,4822.602560,68,3,13879.003840,1983.169024,hintandextended,lora,180 +on12,0,0,26,1,0,994,4826.601280,69,2,18272.603840,2042.161331,hintandextended,lora,180 +on6,0,0,24,1,0,708,4410.500000,69,2,18111.001280,1827.191590,hintandextended,lora,180 +on9,0,0,24,1,0,304,4425.001280,69,0,4960.001280,1824.080717,hintandextended,lora,180 +on11,0,0,24,1,0,919,4320.998720,69,0,19553.001280,1753.999898,hintandextended,lora,180 +on0,1,9,24,0,0,0,4691.608960,69,0,-1.000000,2107.047680,hintandextended,lora,180 +on8,0,0,25,1,0,538,4502.996160,69,1,8964.001280,1855.646874,hintandextended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,hintandextended,lora,180 +on1,0,0,25,0,0,4300,4674.900000,69,2,-1.000000,1908.679590,hintandextended,lora,180 +on3,0,0,24,1,0,3240,4320.001280,69,0,65636.001280,1753.600717,hintandextended,lora,180 +on10,0,0,24,1,0,1311,4352.000000,69,0,28385.001280,1766.400410,hintandextended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,26,1,0,794,4681.297440,69,3,13174.001280,1901.318976,hintandextended,lora,180 +on4,0,0,25,1,0,969,4551.002560,69,1,19713.003840,1874.641434,hintandextended,lora,180 +on8,0,0,26,1,0,460,4825.005120,70,2,4552.003840,2050.178458,hintandextended,lora,180 +on12,0,0,24,1,0,907,4322.000000,70,0,18544.001280,1773.120000,hintandextended,lora,180 +on9,0,0,25,1,0,495,4504.300000,70,1,12405.001280,1893.688410,hintandextended,lora,180 +on2,0,0,24,1,0,1260,4321.998720,70,0,26662.001280,1757.599693,hintandextended,lora,180 +on6,0,0,24,1,0,3996,4337.001280,70,0,81752.001280,1789.040717,hintandextended,lora,180 +on10,0,0,25,1,0,56,4537.001280,70,1,373.003840,1840.401126,hintandextended,lora,180 +on5,0,0,26,1,0,746,4823.306400,70,2,12565.003840,2019.402970,hintandextended,lora,180 +on0,1,12,24,0,0,0,4891.616640,70,0,-1.000000,2263.853005,hintandextended,lora,180 +on11,0,0,27,1,0,568,5003.203840,70,3,9865.603840,2070.305536,hintandextended,lora,180 +on1,0,0,25,1,0,342,4502.997440,70,1,4392.001280,1858.223181,hintandextended,lora,180 +on3,0,0,25,1,0,530,4502.000000,70,1,9704.001280,1853.503795,hintandextended,lora,180 +on4,0,0,26,1,0,755,4683.796160,70,2,16544.001280,1932.110669,hintandextended,lora,180 +on7,0,0,24,1,0,35,4337.001280,70,0,213.001280,1774.161331,hintandextended,lora,180 +on10,0,0,24,1,0,2340,4322.000000,71,0,50403.001280,1761.440205,hintandextended,lora,180 +on8,0,0,24,1,0,573,4336.001280,71,0,13428.001280,1801.281126,hintandextended,lora,180 +on6,0,0,26,1,0,794,4682.901280,71,2,16881.001280,1945.064512,hintandextended,lora,180 +on1,0,0,25,1,0,231,4501.200000,71,1,6269.001280,1829.328000,hintandextended,lora,180 +on5,0,0,26,1,0,752,4822.903840,71,3,13588.003840,2021.801536,hintandextended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,hintandextended,lora,180 +on11,0,0,27,1,0,855,5002.206400,71,3,17042.603840,2048.722560,hintandextended,lora,180 +on7,0,0,26,1,0,454,4683.301280,71,2,7622.001280,1955.688307,hintandextended,lora,180 +on12,0,0,25,1,0,0,4505.007680,71,1,2924.602560,1864.963686,hintandextended,lora,180 +on0,1,11,24,0,0,0,4920.815360,71,0,-1.000000,2249.933312,hintandextended,lora,180 +on3,0,0,25,1,0,1126,4504.000000,71,1,24067.001280,1884.480819,hintandextended,lora,180 +on2,0,0,26,1,0,898,4746.600000,71,3,18973.001280,2015.184000,hintandextended,lora,180 +on4,0,0,27,1,0,616,5003.902560,71,3,7783.603840,2058.681229,hintandextended,lora,180 +on8,0,0,25,1,0,423,4501.297440,72,1,10743.001280,1839.191181,hintandextended,lora,180 +on9,0,0,25,1,0,998,4502.300000,72,1,18935.002560,1869.367795,hintandextended,lora,180 +on4,0,0,25,1,0,838,4501.000000,72,1,17183.001280,1828.943795,hintandextended,lora,180 +on7,0,0,27,1,0,906,5001.503840,72,4,13365.003840,2033.017536,hintandextended,lora,180 +on5,0,0,24,1,0,640,4401.001280,72,0,13205.001280,1814.384717,hintandextended,lora,180 +on1,0,0,25,1,0,28,4509.606400,72,1,1833.603840,1857.875174,hintandextended,lora,180 +on10,0,0,27,1,0,1100,5003.600000,72,3,17344.603840,2055.264410,hintandextended,lora,180 +on2,0,0,24,1,0,170,4470.001280,72,0,1673.001280,1813.600717,hintandextended,lora,180 +on11,0,0,27,1,0,1276,4861.900000,72,3,28179.001280,2043.655795,hintandextended,lora,180 +on6,0,0,24,1,0,1095,4326.001280,72,1,23723.001280,1784.640717,hintandextended,lora,180 +on3,0,0,25,1,0,327,4502.000000,72,1,7354.001280,1833.504000,hintandextended,lora,180 +on12,0,0,26,1,0,1139,4880.603840,72,4,23883.003840,2036.897946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,72,0,-1.000000,2260.090240,hintandextended,lora,180 +on5,0,0,25,1,0,699,4506.300000,73,1,15498.001280,1922.008410,hintandextended,lora,180 +on6,0,0,25,1,0,121,4604.603840,73,1,1159.603840,1927.553741,hintandextended,lora,180 +on10,0,0,24,1,0,414,4356.000000,73,0,8848.001280,1784.960614,hintandextended,lora,180 +on8,0,0,26,1,0,496,4822.600000,73,2,6792.603840,1954.640410,hintandextended,lora,180 +on3,0,0,25,1,0,741,4505.002560,73,1,15658.003840,1858.001229,hintandextended,lora,180 +on12,0,0,25,1,0,902,4502.000000,73,1,21694.603840,1861.664000,hintandextended,lora,180 +on2,0,0,26,1,0,639,4682.298720,73,2,11035.001280,1911.847488,hintandextended,lora,180 +on0,1,12,24,0,0,0,5019.816640,73,0,-1.000000,2315.133619,hintandextended,lora,180 +on9,0,0,24,1,0,146,4449.003840,73,0,999.001280,1862.226150,hintandextended,lora,180 +on11,0,0,27,1,0,973,4999.498720,73,5,21533.001280,2153.158669,hintandextended,lora,180 +on1,0,0,24,1,0,3009,4430.001280,73,0,60799.001280,1803.200717,hintandextended,lora,180 +on7,0,0,25,1,0,3060,4501.000000,73,1,63484.001280,1829.200000,hintandextended,lora,180 +on4,0,0,25,1,0,320,4503.198720,73,1,6631.001280,1830.143488,hintandextended,lora,180 +on12,0,0,25,1,0,176,4658.605120,74,1,1256.603840,1917.474867,hintandextended,lora,180 +on1,0,0,24,1,0,700,4462.000000,74,0,13258.001280,1839.040410,hintandextended,lora,180 +on9,0,0,27,1,0,806,5002.206400,74,3,13418.003840,2067.923174,hintandextended,lora,180 +on0,1,12,24,0,0,0,4784.612800,74,0,-1.000000,2221.049626,hintandextended,lora,180 +on2,0,0,24,1,0,89,4390.001280,74,0,1096.001280,1807.584717,hintandextended,lora,180 +on5,0,0,24,1,0,522,4463.000000,74,0,10507.001280,1810.800410,hintandextended,lora,180 +on6,0,0,24,1,0,900,4322.000000,74,0,19899.001280,1783.040410,hintandextended,lora,180 +on11,0,0,26,1,0,844,4681.300000,74,2,17506.001280,1915.064205,hintandextended,lora,180 +on3,0,0,24,1,0,2880,4322.000000,74,0,58427.001280,1764.640000,hintandextended,lora,180 +on8,0,0,24,1,0,1080,4320.997440,74,0,23361.001280,1753.999181,hintandextended,lora,180 +on4,0,0,25,1,0,666,4641.203840,74,1,10667.003840,1910.721741,hintandextended,lora,180 +on10,0,0,25,1,0,293,4502.000000,74,1,7055.001280,1830.144000,hintandextended,lora,180 +on7,0,0,25,1,0,1181,4501.301280,74,2,25737.001280,1858.760512,hintandextended,lora,180 +on5,0,0,24,1,0,249,4369.001280,75,0,4685.001280,1773.200717,hintandextended,lora,180 +on7,0,0,23,1,0,2092,4366.000000,75,0,41614.001280,1772.000410,hintandextended,lora,180 +on10,0,0,25,1,0,1106,4503.300000,75,1,23981.001280,1890.823795,hintandextended,lora,180 +on4,0,0,26,1,0,1813,4685.897440,75,3,39185.001280,2009.975590,hintandextended,lora,180 +on12,0,0,24,1,0,493,4436.000000,75,0,9457.001280,1857.120614,hintandextended,lora,180 +on3,0,0,24,1,0,1026,4427.998720,75,0,19037.001280,1825.439898,hintandextended,lora,180 +on2,0,0,25,1,0,1424,4502.497440,75,1,30712.001280,1865.911181,hintandextended,lora,180 +on6,0,0,26,1,0,1368,4824.603840,75,2,24142.603840,2017.905946,hintandextended,lora,180 +on9,0,0,27,1,0,1577,4930.697440,75,5,35674.001280,2104.006566,hintandextended,lora,180 +on8,0,0,25,1,0,3179,4501.300000,75,1,64768.001280,1839.080000,hintandextended,lora,180 +on1,0,0,25,1,0,480,4602.602560,75,1,9617.603840,1875.489843,hintandextended,lora,180 +on11,0,0,26,1,0,2122,4682.900000,75,3,44158.001280,1953.191590,hintandextended,lora,180 +on0,1,12,24,0,0,0,4602.207680,75,0,-1.000000,2148.089421,hintandextended,lora,180 +on6,0,0,24,1,0,604,4365.002560,76,0,12244.001280,1800.081434,hintandextended,lora,180 +on11,0,0,23,1,0,205,4284.001280,76,0,4326.001280,1739.200717,hintandextended,lora,180 +on12,0,0,25,1,0,360,4502.000000,76,1,7836.001280,1826.880614,hintandextended,lora,180 +on3,0,0,25,1,0,2291,4503.298720,76,1,46457.001280,1881.320102,hintandextended,lora,180 +on4,0,0,24,1,0,3928,4449.001280,76,0,76369.001280,1830.960717,hintandextended,lora,180 +on10,0,0,24,1,0,2438,4399.002560,76,0,50362.001280,1792.241434,hintandextended,lora,180 +on1,0,0,24,1,0,1027,4429.003840,76,0,18893.001280,1832.402150,hintandextended,lora,180 +on9,0,0,24,1,0,1654,4335.001280,76,0,35295.001280,1782.000922,hintandextended,lora,180 +on0,1,12,24,0,0,0,4811.210240,76,0,-1.000000,2231.690445,hintandextended,lora,180 +on5,0,0,25,1,0,274,4578.603840,76,1,4486.603840,1899.650355,hintandextended,lora,180 +on8,0,0,26,1,0,1869,4827.900000,76,2,35455.603840,2065.769024,hintandextended,lora,180 +on2,0,0,24,1,0,469,4410.002560,76,0,7659.001280,1805.761434,hintandextended,lora,180 +on7,0,0,24,1,0,2627,4324.600000,76,1,58179.001280,1799.600000,hintandextended,lora,180 +on2,0,0,26,1,0,1032,4682.600000,77,2,21160.001280,1952.527795,hintandextended,lora,180 +on7,0,0,25,1,0,168,4650.603840,77,1,3248.603840,1925.473536,hintandextended,lora,180 +on10,0,0,25,1,0,295,4596.003840,77,1,5637.003840,1864.481946,hintandextended,lora,180 +on6,0,0,27,1,0,802,4861.901280,77,3,13309.001280,1990.936102,hintandextended,lora,180 +on3,0,0,25,1,0,1214,4502.200000,77,1,22786.001280,1839.600410,hintandextended,lora,180 +on12,0,0,24,1,0,445,4386.801280,77,0,9803.001280,1790.400717,hintandextended,lora,180 +on4,0,0,26,1,0,728,4822.600000,77,2,16454.003840,2036.560205,hintandextended,lora,180 +on5,0,0,25,1,0,2521,4501.300000,77,1,52410.001280,1857.960000,hintandextended,lora,180 +on11,0,0,25,1,0,834,4503.297440,77,1,16294.001280,1860.679386,hintandextended,lora,180 +on1,0,0,25,1,0,345,4502.998720,77,1,5477.001280,1858.479693,hintandextended,lora,180 +on8,0,0,24,1,0,168,4471.000000,77,0,3088.001280,1867.024205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,77,0,-1.000000,2260.092083,hintandextended,lora,180 +on9,0,0,25,1,0,569,4512.603840,77,1,13470.603840,1910.385946,hintandextended,lora,180 +on8,0,0,26,1,0,1106,4681.500000,78,2,23218.001280,1904.599795,hintandextended,lora,180 +on4,0,0,29,1,0,1175,5362.903840,78,5,18744.003840,2263.545126,hintandextended,lora,180 +on12,0,0,27,1,0,932,4862.300000,78,3,16250.001280,1991.111795,hintandextended,lora,180 +on5,0,0,25,1,0,55,4537.606400,78,1,2092.603840,1870.803174,hintandextended,lora,180 +on2,0,0,26,1,0,1062,4758.502560,78,3,18584.001280,1945.177229,hintandextended,lora,180 +on7,0,0,25,1,0,293,4502.000000,78,1,5668.001280,1858.080000,hintandextended,lora,180 +on10,0,0,28,1,0,956,5181.903840,78,4,16410.003840,2158.681331,hintandextended,lora,180 +on1,0,0,26,1,0,648,4683.000000,78,2,12149.001280,1941.488000,hintandextended,lora,180 +on11,0,0,24,1,0,154,4455.001280,78,0,1932.001280,1829.264717,hintandextended,lora,180 +on3,0,0,25,1,0,672,4640.003840,78,1,10817.003840,1881.601741,hintandextended,lora,180 +on9,0,0,26,1,0,626,4821.103840,78,2,12309.003840,2012.041536,hintandextended,lora,180 +on6,0,0,25,1,0,375,4501.300000,78,1,10657.001280,1854.440000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5020.619200,78,0,-1.000000,2315.451366,hintandextended,lora,180 +on9,0,0,28,1,0,1412,5182.503840,79,4,26929.603840,2138.361536,hintandextended,lora,180 +on3,0,0,25,1,0,1007,4501.300000,79,1,21386.001280,1830.600000,hintandextended,lora,180 +on8,0,0,25,1,0,463,4583.003840,79,1,7967.003840,1858.801946,hintandextended,lora,180 +on5,0,0,25,1,0,1173,4640.003840,79,1,21546.003840,1881.601741,hintandextended,lora,180 +on4,0,0,24,1,0,516,4457.001280,79,0,7807.001280,1836.304717,hintandextended,lora,180 +on10,0,0,26,1,0,1538,4682.300000,79,2,31141.001280,1933.559795,hintandextended,lora,180 +on12,0,0,25,1,0,654,4501.000000,79,1,13810.001280,1829.040000,hintandextended,lora,180 +on1,0,0,24,1,0,561,4437.003840,79,1,13970.003840,1805.745536,hintandextended,lora,180 +on11,0,0,23,1,0,1123,4353.001280,79,1,23828.001280,1795.184717,hintandextended,lora,180 +on2,0,0,26,1,0,1203,4821.203840,79,2,23988.003840,2002.497536,hintandextended,lora,180 +on6,0,0,26,1,0,1365,4775.600000,79,3,26768.001280,1977.007795,hintandextended,lora,180 +on7,0,0,26,1,0,768,4683.300000,79,2,15143.001280,1961.831795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,79,0,-1.000000,2315.851366,hintandextended,lora,180 +on12,0,0,24,1,0,1143,4385.606400,80,1,22296.603840,1779.891174,hintandextended,lora,180 +on9,0,0,24,1,0,900,4324.001280,80,0,19250.001280,1781.601126,hintandextended,lora,180 +on6,0,0,24,1,0,1254,4474.001280,80,0,22136.001280,1815.200717,hintandextended,lora,180 +on11,0,0,25,1,0,3147,4501.300000,80,2,68164.001280,1857.960000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4604.607680,80,0,-1.000000,2149.047373,hintandextended,lora,180 +on2,0,0,24,1,0,540,4321.001280,80,0,11794.001280,1773.488717,hintandextended,lora,180 +on7,0,0,24,1,0,82,4382.001280,80,0,969.001280,1778.400717,hintandextended,lora,180 +on5,0,0,24,1,0,1682,4362.001280,80,0,34830.001280,1770.400717,hintandextended,lora,180 +on1,0,0,24,1,0,2792,4379.301280,80,1,61055.001280,1802.920717,hintandextended,lora,180 +on3,0,0,24,1,0,392,4332.001280,80,0,10875.001280,1758.400717,hintandextended,lora,180 +on4,0,0,24,1,0,1328,4368.998720,80,0,27425.001280,1773.199898,hintandextended,lora,180 +on8,0,0,24,1,0,1800,4322.000000,80,0,37141.001280,1764.640205,hintandextended,lora,180 +on10,0,0,24,1,0,796,4440.601280,80,1,16276.601280,1833.697126,hintandextended,lora,180 +on12,0,0,27,1,0,1108,5013.503840,81,4,22459.003840,2088.857946,hintandextended,lora,180 +on10,0,0,28,1,0,1552,5043.000000,81,5,25966.001280,2066.431181,hintandextended,lora,180 +on6,0,0,25,1,0,540,4500.607680,81,2,12038.602560,1825.891686,hintandextended,lora,180 +on1,0,0,25,1,0,1067,4501.000000,81,1,19951.001280,1828.944000,hintandextended,lora,180 +on8,0,0,24,1,0,394,4334.001280,81,0,9832.001280,1759.200717,hintandextended,lora,180 +on5,0,0,26,1,0,566,4822.603840,81,2,9992.603840,1994.177946,hintandextended,lora,180 +on7,0,0,26,1,0,1267,4820.503840,81,2,20111.003840,1957.209536,hintandextended,lora,180 +on4,0,0,24,1,0,305,4425.001280,81,0,6313.001280,1795.600717,hintandextended,lora,180 +on11,0,0,24,1,0,881,4334.000000,81,1,16868.001280,1790.624000,hintandextended,lora,180 +on9,0,0,24,1,0,1102,4322.001280,81,0,22299.001280,1754.400717,hintandextended,lora,180 +on3,0,0,26,1,0,1295,4821.903840,81,2,26127.603840,1969.369741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5038.819200,81,0,-1.000000,2322.732186,hintandextended,lora,180 +on2,0,0,24,1,0,0,4321.001280,81,0,3069.001280,1764.080512,hintandextended,lora,180 +on10,0,0,26,1,0,1352,4814.500000,82,3,30158.001280,2049.959590,hintandextended,lora,180 +on7,0,0,26,1,0,1025,4825.603840,82,2,18957.603840,2012.161331,hintandextended,lora,180 +on11,0,0,25,1,0,1255,4502.200000,82,1,25701.001280,1858.160000,hintandextended,lora,180 +on6,0,0,24,1,0,540,4321.001280,82,0,13257.001280,1782.384717,hintandextended,lora,180 +on12,0,0,26,1,0,1014,4682.207680,82,2,18796.001280,1930.115072,hintandextended,lora,180 +on9,0,0,28,1,0,1471,5183.300000,82,4,25861.003840,2156.135795,hintandextended,lora,180 +on1,0,0,24,1,0,2025,4345.001280,82,0,41173.001280,1763.600717,hintandextended,lora,180 +on4,0,0,25,1,0,1620,4501.601280,82,1,33695.602560,1826.289126,hintandextended,lora,180 +on3,0,0,24,1,0,438,4382.000000,82,0,7763.001280,1855.904205,hintandextended,lora,180 +on8,0,0,25,1,0,999,4640.003840,82,1,17528.003840,1881.601741,hintandextended,lora,180 +on5,0,0,25,1,0,1037,4501.000000,82,1,22976.001280,1829.040000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4929.215360,82,0,-1.000000,2278.890854,hintandextended,lora,180 +on2,0,0,24,1,0,755,4335.001280,82,0,17368.001280,1759.600717,hintandextended,lora,180 +on6,0,0,24,1,0,204,4326.001280,83,0,5361.001280,1809.600717,hintandextended,lora,180 +on1,0,0,24,1,0,996,4399.000000,83,0,21593.001280,1806.160819,hintandextended,lora,180 +on7,0,0,26,1,0,822,4824.806400,83,2,13061.603840,2008.531174,hintandextended,lora,180 +on9,0,0,26,1,0,1225,4682.300000,83,2,21944.001280,1916.920410,hintandextended,lora,180 +on8,0,0,25,1,0,2453,4502.001280,83,1,50912.001280,1839.040717,hintandextended,lora,180 +on11,0,0,25,1,0,474,4570.298720,83,2,15061.001280,1953.143693,hintandextended,lora,180 +on10,0,0,25,1,0,703,4501.201280,83,1,12900.001280,1829.024717,hintandextended,lora,180 +on3,0,0,24,1,0,18,4322.993600,83,0,3329.001280,1754.798259,hintandextended,lora,180 +on4,0,0,24,1,0,2094,4416.002560,83,0,42637.001280,1824.001434,hintandextended,lora,180 +on0,1,11,24,0,0,0,4611.208960,83,0,-1.000000,2126.090752,hintandextended,lora,180 +on2,0,0,26,1,0,212,4824.902560,83,3,5521.603840,2027.289638,hintandextended,lora,180 +on5,0,0,24,1,0,360,4324.001280,83,0,8646.001280,1820.609126,hintandextended,lora,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,hintandextended,lora,180 +on6,0,0,26,1,0,1334,4821.303840,84,3,24506.003840,2002.761536,hintandextended,lora,180 +on11,0,0,26,1,0,1545,4683.502560,84,2,32224.001280,1957.352819,hintandextended,lora,180 +on5,0,0,26,1,0,1328,4822.203840,84,2,28669.003840,2048.705331,hintandextended,lora,180 +on2,0,0,24,1,0,940,4341.001280,84,0,21253.001280,1790.160717,hintandextended,lora,180 +on12,0,0,24,1,0,1227,4448.001280,84,0,24346.001280,1823.360717,hintandextended,lora,180 +on1,0,0,28,1,0,1932,5042.305120,84,4,34952.001280,2058.841434,hintandextended,lora,180 +on8,0,0,24,1,0,1282,4323.001280,84,0,28509.001280,1756.080717,hintandextended,lora,180 +on4,0,0,25,1,0,1952,4501.300000,84,1,38157.001280,1832.744000,hintandextended,lora,180 +on7,0,0,24,1,0,180,4322.005120,84,0,5152.001280,1793.506458,hintandextended,lora,180 +on0,1,12,24,0,0,0,4894.616640,84,0,-1.000000,2265.050752,hintandextended,lora,180 +on9,0,0,27,1,0,1724,5004.203840,84,4,32385.603840,2065.408922,hintandextended,lora,180 +on10,0,0,24,1,0,976,4376.003840,84,0,21413.003840,1776.001741,hintandextended,lora,180 +on3,0,0,25,1,0,653,4500.997440,84,1,15152.001280,1825.999181,hintandextended,lora,180 +on7,0,0,26,1,0,1118,4822.306400,85,2,21517.003840,1991.866970,hintandextended,lora,180 +on2,0,0,24,1,0,1193,4467.203840,85,1,28567.001280,1867.265536,hintandextended,lora,180 +on6,0,0,26,1,0,1543,4826.798720,85,2,28728.603840,2022.080102,hintandextended,lora,180 +on8,0,0,26,1,0,1013,4823.903840,85,2,18104.603840,2002.890150,hintandextended,lora,180 +on9,0,0,24,1,0,849,4431.000000,85,0,17944.001280,1826.224410,hintandextended,lora,180 +on12,0,0,26,1,0,1286,4681.300000,85,2,23307.001280,1904.519795,hintandextended,lora,180 +on10,0,0,25,1,0,1002,4501.300000,85,1,21357.001280,1840.888000,hintandextended,lora,180 +on11,0,0,24,1,0,612,4374.001280,85,0,14482.001280,1811.200512,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.815360,85,0,-1.000000,2260.331674,hintandextended,lora,180 +on4,0,0,24,1,0,58,4484.601280,85,1,1196.603840,1819.489331,hintandextended,lora,180 +on5,0,0,24,1,0,93,4395.001280,85,0,1036.001280,1838.160512,hintandextended,lora,180 +on1,0,0,25,1,0,1467,4661.500000,85,2,30146.001280,1922.615795,hintandextended,lora,180 +on3,0,0,24,1,0,2474,4435.001280,85,0,48296.001280,1828.240717,hintandextended,lora,180 +on7,0,0,24,1,0,669,4429.001280,86,0,12138.001280,1797.200717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5022.219200,86,0,-1.000000,2316.092186,hintandextended,lora,180 +on2,0,0,28,1,0,1119,5042.501280,86,4,20737.001280,2103.400512,hintandextended,lora,180 +on9,0,0,24,1,0,1265,4321.000000,86,0,25812.001280,1756.400000,hintandextended,lora,180 +on8,0,0,24,1,0,805,4385.001280,86,0,15065.001280,1779.600717,hintandextended,lora,180 +on1,0,0,24,1,0,70,4370.005120,86,0,646.001280,1773.602458,hintandextended,lora,180 +on12,0,0,25,1,0,995,4793.103840,86,2,20898.603840,2024.121741,hintandextended,lora,180 +on10,0,0,25,1,0,382,4501.500000,86,1,10942.001280,1844.007590,hintandextended,lora,180 +on4,0,0,28,1,0,872,5183.805120,86,4,15225.003840,2197.682048,hintandextended,lora,180 +on6,0,0,25,1,0,11,4501.996160,86,1,806.603840,1854.991078,hintandextended,lora,180 +on5,0,0,25,1,0,633,4640.003840,86,1,11102.003840,1881.601741,hintandextended,lora,180 +on3,0,0,24,1,0,261,4382.001280,86,0,4158.001280,1794.400512,hintandextended,lora,180 +on11,0,0,26,1,0,794,4822.303840,86,2,12298.003840,2013.561536,hintandextended,lora,180 +on10,0,0,25,1,0,1800,4501.001280,87,1,36190.001280,1854.640717,hintandextended,lora,180 +on1,0,0,24,1,0,2124,4445.001280,87,0,40115.001280,1832.240717,hintandextended,lora,180 +on4,0,0,24,1,0,459,4400.001280,87,0,8868.001280,1812.544717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4791.608960,87,0,-1.000000,2223.848090,hintandextended,lora,180 +on8,0,0,25,1,0,2082,4584.602560,87,1,40275.603840,1873.249638,hintandextended,lora,180 +on2,0,0,25,1,0,1005,4502.300000,87,1,24145.001280,1867.160205,hintandextended,lora,180 +on7,0,0,24,1,0,180,4320.001280,87,0,5605.001280,1753.600717,hintandextended,lora,180 +on11,0,0,24,1,0,922,4322.001280,87,0,18975.001280,1754.400717,hintandextended,lora,180 +on3,0,0,24,1,0,2520,4321.000000,87,0,51554.001280,1757.200000,hintandextended,lora,180 +on6,0,0,24,1,0,58,4359.997440,87,0,757.001280,1780.319386,hintandextended,lora,180 +on12,0,0,25,1,0,2247,4775.901280,87,2,48390.001280,2016.280512,hintandextended,lora,180 +on9,0,0,25,1,0,653,4500.201280,87,1,14129.001280,1825.680717,hintandextended,lora,180 +on5,0,0,24,1,0,540,4321.998720,87,0,14297.001280,1757.599898,hintandextended,lora,180 +on10,0,0,26,1,0,1174,4684.298720,88,2,21925.001280,1944.823488,hintandextended,lora,180 +on3,0,0,24,1,0,358,4479.005120,88,0,4568.001280,1845.842458,hintandextended,lora,180 +on5,0,0,25,1,0,1553,4501.000000,88,1,33560.001280,1829.200000,hintandextended,lora,180 +on11,0,0,24,1,0,0,4321.002560,88,0,3470.001280,1779.761229,hintandextended,lora,180 +on0,1,12,24,0,0,0,4745.612800,88,0,-1.000000,2205.451264,hintandextended,lora,180 +on9,0,0,25,1,0,1175,4502.300000,88,1,25433.001280,1853.624000,hintandextended,lora,180 +on4,0,0,25,1,0,1049,4503.997440,88,1,20219.001280,1878.766976,hintandextended,lora,180 +on2,0,0,24,1,0,552,4321.997440,88,0,13525.001280,1754.399590,hintandextended,lora,180 +on12,0,0,25,1,0,1236,4638.006400,88,1,22085.003840,1902.243379,hintandextended,lora,180 +on6,0,0,24,1,0,756,4449.300000,88,2,17884.001280,1849.063590,hintandextended,lora,180 +on1,0,0,24,1,0,4133,4473.001280,88,0,81917.001280,1814.800717,hintandextended,lora,180 +on8,0,0,26,1,0,1185,4824.203840,88,2,20379.003840,2023.602355,hintandextended,lora,180 +on7,0,0,25,1,0,806,4569.603840,88,1,18045.603840,1897.025536,hintandextended,lora,180 +on6,0,0,24,1,0,482,4425.001280,89,0,7515.001280,1830.800922,hintandextended,lora,180 +on7,0,0,25,1,0,2996,4501.200000,89,1,61082.001280,1829.023795,hintandextended,lora,180 +on2,0,0,25,1,0,1696,4501.298720,89,1,35945.001280,1842.759898,hintandextended,lora,180 +on11,0,0,26,1,0,1909,4683.798720,89,3,39610.001280,1960.095283,hintandextended,lora,180 +on9,0,0,25,1,0,465,4587.603840,89,1,7675.603840,1860.690560,hintandextended,lora,180 +on3,0,0,24,1,0,1996,4320.394880,89,0,39931.605120,1753.758157,hintandextended,lora,180 +on10,0,0,26,1,0,2074,4741.000000,89,2,39771.603840,1956.880205,hintandextended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,hintandextended,lora,180 +on8,0,0,24,1,0,155,4457.000000,89,0,1383.001280,1818.640614,hintandextended,lora,180 +on4,0,0,24,1,0,180,4322.998720,89,0,4017.001280,1811.919693,hintandextended,lora,180 +on1,0,0,25,1,0,3038,4641.603840,89,1,61243.603840,1939.522150,hintandextended,lora,180 +on0,1,11,24,0,0,0,4740.814080,89,0,-1.000000,2177.931366,hintandextended,lora,180 +on5,0,0,24,1,0,698,4459.001280,89,0,12684.001280,1824.400717,hintandextended,lora,180 +on9,0,0,25,1,0,1374,4501.000000,90,1,27513.001280,1826.000410,hintandextended,lora,180 +on8,0,0,25,1,0,2453,4502.000000,90,1,51194.001280,1858.240000,hintandextended,lora,180 +on6,0,0,25,1,0,360,4502.601280,90,1,9882.602560,1842.209331,hintandextended,lora,180 +on12,0,0,24,1,0,2324,4465.001280,90,0,44288.001280,1840.240717,hintandextended,lora,180 +on1,0,0,25,1,0,2124,4500.301280,90,1,42372.001280,1831.480717,hintandextended,lora,180 +on5,0,0,23,1,0,1736,4358.001280,90,0,32947.001280,1768.800717,hintandextended,lora,180 +on7,0,0,24,1,0,140,4440.002560,90,0,302.001280,1801.601434,hintandextended,lora,180 +on10,0,0,25,1,0,1657,4502.301280,90,1,38070.001280,1906.520512,hintandextended,lora,180 +on3,0,0,24,1,0,2226,4505.602560,90,1,44448.603840,1839.473638,hintandextended,lora,180 +on4,0,0,24,1,0,1080,4321.001280,90,0,25229.001280,1765.584717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4843.208960,90,0,-1.000000,2244.487885,hintandextended,lora,180 +on11,0,0,24,1,0,1440,4321.001280,90,0,29705.001280,1762.960307,hintandextended,lora,180 +on2,0,0,24,1,0,900,4321.001280,90,0,21352.001280,1772.080717,hintandextended,lora,180 +on1,0,0,24,1,0,540,4322.000000,91,0,11394.001280,1783.584000,hintandextended,lora,180 +on10,0,0,24,1,0,1210,4432.000000,91,0,23224.001280,1827.040410,hintandextended,lora,180 +on11,0,0,25,1,0,2050,4502.300000,91,1,42044.001280,1869.400000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5046.415360,91,0,-1.000000,2325.772288,hintandextended,lora,180 +on9,0,0,24,1,0,444,4384.003840,91,0,8043.001280,1779.202150,hintandextended,lora,180 +on7,0,0,25,1,0,195,4501.300000,91,1,7258.001280,1854.311795,hintandextended,lora,180 +on6,0,0,25,1,0,3240,4501.602560,91,1,68163.602560,1846.289434,hintandextended,lora,180 +on4,0,0,25,1,0,841,4504.294880,91,2,18960.001280,1875.542157,hintandextended,lora,180 +on5,0,0,26,1,0,454,4823.606400,91,2,7419.603840,1997.442970,hintandextended,lora,180 +on12,0,0,25,1,0,834,4501.994880,91,1,17489.001280,1826.398362,hintandextended,lora,180 +on3,0,0,24,1,0,130,4437.997440,91,0,3042.001280,1914.399795,hintandextended,lora,180 +on2,0,0,25,1,0,31,4513.603840,91,1,3202.603840,1858.577741,hintandextended,lora,180 +on8,0,0,26,1,0,1082,4821.903840,91,3,23384.603840,2001.769946,hintandextended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,hintandextended,lora,180 +on10,0,0,25,1,0,311,4501.000000,92,1,6099.001280,1829.248000,hintandextended,lora,180 +on2,0,0,24,1,0,0,4325.000000,92,0,3687.001280,1815.249024,hintandextended,lora,180 +on5,0,0,26,1,0,633,4682.300000,92,3,12603.001280,1929.399590,hintandextended,lora,180 +on3,0,0,27,1,0,1166,5002.807680,92,3,18645.603840,2055.363482,hintandextended,lora,180 +on0,1,11,24,0,0,0,4977.616640,92,0,-1.000000,2272.654029,hintandextended,lora,180 +on11,0,0,26,1,0,956,4825.102560,92,2,17727.003840,2041.001434,hintandextended,lora,180 +on12,0,0,26,1,0,908,4791.001280,92,3,17567.001280,1984.016512,hintandextended,lora,180 +on1,0,0,25,1,0,813,4642.202560,92,1,12763.003840,1888.241638,hintandextended,lora,180 +on4,0,0,25,1,0,511,4591.205120,92,2,9697.001280,1903.954662,hintandextended,lora,180 +on9,0,0,28,1,0,1213,5042.701280,92,4,24427.001280,2121.864102,hintandextended,lora,180 +on8,0,0,26,1,0,452,4822.008960,92,2,6259.003840,1978.948198,hintandextended,lora,180 +on6,0,0,25,1,0,1017,4629.400000,92,2,18484.001280,1880.880000,hintandextended,lora,180 +on1,0,0,25,1,0,1013,4502.000000,93,1,24482.001280,1843.200000,hintandextended,lora,180 +on11,0,0,24,1,0,1320,4328.301280,93,1,32191.001280,1779.352717,hintandextended,lora,180 +on7,0,0,25,1,0,360,4502.400000,93,1,9294.602560,1849.072410,hintandextended,lora,180 +on12,0,0,26,1,0,814,4822.808960,93,2,13213.603840,1983.363994,hintandextended,lora,180 +on4,0,0,25,1,0,886,4502.300000,93,1,18565.002560,1836.023590,hintandextended,lora,180 +on9,0,0,28,1,0,1204,5043.200000,93,5,27715.001280,2133.439386,hintandextended,lora,180 +on3,0,0,24,1,0,852,4432.001280,93,0,15213.001280,1820.224922,hintandextended,lora,180 +on6,0,0,24,1,0,180,4320.001280,93,0,5752.001280,1753.600717,hintandextended,lora,180 +on5,0,0,25,1,0,395,4502.300000,93,2,13052.001280,1874.231386,hintandextended,lora,180 +on2,0,0,26,1,0,970,4823.305120,93,2,18725.005120,2003.466253,hintandextended,lora,180 +on10,0,0,23,1,0,0,4277.001280,93,0,1663.001280,1748.240307,hintandextended,lora,180 +on0,1,12,24,0,0,0,4807.614080,93,0,-1.000000,2230.250342,hintandextended,lora,180 +on8,0,0,26,1,0,1359,4822.003840,93,2,24642.003840,1986.241536,hintandextended,lora,180 +on7,0,0,24,1,0,918,4320.003840,94,0,19656.003840,1753.601741,hintandextended,lora,180 +on10,0,0,25,1,0,904,4504.300000,94,1,23583.001280,1918.680000,hintandextended,lora,180 +on1,0,0,25,1,0,360,4504.000000,94,1,8682.602560,1877.136205,hintandextended,lora,180 +on2,0,0,24,1,0,132,4434.002560,94,0,1070.001280,1827.841843,hintandextended,lora,180 +on9,0,0,25,1,0,540,4503.996160,94,1,11417.001280,1858.815283,hintandextended,lora,180 +on6,0,0,26,1,0,1366,4683.601280,94,2,28690.001280,1948.592717,hintandextended,lora,180 +on4,0,0,23,1,0,793,4426.001280,94,1,16023.001280,1796.000717,hintandextended,lora,180 +on0,1,11,24,0,0,0,4949.215360,94,0,-1.000000,2261.292288,hintandextended,lora,180 +on3,0,0,23,1,0,312,4427.001280,94,0,4417.001280,1796.400717,hintandextended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,hintandextended,lora,180 +on8,0,0,25,1,0,1271,4502.998720,94,1,28851.603840,1853.903283,hintandextended,lora,180 +on11,0,0,25,1,0,779,4501.301280,94,1,19496.001280,1848.520717,hintandextended,lora,180 +on12,0,0,28,1,0,1195,5185.305120,94,4,23743.003840,2219.721843,hintandextended,lora,180 +on10,0,0,24,1,0,926,4326.998720,95,0,20321.001280,1756.399898,hintandextended,lora,180 +on1,0,0,26,1,0,1339,4823.303840,95,2,27314.003840,2033.641741,hintandextended,lora,180 +on5,0,0,25,1,0,1184,4642.002560,95,1,20481.003840,1911.249434,hintandextended,lora,180 +on9,0,0,24,1,0,302,4422.001280,95,0,5792.001280,1794.400717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4974.216640,95,0,-1.000000,2296.891776,hintandextended,lora,180 +on4,0,0,24,1,0,0,4323.001280,95,0,193.001280,1828.304922,hintandextended,lora,180 +on3,0,0,27,1,0,1412,4861.600000,95,3,27154.001280,2005.328000,hintandextended,lora,180 +on2,0,0,24,1,0,800,4381.001280,95,0,17310.001280,1806.224717,hintandextended,lora,180 +on8,0,0,25,1,0,1236,4639.602560,95,1,22514.603840,1913.281229,hintandextended,lora,180 +on12,0,0,26,1,0,490,4820.605120,95,2,5952.603840,1953.890867,hintandextended,lora,180 +on11,0,0,25,1,0,360,4503.998720,95,1,9676.001280,1884.480102,hintandextended,lora,180 +on7,0,0,24,1,0,2560,4340.001280,95,0,52559.001280,1761.600717,hintandextended,lora,180 +on6,0,0,26,1,0,1217,4682.000000,95,2,22353.001280,1929.823795,hintandextended,lora,180 +on8,0,0,26,1,0,674,4858.703840,96,4,11211.001280,2013.609741,hintandextended,lora,180 +on11,0,0,26,1,0,1040,4979.502560,96,3,21845.603840,2088.313229,hintandextended,lora,180 +on2,0,0,24,1,0,1727,4408.001280,96,0,36201.001280,1812.160717,hintandextended,lora,180 +on12,0,0,25,1,0,817,4578.803840,96,1,16203.003840,1860.321536,hintandextended,lora,180 +on10,0,0,24,1,0,282,4404.001280,96,0,7062.001280,1802.624922,hintandextended,lora,180 +on4,0,0,25,1,0,473,4501.200000,96,1,10364.001280,1829.120000,hintandextended,lora,180 +on7,0,0,26,1,0,667,4889.003840,96,3,10524.003840,2013.041536,hintandextended,lora,180 +on6,0,0,25,1,0,892,4502.300000,96,1,21684.001280,1851.704000,hintandextended,lora,180 +on9,0,0,24,1,0,0,4321.996160,96,0,2503.001280,1754.398874,hintandextended,lora,180 +on0,1,12,24,0,0,0,5023.219200,96,0,-1.000000,2316.492595,hintandextended,lora,180 +on3,0,0,27,1,0,795,5002.903840,96,3,11372.603840,2058.185331,hintandextended,lora,180 +on5,0,0,25,1,0,656,4502.200000,96,1,16043.001280,1833.904000,hintandextended,lora,180 +on1,0,0,24,1,0,222,4345.002560,96,0,7222.003840,1819.665434,hintandextended,lora,180 +on3,0,0,24,1,0,285,4405.001280,97,0,5820.001280,1787.600717,hintandextended,lora,180 +on6,0,0,26,1,0,496,4822.503840,97,2,10842.003840,2003.785536,hintandextended,lora,180 +on1,0,0,26,1,0,468,4681.300000,97,2,10682.001280,1929.800000,hintandextended,lora,180 +on11,0,0,25,1,0,1260,4503.300000,97,1,29325.001280,1893.160000,hintandextended,lora,180 +on5,0,0,26,1,0,645,4683.202560,97,2,13212.001280,1953.681024,hintandextended,lora,180 +on8,0,0,27,1,0,848,5138.407680,97,4,13373.603840,2125.539482,hintandextended,lora,180 +on2,0,0,24,1,0,735,4324.001280,97,1,17979.001280,1755.200717,hintandextended,lora,180 +on9,0,0,24,1,0,282,4403.003840,97,0,5980.003840,1815.185741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4890.612800,97,0,-1.000000,2263.449626,hintandextended,lora,180 +on7,0,0,24,1,0,56,4357.003840,97,0,2294.001280,1790.065946,hintandextended,lora,180 +on10,0,0,26,1,0,1259,4849.100000,97,4,23400.001280,2003.479590,hintandextended,lora,180 +on12,0,0,26,1,0,839,4683.594880,97,2,19235.001280,1955.517952,hintandextended,lora,180 +on4,0,0,24,1,0,0,4321.000000,97,0,2463.001280,1756.944000,hintandextended,lora,180 +on4,0,0,25,1,0,657,4563.200000,98,2,11666.001280,1881.776000,hintandextended,lora,180 +on9,0,0,26,1,0,688,4821.803840,98,2,10398.003840,1957.521741,hintandextended,lora,180 +on2,0,0,25,1,0,660,4501.300000,98,1,16890.001280,1856.839386,hintandextended,lora,180 +on7,0,0,25,1,0,294,4501.001280,98,1,7093.001280,1854.480717,hintandextended,lora,180 +on5,0,0,24,1,0,497,4437.001280,98,0,10238.001280,1800.400717,hintandextended,lora,180 +on6,0,0,25,1,0,542,4502.000000,98,1,11826.003840,1857.663590,hintandextended,lora,180 +on11,0,0,25,1,0,2136,4501.000000,98,1,41752.001280,1829.200000,hintandextended,lora,180 +on12,0,0,26,1,0,909,4686.597440,98,2,20272.001280,1960.911181,hintandextended,lora,180 +on8,0,0,25,1,0,958,4641.302560,98,1,17050.003840,1891.113434,hintandextended,lora,180 +on10,0,0,27,1,0,1016,5006.505120,98,3,20433.603840,2115.402458,hintandextended,lora,180 +on0,1,12,24,0,0,0,4938.616640,98,0,-1.000000,2282.651366,hintandextended,lora,180 +on1,0,0,24,1,0,0,4321.001280,98,0,2814.001280,1782.384717,hintandextended,lora,180 +on3,0,0,27,1,0,1302,4865.498720,98,3,25146.001280,2072.599283,hintandextended,lora,180 +on1,0,0,25,1,0,157,4639.205120,99,1,1124.205120,1903.842253,hintandextended,lora,180 +on8,0,0,25,1,0,0,4502.000000,99,1,962.602560,1857.679795,hintandextended,lora,180 +on11,0,0,24,1,0,203,4325.001280,99,0,5310.001280,1803.440717,hintandextended,lora,180 +on2,0,0,26,1,0,822,4683.801280,99,2,17138.001280,1943.616922,hintandextended,lora,180 +on6,0,0,25,1,0,2146,4502.200000,99,1,42193.001280,1858.320000,hintandextended,lora,180 +on7,0,0,25,1,0,687,4628.003840,99,1,13279.003840,1905.441741,hintandextended,lora,180 +on4,0,0,25,1,0,857,4621.003840,99,1,17298.003840,1931.026355,hintandextended,lora,180 +on5,0,0,25,1,0,499,4640.003840,99,1,5470.003840,1881.601741,hintandextended,lora,180 +on10,0,0,25,1,0,256,4505.294880,99,1,8587.001280,1918.662362,hintandextended,lora,180 +on3,0,0,27,1,0,580,4867.200000,99,4,13119.001280,2107.263590,hintandextended,lora,180 +on12,0,0,25,1,0,1184,4501.300000,99,1,25006.001280,1829.160205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4891.216640,99,0,-1.000000,2263.693005,hintandextended,lora,180 +on9,0,0,27,1,0,757,4865.200000,99,3,18339.001280,2095.455590,hintandextended,lora,180 +on5,0,0,25,1,0,1557,4501.600000,100,1,35579.001280,1866.143795,hintandextended,lora,180 +on1,0,0,24,1,0,2156,4458.002560,100,0,43255.001280,1808.801229,hintandextended,lora,180 +on2,0,0,24,1,0,127,4428.001280,100,0,791.001280,1806.144717,hintandextended,lora,180 +on8,0,0,25,1,0,1922,4603.603840,100,1,37919.603840,1869.281536,hintandextended,lora,180 +on9,0,0,25,1,0,2700,4501.000000,100,1,55257.602560,1828.192000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4884.812800,100,0,-1.000000,2261.129216,hintandextended,lora,180 +on6,0,0,25,1,0,1937,4502.200000,100,1,37758.001280,1830.703795,hintandextended,lora,180 +on4,0,0,26,1,0,1848,4824.903840,100,2,35740.603840,2023.145536,hintandextended,lora,180 +on11,0,0,24,1,0,555,4321.998720,100,0,12932.001280,1754.400102,hintandextended,lora,180 +on12,0,0,24,1,0,2340,4320.001280,100,0,48156.001280,1753.600717,hintandextended,lora,180 +on10,0,0,24,1,0,1439,4482.001280,100,0,28965.001280,1884.160307,hintandextended,lora,180 +on3,0,0,24,1,0,369,4320.001280,100,0,8955.001280,1753.600717,hintandextended,lora,180 +on7,0,0,24,1,0,1260,4320.001280,100,0,27872.001280,1753.600717,hintandextended,lora,180 +on4,0,0,26,1,0,580,4682.500000,101,3,12903.001280,1907.559795,hintandextended,lora,180 +on10,0,0,25,1,0,1074,4500.501280,101,1,24582.001280,1839.080717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5015.216640,101,0,-1.000000,2313.291162,hintandextended,lora,180 +on7,0,0,26,1,0,934,4683.496160,101,2,19442.001280,1958.358259,hintandextended,lora,180 +on3,0,0,24,1,0,73,4374.001280,101,0,3147.001280,1803.584717,hintandextended,lora,180 +on9,0,0,24,1,0,360,4350.000000,101,1,7573.002560,1815.200000,hintandextended,lora,180 +on1,0,0,25,1,0,49,4532.606400,101,1,3307.603840,1922.979379,hintandextended,lora,180 +on6,0,0,25,1,0,553,4502.000000,101,1,13063.003840,1855.647590,hintandextended,lora,180 +on12,0,0,25,1,0,1260,4500.602560,101,1,26679.602560,1825.889434,hintandextended,lora,180 +on8,0,0,26,1,0,874,4682.300000,101,2,15936.001280,1929.559795,hintandextended,lora,180 +on5,0,0,25,1,0,353,4501.000000,101,1,5258.001280,1829.200000,hintandextended,lora,180 +on11,0,0,24,1,0,263,4385.001280,101,0,7407.001280,1831.600717,hintandextended,lora,180 +on2,0,0,26,1,0,1056,4822.003840,101,2,16096.003840,1962.465536,hintandextended,lora,180 +on8,0,0,27,1,0,2703,5002.803840,102,3,54687.603840,2106.209536,hintandextended,lora,180 +on6,0,0,24,1,0,653,4474.000000,102,1,16403.001280,1815.200205,hintandextended,lora,180 +on12,0,0,24,1,0,2614,4394.003840,102,0,51681.003840,1783.201741,hintandextended,lora,180 +on4,0,0,26,1,0,2371,4821.903840,102,2,46312.603840,1987.338150,hintandextended,lora,180 +on10,0,0,27,1,0,3100,5000.903840,102,3,61305.003840,2058.409536,hintandextended,lora,180 +on7,0,0,24,1,0,2813,4496.200000,102,1,61145.001280,1862.000000,hintandextended,lora,180 +on3,0,0,24,1,0,2554,4336.001280,102,0,51521.001280,1786.240512,hintandextended,lora,180 +on2,0,0,24,1,0,2290,4436.001280,102,1,46152.001280,1800.000717,hintandextended,lora,180 +on1,0,0,24,1,0,1980,4322.000000,102,0,42544.001280,1785.728000,hintandextended,lora,180 +on5,0,0,24,1,0,464,4405.002560,102,0,8458.001280,1792.721638,hintandextended,lora,180 +on0,1,12,24,0,0,0,5040.217920,102,0,-1.000000,2323.291059,hintandextended,lora,180 +on11,0,0,25,1,0,2340,4500.001280,102,1,48981.001280,1825.600717,hintandextended,lora,180 +on9,0,0,26,1,0,2637,4682.600000,102,2,54526.001280,1934.463386,hintandextended,lora,180 +on12,0,0,26,1,0,1348,4822.206400,103,2,26618.603840,1993.202970,hintandextended,lora,180 +on9,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,hintandextended,lora,180 +on7,0,0,24,1,0,2080,4400.001280,103,0,41256.001280,1785.600717,hintandextended,lora,180 +on1,0,0,26,1,0,841,4826.997440,103,2,13364.003840,2031.552000,hintandextended,lora,180 +on5,0,0,23,1,0,529,4432.003840,103,0,10114.001280,1905.346355,hintandextended,lora,180 +on2,0,0,26,1,0,814,4681.301280,103,2,15681.001280,1904.520512,hintandextended,lora,180 +on4,0,0,25,1,0,1104,4503.300000,103,1,26457.001280,1890.343795,hintandextended,lora,180 +on0,1,11,24,0,0,0,4897.816640,103,0,-1.000000,2240.733824,hintandextended,lora,180 +on8,0,0,25,1,0,692,4504.000000,103,1,13204.001280,1860.480000,hintandextended,lora,180 +on3,0,0,25,1,0,992,4575.603840,103,1,20016.603840,1939.361946,hintandextended,lora,180 +on6,0,0,24,1,0,1800,4321.000000,103,0,38802.001280,1757.200000,hintandextended,lora,180 +on10,0,0,25,1,0,883,4508.200000,103,1,19855.001280,1973.584205,hintandextended,lora,180 +on11,0,0,25,1,0,404,4526.603840,103,1,10274.603840,1882.850150,hintandextended,lora,180 +on5,0,0,25,1,0,1159,4503.300000,104,1,24705.001280,1867.368410,hintandextended,lora,180 +on3,0,0,25,1,0,537,4503.996160,104,1,10902.001280,1859.086874,hintandextended,lora,180 +on4,0,0,25,1,0,4143,4500.300000,104,1,83944.000000,1836.695795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5041.216640,104,0,-1.000000,2323.694029,hintandextended,lora,180 +on8,0,0,26,1,0,920,4794.900000,104,4,19360.001280,2019.559590,hintandextended,lora,180 +on12,0,0,25,1,0,648,4503.300000,104,1,15460.001280,1878.984205,hintandextended,lora,180 +on7,0,0,26,1,0,858,4824.906400,104,2,15621.603840,1993.227379,hintandextended,lora,180 +on6,0,0,26,1,0,593,4825.300000,104,2,11062.003840,2041.481024,hintandextended,lora,180 +on10,0,0,24,1,0,339,4462.000000,104,0,5696.001280,1840.864205,hintandextended,lora,180 +on2,0,0,24,1,0,595,4356.001280,104,0,12512.001280,1777.440922,hintandextended,lora,180 +on11,0,0,26,1,0,412,4821.806400,104,2,5856.603840,1967.971584,hintandextended,lora,180 +on1,0,0,25,1,0,1099,4502.997440,104,1,24865.003840,1857.679386,hintandextended,lora,180 +on9,0,0,24,1,0,0,4321.001280,104,0,2075.001280,1782.384717,hintandextended,lora,180 +on3,0,0,27,1,0,1186,5000.803840,105,3,17478.003840,2031.409331,hintandextended,lora,180 +on8,0,0,24,1,0,252,4372.001280,105,0,6410.001280,1774.400717,hintandextended,lora,180 +on6,0,0,25,1,0,453,4640.003840,105,1,6570.003840,1881.601741,hintandextended,lora,180 +on9,0,0,25,1,0,662,4640.203840,105,1,10886.003840,1881.889741,hintandextended,lora,180 +on4,0,0,29,1,0,1182,5224.903840,105,5,22284.001280,2230.969126,hintandextended,lora,180 +on12,0,0,25,1,0,493,4501.200000,105,1,10726.001280,1829.168000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5091.620480,105,0,-1.000000,2343.851674,hintandextended,lora,180 +on10,0,0,27,1,0,854,4864.200000,105,3,17318.001280,2040.159590,hintandextended,lora,180 +on1,0,0,26,1,0,694,4682.500000,105,2,12741.001280,1932.999795,hintandextended,lora,180 +on7,0,0,24,1,0,0,4322.000000,105,0,1947.001280,1764.608000,hintandextended,lora,180 +on5,0,0,30,1,0,1244,5544.103840,105,6,21018.603840,2318.921126,hintandextended,lora,180 +on2,0,0,26,1,0,770,4820.903840,105,2,12901.003840,1990.201536,hintandextended,lora,180 +on11,0,0,27,1,0,989,4863.001280,105,3,20857.001280,2034.112102,hintandextended,lora,180 +on1,0,0,25,1,0,2298,4500.997440,106,1,46956.001280,1825.999181,hintandextended,lora,180 +on5,0,0,24,1,0,2340,4322.000000,106,0,49312.001280,1786.080000,hintandextended,lora,180 +on6,0,0,25,1,0,473,4502.200000,106,1,9593.001280,1828.560614,hintandextended,lora,180 +on12,0,0,26,1,0,2529,4821.303840,106,3,49472.003840,2004.521536,hintandextended,lora,180 +on8,0,0,25,1,0,1049,4641.007680,106,2,18493.003840,1900.787686,hintandextended,lora,180 +on9,0,0,24,1,0,825,4406.001280,106,0,16940.001280,1816.384717,hintandextended,lora,180 +on2,0,0,24,1,0,35,4338.000000,106,0,3367.001280,1795.264410,hintandextended,lora,180 +on4,0,0,25,1,0,833,4501.000000,106,1,18333.001280,1829.040000,hintandextended,lora,180 +on11,0,0,25,1,0,1172,4502.297440,106,1,27425.001280,1860.695181,hintandextended,lora,180 +on7,0,0,25,1,0,964,4504.300000,106,1,22230.001280,1924.663590,hintandextended,lora,180 +on3,0,0,24,1,0,197,4327.001280,106,1,5697.001280,1757.424717,hintandextended,lora,180 +on10,0,0,26,1,0,1354,4682.602560,106,3,29135.001280,1987.505229,hintandextended,lora,180 +on0,1,12,24,0,0,0,4600.007680,106,0,-1.000000,2147.207578,hintandextended,lora,180 +on1,0,0,25,1,0,1027,4608.603840,107,1,18775.603840,1897.569946,hintandextended,lora,180 +on0,1,11,24,0,0,0,4876.212800,107,0,-1.000000,2232.089830,hintandextended,lora,180 +on8,0,0,24,1,0,1068,4470.001280,107,0,18615.001280,1859.104922,hintandextended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,hintandextended,lora,180 +on12,0,0,24,1,0,180,4320.001280,107,0,4693.001280,1753.600717,hintandextended,lora,180 +on6,0,0,25,1,0,1251,4504.298720,107,1,28628.001280,1905.623488,hintandextended,lora,180 +on5,0,0,26,1,0,1403,4820.006400,107,2,24320.003840,1953.810970,hintandextended,lora,180 +on2,0,0,26,1,0,3359,4823.602560,107,2,65095.603840,1980.321434,hintandextended,lora,180 +on11,0,0,25,1,0,1248,4503.001280,107,1,24160.001280,1882.000512,hintandextended,lora,180 +on7,0,0,24,1,0,3991,4331.001280,107,0,79877.001280,1758.000717,hintandextended,lora,180 +on3,0,0,24,1,0,484,4424.001280,107,0,9044.001280,1795.200717,hintandextended,lora,180 +on9,0,0,25,1,0,3146,4501.301280,107,1,64934.001280,1841.704512,hintandextended,lora,180 +on4,0,0,25,1,0,1616,4504.202560,107,1,30657.001280,1893.265843,hintandextended,lora,180 +on7,0,0,26,1,0,746,4683.700000,108,2,14186.001280,1944.567590,hintandextended,lora,180 +on6,0,0,24,1,0,243,4363.001280,108,0,6502.001280,1770.800717,hintandextended,lora,180 +on4,0,0,25,1,0,231,4534.605120,108,1,6662.603840,1873.474867,hintandextended,lora,180 +on2,0,0,24,1,0,1620,4320.001280,108,0,35612.001280,1753.600717,hintandextended,lora,180 +on11,0,0,26,1,0,739,4682.598720,108,2,15595.001280,1923.855078,hintandextended,lora,180 +on1,0,0,24,1,0,900,4483.000000,108,1,19268.001280,1878.320000,hintandextended,lora,180 +on3,0,0,24,1,0,1360,4400.001280,108,0,26053.001280,1785.600717,hintandextended,lora,180 +on12,0,0,25,1,0,633,4576.003840,108,1,14346.003840,1908.481741,hintandextended,lora,180 +on5,0,0,26,1,0,1097,5003.006400,108,3,15756.603840,2077.683174,hintandextended,lora,180 +on0,1,12,24,0,0,0,5159.217920,108,0,-1.000000,2370.892288,hintandextended,lora,180 +on10,0,0,24,1,0,384,4324.801280,108,0,10065.001280,1755.520717,hintandextended,lora,180 +on9,0,0,26,1,0,1287,4823.003840,108,2,24873.003840,2015.121331,hintandextended,lora,180 +on8,0,0,24,1,0,1086,4321.998720,108,0,24713.001280,1756.479693,hintandextended,lora,180 +on7,0,0,25,1,0,293,4500.997440,109,1,7043.001280,1825.999181,hintandextended,lora,180 +on11,0,0,27,1,0,956,4862.503840,109,3,20282.001280,1996.601536,hintandextended,lora,180 +on10,0,0,25,1,0,1000,4640.003840,109,1,16308.003840,1881.601741,hintandextended,lora,180 +on2,0,0,24,1,0,101,4402.001280,109,0,965.001280,1802.784717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.015360,109,0,-1.000000,2259.209830,hintandextended,lora,180 +on6,0,0,26,1,0,1395,4820.003840,109,2,23815.003840,1953.601741,hintandextended,lora,180 +on4,0,0,25,1,0,333,4502.297440,109,2,8421.001280,1838.326976,hintandextended,lora,180 +on1,0,0,26,1,0,1096,4682.900000,109,2,23655.001280,1977.159590,hintandextended,lora,180 +on9,0,0,26,1,0,759,4682.402560,109,2,16148.001280,1930.193024,hintandextended,lora,180 +on8,0,0,27,1,0,1014,5000.505120,109,3,20442.003840,2054.442253,hintandextended,lora,180 +on3,0,0,25,1,0,740,4641.303840,109,2,12102.003840,1922.185536,hintandextended,lora,180 +on12,0,0,24,1,0,599,4359.001280,109,0,11942.001280,1769.200717,hintandextended,lora,180 +on5,0,0,29,1,0,1548,5222.805120,109,5,27771.001280,2165.186048,hintandextended,lora,180 +on0,1,11,24,0,0,0,4925.217920,110,0,-1.000000,2251.693926,hintandextended,lora,180 +on11,0,0,24,1,0,539,4481.001280,110,0,9777.001280,1850.160922,hintandextended,lora,180 +on6,0,0,28,1,0,1915,5183.607680,110,4,34335.603840,2131.139482,hintandextended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,25,1,0,1537,4640.003840,110,1,26791.003840,1881.601741,hintandextended,lora,180 +on4,0,0,24,1,0,1295,4358.001280,110,1,26631.001280,1804.480922,hintandextended,lora,180 +on3,0,0,24,1,0,27,4328.001280,110,0,2405.001280,1756.801126,hintandextended,lora,180 +on10,0,0,24,1,0,332,4455.005120,110,0,6284.001280,1845.203072,hintandextended,lora,180 +on8,0,0,26,1,0,1546,4681.202560,110,2,31942.001280,1901.329024,hintandextended,lora,180 +on12,0,0,27,1,0,1754,4862.002560,110,3,34174.001280,2005.072205,hintandextended,lora,180 +on7,0,0,24,1,0,900,4324.001280,110,0,19127.001280,1821.504307,hintandextended,lora,180 +on1,0,0,27,1,0,1752,5004.408960,110,3,32103.005120,2085.540608,hintandextended,lora,180 +on9,0,0,25,1,0,342,4646.605120,110,1,6444.603840,1940.290867,hintandextended,lora,180 +on0,1,12,24,0,0,0,4738.810240,111,0,-1.000000,2202.730240,hintandextended,lora,180 +on4,0,0,25,1,0,1440,4502.002560,111,1,30275.001280,1842.305638,hintandextended,lora,180 +on5,0,0,26,1,0,2074,4824.601280,111,2,38284.603840,2009.313331,hintandextended,lora,180 +on10,0,0,24,1,0,1120,4341.001280,111,0,24368.001280,1773.904717,hintandextended,lora,180 +on1,0,0,25,1,0,2365,4507.602560,111,1,47781.603840,1839.265434,hintandextended,lora,180 +on11,0,0,24,1,0,459,4402.001280,111,0,7645.001280,1815.104922,hintandextended,lora,180 +on9,0,0,26,1,0,3518,4681.600000,111,3,70767.001280,1933.279795,hintandextended,lora,180 +on8,0,0,25,1,0,2689,4503.300000,111,1,55532.001280,1881.480205,hintandextended,lora,180 +on3,0,0,25,1,0,3399,4500.997440,111,1,67080.001280,1825.999181,hintandextended,lora,180 +on2,0,0,24,1,0,1260,4476.601280,111,1,27571.602560,1837.729331,hintandextended,lora,180 +on6,0,0,26,1,0,2238,4682.600000,111,2,47620.001280,1967.279795,hintandextended,lora,180 +on7,0,0,24,1,0,2110,4431.001280,111,0,41500.001280,1823.280717,hintandextended,lora,180 +on12,0,0,24,1,0,1919,4421.001280,111,0,38124.001280,1838.704922,hintandextended,lora,180 +on2,0,0,26,1,0,1534,4823.603840,112,2,29158.603840,1993.281946,hintandextended,lora,180 +on0,1,10,24,0,0,0,4779.814080,112,0,-1.000000,2167.931571,hintandextended,lora,180 +on11,0,0,26,1,0,1714,4685.597440,112,2,36809.001280,1991.903181,hintandextended,lora,180 +on9,0,0,24,1,0,37,4338.000000,112,0,1416.001280,1760.800410,hintandextended,lora,180 +on12,0,0,25,1,0,1404,4502.300000,112,1,28997.001280,1857.495795,hintandextended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,hintandextended,lora,180 +on8,0,0,26,1,0,1386,4826.605120,112,2,27004.603840,2070.978662,hintandextended,lora,180 +on1,0,0,24,1,0,1328,4368.002560,112,0,26844.001280,1772.801434,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,hintandextended,lora,180 +on3,0,0,24,1,0,1615,4481.300000,112,1,33017.001280,1845.928205,hintandextended,lora,180 +on5,0,0,26,1,0,1713,4822.206400,112,2,33177.003840,1981.411379,hintandextended,lora,180 +on7,0,0,25,1,0,900,4503.602560,112,1,19115.602560,1855.794048,hintandextended,lora,180 +on10,0,0,25,1,0,3032,4500.201280,112,1,60154.001280,1825.680717,hintandextended,lora,180 +on10,0,0,26,1,0,2082,4823.900000,113,2,41683.603840,2021.608410,hintandextended,lora,180 +on2,0,0,25,1,0,935,4502.600000,113,1,23187.001280,1905.360205,hintandextended,lora,180 +on3,0,0,24,1,0,2700,4321.000000,113,0,57487.001280,1757.200000,hintandextended,lora,180 +on5,0,0,24,1,0,1800,4321.000000,113,0,38279.001280,1757.040000,hintandextended,lora,180 +on1,0,0,24,1,0,677,4439.001280,113,0,11419.001280,1801.201331,hintandextended,lora,180 +on12,0,0,24,1,0,60,4360.001280,113,0,598.001280,1769.600717,hintandextended,lora,180 +on6,0,0,24,1,0,784,4364.001280,113,0,14822.001280,1771.200717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4686.607680,113,0,-1.000000,2181.847168,hintandextended,lora,180 +on4,0,0,24,1,0,900,4321.000000,113,0,20595.001280,1756.944000,hintandextended,lora,180 +on9,0,0,24,1,0,2348,4321.002560,113,0,50166.001280,1775.441229,hintandextended,lora,180 +on8,0,0,24,1,0,2055,4375.001280,113,0,41523.001280,1775.600717,hintandextended,lora,180 +on7,0,0,24,1,0,2233,4374.001280,113,0,43743.001280,1803.840717,hintandextended,lora,180 +on11,0,0,27,1,0,2458,4862.500000,113,4,53526.001280,2059.399590,hintandextended,lora,180 +on2,0,0,25,1,0,1553,4501.000000,114,1,32136.001280,1829.200000,hintandextended,lora,180 +on5,0,0,25,1,0,474,4501.000000,114,1,9995.001280,1829.088000,hintandextended,lora,180 +on7,0,0,25,1,0,180,4502.000000,114,1,6608.602560,1854.320000,hintandextended,lora,180 +on9,0,0,25,1,0,593,4640.003840,114,1,10155.003840,1882.017741,hintandextended,lora,180 +on6,0,0,26,1,0,636,4684.300000,114,2,12861.001280,1959.224205,hintandextended,lora,180 +on8,0,0,24,1,0,87,4387.001280,114,0,1188.001280,1780.400717,hintandextended,lora,180 +on12,0,0,26,1,0,820,4820.603840,114,2,13021.003840,1981.265536,hintandextended,lora,180 +on11,0,0,28,1,0,987,5043.205120,114,4,18173.001280,2118.802253,hintandextended,lora,180 +on10,0,0,25,1,0,920,4502.602560,114,3,22442.602560,1899.361638,hintandextended,lora,180 +on3,0,0,28,1,0,1029,5184.802560,114,4,18334.603840,2177.344614,hintandextended,lora,180 +on1,0,0,26,1,0,996,4822.005120,114,2,17909.005120,1957.602048,hintandextended,lora,180 +on0,1,12,24,0,0,0,4957.821760,114,0,-1.000000,2290.333619,hintandextended,lora,180 +on4,0,0,26,1,0,992,4681.401280,114,2,17749.002560,1901.776307,hintandextended,lora,180 +on1,0,0,25,1,0,678,4501.000000,115,1,13814.001280,1828.784000,hintandextended,lora,180 +on4,0,0,25,1,0,335,4501.197440,115,1,7737.001280,1826.079181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4783.214080,115,0,-1.000000,2220.490957,hintandextended,lora,180 +on10,0,0,26,1,0,939,4683.801280,115,2,22979.001280,1988.272307,hintandextended,lora,180 +on12,0,0,25,1,0,2509,4501.200000,115,1,49810.001280,1829.280000,hintandextended,lora,180 +on5,0,0,30,1,0,1485,5543.306400,115,7,23140.603840,2282.586560,hintandextended,lora,180 +on2,0,0,25,1,0,1586,4500.201280,115,1,31724.001280,1825.680717,hintandextended,lora,180 +on8,0,0,25,1,0,993,4641.003840,115,1,18671.003840,1904.785741,hintandextended,lora,180 +on11,0,0,25,1,0,0,4505.600000,115,1,3363.602560,1913.393024,hintandextended,lora,180 +on6,0,0,25,1,0,683,4502.300000,115,1,16322.001280,1863.607590,hintandextended,lora,180 +on3,0,0,27,1,0,1374,4864.101280,115,4,26357.001280,2052.119898,hintandextended,lora,180 +on9,0,0,25,1,0,663,4603.010240,115,1,13974.003840,1866.804710,hintandextended,lora,180 +on7,0,0,26,1,0,815,4682.600000,115,2,18511.001280,1947.119795,hintandextended,lora,180 +on4,0,0,25,1,0,633,4745.603840,116,2,10351.603840,1971.057946,hintandextended,lora,180 +on8,0,0,24,1,0,3370,4430.001280,116,0,67216.001280,1797.600717,hintandextended,lora,180 +on5,0,0,25,1,0,1080,4502.000000,116,1,22259.001280,1855.040410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4946.211520,116,0,-1.000000,2285.689728,hintandextended,lora,180 +on2,0,0,24,1,0,180,4323.997440,116,0,7177.001280,1786.559386,hintandextended,lora,180 +on1,0,0,24,1,0,884,4464.001280,116,0,18285.001280,1811.200717,hintandextended,lora,180 +on11,0,0,24,1,0,1807,4322.000000,116,0,39501.001280,1783.040410,hintandextended,lora,180 +on6,0,0,23,1,0,68,4296.001280,116,0,334.001280,1744.000717,hintandextended,lora,180 +on3,0,0,24,1,0,575,4322.301280,116,1,16458.001280,1805.721126,hintandextended,lora,180 +on10,0,0,25,1,0,2455,4500.301280,116,1,47948.001280,1836.120717,hintandextended,lora,180 +on12,0,0,24,1,0,599,4394.003840,116,1,13251.001280,1783.201946,hintandextended,lora,180 +on7,0,0,24,1,0,463,4405.998720,116,0,10191.001280,1816.640102,hintandextended,lora,180 +on9,0,0,24,1,0,49,4385.602560,116,1,494.603840,1801.073638,hintandextended,lora,180 +on8,0,0,24,1,0,84,4384.001280,117,0,3394.001280,1779.200717,hintandextended,lora,180 +on11,0,0,24,1,0,704,4464.996160,117,0,13404.001280,1811.598874,hintandextended,lora,180 +on5,0,0,24,1,0,1260,4322.000000,117,0,26053.001280,1782.624410,hintandextended,lora,180 +on2,0,0,24,1,0,180,4321.002560,117,0,4235.001280,1763.441638,hintandextended,lora,180 +on12,0,0,24,1,0,3170,4410.001280,117,0,62706.001280,1789.600717,hintandextended,lora,180 +on4,0,0,24,1,0,1594,4454.001280,117,0,32234.001280,1807.200717,hintandextended,lora,180 +on1,0,0,26,1,0,2907,4682.600000,117,2,61352.001280,1950.862976,hintandextended,lora,180 +on0,1,12,24,0,0,0,4819.210240,117,0,-1.000000,2234.889421,hintandextended,lora,180 +on10,0,0,28,1,0,3376,5042.500000,117,4,66382.001280,2106.599386,hintandextended,lora,180 +on3,0,0,25,1,0,1620,4503.998720,117,1,34344.602560,1868.911283,hintandextended,lora,180 +on9,0,0,26,1,0,2876,4824.197440,117,3,61513.603840,2037.038976,hintandextended,lora,180 +on6,0,0,24,1,0,900,4321.998720,117,0,19170.001280,1757.599693,hintandextended,lora,180 +on7,0,0,24,1,0,2678,4441.300000,117,1,55549.001280,1827.800000,hintandextended,lora,180 +on2,0,0,24,1,0,3971,4321.000000,118,0,82118.001280,1755.440000,hintandextended,lora,180 +on6,0,0,26,1,0,834,4821.003840,118,2,12356.003840,1980.721741,hintandextended,lora,180 +on4,0,0,26,1,0,341,4822.903840,118,2,9068.603840,2011.945331,hintandextended,lora,180 +on10,0,0,25,1,0,0,4501.005120,118,1,3170.602560,1828.898253,hintandextended,lora,180 +on8,0,0,25,1,0,773,4535.006400,118,1,17605.003840,1893.522970,hintandextended,lora,180 +on11,0,0,26,1,0,443,4684.903840,118,2,8907.001280,1962.953536,hintandextended,lora,180 +on9,0,0,26,1,0,971,4685.598720,118,2,18982.001280,1952.543488,hintandextended,lora,180 +on7,0,0,25,1,0,1161,4502.000000,118,1,24639.001280,1858.240000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4887.214080,118,0,-1.000000,2262.091776,hintandextended,lora,180 +on5,0,0,24,1,0,654,4398.000000,118,1,17445.001280,1806.400614,hintandextended,lora,180 +on12,0,0,24,1,0,1620,4321.000000,118,0,35640.001280,1754.000410,hintandextended,lora,180 +on1,0,0,25,1,0,380,4503.300000,118,1,12196.001280,1884.904000,hintandextended,lora,180 +on3,0,0,24,1,0,267,4390.000000,118,0,6602.001280,1832.160205,hintandextended,lora,180 +on4,0,0,24,1,0,962,4364.003840,119,0,18222.001280,1809.442560,hintandextended,lora,180 +on8,0,0,25,1,0,361,4774.305120,119,2,5425.003840,2028.794662,hintandextended,lora,180 +on2,0,0,25,1,0,1005,4588.597440,119,1,18382.603840,1861.088205,hintandextended,lora,180 +on9,0,0,24,1,0,1080,4320.001280,119,0,23405.001280,1753.600717,hintandextended,lora,180 +on12,0,0,24,0,0,4320,4320.000000,119,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,24,1,0,611,4375.998720,119,0,12368.001280,1832.319898,hintandextended,lora,180 +on6,0,0,24,1,0,39,4340.001280,119,0,2491.001280,1776.768717,hintandextended,lora,180 +on7,0,0,25,1,0,465,4578.997440,119,2,9601.001280,1891.182976,hintandextended,lora,180 +on0,1,11,24,0,0,0,4778.212800,119,0,-1.000000,2192.892288,hintandextended,lora,180 +on11,0,0,25,1,0,3600,4501.001280,119,1,75677.001280,1854.640717,hintandextended,lora,180 +on10,0,0,24,1,0,254,4377.000000,119,0,5265.001280,1813.264410,hintandextended,lora,180 +on3,0,0,26,1,0,635,4824.603840,119,2,9762.603840,1999.922150,hintandextended,lora,180 +on1,0,0,24,1,0,2384,4344.001280,119,0,47442.001280,1763.200717,hintandextended,lora,180 +on2,0,0,27,1,0,639,5001.608960,120,3,10246.003840,2054.803584,hintandextended,lora,180 +on11,0,0,26,1,0,596,4682.900000,120,2,15899.001280,1967.367181,hintandextended,lora,180 +on10,0,0,24,1,0,286,4407.001280,120,0,7113.001280,1793.040717,hintandextended,lora,180 +on5,0,0,28,1,0,935,5184.606400,120,5,16060.603840,2139.697946,hintandextended,lora,180 +on8,0,0,25,1,0,623,4501.300000,120,1,13691.001280,1844.680000,hintandextended,lora,180 +on7,0,0,28,1,0,1219,5043.597440,120,4,22517.001280,2116.526362,hintandextended,lora,180 +on9,0,0,25,1,0,414,4502.300000,120,1,10086.001280,1850.552205,hintandextended,lora,180 +on3,0,0,25,1,0,779,4502.300000,120,1,18410.002560,1870.039795,hintandextended,lora,180 +on1,0,0,25,1,0,85,4566.603840,120,1,1575.603840,1880.673946,hintandextended,lora,180 +on6,0,0,25,1,0,492,4641.003840,120,1,7273.003840,1910.641741,hintandextended,lora,180 +on4,0,0,27,1,0,1160,4862.200000,120,4,28246.001280,2049.839590,hintandextended,lora,180 +on12,0,0,24,1,0,51,4353.001280,120,0,1415.001280,1790.544102,hintandextended,lora,180 +on0,1,12,24,0,0,0,4882.215360,120,0,-1.000000,2260.091059,hintandextended,lora,180 +on8,0,0,24,1,0,631,4356.298720,121,1,16627.001280,1773.719693,hintandextended,lora,180 +on11,0,0,25,1,0,281,4501.002560,121,1,4147.001280,1854.481229,hintandextended,lora,180 +on12,0,0,22,1,0,900,4257.000000,121,0,19873.001280,1731.280000,hintandextended,lora,180 +on1,0,0,24,1,0,1231,4452.001280,121,0,23778.001280,1834.880717,hintandextended,lora,180 +on2,0,0,24,1,0,1754,4435.001280,121,0,33715.001280,1828.240717,hintandextended,lora,180 +on3,0,0,25,1,0,1485,4501.300000,121,1,32395.001280,1846.888000,hintandextended,lora,180 +on7,0,0,26,1,0,1134,4824.303840,121,2,23938.003840,2031.161536,hintandextended,lora,180 +on10,0,0,26,1,0,1189,4682.600000,121,2,28448.001280,1983.727590,hintandextended,lora,180 +on6,0,0,24,1,0,0,4322.000000,121,0,2465.001280,1762.143795,hintandextended,lora,180 +on9,0,0,26,1,0,1477,4822.106400,121,2,28609.603840,1974.282970,hintandextended,lora,180 +on5,0,0,26,1,0,667,4823.602560,121,2,10655.603840,1959.425434,hintandextended,lora,180 +on0,1,12,24,0,0,0,4962.214080,121,0,-1.000000,2292.089114,hintandextended,lora,180 +on4,0,0,25,1,0,518,4501.000000,121,1,10494.001280,1829.151795,hintandextended,lora,180 +on4,0,0,25,1,0,1144,4501.297440,122,1,26823.001280,1844.679181,hintandextended,lora,180 +on2,0,0,25,1,0,1519,4502.301280,122,1,33746.001280,1872.120717,hintandextended,lora,180 +on12,0,0,26,1,0,1007,4681.002560,122,2,20180.001280,1901.153024,hintandextended,lora,180 +on0,1,12,24,0,0,0,4689.608960,122,0,-1.000000,2183.049728,hintandextended,lora,180 +on7,0,0,26,1,0,1053,4824.603840,122,2,20341.603840,1998.865741,hintandextended,lora,180 +on5,0,0,24,1,0,137,4440.001280,122,0,1151.001280,1835.905331,hintandextended,lora,180 +on1,0,0,24,1,0,3060,4321.000000,122,0,63509.001280,1757.200000,hintandextended,lora,180 +on9,0,0,26,1,0,813,4823.003840,122,2,15216.003840,1999.665741,hintandextended,lora,180 +on10,0,0,25,1,0,363,4505.298720,122,2,10978.001280,1905.127693,hintandextended,lora,180 +on11,0,0,25,1,0,293,4500.201280,122,1,4985.001280,1825.680717,hintandextended,lora,180 +on3,0,0,24,1,0,360,4325.994880,122,0,8198.001280,1817.918976,hintandextended,lora,180 +on8,0,0,26,1,0,1355,4682.802560,122,3,29204.001280,1973.281229,hintandextended,lora,180 +on6,0,0,24,1,0,831,4479.000000,122,1,15056.001280,1817.200410,hintandextended,lora,180 +on8,0,0,24,1,0,344,4464.002560,123,0,6254.001280,1811.201434,hintandextended,lora,180 +on11,0,0,26,1,0,2874,4681.900000,123,3,61333.001280,1949.399590,hintandextended,lora,180 +on3,0,0,24,1,0,0,4320.001280,123,0,629.001280,1753.600717,hintandextended,lora,180 +on2,0,0,24,1,0,918,4323.001280,123,0,20999.001280,1783.504922,hintandextended,lora,180 +on7,0,0,25,1,0,2634,4501.000000,123,1,51962.001280,1829.040000,hintandextended,lora,180 +on12,0,0,24,1,0,867,4447.001280,123,0,16391.001280,1804.400717,hintandextended,lora,180 +on1,0,0,25,1,0,2465,4502.000000,123,1,48152.001280,1857.984000,hintandextended,lora,180 +on9,0,0,25,1,0,845,4605.611520,123,1,16551.603840,1867.893427,hintandextended,lora,180 +on5,0,0,25,1,0,1733,4501.205120,123,1,33228.001280,1833.826458,hintandextended,lora,180 +on6,0,0,26,1,0,2860,4683.497440,123,2,55735.001280,1940.598976,hintandextended,lora,180 +on4,0,0,24,1,0,1495,4357.001280,123,0,30158.001280,1801.104307,hintandextended,lora,180 +on10,0,0,24,1,0,1271,4321.000000,123,0,26934.001280,1781.520000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4528.605120,123,0,-1.000000,2118.646758,hintandextended,lora,180 +on1,0,0,26,1,0,757,4786.201280,124,3,11737.001280,1988.144512,hintandextended,lora,180 +on2,0,0,24,1,0,329,4422.000000,124,1,10753.001280,1813.344000,hintandextended,lora,180 +on11,0,0,25,1,0,386,4641.203840,124,1,5811.003840,1902.033741,hintandextended,lora,180 +on12,0,0,26,1,0,652,4820.505120,124,2,10913.003840,1959.514253,hintandextended,lora,180 +on5,0,0,26,1,0,897,4820.603840,124,2,11897.003840,1972.097536,hintandextended,lora,180 +on10,0,0,27,1,0,908,4862.800000,124,3,16603.001280,2008.799590,hintandextended,lora,180 +on9,0,0,27,1,0,946,5000.903840,124,3,16763.003840,2079.401331,hintandextended,lora,180 +on6,0,0,27,1,0,1201,4864.100000,124,3,24740.001280,2044.583590,hintandextended,lora,180 +on8,0,0,24,1,0,0,4321.000000,124,0,3207.001280,1754.384205,hintandextended,lora,180 +on3,0,0,25,1,0,1011,4659.001280,124,3,19679.001280,1931.088102,hintandextended,lora,180 +on7,0,0,29,1,0,1267,5364.305120,124,5,19840.603840,2257.818253,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,124,0,-1.000000,2315.851162,hintandextended,lora,180 +on4,0,0,24,1,0,108,4418.300000,124,1,5651.001280,1841.256000,hintandextended,lora,180 +on6,0,0,24,1,0,32,4333.001280,125,0,1301.001280,1765.584717,hintandextended,lora,180 +on2,0,0,25,1,0,665,4533.202560,125,2,14006.001280,1842.289229,hintandextended,lora,180 +on8,0,0,26,1,0,634,4822.007680,125,2,9753.003840,1975.155686,hintandextended,lora,180 +on12,0,0,27,1,0,992,5001.303840,125,4,15046.003840,2049.385331,hintandextended,lora,180 +on3,0,0,25,1,0,795,4502.300000,125,1,18436.001280,1874.999590,hintandextended,lora,180 +on7,0,0,25,1,0,73,4554.601280,125,1,1461.603840,1847.489331,hintandextended,lora,180 +on9,0,0,26,1,0,814,4682.300000,125,2,14886.001280,1908.759795,hintandextended,lora,180 +on5,0,0,26,1,0,453,4682.500000,125,2,9593.001280,1933.223795,hintandextended,lora,180 +on1,0,0,24,1,0,345,4466.001280,125,0,6025.001280,1812.544717,hintandextended,lora,180 +on10,0,0,26,1,0,916,4760.300000,125,2,18596.003840,1981.336000,hintandextended,lora,180 +on11,0,0,24,1,0,1758,4439.001280,125,0,35485.001280,1829.840717,hintandextended,lora,180 +on4,0,0,28,1,0,1168,5043.402560,125,4,23863.001280,2120.800410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.615360,125,0,-1.000000,2259.451059,hintandextended,lora,180 +on12,0,0,24,1,0,747,4339.401280,126,1,16462.401280,1767.760922,hintandextended,lora,180 +on9,0,0,25,1,0,787,4551.007680,126,1,16623.003840,1931.331891,hintandextended,lora,180 +on11,0,0,25,1,0,2304,4503.001280,126,2,46310.001280,1858.849126,hintandextended,lora,180 +on8,0,0,25,1,0,3240,4500.301280,126,1,67618.001280,1840.632717,hintandextended,lora,180 +on10,0,0,24,1,0,1756,4436.001280,126,0,35462.001280,1800.000717,hintandextended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,hintandextended,lora,180 +on7,0,0,24,1,0,540,4323.001280,126,0,11707.001280,1819.504717,hintandextended,lora,180 +on0,1,10,24,0,0,0,4477.607680,126,0,-1.000000,2047.048397,hintandextended,lora,180 +on6,0,0,24,1,0,1796,4320.998720,126,1,36442.001280,1753.999693,hintandextended,lora,180 +on3,0,0,24,1,0,370,4321.998720,126,0,8597.001280,1754.400102,hintandextended,lora,180 +on2,0,0,24,1,0,927,4329.000000,126,0,19265.001280,1785.840410,hintandextended,lora,180 +on5,0,0,25,1,0,1980,4504.603840,126,1,43107.602560,1894.274560,hintandextended,lora,180 +on4,0,0,24,0,0,4043,4346.600000,126,1,-1.000000,1784.160000,hintandextended,lora,180 +on4,0,0,24,1,0,0,4321.997440,127,0,1534.001280,1767.903181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4717.208960,127,0,-1.000000,2194.088909,hintandextended,lora,180 +on9,0,0,26,1,0,566,4681.300000,127,2,10821.001280,1904.519795,hintandextended,lora,180 +on12,0,0,25,1,0,1142,4593.600000,127,2,27410.001280,1941.984205,hintandextended,lora,180 +on8,0,0,24,1,0,1131,4352.000000,127,0,22101.001280,1766.400410,hintandextended,lora,180 +on11,0,0,24,1,0,673,4433.998720,127,0,14440.001280,1799.199898,hintandextended,lora,180 +on10,0,0,25,1,0,224,4501.300000,127,2,5295.001280,1840.103590,hintandextended,lora,180 +on2,0,0,26,1,0,455,4824.605120,127,2,5456.603840,1963.490253,hintandextended,lora,180 +on1,0,0,25,1,0,936,4517.608960,127,1,20045.603840,1861.283994,hintandextended,lora,180 +on7,0,0,24,1,0,1440,4321.998720,127,0,29153.001280,1754.400102,hintandextended,lora,180 +on3,0,0,25,1,0,2491,4503.000000,127,1,52097.001280,1886.800000,hintandextended,lora,180 +on5,0,0,25,1,0,1013,4501.200000,127,1,19884.001280,1829.023795,hintandextended,lora,180 +on6,0,0,24,1,0,774,4355.001280,127,0,15558.001280,1770.544717,hintandextended,lora,180 +on1,0,0,26,1,0,1459,4821.203840,128,2,27497.603840,1967.569946,hintandextended,lora,180 +on7,0,0,24,1,0,435,4375.001280,128,0,8578.001280,1775.600717,hintandextended,lora,180 +on11,0,0,26,1,0,936,4682.900000,128,2,24138.001280,1977.863795,hintandextended,lora,180 +on6,0,0,24,1,0,0,4322.000000,128,0,1562.001280,1759.584205,hintandextended,lora,180 +on3,0,0,24,1,0,1404,4444.001280,128,0,27337.001280,1803.200717,hintandextended,lora,180 +on8,0,0,24,1,0,1572,4432.001280,128,0,29487.001280,1798.400717,hintandextended,lora,180 +on5,0,0,24,1,0,960,4360.001280,128,0,19641.001280,1769.600717,hintandextended,lora,180 +on4,0,0,26,1,0,485,4756.996160,128,2,8738.003840,1928.398874,hintandextended,lora,180 +on9,0,0,26,1,0,664,4683.600000,128,2,15308.001280,1966.943181,hintandextended,lora,180 +on10,0,0,24,1,0,529,4350.000000,128,1,13011.001280,1768.848000,hintandextended,lora,180 +on2,0,0,25,1,0,131,4501.206400,128,1,4898.001280,1854.466970,hintandextended,lora,180 +on12,0,0,26,1,0,580,4821.606400,128,2,13171.003840,2025.554355,hintandextended,lora,180 +on0,1,12,24,0,0,0,4857.612800,128,0,-1.000000,2250.249011,hintandextended,lora,180 +on1,0,0,27,1,0,906,5000.308960,129,4,12198.003840,2028.763584,hintandextended,lora,180 +on0,1,12,24,0,0,0,4999.817920,129,0,-1.000000,2307.133107,hintandextended,lora,180 +on4,0,0,25,1,0,535,4501.200000,129,1,10418.001280,1829.120000,hintandextended,lora,180 +on7,0,0,26,1,0,895,4681.600000,129,2,17099.001280,1912.479590,hintandextended,lora,180 +on12,0,0,26,1,0,993,4684.502560,129,3,18169.001280,1960.361024,hintandextended,lora,180 +on11,0,0,26,1,0,952,4683.900000,129,2,24141.001280,1996.183181,hintandextended,lora,180 +on6,0,0,26,1,0,342,4822.908960,129,3,5904.603840,2003.900198,hintandextended,lora,180 +on3,0,0,24,1,0,313,4434.001280,129,0,5744.001280,1827.584717,hintandextended,lora,180 +on10,0,0,24,1,0,16,4320.000000,129,0,2497.001280,1753.600205,hintandextended,lora,180 +on5,0,0,25,1,0,1620,4500.602560,129,2,35692.602560,1825.889434,hintandextended,lora,180 +on8,0,0,30,1,0,1648,5547.508960,129,6,24302.603840,2382.667789,hintandextended,lora,180 +on2,0,0,25,1,0,1001,4584.003840,129,1,18329.003840,1905.281536,hintandextended,lora,180 +on9,0,0,26,1,0,755,4681.900000,129,2,12038.001280,1908.535795,hintandextended,lora,180 +on8,0,0,28,1,0,1156,5185.706400,130,5,18770.603840,2216.250765,hintandextended,lora,180 +on3,0,0,27,1,0,719,4863.000000,130,3,14134.001280,2006.208000,hintandextended,lora,180 +on11,0,0,24,1,0,226,4467.002560,130,1,7240.001280,1825.793229,hintandextended,lora,180 +on9,0,0,24,1,0,280,4401.003840,130,0,7400.003840,1786.001741,hintandextended,lora,180 +on7,0,0,24,1,0,0,4321.400000,130,0,1859.001280,1757.200000,hintandextended,lora,180 +on6,0,0,27,1,0,716,4862.802560,130,3,15590.001280,2045.648819,hintandextended,lora,180 +on10,0,0,25,1,0,720,4640.900000,130,2,18609.001280,1971.143181,hintandextended,lora,180 +on4,0,0,25,1,0,560,4641.303840,130,1,9111.003840,1929.513741,hintandextended,lora,180 +on12,0,0,25,1,0,716,4640.303840,130,1,14294.003840,1907.961741,hintandextended,lora,180 +on5,0,0,23,1,0,419,4330.001280,130,0,8951.001280,1757.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5098.620480,130,0,-1.000000,2346.652288,hintandextended,lora,180 +on1,0,0,24,1,0,1439,4479.001280,130,0,26687.001280,1817.200717,hintandextended,lora,180 +on2,0,0,29,1,0,941,5364.607680,130,5,15750.003840,2297.490867,hintandextended,lora,180 +on4,0,0,24,1,0,302,4618.003840,131,1,8428.003840,1988.594560,hintandextended,lora,180 +on7,0,0,24,1,0,1620,4321.001280,131,0,34704.001280,1778.800717,hintandextended,lora,180 +on1,0,0,25,1,0,256,4556.003840,131,1,6997.003840,1848.001946,hintandextended,lora,180 +on3,0,0,26,1,0,860,4681.301280,131,3,14686.001280,1929.960512,hintandextended,lora,180 +on12,0,0,25,1,0,293,4501.197440,131,1,8268.001280,1829.278976,hintandextended,lora,180 +on5,0,0,24,1,0,1412,4452.001280,131,0,26227.001280,1806.400717,hintandextended,lora,180 +on11,0,0,25,1,0,2318,4500.201280,131,1,44344.001280,1825.888717,hintandextended,lora,180 +on8,0,0,24,1,0,2520,4321.000000,131,0,53942.001280,1757.200000,hintandextended,lora,180 +on9,0,0,24,1,0,303,4423.001280,131,0,6837.001280,1794.800717,hintandextended,lora,180 +on6,0,0,24,1,0,1080,4320.001280,131,0,24429.001280,1753.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4677.012800,131,0,-1.000000,2178.008602,hintandextended,lora,180 +on2,0,0,24,1,0,2771,4372.001280,131,0,54713.001280,1796.800717,hintandextended,lora,180 +on10,0,0,25,1,0,663,4585.502560,131,2,14199.001280,1863.001024,hintandextended,lora,180 +on0,1,12,24,0,0,0,4652.608960,132,0,-1.000000,2168.248704,hintandextended,lora,180 +on4,0,0,24,1,0,0,4321.000000,132,0,1944.001280,1756.944000,hintandextended,lora,180 +on5,0,0,26,1,0,1006,4683.001280,132,2,18479.001280,1956.289126,hintandextended,lora,180 +on9,0,0,24,1,0,757,4338.001280,132,0,16990.001280,1781.440717,hintandextended,lora,180 +on11,0,0,24,1,0,1339,4381.000000,132,0,28352.001280,1800.880410,hintandextended,lora,180 +on7,0,0,29,1,0,1452,5224.697440,132,7,23382.001280,2169.158566,hintandextended,lora,180 +on2,0,0,27,1,0,1727,4860.901280,132,4,31705.001280,1979.400307,hintandextended,lora,180 +on12,0,0,24,1,0,2633,4430.000000,132,1,51587.001280,1829.440000,hintandextended,lora,180 +on6,0,0,24,1,0,627,4389.000000,132,0,13082.001280,1808.144410,hintandextended,lora,180 +on10,0,0,23,1,0,318,4264.000000,132,1,9345.001280,1734.143795,hintandextended,lora,180 +on1,0,0,25,1,0,424,4546.600000,132,1,9506.603840,1872.880410,hintandextended,lora,180 +on3,0,0,24,1,0,770,4350.003840,132,0,17150.003840,1765.601741,hintandextended,lora,180 +on8,0,0,25,1,0,149,4502.198720,132,1,5710.001280,1842.383693,hintandextended,lora,180 +on1,0,0,24,1,0,58,4358.001280,133,0,978.001280,1768.800717,hintandextended,lora,180 +on10,0,0,24,1,0,579,4321.303840,133,1,15206.001280,1778.921946,hintandextended,lora,180 +on5,0,0,24,1,0,123,4484.605120,133,1,1138.603840,1905.122867,hintandextended,lora,180 +on8,0,0,26,1,0,1106,4682.298720,133,3,22366.001280,1902.999693,hintandextended,lora,180 +on7,0,0,24,1,0,360,4323.000000,133,0,7543.001280,1784.880410,hintandextended,lora,180 +on3,0,0,24,1,0,1260,4322.998720,133,0,26874.001280,1783.440102,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,133,0,-1.000000,1728.000000,hintandextended,lora,180 +on11,0,0,24,1,0,1904,4405.001280,133,0,36622.001280,1816.240717,hintandextended,lora,180 +on6,0,0,24,1,0,205,4341.002560,133,1,6215.001280,1780.241638,hintandextended,lora,180 +on0,1,11,24,0,0,0,4648.606400,133,0,-1.000000,2141.048704,hintandextended,lora,180 +on9,0,0,25,1,0,758,4504.296160,133,1,19059.001280,1878.327078,hintandextended,lora,180 +on12,0,0,24,1,0,2406,4369.000000,133,0,50329.001280,1797.520614,hintandextended,lora,180 +on2,0,0,25,1,0,3372,4500.001280,133,1,68070.001280,1825.600717,hintandextended,lora,180 +on10,0,0,27,1,0,1155,5004.903840,134,3,18990.603840,2077.705331,hintandextended,lora,180 +on7,0,0,27,1,0,830,4863.100000,134,3,15346.001280,2014.839590,hintandextended,lora,180 +on1,0,0,27,1,0,702,5003.203840,134,3,11442.603840,2082.369536,hintandextended,lora,180 +on11,0,0,24,1,0,180,4321.000000,134,0,3834.001280,1756.944000,hintandextended,lora,180 +on6,0,0,24,1,0,870,4450.003840,134,0,15506.003840,1805.601741,hintandextended,lora,180 +on2,0,0,27,1,0,1119,5082.803840,134,4,24079.003840,2155.457331,hintandextended,lora,180 +on9,0,0,25,1,0,674,4640.003840,134,1,10615.003840,1881.601741,hintandextended,lora,180 +on5,0,0,25,1,0,484,4501.000000,134,1,10455.001280,1834.272000,hintandextended,lora,180 +on3,0,0,25,1,0,337,4501.997440,134,1,4611.001280,1854.783181,hintandextended,lora,180 +on12,0,0,26,1,0,401,4682.900000,134,3,11281.001280,1977.255386,hintandextended,lora,180 +on8,0,0,25,1,0,1058,4502.000000,134,1,23919.001280,1829.760000,hintandextended,lora,180 +on4,0,0,26,1,0,994,4681.300000,134,2,18829.001280,1904.471590,hintandextended,lora,180 +on0,1,12,24,0,0,0,5088.220480,134,0,-1.000000,2342.491878,hintandextended,lora,180 +on12,0,0,23,1,0,45,4286.001280,135,0,3729.001280,1740.000717,hintandextended,lora,180 +on0,1,11,24,0,0,0,4858.612800,135,0,-1.000000,2225.052493,hintandextended,lora,180 +on6,0,0,25,1,0,812,4508.601280,135,2,14594.001280,1869.040717,hintandextended,lora,180 +on11,0,0,27,1,0,1124,4862.898720,135,3,22730.001280,2009.207283,hintandextended,lora,180 +on3,0,0,25,1,0,994,4651.202560,135,2,20571.603840,1903.201434,hintandextended,lora,180 +on2,0,0,26,1,0,646,4684.200000,135,2,11731.001280,1957.360614,hintandextended,lora,180 +on5,0,0,26,1,0,813,4826.206400,135,2,11891.003840,1994.114970,hintandextended,lora,180 +on7,0,0,24,1,0,448,4389.005120,135,0,10919.001280,1781.202662,hintandextended,lora,180 +on10,0,0,26,1,0,654,4700.300000,135,2,11079.003840,1967.192410,hintandextended,lora,180 +on1,0,0,24,1,0,2160,4320.002560,135,0,45366.001280,1753.601434,hintandextended,lora,180 +on8,0,0,24,1,0,303,4425.001280,135,0,5521.001280,1843.248922,hintandextended,lora,180 +on9,0,0,25,1,0,875,4569.297440,135,2,20410.001280,1894.663181,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,24,1,0,0,4322.002560,136,0,1590.001280,1797.729434,hintandextended,lora,180 +on6,0,0,24,1,0,503,4448.000000,136,0,9363.001280,1883.840614,hintandextended,lora,180 +on2,0,0,24,1,0,201,4472.998720,136,1,7360.001280,1837.439898,hintandextended,lora,180 +on11,0,0,24,0,0,4228,4320.300000,136,1,-1.000000,1734.456000,hintandextended,lora,180 +on10,0,0,24,1,0,720,4321.998720,136,0,14679.001280,1754.400102,hintandextended,lora,180 +on8,0,0,24,1,0,2336,4478.000000,136,0,44610.001280,1837.120410,hintandextended,lora,180 +on3,0,0,26,1,0,1467,4823.805120,136,2,28817.603840,1969.794662,hintandextended,lora,180 +on12,0,0,25,1,0,1734,4502.997440,136,1,35551.001280,1855.439795,hintandextended,lora,180 +on1,0,0,24,1,0,356,4487.606400,136,2,7520.603840,1840.371174,hintandextended,lora,180 +on4,0,0,26,1,0,1433,4685.896160,136,2,31173.001280,2001.542464,hintandextended,lora,180 +on9,0,0,24,1,0,1080,4321.000000,136,0,23073.001280,1756.944000,hintandextended,lora,180 +on7,0,0,25,1,0,1409,4501.200000,136,1,28656.001280,1829.023795,hintandextended,lora,180 +on0,1,11,24,0,0,0,4703.211520,136,0,-1.000000,2162.891162,hintandextended,lora,180 +on1,0,0,24,1,0,2498,4458.001280,137,0,47782.001280,1837.440717,hintandextended,lora,180 +on9,0,0,24,1,0,464,4457.300000,137,1,11720.001280,1854.376205,hintandextended,lora,180 +on8,0,0,26,1,0,640,4682.600000,137,2,15079.001280,1939.440000,hintandextended,lora,180 +on6,0,0,25,1,0,1235,4502.300000,137,1,28566.001280,1887.000000,hintandextended,lora,180 +on7,0,0,24,1,0,1810,4321.000000,137,0,38462.001280,1755.600000,hintandextended,lora,180 +on3,0,0,25,1,0,324,4503.998720,137,1,9752.001280,1870.751078,hintandextended,lora,180 +on5,0,0,25,1,0,1080,4504.003840,137,1,23831.602560,1858.417741,hintandextended,lora,180 +on10,0,0,26,1,0,632,4821.303840,137,2,11880.003840,1968.201331,hintandextended,lora,180 +on0,1,12,24,0,0,0,4902.215360,137,0,-1.000000,2268.091469,hintandextended,lora,180 +on11,0,0,24,1,0,180,4321.000000,137,0,4410.001280,1756.944000,hintandextended,lora,180 +on12,0,0,25,1,0,836,4598.003840,137,1,15239.003840,1900.481946,hintandextended,lora,180 +on4,0,0,24,1,0,297,4417.001280,137,0,4232.001280,1792.400717,hintandextended,lora,180 +on2,0,0,24,1,0,412,4479.605120,137,1,9913.603840,1879.842253,hintandextended,lora,180 +on10,0,0,27,1,0,977,4862.101280,138,3,19456.001280,2008.264102,hintandextended,lora,180 +on12,0,0,26,1,0,815,4681.300000,138,2,17239.001280,1904.567795,hintandextended,lora,180 +on7,0,0,24,1,0,491,4434.000000,138,0,8108.001280,1804.160410,hintandextended,lora,180 +on5,0,0,24,1,0,360,4322.000000,138,0,8279.001280,1783.264205,hintandextended,lora,180 +on1,0,0,25,1,0,581,4502.301280,138,1,13927.001280,1859.240512,hintandextended,lora,180 +on8,0,0,24,1,0,204,4326.000000,138,0,6167.001280,1784.640410,hintandextended,lora,180 +on4,0,0,26,1,0,1087,4820.303840,138,2,17399.003840,1956.601536,hintandextended,lora,180 +on3,0,0,25,1,0,1440,4503.000000,138,1,30755.602560,1864.352205,hintandextended,lora,180 +on9,0,0,27,1,0,1156,5005.903840,138,3,19617.603840,2091.641946,hintandextended,lora,180 +on2,0,0,24,1,0,2231,4371.001280,138,0,45977.001280,1774.000717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4970.215360,138,0,-1.000000,2295.291674,hintandextended,lora,180 +on11,0,0,27,1,0,1181,4865.100000,138,3,22251.001280,2053.960205,hintandextended,lora,180 +on6,0,0,25,1,0,758,4643.205120,138,1,14087.003840,1927.154253,hintandextended,lora,180 +on0,1,12,24,0,0,0,4910.815360,139,0,-1.000000,2271.530445,hintandextended,lora,180 +on3,0,0,26,1,0,1838,4913.606400,139,3,36062.003840,2037.810765,hintandextended,lora,180 +on1,0,0,25,1,0,1126,4500.997440,139,1,24741.001280,1825.999181,hintandextended,lora,180 +on12,0,0,25,1,0,833,4597.602560,139,1,15748.603840,1924.337638,hintandextended,lora,180 +on7,0,0,24,1,0,37,4337.001280,139,0,450.001280,1760.400717,hintandextended,lora,180 +on2,0,0,25,1,0,1946,4502.000000,139,3,41709.602560,1858.192000,hintandextended,lora,180 +on9,0,0,25,1,0,1307,4503.300000,139,2,29857.001280,1890.983590,hintandextended,lora,180 +on5,0,0,24,1,0,900,4320.001280,139,0,18829.001280,1753.600717,hintandextended,lora,180 +on10,0,0,24,1,0,762,4342.001280,139,0,15588.001280,1762.400717,hintandextended,lora,180 +on4,0,0,26,1,0,1587,4821.903840,139,2,30018.603840,1956.601741,hintandextended,lora,180 +on11,0,0,25,1,0,1709,4501.000000,139,1,35902.001280,1829.040000,hintandextended,lora,180 +on6,0,0,25,1,0,1194,4502.297440,139,2,26843.001280,1865.398976,hintandextended,lora,180 +on8,0,0,26,1,0,1824,4682.600000,139,2,36375.001280,1939.167795,hintandextended,lora,180 +on5,0,0,24,1,0,540,4323.001280,140,0,13657.001280,1803.441126,hintandextended,lora,180 +on10,0,0,24,1,0,4128,4468.001280,140,0,82480.001280,1812.800717,hintandextended,lora,180 +on12,0,0,24,1,0,897,4478.001280,140,0,17423.001280,1845.440717,hintandextended,lora,180 +on8,0,0,25,1,0,2274,4501.997440,140,1,46397.001280,1836.367181,hintandextended,lora,180 +on7,0,0,26,1,0,2432,4685.300000,140,3,47550.001280,2004.040410,hintandextended,lora,180 +on11,0,0,24,1,0,1213,4433.001280,140,0,23376.001280,1798.800717,hintandextended,lora,180 +on2,0,0,24,1,0,1800,4320.001280,140,0,36842.001280,1753.600717,hintandextended,lora,180 +on1,0,0,25,1,0,626,4500.303840,140,1,13486.001280,1830.041741,hintandextended,lora,180 +on3,0,0,25,1,0,356,4659.602560,140,1,7364.603840,1946.769843,hintandextended,lora,180 +on0,1,12,24,0,0,0,4638.606400,140,0,-1.000000,2162.647885,hintandextended,lora,180 +on6,0,0,24,1,0,1708,4388.001280,140,0,33285.001280,1780.800717,hintandextended,lora,180 +on9,0,0,24,1,0,310,4432.000000,140,0,7204.001280,1827.040410,hintandextended,lora,180 +on4,0,0,24,1,0,478,4420.003840,140,0,10583.001280,1835.746150,hintandextended,lora,180 +on6,0,0,26,1,0,482,4822.606400,141,2,10352.603840,1982.770765,hintandextended,lora,180 +on3,0,0,25,1,0,1019,4501.600000,141,2,25075.001280,1867.583386,hintandextended,lora,180 +on10,0,0,25,1,0,600,4640.603840,141,1,13227.003840,1919.393741,hintandextended,lora,180 +on2,0,0,25,1,0,1041,4501.000000,141,1,21623.001280,1829.040000,hintandextended,lora,180 +on9,0,0,25,1,0,349,4502.798720,141,1,10191.001280,1840.751488,hintandextended,lora,180 +on7,0,0,29,1,0,1562,5222.703840,141,5,27734.001280,2161.577331,hintandextended,lora,180 +on1,0,0,28,1,0,1251,5184.000000,141,4,25236.603840,2162.767795,hintandextended,lora,180 +on12,0,0,27,1,0,1032,5003.908960,141,3,17841.003840,2129.787584,hintandextended,lora,180 +on0,1,12,24,0,0,0,4929.817920,141,0,-1.000000,2279.132493,hintandextended,lora,180 +on8,0,0,25,1,0,426,4503.300000,141,1,13067.001280,1871.944000,hintandextended,lora,180 +on5,0,0,24,1,0,2996,4417.001280,141,0,58571.001280,1821.040717,hintandextended,lora,180 +on4,0,0,26,1,0,838,4682.400000,141,2,17681.001280,1910.399795,hintandextended,lora,180 +on11,0,0,24,1,0,180,4331.998720,141,1,6355.602560,1776.271488,hintandextended,lora,180 +on1,0,0,25,1,0,113,4503.198720,142,1,6043.001280,1886.687488,hintandextended,lora,180 +on6,0,0,28,1,0,916,5043.401280,142,4,20265.001280,2135.808307,hintandextended,lora,180 +on12,0,0,26,1,0,649,4681.300000,142,2,13490.001280,1903.623795,hintandextended,lora,180 +on2,0,0,26,1,0,699,4820.803840,142,2,10796.003840,1960.865126,hintandextended,lora,180 +on4,0,0,24,1,0,0,4321.000000,142,0,1523.001280,1757.040000,hintandextended,lora,180 +on8,0,0,26,1,0,814,4821.803840,142,2,13650.003840,2009.969536,hintandextended,lora,180 +on3,0,0,25,1,0,329,4676.003840,142,2,6203.003840,1899.361741,hintandextended,lora,180 +on9,0,0,29,1,0,1260,5361.405120,142,5,20425.003840,2229.138048,hintandextended,lora,180 +on7,0,0,30,1,0,1502,5403.202560,142,6,22273.001280,2220.768410,hintandextended,lora,180 +on11,0,0,27,1,0,995,4861.900000,142,3,18108.001280,1986.039590,hintandextended,lora,180 +on10,0,0,25,1,0,394,4501.000000,142,1,10636.001280,1851.040000,hintandextended,lora,180 +on5,0,0,26,1,0,973,4821.103840,142,2,18268.003840,1974.569536,hintandextended,lora,180 +on0,1,12,24,0,0,0,5125.020480,142,0,-1.000000,2357.211674,hintandextended,lora,180 +on1,0,0,24,0,0,4116,4449.300000,143,1,-1.000000,1826.536205,hintandextended,lora,180 +on7,0,0,24,1,0,900,4323.000000,143,0,20510.001280,1792.048000,hintandextended,lora,180 +on10,0,0,24,1,0,540,4321.002560,143,0,13407.001280,1777.105434,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,hintandextended,lora,180 +on9,0,0,24,1,0,511,4452.001280,143,0,10494.001280,1810.400922,hintandextended,lora,180 +on0,1,10,24,0,0,0,4722.011520,143,0,-1.000000,2144.810752,hintandextended,lora,180 +on2,0,0,24,1,0,2160,4320.001280,143,0,43890.001280,1753.600717,hintandextended,lora,180 +on3,0,0,25,1,0,1460,4522.600000,143,3,32536.001280,1883.280000,hintandextended,lora,180 +on6,0,0,25,1,0,1472,4642.602560,143,2,32696.003840,1944.241229,hintandextended,lora,180 +on8,0,0,25,1,0,834,4502.001280,143,1,17776.001280,1852.000717,hintandextended,lora,180 +on11,0,0,25,1,0,1173,4577.007680,143,1,24007.003840,1909.108096,hintandextended,lora,180 +on12,0,0,24,1,0,1013,4483.001280,143,1,23847.001280,1893.680512,hintandextended,lora,180 +on5,0,0,25,1,0,1373,4504.197440,143,1,28465.001280,1886.864000,hintandextended,lora,180 +on6,0,0,24,1,0,1800,4459.000000,144,1,38754.001280,1834.960205,hintandextended,lora,180 +on4,0,0,24,1,0,2160,4320.001280,144,0,46201.001280,1753.600717,hintandextended,lora,180 +on8,0,0,24,1,0,42,4344.997440,144,0,673.001280,1805.839590,hintandextended,lora,180 +on12,0,0,25,1,0,141,4625.602560,144,1,833.603840,1958.193843,hintandextended,lora,180 +on9,0,0,25,1,0,2161,4501.300000,144,1,50039.001280,1857.800000,hintandextended,lora,180 +on3,0,0,25,1,0,952,4500.301280,144,2,22940.001280,1846.200512,hintandextended,lora,180 +on0,1,12,24,0,0,0,5137.216640,144,0,-1.000000,2362.092186,hintandextended,lora,180 +on10,0,0,24,1,0,3060,4320.001280,144,0,61552.001280,1753.600717,hintandextended,lora,180 +on7,0,0,25,1,0,881,4502.996160,144,1,19604.001280,1848.239078,hintandextended,lora,180 +on5,0,0,26,1,0,2705,4824.902560,144,2,53283.603840,2004.793843,hintandextended,lora,180 +on1,0,0,25,1,0,2492,4501.600000,144,1,53122.001280,1857.663386,hintandextended,lora,180 +on2,0,0,24,1,0,720,4321.000000,144,0,17651.001280,1756.944000,hintandextended,lora,180 +on11,0,0,26,1,0,2630,4822.205120,144,2,50199.003840,1958.962253,hintandextended,lora,180 +on10,0,0,28,1,0,1016,5045.497440,145,4,18037.001280,2101.926771,hintandextended,lora,180 +on3,0,0,24,1,0,32,4334.000000,145,0,2846.001280,1781.344410,hintandextended,lora,180 +on12,0,0,24,1,0,1577,4545.001280,145,1,35421.001280,1901.040717,hintandextended,lora,180 +on8,0,0,25,1,0,508,4640.805120,145,1,8760.003840,1881.922458,hintandextended,lora,180 +on0,1,12,24,0,0,0,5025.014080,145,0,-1.000000,2317.211366,hintandextended,lora,180 +on5,0,0,27,1,0,1392,4860.503840,145,3,23142.001280,1973.369741,hintandextended,lora,180 +on1,0,0,24,1,0,0,4322.997440,145,0,3012.001280,1786.223181,hintandextended,lora,180 +on6,0,0,24,1,0,484,4641.001280,145,1,14488.003840,1961.201536,hintandextended,lora,180 +on4,0,0,26,1,0,2237,4886.705120,145,3,46988.001280,2061.210662,hintandextended,lora,180 +on7,0,0,25,1,0,511,4642.003840,145,1,6586.003840,1888.642150,hintandextended,lora,180 +on11,0,0,25,1,0,440,4624.502560,145,2,8600.001280,1935.721024,hintandextended,lora,180 +on9,0,0,25,1,0,125,4502.300000,145,1,6426.001280,1866.407795,hintandextended,lora,180 +on2,0,0,25,1,0,571,4502.300000,145,1,14328.001280,1849.559795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,146,0,-1.000000,2315.854438,hintandextended,lora,180 +on5,0,0,27,1,0,1200,5004.110240,146,3,20812.603840,2084.300301,hintandextended,lora,180 +on4,0,0,24,1,0,825,4406.001280,146,0,17459.001280,1814.240717,hintandextended,lora,180 +on10,0,0,25,1,0,862,4503.300000,146,1,20651.001280,1846.503590,hintandextended,lora,180 +on6,0,0,26,1,0,1408,4823.303840,146,2,28125.003840,2021.897536,hintandextended,lora,180 +on7,0,0,26,1,0,1173,4683.300000,146,2,24155.001280,1939.719795,hintandextended,lora,180 +on1,0,0,26,1,0,1534,4683.600000,146,2,29904.001280,1950.720000,hintandextended,lora,180 +on11,0,0,25,1,0,1221,4621.003840,146,1,24315.003840,1874.001741,hintandextended,lora,180 +on8,0,0,25,1,0,813,4644.005120,146,1,17619.003840,1990.242662,hintandextended,lora,180 +on9,0,0,24,1,0,580,4343.001280,146,0,11223.001280,1835.601126,hintandextended,lora,180 +on3,0,0,25,1,0,668,4609.002560,146,1,11383.003840,1869.201638,hintandextended,lora,180 +on12,0,0,25,1,0,3354,4501.300000,146,1,70347.001280,1857.960000,hintandextended,lora,180 +on2,0,0,25,1,0,1427,4504.002560,146,1,27965.001280,1934.241229,hintandextended,lora,180 +on4,0,0,24,1,0,327,4448.002560,147,0,7378.001280,1833.185434,hintandextended,lora,180 +on5,0,0,26,1,0,671,4824.000000,147,2,11220.003840,1986.784410,hintandextended,lora,180 +on10,0,0,26,1,0,1178,4682.600000,147,2,23974.001280,1942.159795,hintandextended,lora,180 +on11,0,0,25,1,0,653,4502.998720,147,1,16776.001280,1853.807488,hintandextended,lora,180 +on1,0,0,26,1,0,872,4821.903840,147,2,16937.603840,1973.881536,hintandextended,lora,180 +on12,0,0,25,1,0,500,4504.998720,147,1,11060.001280,1899.983898,hintandextended,lora,180 +on9,0,0,24,1,0,180,4321.001280,147,0,3813.001280,1756.944717,hintandextended,lora,180 +on6,0,0,26,1,0,960,4824.605120,147,2,20854.003840,2031.970662,hintandextended,lora,180 +on7,0,0,25,1,0,1016,4506.298720,147,1,20694.001280,1906.807898,hintandextended,lora,180 +on2,0,0,25,1,0,438,4560.002560,147,1,7538.003840,1849.602048,hintandextended,lora,180 +on8,0,0,24,1,0,3760,4459.001280,147,0,75232.001280,1809.200717,hintandextended,lora,180 +on3,0,0,25,1,0,303,4501.002560,147,1,6375.001280,1854.641434,hintandextended,lora,180 +on0,1,12,24,0,0,0,4934.616640,147,0,-1.000000,2281.053414,hintandextended,lora,180 +on1,0,0,24,1,0,3046,4466.001280,148,0,59203.001280,1812.000717,hintandextended,lora,180 +on11,0,0,26,1,0,1059,4685.797440,148,2,19118.001280,2007.391386,hintandextended,lora,180 +on4,0,0,25,1,0,643,4623.301280,148,2,12175.001280,1938.184512,hintandextended,lora,180 +on10,0,0,25,1,0,180,4504.593600,148,1,4839.602560,1853.630259,hintandextended,lora,180 +on8,0,0,25,1,0,162,4644.007680,148,1,1349.003840,1935.907891,hintandextended,lora,180 +on3,0,0,25,1,0,168,4502.000000,148,1,4661.001280,1855.104000,hintandextended,lora,180 +on6,0,0,26,1,0,640,4681.902560,148,2,17545.001280,1961.241024,hintandextended,lora,180 +on5,0,0,24,1,0,532,4474.001280,148,0,8064.001280,1845.280922,hintandextended,lora,180 +on7,0,0,28,1,0,1170,5160.500000,148,6,24424.001280,2215.639181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4758.610240,148,0,-1.000000,2210.650445,hintandextended,lora,180 +on12,0,0,24,1,0,52,4353.001280,148,0,1189.001280,1766.801126,hintandextended,lora,180 +on9,0,0,25,1,0,1056,4641.005120,148,1,17705.003840,1910.642458,hintandextended,lora,180 +on2,0,0,25,1,0,2119,4623.301280,148,3,44648.001280,1922.392717,hintandextended,lora,180 +on4,0,0,25,1,0,1440,4501.603840,149,1,30076.602560,1854.930150,hintandextended,lora,180 +on2,0,0,25,1,0,1933,4502.998720,149,1,39381.001280,1884.079898,hintandextended,lora,180 +on6,0,0,25,1,0,474,4502.001280,149,1,10180.001280,1857.760717,hintandextended,lora,180 +on12,0,0,25,1,0,293,4504.000000,149,1,7183.001280,1901.824410,hintandextended,lora,180 +on1,0,0,24,1,0,922,4474.300000,149,1,21435.001280,1871.928205,hintandextended,lora,180 +on3,0,0,24,1,0,765,4348.998720,149,0,15262.001280,1794.864307,hintandextended,lora,180 +on0,1,11,24,0,0,0,4752.810240,149,0,-1.000000,2182.730854,hintandextended,lora,180 +on10,0,0,25,1,0,1193,4503.198720,149,1,24436.001280,1853.119898,hintandextended,lora,180 +on7,0,0,24,1,0,18,4321.998720,149,0,1901.001280,1775.583898,hintandextended,lora,180 +on9,0,0,25,1,0,979,4562.606400,149,1,21596.603840,1911.123379,hintandextended,lora,180 +on5,0,0,25,1,0,826,4589.603840,149,1,15422.603840,1921.809741,hintandextended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,hintandextended,lora,180 +on11,0,0,25,1,0,1806,4503.302560,149,2,42345.001280,1924.841229,hintandextended,lora,180 +on1,0,0,25,1,0,1069,4501.200000,150,1,21638.001280,1829.023795,hintandextended,lora,180 +on10,0,0,25,1,0,1080,4502.603840,150,1,22110.602560,1852.930355,hintandextended,lora,180 +on7,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,24,1,0,19,4320.998720,150,0,849.001280,1753.999693,hintandextended,lora,180 +on2,0,0,24,1,0,467,4409.998720,150,0,9582.001280,1818.240102,hintandextended,lora,180 +on6,0,0,26,1,0,1020,4824.601280,150,2,18138.603840,1958.848922,hintandextended,lora,180 +on0,1,11,24,0,0,0,4851.414080,150,0,-1.000000,2222.170957,hintandextended,lora,180 +on8,0,0,24,1,0,3134,4374.001280,150,0,63017.001280,1775.200717,hintandextended,lora,180 +on12,0,0,27,1,0,1028,5003.803840,150,3,21799.603840,2094.833331,hintandextended,lora,180 +on11,0,0,24,1,0,1419,4459.002560,150,0,27227.001280,1809.201434,hintandextended,lora,180 +on3,0,0,24,1,0,661,4422.001280,150,0,12187.001280,1822.880717,hintandextended,lora,180 +on9,0,0,25,1,0,838,4502.300000,150,1,17977.001280,1863.735795,hintandextended,lora,180 +on4,0,0,25,1,0,507,4630.598720,150,1,9742.603840,1906.528307,hintandextended,lora,180 +on7,0,0,24,1,0,720,4323.000000,151,0,17072.001280,1775.504410,hintandextended,lora,180 +on8,0,0,25,1,0,653,4501.201280,151,1,14347.001280,1829.280717,hintandextended,lora,180 +on11,0,0,24,1,0,3240,4320.001280,151,0,65679.001280,1753.600717,hintandextended,lora,180 +on6,0,0,24,1,0,67,4370.003840,151,0,2583.001280,1848.225741,hintandextended,lora,180 +on3,0,0,24,1,0,2833,4434.001280,151,0,55197.001280,1827.840717,hintandextended,lora,180 +on5,0,0,26,1,0,454,4825.600000,151,2,7696.603840,2028.704614,hintandextended,lora,180 +on2,0,0,24,1,0,1208,4429.000000,151,0,23470.001280,1797.200410,hintandextended,lora,180 +on10,0,0,25,1,0,168,4503.000000,151,1,4181.001280,1852.464205,hintandextended,lora,180 +on9,0,0,24,1,0,1800,4386.998720,151,1,36505.602560,1834.111693,hintandextended,lora,180 +on0,1,12,24,0,0,0,4753.812800,151,0,-1.000000,2208.731674,hintandextended,lora,180 +on12,0,0,25,1,0,1013,4502.001280,151,1,21313.001280,1827.041331,hintandextended,lora,180 +on1,0,0,25,1,0,1186,4678.903840,151,3,23630.603840,1958.489741,hintandextended,lora,180 +on4,0,0,25,1,0,294,4501.001280,151,1,7535.001280,1829.152512,hintandextended,lora,180 +on1,0,0,24,1,0,87,4388.000000,152,0,3240.001280,1780.800410,hintandextended,lora,180 +on9,0,0,24,1,0,669,4431.000000,152,0,11975.001280,1824.240410,hintandextended,lora,180 +on8,0,0,24,1,0,152,4485.600000,152,1,3400.603840,1847.856819,hintandextended,lora,180 +on12,0,0,26,1,0,826,4683.402560,152,2,15873.001280,1943.121229,hintandextended,lora,180 +on11,0,0,28,1,0,947,5074.102560,152,4,16033.003840,2127.288410,hintandextended,lora,180 +on10,0,0,25,1,0,633,4642.005120,152,1,8572.003840,1917.826458,hintandextended,lora,180 +on7,0,0,25,1,0,476,4505.297440,152,1,8412.001280,1872.103590,hintandextended,lora,180 +on2,0,0,28,1,0,1013,5046.702560,152,4,21656.001280,2161.720819,hintandextended,lora,180 +on5,0,0,25,1,0,598,4642.303840,152,1,12135.003840,1925.081536,hintandextended,lora,180 +on3,0,0,28,1,0,1229,5189.503840,152,4,21817.603840,2198.890560,hintandextended,lora,180 +on4,0,0,24,1,0,180,4321.000000,152,0,5711.001280,1754.000410,hintandextended,lora,180 +on6,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,hintandextended,lora,180 +on0,1,11,24,0,0,0,5059.220480,152,0,-1.000000,2305.295155,hintandextended,lora,180 +on1,0,0,25,1,0,1194,4504.497440,153,2,25905.001280,1876.583181,hintandextended,lora,180 +on10,0,0,25,1,0,1800,4502.602560,153,1,36864.602560,1842.689638,hintandextended,lora,180 +on8,0,0,24,1,0,297,4418.001280,153,0,7381.001280,1821.184717,hintandextended,lora,180 +on9,0,0,25,1,0,1431,4504.296160,153,1,30315.001280,1872.598874,hintandextended,lora,180 +on11,0,0,24,1,0,1468,4460.298720,153,2,34309.001280,1882.743898,hintandextended,lora,180 +on7,0,0,26,1,0,1239,4825.603840,153,2,21234.603840,2049.826150,hintandextended,lora,180 +on4,0,0,25,1,0,676,4505.000000,153,1,13803.001280,1876.880819,hintandextended,lora,180 +on0,1,12,24,0,0,0,4863.808960,153,0,-1.000000,2252.730342,hintandextended,lora,180 +on6,0,0,24,1,0,179,4479.001280,153,0,2817.001280,1817.200717,hintandextended,lora,180 +on2,0,0,24,1,0,1621,4404.398720,153,1,34483.601280,1884.064102,hintandextended,lora,180 +on5,0,0,24,1,0,720,4322.998720,153,0,16092.001280,1786.127693,hintandextended,lora,180 +on12,0,0,24,1,0,3361,4422.001280,153,0,67079.001280,1823.040717,hintandextended,lora,180 +on3,0,0,25,1,0,1001,4503.201280,153,1,21073.001280,1860.112307,hintandextended,lora,180 +on9,0,0,25,1,0,628,4572.601280,154,1,13671.603840,1871.649126,hintandextended,lora,180 +on5,0,0,24,1,0,1040,4446.000000,154,0,20361.001280,1931.904614,hintandextended,lora,180 +on10,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,hintandextended,lora,180 +on12,0,0,24,1,0,900,4321.002560,154,0,20534.001280,1782.641434,hintandextended,lora,180 +on2,0,0,26,1,0,1512,4974.503840,154,3,23746.003840,2023.609946,hintandextended,lora,180 +on11,0,0,25,1,0,849,4502.998720,154,1,18030.001280,1858.223693,hintandextended,lora,180 +on3,0,0,24,1,0,667,4429.001280,154,0,13511.001280,1836.144717,hintandextended,lora,180 +on4,0,0,25,1,0,1786,4501.000000,154,1,35990.001280,1826.000410,hintandextended,lora,180 +on7,0,0,25,1,0,812,4578.594880,154,1,18191.603840,1893.678976,hintandextended,lora,180 +on8,0,0,26,1,0,1225,4685.298720,154,2,23586.001280,1961.527693,hintandextended,lora,180 +on1,0,0,26,1,0,1354,4681.600000,154,2,28883.001280,1933.279795,hintandextended,lora,180 +on0,1,11,24,0,0,0,4895.212800,154,0,-1.000000,2239.692288,hintandextended,lora,180 +on6,0,0,24,1,0,328,4449.001280,154,0,5348.001280,1826.480717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4971.214080,155,0,-1.000000,2295.689523,hintandextended,lora,180 +on10,0,0,24,1,0,471,4411.998720,155,0,7657.001280,1790.399898,hintandextended,lora,180 +on2,0,0,24,1,0,2417,4378.001280,155,0,50134.001280,1794.400717,hintandextended,lora,180 +on3,0,0,24,1,0,1966,4466.001280,155,0,37425.001280,1812.000717,hintandextended,lora,180 +on6,0,0,25,1,0,2422,4562.603840,155,1,50294.603840,1850.689946,hintandextended,lora,180 +on1,0,0,25,1,0,1305,4500.301280,155,1,28632.001280,1836.600717,hintandextended,lora,180 +on9,0,0,24,1,0,1669,4350.001280,155,0,33367.001280,1771.680717,hintandextended,lora,180 +on12,0,0,24,1,0,912,4321.000000,155,0,19129.001280,1755.120000,hintandextended,lora,180 +on7,0,0,25,1,0,996,4578.002560,155,1,19289.003840,1885.281434,hintandextended,lora,180 +on5,0,0,24,1,0,540,4320.001280,155,0,14376.001280,1753.600717,hintandextended,lora,180 +on4,0,0,24,1,0,1440,4320.001280,155,0,30369.001280,1753.600717,hintandextended,lora,180 +on11,0,0,24,1,0,359,4479.002560,155,0,5111.001280,1817.201434,hintandextended,lora,180 +on8,0,0,24,1,0,300,4551.606400,155,1,5271.603840,1896.050970,hintandextended,lora,180 +on11,0,0,25,1,0,789,4641.303840,156,1,14602.003840,1916.521741,hintandextended,lora,180 +on1,0,0,29,1,0,1286,5364.005120,156,5,19857.003840,2232.529434,hintandextended,lora,180 +on7,0,0,24,1,0,194,4321.002560,156,0,6157.001280,1782.385229,hintandextended,lora,180 +on9,0,0,28,1,0,1355,5112.398720,156,4,22771.603840,2102.607693,hintandextended,lora,180 +on12,0,0,26,1,0,650,4821.003840,156,2,9986.003840,1968.721741,hintandextended,lora,180 +on3,0,0,26,1,0,1129,4682.600000,156,2,22610.001280,1944.943386,hintandextended,lora,180 +on4,0,0,24,1,0,1,4320.000000,156,0,3450.001280,1753.600205,hintandextended,lora,180 +on10,0,0,26,1,0,939,4681.501280,156,2,19697.001280,1912.168307,hintandextended,lora,180 +on8,0,0,25,1,0,671,4502.000000,156,1,14442.001280,1853.024000,hintandextended,lora,180 +on5,0,0,26,1,0,274,4681.600000,156,4,9826.001280,1933.695590,hintandextended,lora,180 +on2,0,0,25,1,0,993,4640.003840,156,1,17148.003840,1881.601741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5021.619200,156,0,-1.000000,2315.851571,hintandextended,lora,180 +on6,0,0,27,1,0,767,4864.102560,156,3,16988.001280,2046.665024,hintandextended,lora,180 +on2,0,0,24,1,0,1620,4321.001280,157,0,34755.001280,1756.944717,hintandextended,lora,180 +on11,0,0,24,1,0,1440,4320.001280,157,0,32216.001280,1753.600717,hintandextended,lora,180 +on12,0,0,25,1,0,2813,4501.200000,157,1,56259.001280,1829.280000,hintandextended,lora,180 +on1,0,0,24,1,0,407,4349.000000,157,0,8502.001280,1766.000614,hintandextended,lora,180 +on6,0,0,25,1,0,1080,4504.601280,157,1,24343.602560,1905.313126,hintandextended,lora,180 +on8,0,0,26,1,0,2134,4823.806400,157,2,39181.603840,1976.402970,hintandextended,lora,180 +on5,0,0,24,1,0,540,4320.001280,157,0,11949.001280,1753.600717,hintandextended,lora,180 +on7,0,0,24,1,0,180,4321.997440,157,0,5306.001280,1759.039386,hintandextended,lora,180 +on9,0,0,25,1,0,1977,4501.000000,157,1,39020.001280,1829.151795,hintandextended,lora,180 +on3,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,hintandextended,lora,180 +on10,0,0,26,1,0,1899,4683.601280,157,2,41629.001280,1963.520307,hintandextended,lora,180 +on4,0,0,24,1,0,1556,4418.001280,157,0,32053.001280,1808.160922,hintandextended,lora,180 +on0,1,11,24,0,0,0,4862.211520,157,0,-1.000000,2226.489728,hintandextended,lora,180 +on10,0,0,25,1,0,1620,4504.000000,158,1,32745.602560,1887.919795,hintandextended,lora,180 +on5,0,0,25,1,0,1426,4501.001280,158,1,26584.001280,1854.640717,hintandextended,lora,180 +on3,0,0,25,1,0,1068,4500.997440,158,1,21468.001280,1826.207181,hintandextended,lora,180 +on12,0,0,24,1,0,2259,4399.001280,158,0,43494.001280,1785.200717,hintandextended,lora,180 +on11,0,0,25,1,0,303,4501.300000,158,2,10325.001280,1856.519795,hintandextended,lora,180 +on4,0,0,26,1,0,1212,4681.501280,158,3,22873.001280,1929.784512,hintandextended,lora,180 +on8,0,0,25,1,0,164,4501.000000,158,1,7037.001280,1826.000410,hintandextended,lora,180 +on2,0,0,26,1,0,2075,4823.603840,158,2,39895.603840,1983.682150,hintandextended,lora,180 +on6,0,0,24,1,0,2520,4321.000000,158,0,50866.001280,1757.200000,hintandextended,lora,180 +on0,1,12,24,0,0,0,4613.207680,158,0,-1.000000,2152.487373,hintandextended,lora,180 +on9,0,0,24,1,0,0,4322.998720,158,0,2600.001280,1786.223693,hintandextended,lora,180 +on7,0,0,24,1,0,566,4326.002560,158,0,13497.001280,1756.001434,hintandextended,lora,180 +on1,0,0,25,1,0,1697,4502.600000,158,1,39734.001280,1899.663386,hintandextended,lora,180 +on2,0,0,24,1,0,180,4323.998720,159,0,5727.001280,1783.967693,hintandextended,lora,180 +on10,0,0,27,1,0,840,5001.207680,159,3,12071.003840,2045.219686,hintandextended,lora,180 +on0,1,11,24,0,0,0,5045.616640,159,0,-1.000000,2299.853005,hintandextended,lora,180 +on6,0,0,25,1,0,483,4642.303840,159,1,9266.003840,1942.361536,hintandextended,lora,180 +on8,0,0,25,1,0,1734,4504.000000,159,1,36132.001280,1880.320410,hintandextended,lora,180 +on7,0,0,26,0,0,4530,4680.402560,159,2,-1.000000,1872.737229,hintandextended,lora,180 +on12,0,0,24,1,0,52,4353.001280,159,0,3481.001280,1769.200922,hintandextended,lora,180 +on9,0,0,24,1,0,1260,4321.001280,159,0,25844.001280,1762.960717,hintandextended,lora,180 +on1,0,0,24,1,0,395,4335.002560,159,0,9106.001280,1759.601434,hintandextended,lora,180 +on5,0,0,26,1,0,847,4840.802560,159,3,16440.001280,2015.536614,hintandextended,lora,180 +on11,0,0,26,1,0,646,4684.202560,159,2,11911.001280,1977.520819,hintandextended,lora,180 +on3,0,0,25,1,0,1440,4505.601280,159,1,31008.602560,1854.993741,hintandextended,lora,180 +on4,0,0,24,1,0,687,4472.000000,159,1,16600.003840,1840.641024,hintandextended,lora,180 +on9,0,0,25,1,0,1193,4502.000000,160,1,25129.001280,1858.080000,hintandextended,lora,180 +on2,0,0,24,1,0,655,4418.001280,160,0,11495.001280,1827.168512,hintandextended,lora,180 +on11,0,0,25,1,0,1045,4811.003840,160,2,18223.003840,1975.922150,hintandextended,lora,180 +on6,0,0,24,1,0,10,4321.000000,160,0,467.001280,1782.384205,hintandextended,lora,180 +on10,0,0,26,1,0,633,4822.006400,160,2,10963.003840,2003.362765,hintandextended,lora,180 +on12,0,0,25,1,0,938,4641.602560,160,2,20570.001280,1920.961024,hintandextended,lora,180 +on8,0,0,24,1,0,1029,4429.003840,160,0,20730.003840,1797.201741,hintandextended,lora,180 +on5,0,0,24,1,0,250,4370.001280,160,0,4572.001280,1773.600717,hintandextended,lora,180 +on4,0,0,26,1,0,184,4821.303840,160,3,4732.003840,1986.345741,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.015360,160,0,-1.000000,2259.210240,hintandextended,lora,180 +on3,0,0,24,1,0,831,4411.001280,160,0,18063.001280,1790.000717,hintandextended,lora,180 +on1,0,0,27,1,0,1420,4991.900000,160,4,27387.001280,2093.719795,hintandextended,lora,180 +on7,0,0,25,1,0,406,4502.196160,160,1,10803.001280,1829.726669,hintandextended,lora,180 +on11,0,0,25,1,0,757,4504.297440,161,1,17537.001280,1871.159181,hintandextended,lora,180 +on2,0,0,24,1,0,1080,4321.001280,161,0,22195.001280,1782.384717,hintandextended,lora,180 +on8,0,0,25,1,0,426,4546.603840,161,1,7670.603840,1844.241741,hintandextended,lora,180 +on7,0,0,26,1,0,993,4822.205120,161,2,17697.003840,1986.322253,hintandextended,lora,180 +on6,0,0,24,1,0,3036,4456.001280,161,0,59791.001280,1808.000717,hintandextended,lora,180 +on5,0,0,25,1,0,190,4504.296160,161,1,7509.001280,1887.158259,hintandextended,lora,180 +on0,1,12,24,0,0,0,4880.612800,161,0,-1.000000,2259.450240,hintandextended,lora,180 +on9,0,0,24,1,0,1011,4411.001280,161,0,18527.001280,1790.000717,hintandextended,lora,180 +on1,0,0,25,1,0,602,4563.300000,161,2,12486.001280,1891.880000,hintandextended,lora,180 +on12,0,0,24,1,0,3,4321.997440,161,0,2135.001280,1770.239386,hintandextended,lora,180 +on4,0,0,24,1,0,103,4373.301280,161,2,4355.001280,1815.368512,hintandextended,lora,180 +on3,0,0,24,1,0,1393,4456.401280,161,1,26264.401280,1808.160717,hintandextended,lora,180 +on10,0,0,26,1,0,651,4825.001280,161,2,12646.003840,2027.825126,hintandextended,lora,180 +on1,0,0,24,1,0,615,4353.300000,162,2,14918.001280,1800.903386,hintandextended,lora,180 +on12,0,0,25,1,0,496,4531.300000,162,2,11296.001280,1872.839795,hintandextended,lora,180 +on5,0,0,24,1,0,83,4383.996160,162,0,618.001280,1779.198874,hintandextended,lora,180 +on8,0,0,24,1,0,2160,4322.000000,162,0,44045.001280,1777.120000,hintandextended,lora,180 +on7,0,0,25,1,0,0,4503.000000,162,1,790.602560,1861.279795,hintandextended,lora,180 +on3,0,0,27,1,0,919,5005.903840,162,3,15079.603840,2102.745331,hintandextended,lora,180 +on4,0,0,24,1,0,1440,4322.000000,162,0,31569.001280,1783.040410,hintandextended,lora,180 +on2,0,0,26,1,0,1152,4824.803840,162,3,21584.603840,2022.241741,hintandextended,lora,180 +on6,0,0,26,1,0,874,4681.900000,162,2,21423.001280,1952.343386,hintandextended,lora,180 +on9,0,0,24,1,0,179,4385.998720,162,1,4364.001280,1814.351693,hintandextended,lora,180 +on11,0,0,24,1,0,436,4379.001280,162,0,8815.001280,1834.481126,hintandextended,lora,180 +on0,1,12,24,0,0,0,4980.416640,162,0,-1.000000,2299.372186,hintandextended,lora,180 +on10,0,0,25,1,0,205,4507.600000,162,1,4525.603840,1857.024410,hintandextended,lora,180 +on1,0,0,26,1,0,957,4683.102560,163,2,23639.001280,2000.969229,hintandextended,lora,180 +on8,0,0,28,1,0,1311,5322.503840,163,5,23799.003840,2252.201126,hintandextended,lora,180 +on2,0,0,24,1,0,205,4327.001280,163,0,7378.001280,1789.456717,hintandextended,lora,180 +on4,0,0,27,1,0,1115,5035.903840,163,4,19389.003840,2070.345536,hintandextended,lora,180 +on3,0,0,26,1,0,390,4822.000000,163,2,6493.003840,1999.024410,hintandextended,lora,180 +on0,1,12,24,0,0,0,5080.020480,163,0,-1.000000,2339.212083,hintandextended,lora,180 +on11,0,0,29,1,0,1177,5223.200000,163,5,19229.001280,2166.702771,hintandextended,lora,180 +on5,0,0,24,1,0,484,4382.200000,163,1,14278.001280,1791.232000,hintandextended,lora,180 +on9,0,0,27,1,0,896,5001.006400,163,3,14438.003840,2042.162765,hintandextended,lora,180 +on12,0,0,26,1,0,782,4681.000000,163,2,15596.001280,1901.040000,hintandextended,lora,180 +on10,0,0,25,1,0,109,4501.600000,163,1,6333.001280,1863.695795,hintandextended,lora,180 +on6,0,0,26,1,0,987,4822.603840,163,2,15756.003840,2014.289331,hintandextended,lora,180 +on7,0,0,24,1,0,0,4321.000000,163,0,242.001280,1756.688000,hintandextended,lora,180 +on1,0,0,24,1,0,219,4341.000000,164,0,4521.001280,1790.640410,hintandextended,lora,180 +on0,1,12,24,0,0,0,4919.614080,164,0,-1.000000,2275.053210,hintandextended,lora,180 +on11,0,0,25,1,0,1031,4503.998720,164,1,19653.001280,1884.159488,hintandextended,lora,180 +on9,0,0,26,1,0,1001,4831.906400,164,3,18128.003840,2032.122765,hintandextended,lora,180 +on2,0,0,25,1,0,692,4634.603840,164,1,11606.603840,1903.601536,hintandextended,lora,180 +on8,0,0,27,1,0,740,4864.297440,164,3,11445.001280,2034.486771,hintandextended,lora,180 +on6,0,0,25,1,0,1080,4503.001280,164,1,25008.001280,1873.041126,hintandextended,lora,180 +on3,0,0,25,1,0,3101,4501.300000,164,1,63597.001280,1851.560000,hintandextended,lora,180 +on10,0,0,24,1,0,507,4449.000000,164,0,8293.001280,1808.720614,hintandextended,lora,180 +on5,0,0,26,1,0,454,4823.998720,164,2,4681.003840,2012.688307,hintandextended,lora,180 +on7,0,0,24,1,0,0,4322.001280,164,0,2746.001280,1783.584922,hintandextended,lora,180 +on4,0,0,24,1,0,1651,4336.001280,164,0,34746.001280,1847.361126,hintandextended,lora,180 +on12,0,0,24,1,0,657,4324.001280,164,1,17968.001280,1786.944717,hintandextended,lora,180 +on3,0,0,25,1,0,1681,4751.801280,165,2,34948.001280,1975.120512,hintandextended,lora,180 +on9,0,0,24,1,0,2121,4441.001280,165,0,43016.001280,1802.000717,hintandextended,lora,180 +on0,1,11,24,0,0,0,4904.416640,165,0,-1.000000,2243.373414,hintandextended,lora,180 +on1,0,0,26,1,0,1259,4683.500000,165,2,25704.001280,1988.120000,hintandextended,lora,180 +on12,0,0,26,1,0,1641,4823.905120,165,2,31537.603840,2004.811072,hintandextended,lora,180 +on10,0,0,24,1,0,83,4385.994880,165,0,1407.001280,1797.822566,hintandextended,lora,180 +on7,0,0,26,1,0,2230,4822.902560,165,2,43176.603840,1982.809843,hintandextended,lora,180 +on2,0,0,25,1,0,2340,4502.000000,165,2,48149.602560,1856.752205,hintandextended,lora,180 +on8,0,0,25,1,0,720,4503.997440,165,1,16348.602560,1858.479386,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,hintandextended,lora,180 +on6,0,0,25,1,0,1060,4505.197440,165,1,20029.001280,1887.743386,hintandextended,lora,180 +on11,0,0,24,1,0,1475,4339.998720,165,0,31377.001280,1806.784102,hintandextended,lora,180 +on5,0,0,26,1,0,1115,4821.201280,165,2,20189.003840,1982.976512,hintandextended,lora,180 +on2,0,0,25,1,0,2160,4506.000000,166,1,44004.001280,1926.240205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4711.005120,166,0,-1.000000,2191.608397,hintandextended,lora,180 +on11,0,0,24,1,0,180,4321.002560,166,0,5774.001280,1776.625434,hintandextended,lora,180 +on1,0,0,25,1,0,1004,4505.300000,166,1,22108.001280,1933.160614,hintandextended,lora,180 +on3,0,0,25,1,0,4073,4501.200000,166,1,81938.001280,1829.280000,hintandextended,lora,180 +on9,0,0,24,1,0,489,4430.001280,166,0,7727.001280,1826.240717,hintandextended,lora,180 +on6,0,0,25,1,0,2880,4504.000000,166,1,60786.001280,1889.440205,hintandextended,lora,180 +on12,0,0,24,1,0,0,4321.000000,166,0,1068.001280,1754.000410,hintandextended,lora,180 +on7,0,0,24,1,0,763,4347.997440,166,0,16442.001280,1818.399590,hintandextended,lora,180 +on10,0,0,24,1,0,1838,4341.996160,166,0,39182.001280,1769.919283,hintandextended,lora,180 +on8,0,0,24,1,0,2595,4377.998720,166,0,53175.001280,1808.159898,hintandextended,lora,180 +on4,0,0,24,1,0,912,4321.002560,166,0,21517.001280,1782.481434,hintandextended,lora,180 +on5,0,0,24,1,0,279,4400.002560,166,0,5595.001280,1814.241434,hintandextended,lora,180 +on3,0,0,27,1,0,1608,5173.203840,167,5,26619.603840,2129.600922,hintandextended,lora,180 +on7,0,0,26,1,0,794,4821.903840,167,2,13022.603840,1968.281741,hintandextended,lora,180 +on1,0,0,24,1,0,394,4335.001280,167,0,10019.001280,1788.080717,hintandextended,lora,180 +on11,0,0,24,1,0,239,4360.001280,167,0,6841.001280,1797.024717,hintandextended,lora,180 +on4,0,0,25,1,0,1160,4794.303840,167,2,24334.003840,2005.081331,hintandextended,lora,180 +on8,0,0,26,1,0,1313,4683.502560,167,2,26458.001280,1972.873024,hintandextended,lora,180 +on10,0,0,26,1,0,1076,4682.600000,167,2,24174.001280,1951.919795,hintandextended,lora,180 +on5,0,0,25,1,0,1003,4770.008960,167,2,16710.003840,1943.555994,hintandextended,lora,180 +on9,0,0,25,1,0,664,4502.000000,167,1,16550.001280,1858.080000,hintandextended,lora,180 +on12,0,0,26,1,0,1058,4681.600000,167,2,20409.001280,1909.775795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5023.219200,167,0,-1.000000,2316.491776,hintandextended,lora,180 +on6,0,0,24,1,0,495,4487.002560,167,1,12861.001280,1878.128819,hintandextended,lora,180 +on2,0,0,26,1,0,633,4823.203840,167,2,10179.003840,2004.161741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5012.216640,168,0,-1.000000,2312.090547,hintandextended,lora,180 +on5,0,0,25,1,0,645,4587.603840,168,1,11932.603840,1876.641536,hintandextended,lora,180 +on1,0,0,24,1,0,0,4321.001280,168,0,1418.001280,1764.144717,hintandextended,lora,180 +on9,0,0,24,1,0,1195,4415.001280,168,0,25223.001280,1791.600717,hintandextended,lora,180 +on6,0,0,25,1,0,411,4503.303840,168,1,11771.001280,1883.049331,hintandextended,lora,180 +on2,0,0,25,1,0,437,4621.900000,168,4,15176.001280,1963.223386,hintandextended,lora,180 +on8,0,0,24,1,0,388,4328.003840,168,0,9370.003840,1756.801741,hintandextended,lora,180 +on7,0,0,25,1,0,294,4500.997440,168,1,7279.001280,1825.999181,hintandextended,lora,180 +on4,0,0,24,1,0,477,4417.001280,168,0,9210.001280,1792.400717,hintandextended,lora,180 +on12,0,0,25,1,0,728,4503.000000,168,1,15337.603840,1886.864000,hintandextended,lora,180 +on11,0,0,26,1,0,1513,4682.000000,168,2,28923.001280,1917.760000,hintandextended,lora,180 +on10,0,0,26,1,0,1370,4821.203840,168,2,25383.003840,1973.601946,hintandextended,lora,180 +on3,0,0,24,1,0,1079,4433.300000,168,1,21650.001280,1802.280000,hintandextended,lora,180 +on4,0,0,25,1,0,1063,4504.300000,169,1,22231.001280,1898.200205,hintandextended,lora,180 +on1,0,0,24,1,0,2340,4321.000000,169,0,47122.001280,1757.200000,hintandextended,lora,180 +on8,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,hintandextended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,hintandextended,lora,180 +on7,0,0,24,1,0,1476,4339.001280,169,0,31900.001280,1813.201126,hintandextended,lora,180 +on5,0,0,24,1,0,565,4325.001280,169,0,14287.001280,1755.600717,hintandextended,lora,180 +on6,0,0,25,1,0,647,4589.605120,169,1,14447.603840,1893.074458,hintandextended,lora,180 +on11,0,0,24,1,0,739,4320.998720,169,0,17263.001280,1753.999898,hintandextended,lora,180 +on0,1,10,24,0,0,0,4831.211520,169,0,-1.000000,2188.489728,hintandextended,lora,180 +on12,0,0,24,1,0,0,4320.002560,169,0,2830.001280,1753.601434,hintandextended,lora,180 +on10,0,0,25,1,0,2520,4503.000000,169,1,51990.001280,1865.520410,hintandextended,lora,180 +on9,0,0,26,1,0,1058,4825.602560,169,2,17424.603840,1984.226253,hintandextended,lora,180 +on3,0,0,24,1,0,1800,4320.001280,169,0,37029.001280,1753.600717,hintandextended,lora,180 +on2,0,0,24,1,0,490,4501.006400,170,1,11337.003840,1858.419379,hintandextended,lora,180 +on10,0,0,26,1,0,501,4682.601280,170,2,11177.001280,1935.088102,hintandextended,lora,180 +on3,0,0,24,1,0,407,4374.001280,170,1,9900.001280,1775.200717,hintandextended,lora,180 +on6,0,0,29,1,0,1420,5223.702560,170,5,27750.001280,2197.752410,hintandextended,lora,180 +on9,0,0,24,1,0,180,4322.000000,170,0,5997.001280,1765.568000,hintandextended,lora,180 +on5,0,0,24,1,0,689,4435.000000,170,1,16244.001280,1820.928000,hintandextended,lora,180 +on4,0,0,25,1,0,612,4641.003840,170,1,10060.003840,1910.689741,hintandextended,lora,180 +on1,0,0,28,1,0,1383,5182.705120,170,4,25509.603840,2132.458048,hintandextended,lora,180 +on11,0,0,25,1,0,813,4641.803840,170,1,16404.003840,1910.705741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5157.620480,170,0,-1.000000,2370.251674,hintandextended,lora,180 +on7,0,0,25,1,0,835,4503.000000,170,1,20659.001280,1871.728000,hintandextended,lora,180 +on12,0,0,27,1,0,1129,5002.108960,170,3,20819.003840,2103.643789,hintandextended,lora,180 +on8,0,0,28,1,0,1261,5042.901280,170,4,25348.001280,2107.031693,hintandextended,lora,180 +on6,0,0,26,1,0,386,4683.700000,171,2,10468.001280,1941.543386,hintandextended,lora,180 +on4,0,0,28,1,0,918,5041.900000,171,4,20032.001280,2096.519386,hintandextended,lora,180 +on7,0,0,29,1,0,1369,5221.900000,171,6,23511.001280,2152.439386,hintandextended,lora,180 +on8,0,0,24,1,0,0,4320.000000,171,0,1038.001280,1753.600205,hintandextended,lora,180 +on2,0,0,28,1,0,1403,5336.106400,171,6,20193.603840,2228.522355,hintandextended,lora,180 +on10,0,0,26,1,0,577,4681.600000,171,2,13364.001280,1947.712000,hintandextended,lora,180 +on1,0,0,26,1,0,810,4821.803840,171,2,13524.003840,2014.481536,hintandextended,lora,180 +on11,0,0,24,1,0,220,4365.001280,171,1,5532.001280,1771.600717,hintandextended,lora,180 +on9,0,0,25,1,0,607,4640.003840,171,1,10628.003840,1882.225741,hintandextended,lora,180 +on5,0,0,25,1,0,1260,4500.001280,171,1,25503.001280,1825.600717,hintandextended,lora,180 +on3,0,0,25,1,0,386,4642.202560,171,1,5692.003840,1911.169434,hintandextended,lora,180 +on12,0,0,27,1,0,635,5028.100000,171,4,16287.001280,2156.071795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4940.617920,171,0,-1.000000,2283.451674,hintandextended,lora,180 +on4,0,0,25,1,0,3354,4501.000000,172,1,67233.001280,1829.200000,hintandextended,lora,180 +on2,0,0,24,1,0,1425,4353.201280,172,1,29951.001280,1795.520717,hintandextended,lora,180 +on9,0,0,24,1,0,745,4328.000000,172,0,17695.001280,1783.584614,hintandextended,lora,180 +on0,1,12,24,0,0,0,4700.208960,172,0,-1.000000,2187.289318,hintandextended,lora,180 +on1,0,0,27,1,0,1102,4861.101280,172,4,22262.001280,2005.080307,hintandextended,lora,180 +on11,0,0,24,1,0,1326,4366.002560,172,0,28270.001280,1772.001434,hintandextended,lora,180 +on10,0,0,25,1,0,236,4503.994880,172,1,6870.001280,1864.542157,hintandextended,lora,180 +on6,0,0,26,1,0,642,4823.900000,172,2,13446.603840,1985.400410,hintandextended,lora,180 +on8,0,0,24,1,0,0,4323.001280,172,0,705.001280,1810.928717,hintandextended,lora,180 +on7,0,0,25,1,0,422,4545.603840,172,1,8349.603840,1875.201946,hintandextended,lora,180 +on5,0,0,25,1,0,859,4503.296160,172,1,19700.001280,1862.118464,hintandextended,lora,180 +on3,0,0,25,1,0,258,4502.300000,172,2,8188.001280,1854.231590,hintandextended,lora,180 +on12,0,0,25,1,0,473,4505.198720,172,1,13285.001280,1902.367488,hintandextended,lora,180 +on2,0,0,27,1,0,906,5003.503840,173,3,14303.003840,2073.769536,hintandextended,lora,180 +on10,0,0,24,1,0,992,4394.001280,173,1,19662.001280,1783.200717,hintandextended,lora,180 +on7,0,0,24,1,0,323,4446.002560,173,0,4578.001280,1832.865434,hintandextended,lora,180 +on8,0,0,26,1,0,160,4821.903840,173,3,4738.603840,2011.337741,hintandextended,lora,180 +on0,1,12,24,0,0,0,5069.217920,173,0,-1.000000,2334.893312,hintandextended,lora,180 +on5,0,0,25,1,0,718,4502.000000,173,1,14143.001280,1853.024000,hintandextended,lora,180 +on1,0,0,24,1,0,259,4372.300000,173,1,10417.001280,1828.472000,hintandextended,lora,180 +on3,0,0,26,1,0,994,4824.805120,173,2,18154.603840,1994.562662,hintandextended,lora,180 +on9,0,0,25,1,0,2880,4501.001280,173,1,58492.001280,1854.640717,hintandextended,lora,180 +on6,0,0,24,1,0,19,4321.997440,173,0,2080.001280,1783.039590,hintandextended,lora,180 +on11,0,0,25,1,0,1620,4502.001280,173,1,33685.001280,1883.680717,hintandextended,lora,180 +on4,0,0,26,1,0,486,4823.305120,173,2,10577.003840,2009.322867,hintandextended,lora,180 +on12,0,0,26,1,0,821,4683.600000,173,2,17993.001280,1975.007590,hintandextended,lora,180 +on11,0,0,25,1,0,406,4505.998720,174,1,9518.001280,1913.983898,hintandextended,lora,180 +on0,1,11,24,0,0,0,4777.212800,174,0,-1.000000,2192.491469,hintandextended,lora,180 +on5,0,0,25,1,0,993,4641.203840,174,1,17675.003840,1902.241741,hintandextended,lora,180 +on3,0,0,24,1,0,845,4426.000000,174,0,17515.001280,1796.000410,hintandextended,lora,180 +on1,0,0,23,1,0,180,4303.001280,174,0,5930.001280,1747.984717,hintandextended,lora,180 +on4,0,0,25,1,0,705,4502.998720,174,1,12827.001280,1846.127488,hintandextended,lora,180 +on7,0,0,25,1,0,620,4563.602560,174,1,12988.603840,1906.625434,hintandextended,lora,180 +on2,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,hintandextended,lora,180 +on8,0,0,27,1,0,1156,5003.902560,174,3,18793.603840,2030.361638,hintandextended,lora,180 +on6,0,0,24,1,0,3828,4348.001280,174,0,76735.001280,1764.800717,hintandextended,lora,180 +on9,0,0,23,1,0,1980,4215.000000,174,0,42737.001280,1747.440000,hintandextended,lora,180 +on10,0,0,27,1,0,1001,4864.102560,174,4,18632.001280,2047.832205,hintandextended,lora,180 +on12,0,0,24,1,0,1236,4323.996160,174,1,27459.001280,1783.839283,hintandextended,lora,180 +on10,0,0,26,1,0,514,4823.998720,175,2,7445.003840,1992.288307,hintandextended,lora,180 +on12,0,0,24,1,0,149,4450.001280,175,0,2136.001280,1834.080717,hintandextended,lora,180 +on4,0,0,26,1,0,976,4681.900000,175,3,22717.001280,1946.679181,hintandextended,lora,180 +on9,0,0,26,1,0,726,4820.608960,175,2,14057.003840,1959.203994,hintandextended,lora,180 +on7,0,0,24,1,0,1980,4321.000000,175,0,42674.001280,1757.200000,hintandextended,lora,180 +on1,0,0,26,1,0,976,4790.100000,175,3,18719.001280,2025.159386,hintandextended,lora,180 +on0,1,12,24,0,0,0,4927.016640,175,0,-1.000000,2278.012390,hintandextended,lora,180 +on5,0,0,26,1,0,501,4685.198720,175,2,8043.001280,1964.975693,hintandextended,lora,180 +on11,0,0,25,1,0,973,4554.003840,175,1,18879.003840,1850.401536,hintandextended,lora,180 +on3,0,0,25,1,0,671,4503.000000,175,1,13897.001280,1856.464205,hintandextended,lora,180 +on6,0,0,25,1,0,833,4501.000000,175,1,17883.001280,1829.040000,hintandextended,lora,180 +on2,0,0,29,1,0,1382,5362.008960,175,5,22877.003840,2211.428198,hintandextended,lora,180 +on8,0,0,24,1,0,302,4426.997440,175,0,7285.001280,1831.439590,hintandextended,lora,180 +on3,0,0,26,1,0,1773,4683.601280,176,2,35742.001280,1960.096512,hintandextended,lora,180 +on0,1,11,24,0,0,0,4997.815360,176,0,-1.000000,2280.732493,hintandextended,lora,180 +on11,0,0,25,1,0,1260,4503.996160,176,1,28905.602560,1881.774669,hintandextended,lora,180 +on10,0,0,25,1,0,668,4503.996160,176,1,12102.001280,1869.023078,hintandextended,lora,180 +on7,0,0,26,1,0,1219,4823.308960,176,2,24475.603840,1993.164198,hintandextended,lora,180 +on8,0,0,24,1,0,906,4323.396160,176,1,20740.001280,1810.510464,hintandextended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,hintandextended,lora,180 +on5,0,0,25,1,0,1212,4501.000000,176,1,24314.001280,1828.943795,hintandextended,lora,180 +on12,0,0,27,1,0,1285,5005.603840,176,3,20901.603840,2100.641536,hintandextended,lora,180 +on4,0,0,24,1,0,360,4322.001280,176,0,10333.001280,1785.184922,hintandextended,lora,180 +on9,0,0,24,1,0,770,4351.001280,176,0,17934.001280,1778.544717,hintandextended,lora,180 +on6,0,0,24,1,0,1541,4403.001280,176,0,31412.001280,1816.880922,hintandextended,lora,180 +on2,0,0,26,1,0,830,4703.302560,176,3,18094.003840,1946.505229,hintandextended,lora,180 +on12,0,0,25,1,0,3240,4500.602560,177,1,67490.602560,1825.889434,hintandextended,lora,180 +on6,0,0,26,1,0,1467,4823.603840,177,2,26252.603840,2005.441946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4838.815360,177,0,-1.000000,2242.732698,hintandextended,lora,180 +on5,0,0,25,1,0,833,4501.202560,177,1,17628.001280,1829.121024,hintandextended,lora,180 +on9,0,0,25,1,0,1440,4504.000000,177,1,30892.001280,1881.280205,hintandextended,lora,180 +on11,0,0,25,1,0,920,4746.903840,177,2,18526.603840,1980.745536,hintandextended,lora,180 +on1,0,0,24,1,0,360,4323.003840,177,0,8113.001280,1814.385946,hintandextended,lora,180 +on4,0,0,27,1,0,1139,5003.702560,177,4,17788.003840,2062.329024,hintandextended,lora,180 +on3,0,0,23,1,0,547,4254.998720,177,0,14546.001280,1789.263898,hintandextended,lora,180 +on10,0,0,26,1,0,1005,4684.200000,177,2,18365.001280,1926.272205,hintandextended,lora,180 +on7,0,0,25,1,0,1436,4502.000000,177,1,26091.001280,1857.983795,hintandextended,lora,180 +on8,0,0,24,1,0,230,4352.001280,177,0,6652.001280,1780.641126,hintandextended,lora,180 +on2,0,0,24,1,0,97,4401.001280,177,0,283.001280,1818.000717,hintandextended,lora,180 +on4,0,0,25,1,0,861,4640.003840,178,1,15126.003840,1881.601741,hintandextended,lora,180 +on11,0,0,24,1,0,1747,4428.001280,178,0,36184.001280,1825.440717,hintandextended,lora,180 +on5,0,0,25,1,0,1373,4502.200000,178,1,28859.001280,1858.320000,hintandextended,lora,180 +on3,0,0,24,1,0,2558,4339.001280,178,0,52657.001280,1789.840717,hintandextended,lora,180 +on8,0,0,25,1,0,180,4502.601280,178,1,5388.602560,1855.169126,hintandextended,lora,180 +on10,0,0,25,1,0,686,4502.996160,178,1,13685.001280,1855.182874,hintandextended,lora,180 +on1,0,0,29,1,0,1566,5363.903840,178,7,24300.603840,2206.617741,hintandextended,lora,180 +on12,0,0,24,1,0,863,4445.001280,178,0,14966.001280,1815.824512,hintandextended,lora,180 +on0,1,12,24,0,0,0,4803.211520,178,0,-1.000000,2228.489728,hintandextended,lora,180 +on6,0,0,25,1,0,1234,4502.997440,178,1,24139.001280,1843.022976,hintandextended,lora,180 +on2,0,0,24,1,0,0,4321.001280,178,0,350.001280,1770.160717,hintandextended,lora,180 +on9,0,0,24,1,0,2115,4437.001280,178,0,39897.001280,1819.120717,hintandextended,lora,180 +on7,0,0,25,1,0,881,4503.198720,178,1,18438.001280,1852.848102,hintandextended,lora,180 +on12,0,0,26,1,0,827,4682.200000,179,2,16605.001280,1909.744000,hintandextended,lora,180 +on10,0,0,26,1,0,1067,4716.898720,179,3,20386.001280,1992.167693,hintandextended,lora,180 +on8,0,0,30,1,0,1502,5544.808960,179,6,24214.603840,2331.411789,hintandextended,lora,180 +on7,0,0,29,1,0,1621,5222.401280,179,5,25471.001280,2137.440102,hintandextended,lora,180 +on4,0,0,26,1,0,633,4683.300000,179,3,13957.001280,1957.959590,hintandextended,lora,180 +on3,0,0,26,1,0,847,4821.303840,179,2,14117.003840,1984.921536,hintandextended,lora,180 +on11,0,0,24,1,0,3060,4321.000000,179,0,64911.001280,1757.200000,hintandextended,lora,180 +on5,0,0,25,1,0,180,4504.003840,179,1,6202.602560,1886.865946,hintandextended,lora,180 +on6,0,0,25,1,0,528,4504.001280,179,1,10617.001280,1916.160717,hintandextended,lora,180 +on2,0,0,26,1,0,1087,4821.503840,179,2,16765.003840,1975.001536,hintandextended,lora,180 +on1,0,0,27,1,0,1244,5002.105120,179,3,20546.003840,2076.858048,hintandextended,lora,180 +on0,1,12,24,0,0,0,5075.219200,179,0,-1.000000,2337.294234,hintandextended,lora,180 +on9,0,0,26,1,0,1088,4682.598720,179,2,24053.001280,1909.551488,hintandextended,lora,180 +on11,0,0,25,1,0,1440,4502.602560,180,2,32066.602560,1883.969434,hintandextended,lora,180 +on0,1,11,24,0,0,0,4861.211520,180,0,-1.000000,2226.090342,hintandextended,lora,180 +on12,0,0,26,1,0,960,4824.898720,180,2,19040.603840,1990.008102,hintandextended,lora,180 +on3,0,0,24,1,0,180,4321.000000,180,0,6693.001280,1756.944000,hintandextended,lora,180 +on5,0,0,24,0,0,4320,4320.000000,180,0,-1.000000,1728.000000,hintandextended,lora,180 +on4,0,0,24,1,0,720,4322.001280,180,0,15362.001280,1767.424512,hintandextended,lora,180 +on7,0,0,24,1,0,636,4398.000000,180,0,13682.001280,1813.440410,hintandextended,lora,180 +on6,0,0,24,1,0,920,4322.000000,180,0,18880.001280,1768.704410,hintandextended,lora,180 +on8,0,0,24,1,0,2160,4321.001280,180,0,46001.001280,1757.200717,hintandextended,lora,180 +on1,0,0,25,1,0,323,4501.000000,180,1,8132.001280,1826.000410,hintandextended,lora,180 +on10,0,0,24,1,0,3975,4470.000000,180,1,79968.001280,1816.160205,hintandextended,lora,180 +on9,0,0,25,1,0,1194,4502.996160,180,1,25333.001280,1829.998874,hintandextended,lora,180 +on2,0,0,24,1,0,0,4322.002560,180,0,1983.001280,1810.881638,hintandextended,lora,180 +on11,0,0,25,1,0,1173,4640.003840,181,1,20729.003840,1909.761946,hintandextended,lora,180 +on9,0,0,25,1,0,746,4657.300000,181,2,16446.001280,1923.143795,hintandextended,lora,180 +on1,0,0,25,1,0,554,4502.000000,181,1,13525.603840,1857.728000,hintandextended,lora,180 +on10,0,0,25,1,0,257,4502.300000,181,2,7183.001280,1860.663386,hintandextended,lora,180 +on3,0,0,26,1,0,493,4824.600000,181,2,7344.603840,1987.807795,hintandextended,lora,180 +on8,0,0,24,1,0,979,4379.001280,181,0,20569.001280,1777.200717,hintandextended,lora,180 +on6,0,0,24,1,0,14,4321.002560,181,0,1308.001280,1782.481229,hintandextended,lora,180 +on5,0,0,27,1,0,1319,4862.500000,181,3,28370.001280,2036.263386,hintandextended,lora,180 +on2,0,0,27,1,0,738,4862.800000,181,3,13364.001280,2004.591386,hintandextended,lora,180 +on7,0,0,24,1,0,405,4345.001280,181,0,9635.001280,1763.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4883.215360,181,0,-1.000000,2260.490650,hintandextended,lora,180 +on12,0,0,26,1,0,1098,4682.300000,181,2,24621.001280,1955.287590,hintandextended,lora,180 +on4,0,0,25,1,0,818,4579.003840,181,1,16606.003840,1863.761741,hintandextended,lora,180 +on9,0,0,24,1,0,0,4321.001280,182,0,1584.001280,1781.648717,hintandextended,lora,180 +on2,0,0,27,1,0,891,5001.803840,182,3,12225.003840,2061.841536,hintandextended,lora,180 +on3,0,0,24,1,0,814,4394.001280,182,0,16633.001280,1783.200717,hintandextended,lora,180 +on6,0,0,24,1,0,292,4413.001280,182,0,7012.001280,1794.224717,hintandextended,lora,180 +on7,0,0,26,1,0,628,4820.303840,182,2,10183.003840,1982.361741,hintandextended,lora,180 +on11,0,0,25,1,0,474,4501.000000,182,1,10023.001280,1829.248000,hintandextended,lora,180 +on0,1,12,24,0,0,0,5041.020480,182,0,-1.000000,2323.611674,hintandextended,lora,180 +on8,0,0,26,1,0,942,4683.200000,182,2,21537.001280,1973.647181,hintandextended,lora,180 +on12,0,0,26,1,0,1099,4821.303840,182,2,21697.003840,2001.641741,hintandextended,lora,180 +on1,0,0,29,1,0,1243,5224.002560,182,5,25069.001280,2238.928614,hintandextended,lora,180 +on4,0,0,25,1,0,653,4669.300000,182,2,12065.001280,1926.647795,hintandextended,lora,180 +on5,0,0,26,1,0,416,4820.303840,182,2,7172.003840,1963.161946,hintandextended,lora,180 +on10,0,0,25,1,0,901,4640.303840,182,1,16793.003840,1905.337741,hintandextended,lora,180 +on10,0,0,24,1,0,419,4360.001280,183,0,9401.001280,1770.144717,hintandextended,lora,180 +on1,0,0,26,1,0,1028,4821.506400,183,2,17073.003840,2001.002970,hintandextended,lora,180 +on12,0,0,25,1,0,1196,4640.203840,183,1,20121.003840,1881.681741,hintandextended,lora,180 +on8,0,0,24,1,0,863,4443.001280,183,0,16913.001280,1802.800717,hintandextended,lora,180 +on4,0,0,26,1,0,791,4821.003840,183,2,14500.003840,1960.689741,hintandextended,lora,180 +on3,0,0,26,1,0,1240,4822.303840,183,2,24621.003840,2011.641536,hintandextended,lora,180 +on7,0,0,27,1,0,1280,4862.702560,183,3,24461.001280,1991.208614,hintandextended,lora,180 +on9,0,0,24,1,0,976,4423.001280,183,1,19961.001280,1799.920717,hintandextended,lora,180 +on11,0,0,28,1,0,1419,5044.402560,183,4,27774.001280,2136.400000,hintandextended,lora,180 +on6,0,0,25,1,0,610,4550.500000,183,2,14340.001280,1860.087795,hintandextended,lora,180 +on0,1,12,24,0,0,0,5029.620480,183,0,-1.000000,2319.052083,hintandextended,lora,180 +on5,0,0,28,1,0,1645,5238.408960,183,5,27935.603840,2202.707584,hintandextended,lora,180 +on2,0,0,24,1,0,180,4321.996160,183,0,5512.001280,1757.342669,hintandextended,lora,180 +on12,0,0,25,1,0,1799,4501.000000,184,1,36106.001280,1829.200000,hintandextended,lora,180 +on9,0,0,24,1,0,540,4321.998720,184,0,14559.001280,1782.687488,hintandextended,lora,180 +on8,0,0,25,1,0,1240,4644.603840,184,1,22364.603840,1936.528922,hintandextended,lora,180 +on7,0,0,25,1,0,1377,4597.603840,184,1,25554.603840,1864.641741,hintandextended,lora,180 +on6,0,0,26,1,0,1713,4823.203840,184,2,31093.003840,2015.361536,hintandextended,lora,180 +on2,0,0,27,1,0,1374,4861.600000,184,3,25393.001280,1998.111590,hintandextended,lora,180 +on5,0,0,25,1,0,1427,4502.000000,184,1,30933.001280,1857.824000,hintandextended,lora,180 +on10,0,0,24,1,0,1027,4427.001280,184,0,21701.001280,1796.400717,hintandextended,lora,180 +on4,0,0,25,1,0,770,4502.297440,184,1,15381.001280,1844.887181,hintandextended,lora,180 +on0,1,12,24,0,0,0,4956.216640,184,0,-1.000000,2289.690752,hintandextended,lora,180 +on11,0,0,24,1,0,1800,4322.000000,184,0,38135.001280,1786.240000,hintandextended,lora,180 +on3,0,0,26,1,0,1187,4683.000000,184,2,22203.001280,1941.199590,hintandextended,lora,180 +on1,0,0,26,1,0,1266,4820.303840,184,3,21861.003840,1956.921536,hintandextended,lora,180 +on7,0,0,25,1,0,1553,4503.000000,185,1,33385.001280,1886.800000,hintandextended,lora,180 +on2,0,0,25,1,0,1225,4502.000000,185,1,25114.001280,1858.240000,hintandextended,lora,180 +on9,0,0,25,1,0,1260,4502.998720,185,2,27817.602560,1839.615693,hintandextended,lora,180 +on0,1,12,24,0,0,0,5055.819200,185,0,-1.000000,2329.532800,hintandextended,lora,180 +on4,0,0,24,1,0,117,4417.001280,185,0,1921.001280,1792.400717,hintandextended,lora,180 +on1,0,0,25,1,0,746,4503.300000,185,1,18033.001280,1893.064000,hintandextended,lora,180 +on10,0,0,25,1,0,115,4598.003840,185,1,2081.003840,1903.265946,hintandextended,lora,180 +on8,0,0,25,1,0,712,4502.000000,185,1,13962.001280,1857.920000,hintandextended,lora,180 +on5,0,0,25,1,0,176,4504.000000,185,1,5074.001280,1872.607590,hintandextended,lora,180 +on3,0,0,26,1,0,434,4825.000000,185,2,5235.603840,2012.096410,hintandextended,lora,180 +on11,0,0,25,1,0,900,4500.997440,185,1,21054.001280,1825.999386,hintandextended,lora,180 +on12,0,0,26,1,0,823,4823.203840,185,2,18194.603840,2037.761536,hintandextended,lora,180 +on6,0,0,26,1,0,633,4822.603840,185,2,14122.003840,2004.305536,hintandextended,lora,180 +on9,0,0,24,1,0,0,4321.000000,186,0,2099.001280,1756.944000,hintandextended,lora,180 +on10,0,0,24,1,0,2520,4320.001280,186,0,54144.001280,1753.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,5137.221760,186,0,-1.000000,2362.093414,hintandextended,lora,180 +on4,0,0,27,1,0,937,5004.602560,186,3,13823.003840,2091.793024,hintandextended,lora,180 +on1,0,0,26,1,0,543,4682.900000,186,2,13663.001280,1963.303590,hintandextended,lora,180 +on12,0,0,26,1,0,183,4823.903840,186,2,4496.603840,2006.361741,hintandextended,lora,180 +on7,0,0,27,1,0,939,4861.601280,186,3,17069.001280,1979.568102,hintandextended,lora,180 +on3,0,0,29,1,0,1184,5365.305120,186,5,19581.603840,2267.418253,hintandextended,lora,180 +on11,0,0,28,1,0,1085,5043.100000,186,4,19420.001280,2108.982976,hintandextended,lora,180 +on6,0,0,24,1,0,498,4439.001280,186,0,10457.001280,1829.840717,hintandextended,lora,180 +on8,0,0,25,1,0,114,4503.198720,186,1,4335.001280,1858.879488,hintandextended,lora,180 +on2,0,0,25,1,0,600,4640.303840,186,1,10617.003840,1892.729741,hintandextended,lora,180 +on5,0,0,28,1,0,1005,5183.103840,186,4,17229.003840,2150.360922,hintandextended,lora,180 +on9,0,0,25,1,0,8,4502.000000,187,1,2773.603840,1848.719795,hintandextended,lora,180 +on12,0,0,24,1,0,582,4343.000000,187,0,14200.001280,1762.800410,hintandextended,lora,180 +on0,1,12,24,0,0,0,5096.220480,187,0,-1.000000,2345.692902,hintandextended,lora,180 +on10,0,0,27,1,0,891,5001.902560,187,3,14360.003840,2061.241024,hintandextended,lora,180 +on3,0,0,26,1,0,417,4682.496160,187,2,9550.001280,1933.158054,hintandextended,lora,180 +on7,0,0,28,1,0,1138,5042.601280,187,4,19666.001280,2094.975898,hintandextended,lora,180 +on6,0,0,27,1,0,1016,5004.203840,187,3,15457.603840,2090.065741,hintandextended,lora,180 +on5,0,0,25,1,0,633,4641.203840,187,1,9710.003840,1882.082150,hintandextended,lora,180 +on11,0,0,28,1,0,1067,5044.802560,187,4,15296.001280,2127.568205,hintandextended,lora,180 +on2,0,0,24,1,0,335,4455.001280,187,0,6651.001280,1807.600717,hintandextended,lora,180 +on4,0,0,24,1,0,1620,4322.000000,187,0,35526.001280,1786.240000,hintandextended,lora,180 +on1,0,0,25,1,0,491,4640.203840,187,1,6811.003840,1881.889741,hintandextended,lora,180 +on8,0,0,24,1,0,54,4355.001280,187,0,2613.001280,1796.080717,hintandextended,lora,180 +on6,0,0,25,1,0,502,4650.996160,188,2,14855.001280,1957.199488,hintandextended,lora,180 +on7,0,0,25,1,0,1014,4503.002560,188,1,22750.001280,1856.673434,hintandextended,lora,180 +on0,1,12,24,0,0,0,4758.008960,188,0,-1.000000,2210.409318,hintandextended,lora,180 +on2,0,0,24,1,0,1706,4387.998720,188,0,32711.001280,1782.079898,hintandextended,lora,180 +on9,0,0,25,1,0,672,4501.000000,188,1,13782.001280,1830.880000,hintandextended,lora,180 +on10,0,0,24,1,0,360,4321.000000,188,0,9813.001280,1756.944000,hintandextended,lora,180 +on3,0,0,25,1,0,1149,4640.307680,188,2,22910.003840,1887.995686,hintandextended,lora,180 +on8,0,0,24,1,0,2745,4346.002560,188,0,56207.001280,1792.641434,hintandextended,lora,180 +on11,0,0,25,1,0,708,4640.305120,188,1,13942.003840,1908.602458,hintandextended,lora,180 +on12,0,0,27,1,0,960,4864.201280,188,4,18720.001280,2071.728307,hintandextended,lora,180 +on5,0,0,26,1,0,1174,4684.600000,188,2,28118.001280,1991.632205,hintandextended,lora,180 +on1,0,0,24,1,0,3420,4322.000000,188,0,71008.001280,1786.240000,hintandextended,lora,180 +on4,0,0,24,1,0,499,4441.001280,188,0,9635.001280,1842.768512,hintandextended,lora,180 +on1,0,0,25,1,0,344,4503.000000,189,1,8335.001280,1886.864000,hintandextended,lora,180 +on6,0,0,24,1,0,2340,4321.000000,189,0,49175.001280,1757.200000,hintandextended,lora,180 +on3,0,0,24,1,0,1546,4406.001280,189,0,30528.001280,1788.000717,hintandextended,lora,180 +on4,0,0,25,1,0,527,4503.000000,189,1,13318.001280,1861.743795,hintandextended,lora,180 +on2,0,0,27,1,0,1282,4899.102560,189,3,24216.603840,2016.921024,hintandextended,lora,180 +on5,0,0,25,1,0,712,4501.300000,189,1,16695.001280,1854.216000,hintandextended,lora,180 +on12,0,0,26,1,0,1008,4683.600000,189,2,18293.001280,1964.927795,hintandextended,lora,180 +on11,0,0,25,1,0,180,4505.002560,189,1,4325.602560,1916.001229,hintandextended,lora,180 +on0,1,12,24,0,0,0,4903.815360,189,0,-1.000000,2268.731059,hintandextended,lora,180 +on10,0,0,24,1,0,0,4321.000000,189,0,1848.001280,1754.000410,hintandextended,lora,180 +on9,0,0,27,1,0,1232,4861.802560,189,3,24055.001280,1984.576819,hintandextended,lora,180 +on7,0,0,26,1,0,829,4823.908960,189,2,13479.603840,2002.268198,hintandextended,lora,180 +on8,0,0,27,1,0,1153,5003.503840,189,4,18453.003840,2064.121126,hintandextended,lora,180 +on5,0,0,24,1,0,1082,4323.993600,190,1,23500.001280,1778.717850,hintandextended,lora,180 +on0,1,10,24,0,0,0,4607.608960,190,0,-1.000000,2099.049318,hintandextended,lora,180 +on9,0,0,24,1,0,180,4321.003840,190,0,4138.001280,1757.041741,hintandextended,lora,180 +on11,0,0,26,1,0,1359,4685.097440,190,5,30483.001280,1979.207181,hintandextended,lora,180 +on8,0,0,25,1,0,868,4501.000000,190,1,15747.001280,1829.200000,hintandextended,lora,180 +on1,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,hintandextended,lora,180 +on4,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,hintandextended,lora,180 +on10,0,0,25,1,0,1377,4500.997440,190,1,28506.001280,1825.999181,hintandextended,lora,180 +on7,0,0,24,1,0,395,4340.000000,190,0,8371.001280,1810.848410,hintandextended,lora,180 +on12,0,0,25,1,0,618,4510.197440,190,2,12353.001280,1861.470976,hintandextended,lora,180 +on2,0,0,26,1,0,501,4826.001280,190,2,8531.003840,2014.753126,hintandextended,lora,180 +on3,0,0,26,1,0,714,4825.905120,190,2,12514.603840,2067.290662,hintandextended,lora,180 +on6,0,0,24,1,0,1868,4368.001280,190,0,39449.001280,1772.800717,hintandextended,lora,180 +on5,0,0,26,1,0,1161,4824.903840,191,2,22272.603840,2008.202150,hintandextended,lora,180 +on2,0,0,24,1,0,180,4325.000000,191,0,4552.001280,1838.064819,hintandextended,lora,180 +on7,0,0,24,1,0,1447,4466.500000,191,1,34072.001280,1855.560410,hintandextended,lora,180 +on1,0,0,24,1,0,884,4640.003840,191,1,18311.003840,1892.482150,hintandextended,lora,180 +on3,0,0,25,1,0,441,4562.006400,191,1,8966.003840,1879.043174,hintandextended,lora,180 +on12,0,0,24,1,0,480,4422.001280,191,0,8806.001280,1823.041126,hintandextended,lora,180 +on6,0,0,26,1,0,499,4682.301280,191,3,11008.001280,1945.944512,hintandextended,lora,180 +on10,0,0,25,1,0,3466,4502.200000,191,1,71929.001280,1858.320000,hintandextended,lora,180 +on11,0,0,24,1,0,159,4463.001280,191,0,889.001280,1895.440717,hintandextended,lora,180 +on9,0,0,26,1,0,1006,4682.601280,191,2,21021.001280,1946.800512,hintandextended,lora,180 +on0,1,12,24,0,0,0,4741.611520,191,0,-1.000000,2203.851366,hintandextended,lora,180 +on4,0,0,24,1,0,877,4459.001280,191,0,18151.001280,1837.841126,hintandextended,lora,180 +on8,0,0,25,1,0,1013,4504.197440,191,1,22111.001280,1887.710976,hintandextended,lora,180 +on3,0,0,27,1,0,1588,4944.802560,192,4,28941.001280,2056.049024,hintandextended,lora,180 +on12,0,0,25,1,0,1409,4640.203840,192,1,25490.003840,1881.681741,hintandextended,lora,180 +on4,0,0,26,1,0,1776,4831.200000,192,3,34043.001280,2000.527386,hintandextended,lora,180 +on6,0,0,24,1,0,0,4390.997440,192,1,582.602560,1784.895181,hintandextended,lora,180 +on2,0,0,25,1,0,540,4502.602560,192,1,11572.602560,1854.913843,hintandextended,lora,180 +on5,0,0,29,1,0,1591,5363.306400,192,7,30906.603840,2274.441946,hintandextended,lora,180 +on0,1,12,24,0,0,0,4964.816640,192,0,-1.000000,2293.131776,hintandextended,lora,180 +on10,0,0,24,1,0,1192,4412.003840,192,0,25330.001280,1790.401741,hintandextended,lora,180 +on1,0,0,24,1,0,166,4373.197440,192,1,6448.001280,1799.582976,hintandextended,lora,180 +on8,0,0,24,1,0,1076,4477.001280,192,0,19822.001280,1844.784717,hintandextended,lora,180 +on11,0,0,26,1,0,1283,4821.303840,192,2,19982.003840,1985.913536,hintandextended,lora,180 +on9,0,0,26,1,0,1628,4787.802560,192,3,30745.001280,1968.704614,hintandextended,lora,180 +on7,0,0,25,1,0,889,4501.200000,192,1,16283.001280,1829.120000,hintandextended,lora,180 +on1,0,0,25,1,0,993,4641.203840,193,1,17450.003840,1907.841946,hintandextended,lora,180 +on9,0,0,28,1,0,1373,5042.002560,193,4,21893.001280,2052.256819,hintandextended,lora,180 +on12,0,0,24,1,0,180,4320.001280,193,0,4376.001280,1753.600717,hintandextended,lora,180 +on11,0,0,25,1,0,813,4640.003840,193,1,13920.003840,1881.601741,hintandextended,lora,180 +on3,0,0,27,1,0,1312,5003.106400,193,3,21502.603840,2058.522765,hintandextended,lora,180 +on7,0,0,24,1,0,1260,4412.000000,193,1,27758.001280,1790.400410,hintandextended,lora,180 +on5,0,0,25,1,0,2596,4501.600000,193,1,56059.001280,1874.879795,hintandextended,lora,180 +on0,1,12,24,0,0,0,4924.615360,193,0,-1.000000,2277.050650,hintandextended,lora,180 +on4,0,0,26,1,0,722,4683.501280,193,2,17290.001280,1985.560512,hintandextended,lora,180 +on10,0,0,26,1,0,1110,4721.802560,193,3,21341.001280,1925.024819,hintandextended,lora,180 +on2,0,0,24,1,0,360,4322.000000,193,0,9372.001280,1773.248000,hintandextended,lora,180 +on8,0,0,25,1,0,488,4502.000000,193,1,13760.001280,1829.440410,hintandextended,lora,180 +on6,0,0,24,1,0,2578,4359.001280,193,0,50630.001280,1797.840717,hintandextended,lora,180 +on7,0,0,25,1,0,1121,4762.207680,194,2,23689.603840,2001.363072,hintandextended,lora,180 +on9,0,0,24,1,0,720,4321.000000,194,0,15682.001280,1756.880000,hintandextended,lora,180 +on10,0,0,26,1,0,1024,4823.503840,194,2,21142.003840,2029.449536,hintandextended,lora,180 +on1,0,0,25,1,0,861,4503.298720,194,1,20982.001280,1882.919488,hintandextended,lora,180 +on0,1,12,24,0,0,0,4978.212800,194,0,-1.000000,2298.489830,hintandextended,lora,180 +on6,0,0,25,1,0,1733,4501.001280,194,1,33375.001280,1826.001126,hintandextended,lora,180 +on12,0,0,26,1,0,1232,4681.502560,194,2,23528.001280,1918.377024,hintandextended,lora,180 +on4,0,0,24,1,0,236,4357.001280,194,0,7278.001280,1782.000922,hintandextended,lora,180 +on5,0,0,24,1,0,360,4320.001280,194,0,7449.001280,1753.600717,hintandextended,lora,180 +on8,0,0,25,1,0,2880,4500.602560,194,1,60184.602560,1825.889434,hintandextended,lora,180 +on11,0,0,25,1,0,1358,4503.598720,194,1,32378.001280,1900.799488,hintandextended,lora,180 +on3,0,0,24,1,0,1361,4402.001280,194,0,26282.001280,1815.040717,hintandextended,lora,180 +on2,0,0,23,1,0,661,4299.001280,194,0,13487.001280,1745.200717,hintandextended,lora,180 +on6,0,0,25,1,0,1286,4641.202560,195,1,25001.003840,1882.289434,hintandextended,lora,180 +on8,0,0,27,1,0,1517,4863.897440,195,3,30596.001280,2037.302566,hintandextended,lora,180 +on11,0,0,26,1,0,1463,4822.912800,195,3,27972.606400,1977.054349,hintandextended,lora,180 +on2,0,0,26,1,0,1366,4681.600000,195,2,27810.001280,1930.047386,hintandextended,lora,180 +on5,0,0,24,1,0,9,4321.998720,195,0,1586.001280,1755.039488,hintandextended,lora,180 +on10,0,0,24,1,0,2706,4344.200000,195,1,54766.001280,1766.480000,hintandextended,lora,180 +on1,0,0,25,1,0,1072,4501.300000,195,2,24841.001280,1848.472000,hintandextended,lora,180 +on9,0,0,27,1,0,1630,5004.397440,195,4,33144.001280,2119.678771,hintandextended,lora,180 +on3,0,0,25,1,0,180,4503.601280,195,1,7322.602560,1869.201126,hintandextended,lora,180 +on4,0,0,26,1,0,587,4684.501280,195,2,15200.001280,2023.400307,hintandextended,lora,180 +on12,0,0,25,1,0,711,4503.300000,195,2,19807.001280,1894.760205,hintandextended,lora,180 +on0,1,12,24,0,0,0,4602.610240,195,0,-1.000000,2148.249830,hintandextended,lora,180 +on7,0,0,28,1,0,2614,5328.101280,195,6,53638.001280,2273.191898,hintandextended,lora,180 +on11,0,0,25,1,0,752,4821.603840,196,2,20881.003840,2085.378150,hintandextended,lora,180 +on6,0,0,27,1,0,1294,4862.502560,196,3,25206.001280,2003.561024,hintandextended,lora,180 +on2,0,0,28,1,0,1374,5182.806400,196,4,25366.003840,2150.290560,hintandextended,lora,180 +on4,0,0,25,1,0,496,4501.197440,196,1,10719.001280,1826.079181,hintandextended,lora,180 +on8,0,0,25,1,0,900,4501.000000,196,1,17986.001280,1828.944000,hintandextended,lora,180 +on12,0,0,25,1,0,1440,4501.602560,196,1,30547.602560,1854.929434,hintandextended,lora,180 +on5,0,0,25,1,0,452,4504.300000,196,2,11214.001280,1889.144000,hintandextended,lora,180 +on9,0,0,25,1,0,926,4640.203840,196,1,18146.003840,1881.889741,hintandextended,lora,180 +on1,0,0,24,1,0,113,4414.001280,196,0,1905.001280,1819.584717,hintandextended,lora,180 +on10,0,0,28,1,0,1463,5043.200000,196,4,28239.001280,2138.607386,hintandextended,lora,180 +on0,1,12,24,0,0,0,4890.614080,196,0,-1.000000,2263.450342,hintandextended,lora,180 +on3,0,0,26,1,0,800,4682.900000,196,2,20721.001280,1966.215795,hintandextended,lora,180 +on7,0,0,25,1,0,355,4504.202560,196,1,6365.001280,1880.945843,hintandextended,lora,180 +on3,0,0,28,1,0,1596,5185.203840,197,4,25922.603840,2169.313126,hintandextended,lora,180 +on0,1,12,24,0,0,0,4782.812800,197,0,-1.000000,2220.329830,hintandextended,lora,180 +on5,0,0,25,1,0,641,4583.206400,197,1,11482.203840,1872.915174,hintandextended,lora,180 +on7,0,0,24,1,0,1240,4460.001280,197,0,22426.001280,1809.600717,hintandextended,lora,180 +on4,0,0,24,1,0,1289,4457.200000,197,1,25761.001280,1811.423795,hintandextended,lora,180 +on2,0,0,24,1,0,180,4321.001280,197,0,4649.001280,1764.720512,hintandextended,lora,180 +on10,0,0,24,1,0,858,4440.001280,197,0,16283.001280,1852.800307,hintandextended,lora,180 +on11,0,0,24,1,0,595,4360.601280,197,1,11321.601280,1814.800512,hintandextended,lora,180 +on6,0,0,24,1,0,413,4354.001280,197,0,8710.001280,1795.584717,hintandextended,lora,180 +on1,0,0,24,1,0,959,4371.992320,197,1,21550.003840,1802.781747,hintandextended,lora,180 +on12,0,0,25,1,0,1769,4501.200000,197,1,34948.001280,1829.280000,hintandextended,lora,180 +on8,0,0,25,1,0,1619,4501.200000,197,1,30903.001280,1829.280000,hintandextended,lora,180 +on9,0,0,24,1,0,920,4322.001280,197,0,21390.001280,1788.704102,hintandextended,lora,180 +on0,1,12,24,0,0,0,5174.820480,198,0,-1.000000,2377.133722,hintandextended,lora,180 +on12,0,0,23,1,0,0,4269.998720,198,0,2987.001280,1760.255898,hintandextended,lora,180 +on5,0,0,26,1,0,2517,4821.903840,198,3,48977.603840,2006.089946,hintandextended,lora,180 +on11,0,0,26,1,0,461,4684.602560,198,2,11191.001280,1986.864819,hintandextended,lora,180 +on4,0,0,26,1,0,672,4828.003840,198,2,11352.603840,2090.081741,hintandextended,lora,180 +on2,0,0,26,1,0,352,4820.303840,198,2,6823.003840,1973.977741,hintandextended,lora,180 +on7,0,0,24,1,0,2800,4400.001280,198,0,55183.001280,1785.600717,hintandextended,lora,180 +on10,0,0,25,1,0,307,4501.300000,198,1,6663.001280,1835.272000,hintandextended,lora,180 +on3,0,0,26,1,0,454,4682.300000,198,2,9664.001280,1932.983590,hintandextended,lora,180 +on1,0,0,24,1,0,2425,4386.001280,198,0,48817.001280,1793.440922,hintandextended,lora,180 +on8,0,0,25,1,0,769,4502.300000,198,1,17683.001280,1870.359795,hintandextended,lora,180 +on6,0,0,25,1,0,915,4793.900000,198,2,17844.603840,1995.160819,hintandextended,lora,180 +on9,0,0,26,1,0,554,4874.603840,198,3,9824.003840,2034.033331,hintandextended,lora,180 +on11,0,0,28,1,0,1699,5184.406400,199,4,27792.603840,2143.058560,hintandextended,lora,180 +on3,0,0,27,1,0,1279,5003.511520,199,3,21097.003840,2089.741018,hintandextended,lora,180 +on5,0,0,28,1,0,1514,5044.498720,199,5,29738.001280,2126.918464,hintandextended,lora,180 +on9,0,0,25,1,0,978,4641.206400,199,1,17610.003840,1910.674765,hintandextended,lora,180 +on8,0,0,24,1,0,305,4425.001280,199,0,5009.001280,1795.600717,hintandextended,lora,180 +on0,1,12,24,0,0,0,4796.214080,199,0,-1.000000,2225.690752,hintandextended,lora,180 +on4,0,0,25,1,0,1252,4502.000000,199,1,25136.001280,1833.759590,hintandextended,lora,180 +on10,0,0,25,1,0,1061,4502.000000,199,1,20937.001280,1857.824000,hintandextended,lora,180 +on12,0,0,25,1,0,540,4501.000000,199,1,12559.602560,1828.896000,hintandextended,lora,180 +on6,0,0,25,1,0,1694,4501.301280,199,1,35909.001280,1868.936717,hintandextended,lora,180 +on1,0,0,26,1,0,1388,4682.894880,199,2,27631.001280,1924.869747,hintandextended,lora,180 +on2,0,0,24,1,0,783,4363.001280,199,0,17450.001280,1770.800717,hintandextended,lora,180 +on7,0,0,25,1,0,3229,4501.000000,199,1,63827.001280,1829.200000,hintandextended,lora,180 +on3,0,0,25,1,0,407,4527.003840,200,1,7876.003840,1836.401741,hintandextended,lora,180 +on10,0,0,25,1,0,0,4505.598720,200,1,2758.602560,1913.552307,hintandextended,lora,180 +on11,0,0,24,1,0,278,4399.000000,200,0,6869.001280,1785.200410,hintandextended,lora,180 +on1,0,0,24,1,0,1980,4321.001280,200,0,42405.001280,1782.640717,hintandextended,lora,180 +on12,0,0,24,1,0,286,4408.003840,200,0,7029.003840,1832.001946,hintandextended,lora,180 +on0,1,12,24,0,0,0,5075.219200,200,0,-1.000000,2337.292800,hintandextended,lora,180 +on5,0,0,25,1,0,657,4502.298720,200,1,13081.001280,1832.631693,hintandextended,lora,180 +on8,0,0,25,1,0,1620,4502.000000,200,1,35790.602560,1841.072205,hintandextended,lora,180 +on2,0,0,28,1,0,1002,5182.603840,200,4,13241.003840,2162.577126,hintandextended,lora,180 +on7,0,0,25,1,0,349,4503.300000,200,1,7716.001280,1889.063795,hintandextended,lora,180 +on9,0,0,24,1,0,1089,4320.001280,200,0,23265.001280,1753.600717,hintandextended,lora,180 +on6,0,0,24,1,0,1076,4476.001280,200,0,20852.001280,1816.000717,hintandextended,lora,180 +on4,0,0,25,1,0,872,4707.203840,200,3,21012.603840,1995.729741,hintandextended,lora,180 +on6,0,0,24,1,0,3467,4320.000000,1,0,70206.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,1,0,59597.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,759,4320.000000,1,0,17366.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1279,4320.000000,1,0,27193.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1443,4320.000000,1,0,29036.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,1,0,33195.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2030,4320.000000,1,0,43036.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,3206,4320.000000,1,0,67690.010000,1776.756500,baseline,nbiot,180 +on1,0,0,24,1,0,249,4320.000000,1,0,4533.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,780,4320.000000,1,0,17406.020000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,1,0,-1.000000,2010.815000,baseline,nbiot,180 +on10,0,0,24,1,0,3053,4320.000000,2,0,62194.010000,1778.706500,baseline,nbiot,180 +on3,0,0,24,0,0,4272,4320.000000,2,0,-1.000000,1962.000000,baseline,nbiot,180 +on4,0,0,24,1,0,2193,4320.000000,2,0,45776.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1800,4320.000000,2,0,38862.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,795,4320.000000,2,0,15786.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1980,4320.000000,2,0,42774.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,2,0,-1.000000,2019.258500,baseline,nbiot,180 +on6,0,0,24,1,0,571,4320.000000,2,0,10970.010000,1754.006500,baseline,nbiot,180 +on2,0,0,23,1,0,2090,4250.000000,2,0,45856.010000,1726.006500,baseline,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,2,0,15844.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,736,4320.000000,2,0,15884.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,3,0,19105.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,3,0,-1.000000,2038.771500,baseline,nbiot,180 +on4,0,0,24,1,0,894,4320.000000,3,0,19062.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,903,4320.000000,3,0,19145.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,3,0,16334.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,3,0,8316.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,3,0,31263.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,443,4320.000000,3,0,8185.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,3,0,25366.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,3,0,1284.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1343,4320.000000,3,0,27759.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,3,0,32959.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,686,4320.000000,4,0,15281.010000,1776.750000,baseline,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,4,0,66679.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,4,0,-1.000000,1984.802000,baseline,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,4,0,56038.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,4,0,4345.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,4,0,34004.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,17,4320.000000,4,0,2205.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,4,0,27192.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,4,0,37235.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2096,4320.000000,4,0,40012.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,4192,4320.000000,5,0,83018.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,5,0,-1.000000,2043.321500,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,5,0,7651.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,627,4320.000000,5,0,13586.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1103,4320.000000,5,0,25043.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,5,0,32090.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,5,0,13682.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3005,4320.000000,5,0,60733.010000,1754.006500,baseline,nbiot,180 +on8,0,0,23,1,0,3596,4235.000000,5,0,72647.010000,1720.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2747,4320.000000,5,0,54911.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3746,4320.000000,5,0,78059.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4311,4320.000000,5,0,-1.000000,1734.500000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,5,0,2293.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1756,4320.000000,6,0,35529.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,6,0,28020.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,6,0,3515.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,6,0,21876.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,6,0,-1.000000,1990.008500,baseline,nbiot,180 +on4,0,0,24,1,0,3347,4320.000000,6,0,65251.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1503,4320.000000,6,0,30239.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1946,4320.000000,6,0,42587.010000,1871.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3773,4320.000000,6,0,77057.010000,1759.206500,baseline,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,6,0,53859.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,7,0,-1.000000,1936.039000,baseline,nbiot,180 +on6,0,0,24,1,0,4140,4320.000000,7,0,83759.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4286,4320.000000,7,0,-1.000000,1840.443500,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,7,0,13903.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4316,4320.000000,7,0,-1.000000,1731.250000,baseline,nbiot,180 +on10,0,0,24,1,0,23,4320.000000,7,0,3549.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,7,0,8256.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3859,4320.000000,7,0,77970.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,7,0,3654.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,7,0,25574.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,9,23,0,0,0,4313.000000,8,0,-1.000000,2024.258500,baseline,nbiot,180 +on3,0,0,23,0,0,4239,4239.000000,8,0,-1.000000,1695.600000,baseline,nbiot,180 +on5,0,0,24,1,0,3228,4320.000000,8,0,66597.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4275,4320.000000,8,0,-1.000000,1758.550000,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,8,0,13026.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,8,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1889,4320.000000,8,0,39451.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,8,0,6369.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2752,4320.000000,8,0,54296.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,887,4320.000000,8,0,19275.010000,1780.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1918,4320.000000,8,0,39491.020000,1754.006500,baseline,nbiot,180 +on9,0,0,23,1,0,132,4293.000000,8,0,1981.010000,1743.206500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,8,0,2093.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,412,4320.000000,9,0,8888.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,9,0,11683.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2424,4320.000000,9,0,48891.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2067,4320.000000,9,0,42460.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,9,0,25580.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,9,0,-1.000000,2063.471500,baseline,nbiot,180 +on12,0,0,24,1,0,4140,4320.000000,9,0,84462.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,9,0,1577.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,401,4320.000000,9,0,8928.020000,1770.906500,baseline,nbiot,180 +on4,0,0,24,0,0,4294,4320.000000,9,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,9,0,22114.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,158,4320.000000,9,0,4784.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,560,4320.000000,9,0,11627.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1573,4320.000000,10,0,29679.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2733,4320.000000,10,0,56769.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,650,4320.000000,10,0,13632.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,10,0,-1.000000,2065.428000,baseline,nbiot,180 +on4,0,0,24,1,0,3763,4320.000000,10,0,78319.010000,1765.706500,baseline,nbiot,180 +on6,0,0,24,1,0,937,4320.000000,10,0,20603.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,10,0,28823.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,10,0,58767.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,604,4320.000000,10,0,13672.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1707,4320.000000,10,0,35344.010000,1767.656500,baseline,nbiot,180 +on12,0,0,24,1,0,1451,4320.000000,10,0,28863.020000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2003,4320.000000,10,0,42123.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,10,0,13766.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,952,4320.000000,11,0,19868.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,11,0,37310.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,11,0,330.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,992,4320.000000,11,0,19828.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1646,4320.000000,11,0,34972.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4301,4320.000000,11,0,-1.000000,1741.000000,baseline,nbiot,180 +on9,0,0,24,1,0,3291,4320.000000,11,0,66269.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,34,4320.000000,11,0,230.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,845,4320.000000,11,0,17929.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,11,0,17969.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,904,4320.000000,11,0,19908.030000,1871.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,11,0,-1.000000,2043.321500,baseline,nbiot,180 +on4,0,0,24,1,0,1620,4320.000000,11,0,35089.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,12,0,13162.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,366,4320.000000,12,0,10783.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,12,0,18329.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,12,0,2626.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,12,0,50572.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3016,4320.000000,12,0,58034.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,12,0,-1.000000,1728.650000,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,12,0,37549.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2456,4320.000000,12,0,50515.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,924,4320.000000,12,0,18213.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2911,4320.000000,12,0,57994.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4296,4320.000000,12,0,-1.000000,1744.250000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,12,0,-1.000000,2004.965000,baseline,nbiot,180 +on7,0,0,24,1,0,1551,4320.000000,13,0,31230.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,392,4320.000000,13,0,10227.030000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,753,4320.000000,13,0,16803.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,13,0,2089.020000,1754.006500,baseline,nbiot,180 +on2,0,0,23,0,0,4310,4310.000000,13,0,-1.000000,1724.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4313,4320.000000,13,0,-1.000000,1733.200000,baseline,nbiot,180 +on9,0,0,24,1,0,438,4320.000000,13,0,10147.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3,4320.000000,13,0,2049.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,13,0,-1.000000,1915.245500,baseline,nbiot,180 +on1,0,0,24,1,0,428,4320.000000,13,0,10187.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,14,0,9147.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4307,4320.000000,14,0,-1.000000,1737.100000,baseline,nbiot,180 +on9,0,0,24,1,0,1973,4320.000000,14,0,42171.010000,1871.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,14,0,-1.000000,1971.152000,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,14,0,1892.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,14,0,6711.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,599,4320.000000,14,0,14106.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4289,4320.000000,14,0,-1.000000,1748.800000,baseline,nbiot,180 +on2,0,0,24,1,0,1094,4320.000000,14,0,22852.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,14,0,15944.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2383,4320.000000,14,0,48467.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1263,4320.000000,15,0,28721.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3036,4320.000000,15,0,63627.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1034,4320.000000,15,0,18260.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,15,0,3572.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3960,4320.000000,15,0,79824.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,15,0,22337.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2511,4320.000000,15,0,52350.010000,1779.356500,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,15,0,13028.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4295,4320.000000,15,0,-1.000000,1858.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,15,0,-1.000000,2073.221500,baseline,nbiot,180 +on8,0,0,24,1,0,999,4320.000000,15,0,18220.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1983,4320.000000,15,0,39850.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,774,4320.000000,15,0,17049.010000,1754.006500,baseline,nbiot,180 +on7,0,0,23,1,0,1902,4249.000000,16,0,41380.010000,1842.606500,baseline,nbiot,180 +on12,0,0,24,1,0,1294,4320.000000,16,0,27242.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1371,4320.000000,16,0,27202.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,16,0,19733.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,198,4320.000000,16,0,6366.020000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1518,4320.000000,16,0,30750.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2421,4320.000000,16,0,47639.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,16,0,-1.000000,2022.508500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,81,4320.000000,16,0,2807.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,16,0,6326.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3764,4320.000000,16,0,79149.010000,1767.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,17,0,-1.000000,2027.715000,baseline,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,17,0,40568.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4289,4320.000000,17,0,-1.000000,1748.800000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,17,0,14468.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3602,4320.000000,17,0,74951.010000,1754.006500,baseline,nbiot,180 +on2,0,0,23,1,0,1392,4190.000000,17,0,27670.010000,1702.006500,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,17,0,2583.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1715,4320.000000,17,0,34272.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,17,0,6314.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2160,4320.000000,17,0,44211.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,23,1,0,1668,4306.000000,17,0,34312.020000,1767.256500,baseline,nbiot,180 +on9,0,0,24,1,0,1501,4320.000000,17,0,30995.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,399,4320.000000,18,0,8943.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,371,4320.000000,18,0,8983.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,18,0,2310.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,18,0,56241.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,18,0,29896.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1098,4320.000000,18,0,23198.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1861,4320.000000,18,0,36148.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3411,4320.000000,18,0,69122.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,18,0,3912.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,18,0,-1.000000,2047.221500,baseline,nbiot,180 +on6,0,0,24,1,0,1750,4320.000000,18,0,34707.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4313,4320.000000,18,0,-1.000000,1845.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1723,4320.000000,18,0,34667.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1493,4320.000000,19,0,30064.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2547,4320.000000,19,0,51036.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1182,4320.000000,19,0,21936.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4290,4320.000000,19,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,19,0,25875.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,294,4320.000000,19,0,4578.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,19,0,-1.000000,2056.971500,baseline,nbiot,180 +on1,0,0,24,1,0,1057,4320.000000,19,0,22028.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,499,4320.000000,19,0,9983.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2288,4320.000000,19,0,43502.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,195,4320.000000,19,0,4538.010000,1754.006500,baseline,nbiot,180 +on2,0,0,22,1,0,1972,4136.000000,19,0,41169.010000,1680.406500,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,19,0,30165.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4269,4320.000000,20,0,-1.000000,1863.200000,baseline,nbiot,180 +on6,0,0,24,1,0,2586,4320.000000,20,0,54052.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,20,0,-1.000000,2039.408500,baseline,nbiot,180 +on2,0,0,24,1,0,3829,4320.000000,20,0,79212.010000,1871.006500,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,20,0,15372.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2441,4320.000000,20,0,48670.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1639,4320.000000,20,0,34295.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,20,0,7802.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2195,4320.000000,20,0,45348.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4287,4320.000000,20,0,-1.000000,1750.100000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,3600,4320.000000,20,0,74846.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,751,4320.000000,20,0,15241.010000,1755.306500,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,21,0,40631.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,21,0,16745.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,21,0,16787.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,21,0,-1.000000,2036.171500,baseline,nbiot,180 +on7,0,0,24,1,0,3260,4320.000000,21,0,65746.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,4132,4320.000000,21,0,83996.010000,1759.856500,baseline,nbiot,180 +on12,0,0,24,1,0,1126,4320.000000,21,0,22311.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4299,4320.000000,21,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,21,0,21386.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,574,4320.000000,21,0,12332.010000,1871.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3960,4320.000000,21,0,82527.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,21,0,22439.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,33,4320.000000,21,0,199.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,4067,4320.000000,22,0,81504.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,3028,4320.000000,22,0,64497.010000,1871.006500,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,22,0,4852.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,62,4320.000000,22,0,1345.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,564,4320.000000,22,0,12941.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,22,0,-1.000000,2032.258500,baseline,nbiot,180 +on9,0,0,24,1,0,1941,4320.000000,22,0,40018.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,23,1,0,1376,4238.000000,22,0,30272.010000,1721.206500,baseline,nbiot,180 +on3,0,0,24,1,0,1757,4320.000000,22,0,34841.010000,1755.306500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2541,4320.000000,22,0,53851.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2464,4320.000000,23,0,49180.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,23,0,18915.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,69,4320.000000,23,0,3324.030000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,23,0,43211.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1153,4320.000000,23,0,21922.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,15,4320.000000,23,0,3284.020000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,23,0,-1.000000,2040.078000,baseline,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,23,0,51703.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,118,4320.000000,23,0,3244.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,48,4320.000000,23,0,3364.040000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,23,0,49227.010000,1754.006500,baseline,nbiot,180 +on7,0,0,23,1,0,720,4217.000000,23,0,15045.010000,1712.806500,baseline,nbiot,180 +on5,0,0,24,1,0,1003,4320.000000,23,0,18836.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2883,4320.000000,24,0,58636.010000,1765.050000,baseline,nbiot,180 +on10,0,0,24,1,0,2895,4320.000000,24,0,58676.020000,1754.006500,baseline,nbiot,180 +on6,0,0,23,1,0,540,4248.000000,24,0,13338.010000,1725.206500,baseline,nbiot,180 +on12,0,0,24,1,0,797,4320.000000,24,0,15801.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,24,0,30736.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,261,4320.000000,24,0,6106.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3240,4320.000000,24,0,66612.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1103,4320.000000,24,0,24733.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8599.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,24,0,8675.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2051.121500,baseline,nbiot,180 +on7,0,0,24,1,0,1805,4320.000000,24,0,37424.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3420,4320.000000,24,0,71947.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,25,0,807.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,25,0,41965.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1669,4320.000000,25,0,34380.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2081,4320.000000,25,0,41872.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,767,4320.000000,25,0,17644.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2533,4320.000000,25,0,53923.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,122,4320.000000,25,0,709.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,25,0,13888.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,25,0,17713.010000,1754.006500,baseline,nbiot,180 +on0,1,11,23,0,0,0,4316.000000,25,0,-1.000000,2021.571500,baseline,nbiot,180 +on5,0,0,24,1,0,1645,4320.000000,25,0,34420.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,25,0,7776.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,66,4320.000000,26,0,2808.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1130,4320.000000,26,0,24427.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,26,0,-1.000000,2022.508500,baseline,nbiot,180 +on10,0,0,24,1,0,586,4320.000000,26,0,14344.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,26,0,48152.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2340,4320.000000,26,0,48034.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1675,4320.000000,26,0,33853.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3560,4320.000000,26,0,74225.010000,1895.056500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4281,4320.000000,26,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,44,4320.000000,26,0,2768.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,947,4320.000000,26,0,21112.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1263,4320.000000,27,0,26924.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,27,0,9457.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,398,4320.000000,27,0,9497.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,922,4320.000000,27,0,18987.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1283,4320.000000,27,0,26812.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,3453,4320.000000,27,0,68482.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,27,0,29050.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1805,4320.000000,27,0,38174.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2160,4320.000000,27,0,46344.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,27,0,-1.000000,2045.928000,baseline,nbiot,180 +on3,0,0,24,1,0,1252,4320.000000,27,0,26884.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,27,0,1517.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,389,4320.000000,27,0,9537.030000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2013,4320.000000,28,0,40991.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,28,0,11165.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1528,4320.000000,28,0,32344.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,781,4320.000000,28,0,15495.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4301,4320.000000,28,0,-1.000000,1845.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1409,4320.000000,28,0,32415.010000,1871.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,28,0,18240.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,28,0,-1.000000,1995.858500,baseline,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,28,0,38044.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,28,0,41073.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2002,4320.000000,28,0,40951.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3420,4320.000000,29,0,68772.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1357,4320.000000,29,0,28229.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1793,4320.000000,29,0,37166.010000,1763.756500,baseline,nbiot,180 +on8,0,0,24,1,0,2037,4320.000000,29,0,39830.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,416,4320.000000,29,0,8048.010000,1754.006500,baseline,nbiot,180 +on4,0,0,23,1,0,2999,4320.000000,29,0,58972.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2042,4320.000000,29,0,39870.020000,1770.256500,baseline,nbiot,180 +on5,0,0,24,1,0,1617,4320.000000,29,0,32562.010000,1756.606500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,29,0,-1.000000,2059.558500,baseline,nbiot,180 +on12,0,0,24,1,0,634,4320.000000,29,0,14489.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4289,4320.000000,29,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3027,4320.000000,29,0,64756.010000,1776.100000,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,30,0,4406.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4300,4320.000000,30,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,30,0,17610.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,30,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2945,4320.000000,30,0,59423.010000,1774.806500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,30,0,-1.000000,2043.952000,baseline,nbiot,180 +on2,0,0,24,1,0,138,4320.000000,30,0,2231.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,280,4320.000000,30,0,4324.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4281,4320.000000,30,0,-1.000000,1754.000000,baseline,nbiot,180 +on7,0,0,24,1,0,931,4320.000000,30,0,21565.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,199,4320.000000,30,0,4446.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3177,4320.000000,30,0,61766.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4249,4320.000000,30,0,-1.000000,1962.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2339,4320.000000,31,0,49575.020000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2064,4320.000000,31,0,41224.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,31,0,-1.000000,2077.771500,baseline,nbiot,180 +on10,0,0,24,1,0,1980,4320.000000,31,0,41299.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2420,4320.000000,31,0,49535.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3441,4320.000000,31,0,69062.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,31,0,8557.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1950,4320.000000,31,0,41339.020000,1780.000000,baseline,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,31,0,20151.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1617,4320.000000,31,0,33300.010000,1871.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3420,4320.000000,31,0,69022.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,315,4320.000000,31,0,3995.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1505,4320.000000,31,0,30177.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2763,4320.000000,32,0,54959.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2421,4320.000000,32,0,49256.010000,1871.006500,baseline,nbiot,180 +on12,0,0,23,1,0,1662,4299.000000,32,0,34967.010000,1876.900000,baseline,nbiot,180 +on1,0,0,24,1,0,2878,4320.000000,32,0,60840.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,32,0,35040.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,32,0,11489.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2953,4320.000000,32,0,60880.020000,1778.056500,baseline,nbiot,180 +on4,0,0,24,0,0,4285,4320.000000,32,0,-1.000000,1850.200000,baseline,nbiot,180 +on2,0,0,24,1,0,2674,4320.000000,32,0,54999.020000,1871.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,32,0,-1.000000,2159.665000,baseline,nbiot,180 +on6,0,0,24,1,0,419,4320.000000,32,0,7553.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3370,4320.000000,32,0,67864.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3240,4320.000000,32,0,67955.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,973,4320.000000,33,0,21636.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,33,0,33257.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2610,4320.000000,33,0,51188.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,33,0,33211.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1292,4320.000000,33,0,26017.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4280,4320.000000,33,0,-1.000000,1866.450000,baseline,nbiot,180 +on8,0,0,24,1,0,553,4320.000000,33,0,14053.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,33,0,26144.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,3240,4320.000000,33,0,64897.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,33,0,-1.000000,2014.058500,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,33,0,2559.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2700,4320.000000,34,0,57179.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,34,0,-1.000000,2008.858500,baseline,nbiot,180 +on12,0,0,24,1,0,1659,4320.000000,34,0,35593.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2816,4320.000000,34,0,57075.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,34,0,19079.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2498,4320.000000,34,0,53440.020000,1871.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,34,0,14279.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,34,0,28724.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2490,4320.000000,34,0,53400.010000,1774.156500,baseline,nbiot,180 +on10,0,0,24,1,0,3060,4320.000000,34,0,62342.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,718,4320.000000,35,0,15526.010000,1755.956500,baseline,nbiot,180 +on2,0,0,24,1,0,1515,4320.000000,35,0,29494.010000,1754.006500,baseline,nbiot,180 +on8,0,0,23,1,0,790,4241.000000,35,0,15395.010000,1739.956500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,35,0,7525.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,35,0,24789.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1841,4320.000000,35,0,39408.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,35,0,4739.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,35,0,1629.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,35,0,12769.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,842,4320.000000,35,0,15435.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1612,4320.000000,35,0,34690.010000,1861.250000,baseline,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,35,0,12718.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,35,0,-1.000000,2065.421500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,36,0,-1.000000,2002.358500,baseline,nbiot,180 +on11,0,0,24,1,0,2934,4320.000000,36,0,60025.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1444,4320.000000,36,0,31127.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2149,4320.000000,36,0,45700.010000,1762.456500,baseline,nbiot,180 +on4,0,0,24,1,0,34,4320.000000,36,0,669.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4309,4320.000000,36,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1990,4320.000000,36,0,43178.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,36,0,26211.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,23,0,0,4262,4298.000000,36,0,-1.000000,1836.200000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,36,0,733.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,138,4320.000000,36,0,629.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,36,0,10638.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,603,4320.000000,37,0,13482.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,37,0,19335.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2160,4320.000000,37,0,45505.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,37,0,8672.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,37,0,63813.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,37,0,32243.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,37,0,-1.000000,2016.021500,baseline,nbiot,180 +on5,0,0,24,1,0,3729,4320.000000,37,0,73797.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4319,4320.000000,37,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,37,0,19261.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,37,0,13583.010000,1754.006500,baseline,nbiot,180 +on3,0,0,23,1,0,1324,4207.000000,37,0,27068.010000,1708.806500,baseline,nbiot,180 +on9,0,0,24,1,0,2460,4320.000000,37,0,49381.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,38,0,14912.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,773,4320.000000,38,0,14812.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1833,4320.000000,38,0,39427.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,390,4320.000000,38,0,8131.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2744,4320.000000,38,0,54222.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,38,0,21005.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2273,4320.000000,38,0,46188.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,880,4320.000000,38,0,20927.010000,1865.150000,baseline,nbiot,180 +on7,0,0,24,1,0,4227,4320.000000,38,0,84749.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,38,0,-1.000000,2026.408500,baseline,nbiot,180 +on2,0,0,24,1,0,1341,4320.000000,38,0,28707.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,2363,4320.000000,39,0,50355.010000,1754.006500,baseline,nbiot,180 +on4,0,0,23,1,0,2726,4215.000000,39,0,56778.010000,1712.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,39,0,-1.000000,1991.958500,baseline,nbiot,180 +on5,0,0,23,1,0,1208,4198.000000,39,0,27715.010000,1705.206500,baseline,nbiot,180 +on2,0,0,24,1,0,2596,4320.000000,39,0,52161.010000,1767.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1205,4320.000000,39,0,23083.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,39,0,23145.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2013,4320.000000,39,0,41583.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4296,4320.000000,39,0,-1.000000,1854.100000,baseline,nbiot,180 +on11,0,0,24,1,0,18,4320.000000,39,0,2674.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,39,0,61699.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,40,0,10064.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3122,4320.000000,40,0,64187.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2069,4320.000000,40,0,43232.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,604,4320.000000,40,0,12055.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1308,4320.000000,40,0,26017.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,332,4320.000000,40,0,9991.010000,1772.856500,baseline,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,40,0,32805.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,40,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,392,4320.000000,40,0,10104.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,40,0,-1.000000,2040.708500,baseline,nbiot,180 +on1,0,0,24,1,0,890,4320.000000,40,0,18397.010000,1979.543500,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,40,0,30794.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,788,4320.000000,40,0,17332.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3240,4320.000000,41,0,67521.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4313,4320.000000,41,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,41,0,14558.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,56,4320.000000,41,0,1219.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,619,4320.000000,41,0,14428.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,41,0,24919.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,117,4320.000000,41,0,1179.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,41,0,-1.000000,1967.258500,baseline,nbiot,180 +on4,0,0,24,1,0,731,4320.000000,41,0,14468.020000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,41,0,7577.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,385,4320.000000,41,0,7507.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,42,0,17276.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4319,4320.000000,42,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,42,0,-1.000000,1937.352000,baseline,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,42,0,60852.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,42,0,28022.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1351,4320.000000,42,0,27953.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,42,0,31105.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1470,4320.000000,42,0,31145.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,42,0,260.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,219,4320.000000,42,0,6004.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1082,4320.000000,43,0,24637.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,43,0,46864.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,43,0,19953.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,38,4320.000000,43,0,151.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3414,4320.000000,43,0,71284.010000,1871.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,43,0,16023.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2525,4320.000000,43,0,53373.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,738,4320.000000,43,0,16063.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4255,4320.000000,43,0,-1.000000,1962.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4308,4320.000000,43,0,-1.000000,1736.450000,baseline,nbiot,180 +on5,0,0,24,1,0,4176,4320.000000,43,0,85960.010000,1765.056500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,43,0,-1.000000,2029.658500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,44,0,-1.000000,2001.695500,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,44,0,4409.010000,1754.006500,baseline,nbiot,180 +on2,0,0,23,1,0,1260,4225.000000,44,0,28581.010000,1716.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1021,4320.000000,44,0,20841.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,44,0,67693.010000,1754.643500,baseline,nbiot,180 +on3,0,0,24,1,0,975,4320.000000,44,0,20801.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,44,0,32494.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2462,4320.000000,44,0,51060.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,22,4320.000000,44,0,1578.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1853,4320.000000,44,0,38601.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,45,0,20025.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4292,4320.000000,45,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,45,0,21778.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,45,0,-1.000000,2018.608500,baseline,nbiot,180 +on2,0,0,24,1,0,1071,4320.000000,45,0,21646.010000,1760.500000,baseline,nbiot,180 +on1,0,0,24,1,0,2061,4320.000000,45,0,42395.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,45,0,28551.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,205,4320.000000,45,0,4734.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1613,4320.000000,45,0,33058.010000,1759.206500,baseline,nbiot,180 +on5,0,0,24,1,0,1396,4320.000000,45,0,28486.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2592,4320.000000,45,0,53651.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1825,4320.000000,45,0,37632.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,46,0,-1.000000,2004.308500,baseline,nbiot,180 +on8,0,0,24,0,0,4286,4320.000000,46,0,-1.000000,1750.750000,baseline,nbiot,180 +on5,0,0,24,1,0,2160,4320.000000,46,0,44011.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,207,4320.000000,46,0,6368.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3600,4320.000000,46,0,74738.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3420,4320.000000,46,0,70276.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4291,4320.000000,46,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,46,0,18309.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,46,0,22044.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,71,4320.000000,46,0,2723.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,46,0,22003.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,46,0,60511.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,47,0,7440.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1068,4320.000000,47,0,24155.010000,1871.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1508,4320.000000,47,0,29956.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,846,4320.000000,47,0,15992.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4292,4320.000000,47,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,966,4320.000000,47,0,21482.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1749,4320.000000,47,0,34705.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,929,4320.000000,47,0,21522.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,47,0,-1.000000,2046.571500,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,47,0,24103.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2929,4320.000000,47,0,60014.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2364,4320.000000,47,0,49914.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,782,4320.000000,47,0,16032.020000,1754.006500,baseline,nbiot,180 +on2,0,0,23,1,0,479,4265.000000,48,0,7435.010000,1732.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,48,0,-1.000000,2076.478000,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,48,0,2016.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2780,4320.000000,48,0,56770.020000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,207,4320.000000,48,0,4071.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1056,4320.000000,48,0,23177.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,48,0,26645.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,294,4320.000000,48,0,4031.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,548,4320.000000,48,0,12724.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,48,0,34746.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2385,4320.000000,48,0,47098.010000,1774.156500,baseline,nbiot,180 +on10,0,0,24,1,0,2832,4320.000000,48,0,56730.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,48,0,12835.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,804,4320.000000,49,0,15462.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,102,4320.000000,49,0,2438.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,212,4320.000000,49,0,4328.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3806,4320.000000,49,0,77525.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,49,0,-1.000000,1962.058500,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,49,0,20812.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,89,4320.000000,49,0,2398.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,49,0,4288.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,49,0,23680.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,49,0,64521.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,50,0,56115.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,50,0,-1.000000,2077.115000,baseline,nbiot,180 +on2,0,0,24,1,0,24,4320.000000,50,0,3654.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,50,0,3752.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2112,4320.000000,50,0,46467.010000,1882.706500,baseline,nbiot,180 +on1,0,0,24,0,0,4285,4320.000000,50,0,-1.000000,1751.400000,baseline,nbiot,180 +on5,0,0,24,0,0,4303,4320.000000,50,0,-1.000000,1739.700000,baseline,nbiot,180 +on12,0,0,24,1,0,2938,4320.000000,50,0,58693.010000,1871.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,50,0,28876.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,45,4320.000000,50,0,907.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,124,4320.000000,50,0,947.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3337,4320.000000,50,0,66217.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,374,4320.000000,50,0,9218.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,51,0,35225.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,51,0,12713.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,51,0,-1.000000,2011.465000,baseline,nbiot,180 +on6,0,0,24,1,0,1629,4320.000000,51,0,35265.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,51,0,42356.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1557,4320.000000,51,0,29191.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1407,4320.000000,51,0,29281.010000,1776.106500,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,51,0,20210.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4319,4320.000000,51,0,-1.000000,1729.300000,baseline,nbiot,180 +on12,0,0,24,1,0,852,4320.000000,51,0,14836.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,289,4320.000000,51,0,5097.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,51,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,61,4320.000000,51,0,3176.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,52,0,23419.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,52,0,1663.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4286,4320.000000,52,0,-1.000000,1750.750000,baseline,nbiot,180 +on3,0,0,24,1,0,293,4320.000000,52,0,4866.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,609,4320.000000,52,0,14101.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1612,4320.000000,52,0,33129.010000,1759.856500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,52,0,-1.000000,2042.671500,baseline,nbiot,180 +on2,0,0,24,1,0,3553,4320.000000,52,0,70870.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,52,0,4960.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,777,4320.000000,52,0,14896.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,52,0,41908.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,52,0,55317.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,461,4320.000000,52,0,8767.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4248,4320.000000,53,0,-1.000000,1869.700000,baseline,nbiot,180 +on10,0,0,23,1,0,540,4279.000000,53,0,12069.010000,1737.606500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1603,4320.000000,53,0,33040.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,53,0,27281.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,293,4320.000000,53,0,5021.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,53,0,15618.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,53,0,37902.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4315,4320.000000,53,0,-1.000000,1825.493500,baseline,nbiot,180 +on5,0,0,24,1,0,2228,4320.000000,53,0,44382.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2503,4320.000000,53,0,51466.010000,1765.706500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,53,0,-1.000000,2037.452000,baseline,nbiot,180 +on1,0,0,24,1,0,725,4320.000000,53,0,15658.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3989,4320.000000,54,0,80510.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,54,0,1032.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1553,4320.000000,54,0,32057.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1297,4320.000000,54,0,28803.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1390,4320.000000,54,0,28843.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,54,0,61446.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1157,4320.000000,54,0,24986.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4302,4320.000000,54,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,54,0,25105.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,54,0,-1.000000,2000.415000,baseline,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,54,0,48892.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2766,4320.000000,54,0,55934.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,55,0,42199.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1161,4320.000000,55,0,24261.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2755,4320.000000,55,0,56838.010000,1871.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1102,4320.000000,55,0,24221.010000,1767.006500,baseline,nbiot,180 +on5,0,0,23,1,0,1493,4265.000000,55,0,30894.010000,1765.156500,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,55,0,14204.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,600,4320.000000,55,0,14084.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1502,4320.000000,55,0,30934.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,55,0,33058.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2340,4320.000000,55,0,48471.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,55,0,-1.000000,2053.065000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2870,4320.000000,56,0,60840.010000,1871.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1525,4320.000000,56,0,30348.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,56,0,1229.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,437,4320.000000,56,0,7986.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2803,4320.000000,56,0,55775.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,56,0,-1.000000,1943.202000,baseline,nbiot,180 +on12,0,0,24,1,0,652,4320.000000,56,0,12645.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,56,0,36901.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1032,4320.000000,56,0,20899.010000,1754.006500,baseline,nbiot,180 +on3,0,0,23,1,0,1416,4281.000000,57,0,30942.010000,1947.056500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,57,0,-1.000000,2049.158500,baseline,nbiot,180 +on10,0,0,24,1,0,1339,4320.000000,57,0,25818.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3433,4320.000000,57,0,68496.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1275,4320.000000,57,0,25858.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,615,4320.000000,57,0,11149.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,457,4320.000000,57,0,10184.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3356,4320.000000,57,0,68536.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2130,4320.000000,57,0,46451.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1650,4320.000000,57,0,35162.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1601,4320.000000,57,0,35237.010000,1767.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,55,4320.000000,58,0,3320.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2845,4320.000000,58,0,59349.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,58,0,11966.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,9,4320.000000,58,0,3280.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1209,4320.000000,58,0,22676.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4297,4320.000000,58,0,-1.000000,1962.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,58,0,-1.000000,1975.702000,baseline,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,58,0,50560.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1919,4320.000000,58,0,36368.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,425,4320.000000,58,0,8936.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,19,4320.000000,59,0,458.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3582,4320.000000,59,0,74943.010000,1766.356500,baseline,nbiot,180 +on5,0,0,24,1,0,2608,4320.000000,59,0,51211.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1039,4320.000000,59,0,18960.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,754,4320.000000,59,0,17180.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,59,0,-1.000000,2036.815000,baseline,nbiot,180 +on2,0,0,24,1,0,1505,4320.000000,59,0,31522.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2593,4320.000000,59,0,51171.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,59,0,9336.010000,1754.006500,baseline,nbiot,180 +on11,0,0,23,1,0,1620,4278.000000,59,0,35552.010000,1737.206500,baseline,nbiot,180 +on7,0,0,24,0,0,4305,4320.000000,59,0,-1.000000,1738.393500,baseline,nbiot,180 +on1,0,0,24,1,0,79,4320.000000,59,0,418.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,59,0,17140.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,197,4320.000000,60,0,4629.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,60,0,9414.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3960,4320.000000,60,0,82284.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,60,0,15575.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,238,4320.000000,60,0,4589.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3420,4320.000000,60,0,69225.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,60,0,3462.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,60,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2179,4320.000000,60,0,43913.010000,1872.956500,baseline,nbiot,180 +on11,0,0,24,0,0,4318,4320.000000,60,0,-1.000000,1729.950000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,60,0,-1.000000,2040.052000,baseline,nbiot,180 +on5,0,0,24,1,0,1547,4320.000000,60,0,32471.010000,1988.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4307,4320.000000,60,0,-1.000000,1737.100000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1586,4320.000000,61,0,34811.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,61,0,7599.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1448,4320.000000,61,0,32215.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,268,4320.000000,61,0,6832.010000,1754.006500,baseline,nbiot,180 +on4,0,0,23,0,0,4257,4263.000000,61,0,-1.000000,1709.750000,baseline,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,61,0,43151.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2700,4320.000000,61,0,54120.010000,1754.006500,baseline,nbiot,180 +on9,0,0,23,1,0,211,4251.000000,61,0,6872.020000,1726.406500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,61,0,-1.000000,1989.358500,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,61,0,3177.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,61,0,26450.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1202,4320.000000,62,0,25091.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2751,4320.000000,62,0,56742.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1440,4320.000000,62,0,30213.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3344,4320.000000,62,0,65906.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,4183,4320.000000,62,0,84826.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1161,4320.000000,62,0,25131.020000,1871.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,62,0,-1.000000,2044.615000,baseline,nbiot,180 +on1,0,0,24,1,0,1952,4320.000000,62,0,42824.010000,1772.856500,baseline,nbiot,180 +on4,0,0,24,1,0,195,4320.000000,62,0,4155.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,62,0,51757.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4306,4320.000000,62,0,-1.000000,1737.750000,baseline,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,62,0,8216.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3105,4320.000000,63,0,61681.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4260,4320.000000,63,0,-1.000000,1962.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3447,4320.000000,63,0,70075.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,99,4320.000000,63,0,427.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1661,4320.000000,63,0,34280.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4288,4320.000000,63,0,-1.000000,1849.550000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,63,0,-1.000000,2050.465000,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,63,0,23549.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,497,4320.000000,63,0,7416.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,807,4320.000000,63,0,14929.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,753,4320.000000,63,0,14889.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,63,0,11503.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1917,4320.000000,63,0,36571.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,64,0,-1.000000,2029.671500,baseline,nbiot,180 +on12,0,0,24,1,0,566,4320.000000,64,0,14199.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,64,0,14489.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3420,4320.000000,64,0,68990.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1425,4320.000000,64,0,29089.010000,1764.406500,baseline,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,64,0,14246.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,64,0,61328.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2076,4320.000000,64,0,43151.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3233,4320.000000,64,0,67675.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1198,4320.000000,64,0,23102.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1623,4320.000000,64,0,34797.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,3870,4320.000000,64,0,77314.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2736,4320.000000,65,0,54532.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,65,0,19744.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,930,4320.000000,65,0,19784.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1696,4320.000000,65,0,35966.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,183,4320.000000,65,0,6408.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,65,0,-1.000000,2060.208500,baseline,nbiot,180 +on11,0,0,24,1,0,581,4320.000000,65,0,14143.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,830,4320.000000,65,0,17313.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,822,4320.000000,65,0,17273.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4284,4320.000000,65,0,-1.000000,1971.743500,baseline,nbiot,180 +on1,0,0,24,1,0,1182,4320.000000,65,0,24414.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1772,4320.000000,65,0,39561.010000,1779.356500,baseline,nbiot,180 +on7,0,0,24,0,0,4307,4320.000000,66,0,-1.000000,1737.100000,baseline,nbiot,180 +on10,0,0,24,1,0,171,4320.000000,66,0,6670.010000,1760.500000,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,66,0,15482.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1331,4320.000000,66,0,27559.010000,1766.356500,baseline,nbiot,180 +on2,0,0,24,1,0,678,4320.000000,66,0,14276.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,67,4320.000000,66,0,957.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,66,0,1023.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,66,0,7768.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,66,0,7704.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,66,0,-1.000000,2042.015000,baseline,nbiot,180 +on8,0,0,24,1,0,3625,4320.000000,66,0,75023.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,66,0,27693.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,66,0,14381.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1003,4320.000000,67,0,20070.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,67,0,42800.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,43,4320.000000,67,0,2836.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2880,4320.000000,67,0,58628.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2411,4320.000000,67,0,46917.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,67,0,-1.000000,2030.295500,baseline,nbiot,180 +on6,0,0,24,1,0,917,4320.000000,67,0,20110.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,71,4320.000000,67,0,2915.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,67,0,6050.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4257,4320.000000,67,0,-1.000000,1770.230500,baseline,nbiot,180 +on9,0,0,23,1,0,1620,4275.000000,67,0,33117.010000,1736.006500,baseline,nbiot,180 +on2,0,0,24,1,0,407,4320.000000,67,0,9705.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,68,0,1059.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1460,4320.000000,68,0,32277.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1980,4320.000000,68,0,40401.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2874,4320.000000,68,0,58550.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,68,0,37099.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3780,4320.000000,68,0,78029.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,68,0,1135.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,68,0,-1.000000,2053.078000,baseline,nbiot,180 +on11,0,0,24,1,0,1110,4320.000000,68,0,22166.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1736,4320.000000,68,0,33622.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3366,4320.000000,68,0,67599.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,68,0,5889.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,68,0,32347.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,69,0,28396.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,69,0,13159.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,304,4320.000000,69,0,4840.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,919,4320.000000,69,0,19433.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,69,0,-1.000000,1962.052000,baseline,nbiot,180 +on8,0,0,24,0,0,4281,4320.000000,69,0,-1.000000,1754.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,69,0,18013.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,992,4320.000000,69,0,19473.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1311,4320.000000,69,0,28265.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,69,0,19524.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,70,0,33809.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,907,4320.000000,70,0,18424.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,70,0,42415.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,70,0,26542.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3996,4320.000000,70,0,81632.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,70,0,197.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1020,4320.000000,70,0,18464.020000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,70,0,-1.000000,2063.471500,baseline,nbiot,180 +on11,0,0,24,1,0,1225,4320.000000,70,0,26647.010000,1848.900000,baseline,nbiot,180 +on1,0,0,24,1,0,2347,4320.000000,70,0,47068.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,847,4320.000000,70,0,16424.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,70,0,18513.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,35,4320.000000,70,0,93.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4294,4320.000000,71,0,-1.000000,1962.000000,baseline,nbiot,180 +on8,0,0,24,1,0,573,4320.000000,71,0,13308.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2155,4320.000000,71,0,44790.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,71,0,6171.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1411,4320.000000,71,0,32117.010000,1773.500000,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,71,0,2804.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,71,0,-1.000000,1977.645500,baseline,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,71,0,35212.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,782,4320.000000,71,0,16761.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,71,0,62492.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2094,4320.000000,72,0,41123.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1571,4320.000000,72,0,30141.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1397,4320.000000,72,0,28059.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3740,4320.000000,72,0,77657.010000,1782.606500,baseline,nbiot,180 +on5,0,0,24,1,0,640,4320.000000,72,0,13085.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,72,0,1685.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2511,4320.000000,72,0,52458.010000,1760.506500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1105,4320.000000,72,0,23603.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,72,0,47669.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1179,4320.000000,72,0,23643.020000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,72,0,-1.000000,2023.165000,baseline,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,73,0,37812.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,73,0,918.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,414,4320.000000,73,0,8728.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,73,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2648,4320.000000,73,0,52249.010000,1848.900000,baseline,nbiot,180 +on12,0,0,24,1,0,3040,4320.000000,73,0,63252.010000,1871.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1693,4320.000000,73,0,32751.010000,1871.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,73,0,-1.000000,2091.408500,baseline,nbiot,180 +on9,0,0,24,1,0,2127,4320.000000,73,0,45283.010000,1776.106500,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,73,0,15511.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3009,4320.000000,73,0,60679.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3485,4320.000000,73,0,68850.010000,1871.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4281,4320.000000,73,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,56,4320.000000,74,0,1016.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1268,4320.000000,74,0,25617.010000,1767.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,74,0,-1.000000,2012.765000,baseline,nbiot,180 +on2,0,0,24,1,0,89,4320.000000,74,0,976.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2683,4320.000000,74,0,54245.010000,1765.706500,baseline,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,74,0,19779.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,74,0,10480.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2880,4320.000000,74,0,58307.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,74,0,23241.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3600,4320.000000,74,0,74046.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,74,0,23300.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,249,4320.000000,75,0,4565.010000,1754.006500,baseline,nbiot,180 +on7,0,0,23,1,0,2092,4273.000000,75,0,41494.010000,1735.206500,baseline,nbiot,180 +on10,0,0,24,1,0,3010,4320.000000,75,0,60163.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,75,0,41633.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,493,4320.000000,75,0,9337.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1026,4320.000000,75,0,18917.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3960,4320.000000,75,0,81774.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2350,4320.000000,75,0,47643.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,921,4320.000000,75,0,18981.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3806,4320.000000,75,0,79207.010000,1886.600000,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,75,0,9377.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,75,0,39077.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,75,0,-1.000000,2070.621500,baseline,nbiot,180 +on6,0,0,24,1,0,604,4320.000000,76,0,12124.010000,1754.006500,baseline,nbiot,180 +on11,0,0,23,1,0,205,4279.000000,76,0,4206.010000,1737.606500,baseline,nbiot,180 +on12,0,0,24,1,0,718,4320.000000,76,0,14864.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,76,0,51444.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4289,4320.000000,76,0,-1.000000,1748.800000,baseline,nbiot,180 +on10,0,0,24,1,0,2438,4320.000000,76,0,50242.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1027,4320.000000,76,0,18773.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1654,4320.000000,76,0,35175.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,76,0,-1.000000,2036.821500,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,76,0,4272.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1981,4320.000000,76,0,40363.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,469,4320.000000,76,0,7539.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2023,4320.000000,76,0,40403.020000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1214,4320.000000,77,0,22666.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,20,4320.000000,77,0,2980.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,77,0,5402.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2293,4320.000000,77,0,43511.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2323,4320.000000,77,0,49276.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,445,4320.000000,77,0,9683.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2513,4320.000000,77,0,52416.010000,1846.300000,baseline,nbiot,180 +on5,0,0,24,0,0,4304,4320.000000,77,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2035,4320.000000,77,0,42319.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,4195,4320.000000,77,0,86171.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,886,4320.000000,77,0,21174.010000,1878.806500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,77,0,-1.000000,2084.265000,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,77,0,13321.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,78,0,45831.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2713,4320.000000,78,0,57415.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,78,0,31420.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,78,0,1917.010000,1754.006500,baseline,nbiot,180 +on2,0,0,23,1,0,3804,4217.000000,78,0,75932.010000,1712.806500,baseline,nbiot,180 +on7,0,0,24,0,0,4301,4320.000000,78,0,-1.000000,1741.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3765,4320.000000,78,0,75972.020000,1770.906500,baseline,nbiot,180 +on3,0,0,24,1,0,1827,4320.000000,78,0,37597.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,979,4320.000000,78,0,18464.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,4149,4320.000000,78,0,86289.010000,1777.406500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,78,0,-1.000000,2015.358500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,79,0,7744.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,79,0,52512.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,877,4320.000000,79,0,21336.010000,1769.606500,baseline,nbiot,180 +on10,0,0,24,1,0,2164,4320.000000,79,0,45685.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2401,4320.000000,79,0,48615.010000,1774.156500,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,79,0,13829.010000,1754.006500,baseline,nbiot,180 +on11,0,0,23,1,0,1190,4302.000000,79,0,23748.020000,1746.806500,baseline,nbiot,180 +on2,0,0,24,1,0,3600,4320.000000,79,0,73075.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1173,4320.000000,79,0,23708.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,79,0,7789.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,79,0,-1.000000,2023.815000,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,80,0,22113.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1787,4320.000000,80,0,36988.010000,1871.006500,baseline,nbiot,180 +on6,0,0,24,1,0,4220,4320.000000,80,0,83701.010000,1757.906500,baseline,nbiot,180 +on11,0,0,24,1,0,793,4320.000000,80,0,16156.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,80,0,-1.000000,2065.428000,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,80,0,11674.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,82,4320.000000,80,0,849.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1682,4320.000000,80,0,34710.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,853,4320.000000,80,0,16196.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,392,4320.000000,80,0,10755.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1328,4320.000000,80,0,27305.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1807,4320.000000,80,0,37028.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1362,4320.000000,80,0,27345.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,910,4320.000000,81,0,19831.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,81,0,34473.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,81,0,11918.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1830,4320.000000,81,0,36233.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,394,4320.000000,81,0,9712.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,831,4320.000000,81,0,16748.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,305,4320.000000,81,0,6193.010000,1754.006500,baseline,nbiot,180 +on11,0,0,23,1,0,1371,4152.000000,81,0,25846.010000,1686.806500,baseline,nbiot,180 +on9,0,0,24,1,0,1102,4320.000000,81,0,22179.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1724,4320.000000,81,0,34398.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,81,0,-1.000000,2014.071500,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,81,0,2949.010000,1754.006500,baseline,nbiot,180 +on10,0,0,23,0,0,4271,4271.000000,82,0,-1.000000,1708.400000,baseline,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,82,0,17326.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3960,4320.000000,82,0,79250.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,82,0,13137.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1233,4320.000000,82,0,25709.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,721,4320.000000,82,0,17366.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2025,4320.000000,82,0,41053.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3565,4320.000000,82,0,75398.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,438,4320.000000,82,0,7643.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1333,4320.000000,82,0,25581.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,82,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,82,0,-1.000000,2029.665000,baseline,nbiot,180 +on2,0,0,24,1,0,755,4320.000000,82,0,17248.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,204,4320.000000,83,0,5241.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,996,4320.000000,83,0,21473.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,83,0,65973.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,83,0,45529.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,387,4320.000000,83,0,8566.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,83,0,35495.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,18,4320.000000,83,0,3209.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2094,4320.000000,83,0,42517.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,83,0,-1.000000,1988.065000,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,83,0,3317.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,83,0,8526.010000,1754.006500,baseline,nbiot,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,84,0,15137.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,84,0,56293.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,84,0,21272.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,940,4320.000000,84,0,21133.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1851,4320.000000,84,0,38037.010000,1775.456500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1282,4320.000000,84,0,28389.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,966,4320.000000,84,0,21173.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,84,0,5032.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,84,0,-1.000000,2016.665000,baseline,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,84,0,32191.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,84,0,21217.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4310,4320.000000,84,0,-1.000000,1845.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1341,4320.000000,85,0,28447.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1522,4320.000000,85,0,30026.010000,1871.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1676,4320.000000,85,0,35795.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1989,4320.000000,85,0,41291.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,849,4320.000000,85,0,17824.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3420,4320.000000,85,0,70730.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,85,0,54920.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,612,4320.000000,85,0,14362.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,85,0,-1.000000,2075.828000,baseline,nbiot,180 +on4,0,0,23,1,0,0,4264.000000,85,0,1018.010000,1731.606500,baseline,nbiot,180 +on5,0,0,24,1,0,93,4320.000000,85,0,916.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2760,4320.000000,85,0,54783.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2474,4320.000000,85,0,48176.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,669,4320.000000,86,0,12018.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,86,0,-1.000000,2079.728000,baseline,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,86,0,40859.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1265,4320.000000,86,0,25692.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,805,4320.000000,86,0,14945.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,70,4320.000000,86,0,526.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1956,4320.000000,86,0,40899.020000,1773.506500,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,86,0,4110.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,203,4320.000000,86,0,4150.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1638,4320.000000,86,0,35863.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,782,4320.000000,86,0,14985.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,261,4320.000000,86,0,4038.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1118,4320.000000,86,0,22079.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,87,0,36070.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2697,4320.000000,87,0,55666.010000,1777.406500,baseline,nbiot,180 +on4,0,0,24,1,0,459,4320.000000,87,0,8748.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,87,0,-1.000000,2071.278000,baseline,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,87,0,40053.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,87,0,18911.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,87,0,5485.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,922,4320.000000,87,0,18855.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,87,0,51434.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,58,4320.000000,87,0,637.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1204,4320.000000,87,0,24025.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1144,4320.000000,87,0,24065.020000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1429,4320.000000,87,0,30447.010000,1871.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4301,4320.000000,88,0,-1.000000,1741.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1198,4320.000000,88,0,25313.010000,1755.306500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,88,0,3350.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,88,0,-1.000000,1980.258500,baseline,nbiot,180 +on9,0,0,24,0,0,4315,4320.000000,88,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1099,4320.000000,88,0,21805.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,552,4320.000000,88,0,13405.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1116,4320.000000,88,0,21845.020000,1754.006500,baseline,nbiot,180 +on6,0,0,23,1,0,540,4267.000000,88,0,13462.010000,1732.806500,baseline,nbiot,180 +on1,0,0,24,1,0,250,4320.000000,88,0,4450.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,88,0,29186.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,88,0,17839.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,482,4320.000000,89,0,7395.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3537,4320.000000,89,0,69910.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2788,4320.000000,89,0,56258.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,89,0,7450.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,89,0,39795.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,49,4320.000000,89,0,1288.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,696,4320.000000,89,0,16644.010000,1770.256500,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,89,0,3897.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2880,4320.000000,89,0,60965.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,89,0,-1.000000,2036.165000,baseline,nbiot,180 +on5,0,0,24,1,0,4093,4320.000000,89,0,86411.010000,1785.856500,baseline,nbiot,180 +on9,0,0,24,1,0,1470,4320.000000,90,0,29407.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,4140,4320.000000,90,0,82856.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2281,4320.000000,90,0,47856.010000,1892.456500,baseline,nbiot,180 +on12,0,0,24,1,0,3765,4320.000000,90,0,78381.010000,1764.406500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,90,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,23,1,0,1736,4262.000000,90,0,32827.010000,1730.806500,baseline,nbiot,180 +on7,0,0,24,1,0,1106,4320.000000,90,0,25092.010000,1780.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,90,0,32950.010000,1754.006500,baseline,nbiot,180 +on3,0,0,23,1,0,2160,4277.000000,90,0,44262.010000,1736.806500,baseline,nbiot,180 +on4,0,0,24,1,0,1103,4320.000000,90,0,25132.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,90,0,-1.000000,2091.421500,baseline,nbiot,180 +on11,0,0,24,1,0,1619,4320.000000,90,0,32906.010000,1871.006500,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,90,0,21232.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4271,4320.000000,91,0,-1.000000,1871.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2040,4320.000000,91,0,41924.010000,1760.506500,baseline,nbiot,180 +on11,0,0,24,1,0,3960,4320.000000,91,0,81777.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,91,0,-1.000000,2005.608500,baseline,nbiot,180 +on9,0,0,24,1,0,444,4320.000000,91,0,7923.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,91,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4315,4320.000000,91,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,91,0,17408.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3060,4320.000000,91,0,62027.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,91,0,42023.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,130,4320.000000,91,0,2922.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,91,0,3051.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,91,0,18978.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,92,0,3567.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,92,0,-1.000000,1924.995500,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,92,0,9660.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,92,0,6037.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,92,0,62101.010000,1754.006500,baseline,nbiot,180 +on4,0,0,23,1,0,3143,4228.000000,92,0,68183.020000,1732.156500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,92,0,68143.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1027,4320.000000,92,0,18364.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,93,0,39282.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1444,4320.000000,93,0,32071.010000,1770.256500,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,93,0,9174.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,764,4320.000000,93,0,15133.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,852,4320.000000,93,0,15093.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,93,0,5632.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,93,0,9299.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,23,1,0,0,4276.000000,93,0,1543.010000,1736.406500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,93,0,-1.000000,1978.308500,baseline,nbiot,180 +on8,0,0,24,1,0,2921,4320.000000,93,0,60727.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4283,4320.000000,94,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2340,4320.000000,94,0,48898.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,919,4320.000000,94,0,19376.010000,1871.006500,baseline,nbiot,180 +on2,0,0,24,1,0,132,4320.000000,94,0,950.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,94,0,11297.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,94,0,19429.010000,1754.006500,baseline,nbiot,180 +on4,0,0,23,0,0,4267,4304.000000,94,0,-1.000000,1746.300000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,94,0,-1.000000,2031.595500,baseline,nbiot,180 +on3,0,0,23,1,0,312,4315.000000,94,0,4297.010000,1752.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4291,4320.000000,94,0,-1.000000,1845.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2789,4320.000000,94,0,55518.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4272,4320.000000,94,0,-1.000000,1962.000000,baseline,nbiot,180 +on10,0,0,24,1,0,926,4320.000000,95,0,20201.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2942,4320.000000,95,0,59237.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,95,0,35693.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,302,4320.000000,95,0,5672.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,95,0,-1.000000,1988.065000,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,95,0,73.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,800,4320.000000,95,0,17190.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,95,0,22238.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2451,4320.000000,95,0,49947.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,95,0,9556.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,256,4320.000000,95,0,5712.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,23,1,0,0,4316.000000,96,0,2440.010000,1752.406500,baseline,nbiot,180 +on11,0,0,23,1,0,2926,4295.000000,96,0,59819.010000,1744.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1727,4320.000000,96,0,36081.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,96,0,15986.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,282,4320.000000,96,0,6942.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,96,0,36160.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,427,4320.000000,96,0,10244.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1503,4320.000000,96,0,29737.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,96,0,2383.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,96,0,-1.000000,2030.321500,baseline,nbiot,180 +on3,0,0,24,0,0,4296,4320.000000,96,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,1,0,2440,4320.000000,96,0,47290.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,96,0,7060.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,285,4320.000000,97,0,5700.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2098,4320.000000,97,0,42121.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,97,0,28619.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,778,4320.000000,97,0,17859.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,97,0,17994.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,784,4320.000000,97,0,17899.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,97,0,5758.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,97,0,-1.000000,2003.665000,baseline,nbiot,180 +on7,0,0,24,1,0,56,4320.000000,97,0,2174.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4308,4320.000000,97,0,-1.000000,1736.450000,baseline,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,97,0,23407.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1502,4320.000000,97,0,29205.010000,1871.006500,baseline,nbiot,180 +on4,0,0,23,1,0,3234,4201.000000,98,0,68211.010000,1839.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4283,4320.000000,98,0,-1.000000,1859.950000,baseline,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,98,0,41746.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1180,4320.000000,98,0,25026.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,497,4320.000000,98,0,10118.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2325,4320.000000,98,0,47187.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3060,4320.000000,98,0,62366.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,98,0,27920.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2340,4320.000000,98,0,47298.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,4127,4320.000000,98,0,84990.010000,1871.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,98,0,-1.000000,2097.915000,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,98,0,2694.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1320,4320.000000,98,0,27831.010000,1770.900000,baseline,nbiot,180 +on1,0,0,24,1,0,36,4320.000000,99,0,882.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,99,0,842.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,203,4320.000000,99,0,5190.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1149,4320.000000,99,0,24886.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3698,4320.000000,99,0,73262.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,99,0,13012.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,99,0,17041.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,99,0,42117.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,99,0,5275.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,99,0,950.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,99,0,-1.000000,2017.321500,baseline,nbiot,180 +on9,0,0,24,1,0,1847,4320.000000,99,0,39222.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,3131,4320.000000,100,0,62978.010000,1873.606500,baseline,nbiot,180 +on2,0,0,24,1,0,127,4320.000000,100,0,671.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,100,0,37677.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2700,4320.000000,100,0,55137.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,100,0,-1.000000,2042.021500,baseline,nbiot,180 +on6,0,0,24,1,0,3902,4320.000000,100,0,77866.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,490,4320.000000,100,0,8915.030000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,555,4320.000000,100,0,12812.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,100,0,48036.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,100,0,35530.010000,1754.656500,baseline,nbiot,180 +on3,0,0,24,1,0,369,4320.000000,100,0,8835.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,494,4320.000000,100,0,8875.020000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3780,4320.000000,101,0,77783.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,316,4320.000000,101,0,7327.020000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,101,0,-1.000000,2042.015000,baseline,nbiot,180 +on7,0,0,24,1,0,3154,4320.000000,101,0,64524.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,73,4320.000000,101,0,3027.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,554,4320.000000,101,0,12783.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,101,0,3138.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,951,4320.000000,101,0,19322.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4289,4320.000000,101,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4319,4320.000000,101,0,-1.000000,1729.300000,baseline,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,101,0,39936.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,263,4320.000000,101,0,7287.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2160,4320.000000,101,0,45466.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3341,4320.000000,102,0,66299.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4295,4320.000000,102,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,102,0,51467.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4273,4320.000000,102,0,-1.000000,1962.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4305,4320.000000,102,0,-1.000000,1852.150000,baseline,nbiot,180 +on3,0,0,24,1,0,2554,4320.000000,102,0,51401.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2296,4320.000000,102,0,46032.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1980,4320.000000,102,0,42424.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,464,4320.000000,102,0,8338.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,102,0,-1.000000,1995.852000,baseline,nbiot,180 +on11,0,0,24,1,0,2340,4320.000000,102,0,48861.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3802,4320.000000,102,0,76783.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2080,4320.000000,103,0,41136.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2168,4320.000000,103,0,46804.010000,1754.006500,baseline,nbiot,180 +on5,0,0,23,1,0,1092,4279.000000,103,0,22387.010000,1744.756500,baseline,nbiot,180 +on2,0,0,24,0,0,4304,4320.000000,103,0,-1.000000,1739.050000,baseline,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,103,0,52677.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,103,0,-1.000000,1980.258500,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,103,0,15645.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,103,0,19804.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,103,0,38682.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,103,0,26402.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,103,0,10110.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,104,0,37878.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1127,4320.000000,104,0,24585.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,104,0,-1.000000,2061.515000,baseline,nbiot,180 +on8,0,0,24,1,0,742,4320.000000,104,0,15340.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,104,0,50901.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3042,4320.000000,104,0,63685.010000,1766.356500,baseline,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,104,0,31725.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1106,4320.000000,104,0,24625.020000,1767.656500,baseline,nbiot,180 +on2,0,0,24,1,0,595,4320.000000,104,0,12392.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3139,4320.000000,104,0,64873.010000,1775.456500,baseline,nbiot,180 +on1,0,0,24,1,0,2355,4320.000000,104,0,47249.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1845.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,105,0,41987.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,252,4320.000000,105,0,6290.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1414,4320.000000,105,0,28895.010000,1771.556500,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,105,0,12662.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3297,4320.000000,105,0,65958.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,105,0,-1.000000,2094.665000,baseline,nbiot,180 +on10,0,0,24,1,0,4140,4320.000000,105,0,84915.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,4096,4320.000000,105,0,84955.020000,1890.506500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,105,0,1827.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1978,4320.000000,105,0,42044.010000,1755.956500,baseline,nbiot,180 +on11,0,0,24,1,0,3571,4320.000000,105,0,73285.010000,1988.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3142,4320.000000,106,0,62961.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2340,4320.000000,106,0,49192.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,687,4320.000000,106,0,16860.020000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,106,0,46967.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,98,4320.000000,106,0,3287.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,825,4320.000000,106,0,16820.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,106,0,3247.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,106,0,18309.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,206,4320.000000,106,0,5577.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2327,4320.000000,106,0,49232.020000,1767.656500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,106,0,-1.000000,2026.415000,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,107,0,18528.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,107,0,-1.000000,1960.752000,baseline,nbiot,180 +on8,0,0,24,1,0,2869,4320.000000,107,0,59351.010000,1761.806500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4295,4320.000000,107,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,107,0,24142.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1743,4320.000000,107,0,34324.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3991,4320.000000,107,0,79757.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,484,4320.000000,107,0,8924.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,492,4320.000000,107,0,8964.020000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2261,4320.000000,107,0,43517.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,108,0,25978.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,243,4320.000000,108,0,6382.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,108,0,6491.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2482,4320.000000,108,0,53329.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1546,4320.000000,108,0,31030.010000,1754.006500,baseline,nbiot,180 +on1,0,0,23,0,0,4297,4300.000000,108,0,-1.000000,1837.000000,baseline,nbiot,180 +on3,0,0,24,1,0,1360,4320.000000,108,0,25933.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,108,0,14133.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2403,4320.000000,108,0,49850.010000,1754.656500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,108,0,-1.000000,2045.921500,baseline,nbiot,180 +on10,0,0,24,1,0,384,4320.000000,108,0,9945.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2212,4320.000000,108,0,45793.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1082,4320.000000,108,0,24593.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,935,4320.000000,109,0,20162.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1910,4320.000000,109,0,38665.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,101,4320.000000,109,0,845.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,109,0,-1.000000,1954.902000,baseline,nbiot,180 +on6,0,0,24,0,0,4292,4320.000000,109,0,-1.000000,1746.850000,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,109,0,6930.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,109,0,38740.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,109,0,11908.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,109,0,8354.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,599,4320.000000,109,0,11822.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,110,0,-1.000000,1983.495500,baseline,nbiot,180 +on11,0,0,24,1,0,1758,4320.000000,110,0,34054.010000,1754.656500,baseline,nbiot,180 +on6,0,0,24,1,0,3378,4320.000000,110,0,68116.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1316,4320.000000,110,0,26511.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,27,4320.000000,110,0,2285.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,821,4320.000000,110,0,17235.010000,1772.206500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,868,4320.000000,110,0,19007.010000,1775.450000,baseline,nbiot,180 +on1,0,0,24,1,0,2870,4320.000000,110,0,60284.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,210,4320.000000,110,0,6192.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,111,0,-1.000000,2003.008500,baseline,nbiot,180 +on4,0,0,24,1,0,1448,4320.000000,111,0,30163.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4308,4320.000000,111,0,-1.000000,1736.450000,baseline,nbiot,180 +on10,0,0,24,1,0,1120,4320.000000,111,0,24248.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,111,0,47636.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,459,4320.000000,111,0,7525.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,3092,4320.000000,111,0,62711.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2112,4320.000000,111,0,44344.010000,1887.906500,baseline,nbiot,180 +on6,0,0,24,1,0,2899,4320.000000,111,0,60278.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2110,4320.000000,111,0,41380.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1919,4320.000000,111,0,38004.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2064,4320.000000,112,0,39922.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,112,0,-1.000000,1961.402000,baseline,nbiot,180 +on11,0,0,24,1,0,1980,4320.000000,112,0,40011.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,37,4320.000000,112,0,1296.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1984,4320.000000,112,0,39962.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1328,4320.000000,112,0,26724.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2355,4320.000000,112,0,48290.010000,1767.656500,baseline,nbiot,180 +on5,0,0,24,1,0,3792,4320.000000,112,0,77293.010000,1765.706500,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,112,0,18995.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4319,4320.000000,113,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4301,4320.000000,113,0,-1.000000,1845.000000,baseline,nbiot,180 +on3,0,0,24,1,0,2700,4320.000000,113,0,57367.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4281,4320.000000,113,0,-1.000000,1845.000000,baseline,nbiot,180 +on1,0,0,24,1,0,677,4320.000000,113,0,11299.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,60,4320.000000,113,0,478.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,784,4320.000000,113,0,14702.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,113,0,-1.000000,2002.358500,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,113,0,20475.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2348,4320.000000,113,0,50046.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2055,4320.000000,113,0,41403.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2233,4320.000000,113,0,43623.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3197,4320.000000,113,0,62991.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4285,4320.000000,114,0,-1.000000,1751.400000,baseline,nbiot,180 +on5,0,0,24,1,0,645,4320.000000,114,0,12741.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,114,0,6488.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3028,4320.000000,114,0,64369.010000,1967.850000,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,114,0,22286.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,87,4320.000000,114,0,1068.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,114,0,41614.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4300,4320.000000,114,0,-1.000000,1741.650000,baseline,nbiot,180 +on10,0,0,24,1,0,1077,4320.000000,114,0,22326.020000,1759.206500,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,114,0,9964.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2331,4320.000000,114,0,50276.010000,1871.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,114,0,-1.000000,2062.158500,baseline,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,114,0,46651.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4303,4320.000000,115,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4256,4320.000000,115,0,-1.000000,1770.900000,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,115,0,-1.000000,1993.902000,baseline,nbiot,180 +on10,0,0,24,1,0,1491,4320.000000,115,0,31604.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2819,4320.000000,115,0,57569.020000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2735,4320.000000,115,0,57529.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3162,4320.000000,115,0,64633.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,115,0,3243.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,115,0,13712.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,115,0,16226.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,561,4320.000000,115,0,13752.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4316,4320.000000,115,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,1,0,643,4320.000000,116,0,13131.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,116,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,116,0,22139.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,116,0,-1.000000,2066.715000,baseline,nbiot,180 +on2,0,0,24,1,0,1602,4320.000000,116,0,32722.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3228,4320.000000,116,0,67136.020000,1764.406500,baseline,nbiot,180 +on11,0,0,24,1,0,1807,4320.000000,116,0,39381.010000,1754.006500,baseline,nbiot,180 +on6,0,0,23,1,0,68,4248.000000,116,0,214.010000,1725.206500,baseline,nbiot,180 +on3,0,0,24,1,0,712,4320.000000,116,0,16338.010000,1759.850000,baseline,nbiot,180 +on10,0,0,24,1,0,3303,4320.000000,116,0,67096.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,864,4320.000000,116,0,18235.010000,1778.056500,baseline,nbiot,180 +on7,0,0,24,1,0,463,4320.000000,116,0,10071.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,116,0,325.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,84,4320.000000,117,0,3274.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2685,4320.000000,117,0,55446.010000,1764.406500,baseline,nbiot,180 +on5,0,0,24,0,0,4286,4320.000000,117,0,-1.000000,1856.700000,baseline,nbiot,180 +on12,0,0,24,1,0,3170,4320.000000,117,0,62586.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,117,0,4115.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4295,4320.000000,117,0,-1.000000,1744.900000,baseline,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,117,0,62677.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,117,0,-1.000000,2020.545500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,3029,4320.000000,117,0,62632.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4301,4320.000000,117,0,-1.000000,1835.893500,baseline,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,117,0,19050.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2700,4320.000000,117,0,55549.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3971,4320.000000,118,0,81998.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3612,4320.000000,118,0,73803.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4302,4320.000000,118,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4306,4320.000000,118,0,-1.000000,1845.000000,baseline,nbiot,180 +on8,0,0,24,1,0,728,4320.000000,118,0,17440.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,118,0,31537.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,118,0,12078.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,4174,4320.000000,118,0,86017.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,118,0,-1.000000,1984.158500,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,118,0,17400.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,118,0,35520.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,267,4320.000000,118,0,6482.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,962,4320.000000,119,0,18102.010000,1754.006500,baseline,nbiot,180 +on8,0,0,23,1,0,827,4270.000000,119,0,15414.010000,1734.006500,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,119,0,18157.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1047,4320.000000,119,0,23285.010000,1776.100000,baseline,nbiot,180 +on12,0,0,24,0,0,4291,4320.000000,119,0,-1.000000,1747.493500,baseline,nbiot,180 +on5,0,0,24,1,0,611,4320.000000,119,0,12248.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,39,4320.000000,119,0,2371.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,119,0,9556.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,119,0,-1.000000,2055.658500,baseline,nbiot,180 +on11,0,0,24,1,0,3600,4320.000000,119,0,75557.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,254,4320.000000,119,0,5145.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,119,0,28764.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2384,4320.000000,119,0,47322.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2160,4320.000000,120,0,45114.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,120,0,10054.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,286,4320.000000,120,0,6993.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,120,0,7118.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,120,0,28238.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,120,0,31923.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,601,4320.000000,120,0,13571.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,120,0,28165.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,120,0,1370.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,120,0,49049.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4301,4320.000000,120,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,51,4320.000000,120,0,1295.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,120,0,-1.000000,2027.071500,baseline,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,121,0,16542.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3975,4320.000000,121,0,80183.010000,1969.800000,baseline,nbiot,180 +on12,0,0,22,1,0,1463,4256.000000,121,0,32275.010000,1845.406500,baseline,nbiot,180 +on1,0,0,24,0,0,4292,4320.000000,121,0,-1.000000,1746.850000,baseline,nbiot,180 +on2,0,0,24,1,0,1754,4320.000000,121,0,33595.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,121,0,39731.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2220,4320.000000,121,0,46889.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,121,0,2345.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2258,4320.000000,121,0,46929.020000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2436,4320.000000,121,0,46969.030000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,121,0,-1.000000,2055.008500,baseline,nbiot,180 +on4,0,0,24,1,0,3600,4320.000000,121,0,72641.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3420,4320.000000,122,0,68832.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,122,0,33642.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,122,0,-1.000000,1964.002000,baseline,nbiot,180 +on7,0,0,24,1,0,4127,4320.000000,122,0,83816.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,137,4320.000000,122,0,1031.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,122,0,63389.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,2374,4320.000000,122,0,48002.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,122,0,8078.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2777,4320.000000,122,0,54498.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4314,4320.000000,122,0,-1.000000,1733.200000,baseline,nbiot,180 +on8,0,0,24,0,0,4277,4320.000000,123,0,-1.000000,1757.900000,baseline,nbiot,180 +on11,0,0,24,1,0,1569,4320.000000,123,0,30078.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,123,0,509.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,918,4320.000000,123,0,20879.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4288,4320.000000,123,0,-1.000000,1749.450000,baseline,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,123,0,61341.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,123,0,16306.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2355,4320.000000,123,0,48032.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4276,4320.000000,123,0,-1.000000,1757.887000,baseline,nbiot,180 +on4,0,0,24,1,0,1495,4320.000000,123,0,30038.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1271,4320.000000,123,0,26814.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,123,0,-1.000000,2017.289000,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,124,0,11721.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,124,0,10734.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4283,4320.000000,124,0,-1.000000,1752.693500,baseline,nbiot,180 +on12,0,0,24,1,0,1644,4320.000000,124,0,33503.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,124,0,37093.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2787,4320.000000,124,0,55796.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,124,0,5648.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1643,4320.000000,124,0,33425.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,124,0,3087.010000,1754.006500,baseline,nbiot,180 +on3,0,0,23,1,0,840,4260.000000,124,0,19595.010000,1730.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4308,4320.000000,124,0,-1.000000,1736.450000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,124,0,-1.000000,2044.608500,baseline,nbiot,180 +on4,0,0,23,1,0,2290,4236.000000,124,0,49561.010000,1743.806500,baseline,nbiot,180 +on6,0,0,24,1,0,32,4320.000000,125,0,1181.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,591,4320.000000,125,0,13905.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,125,0,23834.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3695,4320.000000,125,0,75301.010000,1884.006500,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,125,0,14852.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,125,0,1268.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,1955,4320.000000,125,0,40355.010000,1771.556500,baseline,nbiot,180 +on1,0,0,24,0,0,4263,4320.000000,125,0,-1.000000,1869.700000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1758,4320.000000,125,0,35365.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,125,0,9589.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,125,0,-1.000000,2045.258500,baseline,nbiot,180 +on12,0,0,24,1,0,798,4320.000000,126,0,16382.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,747,4320.000000,126,0,16462.040000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,838,4320.000000,126,0,16422.030000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1756,4320.000000,126,0,35342.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,126,0,11587.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,126,0,-1.000000,1988.065000,baseline,nbiot,180 +on6,0,0,24,1,0,853,4320.000000,126,0,16342.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,927,4320.000000,126,0,19145.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,126,0,8477.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,126,0,42987.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3266,4320.000000,126,0,67498.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,127,0,1414.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,127,0,-1.000000,1990.665000,baseline,nbiot,180 +on9,0,0,24,1,0,984,4320.000000,127,0,19764.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,127,0,19842.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1131,4320.000000,127,0,21981.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,673,4320.000000,127,0,14320.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,127,0,1463.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1095,4320.000000,127,0,22021.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,127,0,19889.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,127,0,29033.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,127,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4317,4320.000000,127,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,774,4320.000000,127,0,15438.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3780,4320.000000,128,0,76125.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,435,4320.000000,128,0,8458.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,128,0,1442.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1819,4320.000000,128,0,39073.020000,1777.406500,baseline,nbiot,180 +on8,0,0,24,1,0,1572,4320.000000,128,0,29367.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1000,4320.000000,128,0,19561.020000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,853,4320.000000,128,0,15188.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1744,4320.000000,128,0,34758.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,128,0,8518.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,903,4320.000000,128,0,19521.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1917,4320.000000,128,0,39033.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,128,0,-1.000000,2037.471500,baseline,nbiot,180 +on1,0,0,24,1,0,756,4320.000000,129,0,18049.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,129,0,-1.000000,2023.815000,baseline,nbiot,180 +on4,0,0,24,1,0,2032,4320.000000,129,0,41188.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2340,4320.000000,129,0,48001.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1615,4320.000000,129,0,35566.010000,1757.906500,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,129,0,17070.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,129,0,2468.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,313,4320.000000,129,0,5624.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,16,4320.000000,129,0,2377.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4312,4320.000000,129,0,-1.000000,1822.893500,baseline,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,129,0,35499.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,129,0,18108.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,129,0,45328.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2034,4320.000000,130,0,40565.020000,1762.456500,baseline,nbiot,180 +on3,0,0,24,1,0,2,4320.000000,130,0,1779.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1579,4320.000000,130,0,33418.010000,1781.956500,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,130,0,7180.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,130,0,1739.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3514,4320.000000,130,0,75378.010000,1991.893500,baseline,nbiot,180 +on10,0,0,23,1,0,1977,4278.000000,130,0,40605.030000,1854.206500,baseline,nbiot,180 +on4,0,0,24,1,0,1575,4320.000000,130,0,30614.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1636,4320.000000,130,0,33458.020000,1754.006500,baseline,nbiot,180 +on5,0,0,23,1,0,419,4291.000000,130,0,8831.010000,1742.406500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,130,0,-1.000000,2158.365000,baseline,nbiot,180 +on1,0,0,24,1,0,2542,4320.000000,130,0,51580.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2073,4320.000000,130,0,40525.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1804,4320.000000,131,0,39100.010000,2004.906500,baseline,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,131,0,34584.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,131,0,6801.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,131,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4287,4320.000000,131,0,-1.000000,1750.743500,baseline,nbiot,180 +on5,0,0,24,0,0,4286,4320.000000,131,0,-1.000000,1863.200000,baseline,nbiot,180 +on11,0,0,24,1,0,2160,4320.000000,131,0,44224.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,258,4320.000000,131,0,6757.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,303,4320.000000,131,0,6717.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,131,0,24309.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,131,0,-1.000000,2053.702000,baseline,nbiot,180 +on2,0,0,24,1,0,2771,4320.000000,131,0,54593.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,131,0,14164.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,132,0,-1.000000,2014.071500,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,132,0,1824.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1260,4320.000000,132,0,28355.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,757,4320.000000,132,0,16870.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1339,4320.000000,132,0,28232.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,132,0,5611.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,132,0,64116.010000,1754.006500,baseline,nbiot,180 +on12,0,0,23,0,0,4248,4248.000000,132,0,-1.000000,1699.200000,baseline,nbiot,180 +on6,0,0,24,1,0,627,4320.000000,132,0,12962.010000,1754.006500,baseline,nbiot,180 +on10,0,0,23,1,0,399,4224.000000,132,0,9225.010000,1715.606500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,132,0,9322.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,132,0,16980.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,132,0,1887.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,58,4320.000000,133,0,858.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,264,4320.000000,133,0,6095.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3,4320.000000,133,0,898.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4299,4320.000000,133,0,-1.000000,1742.300000,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,133,0,7423.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,133,0,26754.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,133,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1904,4320.000000,133,0,36502.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,260,4320.000000,133,0,6135.020000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,133,0,-1.000000,2023.815000,baseline,nbiot,180 +on9,0,0,24,1,0,2513,4320.000000,133,0,53650.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2406,4320.000000,133,0,50209.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1874,4320.000000,133,0,36542.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3883,4320.000000,134,0,78276.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2486,4320.000000,134,0,53633.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,134,0,3714.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,750,4320.000000,134,0,15266.020000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1341,4320.000000,134,0,27333.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2030,4320.000000,134,0,41818.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,134,0,23881.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,134,0,3757.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,710,4320.000000,134,0,15226.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,134,0,44585.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,134,0,36420.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,134,0,-1.000000,2059.571500,baseline,nbiot,180 +on12,0,0,23,1,0,45,4261.000000,135,0,3609.010000,1730.406500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,135,0,-1.000000,1982.858500,baseline,nbiot,180 +on6,0,0,24,1,0,294,4320.000000,135,0,5441.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4319,4320.000000,135,0,-1.000000,1729.300000,baseline,nbiot,180 +on3,0,0,24,0,0,4291,4320.000000,135,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,135,0,61836.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1735,4320.000000,135,0,32926.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,448,4320.000000,135,0,10799.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2089,4320.000000,135,0,40213.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,135,0,45246.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,303,4320.000000,135,0,5401.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,135,0,14538.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,136,0,1470.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2925,4320.000000,136,0,59300.020000,1895.056500,baseline,nbiot,180 +on2,0,0,24,1,0,1842,4320.000000,136,0,36943.010000,1759.206500,baseline,nbiot,180 +on11,0,0,24,0,0,4315,4320.000000,136,0,-1.000000,1731.900000,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,136,0,14559.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2757,4320.000000,136,0,54664.010000,1756.606500,baseline,nbiot,180 +on3,0,0,24,0,0,4289,4320.000000,136,0,-1.000000,1748.800000,baseline,nbiot,180 +on12,0,0,24,1,0,1889,4320.000000,136,0,36983.020000,1754.006500,baseline,nbiot,180 +on1,0,0,23,1,0,220,4253.000000,136,0,7254.010000,1727.206500,baseline,nbiot,180 +on4,0,0,24,1,0,2889,4320.000000,136,0,59260.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,136,0,22953.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,4278,4320.000000,136,0,85964.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,136,0,-1.000000,2075.165000,baseline,nbiot,180 +on1,0,0,24,1,0,3578,4320.000000,137,0,73168.010000,1768.956500,baseline,nbiot,180 +on9,0,0,24,1,0,675,4320.000000,137,0,11600.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,137,0,40917.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1072,4320.000000,137,0,23761.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1827,4320.000000,137,0,38359.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4243,4320.000000,137,0,-1.000000,1982.150000,baseline,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,137,0,23711.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,137,0,9680.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,137,0,-1.000000,2088.821500,baseline,nbiot,180 +on11,0,0,24,1,0,3180,4320.000000,137,0,63947.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,137,0,15003.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,297,4320.000000,137,0,4112.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,137,0,9741.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,3555,4320.000000,138,0,71760.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,138,0,53768.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,491,4320.000000,138,0,7988.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1982,4320.000000,138,0,40719.010000,1988.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4299,4320.000000,138,0,-1.000000,1742.300000,baseline,nbiot,180 +on8,0,0,24,1,0,204,4320.000000,138,0,6047.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2212,4320.000000,138,0,45897.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,138,0,30635.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1902,4320.000000,138,0,39088.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2231,4320.000000,138,0,45857.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,138,0,-1.000000,2035.521500,baseline,nbiot,180 +on11,0,0,24,1,0,1683,4320.000000,138,0,35854.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1521,4320.000000,138,0,30538.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,139,0,-1.000000,1962.058500,baseline,nbiot,180 +on3,0,0,24,1,0,1752,4320.000000,139,0,35822.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2799,4320.000000,139,0,54921.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,82,4320.000000,139,0,370.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,37,4320.000000,139,0,330.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1737,4320.000000,139,0,35782.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,139,0,26836.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,139,0,18709.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,762,4320.000000,139,0,15468.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,139,0,24667.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,3232,4320.000000,140,0,66085.010000,1871.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1711,4320.000000,140,0,33205.020000,1760.493500,baseline,nbiot,180 +on12,0,0,24,0,0,4318,4320.000000,140,0,-1.000000,1729.950000,baseline,nbiot,180 +on8,0,0,24,1,0,3600,4320.000000,140,0,74527.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,757,4320.000000,140,0,17306.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1213,4320.000000,140,0,23256.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,140,0,36722.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,393,4320.000000,140,0,10503.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,236,4320.000000,140,0,7124.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,140,0,-1.000000,2028.358500,baseline,nbiot,180 +on6,0,0,24,1,0,1708,4320.000000,140,0,33165.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,310,4320.000000,140,0,7084.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,478,4320.000000,140,0,10463.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,141,0,21545.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,4048,4320.000000,141,0,81026.010000,1871.006500,baseline,nbiot,180 +on10,0,0,24,1,0,3551,4320.000000,141,0,69523.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,210,4320.000000,141,0,6275.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1909,4320.000000,141,0,36789.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,141,0,27730.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,141,0,-1.000000,2030.315000,baseline,nbiot,180 +on8,0,0,24,1,0,3633,4320.000000,141,0,72549.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2996,4320.000000,141,0,58451.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2934,4320.000000,141,0,58491.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,141,0,6235.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,142,0,55498.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1210,4320.000000,142,0,22153.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4294,4320.000000,142,0,-1.000000,1745.550000,baseline,nbiot,180 +on2,0,0,24,0,0,4285,4320.000000,142,0,-1.000000,1950.293500,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,142,0,1403.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2724,4320.000000,142,0,55419.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,215,4320.000000,142,0,5923.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4292,4320.000000,142,0,-1.000000,1845.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,142,0,61016.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,142,0,20149.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,142,0,10626.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,142,0,-1.000000,1996.495500,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,143,0,28440.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,143,0,20390.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,508,4320.000000,143,0,13287.010000,1775.456500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,4071,4320.000000,143,0,80103.010000,1772.856500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,143,0,-1.000000,2043.965000,baseline,nbiot,180 +on2,0,0,24,1,0,2160,4320.000000,143,0,43770.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,143,0,23791.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1198,4320.000000,143,0,23727.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4318,4320.000000,143,0,-1.000000,1729.950000,baseline,nbiot,180 +on11,0,0,24,1,0,1117,4320.000000,143,0,23831.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1458,4320.000000,143,0,32456.020000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1456,4320.000000,143,0,32416.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,144,0,38634.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3530,4320.000000,144,0,70847.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,42,4320.000000,144,0,553.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,21,4320.000000,144,0,593.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,144,0,46017.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,144,0,19592.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,144,0,-1.000000,2062.821500,baseline,nbiot,180 +on10,0,0,24,1,0,3060,4320.000000,144,0,61432.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1317,4320.000000,144,0,25580.010000,1865.800000,baseline,nbiot,180 +on5,0,0,24,1,0,2340,4320.000000,144,0,49947.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2348,4320.000000,144,0,49987.020000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,144,0,17531.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2989,4320.000000,144,0,61303.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,145,0,25550.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,32,4320.000000,145,0,2726.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1677,4320.000000,145,0,35301.010000,1883.356500,baseline,nbiot,180 +on8,0,0,24,1,0,911,4320.000000,145,0,19077.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,145,0,-1.000000,2127.828000,baseline,nbiot,180 +on5,0,0,24,1,0,2688,4320.000000,145,0,56116.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,707,4320.000000,145,0,18002.010000,1871.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1461,4320.000000,145,0,31816.010000,1779.356500,baseline,nbiot,180 +on4,0,0,24,1,0,264,4320.000000,145,0,6306.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1177,4320.000000,145,0,22863.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,480,4320.000000,145,0,8480.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3028,4320.000000,145,0,61600.010000,1775.456500,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,145,0,8550.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,146,0,-1.000000,2058.928000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,146,0,11239.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,825,4320.000000,146,0,17339.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,741,4320.000000,146,0,17379.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1065,4320.000000,146,0,24141.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,146,0,62114.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3359,4320.000000,146,0,66841.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,146,0,24054.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2148,4320.000000,146,0,44695.010000,1762.456500,baseline,nbiot,180 +on9,0,0,24,1,0,580,4320.000000,146,0,11103.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,548,4320.000000,146,0,11143.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3240,4320.000000,146,0,66962.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3116,4320.000000,146,0,62038.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2857,4320.000000,147,0,58816.010000,1775.456500,baseline,nbiot,180 +on5,0,0,24,1,0,1295,4320.000000,147,0,26272.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2520,4320.000000,147,0,51676.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,147,0,11042.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,394,4320.000000,147,0,7380.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,147,0,3693.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4301,4320.000000,147,0,-1.000000,1741.643500,baseline,nbiot,180 +on7,0,0,24,1,0,2413,4320.000000,147,0,50207.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,147,0,7340.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4300,4320.000000,147,0,-1.000000,1741.650000,baseline,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,147,0,64198.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,147,0,-1.000000,2010.802000,baseline,nbiot,180 +on1,0,0,24,1,0,3705,4320.000000,148,0,72814.010000,1763.106500,baseline,nbiot,180 +on11,0,0,24,1,0,1958,4320.000000,148,0,41608.010000,1871.006500,baseline,nbiot,180 +on4,0,0,24,1,0,660,4320.000000,148,0,12055.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,539,4320.000000,148,0,12100.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,42,4320.000000,148,0,1109.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,66,4320.000000,148,0,1149.030000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,148,0,24422.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2693,4320.000000,148,0,54996.010000,1759.206500,baseline,nbiot,180 +on7,0,0,24,1,0,837,4320.000000,148,0,17425.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,148,0,-1.000000,2069.965000,baseline,nbiot,180 +on12,0,0,24,1,0,52,4320.000000,148,0,1069.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4302,4320.000000,148,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2164,4320.000000,148,0,44528.010000,1767.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1820,4320.000000,149,0,39261.010000,1871.006500,baseline,nbiot,180 +on2,0,0,24,1,0,4019,4320.000000,149,0,81306.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1494,4320.000000,149,0,29826.020000,1783.906500,baseline,nbiot,180 +on12,0,0,24,1,0,2880,4320.000000,149,0,60769.010000,1754.006500,baseline,nbiot,180 +on1,0,0,23,1,0,2602,4290.000000,149,0,51398.010000,1742.006500,baseline,nbiot,180 +on3,0,0,24,1,0,765,4320.000000,149,0,15142.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,149,0,-1.000000,2067.371500,baseline,nbiot,180 +on10,0,0,24,1,0,1572,4320.000000,149,0,29786.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,18,4320.000000,149,0,1781.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,149,0,21397.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,149,0,15196.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,2675,4320.000000,149,0,54144.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4316,4320.000000,150,0,-1.000000,1731.250000,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,150,0,21990.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,19,4320.000000,150,0,729.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,467,4320.000000,150,0,9462.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2274,4320.000000,150,0,43638.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,150,0,-1.000000,1978.958500,baseline,nbiot,180 +on8,0,0,24,1,0,3139,4320.000000,150,0,62902.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,548,4320.000000,150,0,12107.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1611,4320.000000,150,0,35331.010000,1767.656500,baseline,nbiot,180 +on3,0,0,24,1,0,661,4320.000000,150,0,12067.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,387,4320.000000,150,0,9502.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,715,4320.000000,151,0,16952.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1663,4320.000000,151,0,34241.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3240,4320.000000,151,0,65559.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,67,4320.000000,151,0,2463.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2833,4320.000000,151,0,55077.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1142,4320.000000,151,0,23390.020000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1208,4320.000000,151,0,23350.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,151,0,7528.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1800,4320.000000,151,0,36385.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,151,0,-1.000000,2088.828000,baseline,nbiot,180 +on12,0,0,24,1,0,1346,4320.000000,151,0,26744.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1231,4320.000000,151,0,26784.020000,1871.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3386,4320.000000,151,0,69690.010000,1889.856500,baseline,nbiot,180 +on1,0,0,24,1,0,87,4320.000000,152,0,3120.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,669,4320.000000,152,0,11855.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,32,4320.000000,152,0,3160.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3065,4320.000000,152,0,61395.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1705,4320.000000,152,0,34191.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,152,0,60588.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3250,4320.000000,152,0,66754.010000,1988.006500,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,152,0,8375.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,383,4320.000000,152,0,8415.020000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,152,0,5591.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,152,0,-1.000000,1995.865000,baseline,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,153,0,36666.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,153,0,36744.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,297,4320.000000,153,0,7261.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,153,0,50530.010000,1754.006500,baseline,nbiot,180 +on11,0,0,23,1,0,1396,4276.000000,153,0,30283.010000,1736.406500,baseline,nbiot,180 +on7,0,0,24,1,0,2891,4320.000000,153,0,60175.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,913,4320.000000,153,0,20993.020000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,153,0,-1.000000,2060.878000,baseline,nbiot,180 +on6,0,0,24,1,0,4140,4320.000000,153,0,84525.010000,1754.656500,baseline,nbiot,180 +on2,0,0,24,1,0,1872,4320.000000,153,0,36613.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,996,4320.000000,153,0,20953.010000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3361,4320.000000,153,0,66959.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,153,0,40265.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,154,0,13463.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1406,4320.000000,154,0,29070.020000,1780.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2919,4320.000000,154,0,59614.010000,1988.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1528,4320.000000,154,0,29030.010000,1828.106500,baseline,nbiot,180 +on11,0,0,24,1,0,2265,4320.000000,154,0,43439.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,667,4320.000000,154,0,13391.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,154,0,37580.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,704,4320.000000,154,0,17979.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3616,4320.000000,154,0,73436.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,154,0,-1.000000,2085.565000,baseline,nbiot,180 +on6,0,0,24,1,0,3075,4320.000000,154,0,63267.010000,1774.806500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,155,0,-1.000000,2052.415000,baseline,nbiot,180 +on10,0,0,24,1,0,471,4320.000000,155,0,7537.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2417,4320.000000,155,0,50014.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3692,4320.000000,155,0,74190.010000,1763.106500,baseline,nbiot,180 +on6,0,0,24,1,0,2332,4320.000000,155,0,50092.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4308,4320.000000,155,0,-1.000000,1848.243500,baseline,nbiot,180 +on9,0,0,24,1,0,1669,4320.000000,155,0,33247.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,912,4320.000000,155,0,19009.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,155,0,19073.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,906,4320.000000,155,0,19113.020000,1871.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,155,0,30249.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,737,4320.000000,155,0,17783.010000,1754.656500,baseline,nbiot,180 +on8,0,0,23,1,0,180,4269.000000,155,0,5031.010000,1733.606500,baseline,nbiot,180 +on11,0,0,24,1,0,2160,4320.000000,156,0,45931.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3960,4320.000000,156,0,79599.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,194,4320.000000,156,0,6037.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1800,4320.000000,156,0,36801.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,156,0,25357.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3420,4320.000000,156,0,68647.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1,4320.000000,156,0,3330.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,156,0,14369.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1280,4320.000000,156,0,25300.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1433,4320.000000,156,0,29213.010000,1873.606500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,156,0,-1.000000,2019.921500,baseline,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,156,0,48160.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1620,4320.000000,157,0,34635.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4304,4320.000000,157,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,407,4320.000000,157,0,8382.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,157,0,24223.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,157,0,58975.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,157,0,11829.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,157,0,5186.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3240,4320.000000,157,0,66947.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1556,4320.000000,157,0,31933.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,157,0,-1.000000,1947.102000,baseline,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,158,0,32625.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1468,4320.000000,158,0,29242.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2259,4320.000000,158,0,43374.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4291,4320.000000,158,0,-1.000000,1845.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,1244,4320.000000,158,0,26464.010000,1895.056500,baseline,nbiot,180 +on2,0,0,24,1,0,2340,4320.000000,158,0,47173.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,158,0,50746.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,158,0,-1.000000,2021.852000,baseline,nbiot,180 +on9,0,0,24,1,0,688,4320.000000,158,0,17497.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,566,4320.000000,158,0,13377.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4309,4320.000000,158,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,159,0,5607.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2367,4320.000000,159,0,48722.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,159,0,-1.000000,2063.478000,baseline,nbiot,180 +on6,0,0,24,1,0,761,4320.000000,159,0,16360.020000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2066,4320.000000,159,0,42225.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,396,4320.000000,159,0,9026.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,52,4320.000000,159,0,3361.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2813,4320.000000,159,0,57221.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,395,4320.000000,159,0,8986.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1622,4320.000000,159,0,36012.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2046,4320.000000,159,0,42185.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,159,0,30888.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,730,4320.000000,159,0,16320.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1398,4320.000000,160,0,27267.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,655,4320.000000,160,0,11375.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2332,4320.000000,160,0,50126.010000,1759.856500,baseline,nbiot,180 +on6,0,0,24,1,0,10,4320.000000,160,0,347.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,160,0,25117.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1581,4320.000000,160,0,34439.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,160,0,20481.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,250,4320.000000,160,0,4452.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,160,0,483.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,160,0,-1.000000,2078.421500,baseline,nbiot,180 +on3,0,0,24,1,0,831,4320.000000,160,0,17943.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1431,4320.000000,160,0,32416.010000,1760.500000,baseline,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,160,0,25037.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,161,0,12422.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1303,4320.000000,161,0,26144.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,161,0,7484.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4316,4320.000000,161,0,-1.000000,1731.250000,baseline,nbiot,180 +on6,0,0,24,1,0,4066,4320.000000,161,0,79723.010000,1769.606500,baseline,nbiot,180 +on5,0,0,24,1,0,727,4320.000000,161,0,17417.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,161,0,-1.000000,2020.565000,baseline,nbiot,180 +on9,0,0,24,1,0,1011,4320.000000,161,0,18407.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,600,4320.000000,161,0,12366.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3,4320.000000,161,0,2015.010000,1754.006500,baseline,nbiot,180 +on4,0,0,23,1,0,0,4192.000000,161,0,2072.010000,1702.806500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,161,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,161,0,29864.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,713,4320.000000,162,0,14798.010000,1846.950000,baseline,nbiot,180 +on12,0,0,24,1,0,371,4320.000000,162,0,8735.020000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,83,4320.000000,162,0,498.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,162,0,43925.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2513,4320.000000,162,0,53212.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,162,0,63804.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,162,0,31449.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,273,4320.000000,162,0,4244.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,162,0,11277.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,282,4320.000000,162,0,4284.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,436,4320.000000,162,0,8695.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,162,0,-1.000000,2070.621500,baseline,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,162,0,4380.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2743,4320.000000,163,0,54980.010000,1754.006500,baseline,nbiot,180 +on8,0,0,23,0,0,4280,4280.000000,163,0,-1.000000,1712.000000,baseline,nbiot,180 +on2,0,0,24,1,0,205,4320.000000,163,0,7258.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,935,4320.000000,163,0,19109.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,163,0,63228.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,163,0,-1.000000,2036.821500,baseline,nbiot,180 +on11,0,0,24,1,0,4115,4320.000000,163,0,84251.010000,1770.906500,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,163,0,14219.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2602,4320.000000,163,0,51603.010000,1759.856500,baseline,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,163,0,48295.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1751,4320.000000,163,0,36014.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1086,4320.000000,163,0,23519.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,163,0,122.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,219,4320.000000,164,0,4401.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,164,0,-1.000000,2092.071500,baseline,nbiot,180 +on11,0,0,24,1,0,1969,4320.000000,164,0,40015.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,164,0,8215.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,164,0,11334.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4292,4320.000000,164,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1776,4320.000000,164,0,39305.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3670,4320.000000,164,0,75499.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1969,4320.000000,164,0,40055.020000,1775.456500,baseline,nbiot,180 +on5,0,0,24,1,0,1260,4320.000000,164,0,26718.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,164,0,2626.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1651,4320.000000,164,0,34626.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,164,0,17850.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1712,4320.000000,165,0,34828.010000,1770.906500,baseline,nbiot,180 +on9,0,0,24,1,0,2302,4320.000000,165,0,48092.010000,1779.356500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,165,0,-1.000000,2028.352000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2700,4320.000000,165,0,57443.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,83,4320.000000,165,0,1287.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4316,4320.000000,165,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,2340,4320.000000,165,0,48029.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3306,4320.000000,165,0,67274.010000,1884.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4305,4320.000000,165,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,165,0,52865.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1475,4320.000000,165,0,31257.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,859,4320.000000,166,0,16362.020000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,166,0,-1.000000,2003.658500,baseline,nbiot,180 +on11,0,0,24,0,0,4308,4320.000000,166,0,-1.000000,2079.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,166,0,26911.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,489,4320.000000,166,0,7607.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2880,4320.000000,166,0,60666.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4273,4320.000000,166,0,-1.000000,1863.200000,baseline,nbiot,180 +on7,0,0,24,1,0,763,4320.000000,166,0,16322.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1838,4320.000000,166,0,39062.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2595,4320.000000,166,0,53055.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,912,4320.000000,166,0,21397.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,279,4320.000000,166,0,5475.010000,1754.006500,baseline,nbiot,180 +on3,0,0,23,1,0,2150,4310.000000,167,0,46016.010000,1750.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,167,0,30323.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,394,4320.000000,167,0,9899.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,239,4320.000000,167,0,6721.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,167,0,20350.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4306,4320.000000,167,0,-1.000000,1845.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4282,4320.000000,167,0,-1.000000,1753.343500,baseline,nbiot,180 +on5,0,0,23,1,0,2468,4268.000000,167,0,53912.010000,1733.206500,baseline,nbiot,180 +on9,0,0,24,0,0,4316,4320.000000,167,0,-1.000000,1731.243500,baseline,nbiot,180 +on12,0,0,24,1,0,2993,4320.000000,167,0,60998.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,167,0,-1.000000,2012.745500,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,167,0,9999.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3993,4320.000000,167,0,82277.010000,1766.356500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,168,0,-1.000000,2077.108500,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,168,0,11707.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,330,4320.000000,168,0,9150.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1195,4320.000000,168,0,25103.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,168,0,9200.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,168,0,7224.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1648,4320.000000,168,0,34071.010000,1859.300000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,477,4320.000000,168,0,9090.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1414,4320.000000,168,0,32150.010000,1871.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,3373,4320.000000,168,0,69532.010000,1988.006500,baseline,nbiot,180 +on3,0,0,23,1,0,2452,4252.000000,168,0,50642.010000,1726.806500,baseline,nbiot,180 +on4,0,0,24,1,0,3652,4320.000000,169,0,74439.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,169,0,47002.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1476,4320.000000,169,0,31780.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,565,4320.000000,169,0,14167.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,169,0,14220.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,739,4320.000000,169,0,17143.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,169,0,-1.000000,1988.058500,baseline,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,169,0,2710.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4282,4320.000000,169,0,-1.000000,1962.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,169,0,22129.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,169,0,36909.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,170,0,9897.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,170,0,16161.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,434,4320.000000,170,0,9780.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1429,4320.000000,170,0,29223.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2497,4320.000000,170,0,52244.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,170,0,16238.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,635,4320.000000,170,0,11057.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3231,4320.000000,170,0,68064.010000,1776.106500,baseline,nbiot,180 +on11,0,0,24,0,0,4307,4320.000000,170,0,-1.000000,1842.393500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,170,0,-1.000000,2094.015000,baseline,nbiot,180 +on7,0,0,24,1,0,2662,4320.000000,170,0,55315.010000,1779.356500,baseline,nbiot,180 +on12,0,0,24,1,0,4140,4320.000000,170,0,85886.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,170,0,39387.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,171,0,16253.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3430,4320.000000,171,0,71069.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,2783,4320.000000,171,0,54690.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,171,0,918.010000,1754.006500,baseline,nbiot,180 +on2,0,0,23,1,0,180,4187.000000,171,0,5517.010000,1700.806500,baseline,nbiot,180 +on10,0,0,24,1,0,1642,4320.000000,171,0,34580.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2030,4320.000000,171,0,39988.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,245,4320.000000,171,0,5412.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1858,4320.000000,171,0,39364.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1260,4320.000000,171,0,25383.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1615,4320.000000,171,0,34540.010000,1757.906500,baseline,nbiot,180 +on12,0,0,24,1,0,3600,4320.000000,171,0,74624.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,171,0,-1.000000,2062.828000,baseline,nbiot,180 +on4,0,0,24,0,0,4284,4320.000000,172,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1532,4320.000000,172,0,29871.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,745,4320.000000,172,0,17575.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,172,0,-1.000000,2038.121500,baseline,nbiot,180 +on1,0,0,24,1,0,3960,4320.000000,172,0,79897.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1326,4320.000000,172,0,28150.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,172,0,8103.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1514,4320.000000,172,0,29831.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,172,0,585.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,172,0,8167.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,738,4320.000000,172,0,17615.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,172,0,6832.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2247,4320.000000,172,0,44951.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,173,0,42618.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,994,4320.000000,173,0,19542.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1044,4320.000000,173,0,23997.010000,1778.056500,baseline,nbiot,180 +on8,0,0,24,0,0,4301,4320.000000,173,0,-1.000000,1845.000000,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,173,0,-1.000000,2043.965000,baseline,nbiot,180 +on5,0,0,24,1,0,3866,4320.000000,173,0,76297.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,173,0,10347.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,173,0,29566.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4292,4320.000000,173,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,19,4320.000000,173,0,1960.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,173,0,33565.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,1860,4320.000000,173,0,38954.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,946,4320.000000,173,0,19582.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1325,4320.000000,174,0,27339.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,174,0,-1.000000,2041.365000,baseline,nbiot,180 +on5,0,0,24,1,0,4100,4320.000000,174,0,83066.010000,1891.800000,baseline,nbiot,180 +on3,0,0,24,1,0,845,4320.000000,174,0,17395.010000,1754.006500,baseline,nbiot,180 +on1,0,0,23,1,0,180,4301.000000,174,0,5810.010000,1746.406500,baseline,nbiot,180 +on4,0,0,24,1,0,3274,4320.000000,174,0,66913.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,174,0,12788.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,2649,4320.000000,174,0,51217.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3828,4320.000000,174,0,76615.010000,1754.006500,baseline,nbiot,180 +on9,0,0,23,1,0,1980,4212.000000,174,0,42617.010000,1710.806500,baseline,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,174,0,9464.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,607,4320.000000,174,0,12707.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1633,4320.000000,175,0,35857.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2130,4320.000000,175,0,43358.010000,1774.156500,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,175,0,17829.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4318,4320.000000,175,0,-1.000000,1845.000000,baseline,nbiot,180 +on7,0,0,24,1,0,51,4320.000000,175,0,2047.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,920,4320.000000,175,0,18726.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,175,0,-1.000000,2057.621500,baseline,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,175,0,22717.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,175,0,18686.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2850,4320.000000,175,0,60378.010000,1775.456500,baseline,nbiot,180 +on6,0,0,24,1,0,3060,4320.000000,175,0,64375.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,2801,4320.000000,175,0,57045.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,302,4320.000000,175,0,7165.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3575,4320.000000,176,0,73264.010000,1796.256500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,176,0,-1.000000,2048.508500,baseline,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,176,0,28785.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1980,4320.000000,176,0,43006.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4285,4320.000000,176,0,-1.000000,1751.400000,baseline,nbiot,180 +on8,0,0,24,1,0,909,4320.000000,176,0,20620.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4313,4320.000000,176,0,-1.000000,1845.000000,baseline,nbiot,180 +on12,0,0,24,1,0,4048,4320.000000,176,0,82000.020000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,4001,4320.000000,176,0,81960.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,770,4320.000000,176,0,17814.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1541,4320.000000,176,0,31292.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,176,0,12012.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,3240,4320.000000,177,0,67370.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,3780,4320.000000,177,0,77627.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,177,0,-1.000000,1990.015000,baseline,nbiot,180 +on5,0,0,24,1,0,4140,4320.000000,177,0,83550.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,177,0,30772.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,177,0,17630.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,177,0,7993.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4319,4320.000000,177,0,-1.000000,1846.300000,baseline,nbiot,180 +on3,0,0,23,1,0,547,4250.000000,177,0,14426.010000,1726.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2611,4320.000000,177,0,50683.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,1,0,230,4320.000000,177,0,6532.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,97,4320.000000,177,0,163.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1747,4320.000000,178,0,36064.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3959,4320.000000,178,0,80450.010000,1755.306500,baseline,nbiot,180 +on3,0,0,24,1,0,2558,4320.000000,178,0,52537.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,178,0,5268.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1391,4320.000000,178,0,28739.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2435,4320.000000,178,0,48604.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1044,4320.000000,178,0,24045.010000,1778.056500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,178,0,-1.000000,2039.421500,baseline,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,178,0,36153.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,178,0,230.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2115,4320.000000,178,0,39777.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,726,4320.000000,178,0,14883.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,4002,4320.000000,179,0,82537.020000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,179,0,20298.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,179,0,37395.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,4008,4320.000000,179,0,82497.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2726,4320.000000,179,0,55923.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,3060,4320.000000,179,0,64791.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,179,0,6082.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,179,0,40455.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4294,4320.000000,179,0,-1.000000,1745.550000,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,179,0,-1.000000,1979.608500,baseline,nbiot,180 +on9,0,0,24,1,0,2019,4320.000000,179,0,40495.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,180,0,31946.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,180,0,-1.000000,2000.408500,baseline,nbiot,180 +on12,0,0,24,1,0,3780,4320.000000,180,0,76439.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4295,4320.000000,180,0,-1.000000,1845.000000,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,180,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,180,0,15242.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,636,4320.000000,180,0,13562.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,920,4320.000000,180,0,18760.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3459,4320.000000,180,0,70933.010000,1871.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1172,4320.000000,180,0,25213.010000,1754.006500,baseline,nbiot,180 +on10,0,0,23,0,0,4289,4289.000000,180,0,-1.000000,1715.600000,baseline,nbiot,180 +on9,0,0,24,1,0,1370,4320.000000,180,0,27423.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,180,0,1863.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1097,4320.000000,181,0,24501.010000,1754.006500,baseline,nbiot,180 +on9,0,0,23,1,0,1500,4295.000000,181,0,31766.010000,1744.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1725,4320.000000,181,0,38865.010000,1900.250000,baseline,nbiot,180 +on10,0,0,24,1,0,24,4320.000000,181,0,1228.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1154,4320.000000,181,0,24579.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,979,4320.000000,181,0,20449.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,14,4320.000000,181,0,1188.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,baseline,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,181,0,16434.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,405,4320.000000,181,0,9515.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,181,0,-1.000000,2065.415000,baseline,nbiot,180 +on12,0,0,24,1,0,3420,4320.000000,181,0,70092.010000,1871.006500,baseline,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,181,0,16388.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,182,0,1464.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1754,4320.000000,182,0,34007.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,854,4320.000000,182,0,16553.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,292,4320.000000,182,0,6892.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,823,4320.000000,182,0,16513.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3077,4320.000000,182,0,64411.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,182,0,-1.000000,2021.871500,baseline,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,182,0,11951.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1384,4320.000000,182,0,28601.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,182,0,31454.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3995,4320.000000,182,0,79441.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,1,0,1826,4320.000000,182,0,39397.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,419,4320.000000,183,0,9281.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1464,4320.000000,183,0,32223.010000,1758.556500,baseline,nbiot,180 +on12,0,0,24,1,0,2562,4320.000000,183,0,50763.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2504,4320.000000,183,0,50723.010000,1778.056500,baseline,nbiot,180 +on4,0,0,24,1,0,2726,4320.000000,183,0,55053.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,927,4320.000000,183,0,19888.020000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,baseline,nbiot,180 +on9,0,0,24,1,0,1029,4320.000000,183,0,19848.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3420,4320.000000,183,0,69549.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,183,0,5435.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,183,0,-1.000000,2042.671500,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,183,0,14260.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,183,0,5392.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,184,0,43049.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,184,0,14439.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,184,0,22084.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,184,0,25317.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2397,4320.000000,184,0,49294.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1747,4320.000000,184,0,35986.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2160,4320.000000,184,0,46368.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,1027,4320.000000,184,0,21581.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,3119,4320.000000,184,0,63650.010000,1871.000000,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,184,0,-1.000000,2038.115000,baseline,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,184,0,36032.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,184,0,38015.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,3241,4320.000000,185,0,65980.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,185,0,39005.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,185,0,27697.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,185,0,-1.000000,2052.421500,baseline,nbiot,180 +on4,0,0,24,1,0,117,4320.000000,185,0,1801.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1003,4320.000000,185,0,20782.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,35,4320.000000,185,0,1881.030000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4290,4320.000000,185,0,-1.000000,1748.150000,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,185,0,13881.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,6,4320.000000,185,0,1841.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1252,4320.000000,185,0,27737.020000,1871.006500,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,185,0,13964.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2069,4320.000000,185,0,40957.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,186,0,1979.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,186,0,54024.010000,1754.006500,baseline,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,186,0,-1.000000,2059.571500,baseline,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,186,0,39896.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2880,4320.000000,186,0,58176.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2725,4320.000000,186,0,56803.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1032,4320.000000,186,0,19300.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3318,4320.000000,186,0,65343.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,186,0,58114.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,498,4320.000000,186,0,10337.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3937,4320.000000,186,0,82019.010000,1769.606500,baseline,nbiot,180 +on2,0,0,24,1,0,4082,4320.000000,186,0,81958.010000,1854.750000,baseline,nbiot,180 +on5,0,0,24,1,0,3672,4320.000000,186,0,73622.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4255,4320.000000,187,0,-1.000000,1976.300000,baseline,nbiot,180 +on12,0,0,24,1,0,607,4320.000000,187,0,14105.010000,1754.006500,baseline,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,187,0,-1.000000,2044.602000,baseline,nbiot,180 +on10,0,0,24,1,0,3777,4320.000000,187,0,75818.010000,1756.606500,baseline,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4302,4320.000000,187,0,-1.000000,1740.350000,baseline,nbiot,180 +on5,0,0,24,1,0,3228,4320.000000,187,0,67231.010000,1988.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1567,4320.000000,187,0,29671.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,1752,4320.000000,187,0,37392.010000,1786.506500,baseline,nbiot,180 +on4,0,0,24,1,0,1620,4320.000000,187,0,35406.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,602,4320.000000,187,0,14145.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,54,4320.000000,187,0,2493.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,0,0,4264,4320.000000,188,0,-1.000000,1880.100000,baseline,nbiot,180 +on7,0,0,24,1,0,1631,4320.000000,188,0,32631.020000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,188,0,-1.000000,2053.721500,baseline,nbiot,180 +on2,0,0,24,1,0,1706,4320.000000,188,0,32591.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,4140,4320.000000,188,0,83321.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,631,4320.000000,188,0,13694.010000,1871.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,188,0,22648.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2745,4320.000000,188,0,56087.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1119,4320.000000,188,0,22688.020000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2908,4320.000000,188,0,59486.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1499,4320.000000,188,0,28907.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3420,4320.000000,188,0,70888.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,499,4320.000000,188,0,9515.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,197,4320.000000,189,0,4245.020000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,189,0,49055.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4287,4320.000000,189,0,-1.000000,1750.093500,baseline,nbiot,180 +on4,0,0,24,1,0,1525,4320.000000,189,0,30408.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,3600,4320.000000,189,0,72784.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3060,4320.000000,189,0,62192.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2700,4320.000000,189,0,56503.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,189,0,4205.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,189,0,-1.000000,2010.158500,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,189,0,1728.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,189,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,189,0,34852.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3833,4320.000000,189,0,76876.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,1083,4320.000000,190,0,23380.010000,1754.006500,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,190,0,-1.000000,1925.645500,baseline,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,190,0,4018.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,601,4320.000000,190,0,12233.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,395,4320.000000,190,0,8251.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,193,4320.000000,190,0,4098.030000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,187,4320.000000,190,0,4058.020000,1754.006500,baseline,nbiot,180 +on3,0,0,24,0,0,4297,4320.000000,190,0,-1.000000,1845.000000,baseline,nbiot,180 +on6,0,0,24,1,0,1868,4320.000000,190,0,39329.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,0,0,4308,4320.000000,191,0,-1.000000,1736.450000,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,191,0,4432.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1532,4320.000000,191,0,31631.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,747,4320.000000,191,0,18054.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,191,0,8765.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,480,4320.000000,191,0,8686.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,191,0,4559.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,baseline,nbiot,180 +on11,0,0,24,1,0,1060,4320.000000,191,0,22119.010000,1767.656500,baseline,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,191,0,47767.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,191,0,-1.000000,2049.815000,baseline,nbiot,180 +on4,0,0,24,1,0,3362,4320.000000,191,0,71865.010000,1906.106500,baseline,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,191,0,34033.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,1342,4320.000000,192,0,28821.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,192,0,34000.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2349,4320.000000,192,0,48016.010000,1891.156500,baseline,nbiot,180 +on6,0,0,24,1,0,184,4320.000000,192,0,6419.020000,1871.006500,baseline,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,192,0,11452.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,192,0,16235.010000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,192,0,-1.000000,2068.015000,baseline,nbiot,180 +on10,0,0,24,1,0,1192,4320.000000,192,0,25210.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,192,0,6379.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,0,0,4317,4320.000000,192,0,-1.000000,1730.600000,baseline,nbiot,180 +on11,0,0,24,1,0,2710,4320.000000,192,0,56764.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,192,0,28927.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,192,0,-1.000000,1728.000000,baseline,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,193,0,27538.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,193,0,46238.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,193,0,4256.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,3009,4320.000000,193,0,57769.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,3035,4320.000000,193,0,63342.010000,1871.006500,baseline,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,193,0,27638.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,193,0,50595.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,193,0,-1.000000,2057.621500,baseline,nbiot,180 +on4,0,0,24,0,0,4311,4320.000000,193,0,-1.000000,1734.500000,baseline,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,193,0,21261.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,193,0,9252.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1681,4320.000000,193,0,32927.010000,1871.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2578,4320.000000,193,0,50510.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,194,0,20964.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,194,0,15562.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,2210,4320.000000,194,0,46023.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,3000,4320.000000,194,0,59911.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,194,0,-1.000000,2055.665000,baseline,nbiot,180 +on6,0,0,24,1,0,2019,4320.000000,194,0,41608.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,194,0,-1.000000,1728.000000,baseline,nbiot,180 +on4,0,0,24,1,0,236,4320.000000,194,0,7158.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,3347,4320.000000,194,0,67149.010000,1871.006500,baseline,nbiot,180 +on8,0,0,24,1,0,3919,4320.000000,194,0,79492.010000,1881.406500,baseline,nbiot,180 +on11,0,0,24,1,0,1249,4320.000000,194,0,26225.010000,1761.800000,baseline,nbiot,180 +on3,0,0,24,1,0,1361,4320.000000,194,0,26162.010000,1754.006500,baseline,nbiot,180 +on2,0,0,23,1,0,661,4198.000000,194,0,13367.010000,1705.206500,baseline,nbiot,180 +on6,0,0,24,1,0,2204,4320.000000,195,0,43626.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,195,0,53553.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,1867,4320.000000,195,0,36314.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,195,0,-1.000000,1728.000000,baseline,nbiot,180 +on5,0,0,24,1,0,9,4320.000000,195,0,1466.010000,1754.006500,baseline,nbiot,180 +on10,0,0,23,0,0,4144,4163.000000,195,0,-1.000000,1782.200000,baseline,nbiot,180 +on1,0,0,24,1,0,661,4320.000000,195,0,12939.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,0,0,4254,4320.000000,195,0,-1.000000,1772.200000,baseline,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,195,0,7202.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,1,0,2696,4320.000000,195,0,54646.010000,1988.006500,baseline,nbiot,180 +on12,0,0,24,1,0,620,4320.000000,195,0,12979.020000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,195,0,-1.000000,2048.502000,baseline,nbiot,180 +on7,0,0,24,1,0,4131,4320.000000,195,0,85969.010000,1760.500000,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,nbiot,180 +on6,0,0,24,0,0,4293,4320.000000,196,0,-1.000000,1845.000000,baseline,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,196,0,30348.010000,1754.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,baseline,nbiot,180 +on12,0,0,24,1,0,2151,4320.000000,196,0,43288.010000,1871.006500,baseline,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,196,0,10667.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,196,0,61290.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,113,4320.000000,196,0,1785.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4290,4320.000000,196,0,-1.000000,1748.150000,baseline,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,196,0,-1.000000,1954.895500,baseline,nbiot,180 +on3,0,0,24,1,0,3523,4320.000000,196,0,69306.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,196,0,11127.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,2036,4320.000000,197,0,40168.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,197,0,-1.000000,2029.671500,baseline,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,197,0,11260.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,0,0,4298,4320.000000,197,0,-1.000000,1858.000000,baseline,nbiot,180 +on4,0,0,24,1,0,1396,4320.000000,197,0,25641.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,197,0,4529.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,858,4320.000000,197,0,16163.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,598,4320.000000,197,0,11201.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,413,4320.000000,197,0,8590.010000,1754.006500,baseline,nbiot,180 +on1,0,0,23,1,0,900,4150.000000,197,0,21371.010000,1686.006500,baseline,nbiot,180 +on12,0,0,24,1,0,2258,4320.000000,197,0,43560.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1900,4320.000000,197,0,36244.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,920,4320.000000,197,0,21270.010000,1754.006500,baseline,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,198,0,-1.000000,2014.058500,baseline,nbiot,180 +on12,0,0,23,1,0,2106,4266.000000,198,0,43101.010000,1849.406500,baseline,nbiot,180 +on5,0,0,24,1,0,463,4320.000000,198,0,9544.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,2606,4320.000000,198,0,53947.010000,1871.006500,baseline,nbiot,180 +on4,0,0,24,0,0,4289,4320.000000,198,0,-1.000000,1962.000000,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,2800,4320.000000,198,0,55063.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,baseline,nbiot,180 +on3,0,0,24,1,0,816,4320.000000,198,0,17563.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,2425,4320.000000,198,0,48697.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,2896,4320.000000,198,0,59984.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,1049,4320.000000,198,0,22480.010000,1871.006500,baseline,nbiot,180 +on9,0,0,24,1,0,452,4320.000000,198,0,9584.020000,1754.006500,baseline,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,199,0,-1.000000,1728.650000,baseline,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,199,0,40267.010000,1754.006500,baseline,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,199,0,17405.010000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,561,4320.000000,199,0,12479.020000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,305,4320.000000,199,0,4889.010000,1754.006500,baseline,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,199,0,-1.000000,2036.171500,baseline,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,199,0,29626.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,3159,4320.000000,199,0,63707.010000,1754.006500,baseline,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,199,0,12439.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,312,4320.000000,199,0,4929.020000,1754.006500,baseline,nbiot,180 +on1,0,0,24,1,0,1716,4320.000000,199,0,35789.010000,1871.006500,baseline,nbiot,180 +on2,0,0,24,1,0,783,4320.000000,199,0,17330.010000,1754.006500,baseline,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,199,0,66069.010000,1754.006500,baseline,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,200,0,7709.010000,1754.006500,baseline,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,200,0,2638.010000,1754.006500,baseline,nbiot,180 +on11,0,0,24,1,0,278,4320.000000,200,0,6749.010000,1754.006500,baseline,nbiot,180 +on1,0,0,24,0,0,4249,4320.000000,200,0,-1.000000,1962.000000,baseline,nbiot,180 +on12,0,0,24,1,0,206,4320.000000,200,0,6829.030000,1754.006500,baseline,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,200,0,-1.000000,2038.115000,baseline,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,200,0,42176.010000,1754.006500,baseline,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,200,0,35670.010000,1754.006500,baseline,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,baseline,nbiot,180 +on7,0,0,24,1,0,228,4320.000000,200,0,6789.020000,1754.006500,baseline,nbiot,180 +on9,0,0,24,1,0,1089,4320.000000,200,0,23145.010000,1754.006500,baseline,nbiot,180 +on6,0,0,24,1,0,2817,4320.000000,200,0,55760.010000,1756.606500,baseline,nbiot,180 +on4,0,0,24,1,0,836,4320.000000,200,0,15376.010000,1754.006500,baseline,nbiot,180 +on6,0,0,27,1,0,1726,4862.200000,1,3,37344.630960,2276.496376,hint,nbiot,180 +on9,0,0,26,1,0,1326,4685.300000,1,2,29076.030960,2515.519668,hint,nbiot,180 +on12,0,0,26,1,0,1413,4682.300000,1,2,29036.010320,2195.969792,hint,nbiot,180 +on11,0,0,24,1,0,759,4321.010640,1,0,17366.010320,1754.424172,hint,nbiot,180 +on8,0,0,25,1,0,1013,4503.610320,1,1,23914.010320,1963.964252,hint,nbiot,180 +on2,0,0,25,1,0,1226,4503.220000,1,1,27193.010320,2123.239292,hint,nbiot,180 +on10,0,0,24,1,0,1620,4321.010320,1,0,33195.010320,1870.760836,hint,nbiot,180 +on5,0,0,26,1,0,1361,4681.471280,1,2,27233.030960,1964.446304,hint,nbiot,180 +on3,0,0,25,1,0,1766,4502.000000,1,1,37303.010320,2033.116292,hint,nbiot,180 +on4,0,0,27,1,0,1709,4863.500000,1,4,43036.010320,2631.019792,hint,nbiot,180 +on1,0,0,24,1,0,249,4320.010320,1,0,4533.010320,1754.010836,hint,nbiot,180 +on7,0,0,24,1,0,780,4375.289680,1,2,18964.010320,1970.479080,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,1,0,-1.000000,2040.160992,hint,nbiot,180 +on10,0,0,25,1,0,833,4502.000000,2,1,18898.010320,1928.719792,hint,nbiot,180 +on3,0,0,25,1,0,1226,4647.000000,2,2,28169.030960,2117.031376,hint,nbiot,180 +on4,0,0,25,1,0,1014,4502.000000,2,1,22770.010320,2034.358000,hint,nbiot,180 +on7,0,0,26,1,0,1274,4682.810000,2,2,28129.010320,2203.973792,hint,nbiot,180 +on8,0,0,24,1,0,795,4322.969360,2,0,15786.010320,1987.107536,hint,nbiot,180 +on1,0,0,26,1,0,1482,4682.300000,2,2,30836.010320,2195.573084,hint,nbiot,180 +on11,0,0,25,1,0,1244,4501.000000,2,1,22810.030960,1891.393084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,2,0,-1.000000,2040.140868,hint,nbiot,180 +on6,0,0,24,1,0,571,4321.989680,2,0,10970.010320,1829.559288,hint,nbiot,180 +on2,0,0,25,1,0,1101,4611.231280,2,2,18939.630960,2057.328928,hint,nbiot,180 +on9,0,0,29,1,0,1241,5222.920000,2,7,30877.630960,2668.030336,hint,nbiot,180 +on5,0,0,24,1,0,720,4321.000000,2,0,15868.010320,1845.400000,hint,nbiot,180 +on12,0,0,26,1,0,1416,4682.010000,2,2,28209.051600,2106.167000,hint,nbiot,180 +on5,0,0,25,1,0,882,4502.000000,3,1,16279.010320,1959.016292,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,3,0,-1.000000,2064.498032,hint,nbiot,180 +on4,0,0,26,1,0,329,4688.179360,3,2,8225.030960,2614.191536,hint,nbiot,180 +on9,0,0,24,1,0,900,4322.000000,3,0,19142.010320,1810.960000,hint,nbiot,180 +on6,0,0,25,1,0,491,4502.840960,3,1,10934.010320,1918.156300,hint,nbiot,180 +on10,0,0,25,1,0,361,4502.969040,3,1,8317.610320,1989.304324,hint,nbiot,180 +on1,0,0,26,1,0,396,4683.180000,3,2,5496.630960,2164.706624,hint,nbiot,180 +on2,0,0,25,1,0,1,4504.300000,3,1,5455.010320,2174.429792,hint,nbiot,180 +on11,0,0,26,1,0,375,4683.520000,3,2,8185.010320,2231.817792,hint,nbiot,180 +on7,0,0,24,1,0,0,4321.000000,3,0,1284.010320,1870.106708,hint,nbiot,180 +on3,0,0,26,1,0,712,4683.600000,3,2,16320.630960,2261.749792,hint,nbiot,180 +on8,0,0,25,1,0,1193,4503.000000,3,1,25233.010320,2018.313208,hint,nbiot,180 +on12,0,0,24,1,0,1620,4321.000000,3,0,32959.010320,1845.400000,hint,nbiot,180 +on9,0,0,26,1,0,187,4684.328400,4,3,4345.010320,2194.037736,hint,nbiot,180 +on7,0,0,26,1,0,334,4681.020640,4,2,7525.630960,2014.784672,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,4,0,-1.000000,2072.504160,hint,nbiot,180 +on2,0,0,25,1,0,165,4501.300000,4,1,4222.010320,1873.326500,hint,nbiot,180 +on5,0,0,25,1,0,623,4502.010000,4,1,15215.010320,2065.165500,hint,nbiot,180 +on10,0,0,25,1,0,283,4501.210000,4,2,7484.010320,1928.338584,hint,nbiot,180 +on12,0,0,28,1,0,891,5042.410000,4,4,24154.630960,2572.323792,hint,nbiot,180 +on3,0,0,24,1,0,17,4322.000000,4,0,2205.010320,1871.389668,hint,nbiot,180 +on11,0,0,26,1,0,1206,4734.810000,4,4,27139.010320,2226.716876,hint,nbiot,180 +on4,0,0,25,1,0,875,4501.600000,4,1,21393.010320,2035.296500,hint,nbiot,180 +on8,0,0,26,1,0,611,4683.341280,4,2,15255.030960,2281.139804,hint,nbiot,180 +on6,0,0,25,1,0,473,4502.000000,4,1,11465.010320,1983.326500,hint,nbiot,180 +on1,0,0,26,1,0,1101,4681.510000,4,2,24113.010320,2080.415084,hint,nbiot,180 +on10,0,0,26,1,0,920,4681.900000,5,2,20616.030960,2190.849876,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,5,0,-1.000000,2020.721364,hint,nbiot,180 +on5,0,0,24,1,0,360,4321.010320,5,0,7651.010320,1826.820836,hint,nbiot,180 +on4,0,0,24,1,0,627,4321.959040,5,0,13586.010320,1754.803532,hint,nbiot,180 +on7,0,0,26,1,0,915,4705.120000,5,3,25043.010320,2242.855876,hint,nbiot,180 +on6,0,0,24,1,0,1440,4320.010320,5,0,32090.010320,1754.010836,hint,nbiot,180 +on9,0,0,25,1,0,540,4503.651280,5,1,13682.620640,1921.542344,hint,nbiot,180 +on2,0,0,27,1,0,789,4865.900000,5,5,20576.010320,2554.773000,hint,nbiot,180 +on8,0,0,24,1,0,653,4417.230320,5,1,15641.010320,1999.806836,hint,nbiot,180 +on11,0,0,27,1,0,1081,4866.910320,5,4,25084.630960,2687.295296,hint,nbiot,180 +on1,0,0,26,1,0,834,4687.289680,5,2,20656.051600,2571.079288,hint,nbiot,180 +on12,0,0,24,0,0,4311,4320.000000,5,0,-1.000000,1734.500000,hint,nbiot,180 +on3,0,0,24,1,0,0,4321.979360,5,0,2293.010320,1754.811868,hint,nbiot,180 +on11,0,0,26,1,0,1413,4681.272560,6,3,28020.010320,1963.515732,hint,nbiot,180 +on8,0,0,25,1,0,1659,4501.300000,6,1,35529.010320,1987.661500,hint,nbiot,180 +on2,0,0,25,1,0,1285,4503.000000,6,2,28060.630960,2031.344876,hint,nbiot,180 +on7,0,0,24,1,0,0,4324.010320,6,0,3515.010320,1970.097420,hint,nbiot,180 +on9,0,0,24,1,0,1080,4321.010320,6,0,21876.010320,1837.480836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,6,0,-1.000000,2056.000868,hint,nbiot,180 +on4,0,0,25,1,0,1953,4502.000000,6,1,37347.030960,2008.143084,hint,nbiot,180 +on3,0,0,24,1,0,1503,4323.000000,6,0,30239.010320,1936.556708,hint,nbiot,180 +on1,0,0,27,1,0,1852,4861.600000,6,3,37387.051600,2181.838000,hint,nbiot,180 +on5,0,0,27,1,0,1743,4862.900000,6,3,42502.010320,2447.798084,hint,nbiot,180 +on10,0,0,27,1,0,1669,4862.810000,6,4,37307.010320,2355.890044,hint,nbiot,180 +on6,0,0,27,1,0,2012,4861.900000,6,4,42542.030960,2225.474460,hint,nbiot,180 +on12,0,0,25,1,0,1314,4501.300000,6,1,27945.010320,1956.403208,hint,nbiot,180 +on3,0,0,25,1,0,1373,4502.000000,7,1,28892.010320,1924.950000,hint,nbiot,180 +on5,0,0,26,1,0,513,4683.158400,7,2,8256.010320,2057.213360,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,7,0,-1.000000,2079.824616,hint,nbiot,180 +on6,0,0,26,1,0,406,4683.300000,7,2,8183.030960,2232.359668,hint,nbiot,180 +on4,0,0,25,1,0,272,4501.200000,7,1,6915.010320,1939.118292,hint,nbiot,180 +on12,0,0,26,1,0,373,4685.210000,7,2,6956.630960,2130.717208,hint,nbiot,180 +on7,0,0,25,1,0,483,4503.000000,7,1,8143.010320,2007.256500,hint,nbiot,180 +on10,0,0,24,1,0,23,4325.010320,7,0,3549.010320,2161.747544,hint,nbiot,180 +on8,0,0,25,1,0,570,4502.010320,7,2,13868.010320,2051.054128,hint,nbiot,180 +on2,0,0,24,1,0,3859,4321.000000,7,0,77970.010320,1794.050000,hint,nbiot,180 +on1,0,0,24,1,0,180,4322.979360,7,0,3654.010320,1956.431952,hint,nbiot,180 +on9,0,0,26,1,0,695,4683.768720,7,2,16867.010320,2133.728696,hint,nbiot,180 +on11,0,0,27,1,0,897,4860.910320,7,4,21468.010320,2216.713920,hint,nbiot,180 +on0,1,12,23,0,0,0,4313.000000,8,0,-1.000000,2082.278072,hint,nbiot,180 +on3,0,0,25,1,0,1103,4600.310000,8,2,23995.010320,2046.426876,hint,nbiot,180 +on5,0,0,24,1,0,3228,4321.000000,8,0,66597.010320,1962.400000,hint,nbiot,180 +on7,0,0,27,1,0,1014,4864.310320,8,3,24036.630960,2377.337128,hint,nbiot,180 +on11,0,0,25,1,0,571,4502.041280,8,1,13057.030960,1938.616304,hint,nbiot,180 +on10,0,0,26,1,0,1084,4683.000000,8,2,19316.041280,2118.893084,hint,nbiot,180 +on6,0,0,25,1,0,512,4504.199360,8,1,13017.010320,2110.702952,hint,nbiot,180 +on1,0,0,25,1,0,180,4503.620640,8,1,6369.620640,2058.673588,hint,nbiot,180 +on12,0,0,26,1,0,560,4684.300000,8,3,13097.651600,2306.457916,hint,nbiot,180 +on4,0,0,26,1,0,700,4683.600000,8,2,14868.010320,2209.073168,hint,nbiot,180 +on2,0,0,26,1,0,808,4682.320320,8,2,19275.010320,2145.284628,hint,nbiot,180 +on9,0,0,24,1,0,132,4477.672240,8,1,1981.620640,2077.804020,hint,nbiot,180 +on8,0,0,24,1,0,0,4320.010320,8,0,2093.010320,1754.010836,hint,nbiot,180 +on11,0,0,24,1,0,412,4321.979360,9,0,8888.010320,1830.854952,hint,nbiot,180 +on6,0,0,25,1,0,565,4501.041280,9,2,11709.251600,1828.418096,hint,nbiot,180 +on2,0,0,24,1,0,2424,4322.000000,9,0,48891.010320,1907.550000,hint,nbiot,180 +on7,0,0,24,1,0,2067,4321.000000,9,0,42460.010320,1788.850000,hint,nbiot,180 +on9,0,0,25,1,0,892,4502.989680,9,1,17874.010320,2032.869080,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,9,0,-1.000000,2072.031324,hint,nbiot,180 +on12,0,0,26,1,0,864,4683.720000,9,2,18438.010320,2314.389292,hint,nbiot,180 +on10,0,0,25,1,0,0,4500.020640,9,1,1577.620640,1826.229880,hint,nbiot,180 +on1,0,0,25,1,0,442,4591.300000,9,3,11668.630960,2280.312960,hint,nbiot,180 +on4,0,0,25,1,0,1596,4502.010320,9,1,30631.010320,1977.617336,hint,nbiot,180 +on5,0,0,24,1,0,1080,4322.041280,9,0,22114.010320,1843.243344,hint,nbiot,180 +on3,0,0,24,1,0,2,4354.320640,9,1,4753.010320,2214.336548,hint,nbiot,180 +on8,0,0,24,1,0,560,4322.010320,9,0,11627.010320,1948.120628,hint,nbiot,180 +on2,0,0,24,1,0,1573,4321.000000,10,0,29679.010320,1758.300000,hint,nbiot,180 +on10,0,0,27,1,0,1494,4862.200000,10,4,35344.010320,2448.934876,hint,nbiot,180 +on7,0,0,24,1,0,650,4320.030640,10,0,13632.010320,1754.025464,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,10,0,-1.000000,2053.784160,hint,nbiot,180 +on4,0,0,26,1,0,1254,4844.300000,10,3,29719.030960,2342.539584,hint,nbiot,180 +on6,0,0,24,1,0,937,4321.000000,10,0,20603.010320,1820.700000,hint,nbiot,180 +on9,0,0,25,1,0,1268,4502.989680,10,1,28836.051600,2059.909288,hint,nbiot,180 +on8,0,0,25,1,0,1209,4501.510000,10,1,28756.010320,2032.920500,hint,nbiot,180 +on3,0,0,25,1,0,604,4501.351600,10,2,14621.010320,2017.257348,hint,nbiot,180 +on1,0,0,26,1,0,1054,4683.020640,10,2,20643.030960,2130.484548,hint,nbiot,180 +on12,0,0,24,1,0,1414,4417.000000,10,1,28796.030960,1920.193084,hint,nbiot,180 +on5,0,0,26,1,0,1011,4683.520000,10,2,22453.010320,2210.569292,hint,nbiot,180 +on11,0,0,24,1,0,540,4320.010320,10,0,13766.010320,1754.010836,hint,nbiot,180 +on12,0,0,24,1,0,908,4321.010320,11,1,19828.010320,1836.967336,hint,nbiot,180 +on3,0,0,24,1,0,1800,4321.000000,11,0,37310.010320,1845.400000,hint,nbiot,180 +on11,0,0,25,1,0,0,4502.392880,11,2,3952.010320,2125.840568,hint,nbiot,180 +on6,0,0,25,1,0,768,4504.210000,11,1,17930.020640,2187.796792,hint,nbiot,180 +on8,0,0,26,1,0,1086,4684.300000,11,2,19869.041280,2169.969876,hint,nbiot,180 +on2,0,0,26,1,0,797,4843.200000,11,3,22875.010320,2610.023084,hint,nbiot,180 +on9,0,0,25,1,0,874,4502.000000,11,1,17970.041280,1891.136376,hint,nbiot,180 +on1,0,0,24,1,0,34,4321.000000,11,0,230.010320,1836.949792,hint,nbiot,180 +on5,0,0,26,1,0,900,4807.889680,11,3,22915.030960,2392.209080,hint,nbiot,180 +on10,0,0,25,1,0,455,4505.238080,11,1,10988.010320,1998.538648,hint,nbiot,180 +on7,0,0,25,1,0,318,4502.010320,11,1,7897.010320,2256.057212,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,11,0,-1.000000,2053.851240,hint,nbiot,180 +on4,0,0,25,1,0,1620,4503.620640,11,1,35089.620640,2176.706672,hint,nbiot,180 +on3,0,0,27,1,0,733,4865.810640,12,4,18253.030960,2524.382048,hint,nbiot,180 +on10,0,0,24,1,0,366,4321.989680,12,0,10783.010320,1841.252580,hint,nbiot,180 +on5,0,0,27,1,0,530,4980.080000,12,4,14875.630960,2611.105000,hint,nbiot,180 +on7,0,0,24,1,0,0,4321.000000,12,0,2626.010320,1814.466708,hint,nbiot,180 +on9,0,0,25,1,0,513,4502.210000,12,1,10823.030960,2007.180584,hint,nbiot,180 +on2,0,0,26,1,0,830,4683.200000,12,2,23904.010320,2477.383292,hint,nbiot,180 +on6,0,0,25,1,0,113,4502.010320,12,1,4851.010320,1947.197336,hint,nbiot,180 +on4,0,0,26,1,0,466,4681.341280,12,2,10863.051600,1980.469844,hint,nbiot,180 +on11,0,0,24,1,0,2456,4321.000000,12,0,50515.010320,1770.000000,hint,nbiot,180 +on1,0,0,24,1,0,848,4346.000000,12,1,18213.010320,1961.356500,hint,nbiot,180 +on8,0,0,25,1,0,660,4501.010000,12,1,13122.010320,1916.760500,hint,nbiot,180 +on12,0,0,27,1,0,513,4862.900000,12,4,14834.010320,2451.502460,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,12,0,-1.000000,2040.181116,hint,nbiot,180 +on7,0,0,29,1,0,991,5224.420320,13,5,24743.010320,2714.177628,hint,nbiot,180 +on12,0,0,25,1,0,392,4503.041280,13,1,10227.051600,2089.153096,hint,nbiot,180 +on3,0,0,24,1,0,2011,4354.600000,13,1,47785.010320,2082.830000,hint,nbiot,180 +on4,0,0,26,1,0,359,4682.300000,13,2,6457.630960,2092.476584,hint,nbiot,180 +on6,0,0,24,1,0,0,4379.289680,13,2,6416.010320,2203.075664,hint,nbiot,180 +on2,0,0,26,1,0,566,4853.540640,13,3,11124.030960,2249.515840,hint,nbiot,180 +on10,0,0,26,1,0,486,4681.300000,13,2,10187.030960,2054.499876,hint,nbiot,180 +on9,0,0,24,1,0,438,4321.000000,13,0,10147.010320,1794.050000,hint,nbiot,180 +on11,0,0,26,1,0,952,4680.320640,13,2,20620.630960,1954.379672,hint,nbiot,180 +on8,0,0,24,1,0,3,4321.969360,13,0,2049.010320,1869.070952,hint,nbiot,180 +on5,0,0,25,1,0,1028,4502.300000,13,1,20579.010320,1964.459792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,13,0,-1.000000,2060.577700,hint,nbiot,180 +on1,0,0,25,1,0,455,4505.000000,13,2,11084.010320,2243.603292,hint,nbiot,180 +on8,0,0,25,1,0,385,4503.938080,14,2,9187.630960,1968.696940,hint,nbiot,180 +on7,0,0,25,1,0,406,4501.410320,14,1,9069.010320,1893.735336,hint,nbiot,180 +on9,0,0,26,1,0,807,4853.900000,14,3,18389.010320,2393.810084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,14,0,-1.000000,2060.981116,hint,nbiot,180 +on3,0,0,25,1,0,0,4504.610320,14,1,1892.620640,2115.229252,hint,nbiot,180 +on1,0,0,24,1,0,180,4321.000000,14,0,6711.010320,1774.160000,hint,nbiot,180 +on4,0,0,25,1,0,498,4561.600000,14,2,15932.010320,2201.216668,hint,nbiot,180 +on11,0,0,25,1,0,1540,4501.300000,14,1,31705.010320,1968.220000,hint,nbiot,180 +on2,0,0,25,1,0,472,4503.289680,14,1,14106.010320,2026.007456,hint,nbiot,180 +on10,0,0,25,1,0,514,4503.600000,14,1,14146.030960,2182.990000,hint,nbiot,180 +on12,0,0,25,1,0,355,4501.190000,14,1,6663.010320,1917.482500,hint,nbiot,180 +on6,0,0,27,1,0,695,4863.600000,14,3,15972.030960,2287.716584,hint,nbiot,180 +on5,0,0,26,1,0,513,4685.000000,14,3,9147.010320,2277.109668,hint,nbiot,180 +on3,0,0,25,1,0,1056,4504.600000,15,2,28761.030960,2126.839792,hint,nbiot,180 +on5,0,0,27,1,0,1324,4862.200000,15,3,31395.010320,2357.356584,hint,nbiot,180 +on1,0,0,25,1,0,1039,4503.000000,15,2,22256.010320,2055.589668,hint,nbiot,180 +on6,0,0,24,1,0,0,4320.010320,15,0,3572.010320,1754.010836,hint,nbiot,180 +on7,0,0,26,1,0,831,4682.220000,15,2,17129.051600,2049.375584,hint,nbiot,180 +on12,0,0,26,1,0,826,4683.610320,15,3,18220.010320,2127.425752,hint,nbiot,180 +on4,0,0,26,1,0,1453,4682.000000,15,2,28801.051600,1989.819916,hint,nbiot,180 +on11,0,0,24,1,0,540,4323.000000,15,0,13028.010320,1956.973416,hint,nbiot,180 +on9,0,0,28,1,0,1175,5042.200000,15,5,28721.010320,2433.262460,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,15,0,-1.000000,2044.047576,hint,nbiot,180 +on8,0,0,24,1,0,904,4322.959040,15,1,18260.030960,1977.326992,hint,nbiot,180 +on2,0,0,25,1,0,873,4501.000000,15,1,17089.030960,1891.393084,hint,nbiot,180 +on10,0,0,24,1,0,774,4322.000000,15,0,17049.010320,1884.156708,hint,nbiot,180 +on7,0,0,24,1,0,1108,4432.300000,16,1,22185.010320,2099.480000,hint,nbiot,180 +on12,0,0,27,1,0,1489,4862.810000,16,3,33866.630960,2271.208460,hint,nbiot,180 +on3,0,0,24,1,0,1371,4321.948400,16,0,27202.010320,1802.112568,hint,nbiot,180 +on8,0,0,25,1,0,900,4501.040960,16,1,19733.020320,1942.136300,hint,nbiot,180 +on10,0,0,26,1,0,240,4680.910320,16,4,11096.010320,2211.007420,hint,nbiot,180 +on5,0,0,24,1,0,1515,4321.000000,16,1,30750.010320,1794.706500,hint,nbiot,180 +on1,0,0,26,1,0,1446,4682.190000,16,2,27243.630960,2104.925584,hint,nbiot,180 +on11,0,0,25,1,0,526,4501.269360,16,1,9715.010320,1835.620952,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,16,0,-1.000000,2040.160992,hint,nbiot,180 +on2,0,0,26,1,0,1568,4682.600000,16,2,33825.010320,2200.379584,hint,nbiot,180 +on9,0,0,24,1,0,81,4322.020320,16,0,2807.010320,1898.067920,hint,nbiot,180 +on4,0,0,24,1,0,180,4320.969360,16,0,6326.010320,1754.400952,hint,nbiot,180 +on6,0,0,26,1,0,1687,4682.900000,16,2,39493.010320,2272.129792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,17,0,-1.000000,2059.051240,hint,nbiot,180 +on6,0,0,25,1,0,882,4503.499680,17,1,21299.010320,2025.337872,hint,nbiot,180 +on5,0,0,26,1,0,970,4684.310320,17,2,21340.630960,2221.364044,hint,nbiot,180 +on11,0,0,25,1,0,693,4534.300000,17,2,15221.010320,2045.769792,hint,nbiot,180 +on1,0,0,26,1,0,661,4683.400000,17,2,14476.030960,2126.027792,hint,nbiot,180 +on2,0,0,24,1,0,1382,4370.310320,17,3,30995.010320,1779.324128,hint,nbiot,180 +on12,0,0,24,1,0,0,4322.010320,17,0,2583.010320,1899.377544,hint,nbiot,180 +on10,0,0,26,1,0,986,4684.330960,17,2,22245.010320,2323.408884,hint,nbiot,180 +on3,0,0,26,1,0,228,4685.330960,17,3,7530.620640,2339.884216,hint,nbiot,180 +on7,0,0,25,1,0,1385,4504.300000,17,1,27670.010320,2126.083208,hint,nbiot,180 +on8,0,0,25,1,0,294,4500.969360,17,1,6293.010320,1826.407452,hint,nbiot,180 +on4,0,0,24,1,0,638,4488.210000,17,1,14436.010320,2014.340500,hint,nbiot,180 +on9,0,0,24,1,0,2502,4321.300000,17,1,53831.010320,1852.026500,hint,nbiot,180 +on3,0,0,28,1,0,617,5080.150000,18,5,15756.630960,2379.576000,hint,nbiot,180 +on5,0,0,25,1,0,282,4530.300000,18,2,9023.051600,2055.862876,hint,nbiot,180 +on8,0,0,25,1,0,0,4502.041280,18,1,2310.620640,1860.701636,hint,nbiot,180 +on1,0,0,26,1,0,556,4682.480000,18,2,13755.010320,2147.479876,hint,nbiot,180 +on10,0,0,25,1,0,465,4671.261280,18,2,9063.441280,1960.557720,hint,nbiot,180 +on4,0,0,25,1,0,536,4501.000000,18,1,8983.030960,1890.353084,hint,nbiot,180 +on12,0,0,28,1,0,619,5042.680000,18,4,18375.010320,2548.049876,hint,nbiot,180 +on2,0,0,27,1,0,667,4861.300000,18,3,13795.030960,2137.256336,hint,nbiot,180 +on7,0,0,24,1,0,113,4395.220000,18,1,3838.010320,1923.396000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,18,0,-1.000000,2052.847328,hint,nbiot,180 +on6,0,0,26,1,0,194,4681.600000,18,2,8943.010320,2157.021292,hint,nbiot,180 +on11,0,0,25,1,0,153,4501.260000,18,1,3878.030960,1892.348584,hint,nbiot,180 +on9,0,0,27,1,0,414,4863.500000,18,4,15715.010320,2531.991252,hint,nbiot,180 +on7,0,0,28,1,0,1099,5042.458720,19,6,22057.051280,2274.994696,hint,nbiot,180 +on12,0,0,25,1,0,827,4501.300000,19,1,20088.010320,1922.076500,hint,nbiot,180 +on3,0,0,24,1,0,1182,4322.000000,19,0,21936.010320,1833.443292,hint,nbiot,180 +on10,0,0,25,1,0,1068,4500.969040,19,1,20128.030960,1943.524324,hint,nbiot,180 +on11,0,0,27,1,0,667,4863.589680,19,4,16961.010320,2238.410372,hint,nbiot,180 +on6,0,0,25,1,0,407,4501.510000,19,2,9983.010320,1870.368708,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,19,0,-1.000000,2075.917700,hint,nbiot,180 +on1,0,0,26,1,0,958,4775.900000,19,3,25770.010320,2529.205084,hint,nbiot,180 +on8,0,0,25,1,0,487,4502.000000,19,2,11608.010320,2028.586208,hint,nbiot,180 +on9,0,0,26,1,0,844,4682.900000,19,2,21976.030960,2362.466792,hint,nbiot,180 +on5,0,0,24,1,0,195,4320.969360,19,0,4538.010320,1754.400952,hint,nbiot,180 +on2,0,0,26,1,0,1086,4860.500000,19,4,30064.010320,2798.936376,hint,nbiot,180 +on4,0,0,27,1,0,1122,4863.620000,19,3,22016.430640,2422.254668,hint,nbiot,180 +on8,0,0,25,1,0,1467,4502.300000,20,1,31836.010320,2042.733416,hint,nbiot,180 +on6,0,0,25,1,0,1622,4505.300000,20,1,38461.010320,2285.330000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,20,0,-1.000000,2063.641488,hint,nbiot,180 +on2,0,0,26,1,0,873,4683.719680,20,2,18828.010320,2197.837872,hint,nbiot,180 +on10,0,0,25,1,0,720,4505.000000,20,1,15372.620640,2281.765000,hint,nbiot,180 +on5,0,0,25,1,0,1190,4502.330960,20,1,25142.010320,2079.932508,hint,nbiot,180 +on11,0,0,25,1,0,1639,4505.010320,20,1,34295.620640,2195.489376,hint,nbiot,180 +on1,0,0,24,1,0,360,4324.989680,20,0,7802.010320,1990.276204,hint,nbiot,180 +on4,0,0,26,1,0,698,4682.617440,20,2,15282.630960,1938.073808,hint,nbiot,180 +on3,0,0,25,1,0,3398,4501.310320,20,1,71192.010320,2028.687336,hint,nbiot,180 +on9,0,0,25,1,0,3853,4501.300000,20,1,79212.010320,1987.070000,hint,nbiot,180 +on12,0,0,25,1,0,3600,4502.000000,20,1,74846.010320,1958.100000,hint,nbiot,180 +on7,0,0,24,1,0,689,4356.320640,20,1,15241.010320,2100.496464,hint,nbiot,180 +on3,0,0,28,1,0,924,5041.900000,21,6,21405.651600,2450.713000,hint,nbiot,180 +on4,0,0,25,1,0,351,4503.969360,21,1,5901.010320,2110.175660,hint,nbiot,180 +on10,0,0,26,1,0,575,4685.169680,21,2,8400.030960,2196.460748,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,21,0,-1.000000,2042.124408,hint,nbiot,180 +on7,0,0,26,1,0,958,4681.610000,21,2,22311.010320,2120.417084,hint,nbiot,180 +on8,0,0,26,1,0,549,4682.220000,21,3,8440.651600,2080.894292,hint,nbiot,180 +on12,0,0,25,1,0,653,4502.220000,21,1,16680.010320,2033.406000,hint,nbiot,180 +on6,0,0,27,1,0,669,4862.900000,21,3,21325.010320,2410.546584,hint,nbiot,180 +on1,0,0,26,1,0,801,4742.600000,21,3,21365.030960,2166.392876,hint,nbiot,180 +on5,0,0,26,1,0,336,4682.361920,21,3,8360.010320,2311.571268,hint,nbiot,180 +on2,0,0,26,1,0,537,4683.600000,21,2,12373.041280,2252.383084,hint,nbiot,180 +on9,0,0,26,1,0,522,4682.480000,21,2,12332.010320,2141.246584,hint,nbiot,180 +on11,0,0,24,1,0,33,4321.010320,21,0,199.010320,1870.104336,hint,nbiot,180 +on7,0,0,26,1,0,1595,4684.809680,22,2,36234.010320,2390.485164,hint,nbiot,180 +on10,0,0,25,1,0,1867,4502.300000,22,1,39971.010320,2048.446708,hint,nbiot,180 +on6,0,0,26,1,0,1710,4683.958720,22,3,34921.651600,2133.324736,hint,nbiot,180 +on4,0,0,24,1,0,180,4321.010320,22,0,4852.010320,1767.417544,hint,nbiot,180 +on5,0,0,24,1,0,62,4320.000000,22,0,1345.010320,1754.006708,hint,nbiot,180 +on1,0,0,24,1,0,564,4322.030960,22,0,12941.010320,1987.532508,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,22,0,-1.000000,2110.401032,hint,nbiot,180 +on9,0,0,25,1,0,1941,4502.990000,22,1,40018.020320,2052.779332,hint,nbiot,180 +on8,0,0,25,1,0,4065,4500.300000,22,1,84509.010000,1874.876500,hint,nbiot,180 +on12,0,0,23,1,0,1376,4242.989680,22,0,30272.010320,1877.512580,hint,nbiot,180 +on3,0,0,24,1,0,1757,4323.949040,22,0,34841.010320,1873.893032,hint,nbiot,180 +on2,0,0,25,1,0,2118,4501.000000,22,1,45259.010320,1917.406500,hint,nbiot,180 +on11,0,0,26,1,0,1771,4683.020640,22,2,34881.030960,2288.564548,hint,nbiot,180 +on9,0,0,25,1,0,1855,4501.300000,23,1,37836.010320,1998.770000,hint,nbiot,180 +on10,0,0,25,1,0,338,4501.010320,23,1,6409.010320,1916.767336,hint,nbiot,180 +on1,0,0,26,1,0,183,4685.799680,23,3,8249.010320,2421.821372,hint,nbiot,180 +on6,0,0,24,1,0,1980,4321.000000,23,0,43211.010320,1845.400000,hint,nbiot,180 +on8,0,0,26,1,0,332,4682.051600,23,2,6450.041280,2080.183848,hint,nbiot,180 +on11,0,0,25,1,0,16,4504.948400,23,1,3285.630960,2116.715860,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,23,0,-1.000000,2040.207948,hint,nbiot,180 +on2,0,0,27,1,0,534,4861.810000,23,3,13329.010320,2241.961668,hint,nbiot,180 +on3,0,0,24,1,0,118,4322.000000,23,0,3244.010320,1883.369792,hint,nbiot,180 +on4,0,0,25,1,0,9,4503.000000,23,1,3325.651600,2037.629752,hint,nbiot,180 +on12,0,0,27,1,0,511,4862.869040,23,4,13409.651600,2297.734240,hint,nbiot,180 +on7,0,0,24,1,0,693,4535.989680,23,2,13369.030960,2084.795456,hint,nbiot,180 +on5,0,0,27,1,0,376,4865.200000,23,4,14909.010320,2730.616376,hint,nbiot,180 +on2,0,0,26,1,0,1279,4686.010000,24,2,24773.030960,2413.903584,hint,nbiot,180 +on10,0,0,25,1,0,2880,4503.000000,24,1,58661.010320,2039.106708,hint,nbiot,180 +on6,0,0,25,1,0,602,4611.341280,24,3,15842.630960,2205.566636,hint,nbiot,180 +on12,0,0,24,1,0,701,4400.199680,24,1,15801.010320,1982.653080,hint,nbiot,180 +on3,0,0,25,1,0,1440,4503.989680,24,1,30736.620640,2106.257580,hint,nbiot,180 +on11,0,0,24,1,0,261,4320.010320,24,0,6106.010320,1754.010836,hint,nbiot,180 +on9,0,0,25,1,0,3240,4502.000000,24,1,66612.620640,1969.605000,hint,nbiot,180 +on1,0,0,24,1,0,1103,4322.979360,24,0,24733.010320,1830.605160,hint,nbiot,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8599.010320,1754.013208,hint,nbiot,180 +on5,0,0,25,1,0,360,4508.300320,24,2,13319.010320,2507.426752,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2040.241488,hint,nbiot,180 +on7,0,0,25,1,0,1374,4503.979360,24,1,27921.010320,2008.311660,hint,nbiot,180 +on4,0,0,27,1,0,1353,4862.510000,24,3,27961.030960,2195.708376,hint,nbiot,180 +on3,0,0,24,1,0,0,4320.020640,25,0,807.010320,1754.021672,hint,nbiot,180 +on4,0,0,26,1,0,873,4683.610000,25,3,20725.010320,2238.750500,hint,nbiot,180 +on2,0,0,26,1,0,799,4684.210000,25,2,17685.630960,2188.516752,hint,nbiot,180 +on1,0,0,25,1,0,332,4500.979680,25,1,6120.010320,1827.269788,hint,nbiot,180 +on6,0,0,24,1,0,767,4322.000000,25,0,17644.010320,1887.016500,hint,nbiot,180 +on12,0,0,24,1,0,2533,4322.000000,25,0,53923.010320,1844.500000,hint,nbiot,180 +on9,0,0,26,1,0,343,4681.269360,25,3,7655.010320,1989.520744,hint,nbiot,180 +on8,0,0,24,1,0,122,4321.000000,25,0,709.010320,1870.100208,hint,nbiot,180 +on11,0,0,24,1,0,540,4322.989680,25,0,13888.010320,1804.609288,hint,nbiot,180 +on7,0,0,25,1,0,732,4504.620640,25,1,17725.651600,2136.618380,hint,nbiot,180 +on0,1,12,23,0,0,0,4316.000000,25,0,-1.000000,2047.688032,hint,nbiot,180 +on5,0,0,24,1,0,1620,4377.620640,25,2,34395.620640,1866.326796,hint,nbiot,180 +on10,0,0,25,1,0,360,4501.300000,25,2,13837.010320,1952.606792,hint,nbiot,180 +on11,0,0,25,1,0,179,4501.479360,26,2,6949.010320,1901.549744,hint,nbiot,180 +on7,0,0,24,1,0,1130,4321.000000,26,0,24427.010320,1811.859792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,26,0,-1.000000,2040.140868,hint,nbiot,180 +on10,0,0,24,1,0,586,4321.989680,26,0,14344.010320,1778.845872,hint,nbiot,180 +on6,0,0,26,1,0,1665,4681.220000,26,3,31609.651600,1991.204416,hint,nbiot,180 +on8,0,0,26,1,0,1540,4683.780000,26,2,33853.010320,2354.836584,hint,nbiot,180 +on3,0,0,26,1,0,1268,4683.958400,26,2,24468.630960,2131.003484,hint,nbiot,180 +on1,0,0,25,1,0,1943,4502.210000,26,1,39513.010320,1956.240500,hint,nbiot,180 +on4,0,0,26,1,0,1657,4683.000000,26,2,31569.030960,2171.737668,hint,nbiot,180 +on2,0,0,25,1,0,1426,4502.000000,26,1,31529.010320,2033.506500,hint,nbiot,180 +on12,0,0,24,1,0,44,4320.030640,26,0,2768.010320,1754.025464,hint,nbiot,180 +on9,0,0,26,1,0,446,4680.520320,26,3,10428.010320,1989.214628,hint,nbiot,180 +on5,0,0,24,1,0,947,4321.000000,26,0,21112.010320,1869.716708,hint,nbiot,180 +on5,0,0,25,1,0,1260,4503.010320,27,2,26921.620640,2024.622544,hint,nbiot,180 +on1,0,0,25,1,0,390,4502.020640,27,2,9503.651600,1979.544632,hint,nbiot,180 +on7,0,0,25,1,0,365,4501.300000,27,1,11071.010320,2030.606584,hint,nbiot,180 +on8,0,0,26,1,0,627,4682.310320,27,2,17234.010320,2117.987336,hint,nbiot,180 +on2,0,0,24,1,0,1283,4322.010320,27,0,26812.010320,1925.370836,hint,nbiot,180 +on10,0,0,26,1,0,371,4681.300000,27,3,9423.010320,2079.869792,hint,nbiot,180 +on12,0,0,26,1,0,446,4683.989680,27,2,9463.030960,2171.945456,hint,nbiot,180 +on4,0,0,24,1,0,1805,4321.000000,27,0,38174.010320,1842.150000,hint,nbiot,180 +on6,0,0,25,1,0,2160,4502.000000,27,1,46344.620640,2032.005000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,27,0,-1.000000,2040.228072,hint,nbiot,180 +on3,0,0,25,1,0,0,4504.269360,27,2,5866.010320,2205.630952,hint,nbiot,180 +on9,0,0,24,1,0,0,4322.969360,27,0,1517.010320,1874.007536,hint,nbiot,180 +on11,0,0,25,1,0,395,4503.051600,27,1,9543.672240,1931.507472,hint,nbiot,180 +on1,0,0,25,1,0,1980,4505.989680,28,2,40958.620640,2318.957580,hint,nbiot,180 +on8,0,0,25,1,0,677,4539.210320,28,3,15535.030960,2179.027212,hint,nbiot,180 +on3,0,0,24,1,0,1528,4321.000000,28,0,32344.010320,1768.056708,hint,nbiot,180 +on5,0,0,24,1,0,781,4321.979360,28,0,15495.010320,1805.498452,hint,nbiot,180 +on7,0,0,24,1,0,1013,4481.000000,28,1,23684.010320,2013.406500,hint,nbiot,180 +on9,0,0,25,1,0,454,4503.010320,28,1,11051.010320,1897.697252,hint,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,hint,nbiot,180 +on12,0,0,25,1,0,900,4504.989680,28,1,18240.620640,2184.000872,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,28,0,-1.000000,2051.134656,hint,nbiot,180 +on10,0,0,25,1,0,1800,4502.620640,28,1,38044.620640,2059.559964,hint,nbiot,180 +on4,0,0,26,1,0,521,4682.872560,28,3,11165.010320,2080.518940,hint,nbiot,180 +on11,0,0,26,1,0,818,4683.900000,28,2,18159.630960,2107.190124,hint,nbiot,180 +on6,0,0,26,1,0,806,4683.720000,28,2,18118.010320,2295.806000,hint,nbiot,180 +on11,0,0,25,1,0,633,4503.300000,29,1,14489.010320,2151.533500,hint,nbiot,180 +on1,0,0,24,1,0,1332,4322.969360,29,0,28204.010320,1970.597536,hint,nbiot,180 +on6,0,0,26,1,0,1455,4681.500320,29,3,31746.010320,2073.716628,hint,nbiot,180 +on8,0,0,26,1,0,1090,4684.000000,29,2,21564.030960,2278.542876,hint,nbiot,180 +on7,0,0,25,1,0,416,4500.989680,29,1,8048.620640,1919.821204,hint,nbiot,180 +on4,0,0,24,1,0,1554,4502.000000,29,1,32549.010320,2033.967792,hint,nbiot,180 +on9,0,0,26,1,0,1706,4682.300000,29,2,37166.010320,2177.769792,hint,nbiot,180 +on2,0,0,27,1,0,933,4863.900000,29,3,21751.010320,2497.694752,hint,nbiot,180 +on5,0,0,25,1,0,1645,4500.369040,29,1,32590.630960,1828.760824,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,29,0,-1.000000,2052.497576,hint,nbiot,180 +on12,0,0,24,1,0,638,4322.000000,29,1,14529.030960,1985.810208,hint,nbiot,180 +on3,0,0,25,1,0,916,4650.300000,29,3,21604.651600,2147.049708,hint,nbiot,180 +on10,0,0,25,1,0,1059,4501.000000,29,1,21524.010320,1917.608000,hint,nbiot,180 +on1,0,0,24,1,0,180,4321.000000,30,0,4406.010320,1781.713208,hint,nbiot,180 +on11,0,0,25,1,0,3154,4501.000000,30,1,61766.010320,2034.406500,hint,nbiot,180 +on10,0,0,25,1,0,720,4503.010320,30,1,17610.010320,2058.610836,hint,nbiot,180 +on12,0,0,25,1,0,466,4501.300000,30,1,13298.010320,1955.610000,hint,nbiot,180 +on6,0,0,27,1,0,866,4866.600000,30,4,17524.630960,2564.334584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,30,0,-1.000000,2053.864656,hint,nbiot,180 +on2,0,0,24,1,0,138,4320.010320,30,0,2231.010320,1754.010836,hint,nbiot,180 +on3,0,0,24,1,0,280,4321.948400,30,0,4324.010320,1754.792776,hint,nbiot,180 +on8,0,0,25,1,0,515,4502.320640,30,1,13338.030960,2112.921548,hint,nbiot,180 +on7,0,0,26,1,0,619,4685.289680,30,2,13378.051600,2412.979080,hint,nbiot,180 +on5,0,0,25,1,0,239,4506.389680,30,2,7243.010320,2123.357496,hint,nbiot,180 +on9,0,0,25,1,0,2178,4501.300000,30,1,45450.010320,1947.290000,hint,nbiot,180 +on4,0,0,27,1,0,713,4865.789360,30,4,17483.010320,2348.477036,hint,nbiot,180 +on11,0,0,26,1,0,876,4682.900000,31,3,22478.010320,2418.047876,hint,nbiot,180 +on12,0,0,26,1,0,1084,4681.000000,31,3,20102.651600,1933.701084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,31,0,-1.000000,2042.754284,hint,nbiot,180 +on10,0,0,25,1,0,473,4501.000000,31,1,11309.010320,1916.756500,hint,nbiot,180 +on4,0,0,26,1,0,1079,4681.000000,31,2,20062.030960,1963.399584,hint,nbiot,180 +on5,0,0,25,1,0,1061,4502.220000,31,1,20022.010320,2033.594500,hint,nbiot,180 +on8,0,0,25,1,0,363,4501.041280,31,1,8560.672240,1898.189928,hint,nbiot,180 +on7,0,0,26,1,0,442,4682.600000,31,3,8480.030960,2115.599668,hint,nbiot,180 +on9,0,0,24,1,0,900,4410.672240,31,1,20151.672240,1790.275604,hint,nbiot,180 +on2,0,0,26,1,0,448,4683.300000,31,3,8520.651600,2352.083168,hint,nbiot,180 +on6,0,0,25,1,0,448,4501.180000,31,1,8440.010320,1945.363500,hint,nbiot,180 +on3,0,0,24,1,0,315,4320.969360,31,0,3995.010320,1754.400952,hint,nbiot,180 +on1,0,0,27,1,0,668,4863.569360,31,3,14866.010320,2302.920828,hint,nbiot,180 +on10,0,0,25,1,0,595,4501.310320,32,1,16571.010320,1910.744004,hint,nbiot,180 +on11,0,0,26,1,0,2086,4684.810640,32,3,45369.010320,2320.774088,hint,nbiot,180 +on12,0,0,23,1,0,518,4443.289680,32,2,11390.010320,2021.716080,hint,nbiot,180 +on1,0,0,27,1,0,2396,4897.200000,32,5,54999.030960,2709.609668,hint,nbiot,180 +on5,0,0,24,1,0,1620,4323.979360,32,0,35040.010320,1878.331868,hint,nbiot,180 +on8,0,0,24,1,0,540,4322.948400,32,0,11489.010320,1893.246068,hint,nbiot,180 +on7,0,0,25,1,0,3254,4502.810000,32,3,71111.010320,2183.337000,hint,nbiot,180 +on4,0,0,25,1,0,2605,4503.000000,32,1,54959.010320,2165.856500,hint,nbiot,180 +on2,0,0,25,1,0,1624,4505.290000,32,1,37698.010320,2361.005708,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,32,0,-1.000000,2115.628072,hint,nbiot,180 +on6,0,0,24,1,0,419,4320.030640,32,0,7553.010320,1754.025464,hint,nbiot,180 +on9,0,0,27,1,0,2502,4864.310000,32,4,51950.010320,2486.537000,hint,nbiot,180 +on3,0,0,26,1,0,1780,4683.889680,32,3,40585.010320,2358.469080,hint,nbiot,180 +on2,0,0,24,1,0,973,4320.989680,33,0,21636.010320,1754.402580,hint,nbiot,180 +on9,0,0,25,1,0,1733,4502.300000,33,2,37516.010320,2096.923292,hint,nbiot,180 +on12,0,0,24,1,0,2610,4321.010320,33,0,51188.010320,1874.010836,hint,nbiot,180 +on7,0,0,25,1,0,1620,4501.379680,33,1,33211.620640,1841.730204,hint,nbiot,180 +on5,0,0,24,1,0,1292,4322.030640,33,0,26017.010320,1896.128756,hint,nbiot,180 +on3,0,0,25,1,0,3136,4502.169360,33,1,64876.010320,1969.490952,hint,nbiot,180 +on8,0,0,24,1,0,553,4321.979360,33,0,14053.010320,1754.805160,hint,nbiot,180 +on4,0,0,25,1,0,1373,4501.310320,33,2,31182.010320,1999.430836,hint,nbiot,180 +on10,0,0,25,1,0,3260,4501.600000,33,2,69565.010320,2137.593084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,33,0,-1.000000,2092.154284,hint,nbiot,180 +on11,0,0,24,1,0,0,4320.010320,33,0,2559.010320,1754.010836,hint,nbiot,180 +on6,0,0,25,1,0,3608,4502.300000,33,1,75624.010320,2088.740000,hint,nbiot,180 +on1,0,0,26,1,0,3496,4682.310000,33,2,69606.630960,2024.003708,hint,nbiot,180 +on6,0,0,25,1,0,2980,4501.300000,34,1,60649.010320,1969.520000,hint,nbiot,180 +on9,0,0,26,1,0,1540,4684.289680,34,2,30233.041280,2170.752664,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,34,0,-1.000000,2066.864656,hint,nbiot,180 +on12,0,0,25,1,0,1374,4503.300000,34,1,28627.010320,2127.743084,hint,nbiot,180 +on11,0,0,25,1,0,1644,4504.289680,34,1,36464.010320,2243.845872,hint,nbiot,180 +on7,0,0,24,1,0,900,4390.630960,34,1,19079.620640,2013.737508,hint,nbiot,180 +on8,0,0,25,1,0,1435,4503.300000,34,1,30192.010320,2222.910208,hint,nbiot,180 +on1,0,0,26,1,0,1413,4682.281920,34,2,28724.010320,1986.669268,hint,nbiot,180 +on5,0,0,27,1,0,1658,4861.620640,34,3,35633.030960,2218.798340,hint,nbiot,180 +on4,0,0,24,1,0,540,4322.010320,34,0,14279.010320,1841.254128,hint,nbiot,180 +on3,0,0,25,1,0,1285,4504.358720,34,2,28764.630960,2075.185280,hint,nbiot,180 +on2,0,0,26,1,0,1685,4684.550960,34,2,35593.010320,2388.900092,hint,nbiot,180 +on10,0,0,26,1,0,1415,4683.000000,34,2,28668.630960,2160.701292,hint,nbiot,180 +on4,0,0,25,1,0,718,4503.000000,35,1,15526.620640,2120.791584,hint,nbiot,180 +on2,0,0,26,1,0,778,4684.041280,35,3,15475.651600,2221.574304,hint,nbiot,180 +on8,0,0,23,1,0,790,4242.000000,35,0,15395.010320,1768.300000,hint,nbiot,180 +on1,0,0,24,1,0,369,4484.671920,35,1,7534.671920,1956.375476,hint,nbiot,180 +on6,0,0,26,1,0,1006,4752.600000,35,3,24718.010320,2244.876376,hint,nbiot,180 +on11,0,0,25,1,0,1048,4501.000000,35,1,21308.010320,1916.756500,hint,nbiot,180 +on9,0,0,24,1,0,180,4321.000000,35,0,4739.010320,1775.466708,hint,nbiot,180 +on12,0,0,24,1,0,0,4321.010320,35,0,1629.010320,1813.554128,hint,nbiot,180 +on10,0,0,25,1,0,296,4641.220000,35,2,7454.030640,2176.931084,hint,nbiot,180 +on5,0,0,25,1,0,842,4504.000000,35,1,15435.030960,2161.946376,hint,nbiot,180 +on7,0,0,26,1,0,321,4685.220000,35,3,7494.651280,2319.987792,hint,nbiot,180 +on3,0,0,24,1,0,540,4320.020640,35,0,12718.010320,1754.021672,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,35,0,-1.000000,2059.681116,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,36,0,-1.000000,2046.024408,hint,nbiot,180 +on11,0,0,25,1,0,1088,4501.300000,36,1,22644.010320,1970.170000,hint,nbiot,180 +on1,0,0,26,1,0,874,4683.289680,36,2,19564.010320,2195.715664,hint,nbiot,180 +on9,0,0,25,1,0,2083,4501.300000,36,2,45700.020320,1925.976500,hint,nbiot,180 +on4,0,0,26,1,0,43,4683.910320,36,3,5813.620640,2145.082544,hint,nbiot,180 +on12,0,0,26,1,0,838,4682.341280,36,2,15977.030960,2123.309804,hint,nbiot,180 +on10,0,0,25,1,0,1743,4503.300000,36,1,34931.010320,2097.083416,hint,nbiot,180 +on2,0,0,25,1,0,653,4502.230640,36,1,15937.010320,2032.558964,hint,nbiot,180 +on7,0,0,26,1,0,724,4682.300000,36,3,16017.651600,2220.826208,hint,nbiot,180 +on8,0,0,25,1,0,1065,4660.020640,36,2,19604.030960,2018.714548,hint,nbiot,180 +on5,0,0,24,1,0,0,4322.010320,36,0,733.010320,1913.417544,hint,nbiot,180 +on3,0,0,24,1,0,138,4320.969360,36,0,629.010320,1754.400952,hint,nbiot,180 +on6,0,0,24,1,0,360,4321.010320,36,0,10638.010320,1830.460836,hint,nbiot,180 +on12,0,0,24,1,0,603,4321.000000,37,0,13482.010320,1802.760000,hint,nbiot,180 +on6,0,0,26,1,0,1208,4736.100000,37,4,32185.010320,2472.431544,hint,nbiot,180 +on7,0,0,28,1,0,961,5043.390000,37,4,19285.430640,2586.013960,hint,nbiot,180 +on8,0,0,25,1,0,360,4503.000000,37,1,8672.620640,2001.485124,hint,nbiot,180 +on2,0,0,25,1,0,603,4501.520000,37,1,13522.030960,1916.619584,hint,nbiot,180 +on10,0,0,26,1,0,923,4682.231280,37,3,19326.051280,2029.282304,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,37,0,-1.000000,2053.127660,hint,nbiot,180 +on5,0,0,26,1,0,698,4681.320000,37,2,14444.010320,2079.429292,hint,nbiot,180 +on11,0,0,25,1,0,933,4502.000000,37,1,19245.030960,1922.090000,hint,nbiot,180 +on1,0,0,25,1,0,874,4557.300000,37,2,22834.010320,2066.669792,hint,nbiot,180 +on4,0,0,25,1,0,541,4501.430960,37,1,13584.610320,1885.345800,hint,nbiot,180 +on3,0,0,27,1,0,1107,4993.489360,37,5,27068.010320,2476.562120,hint,nbiot,180 +on9,0,0,27,1,0,781,4862.030000,37,4,19205.010320,2243.557876,hint,nbiot,180 +on5,0,0,26,1,0,766,4685.610320,38,3,20967.030960,2504.029128,hint,nbiot,180 +on4,0,0,25,1,0,1337,4502.300000,38,1,28707.010320,2077.820000,hint,nbiot,180 +on10,0,0,24,1,0,773,4321.040960,38,0,14812.010320,1870.786300,hint,nbiot,180 +on9,0,0,25,1,0,1073,4502.199360,38,1,20927.010320,1918.094452,hint,nbiot,180 +on12,0,0,24,1,0,390,4321.010320,38,0,8131.010320,1825.260836,hint,nbiot,180 +on6,0,0,24,1,0,2744,4321.000000,38,0,54222.010320,1816.800000,hint,nbiot,180 +on11,0,0,25,1,0,902,4504.000000,38,1,21007.051600,2194.816460,hint,nbiot,180 +on1,0,0,24,1,0,2273,4321.000000,38,0,46188.010320,1877.250000,hint,nbiot,180 +on3,0,0,24,1,0,720,4323.010320,38,0,14943.010320,1873.504128,hint,nbiot,180 +on7,0,0,25,1,0,1554,4501.010320,38,1,32108.010320,1942.767336,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,38,0,-1.000000,2052.557948,hint,nbiot,180 +on2,0,0,26,1,0,1078,4686.620640,38,3,21047.672240,2191.908420,hint,nbiot,180 +on8,0,0,25,1,0,3607,4501.600000,38,1,76613.010320,2145.133292,hint,nbiot,180 +on9,0,0,24,1,0,2363,4321.000000,39,0,50355.010320,1870.756708,hint,nbiot,180 +on4,0,0,24,1,0,2324,4399.210000,39,1,45726.010320,2098.353916,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,39,0,-1.000000,2044.101240,hint,nbiot,180 +on5,0,0,24,1,0,1280,4380.600000,39,2,31501.010320,2029.269792,hint,nbiot,180 +on2,0,0,25,1,0,1696,4505.310320,39,1,35639.010320,2097.120544,hint,nbiot,180 +on6,0,0,27,1,0,1642,4861.599680,39,3,35680.630960,2169.689580,hint,nbiot,180 +on7,0,0,24,1,0,1205,4321.000000,39,0,23083.010320,1764.416708,hint,nbiot,180 +on10,0,0,25,1,0,293,4504.230640,39,1,5036.010320,1967.475588,hint,nbiot,180 +on1,0,0,25,1,0,3057,4500.010320,39,1,59690.010320,1826.017336,hint,nbiot,180 +on12,0,0,27,1,0,1548,4862.530640,39,3,31542.630960,2281.543464,hint,nbiot,180 +on8,0,0,24,0,0,4296,4320.000000,39,0,-1.000000,1854.100000,hint,nbiot,180 +on11,0,0,24,1,0,18,4324.989680,39,0,2674.010320,1810.232704,hint,nbiot,180 +on3,0,0,24,1,0,3060,4321.000000,39,0,61699.010320,1794.700000,hint,nbiot,180 +on12,0,0,25,1,0,360,4503.041280,40,2,10072.010320,2106.183096,hint,nbiot,180 +on9,0,0,24,1,0,2978,4383.300000,40,1,64187.410320,1926.090000,hint,nbiot,180 +on3,0,0,25,1,0,626,4502.030960,40,1,12095.030960,1952.262384,hint,nbiot,180 +on2,0,0,24,1,0,604,4321.072240,40,0,12055.010320,1841.555728,hint,nbiot,180 +on7,0,0,27,1,0,1029,4911.110000,40,4,23994.030960,2500.673460,hint,nbiot,180 +on10,0,0,24,1,0,332,4324.000000,40,0,9991.010320,2028.873208,hint,nbiot,180 +on11,0,0,25,1,0,1063,4504.300000,40,1,23954.010320,2271.169916,hint,nbiot,180 +on4,0,0,26,1,0,670,4681.600000,40,2,17372.030960,2167.849876,hint,nbiot,180 +on6,0,0,26,1,0,594,4683.500000,40,3,17332.010320,2267.423292,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,40,0,-1.000000,2087.294780,hint,nbiot,180 +on1,0,0,27,1,0,765,4967.530960,40,5,18335.030960,2646.872052,hint,nbiot,180 +on8,0,0,26,1,0,951,4683.000000,40,3,18375.651600,2157.933124,hint,nbiot,180 +on5,0,0,25,1,0,842,4503.300000,40,2,18295.010320,1977.463084,hint,nbiot,180 +on5,0,0,26,1,0,873,4686.259040,41,2,18576.010320,2321.333324,hint,nbiot,180 +on8,0,0,26,1,0,717,4684.210000,41,3,14508.651600,2162.700416,hint,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,hint,nbiot,180 +on11,0,0,25,1,0,827,4501.210320,41,2,16973.010320,1923.334128,hint,nbiot,180 +on1,0,0,24,1,0,56,4451.258720,41,2,4019.010320,2070.423612,hint,nbiot,180 +on9,0,0,24,1,0,619,4324.979360,41,0,14428.010320,2018.208452,hint,nbiot,180 +on7,0,0,27,1,0,963,4862.200000,41,4,24821.010320,2443.026584,hint,nbiot,180 +on10,0,0,24,1,0,1080,4321.010320,41,0,24919.010320,1779.110836,hint,nbiot,180 +on6,0,0,24,1,0,117,4320.969360,41,0,1179.010320,1754.400952,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,41,0,-1.000000,2020.331364,hint,nbiot,180 +on4,0,0,25,1,0,731,4504.000000,41,1,14468.030960,2144.779668,hint,nbiot,180 +on2,0,0,26,1,0,450,4684.538080,41,3,14558.010320,2262.768524,hint,nbiot,180 +on3,0,0,24,1,0,385,4322.000000,41,0,7507.010320,1778.486624,hint,nbiot,180 +on6,0,0,25,1,0,504,4506.948720,42,1,10256.010320,2169.405904,hint,nbiot,180 +on1,0,0,26,1,0,1106,4684.000000,42,2,21673.030960,2107.852876,hint,nbiot,180 +on3,0,0,26,1,0,1175,4684.289680,42,2,23486.630960,2295.065788,hint,nbiot,180 +on5,0,0,26,1,0,4020,4680.900000,42,2,83770.010000,2190.866500,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,42,0,-1.000000,2040.274820,hint,nbiot,180 +on11,0,0,25,1,0,1136,4504.300000,42,1,23445.010320,2085.133000,hint,nbiot,180 +on8,0,0,25,1,0,978,4504.289680,42,1,21633.010320,2158.175872,hint,nbiot,180 +on10,0,0,25,1,0,679,4504.510000,42,1,17245.010320,2185.583708,hint,nbiot,180 +on12,0,0,26,1,0,874,4685.041280,42,2,17286.630960,2327.606428,hint,nbiot,180 +on7,0,0,26,1,0,580,4684.700640,42,3,11328.010320,2205.263464,hint,nbiot,180 +on9,0,0,24,1,0,0,4324.610320,42,1,260.620640,1885.682668,hint,nbiot,180 +on2,0,0,24,1,0,219,4325.938080,42,0,6004.010320,1977.641940,hint,nbiot,180 +on4,0,0,25,1,0,1576,4502.000000,42,1,31081.010320,1967.856500,hint,nbiot,180 +on8,0,0,24,1,0,1082,4321.989680,43,0,24637.010320,1843.852580,hint,nbiot,180 +on9,0,0,25,1,0,1374,4502.000000,43,1,28658.010320,2020.123000,hint,nbiot,180 +on2,0,0,25,1,0,940,4505.400000,43,1,19993.630960,2161.246624,hint,nbiot,180 +on7,0,0,24,1,0,38,4324.969040,43,0,151.010320,1966.867948,hint,nbiot,180 +on6,0,0,25,1,0,3238,4501.300000,43,1,66315.010320,1967.765000,hint,nbiot,180 +on4,0,0,25,1,0,896,4502.220000,43,1,15929.010320,1972.039292,hint,nbiot,180 +on12,0,0,24,1,0,720,4323.030960,43,0,16023.010320,2001.165676,hint,nbiot,180 +on11,0,0,26,1,0,899,4681.310320,43,4,19952.010320,2068.648628,hint,nbiot,180 +on1,0,0,25,1,0,731,4502.041280,43,1,16063.030960,2033.133220,hint,nbiot,180 +on10,0,0,27,1,0,1369,4863.620640,43,3,28699.630960,2360.681256,hint,nbiot,180 +on3,0,0,27,1,0,1302,4864.900000,43,3,29042.010320,2718.803084,hint,nbiot,180 +on5,0,0,25,1,0,2740,4501.310320,43,1,58397.010320,2013.074128,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,43,0,-1.000000,2064.264864,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,44,0,-1.000000,2014.214656,hint,nbiot,180 +on10,0,0,24,1,0,180,4325.989680,44,0,4409.010320,2070.372912,hint,nbiot,180 +on2,0,0,24,1,0,1256,4444.010320,44,2,24383.630960,1803.637252,hint,nbiot,180 +on1,0,0,25,1,0,1022,4502.000000,44,1,20842.630960,2034.156500,hint,nbiot,180 +on8,0,0,25,1,0,1039,4505.300000,44,1,24342.010320,2287.279792,hint,nbiot,180 +on3,0,0,24,1,0,975,4322.030960,44,0,20801.010320,1911.345592,hint,nbiot,180 +on9,0,0,24,1,0,1620,4320.010320,44,0,32494.010320,1754.010836,hint,nbiot,180 +on4,0,0,26,1,0,480,4685.579360,44,3,11662.010320,2307.932076,hint,nbiot,180 +on12,0,0,24,1,0,22,4321.989680,44,0,1578.010320,1754.815996,hint,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,25,1,0,2994,4501.000000,44,1,60961.010320,1917.406500,hint,nbiot,180 +on7,0,0,25,1,0,479,4501.269360,44,1,9681.010320,1836.595952,hint,nbiot,180 +on6,0,0,25,1,0,1274,4505.289680,44,1,28543.010320,2165.095996,hint,nbiot,180 +on4,0,0,24,1,0,900,4320.010320,45,0,20025.010320,1754.010836,hint,nbiot,180 +on6,0,0,25,1,0,1525,4501.210000,45,1,33034.010320,2033.450292,hint,nbiot,180 +on11,0,0,24,1,0,1080,4322.010320,45,0,21778.010320,1805.777544,hint,nbiot,180 +on12,0,0,26,1,0,2217,4682.300000,45,2,43710.630960,2111.723084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,45,0,-1.000000,2064.204284,hint,nbiot,180 +on2,0,0,25,1,0,350,4501.300000,45,2,7397.010320,1833.026708,hint,nbiot,180 +on1,0,0,25,1,0,2070,4502.300000,45,3,43669.010320,2001.379584,hint,nbiot,180 +on10,0,0,25,1,0,1260,4501.641280,45,1,28551.620640,1913.314928,hint,nbiot,180 +on9,0,0,24,1,0,205,4320.000000,45,0,4734.010320,1754.013208,hint,nbiot,180 +on8,0,0,25,1,0,1630,4502.000000,45,1,33075.630960,2064.713208,hint,nbiot,180 +on5,0,0,24,1,0,1396,4320.000000,45,0,28486.010320,1754.013208,hint,nbiot,180 +on7,0,0,25,1,0,1936,4502.479360,45,1,42395.010320,2037.026452,hint,nbiot,180 +on3,0,0,26,1,0,1413,4685.300000,45,3,31688.010320,2297.529792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,46,0,-1.000000,2062.931116,hint,nbiot,180 +on8,0,0,25,1,0,3509,4502.300000,46,1,74629.010320,2138.256584,hint,nbiot,180 +on5,0,0,25,1,0,1674,4503.310320,46,1,35549.010320,2202.257544,hint,nbiot,180 +on10,0,0,24,1,0,207,4322.010320,46,0,6368.010320,1792.530960,hint,nbiot,180 +on6,0,0,24,1,0,3600,4322.000000,46,0,74738.010320,1872.450000,hint,nbiot,180 +on1,0,0,24,1,0,3420,4359.000000,46,1,70276.620640,2066.708292,hint,nbiot,180 +on12,0,0,25,1,0,1373,4501.210000,46,1,27118.010320,1917.490500,hint,nbiot,180 +on2,0,0,25,1,0,2994,4501.000000,46,1,60492.010320,1917.406500,hint,nbiot,180 +on11,0,0,24,1,0,900,4320.979360,46,0,18309.010320,1754.405160,hint,nbiot,180 +on3,0,0,25,1,0,1080,4502.979680,46,1,22044.020320,1998.798372,hint,nbiot,180 +on9,0,0,24,1,0,71,4321.989680,46,0,2723.010320,1829.169288,hint,nbiot,180 +on4,0,0,24,1,0,1080,4325.020640,46,0,22003.010320,2075.684964,hint,nbiot,180 +on7,0,0,25,1,0,2273,4502.041280,46,1,49145.010320,2059.529928,hint,nbiot,180 +on1,0,0,24,1,0,360,4320.969040,47,0,7440.010320,1754.401032,hint,nbiot,180 +on3,0,0,25,1,0,1068,4503.000000,47,1,24155.030960,2221.360000,hint,nbiot,180 +on6,0,0,24,1,0,1315,4390.300000,47,1,29956.010320,2094.120000,hint,nbiot,180 +on4,0,0,24,1,0,846,4322.610640,47,0,15992.010320,1870.374172,hint,nbiot,180 +on12,0,0,26,1,0,1194,4682.300000,47,2,27116.630960,2064.669792,hint,nbiot,180 +on5,0,0,24,1,0,966,4321.000000,47,0,21482.010320,1801.850000,hint,nbiot,180 +on11,0,0,24,1,0,1749,4321.000000,47,0,34705.010320,1761.550000,hint,nbiot,180 +on8,0,0,25,1,0,929,4502.000000,47,1,21522.030960,1989.279668,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,47,0,-1.000000,2053.804284,hint,nbiot,180 +on9,0,0,24,1,0,1080,4321.989680,47,0,24103.010320,1836.962580,hint,nbiot,180 +on2,0,0,26,1,0,1063,4682.300000,47,2,24034.010320,2196.613084,hint,nbiot,180 +on10,0,0,25,1,0,1129,4502.300000,47,1,27075.010320,2076.259792,hint,nbiot,180 +on7,0,0,26,1,0,959,4681.300000,47,4,21562.651600,2067.923208,hint,nbiot,180 +on2,0,0,27,1,0,827,4991.789680,48,5,23061.010320,2665.065580,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,48,0,-1.000000,2070.771364,hint,nbiot,180 +on12,0,0,24,1,0,0,4321.010320,48,0,2016.010320,1869.064336,hint,nbiot,180 +on6,0,0,24,1,0,2740,4321.000000,48,0,56730.010320,1819.400000,hint,nbiot,180 +on4,0,0,24,1,0,222,4459.989680,48,2,4097.620640,2119.689204,hint,nbiot,180 +on9,0,0,25,1,0,514,4505.510000,48,1,12764.030960,2190.917208,hint,nbiot,180 +on11,0,0,27,1,0,815,4865.789680,48,3,21172.010320,2419.132164,hint,nbiot,180 +on7,0,0,26,1,0,351,4685.379360,48,3,7496.620640,2281.786660,hint,nbiot,180 +on5,0,0,24,1,0,548,4323.000000,48,0,12724.010320,1992.456708,hint,nbiot,180 +on3,0,0,26,1,0,715,4682.600000,48,2,15822.020640,2192.573292,hint,nbiot,180 +on8,0,0,25,1,0,349,4501.020640,48,1,4031.010320,1917.629672,hint,nbiot,180 +on10,0,0,26,1,0,777,4683.600000,48,2,21213.630960,2299.839792,hint,nbiot,180 +on1,0,0,26,1,0,313,4683.600000,48,2,7435.010320,2162.670084,hint,nbiot,180 +on3,0,0,25,1,0,303,4502.000000,49,1,7255.010320,2032.460000,hint,nbiot,180 +on7,0,0,24,1,0,804,4323.989680,49,0,15462.010320,1914.859288,hint,nbiot,180 +on11,0,0,25,1,0,102,4503.300000,49,2,4248.010320,2127.229792,hint,nbiot,180 +on6,0,0,27,1,0,845,4862.309680,49,3,15502.030960,2126.916956,hint,nbiot,180 +on10,0,0,25,1,0,205,4503.369040,49,2,4336.630960,2151.249324,hint,nbiot,180 +on1,0,0,25,1,0,488,4502.300000,49,1,11659.010320,2006.254792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,49,0,-1.000000,2040.187824,hint,nbiot,180 +on5,0,0,24,1,0,900,4321.010320,49,0,20812.010320,1784.317544,hint,nbiot,180 +on12,0,0,26,1,0,674,4680.341280,49,2,11700.630960,1949.629928,hint,nbiot,180 +on8,0,0,24,1,0,89,4322.020320,49,0,2398.010320,1871.178044,hint,nbiot,180 +on4,0,0,25,1,0,180,4503.969040,49,2,4296.010320,2058.344324,hint,nbiot,180 +on9,0,0,24,1,0,1080,4323.000000,49,0,23680.010320,1880.663416,hint,nbiot,180 +on2,0,0,24,1,0,3060,4321.000000,49,0,64521.010320,1845.400000,hint,nbiot,180 +on4,0,0,25,1,0,1692,4501.300000,50,1,35621.010320,1965.490000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,50,0,-1.000000,2064.231116,hint,nbiot,180 +on2,0,0,24,1,0,24,4322.000000,50,0,3654.010320,1830.713292,hint,nbiot,180 +on3,0,0,25,1,0,180,4504.030960,50,1,3752.051280,1870.109176,hint,nbiot,180 +on6,0,0,24,1,0,322,4483.300000,50,1,9200.010320,2063.946668,hint,nbiot,180 +on1,0,0,26,1,0,797,4682.948720,50,3,13050.051280,2049.739196,hint,nbiot,180 +on5,0,0,25,1,0,512,4501.010000,50,1,9240.030960,1891.390584,hint,nbiot,180 +on12,0,0,26,1,0,421,4683.600000,50,2,12929.010320,2405.920000,hint,nbiot,180 +on10,0,0,27,1,0,653,4864.900000,50,3,15787.010320,2566.579792,hint,nbiot,180 +on9,0,0,24,1,0,45,4321.959040,50,0,907.010320,1754.803532,hint,nbiot,180 +on8,0,0,27,1,0,519,4941.851280,50,7,13009.430640,2479.983720,hint,nbiot,180 +on7,0,0,25,1,0,513,4501.320320,50,1,12969.030960,2007.624836,hint,nbiot,180 +on11,0,0,27,1,0,659,4864.110000,50,3,15827.030960,2366.375376,hint,nbiot,180 +on7,0,0,24,1,0,1620,4324.989680,51,0,35225.010320,1902.512580,hint,nbiot,180 +on4,0,0,24,1,0,540,4323.010320,51,0,12713.010320,2002.217544,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,51,0,-1.000000,2037.621364,hint,nbiot,180 +on6,0,0,25,1,0,1697,4560.589680,51,4,42356.010320,2373.050788,hint,nbiot,180 +on9,0,0,25,1,0,2020,4502.000000,51,2,42396.630960,1875.771832,hint,nbiot,180 +on8,0,0,24,1,0,1557,4323.000000,51,0,29191.010320,1871.576832,hint,nbiot,180 +on11,0,0,24,1,0,1407,4323.958720,51,0,29281.010320,1931.753612,hint,nbiot,180 +on5,0,0,24,1,0,900,4320.020640,51,0,20210.010320,1754.021672,hint,nbiot,180 +on3,0,0,24,0,0,4319,4320.000000,51,0,-1.000000,1729.300000,hint,nbiot,180 +on12,0,0,24,1,0,852,4321.000000,51,0,14836.010320,1754.413416,hint,nbiot,180 +on10,0,0,24,1,0,289,4320.989680,51,0,5097.010320,1754.402580,hint,nbiot,180 +on2,0,0,25,1,0,1846,4500.969360,51,1,38728.010320,1826.400952,hint,nbiot,180 +on1,0,0,24,1,0,61,4321.010320,51,0,3176.010320,1754.424252,hint,nbiot,180 +on8,0,0,25,1,0,956,4511.310320,52,2,23410.010320,2098.603836,hint,nbiot,180 +on9,0,0,25,1,0,0,4502.600000,52,1,1663.620640,1853.905124,hint,nbiot,180 +on7,0,0,26,1,0,1228,4681.330960,52,2,23451.630960,2063.009008,hint,nbiot,180 +on3,0,0,24,1,0,293,4323.010320,52,0,4866.010320,1955.670836,hint,nbiot,180 +on10,0,0,24,1,0,609,4322.989680,52,0,14101.010320,1916.662372,hint,nbiot,180 +on12,0,0,26,1,0,1202,4684.600000,52,2,25332.010320,2486.783500,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,52,0,-1.000000,2046.071364,hint,nbiot,180 +on2,0,0,24,1,0,3553,4321.000000,52,0,70870.010320,1758.950000,hint,nbiot,180 +on5,0,0,24,1,0,180,4321.000000,52,0,4960.010320,1754.413416,hint,nbiot,180 +on11,0,0,24,1,0,777,4322.000000,52,0,14896.010320,1902.609792,hint,nbiot,180 +on4,0,0,28,1,0,707,5043.620640,52,5,14937.630960,2431.517964,hint,nbiot,180 +on6,0,0,26,1,0,726,4682.680000,52,2,14142.630960,2091.751708,hint,nbiot,180 +on1,0,0,24,1,0,461,4325.020320,52,0,8767.010320,2209.988044,hint,nbiot,180 +on12,0,0,27,1,0,466,4864.200000,53,4,12069.010320,2344.116584,hint,nbiot,180 +on10,0,0,24,1,0,642,4461.020640,53,2,15599.010320,2030.309756,hint,nbiot,180 +on6,0,0,25,1,0,2633,4502.000000,53,1,54238.010320,2034.150000,hint,nbiot,180 +on7,0,0,25,1,0,462,4502.189680,53,1,11948.010320,1928.710748,hint,nbiot,180 +on11,0,0,26,1,0,1003,4681.320640,53,2,21239.630960,2018.154880,hint,nbiot,180 +on2,0,0,24,1,0,293,4321.000000,53,0,5021.010320,1779.113416,hint,nbiot,180 +on4,0,0,25,1,0,530,4504.989680,53,1,10310.010320,2251.743664,hint,nbiot,180 +on3,0,0,26,1,0,822,4683.899680,53,2,21198.010320,2197.396164,hint,nbiot,180 +on9,0,0,26,1,0,1082,4682.810000,53,2,24783.010320,2247.517292,hint,nbiot,180 +on5,0,0,26,1,0,758,4685.179680,53,2,11988.030960,2288.114748,hint,nbiot,180 +on8,0,0,26,1,0,568,4684.000000,53,2,10351.630960,2070.823000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,53,0,-1.000000,2086.474532,hint,nbiot,180 +on1,0,0,24,1,0,720,4323.979360,53,0,15653.010320,1904.461868,hint,nbiot,180 +on12,0,0,26,1,0,1693,4683.300000,54,2,35792.030960,2216.506376,hint,nbiot,180 +on6,0,0,24,1,0,0,4320.010320,54,0,1032.010320,1754.010836,hint,nbiot,180 +on2,0,0,24,1,0,1553,4321.000000,54,0,32057.010320,1770.909792,hint,nbiot,180 +on5,0,0,24,1,0,1297,4321.000000,54,0,28803.010320,1821.350000,hint,nbiot,180 +on3,0,0,24,1,0,1390,4323.000000,54,0,28843.030960,1887.793292,hint,nbiot,180 +on11,0,0,25,1,0,2454,4500.969360,54,1,48888.010320,1826.407452,hint,nbiot,180 +on7,0,0,27,1,0,1633,4862.551280,54,3,32098.630960,2188.341720,hint,nbiot,180 +on9,0,0,24,1,0,1157,4321.927760,54,0,24986.010320,1840.857936,hint,nbiot,180 +on4,0,0,25,1,0,1465,4501.600000,54,1,35752.010320,2126.095000,hint,nbiot,180 +on8,0,0,24,1,0,1080,4323.989680,54,0,25105.010320,1991.819288,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,54,0,-1.000000,2052.107576,hint,nbiot,180 +on1,0,0,25,1,0,2376,4502.300000,54,2,50528.010320,2127.863292,hint,nbiot,180 +on10,0,0,27,1,0,1636,4862.200000,54,3,38715.010320,2476.573084,hint,nbiot,180 +on9,0,0,26,1,0,693,4684.000000,55,2,14124.030960,2214.446168,hint,nbiot,180 +on11,0,0,27,1,0,829,4903.500000,55,5,20234.630960,2452.994584,hint,nbiot,180 +on3,0,0,25,1,0,1373,4501.010320,55,1,27053.010320,1935.877336,hint,nbiot,180 +on10,0,0,26,1,0,314,4684.499680,55,3,8850.010320,2347.533080,hint,nbiot,180 +on5,0,0,24,1,0,838,4446.190000,55,1,16794.010320,1905.232500,hint,nbiot,180 +on8,0,0,25,1,0,540,4502.620640,55,1,14204.672240,1942.371672,hint,nbiot,180 +on1,0,0,24,1,0,600,4321.000000,55,0,14084.010320,1805.750000,hint,nbiot,180 +on12,0,0,26,1,0,830,4682.600000,55,2,20193.010320,2128.613084,hint,nbiot,180 +on6,0,0,25,1,0,1519,4501.300000,55,1,30894.010320,1952.626500,hint,nbiot,180 +on2,0,0,26,1,0,1100,4682.300000,55,2,24221.010320,2165.029792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,55,0,-1.000000,2063.157576,hint,nbiot,180 +on4,0,0,26,1,0,781,4683.000000,55,3,14164.651600,2082.089460,hint,nbiot,180 +on7,0,0,25,1,0,306,4500.969360,55,1,5385.010320,1826.407452,hint,nbiot,180 +on8,0,0,26,1,0,1653,4684.951600,56,3,30429.661920,2345.192472,hint,nbiot,180 +on4,0,0,25,1,0,1533,4502.051600,56,2,30389.041280,1951.223932,hint,nbiot,180 +on5,0,0,24,1,0,0,4320.010320,56,0,1229.010320,1754.010836,hint,nbiot,180 +on10,0,0,24,1,0,437,4320.000000,56,0,7986.010320,1754.006708,hint,nbiot,180 +on9,0,0,25,1,0,1689,4503.300000,56,1,36793.010320,2220.440000,hint,nbiot,180 +on1,0,0,27,1,0,1739,4863.900000,56,3,33479.030960,2379.856460,hint,nbiot,180 +on7,0,0,25,1,0,1795,4503.300000,56,1,33439.010320,1965.523416,hint,nbiot,180 +on3,0,0,25,1,0,2112,4501.010320,56,1,41960.010320,1864.767336,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,56,0,-1.000000,2021.344532,hint,nbiot,180 +on12,0,0,24,1,0,652,4326.020640,56,0,12645.010320,2182.841796,hint,nbiot,180 +on2,0,0,25,1,0,1386,4503.279360,56,1,30348.010320,2021.551660,hint,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,hint,nbiot,180 +on11,0,0,24,1,0,1032,4323.820640,56,0,20899.010320,2039.845172,hint,nbiot,180 +on3,0,0,24,1,0,1331,4507.300000,57,2,30942.010320,2145.878044,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,57,0,-1.000000,2079.394160,hint,nbiot,180 +on10,0,0,26,1,0,899,4683.251280,57,2,17823.430640,2090.763888,hint,nbiot,180 +on6,0,0,27,1,0,1216,4862.790000,57,3,25818.010320,2358.502376,hint,nbiot,180 +on7,0,0,25,1,0,852,4503.010000,57,1,17743.010320,2113.853792,hint,nbiot,180 +on12,0,0,24,1,0,615,4321.969360,57,0,11149.010320,1792.110952,hint,nbiot,180 +on5,0,0,25,1,0,872,4501.020000,57,1,17783.030960,1891.148000,hint,nbiot,180 +on8,0,0,24,1,0,457,4320.000000,57,0,10184.010320,1754.013208,hint,nbiot,180 +on9,0,0,26,1,0,1226,4682.248400,57,2,25112.030960,1988.599152,hint,nbiot,180 +on11,0,0,28,1,0,1067,5045.410000,57,5,25152.651600,2816.850252,hint,nbiot,180 +on1,0,0,25,1,0,1024,4501.600000,57,1,25072.010320,2070.390000,hint,nbiot,180 +on4,0,0,26,1,0,856,4683.158720,57,3,17864.051280,2107.867988,hint,nbiot,180 +on2,0,0,27,1,0,828,4864.110000,57,5,19229.010320,2416.828376,hint,nbiot,180 +on9,0,0,25,1,0,3580,4501.300000,58,1,75418.010320,1986.036500,hint,nbiot,180 +on11,0,0,25,1,0,55,4501.320640,58,2,3770.010320,2023.478464,hint,nbiot,180 +on12,0,0,25,1,0,991,4506.010000,58,1,22676.010320,2234.277000,hint,nbiot,180 +on1,0,0,25,1,0,540,4505.020640,58,1,11966.620640,2147.229964,hint,nbiot,180 +on4,0,0,24,1,0,9,4322.959040,58,0,3280.010320,1871.553532,hint,nbiot,180 +on5,0,0,25,1,0,757,4501.300000,58,1,19152.010320,1914.270000,hint,nbiot,180 +on3,0,0,26,1,0,358,4687.000000,58,2,8977.630960,2200.684624,hint,nbiot,180 +on10,0,0,24,0,0,4297,4320.000000,58,0,-1.000000,1962.000000,hint,nbiot,180 +on8,0,0,25,1,0,676,4501.190000,58,1,11871.010320,1916.442292,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,58,0,-1.000000,2053.891488,hint,nbiot,180 +on2,0,0,26,1,0,1054,4685.169360,58,2,22717.630960,2250.002368,hint,nbiot,180 +on7,0,0,27,1,0,654,4864.119680,58,3,11912.630960,2211.739204,hint,nbiot,180 +on6,0,0,24,1,0,425,4322.010320,58,0,8936.010320,1848.677336,hint,nbiot,180 +on8,0,0,25,1,0,20,4501.041280,59,1,459.630960,1920.296428,hint,nbiot,180 +on3,0,0,26,1,0,693,4682.300000,59,2,17105.010320,2196.613292,hint,nbiot,180 +on5,0,0,26,1,0,899,4680.672240,59,3,17225.672240,1925.348936,hint,nbiot,180 +on10,0,0,24,1,0,1039,4320.979680,59,0,18960.010320,1755.041872,hint,nbiot,180 +on4,0,0,25,1,0,759,4501.000000,59,1,17185.051600,1892.023168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2040.160992,hint,nbiot,180 +on2,0,0,27,1,0,590,4862.980000,59,3,12406.010320,2354.041376,hint,nbiot,180 +on12,0,0,27,1,0,623,4862.600000,59,3,17145.030960,2274.186376,hint,nbiot,180 +on9,0,0,25,1,0,306,4635.600000,59,3,9202.010320,2165.576376,hint,nbiot,180 +on11,0,0,25,1,0,577,4639.041280,59,3,9282.651600,1987.346344,hint,nbiot,180 +on7,0,0,27,1,0,460,4863.600000,59,3,9242.030960,2361.419460,hint,nbiot,180 +on1,0,0,24,1,0,79,4321.000000,59,0,418.010320,1793.009792,hint,nbiot,180 +on6,0,0,25,1,0,294,4502.000000,59,1,5498.010320,2005.737876,hint,nbiot,180 +on1,0,0,25,1,0,197,4503.000000,60,1,4629.030960,2112.789668,hint,nbiot,180 +on6,0,0,26,1,0,602,4681.900000,60,3,15473.010320,2224.279584,hint,nbiot,180 +on4,0,0,26,1,0,447,4681.300000,60,2,9314.010320,2079.213084,hint,nbiot,180 +on12,0,0,26,1,0,178,4683.000000,60,3,4669.651600,2119.538040,hint,nbiot,180 +on9,0,0,24,1,0,238,4322.000000,60,0,4589.010320,1923.143500,hint,nbiot,180 +on2,0,0,27,1,0,801,4863.510000,60,3,15514.630960,2277.143668,hint,nbiot,180 +on8,0,0,24,1,0,0,4322.000000,60,0,3462.010320,1833.710000,hint,nbiot,180 +on10,0,0,25,1,0,693,4501.000000,60,1,13936.030960,1891.386584,hint,nbiot,180 +on7,0,0,25,1,0,626,4834.900000,60,3,20476.010320,2504.009792,hint,nbiot,180 +on11,0,0,26,1,0,463,4681.610320,60,2,13896.010320,2135.438504,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,60,0,-1.000000,2089.424284,hint,nbiot,180 +on5,0,0,26,1,0,312,4683.300000,60,2,9414.010320,2121.620000,hint,nbiot,180 +on3,0,0,26,1,0,544,4683.300000,60,2,9355.041280,2107.299668,hint,nbiot,180 +on5,0,0,26,1,0,1706,4681.300000,61,3,34779.010320,2080.519792,hint,nbiot,180 +on3,0,0,26,1,0,786,4681.620640,61,2,21523.630960,2223.018172,hint,nbiot,180 +on6,0,0,25,1,0,1217,4501.020640,61,1,25075.010320,1917.421464,hint,nbiot,180 +on1,0,0,25,1,0,361,4502.600000,61,2,14024.010320,2152.026584,hint,nbiot,180 +on10,0,0,24,1,0,1448,4321.000000,61,0,32215.010320,1771.313208,hint,nbiot,180 +on12,0,0,24,1,0,268,4320.958720,61,0,6832.010320,1754.403404,hint,nbiot,180 +on4,0,0,25,1,0,654,4627.210000,61,2,14064.030960,2181.538376,hint,nbiot,180 +on8,0,0,26,1,0,693,4683.490000,61,2,15719.010320,2312.665792,hint,nbiot,180 +on7,0,0,25,1,0,1011,4501.000000,61,1,21482.010320,1916.366292,hint,nbiot,180 +on9,0,0,24,1,0,211,4433.269360,61,2,7502.010320,2011.474244,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,61,0,-1.000000,2040.160992,hint,nbiot,180 +on2,0,0,24,1,0,0,4321.969040,61,0,3177.010320,1754.807740,hint,nbiot,180 +on11,0,0,24,1,0,1260,4321.010320,61,0,26450.010320,1756.620836,hint,nbiot,180 +on8,0,0,24,1,0,1202,4320.990000,62,0,25091.010320,1871.415916,hint,nbiot,180 +on11,0,0,24,1,0,2751,4321.000000,62,0,56742.010320,1812.250000,hint,nbiot,180 +on5,0,0,24,1,0,1440,4321.000000,62,0,30213.010320,1816.150000,hint,nbiot,180 +on3,0,0,25,1,0,2816,4502.320640,62,1,58956.010320,2009.591672,hint,nbiot,180 +on9,0,0,24,1,0,4183,4320.000000,62,0,84826.010000,1754.006500,hint,nbiot,180 +on6,0,0,25,1,0,1161,4501.310320,62,2,25693.010320,2097.574128,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,62,0,-1.000000,2070.697368,hint,nbiot,180 +on1,0,0,25,1,0,1952,4503.979680,62,1,42824.020320,2078.511788,hint,nbiot,180 +on4,0,0,24,1,0,195,4321.010320,62,0,4155.010320,1812.917544,hint,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,hint,nbiot,180 +on2,0,0,25,1,0,2520,4502.630960,62,1,51757.620640,1942.584216,hint,nbiot,180 +on10,0,0,25,1,0,2469,4500.310320,62,1,48889.010320,1859.930836,hint,nbiot,180 +on12,0,0,24,1,0,360,4321.010320,62,0,8216.010320,1757.660836,hint,nbiot,180 +on12,0,0,24,1,0,3105,4321.000000,63,0,61681.010320,1816.150000,hint,nbiot,180 +on3,0,0,25,1,0,1175,4501.600000,63,1,27461.010320,2020.346708,hint,nbiot,180 +on10,0,0,25,1,0,1014,4501.000000,63,1,21055.010320,1917.406500,hint,nbiot,180 +on7,0,0,24,1,0,99,4320.010320,63,0,427.010320,1754.010836,hint,nbiot,180 +on8,0,0,25,1,0,1373,4501.020640,63,1,29219.010320,1933.684880,hint,nbiot,180 +on2,0,0,25,1,0,2063,4500.310320,63,1,44465.010320,1856.550836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,63,0,-1.000000,2084.361200,hint,nbiot,180 +on6,0,0,24,1,0,1013,4365.000000,63,1,23504.010320,1772.019708,hint,nbiot,180 +on11,0,0,24,1,0,497,4321.989680,63,0,7416.010320,1869.202580,hint,nbiot,180 +on4,0,0,25,1,0,792,4504.651280,63,2,14929.651280,2022.035428,hint,nbiot,180 +on1,0,0,25,1,0,753,4504.000000,63,1,14889.030640,2092.813416,hint,nbiot,180 +on9,0,0,24,1,0,540,4321.979360,63,0,11503.010320,1821.111868,hint,nbiot,180 +on5,0,0,24,1,0,1917,4323.000000,63,0,36571.010320,1907.956708,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,64,0,-1.000000,2014.214656,hint,nbiot,180 +on12,0,0,24,1,0,566,4321.989680,64,0,14199.010320,1796.409288,hint,nbiot,180 +on8,0,0,24,1,0,720,4457.010000,64,1,14489.020320,2011.883916,hint,nbiot,180 +on3,0,0,26,1,0,1234,4683.020640,64,2,27318.630960,2199.534672,hint,nbiot,180 +on1,0,0,25,1,0,1347,4570.589680,64,3,29021.010320,2090.848872,hint,nbiot,180 +on4,0,0,25,1,0,540,4505.979360,64,1,14246.020320,2166.698284,hint,nbiot,180 +on9,0,0,24,1,0,3060,4321.010320,64,0,61328.010320,1870.760836,hint,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,25,1,0,1013,4502.000000,64,1,19698.010320,1916.779916,hint,nbiot,180 +on6,0,0,26,1,0,988,4684.210000,64,2,19739.630960,1979.088832,hint,nbiot,180 +on7,0,0,24,1,0,1198,4322.989680,64,0,23102.010320,1796.809288,hint,nbiot,180 +on11,0,0,25,1,0,1194,4505.989680,64,1,27277.010320,2184.427080,hint,nbiot,180 +on10,0,0,24,1,0,3870,4320.010320,64,0,77314.010320,1754.010836,hint,nbiot,180 +on10,0,0,25,1,0,1773,4501.000000,65,1,35966.010320,1917.406500,hint,nbiot,180 +on2,0,0,26,1,0,626,4681.310000,65,2,14143.010320,2079.860584,hint,nbiot,180 +on3,0,0,25,1,0,1024,4501.300000,65,1,24414.010320,2027.363292,hint,nbiot,180 +on4,0,0,25,1,0,901,4502.000000,65,1,19755.030960,2008.136376,hint,nbiot,180 +on9,0,0,26,1,0,407,4684.320640,65,2,10768.030960,2360.421424,hint,nbiot,180 +on7,0,0,24,1,0,183,4321.010320,65,0,6408.010320,1867.640836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,65,0,-1.000000,2065.517700,hint,nbiot,180 +on11,0,0,26,1,0,647,4683.900000,65,3,19715.010320,2456.589876,hint,nbiot,180 +on5,0,0,24,1,0,764,4321.000000,65,1,17273.010320,1798.866292,hint,nbiot,180 +on8,0,0,26,1,0,814,4782.641280,65,3,17314.630960,2043.791220,hint,nbiot,180 +on6,0,0,25,1,0,462,4626.248400,65,3,10808.651600,2060.872900,hint,nbiot,180 +on1,0,0,25,1,0,474,4506.258720,65,1,10728.010320,2176.851904,hint,nbiot,180 +on12,0,0,24,1,0,1772,4321.000000,65,0,39561.010320,1864.250000,hint,nbiot,180 +on7,0,0,25,1,0,1377,4502.190000,66,1,27559.010320,1977.032500,hint,nbiot,180 +on10,0,0,24,1,0,170,4355.289680,66,2,6637.010320,1886.025664,hint,nbiot,180 +on11,0,0,26,1,0,538,4725.869360,66,4,20193.010320,2365.244244,hint,nbiot,180 +on12,0,0,26,1,0,626,4682.030960,66,2,14317.041280,2080.162384,hint,nbiot,180 +on2,0,0,24,1,0,626,4321.969680,66,1,14276.010320,1765.187664,hint,nbiot,180 +on1,0,0,24,1,0,67,4322.000000,66,0,957.010320,1872.723208,hint,nbiot,180 +on5,0,0,25,1,0,0,4502.979680,66,1,1023.020320,2030.908372,hint,nbiot,180 +on3,0,0,25,1,0,360,4503.000000,66,2,7769.241280,1980.275000,hint,nbiot,180 +on4,0,0,25,1,0,360,4502.000000,66,1,7704.620640,1950.111708,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,66,0,-1.000000,2049.301240,hint,nbiot,180 +on8,0,0,26,1,0,1116,4682.300000,66,2,22176.630960,2066.633208,hint,nbiot,180 +on9,0,0,28,1,0,685,5042.500000,66,5,22135.010320,2653.589252,hint,nbiot,180 +on6,0,0,26,1,0,361,4685.199680,66,2,6678.630960,2210.286288,hint,nbiot,180 +on7,0,0,25,1,0,696,4504.989680,67,1,14829.010320,2222.168872,hint,nbiot,180 +on8,0,0,27,1,0,697,4864.810000,67,3,14870.630960,2430.778708,hint,nbiot,180 +on3,0,0,24,1,0,43,4322.010320,67,0,2836.010320,1933.170628,hint,nbiot,180 +on5,0,0,25,1,0,2880,4501.000000,67,2,58628.620640,1917.205000,hint,nbiot,180 +on11,0,0,26,1,0,514,4683.372240,67,2,9746.041280,2115.162312,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,67,0,-1.000000,2064.551488,hint,nbiot,180 +on6,0,0,24,1,0,900,4320.020640,67,0,20093.010320,1754.021672,hint,nbiot,180 +on1,0,0,26,1,0,185,4683.248400,67,3,6050.010320,2121.599360,hint,nbiot,180 +on4,0,0,25,1,0,205,4504.348400,67,2,6090.630960,2033.607776,hint,nbiot,180 +on10,0,0,27,1,0,525,4864.600000,67,3,10961.030960,2458.994252,hint,nbiot,180 +on12,0,0,25,1,0,143,4504.000000,67,1,5999.010320,2235.403084,hint,nbiot,180 +on9,0,0,25,1,0,478,4638.320000,67,2,10921.010320,2169.746000,hint,nbiot,180 +on2,0,0,24,1,0,407,4322.989680,67,0,9705.010320,1816.309288,hint,nbiot,180 +on7,0,0,24,1,0,0,4321.969360,68,0,1059.010320,1870.110952,hint,nbiot,180 +on9,0,0,25,1,0,758,4503.000000,68,1,13639.030960,1984.896708,hint,nbiot,180 +on10,0,0,26,1,0,360,4682.810000,68,2,13599.010320,2286.328792,hint,nbiot,180 +on12,0,0,26,1,0,604,4683.600000,68,2,14929.010320,2223.393292,hint,nbiot,180 +on1,0,0,26,1,0,941,4684.989680,68,2,20055.630960,2073.845496,hint,nbiot,180 +on3,0,0,27,1,0,689,4863.051280,68,3,13719.451280,2276.187096,hint,nbiot,180 +on2,0,0,25,1,0,0,4502.300000,68,2,5769.010320,2096.156500,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,68,0,-1.000000,2070.991324,hint,nbiot,180 +on11,0,0,28,1,0,1383,5074.500000,68,6,40320.010320,2862.111168,hint,nbiot,180 +on6,0,0,27,1,0,720,4862.110640,68,3,20014.010320,2456.003840,hint,nbiot,180 +on5,0,0,26,1,0,383,4681.041280,68,3,5889.010320,1963.423012,hint,nbiot,180 +on8,0,0,25,1,0,281,4503.000000,68,2,8618.010320,2063.663292,hint,nbiot,180 +on4,0,0,27,1,0,614,4864.630960,68,4,13679.430640,2320.830676,hint,nbiot,180 +on12,0,0,25,1,0,834,4505.010320,69,1,17991.010320,2236.224044,hint,nbiot,180 +on6,0,0,24,1,0,540,4321.051280,69,0,13159.010320,1867.793928,hint,nbiot,180 +on9,0,0,24,1,0,304,4321.989680,69,0,4840.010320,1870.496080,hint,nbiot,180 +on11,0,0,24,1,0,919,4321.989680,69,0,19433.010320,1832.412372,hint,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,69,0,-1.000000,1988.167700,hint,nbiot,180 +on8,0,0,25,1,0,538,4502.959040,69,1,8844.010320,1944.411532,hint,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,hint,nbiot,180 +on1,0,0,25,1,0,778,4677.269040,69,3,19524.010320,2183.550908,hint,nbiot,180 +on3,0,0,25,1,0,993,4503.989680,69,1,19474.630960,2083.709080,hint,nbiot,180 +on10,0,0,24,1,0,1311,4321.000000,69,0,28265.010320,1754.413416,hint,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,26,1,0,674,4680.310320,69,3,13054.010320,1989.130628,hint,nbiot,180 +on4,0,0,25,1,0,925,4502.369040,69,2,19564.630960,2059.856032,hint,nbiot,180 +on8,0,0,26,1,0,340,4685.051600,70,2,4312.030960,2337.301848,hint,nbiot,180 +on12,0,0,25,1,0,839,4502.269040,70,1,16464.030960,2008.914324,hint,nbiot,180 +on9,0,0,25,1,0,509,4504.000000,70,1,12285.010320,2160.419916,hint,nbiot,180 +on2,0,0,24,1,0,1260,4321.989680,70,0,26542.010320,1802.909288,hint,nbiot,180 +on6,0,0,24,1,0,3996,4322.000000,70,0,81632.010320,1938.750000,hint,nbiot,180 +on10,0,0,25,1,0,0,4504.020640,70,1,197.020320,1964.641880,hint,nbiot,180 +on5,0,0,26,1,0,675,4683.900000,70,2,16424.010320,2344.023292,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,70,0,-1.000000,2063.245196,hint,nbiot,180 +on11,0,0,28,1,0,438,5043.220640,70,4,12325.030960,2524.001424,hint,nbiot,180 +on1,0,0,25,1,0,342,4503.958720,70,1,4272.010320,2034.303404,hint,nbiot,180 +on3,0,0,26,1,0,427,4683.341280,70,2,9624.030960,2305.599512,hint,nbiot,180 +on4,0,0,25,1,0,294,4503.000000,70,1,9584.010320,2034.771416,hint,nbiot,180 +on7,0,0,24,1,0,35,4323.000000,70,0,93.010320,1832.186832,hint,nbiot,180 +on10,0,0,25,1,0,2643,4501.600000,71,1,56977.010320,2173.740000,hint,nbiot,180 +on8,0,0,24,1,0,573,4322.000000,71,0,13308.010320,1925.750000,hint,nbiot,180 +on6,0,0,27,1,0,620,4863.930960,71,3,16801.030960,2443.958636,hint,nbiot,180 +on1,0,0,25,1,0,226,4501.210000,71,1,6149.010320,1917.692000,hint,nbiot,180 +on5,0,0,28,1,0,434,5044.789680,71,6,18853.010320,2850.148832,hint,nbiot,180 +on9,0,0,25,1,0,1013,4501.010320,71,1,23947.010320,1942.767336,hint,nbiot,180 +on11,0,0,26,1,0,520,4681.600000,71,2,16761.010320,2191.003292,hint,nbiot,180 +on7,0,0,26,1,0,334,4682.310320,71,2,7502.010320,2266.057128,hint,nbiot,180 +on12,0,0,25,1,0,0,4505.020640,71,1,2804.620640,1974.350088,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,71,0,-1.000000,2059.284408,hint,nbiot,180 +on3,0,0,24,1,0,1620,4321.010320,71,0,35212.010320,1870.760836,hint,nbiot,180 +on2,0,0,25,1,0,737,4502.041280,71,1,13348.030960,1891.829720,hint,nbiot,180 +on4,0,0,27,1,0,376,4862.341280,71,3,7543.630960,2181.796096,hint,nbiot,180 +on8,0,0,27,1,0,631,4862.900000,72,4,17063.010320,2395.400960,hint,nbiot,180 +on9,0,0,26,1,0,357,4681.261280,72,2,7314.051600,2014.692428,hint,nbiot,180 +on4,0,0,25,1,0,497,4501.210000,72,1,10623.010320,1916.840500,hint,nbiot,180 +on7,0,0,26,1,0,340,4682.810000,72,3,10663.030960,2173.611460,hint,nbiot,180 +on5,0,0,24,1,0,640,4323.020640,72,0,13085.010320,1939.164964,hint,nbiot,180 +on1,0,0,24,1,0,0,4322.000000,72,0,1685.010320,1872.320000,hint,nbiot,180 +on10,0,0,25,1,0,693,4501.000000,72,1,13125.030960,1891.393084,hint,nbiot,180 +on2,0,0,25,1,0,1316,4502.300000,72,1,28059.010320,2115.520000,hint,nbiot,180 +on11,0,0,25,1,0,226,4502.000000,72,1,7234.010320,1983.716500,hint,nbiot,180 +on6,0,0,28,1,0,710,5044.110000,72,4,17104.630960,2689.750292,hint,nbiot,180 +on3,0,0,28,1,0,699,5042.810000,72,4,13165.051600,2432.675084,hint,nbiot,180 +on12,0,0,25,1,0,333,4502.010320,72,1,7274.030960,2007.503920,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,72,0,-1.000000,2046.647576,hint,nbiot,180 +on5,0,0,26,1,0,1077,4685.510000,73,3,22031.010320,2298.855292,hint,nbiot,180 +on6,0,0,24,1,0,0,4321.010320,73,0,918.010320,1869.720836,hint,nbiot,180 +on10,0,0,24,1,0,414,4323.958720,73,0,8728.010320,2051.613612,hint,nbiot,180 +on8,0,0,25,1,0,833,4501.400000,73,1,21413.010320,1916.910000,hint,nbiot,180 +on3,0,0,27,1,0,861,4864.910320,73,5,22071.030960,2445.683712,hint,nbiot,180 +on12,0,0,26,1,0,1083,4682.600000,73,2,25286.010320,2260.594752,hint,nbiot,180 +on2,0,0,25,1,0,1053,4502.200320,73,1,21453.030960,1932.823420,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,73,0,-1.000000,2095.684408,hint,nbiot,180 +on9,0,0,26,1,0,997,4684.320640,73,2,21493.051600,2180.371216,hint,nbiot,180 +on11,0,0,24,1,0,720,4325.989680,73,0,15511.010320,2117.665872,hint,nbiot,180 +on1,0,0,24,1,0,3009,4321.010320,73,0,60679.010320,1777.160836,hint,nbiot,180 +on7,0,0,25,1,0,3089,4501.300000,73,1,66081.010320,2005.595000,hint,nbiot,180 +on4,0,0,25,1,0,320,4501.230640,73,1,6511.010320,1827.812172,hint,nbiot,180 +on12,0,0,25,1,0,56,4502.269360,74,2,6935.010320,2022.824244,hint,nbiot,180 +on1,0,0,25,1,0,1237,4501.030960,74,1,23222.010320,1929.385592,hint,nbiot,180 +on9,0,0,26,1,0,516,4682.810000,74,2,10445.041280,2055.760168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,74,0,-1.000000,2064.881116,hint,nbiot,180 +on2,0,0,24,1,0,89,4323.030640,74,0,976.010320,2024.578756,hint,nbiot,180 +on5,0,0,26,1,0,845,4680.310000,74,2,17427.630960,1922.980416,hint,nbiot,180 +on6,0,0,24,1,0,900,4405.020320,74,1,19779.020320,1957.534628,hint,nbiot,180 +on11,0,0,25,1,0,365,4501.030960,74,1,10485.061920,1879.335800,hint,nbiot,180 +on3,0,0,25,1,0,1383,4501.510000,74,1,31109.010320,2033.960500,hint,nbiot,180 +on8,0,0,25,1,0,1102,4503.000000,74,1,23263.630960,2134.499876,hint,nbiot,180 +on4,0,0,25,1,0,524,4502.210000,74,1,10405.020640,2022.533792,hint,nbiot,180 +on10,0,0,28,1,0,622,5042.090000,74,6,17386.010320,2408.791876,hint,nbiot,180 +on7,0,0,25,1,0,1083,4502.748400,74,2,23304.251600,2024.907776,hint,nbiot,180 +on5,0,0,24,1,0,249,4320.010320,75,0,4565.010320,1754.010836,hint,nbiot,180 +on7,0,0,23,1,0,2092,4274.000000,75,0,41494.010320,1753.800000,hint,nbiot,180 +on10,0,0,26,1,0,1146,4682.300000,75,2,23901.030960,2155.006376,hint,nbiot,180 +on4,0,0,25,1,0,1652,4501.310320,75,1,35554.010320,2027.770836,hint,nbiot,180 +on12,0,0,24,1,0,493,4322.000000,75,0,9337.010320,1968.006500,hint,nbiot,180 +on3,0,0,24,1,0,1026,4323.020960,75,0,18917.010320,1879.638092,hint,nbiot,180 +on2,0,0,25,1,0,1350,4501.610320,75,1,30592.010320,2062.347336,hint,nbiot,180 +on6,0,0,26,1,0,1247,4682.300000,75,2,26267.010320,2110.429792,hint,nbiot,180 +on9,0,0,25,1,0,921,4502.661920,75,1,18981.620640,2058.939892,hint,nbiot,180 +on8,0,0,25,1,0,1099,4501.300000,75,1,23861.010320,2006.173084,hint,nbiot,180 +on1,0,0,25,1,0,431,4500.610320,75,2,11734.010320,1986.794128,hint,nbiot,180 +on11,0,0,25,1,0,1800,4501.020320,75,1,39077.020320,1929.121336,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,75,0,-1.000000,2054.680744,hint,nbiot,180 +on6,0,0,24,1,0,604,4322.000000,76,0,12124.010320,1870.513416,hint,nbiot,180 +on11,0,0,23,1,0,205,4279.989680,76,0,4206.010320,1738.002580,hint,nbiot,180 +on12,0,0,24,1,0,718,4320.010320,76,0,14864.010320,1871.010836,hint,nbiot,180 +on3,0,0,25,1,0,2291,4503.289680,76,1,46337.010320,2048.335996,hint,nbiot,180 +on4,0,0,24,0,0,4289,4320.000000,76,0,-1.000000,1748.800000,hint,nbiot,180 +on10,0,0,24,1,0,2438,4322.010320,76,0,50242.010320,1810.710836,hint,nbiot,180 +on1,0,0,24,1,0,1027,4323.010320,76,0,18773.010320,1898.224252,hint,nbiot,180 +on9,0,0,24,1,0,1654,4323.000000,76,0,35175.010320,1914.079916,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,76,0,-1.000000,2036.944532,hint,nbiot,180 +on5,0,0,24,1,0,180,4323.010320,76,0,4272.010320,1926.810836,hint,nbiot,180 +on8,0,0,26,1,0,1750,4687.269040,76,2,35216.630960,2343.590948,hint,nbiot,180 +on2,0,0,24,1,0,469,4322.000000,76,0,7539.010320,1820.463416,hint,nbiot,180 +on7,0,0,24,1,0,2627,4324.600000,76,1,58059.010320,1989.846708,hint,nbiot,180 +on2,0,0,27,1,0,767,4862.600000,77,4,16254.651600,2387.449708,hint,nbiot,180 +on7,0,0,25,1,0,20,4503.000000,77,1,2980.620640,2063.631832,hint,nbiot,180 +on10,0,0,25,1,0,180,4502.000000,77,1,5402.020640,1945.346584,hint,nbiot,180 +on6,0,0,25,1,0,300,4501.010320,77,1,5357.010320,1917.417336,hint,nbiot,180 +on3,0,0,26,1,0,324,4685.989680,77,2,9724.630960,2240.735456,hint,nbiot,180 +on12,0,0,24,1,0,445,4323.000000,77,0,9683.010320,1947.209792,hint,nbiot,180 +on4,0,0,26,1,0,690,4683.300000,77,2,16214.030960,2232.027960,hint,nbiot,180 +on5,0,0,25,1,0,2521,4501.300000,77,1,52290.010320,2033.870000,hint,nbiot,180 +on11,0,0,26,1,0,597,4683.738080,77,2,16174.010320,2311.693772,hint,nbiot,180 +on1,0,0,27,1,0,562,4864.489680,77,4,21040.010320,2703.682248,hint,nbiot,180 +on8,0,0,25,1,0,460,4501.999680,77,1,13189.010320,1927.563080,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,77,0,-1.000000,2067.227824,hint,nbiot,180 +on9,0,0,24,1,0,540,4324.000000,77,0,13321.010320,2124.526584,hint,nbiot,180 +on8,0,0,25,1,0,2160,4503.030640,78,1,45831.020320,2025.748880,hint,nbiot,180 +on4,0,0,26,1,0,1690,4684.289680,78,2,35096.030960,2294.922372,hint,nbiot,180 +on12,0,0,25,1,0,1450,4500.979360,78,1,31430.061920,1826.405160,hint,nbiot,180 +on5,0,0,24,1,0,0,4321.000320,78,0,1917.010320,1754.420044,hint,nbiot,180 +on2,0,0,23,1,0,3804,4218.000000,78,0,75932.010320,1721.650000,hint,nbiot,180 +on7,0,0,25,1,0,2427,4501.210000,78,2,49106.010320,1930.497000,hint,nbiot,180 +on10,0,0,25,1,0,1067,4501.220320,78,1,23098.010320,1941.811336,hint,nbiot,180 +on1,0,0,25,1,0,1430,4502.300000,78,1,31350.020640,2102.266292,hint,nbiot,180 +on11,0,0,26,1,0,1615,4681.600000,78,3,35056.010320,2088.764792,hint,nbiot,180 +on3,0,0,25,1,0,1221,4502.989680,78,1,25653.010320,1966.835788,hint,nbiot,180 +on9,0,0,24,1,0,979,4321.989680,78,0,18464.010320,1870.112580,hint,nbiot,180 +on6,0,0,26,1,0,1661,4684.989680,78,2,31390.041280,2275.688748,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,78,0,-1.000000,2070.074408,hint,nbiot,180 +on9,0,0,25,1,0,934,4502.269360,79,1,21266.010320,1974.600952,hint,nbiot,180 +on3,0,0,26,1,0,2381,4682.600000,79,3,52393.010320,2294.233292,hint,nbiot,180 +on8,0,0,24,1,0,360,4321.020640,79,0,7744.010320,1754.428380,hint,nbiot,180 +on5,0,0,25,1,0,1606,4501.000000,79,1,31021.010320,1917.406500,hint,nbiot,180 +on4,0,0,26,1,0,1191,4836.830640,79,5,26689.630960,2176.285048,hint,nbiot,180 +on10,0,0,25,1,0,1233,4503.000000,79,1,23748.030960,2121.643084,hint,nbiot,180 +on12,0,0,24,1,0,2401,4320.000000,79,0,48615.010320,1774.163208,hint,nbiot,180 +on1,0,0,24,1,0,540,4438.600000,79,1,13829.620640,1822.728540,hint,nbiot,180 +on11,0,0,24,1,0,1192,4485.600000,79,1,26648.010320,2250.409792,hint,nbiot,180 +on2,0,0,26,1,0,1257,4682.220000,79,2,23788.051600,2103.202500,hint,nbiot,180 +on6,0,0,24,1,0,1173,4321.000000,79,0,23708.010320,1784.300000,hint,nbiot,180 +on7,0,0,24,1,0,360,4320.010320,79,0,7789.010320,1754.010836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,79,0,-1.000000,2075.931116,hint,nbiot,180 +on12,0,0,24,1,0,1080,4344.000000,80,1,22113.620640,1959.698292,hint,nbiot,180 +on9,0,0,26,1,0,938,4688.279360,80,2,22022.030640,2470.133452,hint,nbiot,180 +on6,0,0,25,1,0,3879,4501.300000,80,1,77844.010320,1970.820000,hint,nbiot,180 +on11,0,0,25,1,0,807,4502.769040,80,2,16198.230960,1963.881032,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,80,0,-1.000000,2064.551488,hint,nbiot,180 +on2,0,0,24,1,0,540,4321.010320,80,0,11674.010320,1833.580836,hint,nbiot,180 +on7,0,0,24,1,0,82,4322.989680,80,0,849.010320,1907.309288,hint,nbiot,180 +on5,0,0,25,1,0,1306,4506.989680,80,1,27305.010320,2378.059080,hint,nbiot,180 +on1,0,0,25,1,0,846,4502.300000,80,2,18983.010320,2061.836708,hint,nbiot,180 +on3,0,0,24,1,0,392,4321.000000,80,0,10755.010320,1844.763416,hint,nbiot,180 +on4,0,0,25,1,0,1081,4570.379360,80,3,22062.651280,2078.636576,hint,nbiot,180 +on8,0,0,24,1,0,1800,4322.989680,80,0,37021.010320,1843.615996,hint,nbiot,180 +on10,0,0,24,1,0,796,4322.420640,80,1,16156.610320,1884.416796,hint,nbiot,180 +on12,0,0,28,1,0,1143,5054.010000,81,5,29737.010320,2747.913376,hint,nbiot,180 +on10,0,0,28,1,0,1069,5042.811280,81,4,22220.630960,2318.333888,hint,nbiot,180 +on6,0,0,25,1,0,540,4502.979680,81,1,11918.020320,1923.384956,hint,nbiot,180 +on1,0,0,25,1,0,1067,4501.000000,81,1,19831.010320,1916.756500,hint,nbiot,180 +on8,0,0,24,1,0,394,4321.000000,81,0,9712.010320,1816.156500,hint,nbiot,180 +on5,0,0,26,1,0,446,4683.300000,81,3,11808.010320,2130.316376,hint,nbiot,180 +on7,0,0,26,1,0,873,4681.118400,81,2,16789.041280,1899.982192,hint,nbiot,180 +on4,0,0,24,1,0,305,4320.000000,81,0,6193.010320,1754.006708,hint,nbiot,180 +on11,0,0,24,1,0,881,4336.000000,81,1,16748.010320,2101.259792,hint,nbiot,180 +on9,0,0,24,1,0,1102,4321.000000,81,0,22179.010320,1830.059792,hint,nbiot,180 +on3,0,0,25,1,0,1135,4501.300000,81,1,25846.010320,1977.840000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,81,0,-1.000000,2040.167700,hint,nbiot,180 +on2,0,0,24,1,0,0,4321.010320,81,0,2949.010320,1795.360836,hint,nbiot,180 +on10,0,0,25,1,0,1007,4633.900000,82,3,25581.010320,2401.633292,hint,nbiot,180 +on7,0,0,25,1,0,723,4504.010320,82,1,17329.651600,2174.280588,hint,nbiot,180 +on11,0,0,25,1,0,3560,4501.000000,82,1,71545.010320,1917.406500,hint,nbiot,180 +on6,0,0,24,1,0,540,4323.000000,82,0,13137.010320,1985.833416,hint,nbiot,180 +on12,0,0,26,1,0,881,4684.092240,82,2,17289.630960,2123.646812,hint,nbiot,180 +on9,0,0,25,1,0,724,4502.327760,82,1,17369.672240,2032.584396,hint,nbiot,180 +on1,0,0,24,1,0,2025,4321.000000,82,0,41053.010320,1754.413416,hint,nbiot,180 +on4,0,0,25,1,0,1824,4500.010320,82,1,38895.010320,1849.410836,hint,nbiot,180 +on3,0,0,24,1,0,438,4323.989680,82,0,7643.010320,1987.275996,hint,nbiot,180 +on8,0,0,26,1,0,879,4682.330960,82,3,18676.010320,2159.198884,hint,nbiot,180 +on5,0,0,25,1,0,1037,4501.000000,82,1,22856.010320,1844.599792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,82,0,-1.000000,2063.204532,hint,nbiot,180 +on2,0,0,24,1,0,755,4321.000000,82,0,17248.010320,1821.609792,hint,nbiot,180 +on6,0,0,24,1,0,204,4322.010320,83,0,5241.010320,1972.560836,hint,nbiot,180 +on1,0,0,24,1,0,996,4323.989680,83,0,21473.010320,1866.759288,hint,nbiot,180 +on7,0,0,25,1,0,701,4503.180000,83,1,12820.030960,1991.273292,hint,nbiot,180 +on9,0,0,26,1,0,1105,4682.300000,83,3,21824.010320,2051.689916,hint,nbiot,180 +on8,0,0,25,1,0,2453,4502.010320,83,1,50792.010320,1878.167336,hint,nbiot,180 +on11,0,0,25,1,0,413,4569.310320,83,4,12860.651600,2253.312668,hint,nbiot,180 +on10,0,0,25,1,0,703,4501.190320,83,1,12780.010320,1916.449336,hint,nbiot,180 +on3,0,0,24,1,0,18,4323.051280,83,0,3209.010320,1853.390636,hint,nbiot,180 +on4,0,0,24,1,0,2094,4322.020640,83,0,42517.010320,1884.821672,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,83,0,-1.000000,2014.234780,hint,nbiot,180 +on2,0,0,24,1,0,0,4322.000000,83,0,3317.010320,1854.263416,hint,nbiot,180 +on5,0,0,24,1,0,360,4323.979680,83,0,8526.010320,2008.461996,hint,nbiot,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,hint,nbiot,180 +on6,0,0,24,1,0,720,4320.010320,84,0,15137.010320,1754.010836,hint,nbiot,180 +on11,0,0,26,1,0,1452,4683.300000,84,2,28469.051600,2184.033416,hint,nbiot,180 +on5,0,0,25,1,0,989,4502.341280,84,2,24259.020640,2081.118180,hint,nbiot,180 +on2,0,0,24,1,0,940,4322.000000,84,0,21133.010320,1905.613208,hint,nbiot,180 +on12,0,0,24,1,0,1851,4321.000000,84,0,38037.010320,1812.900000,hint,nbiot,180 +on1,0,0,27,1,0,1399,4861.900000,84,3,32104.010320,2275.603084,hint,nbiot,180 +on8,0,0,24,1,0,1234,4344.000000,84,1,28429.030960,1873.456500,hint,nbiot,180 +on4,0,0,25,1,0,966,4504.000000,84,2,21217.010320,2107.729876,hint,nbiot,180 +on7,0,0,24,1,0,180,4323.000000,84,0,5032.010320,1915.113416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,84,0,-1.000000,2061.610992,hint,nbiot,180 +on9,0,0,26,1,0,1160,4682.300000,84,2,28389.010320,2109.728208,hint,nbiot,180 +on10,0,0,24,1,0,925,4430.000000,84,2,21257.630960,1960.531460,hint,nbiot,180 +on3,0,0,25,1,0,653,4500.010320,84,1,15032.010320,1826.017336,hint,nbiot,180 +on7,0,0,26,1,0,1022,4683.227760,85,3,21317.651600,1980.574644,hint,nbiot,180 +on2,0,0,24,1,0,1193,4466.220000,85,1,28447.010320,1997.094500,hint,nbiot,180 +on6,0,0,26,1,0,1423,4683.510000,85,2,30026.010320,2230.903792,hint,nbiot,180 +on8,0,0,26,1,0,914,4682.900000,85,3,21237.010320,2322.953292,hint,nbiot,180 +on9,0,0,24,1,0,849,4321.969360,85,0,17824.010320,1869.454452,hint,nbiot,180 +on12,0,0,26,1,0,1167,4681.300000,85,2,23187.010320,2079.856584,hint,nbiot,180 +on10,0,0,26,1,0,1042,4683.300000,85,2,21277.030960,2134.801376,hint,nbiot,180 +on11,0,0,24,1,0,612,4321.010320,85,0,14362.010320,1870.110836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,85,0,-1.000000,2040.167700,hint,nbiot,180 +on4,0,0,24,1,0,0,4445.610320,85,1,1018.620640,1804.459252,hint,nbiot,180 +on5,0,0,24,1,0,93,4322.010320,85,0,916.010320,1930.954128,hint,nbiot,180 +on1,0,0,26,1,0,1388,4841.510000,85,3,30066.030960,2183.370000,hint,nbiot,180 +on3,0,0,27,1,0,1567,4861.900000,85,4,35795.010320,2359.452876,hint,nbiot,180 +on7,0,0,24,1,0,669,4321.000000,86,0,12018.010320,1760.900000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,86,0,-1.000000,2060.304284,hint,nbiot,180 +on2,0,0,27,1,0,610,4861.900000,86,3,14985.030960,2333.432960,hint,nbiot,180 +on9,0,0,24,1,0,1265,4321.000000,86,0,25692.010320,1842.150000,hint,nbiot,180 +on8,0,0,24,1,0,797,4321.000000,86,1,14945.010320,1790.156500,hint,nbiot,180 +on1,0,0,24,1,0,70,4321.020640,86,0,526.010320,1754.421672,hint,nbiot,180 +on12,0,0,25,1,0,334,4502.300000,86,1,10862.030960,2026.456376,hint,nbiot,180 +on10,0,0,24,1,0,180,4322.000000,86,0,4110.010320,1921.980000,hint,nbiot,180 +on4,0,0,25,1,0,194,4502.041280,86,2,4150.630960,1961.438012,hint,nbiot,180 +on6,0,0,27,1,0,524,4863.300000,86,3,12058.030960,2419.799668,hint,nbiot,180 +on5,0,0,26,1,0,511,4704.341280,86,4,12098.651600,2269.371344,hint,nbiot,180 +on3,0,0,24,1,0,261,4322.989680,86,0,4038.010320,1877.019288,hint,nbiot,180 +on11,0,0,25,1,0,365,4502.300000,86,1,10822.010320,2140.610000,hint,nbiot,180 +on10,0,0,25,1,0,1800,4501.020320,87,1,36070.020320,1942.771336,hint,nbiot,180 +on1,0,0,24,1,0,2697,4321.000000,87,0,55666.010320,1848.000000,hint,nbiot,180 +on4,0,0,24,1,0,459,4321.010320,87,0,8748.010320,1863.870836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,87,0,-1.000000,2071.360992,hint,nbiot,180 +on8,0,0,25,1,0,1374,4502.000000,87,1,28676.010320,1943.169916,hint,nbiot,180 +on2,0,0,25,1,0,925,4503.969040,87,2,18937.251600,2035.152740,hint,nbiot,180 +on7,0,0,24,1,0,180,4320.010320,87,0,5485.010320,1754.010836,hint,nbiot,180 +on11,0,0,24,1,0,922,4321.000000,87,0,18855.010320,1830.059792,hint,nbiot,180 +on3,0,0,24,1,0,2520,4321.000000,87,0,51434.010320,1803.806708,hint,nbiot,180 +on6,0,0,24,1,0,58,4322.989680,87,0,637.010320,1904.949164,hint,nbiot,180 +on12,0,0,25,1,0,874,4627.010320,87,2,18896.630960,2253.030420,hint,nbiot,180 +on9,0,0,25,1,0,653,4502.189360,87,1,14009.010320,1836.905660,hint,nbiot,180 +on5,0,0,25,1,0,1215,4502.989680,87,1,24025.010320,2048.209080,hint,nbiot,180 +on10,0,0,27,1,0,874,4862.870960,88,3,20179.051600,2310.649676,hint,nbiot,180 +on3,0,0,27,1,0,856,4862.200000,88,3,20139.030960,2337.719668,hint,nbiot,180 +on5,0,0,27,1,0,828,4862.820000,88,3,20099.010320,2357.207876,hint,nbiot,180 +on11,0,0,24,1,0,0,4321.010320,88,0,3350.010320,1760.260836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,88,0,-1.000000,2041.454284,hint,nbiot,180 +on9,0,0,27,1,0,862,4863.200000,88,4,21805.010320,2449.366544,hint,nbiot,180 +on4,0,0,27,1,0,869,4881.480960,88,4,21845.030960,2371.828552,hint,nbiot,180 +on2,0,0,24,1,0,480,4334.200320,88,1,13405.010320,1854.163296,hint,nbiot,180 +on12,0,0,26,1,0,703,4682.020000,88,2,13445.030960,2029.379168,hint,nbiot,180 +on6,0,0,24,1,0,555,4449.000000,88,1,13485.440960,1845.236792,hint,nbiot,180 +on1,0,0,25,1,0,250,4502.369040,88,1,4450.620640,1941.432740,hint,nbiot,180 +on8,0,0,25,1,0,755,4502.300000,88,1,17804.030960,2043.564584,hint,nbiot,180 +on7,0,0,24,1,0,673,4396.300000,88,1,17764.010320,1941.040000,hint,nbiot,180 +on6,0,0,24,1,0,482,4322.040960,89,0,7395.010320,1976.479592,hint,nbiot,180 +on7,0,0,25,1,0,2996,4501.210000,89,1,60962.010320,1916.450292,hint,nbiot,180 +on2,0,0,25,1,0,1697,4501.269360,89,1,35825.010320,1894.120952,hint,nbiot,180 +on11,0,0,27,1,0,1751,4864.889680,89,4,39517.620640,2440.294496,hint,nbiot,180 +on9,0,0,24,1,0,360,4321.000000,89,0,7450.010320,1754.413416,hint,nbiot,180 +on3,0,0,25,1,0,1060,4503.179680,89,1,19427.010320,1941.035080,hint,nbiot,180 +on10,0,0,25,1,0,49,4504.369040,89,1,1288.620640,2053.772740,hint,nbiot,180 +on12,0,0,27,1,0,470,4862.979360,89,4,12586.620640,2370.369952,hint,nbiot,180 +on8,0,0,25,1,0,696,4500.651280,89,2,16644.630640,1842.732136,hint,nbiot,180 +on4,0,0,24,1,0,180,4322.989680,89,0,3897.010320,1935.265996,hint,nbiot,180 +on1,0,0,25,1,0,2918,4501.989680,89,1,61003.630960,1942.125788,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,89,0,-1.000000,2088.314656,hint,nbiot,180 +on5,0,0,25,1,0,3150,4501.210000,89,1,66098.010320,1949.340500,hint,nbiot,180 +on9,0,0,25,1,0,1432,4532.079360,90,3,29407.410320,2009.151452,hint,nbiot,180 +on8,0,0,25,1,0,2453,4502.000000,90,1,51074.010320,1860.599792,hint,nbiot,180 +on6,0,0,25,1,0,456,4503.979360,90,1,12125.010320,2025.218576,hint,nbiot,180 +on12,0,0,25,1,0,3765,4502.000000,90,1,78381.020320,2044.550000,hint,nbiot,180 +on1,0,0,25,1,0,2102,4500.310320,90,1,42252.010320,1850.570836,hint,nbiot,180 +on5,0,0,23,1,0,1736,4262.030640,90,0,32827.010320,1730.825464,hint,nbiot,180 +on7,0,0,24,1,0,1106,4320.030640,90,0,25092.010320,1780.025464,hint,nbiot,180 +on10,0,0,24,1,0,1620,4322.000000,90,0,32950.010320,1851.006708,hint,nbiot,180 +on3,0,0,24,1,0,2160,4461.620640,90,1,44262.620640,2054.880088,hint,nbiot,180 +on4,0,0,25,1,0,1216,4501.489680,90,2,27393.010320,1929.510580,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,90,0,-1.000000,2094.397824,hint,nbiot,180 +on11,0,0,25,1,0,1593,4581.610320,90,4,37950.010320,2282.430712,hint,nbiot,180 +on2,0,0,24,1,0,900,4321.010320,90,0,21232.010320,1827.860836,hint,nbiot,180 +on1,0,0,25,1,0,1368,4502.000000,91,1,26749.010320,2175.076292,hint,nbiot,180 +on10,0,0,26,1,0,1405,4683.230640,91,2,26790.630960,2203.303548,hint,nbiot,180 +on11,0,0,25,1,0,2050,4502.300000,91,1,41924.010320,2079.126500,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,91,0,-1.000000,2079.791076,hint,nbiot,180 +on9,0,0,24,1,0,444,4321.010320,91,0,7923.010320,1790.810836,hint,nbiot,180 +on7,0,0,25,1,0,195,4501.300000,91,1,7138.010320,2019.050000,hint,nbiot,180 +on6,0,0,25,1,0,1592,4502.190000,91,1,31527.010320,2034.232500,hint,nbiot,180 +on4,0,0,24,1,0,720,4322.979360,91,0,17408.010320,1807.458452,hint,nbiot,180 +on5,0,0,26,1,0,334,4681.020640,91,2,7179.630960,1993.321672,hint,nbiot,180 +on12,0,0,26,1,0,1105,4683.300000,91,3,23154.620640,2292.784708,hint,nbiot,180 +on3,0,0,24,1,0,130,4325.348400,91,0,2922.010320,2101.302776,hint,nbiot,180 +on2,0,0,24,1,0,0,4322.000000,91,0,3051.010320,1853.483416,hint,nbiot,180 +on8,0,0,24,1,0,900,4321.000000,91,0,18978.010320,1816.416708,hint,nbiot,180 +on7,0,0,26,1,0,521,4683.190000,92,2,9618.041280,2171.619084,hint,nbiot,180 +on10,0,0,25,1,0,293,4501.220000,92,1,5979.010320,1917.305792,hint,nbiot,180 +on2,0,0,24,1,0,0,4325.000000,92,0,3567.010320,1939.853540,hint,nbiot,180 +on5,0,0,26,1,0,514,4682.300000,92,2,12483.010320,2179.979584,hint,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,92,0,-1.000000,2014.234780,hint,nbiot,180 +on11,0,0,24,1,0,360,4324.000000,92,0,9660.010320,1992.876832,hint,nbiot,180 +on12,0,0,25,1,0,203,4504.979360,92,1,6060.651600,1990.135284,hint,nbiot,180 +on1,0,0,24,1,0,3060,4321.010320,92,0,62101.010320,1777.817544,hint,nbiot,180 +on4,0,0,25,1,0,379,4590.320640,92,3,9577.010320,2099.391464,hint,nbiot,180 +on9,0,0,27,1,0,489,4862.810000,92,3,12524.630960,2344.431584,hint,nbiot,180 +on8,0,0,26,1,0,334,4683.989680,92,2,6020.630960,2153.608748,hint,nbiot,180 +on6,0,0,24,1,0,1027,4321.979360,92,0,18364.010320,1754.805160,hint,nbiot,180 +on1,0,0,25,1,0,1013,4502.000000,93,1,24362.010320,1973.056500,hint,nbiot,180 +on11,0,0,24,1,0,1322,4321.000000,93,1,32071.010320,1918.330000,hint,nbiot,180 +on7,0,0,25,1,0,360,4503.958720,93,1,9174.620640,2004.851904,hint,nbiot,180 +on12,0,0,25,1,0,653,4501.210000,93,1,12932.010320,1917.490500,hint,nbiot,180 +on4,0,0,25,1,0,765,4503.000000,93,1,15134.630960,2019.449668,hint,nbiot,180 +on9,0,0,28,1,0,853,5043.500000,93,4,27595.010320,2761.636376,hint,nbiot,180 +on3,0,0,24,1,0,852,4322.989680,93,0,15093.010320,1963.989080,hint,nbiot,180 +on6,0,0,24,1,0,180,4321.010320,93,0,5632.010320,1794.704128,hint,nbiot,180 +on5,0,0,25,1,0,360,4502.969040,93,1,9299.020320,1982.161032,hint,nbiot,180 +on2,0,0,27,1,0,1103,4862.600000,93,4,24442.651600,2272.581292,hint,nbiot,180 +on10,0,0,23,1,0,0,4276.651600,93,0,1543.010320,1736.674056,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,93,0,-1.000000,2054.454284,hint,nbiot,180 +on8,0,0,26,1,0,1167,4682.300000,93,2,24402.030960,2128.999668,hint,nbiot,180 +on7,0,0,25,1,0,990,4501.148400,94,1,23463.010320,1941.542900,hint,nbiot,180 +on10,0,0,26,1,0,955,4685.310000,94,2,23503.030960,2427.903460,hint,nbiot,180 +on1,0,0,25,1,0,433,4506.289680,94,1,11199.010320,2189.655872,hint,nbiot,180 +on2,0,0,24,1,0,132,4322.020640,94,0,950.010320,1871.185088,hint,nbiot,180 +on9,0,0,25,1,0,540,4503.979360,94,1,11297.020320,2007.031784,hint,nbiot,180 +on6,0,0,25,1,0,928,4505.000000,94,2,19458.251600,2068.831708,hint,nbiot,180 +on4,0,0,23,0,0,4214,4304.000000,94,1,-1.000000,1746.306500,hint,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,94,0,-1.000000,2098.304740,hint,nbiot,180 +on3,0,0,23,1,0,312,4315.010320,94,0,4297.010320,1752.010836,hint,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,hint,nbiot,180 +on8,0,0,25,1,0,1282,4500.610320,94,1,31217.010320,2038.865836,hint,nbiot,180 +on11,0,0,25,1,0,779,4501.310320,94,1,19376.010320,1994.100628,hint,nbiot,180 +on12,0,0,27,1,0,713,4864.810000,94,3,19417.630960,2519.476876,hint,nbiot,180 +on10,0,0,24,1,0,926,4321.000000,95,0,20201.010320,1827.850000,hint,nbiot,180 +on1,0,0,25,1,0,1102,4501.000000,95,1,20241.030960,1891.393084,hint,nbiot,180 +on5,0,0,26,1,0,1064,4682.320000,95,2,22233.010320,2196.179292,hint,nbiot,180 +on9,0,0,24,1,0,302,4322.979360,95,0,5672.010320,1881.168244,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,95,0,-1.000000,2040.127452,hint,nbiot,180 +on4,0,0,24,1,0,0,4321.010320,95,0,73.010320,1869.720836,hint,nbiot,180 +on3,0,0,27,1,0,1160,4861.920000,95,3,27034.010320,2358.804376,hint,nbiot,180 +on2,0,0,24,1,0,800,4322.000000,95,0,17190.010320,1908.460000,hint,nbiot,180 +on8,0,0,25,1,0,1115,4501.000000,95,1,22273.030960,1894.643084,hint,nbiot,180 +on12,0,0,26,1,0,483,4681.310000,95,2,9444.010320,2080.523792,hint,nbiot,180 +on11,0,0,24,1,0,360,4320.969040,95,0,9556.010320,1754.401032,hint,nbiot,180 +on7,0,0,25,1,0,257,4501.000000,95,1,5713.630960,1841.363208,hint,nbiot,180 +on6,0,0,27,1,0,1149,4861.300000,95,4,22313.651600,2179.586416,hint,nbiot,180 +on8,0,0,23,1,0,0,4318.010320,96,0,2440.010320,1903.237544,hint,nbiot,180 +on11,0,0,24,1,0,390,4476.149040,96,1,10244.010320,1907.667616,hint,nbiot,180 +on2,0,0,26,1,0,699,4686.179680,96,2,15964.630960,2237.431456,hint,nbiot,180 +on12,0,0,26,1,0,513,4685.992240,96,2,11091.010320,2496.713396,hint,nbiot,180 +on10,0,0,27,1,0,371,4968.810000,96,4,11131.030960,2627.325084,hint,nbiot,180 +on4,0,0,27,1,0,667,4865.799680,96,3,15923.010320,2442.522748,hint,nbiot,180 +on7,0,0,25,1,0,293,4505.000000,96,1,6942.010320,2148.703084,hint,nbiot,180 +on6,0,0,25,1,0,1017,4502.300000,96,1,21564.010320,1993.326708,hint,nbiot,180 +on9,0,0,24,1,0,0,4322.072240,96,0,2383.010320,1871.205728,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,96,0,-1.000000,2040.228072,hint,nbiot,180 +on3,0,0,25,1,0,513,4501.210000,96,1,10284.030960,1891.477084,hint,nbiot,180 +on5,0,0,24,1,0,2440,4321.000000,96,0,47290.010320,1780.400000,hint,nbiot,180 +on1,0,0,25,1,0,181,4504.938080,96,1,7061.630960,2078.355232,hint,nbiot,180 +on3,0,0,24,1,0,285,4320.969360,97,0,5700.010320,1754.400952,hint,nbiot,180 +on6,0,0,26,1,0,537,4682.000000,97,3,10642.651600,2061.976416,hint,nbiot,180 +on1,0,0,27,1,0,424,4863.600000,97,4,10602.030960,2400.614460,hint,nbiot,180 +on11,0,0,25,1,0,1260,4503.300000,97,1,29205.010320,2174.420000,hint,nbiot,180 +on5,0,0,26,1,0,514,4682.341280,97,2,13092.010320,2236.163012,hint,nbiot,180 +on8,0,0,24,1,0,720,4321.010320,97,0,17994.010320,1805.117544,hint,nbiot,180 +on2,0,0,25,1,0,775,4501.310320,97,2,19115.010320,2018.280628,hint,nbiot,180 +on9,0,0,24,1,0,180,4321.051600,97,0,5758.010320,1869.744056,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,97,0,-1.000000,2047.317700,hint,nbiot,180 +on7,0,0,24,1,0,56,4321.020640,97,0,2174.010320,1842.431672,hint,nbiot,180 +on10,0,0,25,1,0,833,4501.220320,97,1,17859.010320,1917.501336,hint,nbiot,180 +on12,0,0,25,1,0,718,4501.310320,97,1,17899.030960,1992.273920,hint,nbiot,180 +on4,0,0,25,1,0,477,4501.000000,97,1,10562.010320,2034.608000,hint,nbiot,180 +on4,0,0,25,1,0,566,4743.480000,98,3,11587.630960,2439.809668,hint,nbiot,180 +on9,0,0,26,1,0,583,4680.620640,98,3,10184.620640,1976.664672,hint,nbiot,180 +on2,0,0,25,1,0,766,4501.000000,98,1,16770.010320,1916.750000,hint,nbiot,180 +on7,0,0,25,1,0,294,4501.010320,98,1,6973.010320,1942.110836,hint,nbiot,180 +on5,0,0,24,1,0,497,4322.948400,98,0,10118.010320,1870.892776,hint,nbiot,180 +on6,0,0,27,1,0,839,4862.500000,98,3,25026.010320,2488.184876,hint,nbiot,180 +on11,0,0,26,1,0,1035,4681.310000,98,3,20232.651600,2044.547124,hint,nbiot,180 +on12,0,0,26,1,0,789,4683.600000,98,2,20152.010320,2242.503292,hint,nbiot,180 +on8,0,0,25,1,0,837,4501.300000,98,1,16810.030960,1928.556584,hint,nbiot,180 +on10,0,0,27,1,0,697,4863.900000,98,3,20192.030960,2514.939876,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,98,0,-1.000000,2071.327452,hint,nbiot,180 +on1,0,0,24,1,0,0,4321.010320,98,0,2694.010320,1869.720836,hint,nbiot,180 +on3,0,0,25,1,0,515,4502.000000,98,1,11546.010320,1953.412876,hint,nbiot,180 +on1,0,0,25,1,0,36,4505.000000,99,2,950.010320,2200.039876,hint,nbiot,180 +on8,0,0,25,1,0,0,4503.020640,99,1,842.620640,2051.303296,hint,nbiot,180 +on11,0,0,24,1,0,203,4325.010320,99,0,5190.010320,2140.817544,hint,nbiot,180 +on2,0,0,25,1,0,537,4507.558720,99,1,12999.010320,2208.266612,hint,nbiot,180 +on6,0,0,25,1,0,2146,4504.190000,99,1,42073.010320,2165.039208,hint,nbiot,180 +on7,0,0,25,1,0,568,4502.369040,99,1,13040.630960,2034.304116,hint,nbiot,180 +on4,0,0,25,1,0,738,4506.610320,99,1,17059.630960,2111.434168,hint,nbiot,180 +on5,0,0,26,1,0,379,4686.938080,99,2,5275.010320,2215.401856,hint,nbiot,180 +on10,0,0,25,1,0,205,4505.979360,99,2,5315.630960,2232.516868,hint,nbiot,180 +on3,0,0,26,1,0,253,4685.500000,99,3,8467.010320,2289.023500,hint,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,99,0,-1.000000,2028.888692,hint,nbiot,180 +on9,0,0,26,1,0,475,4686.179360,99,2,17018.010320,2507.584952,hint,nbiot,180 +on5,0,0,25,1,0,970,4501.000000,100,1,21638.010320,1916.366292,hint,nbiot,180 +on1,0,0,23,1,0,2704,4459.300000,100,2,62978.010320,2151.633000,hint,nbiot,180 +on2,0,0,24,1,0,127,4323.969040,100,0,671.010320,1857.267740,hint,nbiot,180 +on8,0,0,24,1,0,1800,4320.010320,100,0,37677.010320,1754.010836,hint,nbiot,180 +on9,0,0,27,1,0,872,4863.620640,100,3,21679.630960,2374.461464,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,100,0,-1.000000,2040.857948,hint,nbiot,180 +on6,0,0,27,1,0,942,4863.200000,100,3,22258.010320,2508.426584,hint,nbiot,180 +on4,0,0,26,1,0,491,4684.341280,100,2,12853.630960,2203.299720,hint,nbiot,180 +on11,0,0,24,1,0,555,4323.969040,100,0,12812.010320,1861.147408,hint,nbiot,180 +on12,0,0,25,1,0,639,4503.289680,100,1,14989.010320,2085.632580,hint,nbiot,180 +on10,0,0,25,1,0,1620,4503.979360,100,1,35530.620640,1963.923576,hint,nbiot,180 +on3,0,0,24,1,0,369,4321.000000,100,0,8835.010320,1838.509792,hint,nbiot,180 +on7,0,0,25,1,0,495,4504.620640,100,1,8876.630960,2047.691464,hint,nbiot,180 +on4,0,0,25,1,0,1660,4501.300000,101,1,33270.010320,1993.576500,hint,nbiot,180 +on10,0,0,25,1,0,317,4501.000000,101,1,7328.630960,1847.869916,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,101,0,-1.000000,2091.127700,hint,nbiot,180 +on7,0,0,27,1,0,865,4862.200000,101,4,24462.010320,2458.242876,hint,nbiot,180 +on3,0,0,24,1,0,73,4321.969040,101,0,3027.010320,1754.801032,hint,nbiot,180 +on9,0,0,25,1,0,527,4531.361920,101,2,12823.030960,2254.797852,hint,nbiot,180 +on1,0,0,24,1,0,0,4323.000000,101,0,3138.010320,2023.526708,hint,nbiot,180 +on6,0,0,26,1,0,846,4765.830640,101,3,19363.630960,2312.998464,hint,nbiot,180 +on12,0,0,25,1,0,1354,4502.000000,101,1,32078.010320,1962.260000,hint,nbiot,180 +on8,0,0,25,1,0,714,4501.000000,101,1,12783.010320,1916.756500,hint,nbiot,180 +on5,0,0,28,1,0,522,5042.600000,101,4,15816.010320,2561.473084,hint,nbiot,180 +on11,0,0,24,1,0,263,4323.000000,101,0,7287.010320,2002.069792,hint,nbiot,180 +on2,0,0,26,1,0,937,4682.300000,101,2,19322.010320,2117.189584,hint,nbiot,180 +on8,0,0,26,1,0,2874,4682.000000,102,2,54446.030960,2054.792876,hint,nbiot,180 +on6,0,0,24,1,0,653,4474.000000,102,1,16283.010320,1815.613208,hint,nbiot,180 +on12,0,0,25,1,0,2520,4500.661920,102,1,51467.620640,1826.479892,hint,nbiot,180 +on4,0,0,25,1,0,2157,4501.300000,102,1,46032.010320,1968.350000,hint,nbiot,180 +on10,0,0,27,1,0,2906,4861.810000,102,3,61066.630960,2214.479876,hint,nbiot,180 +on7,0,0,24,1,0,2813,4496.210000,102,1,61025.010320,2056.150292,hint,nbiot,180 +on3,0,0,24,1,0,2554,4321.000000,102,0,51401.010320,1823.300000,hint,nbiot,180 +on2,0,0,25,1,0,2445,4501.000000,102,2,48745.010320,1841.609792,hint,nbiot,180 +on1,0,0,24,1,0,1980,4322.000000,102,0,42424.010320,1922.376708,hint,nbiot,180 +on5,0,0,24,1,0,464,4321.010320,102,0,8338.010320,1775.224252,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,102,0,-1.000000,2062.487452,hint,nbiot,180 +on11,0,0,25,1,0,2340,4502.979680,102,1,48861.020320,1989.308580,hint,nbiot,180 +on9,0,0,25,1,0,2648,4502.000000,102,1,54406.010320,1944.716500,hint,nbiot,180 +on12,0,0,27,1,0,1381,4863.200000,103,4,32582.010320,2517.916584,hint,nbiot,180 +on9,0,0,25,1,0,1891,4501.000000,103,1,38648.010320,1879.719708,hint,nbiot,180 +on7,0,0,26,1,0,1592,4684.010000,103,2,31216.030960,2215.120292,hint,nbiot,180 +on1,0,0,26,1,0,721,4682.300000,103,3,15561.010320,2167.838000,hint,nbiot,180 +on5,0,0,23,1,0,1092,4282.000000,103,0,22387.010320,2018.306708,hint,nbiot,180 +on2,0,0,25,1,0,1550,4501.220000,103,1,31176.010320,1917.696000,hint,nbiot,180 +on4,0,0,25,1,0,1104,4502.300000,103,1,26337.010320,2118.366792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,103,0,-1.000000,2047.324408,hint,nbiot,180 +on8,0,0,25,1,0,692,4501.990000,103,1,13084.010320,1941.229124,hint,nbiot,180 +on3,0,0,25,1,0,901,4502.041280,103,1,19805.610320,1973.989928,hint,nbiot,180 +on6,0,0,25,1,0,1806,4502.300000,103,2,41136.010320,2147.363292,hint,nbiot,180 +on10,0,0,25,1,0,883,4503.189680,103,1,19735.010320,2017.362496,hint,nbiot,180 +on11,0,0,24,1,0,360,4321.010320,103,0,10110.010320,1870.104336,hint,nbiot,180 +on5,0,0,25,1,0,1580,4503.010320,104,1,31610.010320,2032.883836,hint,nbiot,180 +on3,0,0,24,1,0,1127,4322.989680,104,0,24585.010320,1916.655872,hint,nbiot,180 +on4,0,0,25,1,0,4143,4500.300000,104,1,83824.010000,1870.709792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,104,0,-1.000000,2079.864448,hint,nbiot,180 +on8,0,0,24,1,0,742,4324.589360,104,0,15340.010320,1890.379244,hint,nbiot,180 +on12,0,0,25,1,0,2009,4501.310320,104,1,41484.010320,1961.087544,hint,nbiot,180 +on7,0,0,27,1,0,1494,4863.820320,104,3,31651.630960,2297.659544,hint,nbiot,180 +on6,0,0,25,1,0,1440,4504.020640,104,1,31725.010320,2228.938380,hint,nbiot,180 +on10,0,0,24,1,0,1106,4482.300000,104,2,28240.010320,2114.663292,hint,nbiot,180 +on2,0,0,24,1,0,595,4321.989680,104,0,12392.010320,1793.159288,hint,nbiot,180 +on11,0,0,25,1,0,1854,4502.200320,104,1,37755.010320,1918.556752,hint,nbiot,180 +on1,0,0,26,1,0,1323,4682.189360,104,2,28280.030960,1973.873576,hint,nbiot,180 +on9,0,0,25,1,0,3024,4500.010320,104,1,60750.010320,1943.017336,hint,nbiot,180 +on3,0,0,27,1,0,825,4861.840000,105,3,17238.030960,2214.004168,hint,nbiot,180 +on8,0,0,24,1,0,252,4321.000000,105,0,6290.010320,1797.559792,hint,nbiot,180 +on6,0,0,30,1,0,708,5403.100000,105,7,20778.630960,2866.260836,hint,nbiot,180 +on9,0,0,25,1,0,542,4503.128720,105,1,10646.030960,1927.552780,hint,nbiot,180 +on4,0,0,28,1,0,644,5042.900000,105,4,17278.051600,2572.253084,hint,nbiot,180 +on12,0,0,25,1,0,493,4501.180000,105,1,10606.010320,1917.030000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,105,0,-1.000000,2063.800868,hint,nbiot,180 +on10,0,0,27,1,0,614,4864.200000,105,3,17198.010320,2484.178584,hint,nbiot,180 +on1,0,0,26,1,0,573,4681.480000,105,2,12621.010320,2077.991792,hint,nbiot,180 +on7,0,0,24,1,0,0,4322.948400,105,0,1827.010320,1811.612776,hint,nbiot,180 +on5,0,0,26,1,0,230,4682.300000,105,2,6331.630960,2117.963084,hint,nbiot,180 +on2,0,0,26,1,0,530,4681.900000,105,2,12661.030960,2188.958376,hint,nbiot,180 +on11,0,0,27,1,0,738,4863.090000,105,3,20737.010320,2473.282376,hint,nbiot,180 +on1,0,0,24,1,0,3142,4321.000000,106,0,62961.010320,1792.100000,hint,nbiot,180 +on5,0,0,24,1,0,2340,4322.000000,106,0,49192.010320,1961.500000,hint,nbiot,180 +on6,0,0,25,1,0,514,4644.179680,106,2,9514.630960,1892.154996,hint,nbiot,180 +on12,0,0,25,1,0,2340,4503.000000,106,1,46967.620640,1992.371708,hint,nbiot,180 +on8,0,0,25,1,0,211,4501.551280,106,2,5577.010320,1970.738512,hint,nbiot,180 +on9,0,0,26,1,0,334,4683.190000,106,2,5618.630960,2131.995708,hint,nbiot,180 +on2,0,0,24,1,0,35,4322.051280,106,0,3247.010320,1894.857136,hint,nbiot,180 +on4,0,0,25,1,0,833,4501.000000,106,1,18213.010320,1877.763208,hint,nbiot,180 +on11,0,0,26,1,0,2515,4681.600000,106,2,53523.010320,2175.149792,hint,nbiot,180 +on7,0,0,24,1,0,900,4322.010320,106,0,18309.010320,1940.710836,hint,nbiot,180 +on3,0,0,25,1,0,350,4502.510000,106,2,9473.010320,2086.158376,hint,nbiot,180 +on10,0,0,25,1,0,2327,4502.620640,106,1,49232.030960,2043.498048,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,106,0,-1.000000,2053.837824,hint,nbiot,180 +on1,0,0,25,1,0,900,4502.620640,107,1,18528.620640,2033.546756,hint,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,107,0,-1.000000,2012.867700,hint,nbiot,180 +on8,0,0,25,1,0,2869,4503.000000,107,1,59351.620640,2054.121708,hint,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,hint,nbiot,180 +on12,0,0,24,0,0,4295,4320.000000,107,0,-1.000000,1845.000000,hint,nbiot,180 +on6,0,0,25,1,0,1080,4504.738080,107,2,24143.251600,2170.270356,hint,nbiot,180 +on5,0,0,26,1,0,1283,4681.040640,107,2,24081.630960,1949.584048,hint,nbiot,180 +on2,0,0,25,1,0,3198,4501.000000,107,1,64814.010320,1917.406500,hint,nbiot,180 +on11,0,0,25,1,0,1248,4502.020640,107,1,24040.010320,2033.137964,hint,nbiot,180 +on7,0,0,24,1,0,3991,4320.989680,107,0,79757.010320,1754.402580,hint,nbiot,180 +on3,0,0,24,1,0,484,4320.000000,107,0,8924.010320,1754.013208,hint,nbiot,180 +on9,0,0,25,1,0,492,4500.320640,107,2,13164.010320,1857.334964,hint,nbiot,180 +on4,0,0,25,1,0,1616,4503.871920,107,1,30537.010320,2096.682100,hint,nbiot,180 +on7,0,0,26,1,0,625,4683.520000,108,2,14066.010320,2253.216000,hint,nbiot,180 +on6,0,0,24,1,0,243,4320.969360,108,0,6382.010320,1754.400952,hint,nbiot,180 +on4,0,0,26,1,0,334,4684.499680,108,3,9986.630960,2226.937748,hint,nbiot,180 +on2,0,0,25,1,0,1823,4501.000000,108,1,39113.010320,1895.956500,hint,nbiot,180 +on11,0,0,26,1,0,643,4682.930960,108,3,14186.672240,2004.382840,hint,nbiot,180 +on1,0,0,25,1,0,1035,4662.300000,108,2,24634.630960,2215.614916,hint,nbiot,180 +on3,0,0,24,1,0,1360,4321.000000,108,0,25933.010320,1780.400000,hint,nbiot,180 +on12,0,0,25,1,0,553,4506.000000,108,1,14146.051600,2336.939668,hint,nbiot,180 +on5,0,0,25,1,0,693,4681.220000,108,2,14106.030960,2080.032376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,108,0,-1.000000,2071.381324,hint,nbiot,180 +on10,0,0,24,1,0,384,4321.820000,108,0,9945.010320,1829.087792,hint,nbiot,180 +on9,0,0,24,1,0,2212,4322.000000,108,0,45793.010320,1842.550000,hint,nbiot,180 +on8,0,0,24,1,0,1082,4322.000000,108,0,24593.010320,1994.266500,hint,nbiot,180 +on7,0,0,25,1,0,293,4501.020960,109,1,6923.010320,1826.434800,hint,nbiot,180 +on11,0,0,27,1,0,692,4862.700000,109,4,20162.010320,2334.546376,hint,nbiot,180 +on10,0,0,27,1,0,1035,4862.900000,109,4,23535.010320,2474.245960,hint,nbiot,180 +on2,0,0,24,1,0,101,4323.000000,109,0,845.010320,1988.803292,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,109,0,-1.000000,2040.174408,hint,nbiot,180 +on6,0,0,26,1,0,1275,4681.000000,109,2,23575.030960,1963.399584,hint,nbiot,180 +on4,0,0,25,1,0,213,4502.300000,109,2,8301.010320,2007.490000,hint,nbiot,180 +on1,0,0,26,1,0,919,4683.051280,109,2,20203.041280,2196.927012,hint,nbiot,180 +on9,0,0,26,1,0,627,4682.480000,109,2,16028.010320,2195.651792,hint,nbiot,180 +on8,0,0,25,1,0,540,4501.661920,109,1,11908.620640,1943.229892,hint,nbiot,180 +on3,0,0,25,1,0,360,4503.979680,109,1,8354.020320,2067.325080,hint,nbiot,180 +on12,0,0,24,1,0,599,4321.000000,109,0,11822.010320,1806.400000,hint,nbiot,180 +on5,0,0,29,1,0,1045,5223.010000,109,5,27651.010320,2731.910168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,110,0,-1.000000,2059.064656,hint,nbiot,180 +on11,0,0,26,1,0,1161,4683.310320,110,2,23318.030960,2095.630628,hint,nbiot,180 +on6,0,0,25,1,0,3053,4501.300000,110,1,60240.010320,1922.070000,hint,nbiot,180 +on2,0,0,25,1,0,321,4501.000000,110,1,6192.020640,1899.199792,hint,nbiot,180 +on5,0,0,25,1,0,1042,4502.300000,110,1,23278.010320,2144.126500,hint,nbiot,180 +on4,0,0,27,1,0,1144,4920.200000,110,4,26511.010320,2584.383376,hint,nbiot,180 +on3,0,0,24,1,0,27,4320.969360,110,0,2285.010320,1754.400952,hint,nbiot,180 +on10,0,0,25,1,0,840,4506.300000,110,2,18945.010320,2246.353000,hint,nbiot,180 +on8,0,0,27,1,0,900,4865.600000,110,3,18986.630960,2461.416584,hint,nbiot,180 +on12,0,0,25,1,0,715,4501.300000,110,1,17275.030960,1989.338084,hint,nbiot,180 +on7,0,0,26,1,0,313,4684.879040,110,3,6232.041280,2173.829740,hint,nbiot,180 +on1,0,0,25,1,0,832,4502.300000,110,1,17235.010320,2059.301708,hint,nbiot,180 +on9,0,0,26,1,0,349,4681.651600,110,3,12660.010320,2170.445556,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,111,0,-1.000000,2055.391116,hint,nbiot,180 +on4,0,0,25,1,0,1575,4502.300000,111,2,34365.010320,1994.236708,hint,nbiot,180 +on5,0,0,27,1,0,2201,4863.879360,111,5,44320.010320,2380.726328,hint,nbiot,180 +on10,0,0,24,1,0,1120,4322.979360,111,0,24248.010320,1803.565160,hint,nbiot,180 +on1,0,0,24,1,0,2340,4320.010320,111,0,47636.010320,1754.010836,hint,nbiot,180 +on11,0,0,24,1,0,459,4323.010320,111,0,7525.010320,1870.540960,hint,nbiot,180 +on9,0,0,26,1,0,3398,4681.600000,111,3,70647.010320,2196.989792,hint,nbiot,180 +on8,0,0,24,1,0,3092,4321.000000,111,0,62711.010320,1786.906708,hint,nbiot,180 +on3,0,0,25,1,0,3399,4500.979360,111,1,66960.010320,1826.411452,hint,nbiot,180 +on2,0,0,24,1,0,1455,4476.969360,111,1,30137.010320,2026.094244,hint,nbiot,180 +on6,0,0,26,1,0,2277,4682.300000,111,2,44361.630960,2166.083208,hint,nbiot,180 +on7,0,0,24,1,0,2110,4321.000000,111,0,41380.010320,1858.413208,hint,nbiot,180 +on12,0,0,24,1,0,1919,4322.030640,111,0,38004.010320,1936.442172,hint,nbiot,180 +on2,0,0,27,1,0,1662,4946.500000,112,4,39922.010320,2599.979668,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,112,0,-1.000000,2014.221364,hint,nbiot,180 +on11,0,0,26,1,0,1658,4773.589680,112,5,36769.651600,2524.362080,hint,nbiot,180 +on9,0,0,24,1,0,37,4321.979360,112,0,1296.010320,1754.805160,hint,nbiot,180 +on12,0,0,25,1,0,1404,4502.300000,112,1,28877.010320,2030.753292,hint,nbiot,180 +on6,0,0,25,1,0,1636,4501.300000,112,1,36689.010320,2017.496500,hint,nbiot,180 +on8,0,0,27,1,0,1421,4865.351600,112,4,28918.630960,2512.966640,hint,nbiot,180 +on1,0,0,24,1,0,1328,4320.040960,112,0,26724.010320,1754.036300,hint,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,hint,nbiot,180 +on3,0,0,24,1,0,1615,4481.300000,112,1,32897.010320,2009.503208,hint,nbiot,180 +on5,0,0,27,1,0,1643,4862.831280,112,3,36729.030960,2236.020512,hint,nbiot,180 +on7,0,0,25,1,0,900,4503.620640,112,1,18995.620640,1944.286796,hint,nbiot,180 +on10,0,0,25,1,0,3032,4500.220320,112,1,60034.010320,1826.101336,hint,nbiot,180 +on10,0,0,25,1,0,2633,4502.210000,113,1,53406.010320,1931.547208,hint,nbiot,180 +on2,0,0,25,1,0,930,4502.600000,113,1,23067.010320,2147.366708,hint,nbiot,180 +on3,0,0,24,1,0,2700,4323.000000,113,0,57367.010320,1995.966708,hint,nbiot,180 +on5,0,0,24,0,0,4281,4320.000000,113,0,-1.000000,1845.000000,hint,nbiot,180 +on1,0,0,24,1,0,677,4325.958720,113,0,11299.010320,1812.973736,hint,nbiot,180 +on12,0,0,24,1,0,60,4320.010320,113,0,478.010320,1754.010836,hint,nbiot,180 +on6,0,0,24,1,0,784,4320.989680,113,0,14702.010320,1754.402580,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,113,0,-1.000000,2040.154284,hint,nbiot,180 +on4,0,0,24,1,0,900,4321.000000,113,0,20475.010320,1774.160000,hint,nbiot,180 +on9,0,0,24,1,0,2348,4323.000000,113,0,50046.010320,1968.673416,hint,nbiot,180 +on8,0,0,24,1,0,2055,4320.010320,113,0,41403.010320,1754.010836,hint,nbiot,180 +on7,0,0,24,1,0,2233,4322.989680,113,0,43623.010320,1873.502580,hint,nbiot,180 +on11,0,0,25,1,0,2709,4503.300000,113,1,57852.010320,2113.463416,hint,nbiot,180 +on2,0,0,25,1,0,1062,4502.000000,114,1,22269.010320,2010.106500,hint,nbiot,180 +on5,0,0,25,1,0,474,4501.000000,114,1,9875.010320,1917.608000,hint,nbiot,180 +on7,0,0,25,1,0,180,4503.000000,114,1,6488.620640,2027.485124,hint,nbiot,180 +on9,0,0,26,1,0,430,4682.300000,114,2,12741.010320,2214.826292,hint,nbiot,180 +on6,0,0,25,1,0,513,4502.000000,114,1,9915.030960,1993.836376,hint,nbiot,180 +on8,0,0,24,1,0,87,4320.010320,114,0,1068.010320,1754.010836,hint,nbiot,180 +on12,0,0,29,1,0,737,5221.200000,114,5,18094.630960,2511.226376,hint,nbiot,180 +on11,0,0,27,1,0,667,4861.551280,114,4,12782.041280,2135.558636,hint,nbiot,180 +on10,0,0,25,1,0,744,4674.600000,114,2,18053.010320,2321.199792,hint,nbiot,180 +on3,0,0,25,1,0,360,4502.020640,114,1,9964.020640,2033.501548,hint,nbiot,180 +on1,0,0,25,1,0,835,4501.010000,114,1,17629.020640,1916.753792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,114,0,-1.000000,2058.614284,hint,nbiot,180 +on4,0,0,29,1,0,1095,5222.420000,114,5,22309.030960,2568.185544,hint,nbiot,180 +on1,0,0,25,1,0,678,4501.000000,115,1,13694.010320,1915.716500,hint,nbiot,180 +on4,0,0,25,1,0,335,4501.189360,115,1,7617.010320,1826.495452,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,115,0,-1.000000,2042.417948,hint,nbiot,180 +on10,0,0,26,1,0,830,4685.248400,115,3,18471.651600,2251.009400,hint,nbiot,180 +on12,0,0,25,1,0,2509,4501.190000,115,1,49690.010320,1917.482500,hint,nbiot,180 +on5,0,0,27,1,0,663,4863.458400,115,5,13774.651600,2185.409484,hint,nbiot,180 +on2,0,0,25,1,0,1193,4501.010320,115,1,26237.010320,1942.760836,hint,nbiot,180 +on8,0,0,26,1,0,897,4682.600000,115,2,22859.010320,2239.496584,hint,nbiot,180 +on11,0,0,25,1,0,0,4507.600000,115,1,3243.620640,2288.401916,hint,nbiot,180 +on6,0,0,25,1,0,563,4502.300000,115,1,16202.010320,2133.576584,hint,nbiot,180 +on3,0,0,26,1,0,776,4683.300000,115,2,18431.030960,2202.199668,hint,nbiot,180 +on9,0,0,25,1,0,543,4502.010320,115,1,13734.030960,2006.190504,hint,nbiot,180 +on7,0,0,26,1,0,694,4682.600000,115,2,18391.010320,2254.388292,hint,nbiot,180 +on4,0,0,25,1,0,578,4606.300000,116,3,13131.010320,2253.982792,hint,nbiot,180 +on8,0,0,24,1,0,3370,4321.000000,116,0,67096.010320,1759.859792,hint,nbiot,180 +on5,0,0,24,1,0,1080,4320.010320,116,0,22139.010320,1754.010836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,116,0,-1.000000,2062.924408,hint,nbiot,180 +on2,0,0,25,1,0,1227,4504.279360,116,1,22022.010320,2113.075160,hint,nbiot,180 +on1,0,0,25,1,0,3229,4501.000000,116,1,67137.630960,1924.803084,hint,nbiot,180 +on11,0,0,24,1,0,1807,4322.000000,116,0,39381.010320,1871.163416,hint,nbiot,180 +on6,0,0,23,1,0,68,4248.000000,116,0,214.010320,1725.206708,hint,nbiot,180 +on3,0,0,24,1,0,575,4450.300000,116,2,16211.010320,2187.676916,hint,nbiot,180 +on10,0,0,25,1,0,2455,4501.310320,116,1,47828.010320,1918.824128,hint,nbiot,180 +on12,0,0,25,1,0,640,4501.641280,116,2,13172.630960,1826.683136,hint,nbiot,180 +on7,0,0,24,1,0,463,4323.979360,116,0,10071.010320,1987.668368,hint,nbiot,180 +on9,0,0,24,1,0,0,4322.000000,116,0,325.010320,1840.873416,hint,nbiot,180 +on8,0,0,24,1,0,84,4320.010320,117,0,3274.010320,1754.010836,hint,nbiot,180 +on11,0,0,25,1,0,998,4503.989680,117,1,22294.010320,2005.975788,hint,nbiot,180 +on5,0,0,24,0,0,4286,4320.000000,117,0,-1.000000,1856.700000,hint,nbiot,180 +on2,0,0,24,1,0,180,4323.000000,117,0,4115.010320,1902.373416,hint,nbiot,180 +on12,0,0,24,1,0,3170,4321.000000,117,0,62586.010320,1770.000000,hint,nbiot,180 +on4,0,0,24,0,0,4295,4320.000000,117,0,-1.000000,1744.900000,hint,nbiot,180 +on1,0,0,25,1,0,882,4502.000000,117,1,16227.010320,1860.626624,hint,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,117,0,-1.000000,2059.661200,hint,nbiot,180 +on10,0,0,25,1,0,1933,4501.269360,117,1,38966.010320,1827.820952,hint,nbiot,180 +on3,0,0,26,1,0,1744,4684.900000,117,3,40635.010320,2511.031708,hint,nbiot,180 +on9,0,0,25,1,0,1193,4503.010320,117,1,25771.010320,2047.177336,hint,nbiot,180 +on6,0,0,24,1,0,900,4321.030960,117,0,19050.010320,1807.329092,hint,nbiot,180 +on7,0,0,26,1,0,1425,4683.310000,117,2,32140.620640,2322.708832,hint,nbiot,180 +on2,0,0,24,1,0,3971,4321.000000,118,0,81998.010320,1838.250000,hint,nbiot,180 +on6,0,0,26,1,0,713,4683.000000,118,2,12116.030960,2163.742876,hint,nbiot,180 +on4,0,0,26,1,0,322,4683.241280,118,2,8828.630960,2183.866304,hint,nbiot,180 +on10,0,0,26,1,0,146,4682.000000,118,2,6523.630960,2116.563000,hint,nbiot,180 +on8,0,0,25,1,0,720,4504.000000,118,1,17432.620640,2253.805000,hint,nbiot,180 +on11,0,0,26,1,0,269,4684.900320,118,2,8787.010320,2313.893128,hint,nbiot,180 +on9,0,0,26,1,0,732,4684.679360,118,2,17366.630960,2166.015076,hint,nbiot,180 +on7,0,0,25,1,0,1161,4502.000000,118,1,24519.010320,2034.156500,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,118,0,-1.000000,2061.534656,hint,nbiot,180 +on5,0,0,24,1,0,654,4398.000000,118,1,17325.010320,1950.586416,hint,nbiot,180 +on12,0,0,24,1,0,1620,4321.000000,118,0,35520.010320,1754.413416,hint,nbiot,180 +on1,0,0,25,1,0,380,4502.300000,118,1,12076.010320,2024.136500,hint,nbiot,180 +on3,0,0,24,1,0,267,4323.630960,118,0,6482.010320,1905.225592,hint,nbiot,180 +on4,0,0,24,1,0,962,4323.051280,119,0,18102.010320,1953.503844,hint,nbiot,180 +on8,0,0,25,1,0,241,4635.320640,119,2,5185.030960,2311.864964,hint,nbiot,180 +on2,0,0,25,1,0,900,4502.300000,119,2,23278.010320,2034.926708,hint,nbiot,180 +on9,0,0,25,1,0,688,4501.979360,119,1,15414.010320,1938.851536,hint,nbiot,180 +on12,0,0,26,1,0,304,4681.600000,119,3,9481.010320,2098.819876,hint,nbiot,180 +on5,0,0,24,1,0,611,4324.979360,119,0,12248.010320,1993.521660,hint,nbiot,180 +on6,0,0,24,1,0,39,4321.969360,119,0,2371.010320,1816.420952,hint,nbiot,180 +on7,0,0,25,1,0,356,4577.989360,119,3,5225.651600,1998.669076,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,119,0,-1.000000,2061.281364,hint,nbiot,180 +on11,0,0,25,1,0,3600,4501.000000,119,1,75557.020320,1917.400000,hint,nbiot,180 +on10,0,0,24,1,0,254,4323.989680,119,0,5145.010320,1947.612580,hint,nbiot,180 +on3,0,0,26,1,0,514,4684.000000,119,2,9521.030960,2234.349584,hint,nbiot,180 +on1,0,0,24,1,0,2384,4320.000000,119,0,47322.010320,1754.006708,hint,nbiot,180 +on2,0,0,26,1,0,334,4682.369040,120,2,7034.630960,2105.277324,hint,nbiot,180 +on11,0,0,24,1,0,360,4323.000000,120,0,10054.010320,1911.473416,hint,nbiot,180 +on10,0,0,24,1,0,286,4322.000000,120,0,6993.010320,1794.709792,hint,nbiot,180 +on5,0,0,25,1,0,180,4503.000000,120,1,7118.620640,2063.865000,hint,nbiot,180 +on8,0,0,25,1,0,495,4501.310320,120,1,13571.010320,2011.397336,hint,nbiot,180 +on7,0,0,26,1,0,747,4686.189360,120,2,13611.030960,2235.888744,hint,nbiot,180 +on9,0,0,25,1,0,414,4505.300000,120,1,9966.010320,2388.550000,hint,nbiot,180 +on3,0,0,25,1,0,813,4503.300000,120,1,18289.010320,2154.276708,hint,nbiot,180 +on1,0,0,24,1,0,0,4323.020640,120,0,1370.010320,2031.348380,hint,nbiot,180 +on6,0,0,27,1,0,413,4861.641280,120,3,10006.030960,2243.006096,hint,nbiot,180 +on4,0,0,25,1,0,1913,4502.210000,120,1,37573.010320,2034.240500,hint,nbiot,180 +on12,0,0,24,1,0,51,4322.010320,120,0,1295.010320,1851.270836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,120,0,-1.000000,2040.187824,hint,nbiot,180 +on8,0,0,24,1,0,631,4357.289680,121,1,16507.010320,1791.685996,hint,nbiot,180 +on11,0,0,25,1,0,141,4505.300000,121,2,4027.010320,2358.130208,hint,nbiot,180 +on12,0,0,22,1,0,1463,4258.989360,121,0,32275.010320,2053.972368,hint,nbiot,180 +on2,0,0,24,1,0,1754,4324.000000,121,0,33595.010320,1932.926500,hint,nbiot,180 +on3,0,0,24,1,0,1980,4323.000000,121,0,39731.010320,1896.913416,hint,nbiot,180 +on7,0,0,27,1,0,1763,4863.530640,121,4,33636.630960,2347.976756,hint,nbiot,180 +on10,0,0,26,1,0,1805,4681.900000,121,2,39219.010320,2164.219792,hint,nbiot,180 +on6,0,0,24,1,0,0,4322.979680,121,0,2345.010320,1958.661788,hint,nbiot,180 +on9,0,0,24,1,0,2218,4322.989680,121,0,46889.010320,1924.852580,hint,nbiot,180 +on5,0,0,26,1,0,547,4682.989680,121,2,10415.630960,1996.968872,hint,nbiot,180 +on1,0,0,25,1,0,4177,4500.300000,121,1,85121.010000,1919.726500,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,121,0,-1.000000,2083.127864,hint,nbiot,180 +on4,0,0,25,1,0,518,4502.010320,121,1,10374.010320,1935.178628,hint,nbiot,180 +on4,0,0,25,1,0,2814,4502.000000,122,1,58494.010320,2008.163208,hint,nbiot,180 +on2,0,0,25,1,0,2633,4502.989680,122,1,54498.010320,1942.512580,hint,nbiot,180 +on12,0,0,26,1,0,861,4681.671920,122,3,14978.651280,1990.741684,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,122,0,-1.000000,2019.674656,hint,nbiot,180 +on7,0,0,25,1,0,891,4503.010000,122,1,20060.010320,2051.453792,hint,nbiot,180 +on5,0,0,24,1,0,137,4324.051600,122,0,1031.010320,2010.330888,hint,nbiot,180 +on1,0,0,24,1,0,3060,4321.000000,122,0,63389.010320,1833.700000,hint,nbiot,180 +on9,0,0,26,1,0,655,4684.000000,122,2,14938.030640,2248.903084,hint,nbiot,180 +on10,0,0,25,1,0,360,4505.289680,122,2,10858.010320,2144.542580,hint,nbiot,180 +on11,0,0,25,1,0,293,4500.220320,122,1,4865.010320,1826.101336,hint,nbiot,180 +on3,0,0,24,1,0,360,4324.979680,122,0,8078.010320,2007.581912,hint,nbiot,180 +on8,0,0,25,1,0,1767,4502.979040,122,1,33626.010320,1918.211532,hint,nbiot,180 +on6,0,0,24,0,0,4247,4320.000000,122,1,-1.000000,1733.206500,hint,nbiot,180 +on8,0,0,24,0,0,4277,4320.000000,123,0,-1.000000,1757.900000,hint,nbiot,180 +on11,0,0,25,1,0,1570,4503.369040,123,1,30079.630960,2129.220824,hint,nbiot,180 +on3,0,0,24,1,0,0,4320.010320,123,0,509.010320,1754.010836,hint,nbiot,180 +on2,0,0,24,1,0,918,4322.041280,123,0,20879.010320,1929.036636,hint,nbiot,180 +on7,0,0,27,1,0,1995,4862.200000,123,4,45289.010320,2333.768292,hint,nbiot,180 +on12,0,0,26,1,0,1763,4682.569360,123,2,40595.010320,2226.627744,hint,nbiot,180 +on1,0,0,25,1,0,1725,4504.300000,123,1,37170.020640,2191.720208,hint,nbiot,180 +on9,0,0,24,1,0,720,4321.020640,123,0,16306.010320,1841.528380,hint,nbiot,180 +on5,0,0,26,1,0,1774,4683.179040,123,2,33149.630960,1940.254740,hint,nbiot,180 +on6,0,0,25,1,0,1564,4501.320640,123,1,33108.010320,1952.888048,hint,nbiot,180 +on4,0,0,24,1,0,1495,4326.010320,123,0,30038.010320,2269.144044,hint,nbiot,180 +on10,0,0,24,1,0,1271,4322.989680,123,0,26814.010320,1849.465996,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,123,0,-1.000000,2065.564656,hint,nbiot,180 +on1,0,0,26,1,0,362,4682.723840,124,3,5611.651600,1987.502536,hint,nbiot,180 +on2,0,0,24,1,0,329,4422.000000,124,1,10633.010320,1950.806500,hint,nbiot,180 +on11,0,0,27,1,0,421,4862.020000,124,3,11617.010320,2243.547376,hint,nbiot,180 +on12,0,0,26,1,0,153,4683.000000,124,2,5571.030960,2144.684252,hint,nbiot,180 +on5,0,0,25,1,0,562,4502.000000,124,1,10673.030960,2007.103084,hint,nbiot,180 +on10,0,0,27,1,0,554,4863.300000,124,3,11657.030960,2333.356168,hint,nbiot,180 +on9,0,0,25,1,0,183,4501.672240,124,1,5651.672240,1891.655480,hint,nbiot,180 +on6,0,0,25,1,0,868,4502.190000,124,1,16483.010320,2021.882500,hint,nbiot,180 +on8,0,0,24,1,0,0,4321.000000,124,0,3087.010320,1755.966708,hint,nbiot,180 +on3,0,0,25,1,0,629,4622.300000,124,3,11697.651600,2071.993084,hint,nbiot,180 +on7,0,0,28,1,0,709,5041.900000,124,4,16523.030960,2406.290960,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,124,0,-1.000000,2040.154284,hint,nbiot,180 +on4,0,0,24,1,0,108,4418.300000,124,1,5531.010320,2067.678500,hint,nbiot,180 +on6,0,0,24,1,0,32,4321.000000,125,0,1181.010320,1781.966708,hint,nbiot,180 +on2,0,0,24,1,0,560,4321.989680,125,1,13886.010320,1823.962372,hint,nbiot,180 +on8,0,0,25,1,0,814,4502.290000,125,1,18316.010320,1962.792416,hint,nbiot,180 +on12,0,0,28,1,0,842,5043.800000,125,5,23743.010320,2665.946584,hint,nbiot,180 +on3,0,0,24,1,0,720,4321.000000,125,0,14852.010320,1757.916708,hint,nbiot,180 +on7,0,0,24,1,0,0,4323.979360,125,0,1268.010320,1833.228576,hint,nbiot,180 +on9,0,0,26,1,0,1884,4682.600000,125,2,40243.010320,2284.750000,hint,nbiot,180 +on5,0,0,26,1,0,333,4683.579360,125,3,5960.651280,2071.786576,hint,nbiot,180 +on1,0,0,25,1,0,2042,4501.190000,125,2,43381.010320,1942.189000,hint,nbiot,180 +on10,0,0,26,1,0,694,4683.000000,125,2,13927.630960,2050.669708,hint,nbiot,180 +on11,0,0,26,1,0,241,4685.190000,125,2,5920.030640,2256.750708,hint,nbiot,180 +on4,0,0,24,1,0,360,4320.010320,125,0,9589.010320,1754.010836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,125,0,-1.000000,2064.894532,hint,nbiot,180 +on12,0,0,24,1,0,747,4321.000000,126,1,16342.430320,1820.433500,hint,nbiot,180 +on9,0,0,24,1,0,720,4322.000000,126,0,16435.010320,1855.536584,hint,nbiot,180 +on11,0,0,27,1,0,1095,4862.900000,126,5,25668.010320,2426.737876,hint,nbiot,180 +on8,0,0,27,1,0,1412,4863.569360,126,4,29904.010320,2361.823620,hint,nbiot,180 +on10,0,0,25,1,0,1195,4502.300000,126,1,24403.010320,1936.756792,hint,nbiot,180 +on1,0,0,25,1,0,1145,4501.300000,126,1,24443.030960,1982.760084,hint,nbiot,180 +on7,0,0,24,1,0,540,4321.000000,126,0,11587.010320,1799.153124,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,126,0,-1.000000,2044.411160,hint,nbiot,180 +on6,0,0,26,1,0,1235,4680.341280,126,3,24483.051600,1908.731512,hint,nbiot,180 +on3,0,0,24,1,0,370,4321.989680,126,0,8477.010320,1843.845872,hint,nbiot,180 +on2,0,0,24,1,0,927,4321.969360,126,0,19145.010320,1871.150952,hint,nbiot,180 +on5,0,0,26,1,0,1628,4681.610000,126,3,35342.010320,2149.348584,hint,nbiot,180 +on4,0,0,26,1,0,1701,4681.300000,126,2,35383.630960,2038.523084,hint,nbiot,180 +on4,0,0,24,1,0,0,4321.969360,127,0,1414.010320,1809.660952,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,127,0,-1.000000,2040.181116,hint,nbiot,180 +on9,0,0,26,1,0,446,4681.320640,127,2,10701.010320,2080.534756,hint,nbiot,180 +on12,0,0,24,1,0,900,4324.000000,127,0,19842.010320,2027.586832,hint,nbiot,180 +on8,0,0,24,1,0,1131,4321.989680,127,0,21981.010320,1812.652580,hint,nbiot,180 +on11,0,0,24,1,0,673,4322.979360,127,0,14320.010320,1762.348452,hint,nbiot,180 +on10,0,0,25,1,0,113,4501.300000,127,2,5175.010320,2033.473084,hint,nbiot,180 +on2,0,0,26,1,0,335,4682.969040,127,2,5216.630960,1903.328948,hint,nbiot,180 +on1,0,0,25,1,0,901,4503.000000,127,1,19890.610320,2071.196584,hint,nbiot,180 +on7,0,0,24,1,0,1440,4321.989680,127,0,29033.010320,1754.815996,hint,nbiot,180 +on3,0,0,25,1,0,2491,4503.000000,127,1,51977.010320,2148.956500,hint,nbiot,180 +on5,0,0,25,1,0,1013,4501.210000,127,1,19764.010320,1916.450500,hint,nbiot,180 +on6,0,0,24,1,0,774,4321.010320,127,0,15438.010320,1766.370836,hint,nbiot,180 +on1,0,0,24,1,0,3780,4321.010320,128,0,76125.010320,1870.760836,hint,nbiot,180 +on7,0,0,24,1,0,435,4322.000000,128,0,8458.010320,1844.519916,hint,nbiot,180 +on11,0,0,26,1,0,816,4683.289680,128,2,19562.630960,2195.345788,hint,nbiot,180 +on6,0,0,24,1,0,0,4322.000000,128,0,1442.010320,1807.060000,hint,nbiot,180 +on3,0,0,24,1,0,1779,4322.020640,128,0,39033.010320,1976.471672,hint,nbiot,180 +on8,0,0,24,0,0,4074,4452.300000,128,1,-1.000000,1983.076500,hint,nbiot,180 +on5,0,0,24,1,0,960,4325.989680,128,0,19521.010320,2088.162372,hint,nbiot,180 +on4,0,0,26,1,0,365,4685.010320,128,3,8518.010320,2156.130752,hint,nbiot,180 +on9,0,0,26,1,0,626,4686.979360,128,2,12931.030960,2354.108244,hint,nbiot,180 +on10,0,0,24,1,0,385,4352.020640,128,2,8558.630960,1946.026672,hint,nbiot,180 +on2,0,0,25,1,0,113,4505.210000,128,1,4778.010320,2111.763916,hint,nbiot,180 +on12,0,0,25,1,0,467,4505.279360,128,1,12891.010320,2205.463576,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,128,0,-1.000000,2037.648196,hint,nbiot,180 +on1,0,0,25,1,0,513,4503.400000,129,1,10338.030960,2023.003084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,129,0,-1.000000,2040.187824,hint,nbiot,180 +on4,0,0,25,1,0,535,4501.190000,129,1,10298.010320,1916.832500,hint,nbiot,180 +on7,0,0,26,1,0,775,4681.600000,129,2,16979.010320,2112.749584,hint,nbiot,180 +on12,0,0,26,1,0,874,4687.199680,129,2,17020.630960,2413.756288,hint,nbiot,180 +on11,0,0,25,1,0,720,4502.010320,129,1,17070.010320,2059.510836,hint,nbiot,180 +on6,0,0,27,1,0,277,4865.200000,129,6,11918.010320,2564.599668,hint,nbiot,180 +on3,0,0,24,1,0,313,4321.000000,129,0,5624.010320,1869.723208,hint,nbiot,180 +on10,0,0,24,1,0,16,4321.989680,129,0,2377.010320,1871.165788,hint,nbiot,180 +on5,0,0,25,1,0,1620,4501.000000,129,2,35572.620640,1917.205000,hint,nbiot,180 +on8,0,0,26,1,0,537,4684.261280,129,2,10378.051600,2241.962428,hint,nbiot,180 +on2,0,0,24,1,0,900,4321.010320,129,0,18108.010320,1870.760836,hint,nbiot,180 +on9,0,0,27,1,0,689,4862.600000,129,3,11958.030960,2163.367668,hint,nbiot,180 +on8,0,0,27,1,0,539,4864.930960,130,4,14054.030960,2422.610260,hint,nbiot,180 +on3,0,0,25,1,0,188,4501.220320,130,2,7120.010320,1957.794628,hint,nbiot,180 +on11,0,0,26,1,0,475,4829.189680,130,3,14014.010320,2370.627372,hint,nbiot,180 +on9,0,0,25,1,0,193,4504.020640,130,1,7200.440960,1996.444924,hint,nbiot,180 +on7,0,0,24,1,0,0,4321.410000,130,0,1739.010320,1805.277208,hint,nbiot,180 +on6,0,0,27,1,0,653,4863.600000,130,4,15470.010320,2261.898376,hint,nbiot,180 +on10,0,0,25,1,0,672,4643.300000,130,2,15510.030960,2508.626500,hint,nbiot,180 +on4,0,0,25,1,0,439,4503.320640,130,1,8871.030960,2124.124964,hint,nbiot,180 +on12,0,0,26,1,0,612,4683.300000,130,3,14094.651600,2311.836624,hint,nbiot,180 +on5,0,0,23,1,0,419,4293.000000,130,0,8831.010320,1860.856708,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,130,0,-1.000000,2079.494988,hint,nbiot,180 +on1,0,0,24,1,0,2542,4321.000000,130,0,51580.010320,1831.750000,hint,nbiot,180 +on2,0,0,26,1,0,255,4685.248400,130,2,7160.030960,2244.086068,hint,nbiot,180 +on4,0,0,24,1,0,221,4479.169360,131,2,8188.030960,2351.799368,hint,nbiot,180 +on7,0,0,24,1,0,1620,4321.010320,131,0,34584.010320,1855.160836,hint,nbiot,180 +on1,0,0,24,1,0,180,4321.000000,131,0,6801.010320,1756.993292,hint,nbiot,180 +on3,0,0,26,1,0,740,4682.300000,131,2,14566.010320,2197.269792,hint,nbiot,180 +on12,0,0,26,1,0,622,4861.551280,131,4,14119.030960,2215.910180,hint,nbiot,180 +on5,0,0,25,1,0,870,4502.010000,131,1,19970.010320,1921.723916,hint,nbiot,180 +on11,0,0,26,1,0,582,4681.250960,131,2,8228.051600,1900.880216,hint,nbiot,180 +on8,0,0,25,1,0,258,4503.300000,131,2,8148.010320,2158.820000,hint,nbiot,180 +on9,0,0,24,1,0,303,4320.969360,131,0,6717.010320,1754.400952,hint,nbiot,180 +on6,0,0,24,1,0,1080,4320.010320,131,0,24309.010320,1754.010836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,131,0,-1.000000,2040.167700,hint,nbiot,180 +on2,0,0,24,1,0,2771,4322.000000,131,0,54593.010320,1890.650000,hint,nbiot,180 +on10,0,0,25,1,0,544,4587.520000,131,2,14079.010320,2146.357792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,132,0,-1.000000,2040.194532,hint,nbiot,180 +on4,0,0,24,1,0,0,4320.010320,132,0,1824.010320,1754.010836,hint,nbiot,180 +on5,0,0,26,1,0,826,4684.589680,132,2,18359.010320,2363.285872,hint,nbiot,180 +on9,0,0,24,1,0,757,4322.000000,132,0,16870.010320,1904.559792,hint,nbiot,180 +on11,0,0,24,1,0,1339,4322.979360,132,0,28232.010320,1848.155160,hint,nbiot,180 +on7,0,0,24,1,0,180,4322.010320,132,0,5611.010320,1818.127544,hint,nbiot,180 +on2,0,0,25,1,0,3060,4501.000000,132,2,64116.630640,1917.205000,hint,nbiot,180 +on12,0,0,24,1,0,2633,4429.010320,132,1,51467.010320,1913.967336,hint,nbiot,180 +on6,0,0,24,1,0,627,4324.959040,132,0,12962.010320,1992.473532,hint,nbiot,180 +on10,0,0,23,1,0,399,4225.959040,132,0,9225.010320,1716.403532,hint,nbiot,180 +on1,0,0,27,1,0,555,4862.500000,132,5,16911.630960,2295.363208,hint,nbiot,180 +on3,0,0,25,1,0,720,4503.989680,132,1,16980.620640,2125.750872,hint,nbiot,180 +on8,0,0,24,1,0,0,4322.010320,132,0,1887.010320,1955.010836,hint,nbiot,180 +on1,0,0,24,1,0,58,4320.000000,133,0,858.010320,1754.013208,hint,nbiot,180 +on10,0,0,24,1,0,243,4323.000000,133,1,6095.010320,1893.091416,hint,nbiot,180 +on5,0,0,25,1,0,15,4558.600000,133,3,7416.010320,2197.631584,hint,nbiot,180 +on8,0,0,25,1,0,654,4501.999680,133,1,12444.010320,1917.163080,hint,nbiot,180 +on7,0,0,25,1,0,394,4500.410320,133,1,7457.630960,1826.184044,hint,nbiot,180 +on3,0,0,26,1,0,986,4683.210000,133,2,18979.030960,1964.303708,hint,nbiot,180 +on4,0,0,28,1,0,1052,5043.110000,133,4,22246.010320,2524.431876,hint,nbiot,180 +on11,0,0,24,1,0,1904,4322.000000,133,0,36502.010320,1894.550000,hint,nbiot,180 +on6,0,0,25,1,0,246,4504.630960,133,2,6136.630960,2166.775800,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,133,0,-1.000000,2061.261240,hint,nbiot,180 +on9,0,0,25,1,0,738,4502.300000,133,1,18939.010320,2132.940000,hint,nbiot,180 +on12,0,0,26,1,0,670,4682.510000,133,2,14962.010320,2196.515084,hint,nbiot,180 +on2,0,0,27,1,0,677,4862.551280,133,4,15003.630960,2184.882888,hint,nbiot,180 +on10,0,0,26,1,0,873,4682.320000,134,2,18709.010320,2193.897584,hint,nbiot,180 +on7,0,0,27,1,0,555,4863.428400,134,3,11202.630960,2202.134568,hint,nbiot,180 +on1,0,0,27,1,0,462,4862.200000,134,3,15226.010320,2455.630084,hint,nbiot,180 +on11,0,0,24,1,0,180,4321.010640,134,0,3714.010320,1754.424172,hint,nbiot,180 +on6,0,0,24,1,0,750,4321.000000,134,0,15266.030960,1825.886584,hint,nbiot,180 +on2,0,0,27,1,0,760,4943.800000,134,4,23840.630960,2616.449668,hint,nbiot,180 +on9,0,0,25,1,0,554,4501.000000,134,1,10375.030960,1891.393084,hint,nbiot,180 +on5,0,0,25,1,0,484,4501.000000,134,1,10335.010320,1938.011500,hint,nbiot,180 +on3,0,0,25,1,0,180,4502.269360,134,2,4491.010320,2059.224244,hint,nbiot,180 +on12,0,0,26,1,0,266,4683.900000,134,3,11161.010320,2433.566252,hint,nbiot,180 +on8,0,0,25,1,0,1058,4502.000000,134,1,23799.010320,1918.066292,hint,nbiot,180 +on4,0,0,27,1,0,915,4861.300000,134,3,18750.630960,2153.371292,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,134,0,-1.000000,2040.147576,hint,nbiot,180 +on12,0,0,23,1,0,45,4261.010320,135,0,3609.010320,1730.410836,hint,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,135,0,-1.000000,1989.541488,hint,nbiot,180 +on6,0,0,26,1,0,600,4689.420320,135,4,14474.010320,2353.836420,hint,nbiot,180 +on11,0,0,24,0,0,4319,4320.000000,135,0,-1.000000,1729.300000,hint,nbiot,180 +on3,0,0,24,1,0,833,4471.210000,135,1,20290.010320,2002.990500,hint,nbiot,180 +on2,0,0,25,1,0,513,4503.190000,135,1,10839.030960,2000.182708,hint,nbiot,180 +on5,0,0,26,1,0,619,4687.289680,135,2,11651.030960,2260.255788,hint,nbiot,180 +on7,0,0,24,1,0,448,4322.989680,135,0,10799.010320,1880.645872,hint,nbiot,180 +on10,0,0,26,1,0,558,4684.341280,135,2,10879.051600,2148.206552,hint,nbiot,180 +on1,0,0,26,1,0,537,4682.300000,135,3,11611.010320,2055.771292,hint,nbiot,180 +on8,0,0,24,1,0,303,4322.969360,135,0,5401.010320,1948.777660,hint,nbiot,180 +on9,0,0,25,1,0,721,4505.000000,135,1,14539.610320,1936.186832,hint,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,24,1,0,0,4322.041280,136,0,1470.010320,1930.856636,hint,nbiot,180 +on6,0,0,25,1,0,1848,4503.600000,136,1,40064.010320,2189.568416,hint,nbiot,180 +on2,0,0,24,0,0,3984,4320.300000,136,2,-1.000000,1940.995000,hint,nbiot,180 +on11,0,0,24,0,0,4228,4320.300000,136,1,-1.000000,1753.853500,hint,nbiot,180 +on10,0,0,24,1,0,720,4322.000000,136,0,14559.010320,1839.586624,hint,nbiot,180 +on8,0,0,24,1,0,2757,4321.010320,136,0,54664.010320,1839.560836,hint,nbiot,180 +on3,0,0,26,1,0,1347,4681.400320,136,2,28577.630960,1958.198044,hint,nbiot,180 +on12,0,0,25,1,0,1734,4504.000000,136,1,35431.010320,2081.126624,hint,nbiot,180 +on1,0,0,24,1,0,203,4434.979360,136,2,7248.620640,1800.213576,hint,nbiot,180 +on4,0,0,26,1,0,1305,4685.869040,136,2,31053.010320,2355.309032,hint,nbiot,180 +on9,0,0,24,1,0,1080,4321.000000,136,0,22953.010320,1780.010000,hint,nbiot,180 +on7,0,0,25,1,0,1409,4501.210000,136,1,28536.010320,1916.450292,hint,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,136,0,-1.000000,2036.924824,hint,nbiot,180 +on1,0,0,24,1,0,3578,4321.000000,137,0,73168.010320,1860.350000,hint,nbiot,180 +on9,0,0,24,1,0,675,4323.989680,137,0,11600.010320,1951.512372,hint,nbiot,180 +on8,0,0,25,1,0,1144,4503.300000,137,1,23689.010320,2005.433208,hint,nbiot,180 +on6,0,0,25,1,0,762,4504.979360,137,2,14959.010320,2154.954744,hint,nbiot,180 +on7,0,0,26,1,0,898,4686.661920,137,3,15079.672240,2321.924932,hint,nbiot,180 +on3,0,0,25,1,0,1014,4503.979040,137,1,20214.010320,1966.718240,hint,nbiot,180 +on5,0,0,26,1,0,840,4687.289680,137,2,14999.030960,2386.452456,hint,nbiot,180 +on10,0,0,25,1,0,360,4503.400320,137,1,9680.620640,1963.691752,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,137,0,-1.000000,2061.608444,hint,nbiot,180 +on11,0,0,24,1,0,3180,4321.000000,137,0,63947.010320,1883.750000,hint,nbiot,180 +on12,0,0,25,1,0,756,4503.000000,137,1,15039.051600,2078.716460,hint,nbiot,180 +on4,0,0,24,1,0,297,4322.000000,137,0,4112.010320,1871.163416,hint,nbiot,180 +on2,0,0,24,1,0,401,4561.289680,137,3,11641.630960,2507.515540,hint,nbiot,180 +on10,0,0,26,1,0,876,4682.320640,138,2,19336.010320,2197.102964,hint,nbiot,180 +on12,0,0,25,1,0,1420,4502.179680,138,1,26127.010320,1826.898496,hint,nbiot,180 +on7,0,0,24,1,0,491,4325.410960,138,0,7988.010320,2019.967924,hint,nbiot,180 +on5,0,0,25,1,0,757,4503.189680,138,1,17119.010320,2141.044080,hint,nbiot,180 +on1,0,0,25,1,0,4073,4502.300000,138,1,82152.010320,2052.340000,hint,nbiot,180 +on8,0,0,24,1,0,204,4323.010320,138,0,6047.010320,1981.040960,hint,nbiot,180 +on4,0,0,26,1,0,1795,4684.010000,138,2,35894.030960,2131.660292,hint,nbiot,180 +on3,0,0,25,1,0,1553,4502.300000,138,2,35854.010320,2057.670000,hint,nbiot,180 +on9,0,0,24,1,0,1864,4322.000000,138,1,39088.010320,1895.856500,hint,nbiot,180 +on2,0,0,24,1,0,2231,4321.000000,138,0,45857.010320,1799.250000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,138,0,-1.000000,2061.684988,hint,nbiot,180 +on11,0,0,26,1,0,923,4684.010320,138,2,17160.630960,2151.180544,hint,nbiot,180 +on6,0,0,24,1,0,1521,4322.938400,138,0,30538.010320,1870.505276,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,139,0,-1.000000,2014.254904,hint,nbiot,180 +on3,0,0,27,1,0,1660,4958.200000,139,5,41487.010320,2872.667876,hint,nbiot,180 +on1,0,0,26,1,0,1474,4683.948400,139,2,29778.630960,2110.420692,hint,nbiot,180 +on12,0,0,25,1,0,82,4503.300000,139,2,6570.010320,2097.733416,hint,nbiot,180 +on7,0,0,24,1,0,37,4321.989680,139,0,330.010320,1861.409080,hint,nbiot,180 +on2,0,0,25,1,0,1703,4506.269360,139,3,36255.010320,2252.340868,hint,nbiot,180 +on9,0,0,24,1,0,1260,4324.061920,139,0,26836.010320,1864.858308,hint,nbiot,180 +on5,0,0,24,1,0,900,4322.000320,139,0,18709.010320,1754.833460,hint,nbiot,180 +on10,0,0,24,1,0,762,4322.000000,139,0,15468.010320,1923.806708,hint,nbiot,180 +on4,0,0,25,1,0,1435,4501.180000,139,1,29737.010320,1916.438292,hint,nbiot,180 +on11,0,0,26,1,0,2112,4683.600000,139,3,46012.010320,2327.783292,hint,nbiot,180 +on6,0,0,25,1,0,1080,4502.999680,139,1,24667.020320,1941.886496,hint,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,26,1,0,682,4684.589680,140,4,19989.010320,2370.552248,hint,nbiot,180 +on10,0,0,26,1,0,669,4682.989680,140,3,13407.630960,1986.555456,hint,nbiot,180 +on12,0,0,25,1,0,3709,4501.300000,140,1,74451.010320,1961.460000,hint,nbiot,180 +on8,0,0,26,1,0,1103,4680.041280,140,2,20030.630960,1898.042928,hint,nbiot,180 +on7,0,0,27,1,0,1175,4866.369040,140,3,27573.010320,2544.105616,hint,nbiot,180 +on11,0,0,24,1,0,1213,4321.000000,140,0,23256.010320,1758.300000,hint,nbiot,180 +on2,0,0,24,1,0,1800,4320.010320,140,0,36722.010320,1754.010836,hint,nbiot,180 +on1,0,0,25,1,0,393,4502.010320,140,1,10503.030960,1986.950504,hint,nbiot,180 +on3,0,0,26,1,0,279,4685.189680,140,3,13366.010320,2556.808832,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,140,0,-1.000000,2053.304408,hint,nbiot,180 +on6,0,0,27,1,0,1244,4862.210320,140,4,32180.010320,2447.983920,hint,nbiot,180 +on9,0,0,24,1,0,310,4321.989680,140,0,7084.010320,1870.125788,hint,nbiot,180 +on4,0,0,24,1,0,478,4323.020640,140,0,10463.010320,1941.121672,hint,nbiot,180 +on6,0,0,26,1,0,241,4683.341280,141,2,10112.630960,2326.276428,hint,nbiot,180 +on3,0,0,25,1,0,865,4544.520000,141,2,21503.010320,2169.659292,hint,nbiot,180 +on10,0,0,25,1,0,480,4501.600000,141,1,12987.030960,2044.175084,hint,nbiot,180 +on2,0,0,26,1,0,1195,4681.269360,141,2,24955.010320,1988.870744,hint,nbiot,180 +on9,0,0,25,1,0,258,4502.610000,141,2,10071.010320,2009.095376,hint,nbiot,180 +on7,0,0,26,1,0,669,4681.600000,141,2,17601.030960,2171.769792,hint,nbiot,180 +on1,0,0,26,1,0,720,4683.341280,141,2,17641.430640,2286.086512,hint,nbiot,180 +on12,0,0,28,1,0,875,5159.400000,141,6,27614.010320,2934.343168,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,141,0,-1.000000,2059.654284,hint,nbiot,180 +on8,0,0,25,1,0,426,4502.300000,141,1,12947.010320,2028.680000,hint,nbiot,180 +on5,0,0,26,1,0,986,4682.948720,141,3,17682.051280,2103.682488,hint,nbiot,180 +on4,0,0,26,1,0,718,4682.600000,141,2,17561.010320,2219.476792,hint,nbiot,180 +on11,0,0,24,1,0,180,4331.000000,141,1,6235.620640,1959.445208,hint,nbiot,180 +on1,0,0,25,1,0,113,4503.000000,142,1,5923.010320,2148.176500,hint,nbiot,180 +on6,0,0,26,1,0,447,4683.341280,142,2,10626.010320,2266.586512,hint,nbiot,180 +on12,0,0,26,1,0,529,4681.300000,142,2,13370.010320,2077.913292,hint,nbiot,180 +on2,0,0,26,1,0,395,4681.810000,142,3,10556.030960,2090.115460,hint,nbiot,180 +on4,0,0,24,1,0,0,4321.000000,142,0,1403.010320,1826.563208,hint,nbiot,180 +on8,0,0,28,1,0,711,5041.100000,142,4,18029.630960,2337.533292,hint,nbiot,180 +on3,0,0,25,1,0,174,4539.210000,142,2,5963.030960,2081.345292,hint,nbiot,180 +on9,0,0,26,1,0,612,4682.600000,142,2,13410.030960,2183.726376,hint,nbiot,180 +on7,0,0,26,1,0,367,4682.000000,142,3,6003.651600,2080.813000,hint,nbiot,180 +on11,0,0,27,1,0,755,4861.900000,142,3,17988.010320,2269.356376,hint,nbiot,180 +on10,0,0,25,1,0,394,4501.000000,142,1,10516.010320,2006.125000,hint,nbiot,180 +on5,0,0,27,1,0,763,4861.900000,142,4,20145.010320,2378.939876,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,142,0,-1.000000,2059.244160,hint,nbiot,180 +on1,0,0,24,1,0,1261,4451.000000,143,1,28441.610320,2024.410000,hint,nbiot,180 +on7,0,0,24,1,0,900,4322.000000,143,0,20390.010320,1894.420000,hint,nbiot,180 +on10,0,0,24,1,0,508,4400.020640,143,1,13209.010320,1987.593380,hint,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,hint,nbiot,180 +on9,0,0,24,1,0,4071,4320.979680,143,0,80103.010320,1773.891872,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,143,0,-1.000000,2054.124656,hint,nbiot,180 +on2,0,0,24,1,0,2160,4320.010320,143,0,43770.010320,1754.010836,hint,nbiot,180 +on3,0,0,24,1,0,1080,4324.969040,143,0,23791.010320,1964.664448,hint,nbiot,180 +on6,0,0,25,1,0,1174,4503.520640,143,3,28482.230960,2100.629880,hint,nbiot,180 +on8,0,0,25,1,0,834,4502.010320,143,1,17656.010320,1930.817336,hint,nbiot,180 +on11,0,0,25,1,0,1117,4505.958720,143,1,23831.030960,2097.380320,hint,nbiot,180 +on12,0,0,24,1,0,1013,4482.010320,143,1,23727.010320,2188.010628,hint,nbiot,180 +on5,0,0,25,1,0,1373,4505.189360,143,1,28345.010320,2150.762368,hint,nbiot,180 +on6,0,0,24,1,0,1800,4459.000000,144,1,38634.020320,1914.256708,hint,nbiot,180 +on4,0,0,24,1,0,3530,4322.000000,144,0,70847.010320,1906.900000,hint,nbiot,180 +on8,0,0,24,1,0,42,4323.938400,144,0,553.010320,1927.201984,hint,nbiot,180 +on12,0,0,25,1,0,21,4503.310320,144,2,5411.010320,2265.040836,hint,nbiot,180 +on9,0,0,25,1,0,2161,4501.300000,144,1,49919.010320,2032.829792,hint,nbiot,180 +on3,0,0,24,1,0,900,4320.010320,144,0,19592.010320,1754.010836,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,144,0,-1.000000,2042.151240,hint,nbiot,180 +on10,0,0,24,1,0,3060,4320.010320,144,0,61432.010320,1754.010836,hint,nbiot,180 +on7,0,0,25,1,0,728,4504.300000,144,2,19484.010320,2054.583416,hint,nbiot,180 +on5,0,0,25,1,0,2394,4504.589680,144,2,53002.010320,2226.552580,hint,nbiot,180 +on1,0,0,25,1,0,2361,4502.620640,144,1,50000.651600,1890.761672,hint,nbiot,180 +on2,0,0,24,1,0,720,4320.969360,144,0,17531.010320,1754.400952,hint,nbiot,180 +on11,0,0,26,1,0,2511,4685.200320,144,2,49960.630960,2271.496420,hint,nbiot,180 +on10,0,0,25,1,0,1260,4501.000000,145,1,25550.020320,1844.613208,hint,nbiot,180 +on3,0,0,24,1,0,32,4321.000000,145,0,2726.010320,1844.366708,hint,nbiot,180 +on12,0,0,26,1,0,656,4843.600000,145,4,18002.010320,2326.307960,hint,nbiot,180 +on8,0,0,25,1,0,855,4501.948400,145,1,17917.010320,1917.603860,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,145,0,-1.000000,2080.467700,hint,nbiot,180 +on5,0,0,27,1,0,600,4863.269360,145,5,14208.010320,2386.274036,hint,nbiot,180 +on1,0,0,25,1,0,732,4502.369040,145,2,18042.630960,2150.842616,hint,nbiot,180 +on6,0,0,24,1,0,1379,4322.000000,145,2,31816.010320,1941.363000,hint,nbiot,180 +on4,0,0,24,1,0,264,4320.969360,145,0,6306.010320,1754.400952,hint,nbiot,180 +on7,0,0,24,1,0,1140,4417.910320,145,1,22863.610320,1793.820836,hint,nbiot,180 +on11,0,0,24,1,0,480,4322.979360,145,0,8480.010320,1859.738160,hint,nbiot,180 +on9,0,0,26,1,0,886,4682.220000,145,2,17958.630960,2051.651000,hint,nbiot,180 +on2,0,0,24,1,0,360,4322.000000,145,0,8550.010320,1835.406708,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,146,0,-1.000000,2050.271612,hint,nbiot,180 +on5,0,0,24,1,0,540,4324.010320,146,0,11239.010320,1985.977544,hint,nbiot,180 +on4,0,0,24,1,0,825,4322.000000,146,0,17339.010320,1893.250000,hint,nbiot,180 +on10,0,0,25,1,0,741,4503.948400,146,1,17379.030960,1947.179152,hint,nbiot,180 +on6,0,0,25,1,0,898,4503.310320,146,1,20531.010320,2131.739044,hint,nbiot,180 +on7,0,0,26,1,0,875,4683.790000,146,2,24035.010320,2336.308876,hint,nbiot,180 +on1,0,0,26,1,0,1414,4684.000000,146,2,27886.630960,2199.926416,hint,nbiot,180 +on11,0,0,25,1,0,1101,4502.000000,146,1,24075.030960,1995.136376,hint,nbiot,180 +on8,0,0,26,1,0,717,4685.010320,146,3,17419.651600,2426.927252,hint,nbiot,180 +on9,0,0,24,1,0,580,4323.000000,146,0,11103.010320,2050.586624,hint,nbiot,180 +on3,0,0,27,1,0,855,4866.840960,146,4,20572.041280,2550.131176,hint,nbiot,180 +on12,0,0,25,1,0,3354,4501.300000,146,1,70227.010320,2033.870000,hint,nbiot,180 +on2,0,0,27,1,0,1230,4865.220640,146,3,27845.010320,2806.037840,hint,nbiot,180 +on4,0,0,25,1,0,2804,4501.310320,147,1,57187.010320,1951.337544,hint,nbiot,180 +on5,0,0,24,1,0,1295,4320.989680,147,0,26272.010320,1754.409288,hint,nbiot,180 +on10,0,0,25,1,0,2634,4502.010000,147,1,51591.010320,2034.160500,hint,nbiot,180 +on11,0,0,25,1,0,653,4503.989680,147,1,16656.010320,2075.519080,hint,nbiot,180 +on1,0,0,24,1,0,540,4320.010320,147,0,11042.010320,1754.010836,hint,nbiot,180 +on12,0,0,25,1,0,394,4504.300000,147,2,10940.010320,2203.693416,hint,nbiot,180 +on9,0,0,24,1,0,180,4323.979360,147,0,3693.010320,1912.508452,hint,nbiot,180 +on6,0,0,26,1,0,840,4684.900000,147,3,23854.010320,2301.861708,hint,nbiot,180 +on7,0,0,25,1,0,1045,4507.148400,147,1,20574.010320,2201.609192,hint,nbiot,180 +on2,0,0,24,1,0,360,4323.959040,147,0,7340.010320,1813.473656,hint,nbiot,180 +on8,0,0,24,0,0,4300,4320.000000,147,0,-1.000000,1741.650000,hint,nbiot,180 +on3,0,0,25,1,0,293,4501.020640,147,1,6255.010320,1942.778172,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,147,0,-1.000000,2049.307948,hint,nbiot,180 +on1,0,0,24,1,0,3705,4322.000000,148,0,72814.010320,1894.550000,hint,nbiot,180 +on11,0,0,25,1,0,805,4505.279360,148,1,17425.010320,2208.180160,hint,nbiot,180 +on4,0,0,25,1,0,302,4625.000000,148,2,7952.030640,2281.236624,hint,nbiot,180 +on10,0,0,24,1,0,539,4410.010320,148,1,12100.010320,2024.010836,hint,nbiot,180 +on8,0,0,25,1,0,43,4502.420640,148,1,1110.630960,2041.104880,hint,nbiot,180 +on3,0,0,25,1,0,26,4502.300000,148,1,4541.010320,2121.623292,hint,nbiot,180 +on6,0,0,25,1,0,1080,4502.630960,148,1,24422.620640,2059.967508,hint,nbiot,180 +on5,0,0,24,1,0,2693,4322.000000,148,0,54996.010320,1881.556708,hint,nbiot,180 +on7,0,0,26,1,0,506,4687.640960,148,3,7992.651280,2445.971300,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,148,0,-1.000000,2068.821364,hint,nbiot,180 +on12,0,0,24,1,0,52,4322.010320,148,0,1069.010320,1810.977336,hint,nbiot,180 +on9,0,0,26,1,0,955,4684.620640,148,2,17485.620640,2120.426588,hint,nbiot,180 +on2,0,0,24,1,0,2026,4320.000000,148,1,44528.010320,1850.460208,hint,nbiot,180 +on4,0,0,25,1,0,1547,4502.189680,149,1,33306.010320,1924.389288,hint,nbiot,180 +on2,0,0,25,1,0,1933,4503.010320,149,1,39261.010320,2150.917336,hint,nbiot,180 +on6,0,0,25,1,0,474,4502.010320,149,1,10060.010320,1954.217336,hint,nbiot,180 +on12,0,0,25,1,0,293,4503.989680,149,1,7063.010320,2130.775788,hint,nbiot,180 +on1,0,0,24,1,0,920,4474.269360,149,1,21315.010320,2133.700952,hint,nbiot,180 +on3,0,0,24,1,0,765,4324.979360,149,0,15142.010320,1938.271868,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,149,0,-1.000000,2037.217948,hint,nbiot,180 +on10,0,0,25,1,0,1193,4503.169040,149,1,24316.010320,1920.900740,hint,nbiot,180 +on7,0,0,24,1,0,18,4323.989680,149,0,1781.010320,1993.379288,hint,nbiot,180 +on9,0,0,25,1,0,2494,4549.900000,149,4,60764.010320,2308.103292,hint,nbiot,180 +on5,0,0,24,1,0,720,4320.620320,149,0,15196.010320,1754.254836,hint,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,hint,nbiot,180 +on11,0,0,25,1,0,2675,4503.620640,149,1,54144.620640,2255.363380,hint,nbiot,180 +on1,0,0,25,1,0,1013,4501.200000,150,1,21518.010320,1916.446292,hint,nbiot,180 +on10,0,0,25,1,0,1080,4503.610320,150,1,21990.620640,2037.609252,hint,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,24,1,0,19,4320.989680,150,0,729.010320,1754.402580,hint,nbiot,180 +on2,0,0,24,1,0,467,4323.989360,150,0,9462.010320,1871.979076,hint,nbiot,180 +on6,0,0,26,1,0,899,4683.979360,150,2,17897.030960,2056.449536,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,150,0,-1.000000,2027.824408,hint,nbiot,180 +on8,0,0,24,1,0,3134,4320.000000,150,0,62897.010320,1754.006708,hint,nbiot,180 +on12,0,0,27,1,0,668,4862.200000,150,3,21559.630960,2401.959792,hint,nbiot,180 +on11,0,0,24,1,0,1611,4320.000000,150,0,35331.010320,1767.656708,hint,nbiot,180 +on3,0,0,24,1,0,661,4322.000000,150,0,12067.010320,1881.803292,hint,nbiot,180 +on9,0,0,25,1,0,838,4502.300000,150,1,17857.010320,2057.533500,hint,nbiot,180 +on4,0,0,26,1,0,428,4683.330960,150,3,12108.630960,2138.812300,hint,nbiot,180 +on7,0,0,25,1,0,623,4623.179040,151,2,14267.030960,2003.971200,hint,nbiot,180 +on8,0,0,26,1,0,807,4682.490000,151,2,16832.010320,2196.689084,hint,nbiot,180 +on11,0,0,25,1,0,1192,4501.020320,151,1,26744.010320,1916.758128,hint,nbiot,180 +on6,0,0,24,1,0,67,4323.651600,151,0,2463.010320,1987.134056,hint,nbiot,180 +on3,0,0,25,1,0,655,4501.190000,151,1,14227.010320,1916.832500,hint,nbiot,180 +on5,0,0,27,1,0,623,4864.530640,151,6,14307.651600,2300.516632,hint,nbiot,180 +on2,0,0,24,1,0,1208,4321.000000,151,0,23350.010320,1762.200000,hint,nbiot,180 +on10,0,0,25,1,0,168,4503.999680,151,1,4061.010320,1957.236496,hint,nbiot,180 +on9,0,0,26,1,0,1237,4682.600000,151,2,30244.010320,2281.356584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,151,0,-1.000000,2065.510992,hint,nbiot,180 +on12,0,0,25,1,0,1013,4501.041280,151,1,21193.010320,1917.429720,hint,nbiot,180 +on1,0,0,25,1,0,1231,4501.000000,151,1,26784.030960,2032.443084,hint,nbiot,180 +on4,0,0,25,1,0,294,4502.000000,151,1,7415.010320,1962.851292,hint,nbiot,180 +on1,0,0,24,1,0,87,4321.959040,152,0,3120.010320,1754.803532,hint,nbiot,180 +on9,0,0,24,1,0,669,4322.989680,152,0,11855.010320,1868.302580,hint,nbiot,180 +on8,0,0,24,1,0,32,4351.320640,152,2,5534.010320,1976.354964,hint,nbiot,180 +on12,0,0,26,1,0,693,4685.000000,152,2,11896.041280,2315.342876,hint,nbiot,180 +on11,0,0,26,1,0,492,4682.361920,152,2,8332.030960,2134.251060,hint,nbiot,180 +on10,0,0,28,1,0,822,5042.820320,152,4,15794.630960,2458.029420,hint,nbiot,180 +on7,0,0,25,1,0,476,4505.279360,152,1,8292.010320,2059.531660,hint,nbiot,180 +on2,0,0,26,1,0,463,4686.300000,152,3,8372.651600,2397.964376,hint,nbiot,180 +on5,0,0,25,1,0,397,4503.672240,152,1,8412.672240,2024.418896,hint,nbiot,180 +on3,0,0,26,1,0,534,4687.569040,152,2,15753.010320,2374.077284,hint,nbiot,180 +on4,0,0,24,1,0,180,4321.020640,152,0,5591.010320,1754.428380,hint,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,152,0,-1.000000,2017.511612,hint,nbiot,180 +on1,0,0,25,1,0,1800,4502.979360,153,1,36666.020320,1913.921660,hint,nbiot,180 +on10,0,0,25,1,0,1800,4502.020640,153,1,36744.020640,1960.064964,hint,nbiot,180 +on8,0,0,24,1,0,297,4321.010320,153,0,7261.010320,1869.720836,hint,nbiot,180 +on9,0,0,25,1,0,2366,4502.289680,153,1,47666.010320,2008.272580,hint,nbiot,180 +on11,0,0,23,1,0,1396,4278.979360,153,0,30283.010320,1852.265160,hint,nbiot,180 +on7,0,0,25,1,0,1666,4502.000000,153,1,34189.010320,2038.726416,hint,nbiot,180 +on4,0,0,25,1,0,675,4504.989360,153,1,13683.010320,1998.335784,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,153,0,-1.000000,2061.008156,hint,nbiot,180 +on6,0,0,25,1,0,2210,4501.300000,153,1,45694.010320,2002.670000,hint,nbiot,180 +on2,0,0,24,1,0,1778,4404.200000,153,1,36613.410320,2208.445124,hint,nbiot,180 +on5,0,0,24,1,0,996,4321.989680,153,0,20953.010320,1885.452580,hint,nbiot,180 +on12,0,0,24,1,0,3361,4322.000000,153,0,66959.010320,1883.500000,hint,nbiot,180 +on3,0,0,25,1,0,1980,4504.000000,153,1,40265.620640,2135.108292,hint,nbiot,180 +on9,0,0,24,1,0,540,4323.979360,154,0,13463.010320,1849.478368,hint,nbiot,180 +on5,0,0,24,1,0,1401,4325.010320,154,0,29065.010320,2302.667544,hint,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,hint,nbiot,180 +on12,0,0,25,1,0,1241,4502.310320,154,1,28763.010320,2211.340628,hint,nbiot,180 +on2,0,0,26,1,0,1105,4836.900000,154,3,23507.630960,2435.643292,hint,nbiot,180 +on11,0,0,27,1,0,1045,4863.589680,154,3,23466.010320,2332.438956,hint,nbiot,180 +on3,0,0,24,1,0,667,4322.989680,154,0,13391.010320,1913.412580,hint,nbiot,180 +on4,0,0,26,1,0,830,4682.989680,154,3,17990.651600,2062.625788,hint,nbiot,180 +on7,0,0,24,1,0,635,4393.958720,154,2,17910.010320,2054.841904,hint,nbiot,180 +on8,0,0,25,1,0,1024,4503.289680,154,1,20281.020640,1996.842788,hint,nbiot,180 +on1,0,0,28,1,0,1288,5043.599680,154,4,28804.630960,2417.534580,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,154,0,-1.000000,2080.541488,hint,nbiot,180 +on6,0,0,26,1,0,842,4683.958720,154,2,17950.030960,2188.189780,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,155,0,-1.000000,2046.647784,hint,nbiot,180 +on10,0,0,24,1,0,471,4321.000000,155,0,7537.010320,1772.600000,hint,nbiot,180 +on2,0,0,25,1,0,1193,4501.010320,155,1,24246.010320,1942.760836,hint,nbiot,180 +on3,0,0,27,1,0,599,4863.300000,155,3,14137.030960,2333.609668,hint,nbiot,180 +on6,0,0,26,1,0,311,4684.041280,155,2,7577.030960,2335.447804,hint,nbiot,180 +on1,0,0,25,1,0,874,4501.000000,155,1,17783.010320,1916.366500,hint,nbiot,180 +on9,0,0,24,1,0,1669,4322.000000,155,0,33247.010320,1838.650000,hint,nbiot,180 +on12,0,0,24,1,0,912,4321.000000,155,0,19009.010320,1837.600000,hint,nbiot,180 +on7,0,0,24,1,0,900,4321.000000,155,0,19073.010320,1845.400000,hint,nbiot,180 +on5,0,0,24,1,0,533,4482.210000,155,1,14097.010320,2126.347208,hint,nbiot,180 +on4,0,0,25,1,0,882,4501.989680,155,1,17823.030960,1891.795664,hint,nbiot,180 +on11,0,0,26,1,0,735,4698.300000,155,4,17863.651600,2089.484916,hint,nbiot,180 +on8,0,0,24,1,0,180,4452.041280,155,1,5031.620640,1995.798344,hint,nbiot,180 +on11,0,0,28,1,0,1003,5042.500000,156,5,22490.010320,2521.314876,hint,nbiot,180 +on1,0,0,29,1,0,796,5223.130640,156,5,19618.630960,2599.053340,hint,nbiot,180 +on7,0,0,24,1,0,194,4322.020320,156,0,6037.010320,1870.138044,hint,nbiot,180 +on9,0,0,25,1,0,860,4501.000000,156,1,16868.010320,1916.756500,hint,nbiot,180 +on12,0,0,26,1,0,530,4684.000000,156,2,9746.030960,2225.263000,hint,nbiot,180 +on3,0,0,25,1,0,1790,4501.000000,156,1,35576.010320,1917.406500,hint,nbiot,180 +on4,0,0,24,1,0,1,4321.000000,156,0,3330.010320,1869.463208,hint,nbiot,180 +on10,0,0,25,1,0,540,4501.061920,156,1,14369.020640,1942.788184,hint,nbiot,180 +on8,0,0,25,1,0,671,4503.000000,156,1,14322.010320,2080.323208,hint,nbiot,180 +on5,0,0,26,1,0,154,4683.600000,156,4,9706.010320,2320.639584,hint,nbiot,180 +on2,0,0,26,1,0,873,4681.300000,156,3,19577.010320,2078.829376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,156,0,-1.000000,2040.201240,hint,nbiot,180 +on6,0,0,26,1,0,398,4682.300000,156,3,9786.651600,2192.336708,hint,nbiot,180 +on2,0,0,24,1,0,1620,4361.051600,157,1,34635.020320,1791.253972,hint,nbiot,180 +on11,0,0,25,1,0,1656,4501.000000,157,1,34564.010320,1880.356708,hint,nbiot,180 +on12,0,0,25,1,0,2813,4501.210000,157,1,56139.010320,1917.490500,hint,nbiot,180 +on1,0,0,24,1,0,407,4321.989680,157,0,8382.010320,1758.065996,hint,nbiot,180 +on6,0,0,25,1,0,1080,4504.610320,157,1,24223.620640,2144.219252,hint,nbiot,180 +on8,0,0,26,1,0,2013,4683.240640,157,2,38940.030960,2050.752548,hint,nbiot,180 +on5,0,0,24,1,0,540,4320.010320,157,0,11829.010320,1754.010836,hint,nbiot,180 +on7,0,0,24,1,0,180,4322.010320,157,0,5186.010320,1866.617544,hint,nbiot,180 +on9,0,0,25,1,0,1977,4501.020000,157,1,38900.010320,1917.616000,hint,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,hint,nbiot,180 +on10,0,0,26,1,0,1775,4683.600000,157,2,41509.010320,2317.389792,hint,nbiot,180 +on4,0,0,24,1,0,1556,4321.989680,157,0,31933.010320,1754.822704,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,157,0,-1.000000,2024.841116,hint,nbiot,180 +on10,0,0,25,1,0,1620,4503.359040,158,1,32625.620640,2140.461824,hint,nbiot,180 +on5,0,0,25,1,0,1467,4528.989680,158,2,26505.630960,1837.622288,hint,nbiot,180 +on3,0,0,26,1,0,1130,4682.000000,158,3,21425.651280,2048.722916,hint,nbiot,180 +on12,0,0,24,1,0,2259,4320.010320,158,0,43374.010320,1754.010836,hint,nbiot,180 +on11,0,0,25,1,0,2071,4501.010000,158,1,42270.010320,2034.410500,hint,nbiot,180 +on4,0,0,26,1,0,1089,4682.240640,158,2,21385.030640,2081.169464,hint,nbiot,180 +on8,0,0,24,1,0,1244,4321.000000,158,0,26464.010320,1960.059792,hint,nbiot,180 +on2,0,0,26,1,0,1955,4681.030960,158,2,39655.630960,2014.795508,hint,nbiot,180 +on6,0,0,24,1,0,2520,4321.000000,158,0,50746.010320,1845.400000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,158,0,-1.000000,2118.154284,hint,nbiot,180 +on9,0,0,24,1,0,688,4321.010320,158,0,17497.010320,1987.104336,hint,nbiot,180 +on7,0,0,24,1,0,566,4322.000000,158,0,13377.010320,1869.850000,hint,nbiot,180 +on1,0,0,25,1,0,1621,4502.600000,158,2,39614.010320,2265.256376,hint,nbiot,180 +on2,0,0,24,1,0,180,4323.959040,159,0,5607.010320,1859.473532,hint,nbiot,180 +on10,0,0,26,1,0,597,4682.968720,159,3,9107.051280,2068.148696,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,159,0,-1.000000,2047.317700,hint,nbiot,180 +on6,0,0,26,1,0,223,4683.920640,159,3,11791.010320,2440.361548,hint,nbiot,180 +on8,0,0,25,1,0,1734,4501.000000,159,1,36012.010320,1917.406500,hint,nbiot,180 +on7,0,0,25,1,0,422,4502.041280,159,1,9066.430640,1983.460012,hint,nbiot,180 +on12,0,0,24,1,0,52,4322.948400,159,0,3361.010320,1764.299484,hint,nbiot,180 +on9,0,0,25,1,0,2084,4501.000000,159,1,42185.010320,2034.406500,hint,nbiot,180 +on1,0,0,24,1,0,395,4321.000000,159,0,8986.010320,1822.000000,hint,nbiot,180 +on5,0,0,26,1,0,594,4843.600000,159,3,11831.030960,2619.796168,hint,nbiot,180 +on11,0,0,25,1,0,513,4501.000000,159,1,9026.030960,1891.140000,hint,nbiot,180 +on3,0,0,25,1,0,1440,4503.620640,159,1,30888.620640,2001.453256,hint,nbiot,180 +on4,0,0,25,1,0,1609,4512.600000,159,2,39097.010320,2204.146500,hint,nbiot,180 +on9,0,0,26,1,0,1956,4820.900000,160,3,45811.010320,2574.459792,hint,nbiot,180 +on2,0,0,24,1,0,611,4324.010320,160,1,11375.010320,1965.047128,hint,nbiot,180 +on11,0,0,27,1,0,1186,5033.620640,160,4,25050.041280,2406.048048,hint,nbiot,180 +on6,0,0,24,1,0,10,4322.000000,160,0,347.010320,1957.229916,hint,nbiot,180 +on10,0,0,27,1,0,555,4862.392880,160,3,11416.630960,2193.940276,hint,nbiot,180 +on12,0,0,27,1,0,987,5003.500000,160,5,27267.010320,2672.829460,hint,nbiot,180 +on8,0,0,24,1,0,900,4320.010320,160,0,20481.010320,1754.010836,hint,nbiot,180 +on5,0,0,24,1,0,250,4323.989680,160,0,4452.010320,1965.798956,hint,nbiot,180 +on4,0,0,26,1,0,41,4682.341280,160,3,4493.630960,2046.369720,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,160,0,-1.000000,2040.234780,hint,nbiot,180 +on3,0,0,24,1,0,831,4321.000000,160,0,17943.010320,1772.600000,hint,nbiot,180 +on1,0,0,29,1,0,894,5357.389680,160,6,25009.010320,3165.723748,hint,nbiot,180 +on7,0,0,25,1,0,406,4502.210000,160,1,10683.010320,2026.628584,hint,nbiot,180 +on11,0,0,25,1,0,540,4503.979680,161,1,12422.020320,1943.331912,hint,nbiot,180 +on2,0,0,24,1,0,1303,4320.010320,161,0,26144.010320,1871.010836,hint,nbiot,180 +on8,0,0,24,1,0,360,4322.989680,161,0,7484.010320,1890.402580,hint,nbiot,180 +on7,0,0,25,1,0,1906,4502.320640,161,1,39086.010320,2107.741672,hint,nbiot,180 +on6,0,0,24,1,0,4066,4321.000000,161,0,79723.010320,1777.150000,hint,nbiot,180 +on5,0,0,24,1,0,727,4322.979360,161,0,17417.010320,1841.655160,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,161,0,-1.000000,2069.410992,hint,nbiot,180 +on9,0,0,24,1,0,1011,4320.010320,161,0,18407.010320,1754.010836,hint,nbiot,180 +on1,0,0,24,1,0,600,4325.000000,161,0,12366.010320,2010.820124,hint,nbiot,180 +on12,0,0,24,1,0,3,4321.010320,161,0,2015.010320,1818.767544,hint,nbiot,180 +on4,0,0,23,1,0,0,4192.010320,161,0,2072.010320,1702.810836,hint,nbiot,180 +on3,0,0,25,1,0,1750,4502.300000,161,1,33823.010320,2066.770000,hint,nbiot,180 +on10,0,0,24,1,0,1440,4322.000000,161,0,29864.010320,1870.513416,hint,nbiot,180 +on1,0,0,24,1,0,663,4353.000000,162,2,14798.010320,1928.653292,hint,nbiot,180 +on12,0,0,25,1,0,372,4502.630960,162,1,8736.630960,2014.512176,hint,nbiot,180 +on5,0,0,24,1,0,83,4321.000000,162,0,498.010320,1838.913416,hint,nbiot,180 +on8,0,0,25,1,0,1946,4501.000000,162,1,38915.010320,1917.406500,hint,nbiot,180 +on7,0,0,26,1,0,1519,4682.300000,162,3,31408.010320,2285.670000,hint,nbiot,180 +on3,0,0,25,1,0,1371,4501.269360,162,1,28771.010320,1831.077452,hint,nbiot,180 +on4,0,0,25,1,0,1440,4503.979680,162,1,31449.020320,2130.778496,hint,nbiot,180 +on2,0,0,24,1,0,273,4320.969360,162,0,4244.010320,1754.400952,hint,nbiot,180 +on6,0,0,25,1,0,541,4502.020640,162,1,11278.610320,2033.124964,hint,nbiot,180 +on9,0,0,26,1,0,435,4681.610320,162,3,11176.010320,2130.297420,hint,nbiot,180 +on11,0,0,24,1,0,436,4324.000000,162,0,8695.010320,2026.793208,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,162,0,-1.000000,2069.274284,hint,nbiot,180 +on10,0,0,24,1,0,180,4321.010320,162,0,4380.010320,1792.767544,hint,nbiot,180 +on1,0,0,24,1,0,2743,4322.000000,163,0,54980.010320,1934.200000,hint,nbiot,180 +on8,0,0,26,1,0,607,4825.600000,163,3,15517.630960,2650.686168,hint,nbiot,180 +on2,0,0,24,1,0,205,4323.989680,163,0,7258.010320,1963.992580,hint,nbiot,180 +on4,0,0,26,1,0,573,4683.630960,163,2,15476.010320,2313.645384,hint,nbiot,180 +on3,0,0,26,1,0,270,4682.041280,163,2,6253.030960,2145.107804,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,163,0,-1.000000,2040.214656,hint,nbiot,180 +on11,0,0,27,1,0,374,4862.341280,163,3,7298.030960,2141.866180,hint,nbiot,180 +on5,0,0,24,1,0,484,4383.180000,163,1,14158.010320,1933.536708,hint,nbiot,180 +on9,0,0,26,1,0,241,4685.459040,163,3,6293.651600,2274.870448,hint,nbiot,180 +on12,0,0,25,1,0,648,4501.010320,163,1,14198.030960,1891.403920,hint,nbiot,180 +on10,0,0,25,1,0,93,4501.610320,163,1,6213.010320,2056.295836,hint,nbiot,180 +on6,0,0,27,1,0,747,4867.889680,163,3,19109.010320,2780.969164,hint,nbiot,180 +on7,0,0,24,1,0,0,4321.000000,163,0,122.010320,1793.926708,hint,nbiot,180 +on1,0,0,24,1,0,219,4323.030960,164,0,4401.010320,1936.185592,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,164,0,-1.000000,2076.928320,hint,nbiot,180 +on11,0,0,26,1,0,1071,4684.989680,164,2,19573.030960,2213.952164,hint,nbiot,180 +on9,0,0,24,1,0,360,4323.010320,164,0,8215.010320,1946.967544,hint,nbiot,180 +on2,0,0,26,1,0,724,4683.600000,164,3,19533.010320,2378.086584,hint,nbiot,180 +on8,0,0,27,1,0,479,4864.559040,164,3,11325.010320,2389.013324,hint,nbiot,180 +on6,0,0,25,1,0,1292,4503.000000,164,1,26701.010320,2016.161708,hint,nbiot,180 +on3,0,0,25,1,0,3101,4501.300000,164,1,63477.010320,2007.870000,hint,nbiot,180 +on10,0,0,26,1,0,900,4684.030960,164,2,17888.030960,2067.845592,hint,nbiot,180 +on5,0,0,26,1,0,335,4683.979360,164,2,4442.630960,2193.619660,hint,nbiot,180 +on7,0,0,24,1,0,0,4323.010320,164,0,2626.010320,1976.477544,hint,nbiot,180 +on4,0,0,25,1,0,1004,4506.610320,164,1,24733.010320,2437.194252,hint,nbiot,180 +on12,0,0,24,1,0,657,4324.010320,164,1,17848.010320,1962.577336,hint,nbiot,180 +on3,0,0,27,1,0,1321,5017.420000,165,4,31297.030960,2595.177544,hint,nbiot,180 +on9,0,0,27,1,0,2164,5002.900000,165,5,48092.010320,2508.153084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,165,0,-1.000000,2073.227948,hint,nbiot,180 +on1,0,0,29,1,0,1638,5224.290000,165,6,38779.010320,2864.300252,hint,nbiot,180 +on12,0,0,26,1,0,1194,4683.300000,165,2,25584.010320,2265.536500,hint,nbiot,180 +on10,0,0,24,1,0,83,4322.958720,165,0,1287.010320,1807.820072,hint,nbiot,180 +on7,0,0,25,1,0,1240,4501.000000,165,1,23558.020640,1916.086376,hint,nbiot,180 +on2,0,0,25,1,0,1351,4503.300000,165,1,31257.010320,2049.366708,hint,nbiot,180 +on8,0,0,25,1,0,811,4502.210000,165,1,19909.010320,2056.795500,hint,nbiot,180 +on4,0,0,28,1,0,1490,5042.851280,165,5,31337.051600,2405.853096,hint,nbiot,180 +on6,0,0,26,1,0,1100,4683.190000,165,2,19949.030960,2169.922168,hint,nbiot,180 +on11,0,0,25,1,0,1435,4538.889680,165,2,34828.010320,2078.169080,hint,nbiot,180 +on5,0,0,26,1,0,1011,4680.061920,165,3,19989.651600,1901.457600,hint,nbiot,180 +on2,0,0,26,1,0,993,4686.341280,166,2,21437.030960,2331.551304,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,166,0,-1.000000,2080.104532,hint,nbiot,180 +on11,0,0,25,1,0,1164,4503.310320,166,1,26886.010320,2192.890836,hint,nbiot,180 +on1,0,0,25,1,0,1044,4529.899680,166,2,22028.030960,2098.616372,hint,nbiot,180 +on3,0,0,25,1,0,3106,4502.000000,166,1,63598.010320,2034.156500,hint,nbiot,180 +on9,0,0,24,1,0,489,4321.010320,166,0,7607.010320,1870.760836,hint,nbiot,180 +on6,0,0,26,1,0,1077,4682.000000,166,3,21477.651600,2100.274624,hint,nbiot,180 +on12,0,0,26,1,0,1034,4683.509680,166,2,21988.010320,2254.953664,hint,nbiot,180 +on7,0,0,24,1,0,763,4324.000000,166,0,16322.010320,2117.259792,hint,nbiot,180 +on10,0,0,24,1,0,1838,4323.979360,166,0,39062.010320,1862.218576,hint,nbiot,180 +on8,0,0,24,1,0,2595,4322.000000,166,0,53055.010320,1808.100000,hint,nbiot,180 +on4,0,0,24,1,0,912,4322.010320,166,0,21397.010320,1953.060836,hint,nbiot,180 +on5,0,0,24,1,0,279,4323.010320,166,0,5475.010320,1891.710836,hint,nbiot,180 +on3,0,0,23,1,0,2150,4311.000000,167,0,46016.010320,1841.400000,hint,nbiot,180 +on7,0,0,26,1,0,673,4684.589680,167,2,16430.010320,2222.235872,hint,nbiot,180 +on1,0,0,24,1,0,394,4323.000000,167,0,9899.010320,2039.256708,hint,nbiot,180 +on11,0,0,24,1,0,239,4321.030640,167,0,6721.010320,1865.835464,hint,nbiot,180 +on4,0,0,26,1,0,847,4743.761280,167,3,16470.030960,2101.169012,hint,nbiot,180 +on8,0,0,25,1,0,1141,4500.310320,167,1,24054.010320,1880.080836,hint,nbiot,180 +on10,0,0,26,1,0,498,4683.510000,167,4,9979.651600,2171.538460,hint,nbiot,180 +on5,0,0,25,1,0,834,4631.300000,167,3,16510.651600,2024.659916,hint,nbiot,180 +on9,0,0,26,1,0,514,4682.510000,167,2,12741.010320,2195.007084,hint,nbiot,180 +on12,0,0,26,1,0,879,4681.910000,167,2,20289.010320,2151.730584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,167,0,-1.000000,2040.187824,hint,nbiot,180 +on6,0,0,24,1,0,380,4485.261600,167,1,10019.672240,1820.118056,hint,nbiot,180 +on2,0,0,26,1,0,513,4683.820000,167,2,9939.030960,2125.707460,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,168,0,-1.000000,2096.547452,hint,nbiot,180 +on5,0,0,25,1,0,541,4502.300000,168,1,15056.010320,2085.229792,hint,nbiot,180 +on1,0,0,24,1,0,330,4323.979360,168,0,9150.010320,2214.751952,hint,nbiot,180 +on9,0,0,24,1,0,1195,4321.000000,168,0,25103.010320,1770.000000,hint,nbiot,180 +on6,0,0,25,1,0,360,4504.010320,168,1,9200.010320,2140.774128,hint,nbiot,180 +on2,0,0,24,1,0,180,4322.010320,168,0,7224.010320,1814.617544,hint,nbiot,180 +on8,0,0,25,1,0,455,4502.000000,168,2,11651.010320,1961.993292,hint,nbiot,180 +on7,0,0,26,1,0,874,4683.000000,168,2,15097.630960,2094.466292,hint,nbiot,180 +on4,0,0,24,1,0,477,4321.000000,168,0,9090.010320,1769.350000,hint,nbiot,180 +on12,0,0,27,1,0,1157,4861.900000,168,3,28803.010320,2342.974752,hint,nbiot,180 +on11,0,0,25,1,0,1053,4502.000000,168,1,21530.010320,1975.468000,hint,nbiot,180 +on10,0,0,26,1,0,1250,4682.190000,168,2,25143.030960,2043.175584,hint,nbiot,180 +on3,0,0,25,1,0,1052,4613.341280,168,2,21570.030960,1938.292804,hint,nbiot,180 +on4,0,0,25,1,0,1063,4504.300000,169,1,22111.010320,2193.683208,hint,nbiot,180 +on1,0,0,24,1,0,2340,4321.000000,169,0,47002.010320,1807.706708,hint,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,hint,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,hint,nbiot,180 +on7,0,0,24,1,0,1476,4322.000000,169,0,31780.010320,1849.713416,hint,nbiot,180 +on5,0,0,24,1,0,565,4321.000000,169,0,14167.010320,1792.756708,hint,nbiot,180 +on6,0,0,25,1,0,540,4502.990000,169,1,14220.020320,2033.525916,hint,nbiot,180 +on11,0,0,24,1,0,739,4321.989680,169,0,17143.010320,1832.412372,hint,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,169,0,-1.000000,1991.397784,hint,nbiot,180 +on12,0,0,24,1,0,0,4320.020640,169,0,2710.010320,1754.021672,hint,nbiot,180 +on10,0,0,25,1,0,2631,4502.480000,169,1,55410.010320,1988.393708,hint,nbiot,180 +on9,0,0,26,1,0,938,4684.989680,169,2,17184.630960,2075.159120,hint,nbiot,180 +on3,0,0,24,1,0,1800,4320.010320,169,0,36909.010320,1754.010836,hint,nbiot,180 +on2,0,0,24,1,0,360,4321.958720,170,0,9897.010320,1880.500404,hint,nbiot,180 +on10,0,0,25,1,0,723,4503.000000,170,1,16164.030960,2122.279668,hint,nbiot,180 +on3,0,0,24,1,0,434,4320.000000,170,0,9780.010320,1754.006708,hint,nbiot,180 +on6,0,0,25,1,0,507,4501.169680,170,1,11097.030960,1900.769164,hint,nbiot,180 +on9,0,0,26,1,0,1220,4680.200000,170,4,25308.651600,2016.803124,hint,nbiot,180 +on5,0,0,24,1,0,689,4435.000000,170,1,16124.010320,1965.308000,hint,nbiot,180 +on4,0,0,24,1,0,620,4321.000000,170,1,11057.010320,1784.508000,hint,nbiot,180 +on1,0,0,26,1,0,733,4682.041280,170,3,16204.651600,2111.666344,hint,nbiot,180 +on11,0,0,27,1,0,1113,4861.610000,170,3,25268.030960,2222.186876,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,170,0,-1.000000,2063.540868,hint,nbiot,180 +on7,0,0,25,1,0,1076,4502.600000,170,1,25228.010320,2153.340000,hint,nbiot,180 +on12,0,0,29,1,0,978,5223.010000,170,5,27630.010320,2801.771752,hint,nbiot,180 +on8,0,0,25,1,0,1013,4502.300000,170,1,20539.010320,1918.830000,hint,nbiot,180 +on6,0,0,26,1,0,203,4686.168400,171,3,5533.051600,2388.876736,hint,nbiot,180 +on4,0,0,25,1,0,204,4501.050000,171,1,5452.030960,1958.837792,hint,nbiot,180 +on7,0,0,28,1,0,823,5042.200000,171,5,19912.010320,2520.609668,hint,nbiot,180 +on8,0,0,24,1,0,0,4320.958720,171,0,918.010320,1754.403404,hint,nbiot,180 +on2,0,0,26,1,0,456,4835.550000,171,4,16167.010320,2582.906168,hint,nbiot,180 +on10,0,0,25,1,0,414,4502.300000,171,1,10388.030960,2081.043584,hint,nbiot,180 +on1,0,0,28,1,0,613,5042.430640,171,4,16208.630960,2574.035256,hint,nbiot,180 +on11,0,0,24,1,0,220,4321.010320,171,1,5412.010320,1802.510836,hint,nbiot,180 +on9,0,0,26,1,0,601,4681.300000,171,2,13244.010320,2081.124292,hint,nbiot,180 +on5,0,0,25,1,0,1260,4501.000000,171,1,25383.020320,1917.400000,hint,nbiot,180 +on3,0,0,26,1,0,291,4684.168080,171,2,5492.430960,2037.350232,hint,nbiot,180 +on12,0,0,25,1,0,158,4667.900000,171,2,10348.010320,2395.584000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,171,0,-1.000000,2040.174408,hint,nbiot,180 +on4,0,0,25,1,0,3354,4501.000000,172,1,67113.010320,1917.406500,hint,nbiot,180 +on2,0,0,24,1,0,1425,4322.210000,172,1,29831.010320,1928.440500,hint,nbiot,180 +on9,0,0,24,1,0,745,4323.989680,172,0,17575.010320,1938.519288,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,172,0,-1.000000,2040.194532,hint,nbiot,180 +on1,0,0,26,1,0,708,4681.510640,172,2,17615.030960,2079.960548,hint,nbiot,180 +on11,0,0,24,1,0,1326,4320.020640,172,0,28150.010320,1754.021672,hint,nbiot,180 +on10,0,0,25,1,0,226,4503.948720,172,1,6750.010320,2018.972612,hint,nbiot,180 +on6,0,0,26,1,0,522,4681.361920,172,2,13206.630960,2021.421392,hint,nbiot,180 +on8,0,0,24,1,0,0,4323.010320,172,0,585.010320,2000.137544,hint,nbiot,180 +on7,0,0,25,1,0,361,4503.389680,172,1,8168.610320,2032.769288,hint,nbiot,180 +on5,0,0,25,1,0,738,4503.289680,172,1,19580.010320,2139.965872,hint,nbiot,180 +on3,0,0,25,1,0,180,4502.300000,172,2,8068.010320,2068.193292,hint,nbiot,180 +on12,0,0,25,1,0,473,4505.199680,172,1,13165.010320,2209.506372,hint,nbiot,180 +on2,0,0,24,1,0,1980,4322.000000,173,0,42618.010320,1906.510000,hint,nbiot,180 +on10,0,0,24,1,0,992,4320.989680,173,1,19542.010320,1754.409080,hint,nbiot,180 +on7,0,0,25,1,0,672,4503.310320,173,1,14023.010320,1988.810544,hint,nbiot,180 +on8,0,0,26,1,0,37,4681.720640,173,3,4495.620640,2130.166672,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,173,0,-1.000000,2083.088032,hint,nbiot,180 +on5,0,0,25,1,0,2273,4501.210000,173,1,44871.010320,1917.490500,hint,nbiot,180 +on1,0,0,24,1,0,259,4372.300000,173,1,10297.010320,2072.093500,hint,nbiot,180 +on3,0,0,24,1,0,1440,4321.000000,173,0,29566.010320,1835.656708,hint,nbiot,180 +on9,0,0,25,1,0,2976,4501.490000,173,1,62644.010320,2052.991000,hint,nbiot,180 +on6,0,0,24,1,0,19,4322.989360,173,0,1960.010320,1893.022160,hint,nbiot,180 +on11,0,0,25,1,0,1620,4502.020320,173,1,33565.020320,2059.521336,hint,nbiot,180 +on4,0,0,26,1,0,366,4686.351280,173,2,10337.030960,2414.047012,hint,nbiot,180 +on12,0,0,26,1,0,598,4683.289680,173,2,14064.630960,2174.753788,hint,nbiot,180 +on11,0,0,25,1,0,406,4507.020640,174,1,9398.010320,2367.938172,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,174,0,-1.000000,2035.048196,hint,nbiot,180 +on5,0,0,27,1,0,913,4864.530640,174,4,18552.030960,2414.461632,hint,nbiot,180 +on3,0,0,24,1,0,845,4321.989680,174,0,17395.010320,1763.902580,hint,nbiot,180 +on1,0,0,23,1,0,180,4302.051600,174,0,5810.010320,1750.350764,hint,nbiot,180 +on4,0,0,25,1,0,705,4502.989680,174,1,12707.010320,1958.132288,hint,nbiot,180 +on7,0,0,25,1,0,560,4503.030960,174,2,12820.620640,2053.244216,hint,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,hint,nbiot,180 +on8,0,0,26,1,0,875,4682.300000,174,2,18512.010320,2079.633208,hint,nbiot,180 +on6,0,0,24,1,0,3828,4320.010320,174,0,76615.010320,1754.010836,hint,nbiot,180 +on9,0,0,24,1,0,1524,4396.300000,174,1,31740.010320,2065.983416,hint,nbiot,180 +on10,0,0,24,1,0,360,4322.030960,174,0,9464.010320,1970.885800,hint,nbiot,180 +on12,0,0,27,1,0,929,4866.569040,174,5,22182.010320,2525.790824,hint,nbiot,180 +on10,0,0,27,1,0,848,4864.720000,175,3,17843.430640,2424.859376,hint,nbiot,180 +on12,0,0,26,1,0,749,4681.948720,175,3,17884.051280,2015.545904,hint,nbiot,180 +on4,0,0,24,1,0,696,4388.000000,175,1,17763.010320,2031.658000,hint,nbiot,180 +on9,0,0,26,1,0,333,4683.300000,175,2,7923.010320,2311.933292,hint,nbiot,180 +on7,0,0,25,1,0,51,4501.051920,175,1,2047.620640,1845.355892,hint,nbiot,180 +on1,0,0,25,1,0,693,4502.000000,175,1,13817.030960,2008.143084,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,175,0,-1.000000,2060.297576,hint,nbiot,180 +on5,0,0,25,1,0,642,4502.380000,175,1,13777.010320,2033.853500,hint,nbiot,180 +on11,0,0,26,1,0,807,4681.600000,175,2,17803.030960,2095.193292,hint,nbiot,180 +on3,0,0,27,1,0,866,4862.810000,175,3,18599.010320,2360.668584,hint,nbiot,180 +on6,0,0,27,1,0,1027,4861.300000,175,3,18639.030960,2125.212876,hint,nbiot,180 +on2,0,0,26,1,0,239,4683.269040,175,2,7205.030960,2177.123908,hint,nbiot,180 +on8,0,0,24,1,0,302,4322.041280,175,0,7165.010320,1869.866512,hint,nbiot,180 +on3,0,0,26,1,0,1519,4685.300000,176,2,31332.030960,2290.769792,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,176,0,-1.000000,2034.981116,hint,nbiot,180 +on11,0,0,25,1,0,1260,4502.041280,176,1,28785.620640,1972.241636,hint,nbiot,180 +on10,0,0,25,1,0,1775,4503.199680,176,1,35622.010320,1971.859580,hint,nbiot,180 +on7,0,0,27,1,0,1747,4862.310320,176,3,35663.630960,2178.294044,hint,nbiot,180 +on8,0,0,24,1,0,906,4322.030640,176,1,20620.020320,1974.402172,hint,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,hint,nbiot,180 +on5,0,0,25,1,0,1205,4500.010320,176,1,24194.010320,1943.017336,hint,nbiot,180 +on12,0,0,24,1,0,4008,4321.000000,176,0,81960.010320,1814.200000,hint,nbiot,180 +on4,0,0,25,1,0,2605,4501.310320,176,1,51883.010320,2000.087544,hint,nbiot,180 +on9,0,0,24,1,0,770,4321.000000,176,0,17814.010320,1805.366708,hint,nbiot,180 +on6,0,0,24,1,0,1541,4323.000000,176,0,31292.010320,1901.066708,hint,nbiot,180 +on2,0,0,24,1,0,540,4321.000000,176,0,12012.010320,1754.413416,hint,nbiot,180 +on12,0,0,25,1,0,3240,4501.000000,177,1,67370.620640,1917.205000,hint,nbiot,180 +on6,0,0,26,1,0,1347,4682.000000,177,2,26012.630960,2103.576416,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,177,0,-1.000000,2040.234780,hint,nbiot,180 +on5,0,0,25,1,0,833,4501.240640,177,1,17508.010320,1916.462548,hint,nbiot,180 +on9,0,0,25,1,0,1440,4504.000000,177,1,30772.020320,2125.306708,hint,nbiot,180 +on11,0,0,25,1,0,720,4503.010320,177,1,17630.620640,2124.319128,hint,nbiot,180 +on1,0,0,24,1,0,360,4323.040960,177,0,7993.010320,1997.289800,hint,nbiot,180 +on4,0,0,27,1,0,900,4864.269680,177,4,17549.630960,2179.942496,hint,nbiot,180 +on3,0,0,23,1,0,547,4254.989680,177,0,14426.010320,1978.519288,hint,nbiot,180 +on10,0,0,26,1,0,873,4684.279360,177,2,18245.010320,2177.918244,hint,nbiot,180 +on7,0,0,25,1,0,1436,4502.000000,177,1,25971.010320,2033.116292,hint,nbiot,180 +on8,0,0,24,1,0,230,4322.000000,177,0,6532.010320,1812.670124,hint,nbiot,180 +on2,0,0,24,1,0,97,4324.989680,177,0,163.010320,1964.002580,hint,nbiot,180 +on4,0,0,26,1,0,876,4682.300000,178,3,18318.010320,2174.071292,hint,nbiot,180 +on11,0,0,24,1,0,1747,4321.989680,178,0,36064.010320,1871.152580,hint,nbiot,180 +on5,0,0,26,1,0,1414,4683.190000,178,2,28780.630960,2158.639000,hint,nbiot,180 +on3,0,0,24,1,0,2558,4322.000000,178,0,52537.010320,1937.450000,hint,nbiot,180 +on8,0,0,25,1,0,180,4502.610320,178,1,5268.620640,1942.952752,hint,nbiot,180 +on10,0,0,25,1,0,686,4504.959040,178,1,13565.010320,2020.663324,hint,nbiot,180 +on1,0,0,27,1,0,787,4863.480000,178,4,14923.041280,2294.929916,hint,nbiot,180 +on12,0,0,25,1,0,1171,4502.510000,178,2,28739.010320,2165.068584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,178,0,-1.000000,2064.237824,hint,nbiot,180 +on6,0,0,25,1,0,1234,4502.959040,178,1,24019.010320,1881.160032,hint,nbiot,180 +on2,0,0,24,1,0,0,4321.000000,178,0,230.010320,1754.413416,hint,nbiot,180 +on9,0,0,25,1,0,1562,4503.010320,178,1,32418.010320,1994.267336,hint,nbiot,180 +on7,0,0,24,1,0,726,4321.969040,178,0,14883.020640,1841.887616,hint,nbiot,180 +on12,0,0,28,1,0,993,5042.410000,179,5,23933.010320,2415.380460,hint,nbiot,180 +on10,0,0,26,1,0,813,4685.889680,179,2,16525.030960,2343.882540,hint,nbiot,180 +on8,0,0,30,1,0,890,5404.340960,179,6,23973.030960,2934.111260,hint,nbiot,180 +on7,0,0,26,1,0,694,4681.600000,179,2,16485.010320,2092.976792,hint,nbiot,180 +on4,0,0,26,1,0,513,4683.300000,179,3,13837.010320,2295.169584,hint,nbiot,180 +on3,0,0,26,1,0,602,4682.300000,179,2,13877.030960,2167.063876,hint,nbiot,180 +on11,0,0,24,1,0,3060,4321.000000,179,0,64791.010320,1845.400000,hint,nbiot,180 +on5,0,0,25,1,0,180,4504.989680,179,1,6082.620640,2079.904412,hint,nbiot,180 +on6,0,0,25,1,0,528,4504.010320,179,1,10497.010320,2267.017336,hint,nbiot,180 +on2,0,0,26,1,0,717,4682.031280,179,2,13917.051600,1973.133928,hint,nbiot,180 +on1,0,0,29,1,0,1038,5224.730320,179,6,25351.010320,2864.086796,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,179,0,-1.000000,2040.248196,hint,nbiot,180 +on9,0,0,25,1,0,814,4503.289680,179,1,20266.010320,2053.659288,hint,nbiot,180 +on11,0,0,25,1,0,1440,4502.020640,180,1,31946.020640,2034.158256,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,180,0,-1.000000,2078.531116,hint,nbiot,180 +on12,0,0,27,1,0,1107,4863.799680,180,4,25254.630960,2275.777748,hint,nbiot,180 +on3,0,0,27,1,0,1723,4861.900000,180,4,38800.010320,2476.439876,hint,nbiot,180 +on5,0,0,26,1,0,1517,4683.300000,180,2,31885.030960,2248.726460,hint,nbiot,180 +on4,0,0,24,1,0,720,4321.358720,180,0,15242.010320,1756.760196,hint,nbiot,180 +on7,0,0,24,1,0,636,4320.010320,180,0,13562.010320,1754.010836,hint,nbiot,180 +on6,0,0,24,1,0,920,4321.051280,180,0,18760.010320,1813.597136,hint,nbiot,180 +on8,0,0,24,1,0,3459,4321.000000,180,0,70933.010320,1916.250000,hint,nbiot,180 +on1,0,0,24,1,0,1172,4321.989680,180,0,25213.010320,1784.962372,hint,nbiot,180 +on10,0,0,24,1,0,1518,4470.000000,180,1,31845.010320,1943.291500,hint,nbiot,180 +on9,0,0,25,1,0,1525,4611.600000,180,3,35228.010320,2140.396292,hint,nbiot,180 +on2,0,0,24,1,0,0,4322.072240,180,0,1863.010320,2011.872436,hint,nbiot,180 +on11,0,0,27,1,0,1387,4879.700000,181,4,34046.010320,2508.793292,hint,nbiot,180 +on9,0,0,24,1,0,586,4477.000000,181,1,13244.010320,1983.459792,hint,nbiot,180 +on1,0,0,25,1,0,728,4503.300000,181,1,16326.010320,2117.818416,hint,nbiot,180 +on10,0,0,25,1,0,137,4502.289680,181,2,7063.010320,2018.275664,hint,nbiot,180 +on3,0,0,26,1,0,373,4682.000000,181,2,7104.630960,2019.271208,hint,nbiot,180 +on8,0,0,24,1,0,979,4321.000000,181,0,20449.010320,1793.400000,hint,nbiot,180 +on6,0,0,24,1,0,14,4321.030640,181,0,1188.010320,1870.118964,hint,nbiot,180 +on5,0,0,25,1,0,1382,4501.000000,181,1,28250.010320,1917.406500,hint,nbiot,180 +on2,0,0,27,1,0,386,4864.130960,181,3,9556.630960,2239.745508,hint,nbiot,180 +on7,0,0,24,1,0,405,4322.000000,181,0,9515.010320,1931.216500,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,181,0,-1.000000,2060.604532,hint,nbiot,180 +on12,0,0,26,1,0,973,4684.000000,181,2,20489.030960,2327.748084,hint,nbiot,180 +on4,0,0,25,1,0,720,4505.020640,181,1,16388.020320,2152.001588,hint,nbiot,180 +on9,0,0,24,1,0,0,4321.010320,182,0,1464.010320,1866.730836,hint,nbiot,180 +on2,0,0,29,1,0,769,5224.020000,182,6,21457.030960,2733.275544,hint,nbiot,180 +on3,0,0,24,1,0,814,4323.000000,182,0,16513.010320,1924.843292,hint,nbiot,180 +on6,0,0,24,1,0,292,4322.000000,182,0,6892.010320,1785.869792,hint,nbiot,180 +on7,0,0,26,1,0,375,4681.600000,182,2,9943.030960,2170.969876,hint,nbiot,180 +on11,0,0,25,1,0,474,4501.000000,182,1,9903.010320,1917.608000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,182,0,-1.000000,2040.134160,hint,nbiot,180 +on8,0,0,24,1,0,574,4322.000000,182,0,11985.030960,1940.036584,hint,nbiot,180 +on12,0,0,26,1,0,808,4682.600000,182,2,21417.010320,2311.782876,hint,nbiot,180 +on1,0,0,27,1,0,691,4863.300000,182,3,12025.051600,2384.719584,hint,nbiot,180 +on4,0,0,25,1,0,533,4669.300000,182,2,11945.010320,2185.121292,hint,nbiot,180 +on5,0,0,26,1,0,297,4681.341280,182,2,6933.630960,1997.616428,hint,nbiot,180 +on10,0,0,27,1,0,688,4860.810000,182,3,16554.041280,2158.395416,hint,nbiot,180 +on10,0,0,24,1,0,419,4322.000000,183,0,9281.010320,1808.619792,hint,nbiot,180 +on1,0,0,26,1,0,694,4682.969040,183,2,14260.030960,2080.543908,hint,nbiot,180 +on12,0,0,27,1,0,1254,4861.300000,183,4,24382.630960,2152.331084,hint,nbiot,180 +on8,0,0,25,1,0,1401,4501.000000,183,1,27654.010320,1941.456500,hint,nbiot,180 +on4,0,0,25,1,0,631,4502.000000,183,1,14220.010320,1944.716500,hint,nbiot,180 +on3,0,0,24,1,0,920,4322.000000,183,0,19881.030960,1935.486584,hint,nbiot,180 +on7,0,0,27,1,0,1025,4862.790000,183,3,24341.010320,2301.568876,hint,nbiot,180 +on9,0,0,24,1,0,1022,4322.000000,183,0,19841.010320,1786.650000,hint,nbiot,180 +on11,0,0,27,1,0,992,4862.600000,183,3,19921.051600,2330.698000,hint,nbiot,180 +on6,0,0,25,1,0,221,4551.258720,183,3,9322.630960,2078.826696,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,183,0,-1.000000,2064.190868,hint,nbiot,180 +on5,0,0,25,1,0,690,4502.510000,183,1,16830.020640,2036.492084,hint,nbiot,180 +on2,0,0,24,1,0,180,4321.969360,183,0,5392.010320,1860.094244,hint,nbiot,180 +on12,0,0,25,1,0,1799,4501.000000,184,1,35986.010320,1917.406500,hint,nbiot,180 +on9,0,0,24,1,0,540,4322.010320,184,0,14439.010320,1947.724128,hint,nbiot,180 +on8,0,0,25,1,0,1119,4504.010000,184,1,22123.030960,2095.937000,hint,nbiot,180 +on7,0,0,25,1,0,1260,4500.061600,184,1,25317.020320,1826.044556,hint,nbiot,180 +on6,0,0,26,1,0,1593,4683.210000,184,2,30853.030960,2171.626876,hint,nbiot,180 +on2,0,0,26,1,0,1077,4683.000000,184,3,21661.651600,2040.673124,hint,nbiot,180 +on5,0,0,25,1,0,1427,4502.000000,184,1,30813.010320,2032.466500,hint,nbiot,180 +on10,0,0,24,1,0,1027,4321.000000,184,0,21581.010320,1762.200000,hint,nbiot,180 +on4,0,0,25,1,0,770,4502.269360,184,1,15261.010320,1901.540952,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,184,0,-1.000000,2040.160992,hint,nbiot,180 +on11,0,0,24,1,0,1800,4322.000000,184,0,38015.010320,1962.150000,hint,nbiot,180 +on3,0,0,26,1,0,1054,4682.041280,184,2,21621.030960,2061.531012,hint,nbiot,180 +on1,0,0,27,1,0,1027,4862.600000,184,4,22083.010320,2359.069876,hint,nbiot,180 +on7,0,0,25,1,0,873,4500.969040,185,1,17953.030960,1826.400824,hint,nbiot,180 +on2,0,0,28,1,0,1122,5044.110000,185,4,25035.630960,2536.011876,hint,nbiot,180 +on9,0,0,25,1,0,1261,4501.000000,185,1,27698.610320,1916.360000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,185,0,-1.000000,2040.187824,hint,nbiot,180 +on4,0,0,24,1,0,117,4321.000000,185,0,1801.010320,1766.113208,hint,nbiot,180 +on1,0,0,25,1,0,891,4605.500000,185,2,20782.010320,2216.794792,hint,nbiot,180 +on10,0,0,25,1,0,25,4503.558720,185,2,1886.630960,1934.122028,hint,nbiot,180 +on8,0,0,28,1,0,1147,5042.800000,185,5,27637.010320,2556.729668,hint,nbiot,180 +on5,0,0,25,1,0,176,4505.641280,185,1,4954.010320,2174.979720,hint,nbiot,180 +on3,0,0,25,1,0,6,4503.000000,185,2,1846.010320,2120.596584,hint,nbiot,180 +on11,0,0,25,1,0,875,4501.989680,185,1,17913.010320,1917.159080,hint,nbiot,180 +on12,0,0,24,1,0,540,4322.000000,185,0,13964.010320,1865.566708,hint,nbiot,180 +on6,0,0,27,1,0,1075,4861.900000,185,3,24994.010320,2311.469876,hint,nbiot,180 +on9,0,0,24,1,0,0,4321.000000,186,0,1979.010320,1767.666708,hint,nbiot,180 +on10,0,0,26,1,0,822,4682.300000,186,2,19300.010320,2195.579584,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,186,0,-1.000000,2040.140868,hint,nbiot,180 +on4,0,0,27,1,0,577,4861.780000,186,3,13583.030960,2218.244584,hint,nbiot,180 +on1,0,0,27,1,0,514,4863.848720,186,4,13664.051280,2391.816280,hint,nbiot,180 +on12,0,0,26,1,0,154,4682.261280,186,2,4256.630960,2097.382428,hint,nbiot,180 +on7,0,0,27,1,0,699,4863.600000,186,3,16949.010320,2366.177876,hint,nbiot,180 +on3,0,0,29,1,0,747,5223.800000,186,5,19341.630960,2754.319460,hint,nbiot,180 +on11,0,0,27,1,0,697,4862.521280,186,3,13623.430640,2213.835304,hint,nbiot,180 +on6,0,0,24,1,0,498,4321.969680,186,0,10337.010320,1871.787872,hint,nbiot,180 +on8,0,0,25,1,0,42,4502.300000,186,1,4215.010320,2108.044792,hint,nbiot,180 +on2,0,0,26,1,0,482,4683.600000,186,2,13543.010320,2355.856792,hint,nbiot,180 +on5,0,0,25,1,0,335,4501.480000,186,1,10377.030960,2007.935084,hint,nbiot,180 +on9,0,0,26,1,0,852,4681.300000,187,3,15256.651600,2132.279916,hint,nbiot,180 +on12,0,0,25,1,0,607,4502.300000,187,2,15176.010320,2095.629792,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,187,0,-1.000000,2074.597576,hint,nbiot,180 +on10,0,0,25,1,0,718,4501.000000,187,1,14120.030960,1891.393084,hint,nbiot,180 +on3,0,0,27,1,0,735,4862.300000,187,3,15216.030960,2243.262876,hint,nbiot,180 +on7,0,0,25,1,0,418,4502.300000,187,1,9430.010320,2089.650000,hint,nbiot,180 +on6,0,0,28,1,0,897,5042.200000,187,4,19586.030960,2437.604460,hint,nbiot,180 +on5,0,0,26,1,0,513,4683.138400,187,2,9470.030960,2067.865152,hint,nbiot,180 +on11,0,0,26,1,0,395,4682.061280,187,3,6596.651280,2128.632636,hint,nbiot,180 +on2,0,0,24,1,0,594,4476.000000,187,1,14080.010320,1923.858000,hint,nbiot,180 +on4,0,0,25,1,0,966,4501.300000,187,1,19546.010320,1989.676500,hint,nbiot,180 +on1,0,0,26,1,0,356,4685.180000,187,2,6556.030640,2365.263168,hint,nbiot,180 +on8,0,0,24,1,0,54,4321.010320,187,0,2493.010320,1870.104336,hint,nbiot,180 +on6,0,0,24,1,0,474,4471.199680,188,1,13702.030960,2090.749788,hint,nbiot,180 +on7,0,0,25,1,0,833,4504.199680,188,1,18600.010320,2132.549788,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,188,0,-1.000000,2041.124656,hint,nbiot,180 +on2,0,0,24,1,0,1706,4322.979360,188,0,32591.010320,1795.498452,hint,nbiot,180 +on9,0,0,27,1,0,778,4862.300000,188,4,14776.630960,2250.464876,hint,nbiot,180 +on10,0,0,24,1,0,510,4381.969040,188,1,13662.010320,1871.295824,hint,nbiot,180 +on3,0,0,24,1,0,1067,4339.010320,188,1,22630.010320,1864.518836,hint,nbiot,180 +on8,0,0,24,1,0,2745,4321.020640,188,0,56087.010320,1870.771672,hint,nbiot,180 +on11,0,0,26,1,0,612,4683.310320,188,2,13742.051600,2300.185836,hint,nbiot,180 +on12,0,0,26,1,0,663,4684.600000,188,2,14735.010320,2425.026376,hint,nbiot,180 +on5,0,0,26,1,0,1054,4685.989680,188,2,22670.030960,2314.465580,hint,nbiot,180 +on1,0,0,24,1,0,3420,4322.000000,188,0,70888.010320,1962.150000,hint,nbiot,180 +on4,0,0,24,1,0,499,4323.938080,188,0,9515.010320,1869.865356,hint,nbiot,180 +on1,0,0,25,1,0,197,4503.300000,189,2,8215.010320,2254.876584,hint,nbiot,180 +on6,0,0,24,1,0,2340,4321.000000,189,0,49055.010320,1845.400000,hint,nbiot,180 +on3,0,0,24,1,0,1546,4321.000000,189,0,30408.010320,1776.500000,hint,nbiot,180 +on4,0,0,25,1,0,527,4504.979360,189,1,13198.010320,2110.111660,hint,nbiot,180 +on2,0,0,26,1,0,1000,4682.490000,189,2,23935.010320,2197.345792,hint,nbiot,180 +on5,0,0,26,1,0,753,4683.600000,189,2,18173.010320,2377.579792,hint,nbiot,180 +on12,0,0,27,1,0,797,4863.620640,189,4,18213.030960,2411.425924,hint,nbiot,180 +on11,0,0,25,1,0,180,4504.379680,189,1,4205.620640,2092.796912,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,189,0,-1.000000,2040.181116,hint,nbiot,180 +on10,0,0,24,1,0,0,4321.000000,189,0,1728.010320,1754.413416,hint,nbiot,180 +on9,0,0,26,1,0,858,4680.041280,189,2,16655.051600,1921.839428,hint,nbiot,180 +on7,0,0,26,1,0,708,4683.600000,189,3,16575.010320,2272.150000,hint,nbiot,180 +on8,0,0,25,1,0,873,4501.000000,189,1,16615.030960,1891.386584,hint,nbiot,180 +on5,0,0,25,1,0,1002,4507.748080,190,2,23420.030960,2041.922440,hint,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,190,0,-1.000000,2014.261612,hint,nbiot,180 +on9,0,0,24,1,0,180,4321.010320,190,0,4018.010320,1754.430752,hint,nbiot,180 +on11,0,0,25,1,0,908,4513.569040,190,4,23380.010320,2307.624116,hint,nbiot,180 +on8,0,0,26,1,0,910,4682.300000,190,2,19625.010320,2185.563084,hint,nbiot,180 +on1,0,0,28,1,0,1070,5043.469360,190,4,28386.010320,2664.780620,hint,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,hint,nbiot,180 +on10,0,0,26,1,0,1417,4683.300000,190,3,30363.010320,2294.519792,hint,nbiot,180 +on7,0,0,24,1,0,395,4324.020320,190,0,8251.010320,2043.188252,hint,nbiot,180 +on12,0,0,24,1,0,180,4323.948400,190,0,4085.010320,1869.979360,hint,nbiot,180 +on2,0,0,27,1,0,288,4867.210000,190,5,15627.010320,2746.910500,hint,nbiot,180 +on3,0,0,27,1,0,707,4864.589680,190,3,15668.041280,2445.472412,hint,nbiot,180 +on6,0,0,24,1,0,1868,4321.000000,190,0,39329.010320,1801.200000,hint,nbiot,180 +on5,0,0,26,1,0,1077,4683.312240,191,3,22071.651600,2109.529644,hint,nbiot,180 +on2,0,0,24,1,0,180,4324.990000,191,0,4432.010320,2091.039332,hint,nbiot,180 +on7,0,0,24,1,0,1430,4414.210000,191,1,31631.010320,1807.960624,hint,nbiot,180 +on1,0,0,24,1,0,748,4497.289680,191,1,20901.010320,1966.869164,hint,nbiot,180 +on3,0,0,24,1,0,360,4321.000000,191,0,8765.010320,1754.413416,hint,nbiot,180 +on12,0,0,24,1,0,480,4324.938400,191,0,8686.010320,1955.558692,hint,nbiot,180 +on6,0,0,26,1,0,333,4681.620640,191,4,10888.010320,2190.758256,hint,nbiot,180 +on10,0,0,25,1,0,3466,4502.210000,191,1,71809.010320,2034.240500,hint,nbiot,180 +on11,0,0,25,1,0,1060,4506.000000,191,1,22119.620640,2352.755000,hint,nbiot,180 +on9,0,0,27,1,0,898,4862.910320,191,5,21991.010320,2435.277336,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,191,0,-1.000000,2068.881736,hint,nbiot,180 +on4,0,0,26,1,0,1174,4684.600000,191,2,27828.010320,2347.306500,hint,nbiot,180 +on8,0,0,26,1,0,1053,4684.240320,191,2,22031.030960,2172.240504,hint,nbiot,180 +on3,0,0,26,1,0,913,4683.000000,192,2,16204.041280,2126.036376,hint,nbiot,180 +on12,0,0,25,1,0,380,4501.300000,192,1,11351.010320,2013.069792,hint,nbiot,180 +on4,0,0,26,1,0,514,4683.369040,192,2,11392.630960,2095.250700,hint,nbiot,180 +on6,0,0,24,1,0,102,4389.969360,192,1,6328.010320,1795.007452,hint,nbiot,180 +on2,0,0,25,1,0,540,4503.000000,192,1,11452.620640,2123.001584,hint,nbiot,180 +on5,0,0,25,1,0,729,4501.041280,192,1,16244.061920,1911.539680,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,192,0,-1.000000,2052.127700,hint,nbiot,180 +on10,0,0,24,1,0,1192,4320.010320,192,0,25210.010320,1754.017336,hint,nbiot,180 +on1,0,0,25,1,0,154,4553.310320,192,3,8598.010320,2162.443920,hint,nbiot,180 +on8,0,0,25,1,0,689,4502.000000,192,1,16163.010320,2032.466500,hint,nbiot,180 +on11,0,0,28,1,0,1281,5042.200000,192,5,28821.010320,2435.660960,hint,nbiot,180 +on9,0,0,25,1,0,1009,4502.000000,192,1,19702.010320,2023.756500,hint,nbiot,180 +on7,0,0,26,1,0,955,4682.497440,192,3,16284.682560,2113.929016,hint,nbiot,180 +on1,0,0,27,1,0,926,4863.779680,193,3,21262.630960,2293.931372,hint,nbiot,180 +on9,0,0,27,1,0,848,4861.520320,193,3,17211.041280,2154.331044,hint,nbiot,180 +on12,0,0,24,1,0,180,4320.010320,193,0,4256.010320,1754.010836,hint,nbiot,180 +on11,0,0,25,1,0,693,4501.000000,193,1,13680.030960,1891.393084,hint,nbiot,180 +on3,0,0,25,1,0,877,4501.190000,193,1,17170.010320,1916.832500,hint,nbiot,180 +on7,0,0,24,1,0,1261,4414.979680,193,1,27638.020320,1914.868496,hint,nbiot,180 +on5,0,0,25,1,0,2521,4502.000000,193,1,50596.610320,2033.110000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,193,0,-1.000000,2051.210992,hint,nbiot,180 +on4,0,0,26,1,0,614,4682.300000,193,2,13720.051600,2212.603292,hint,nbiot,180 +on10,0,0,26,1,0,871,4721.990000,193,4,21221.010320,2190.141460,hint,nbiot,180 +on2,0,0,24,1,0,360,4322.000000,193,0,9252.010320,1846.326708,hint,nbiot,180 +on8,0,0,25,1,0,463,4502.210000,193,1,13640.010320,1928.303916,hint,nbiot,180 +on6,0,0,24,1,0,2578,4322.000000,193,0,50510.010320,1923.410000,hint,nbiot,180 +on7,0,0,24,1,0,900,4323.000000,194,0,20964.010320,1963.473416,hint,nbiot,180 +on9,0,0,24,1,0,720,4321.000000,194,0,15562.010320,1845.400000,hint,nbiot,180 +on10,0,0,25,1,0,1599,4502.000000,194,1,32258.010320,1992.173208,hint,nbiot,180 +on1,0,0,24,1,0,3000,4322.000000,194,0,59911.010320,1884.150000,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,194,0,-1.000000,2052.367576,hint,nbiot,180 +on6,0,0,24,1,0,2019,4321.000000,194,0,41608.010320,1754.413416,hint,nbiot,180 +on12,0,0,26,1,0,1594,4681.989680,194,2,32299.630960,2015.165788,hint,nbiot,180 +on4,0,0,24,1,0,236,4321.000000,194,0,7158.010320,1871.003292,hint,nbiot,180 +on5,0,0,25,1,0,468,4500.010320,194,1,7558.010320,1831.860836,hint,nbiot,180 +on8,0,0,26,1,0,845,4681.610320,194,3,20862.010320,2124.187420,hint,nbiot,180 +on11,0,0,25,1,0,710,4504.010320,194,1,15450.010320,2146.000544,hint,nbiot,180 +on3,0,0,24,1,0,1361,4322.000000,194,0,26162.010320,1880.906708,hint,nbiot,180 +on2,0,0,23,1,0,661,4199.000000,194,0,13367.010320,1716.909792,hint,nbiot,180 +on6,0,0,25,1,0,1166,4502.199680,195,1,24761.030960,1892.478080,hint,nbiot,180 +on8,0,0,26,1,0,1283,4684.886800,195,3,24842.051280,2132.688052,hint,nbiot,180 +on11,0,0,27,1,0,1497,4862.910320,195,4,33024.010320,2474.250712,hint,nbiot,180 +on2,0,0,26,1,0,1246,4681.600000,195,2,27690.010320,2184.893292,hint,nbiot,180 +on5,0,0,24,1,0,9,4321.989680,195,0,1466.010320,1836.052580,hint,nbiot,180 +on10,0,0,24,1,0,2706,4344.190000,195,1,54646.010320,1854.682500,hint,nbiot,180 +on1,0,0,25,1,0,1072,4501.300000,195,2,24721.010320,1996.365000,hint,nbiot,180 +on9,0,0,26,1,0,1348,4824.789360,195,3,30476.010320,2308.215536,hint,nbiot,180 +on3,0,0,25,1,0,180,4503.610320,195,1,7202.620640,1998.739252,hint,nbiot,180 +on4,0,0,26,1,0,587,4683.561280,195,2,15080.010320,2293.987928,hint,nbiot,180 +on12,0,0,25,1,0,711,4503.300000,195,2,19687.010320,2102.926708,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,195,0,-1.000000,2040.201240,hint,nbiot,180 +on7,0,0,26,1,0,1041,4685.589680,195,2,24801.430640,2264.339248,hint,nbiot,180 +on11,0,0,25,1,0,668,4682.999680,196,2,17986.451280,2353.940496,hint,nbiot,180 +on6,0,0,26,1,0,898,4683.010000,196,2,17946.430640,2143.967168,hint,nbiot,180 +on2,0,0,27,1,0,962,4862.940000,196,3,25086.010320,2401.488584,hint,nbiot,180 +on4,0,0,25,1,0,496,4501.190000,196,1,10599.010320,1871.339208,hint,nbiot,180 +on8,0,0,25,1,0,900,4501.000000,196,1,17866.010320,1916.360000,hint,nbiot,180 +on12,0,0,25,1,0,1548,4501.500000,196,1,34139.010320,2040.450000,hint,nbiot,180 +on5,0,0,25,1,0,360,4505.000000,196,1,10667.020320,2140.293332,hint,nbiot,180 +on9,0,0,25,1,0,806,4501.210000,196,1,17906.030960,1892.075500,hint,nbiot,180 +on1,0,0,24,1,0,113,4321.000000,196,0,1785.010320,1869.716708,hint,nbiot,180 +on10,0,0,28,1,0,1139,5043.500000,196,6,28119.010320,2695.914668,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,196,0,-1.000000,2046.297824,hint,nbiot,180 +on3,0,0,26,1,0,680,4682.900000,196,2,20601.010320,2329.843292,hint,nbiot,180 +on7,0,0,25,1,0,355,4504.231280,196,1,6245.010320,2045.742552,hint,nbiot,180 +on3,0,0,30,1,0,1567,5405.310000,197,8,36244.010320,2963.176668,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,197,0,-1.000000,2053.201240,hint,nbiot,180 +on5,0,0,27,1,0,848,4862.179040,197,4,21311.630960,2216.793032,hint,nbiot,180 +on7,0,0,26,1,0,1809,4680.210000,197,2,34869.630960,1911.103708,hint,nbiot,180 +on4,0,0,24,1,0,1289,4457.190000,197,1,25641.010320,1871.945708,hint,nbiot,180 +on2,0,0,24,1,0,180,4321.010320,197,0,4529.010320,1818.767544,hint,nbiot,180 +on10,0,0,24,1,0,858,4322.959040,197,0,16163.010320,1871.553532,hint,nbiot,180 +on11,0,0,24,1,0,594,4322.020640,197,1,11201.010320,1912.128172,hint,nbiot,180 +on6,0,0,24,1,0,413,4320.979360,197,0,8590.010320,1797.565160,hint,nbiot,180 +on1,0,0,24,1,0,900,4333.989680,197,1,21371.620640,2069.060872,hint,nbiot,180 +on12,0,0,25,1,0,1769,4501.210000,197,1,34828.010320,1916.450292,hint,nbiot,180 +on8,0,0,25,1,0,1619,4501.210000,197,1,30783.010320,1912.933792,hint,nbiot,180 +on9,0,0,24,1,0,920,4323.000000,197,0,21270.010320,2062.506376,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,198,0,-1.000000,2049.500868,hint,nbiot,180 +on12,0,0,24,1,0,875,4447.000000,198,1,17603.030960,1986.793084,hint,nbiot,180 +on5,0,0,24,1,0,463,4321.000000,198,0,9544.010320,1777.800000,hint,nbiot,180 +on11,0,0,26,1,0,467,4683.190000,198,3,9624.651600,2227.740916,hint,nbiot,180 +on4,0,0,26,1,0,898,4681.600000,198,3,21261.010320,2171.437668,hint,nbiot,180 +on2,0,0,25,1,0,1374,4501.010320,198,1,30358.010320,1942.117336,hint,nbiot,180 +on7,0,0,25,1,0,1203,4501.010320,198,1,26858.010320,1859.827336,hint,nbiot,180 +on10,0,0,26,1,0,514,4681.300000,198,2,11071.010320,2079.863084,hint,nbiot,180 +on3,0,0,24,1,0,816,4321.000000,198,0,17563.010320,1782.350000,hint,nbiot,180 +on1,0,0,25,1,0,1442,4502.300000,198,1,33981.010320,2149.970000,hint,nbiot,180 +on8,0,0,27,1,0,852,4862.900000,198,3,21302.630960,2415.779708,hint,nbiot,180 +on6,0,0,25,1,0,910,4649.989680,198,2,17643.051600,2074.067080,hint,nbiot,180 +on9,0,0,25,1,0,452,4502.969040,198,1,9584.030960,1973.697408,hint,nbiot,180 +on11,0,0,26,1,0,1101,4683.000000,199,2,20857.030960,2169.846168,hint,nbiot,180 +on3,0,0,25,1,0,533,4502.210000,199,1,12365.010320,2011.093792,hint,nbiot,180 +on5,0,0,26,1,0,930,4756.741280,199,4,20897.651600,2186.721136,hint,nbiot,180 +on9,0,0,25,1,0,561,4501.113200,199,1,12479.071920,1941.768696,hint,nbiot,180 +on8,0,0,24,1,0,305,4320.030640,199,0,4889.010320,1754.025464,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,199,0,-1.000000,2040.167700,hint,nbiot,180 +on4,0,0,25,1,0,1252,4501.000000,199,1,25016.010320,1916.756500,hint,nbiot,180 +on10,0,0,25,1,0,1061,4502.000000,199,1,20817.010320,2032.466500,hint,nbiot,180 +on12,0,0,25,1,0,540,4502.000000,199,1,12439.051280,2008.109960,hint,nbiot,180 +on6,0,0,25,1,0,312,4502.310320,199,2,9508.010320,2088.744128,hint,nbiot,180 +on1,0,0,26,1,0,1344,4681.569360,199,2,27511.010320,2050.090744,hint,nbiot,180 +on2,0,0,24,1,0,783,4321.000000,199,0,17330.010320,1803.800000,hint,nbiot,180 +on7,0,0,30,1,0,1173,5405.310000,199,9,29618.010320,3117.070252,hint,nbiot,180 +on3,0,0,24,1,0,360,4321.000000,200,0,7709.010320,1829.806708,hint,nbiot,180 +on10,0,0,25,1,0,0,4507.620640,200,1,2638.620640,2313.766672,hint,nbiot,180 +on11,0,0,24,1,0,278,4324.641280,200,0,6749.010320,1948.919928,hint,nbiot,180 +on1,0,0,25,1,0,2071,4501.479680,200,1,46223.010320,2058.655080,hint,nbiot,180 +on12,0,0,25,1,0,206,4504.000000,200,1,6829.051600,2193.529876,hint,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,200,0,-1.000000,2067.514656,hint,nbiot,180 +on5,0,0,25,1,0,657,4502.300000,200,1,12961.010320,1950.809792,hint,nbiot,180 +on8,0,0,25,1,0,1620,4502.000000,200,1,35670.620640,1965.061708,hint,nbiot,180 +on2,0,0,26,1,0,359,4683.682240,200,3,6869.672240,2169.516228,hint,nbiot,180 +on7,0,0,25,1,0,228,4503.000000,200,1,6789.030960,2072.249792,hint,nbiot,180 +on9,0,0,24,1,0,1089,4320.010320,200,0,23145.010320,1754.010836,hint,nbiot,180 +on6,0,0,25,1,0,1860,4501.300000,200,1,38255.010320,1996.170000,hint,nbiot,180 +on4,0,0,25,1,0,693,4618.999680,200,2,13002.630960,2181.719788,hint,nbiot,180 +on6,0,0,24,1,0,3467,4320.000000,1,0,70206.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,1,0,59597.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,759,4320.000000,1,0,17366.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1279,4320.000000,1,0,27193.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1443,4320.000000,1,0,29036.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,1,0,33195.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2030,4320.000000,1,0,43036.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,1,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,2845,4325.010000,1,0,57187.010000,1756.010500,extended,nbiot,180 +on1,0,0,24,1,0,249,4320.000000,1,0,4533.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,780,4320.000000,1,0,17406.020000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,1,0,-1.000000,1988.065000,extended,nbiot,180 +on10,0,0,24,1,0,3022,4322.010000,2,0,59844.010000,1754.810500,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,2,0,22916.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2193,4320.000000,2,0,45776.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1800,4320.000000,2,0,38862.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,795,4320.000000,2,0,15786.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1980,4320.000000,2,0,42774.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4326.010000,2,0,-1.000000,1990.469000,extended,nbiot,180 +on6,0,0,24,1,0,571,4320.000000,2,0,10970.010000,1754.006500,extended,nbiot,180 +on2,0,0,23,1,0,2090,4250.000000,2,0,45856.010000,1726.006500,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,2,0,15844.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,736,4320.000000,2,0,15884.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,2,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,3,0,19105.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4362.020000,3,0,-1.000000,2030.879500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,3,0,5628.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,903,4320.000000,3,0,19145.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,3,0,16334.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,3,0,8316.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,3,0,31263.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,3,0,1352.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,3,0,25366.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,3,0,1284.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,1343,4320.000000,3,0,27759.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,3,0,32959.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,145,4325.020000,4,0,2245.020000,1756.014500,extended,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,4,0,66679.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,4,0,-1.000000,1962.058500,extended,nbiot,180 +on2,0,0,24,1,0,2700,4320.000000,4,0,56038.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,4,0,4345.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,4,0,34004.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,17,4320.000000,4,0,2205.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,4,0,27192.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,4,0,37235.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2096,4320.000000,4,0,40012.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,4192,4320.000000,5,0,83018.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4325.010000,5,0,-1.000000,2042.082000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,5,0,7651.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,627,4320.000000,5,0,13586.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1103,4320.000000,5,0,25043.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,5,0,32090.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,5,0,13682.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3005,4320.000000,5,0,60733.010000,1754.006500,extended,nbiot,180 +on8,0,0,23,1,0,3596,4235.000000,5,0,72647.010000,1720.006500,extended,nbiot,180 +on11,0,0,24,1,0,2747,4320.000000,5,0,54911.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3420,4320.000000,5,0,70059.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1970,4350.010000,5,0,38519.010000,1766.010500,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,5,0,2293.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1756,4320.000000,6,0,35529.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,6,0,28020.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,6,0,3515.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,6,0,21876.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4325.010000,6,0,-1.000000,1964.062500,extended,nbiot,180 +on4,0,0,24,1,0,3347,4320.000000,6,0,65251.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1503,4320.000000,6,0,30239.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,6,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,6,0,28090.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2872,4352.010000,6,0,56674.010000,1766.810500,extended,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,6,0,53859.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4325.020000,7,0,-1.000000,1964.066500,extended,nbiot,180 +on6,0,0,24,1,0,4140,4320.000000,7,0,83759.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,187,4320.000000,7,0,3694.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,7,0,13903.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1795,4355.010000,7,0,33588.010000,1768.010500,extended,nbiot,180 +on10,0,0,24,1,0,23,4320.000000,7,0,3549.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,7,0,8256.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3859,4320.000000,7,0,77970.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,7,0,3654.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,7,0,25574.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,7,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,23,0,0,0,4340.010000,8,0,-1.000000,1996.069000,extended,nbiot,180 +on3,0,0,23,0,0,4239,4239.000000,8,0,-1.000000,1695.600000,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,8,0,7853.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,164,4344.010000,8,0,1965.010000,1763.610500,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,8,0,13026.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,8,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1889,4320.000000,8,0,39451.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,8,0,6369.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2752,4320.000000,8,0,54296.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,320,4320.010000,8,0,6307.010000,1754.010500,extended,nbiot,180 +on2,0,0,24,1,0,1918,4320.000000,8,0,39491.020000,1754.006500,extended,nbiot,180 +on9,0,0,23,1,0,156,4309.020000,8,0,2005.020000,1749.614500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,8,0,2093.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,412,4320.000000,9,0,8888.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,9,0,11683.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2424,4320.000000,9,0,48891.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2067,4320.000000,9,0,42460.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,9,0,25580.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4350.020000,9,0,-1.000000,2052.086000,extended,nbiot,180 +on12,0,0,24,1,0,4140,4320.000000,9,0,84462.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,9,0,1577.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,154,4334.010000,9,0,1530.010000,1759.610500,extended,nbiot,180 +on4,0,0,24,1,0,1620,4320.000000,9,0,34227.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,9,0,22114.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,9,0,1687.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,560,4320.000000,9,0,11627.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1573,4320.000000,10,0,29679.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2733,4320.000000,10,0,56769.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,650,4320.000000,10,0,13632.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,10,0,-1.000000,2040.078000,extended,nbiot,180 +on4,0,0,24,1,0,1422,4342.010000,10,0,28756.010000,1762.810500,extended,nbiot,180 +on6,0,0,24,1,0,937,4320.000000,10,0,20603.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,10,0,28823.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,10,0,58767.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,604,4320.000000,10,0,13672.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,159,4339.010000,10,0,1910.010000,1761.610500,extended,nbiot,180 +on12,0,0,24,1,0,1451,4320.000000,10,0,28863.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2003,4320.000000,10,0,42123.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,10,0,13766.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,952,4320.000000,11,0,19868.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,11,0,37310.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,11,0,330.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,992,4320.000000,11,0,19828.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1646,4320.000000,11,0,34972.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1240,4340.010000,11,0,22875.010000,1762.010500,extended,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,11,0,48329.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,34,4320.000000,11,0,230.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,845,4320.000000,11,0,17929.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,11,0,17969.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,11,0,389.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4375.020000,11,0,-1.000000,2062.086000,extended,nbiot,180 +on4,0,0,24,1,0,1620,4320.000000,11,0,35089.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,12,0,13162.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,366,4320.000000,12,0,10783.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,12,0,18329.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,12,0,2626.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,12,0,50572.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3016,4320.000000,12,0,58034.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1799,4359.010000,12,0,33872.010000,1769.610500,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,12,0,37549.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2456,4320.000000,12,0,50515.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,924,4320.000000,12,0,18213.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2911,4320.000000,12,0,57994.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,4295,4335.010000,12,0,86242.010000,1760.010500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,12,0,-1.000000,2040.078000,extended,nbiot,180 +on7,0,0,24,1,0,1551,4320.000000,13,0,31230.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,392,4320.000000,13,0,10227.030000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,753,4320.000000,13,0,16803.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,13,0,2089.020000,1754.006500,extended,nbiot,180 +on2,0,0,23,0,0,4310,4310.000000,13,0,-1.000000,1724.000000,extended,nbiot,180 +on10,0,0,24,1,0,3952,4352.010000,13,0,76822.010000,1766.810500,extended,nbiot,180 +on9,0,0,24,1,0,438,4320.000000,13,0,10147.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,3,4320.000000,13,0,2049.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,13,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,13,0,-1.000000,1936.052000,extended,nbiot,180 +on1,0,0,24,1,0,428,4320.000000,13,0,10187.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,14,0,9147.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,4306,4346.010000,14,0,84090.010000,1764.410500,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,14,0,18561.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4352.010000,14,0,-1.000000,2000.869000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,14,0,1892.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,14,0,6711.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,599,4320.000000,14,0,14106.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1408,4328.010000,14,0,26535.010000,1757.210500,extended,nbiot,180 +on2,0,0,24,1,0,1094,4320.000000,14,0,22852.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,14,0,15944.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,2383,4320.000000,14,0,48467.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,14,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,1263,4320.000000,15,0,28721.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,15,0,56693.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1034,4320.000000,15,0,18260.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,15,0,3572.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3960,4320.000000,15,0,79824.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,15,0,22337.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2301,4321.010000,15,0,45610.010000,1754.410500,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,15,0,13028.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,15,0,52523.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4368.020000,15,0,-1.000000,2059.286000,extended,nbiot,180 +on8,0,0,24,1,0,999,4320.000000,15,0,18220.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1983,4320.000000,15,0,39850.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,774,4320.000000,15,0,17049.010000,1754.006500,extended,nbiot,180 +on7,0,0,23,1,0,1369,4249.000000,16,0,30897.010000,1725.606500,extended,nbiot,180 +on12,0,0,24,1,0,1294,4320.000000,16,0,27242.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1371,4320.000000,16,0,27202.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,16,0,19733.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,198,4320.000000,16,0,6366.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1518,4320.000000,16,0,30750.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,2421,4320.000000,16,0,47639.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4327.010000,16,0,-1.000000,1990.869000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,16,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,81,4320.000000,16,0,2807.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,16,0,6326.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2100,4320.000000,16,0,41380.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,17,0,-1.000000,2014.071500,extended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,17,0,40568.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2488,4328.010000,17,0,50367.010000,1757.210500,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,17,0,14468.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3602,4320.000000,17,0,74951.010000,1754.006500,extended,nbiot,180 +on2,0,0,23,1,0,1392,4190.000000,17,0,27670.010000,1702.006500,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,17,0,2583.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1715,4320.000000,17,0,34272.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,17,0,6314.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2160,4320.000000,17,0,44211.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,17,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,23,1,0,497,4317.010000,17,0,7501.010000,1752.810500,extended,nbiot,180 +on9,0,0,24,1,0,1501,4320.000000,17,0,30995.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,399,4320.000000,18,0,8943.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,371,4320.000000,18,0,8983.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,18,0,2310.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,18,0,56241.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,18,0,29896.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1098,4320.000000,18,0,23198.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1861,4320.000000,18,0,36148.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2160,4320.000000,18,0,46164.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,18,0,3912.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4389.030000,18,0,-1.000000,2067.690000,extended,nbiot,180 +on6,0,0,24,1,0,1710,4320.000000,18,0,34667.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3420,4320.000000,18,0,69284.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,18,0,18522.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1493,4320.000000,19,0,30064.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2547,4320.000000,19,0,51036.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1182,4320.000000,19,0,21936.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,19,0,3356.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,19,0,25875.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,294,4320.000000,19,0,4578.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4374.030000,19,0,-1.000000,2061.690000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,19,0,17117.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,499,4320.000000,19,0,9983.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,19,0,39693.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,195,4320.000000,19,0,4538.010000,1754.006500,extended,nbiot,180 +on2,0,0,22,1,0,1972,4136.000000,19,0,41169.010000,1680.406500,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,19,0,30165.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,20,0,51739.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2586,4320.000000,20,0,54052.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4345.020000,20,0,-1.000000,2024.079500,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,20,0,41485.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,20,0,15372.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2441,4320.000000,20,0,48670.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1645,4320.000000,20,0,34301.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,20,0,7802.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2195,4320.000000,20,0,45348.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1766,4326.010000,20,0,34261.010000,1756.410500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,20,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,3600,4320.000000,20,0,74846.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,358,4358.010000,20,0,6523.010000,1769.210500,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,21,0,40631.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,21,0,16745.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,21,0,16787.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4375.020000,21,0,-1.000000,2062.086000,extended,nbiot,180 +on7,0,0,24,1,0,3260,4320.000000,21,0,65746.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2331,4351.010000,21,0,46061.010000,1766.410500,extended,nbiot,180 +on12,0,0,24,1,0,1126,4320.000000,21,0,22311.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,21,0,31485.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,21,0,21386.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,21,0,376.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3960,4320.000000,21,0,82527.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,21,0,22439.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,33,4320.000000,21,0,199.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,4067,4320.000000,22,0,81504.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,22,0,30419.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,22,0,4852.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,62,4320.000000,22,0,1345.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,564,4320.000000,22,0,12941.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4334.030000,22,0,-1.000000,1967.670500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,22,0,27051.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,23,1,0,1376,4238.000000,22,0,30272.010000,1721.206500,extended,nbiot,180 +on3,0,0,24,1,0,898,4358.010000,22,0,18194.010000,1769.210500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,22,0,13088.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2464,4320.000000,23,0,49180.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,23,0,18915.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,69,4320.000000,23,0,3324.030000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,23,0,43211.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1153,4320.000000,23,0,21922.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,15,4320.000000,23,0,3284.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,23,0,-1.000000,2040.078000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,23,0,51703.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,118,4320.000000,23,0,3244.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,48,4320.000000,23,0,3364.040000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,23,0,49227.010000,1754.006500,extended,nbiot,180 +on7,0,0,23,1,0,720,4217.000000,23,0,15045.010000,1712.806500,extended,nbiot,180 +on5,0,0,24,1,0,1003,4320.000000,23,0,18836.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1963,4343.020000,24,0,37464.020000,1763.214500,extended,nbiot,180 +on10,0,0,24,1,0,2880,4320.000000,24,0,58661.010000,1754.006500,extended,nbiot,180 +on6,0,0,23,1,0,540,4248.000000,24,0,13338.010000,1725.206500,extended,nbiot,180 +on12,0,0,24,1,0,797,4320.000000,24,0,15801.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,24,0,30736.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,261,4320.000000,24,0,6106.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3240,4320.000000,24,0,66612.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1103,4320.000000,24,0,24733.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8599.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,24,0,8675.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2040.078000,extended,nbiot,180 +on7,0,0,24,1,0,1805,4320.000000,24,0,37424.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,3420,4320.000000,24,0,71947.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,25,0,807.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,25,0,41965.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,25,0,14003.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2081,4320.000000,25,0,41872.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,767,4320.000000,25,0,17644.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2533,4320.000000,25,0,53923.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,25,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,122,4320.000000,25,0,709.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,25,0,13888.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,25,0,17713.010000,1754.006500,extended,nbiot,180 +on0,1,11,23,0,0,0,4342.010000,25,0,-1.000000,2022.875500,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,25,0,34395.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,25,0,7776.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,66,4320.000000,26,0,2808.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1130,4320.000000,26,0,24427.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.010000,26,0,-1.000000,1988.069000,extended,nbiot,180 +on10,0,0,24,1,0,586,4320.000000,26,0,14344.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,26,0,48152.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2340,4320.000000,26,0,48034.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1675,4320.000000,26,0,33853.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3023,4323.010000,26,0,58270.010000,1755.210500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,3600,4320.000000,26,0,74365.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,44,4320.000000,26,0,2768.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,26,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,947,4320.000000,26,0,21112.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1260,4320.000000,27,0,26921.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,27,0,9457.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,398,4320.000000,27,0,9497.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,922,4320.000000,27,0,18987.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1283,4320.000000,27,0,26812.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3453,4320.000000,27,0,68482.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,27,0,29050.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1805,4320.000000,27,0,38174.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2160,4320.000000,27,0,46344.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4351.010000,27,0,-1.000000,2052.482000,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,27,0,1632.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,27,0,1517.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,389,4320.000000,27,0,9537.030000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2013,4320.000000,28,0,40991.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,28,0,11165.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1528,4320.000000,28,0,32344.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,781,4320.000000,28,0,15495.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,28,0,23844.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,28,0,10211.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,28,0,18240.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4348.020000,28,0,-1.000000,1999.273000,extended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,28,0,38044.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,28,0,41073.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,2002,4320.000000,28,0,40951.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3420,4320.000000,29,0,68772.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1372,4320.000000,29,0,28244.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,345,4345.010000,29,0,6058.010000,1764.010500,extended,nbiot,180 +on8,0,0,24,1,0,2037,4320.000000,29,0,39830.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,452,4320.000000,29,0,8084.020000,1754.006500,extended,nbiot,180 +on4,0,0,23,1,0,2999,4320.000000,29,0,58972.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1415,4335.010000,29,0,28204.010000,1760.010500,extended,nbiot,180 +on5,0,0,24,1,0,536,4356.010000,29,0,8044.010000,1768.410500,extended,nbiot,180 +on0,1,11,24,0,0,0,4328.010000,29,0,-1.000000,2017.275500,extended,nbiot,180 +on12,0,0,24,1,0,634,4320.000000,29,0,14489.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,29,0,21899.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1906,4320.000000,29,0,37166.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,30,0,4406.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,30,0,39410.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,30,0,17610.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,30,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1228,4328.010000,30,0,23210.010000,1757.210500,extended,nbiot,180 +on0,1,11,24,0,0,0,4341.020000,30,0,-1.000000,2022.479500,extended,nbiot,180 +on2,0,0,24,1,0,138,4320.000000,30,0,2231.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,280,4320.000000,30,0,4324.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3020,4320.010000,30,0,59383.010000,1754.010500,extended,nbiot,180 +on7,0,0,24,1,0,931,4320.000000,30,0,21565.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,199,4320.000000,30,0,4446.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3177,4320.000000,30,0,61766.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,30,0,26766.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,31,0,15032.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2064,4320.000000,31,0,41224.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4382.020000,31,0,-1.000000,2064.886000,extended,nbiot,180 +on10,0,0,24,1,0,1980,4320.000000,31,0,41299.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2420,4320.000000,31,0,49535.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3441,4320.000000,31,0,69062.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,31,0,8557.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,320,4320.020000,31,0,4035.020000,1754.014500,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,31,0,20151.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,31,0,2598.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3420,4320.000000,31,0,69022.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,315,4320.000000,31,0,3995.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1505,4320.000000,31,0,30177.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2763,4320.000000,32,0,54959.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,32,0,25438.010000,1754.006500,extended,nbiot,180 +on12,0,0,23,1,0,518,4317.020000,32,0,7593.020000,1752.814500,extended,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,32,0,45513.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,32,0,35040.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,32,0,11489.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1603,4343.010000,32,0,31406.010000,1763.210500,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,32,0,37849.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,32,0,40727.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4363.040000,32,0,-1.000000,2057.294000,extended,nbiot,180 +on6,0,0,24,1,0,419,4320.000000,32,0,7553.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3370,4320.000000,32,0,67864.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3240,4320.000000,32,0,67955.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,973,4320.000000,33,0,21636.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,33,0,33257.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,33,0,10797.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,33,0,33211.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1292,4320.000000,33,0,26017.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,327,4327.010000,33,0,6819.010000,1756.810500,extended,nbiot,180 +on8,0,0,24,1,0,553,4320.000000,33,0,14053.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,33,0,26144.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3240,4320.000000,33,0,64897.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4322.010000,33,0,-1.000000,1988.869000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,33,0,2559.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,2700,4320.000000,34,0,57179.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4359.020000,34,0,-1.000000,1977.666500,extended,nbiot,180 +on12,0,0,24,1,0,1659,4320.000000,34,0,35593.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2816,4320.000000,34,0,57075.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,34,0,5339.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,34,0,15881.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,34,0,14279.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,34,0,28724.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2309,4329.010000,34,0,46098.010000,1757.610500,extended,nbiot,180 +on10,0,0,24,1,0,3060,4320.000000,34,0,62342.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,537,4357.010000,35,0,7451.010000,1768.810500,extended,nbiot,180 +on2,0,0,24,1,0,1515,4320.000000,35,0,29494.010000,1754.006500,extended,nbiot,180 +on8,0,0,23,1,0,333,4254.010000,35,0,4638.010000,1727.610500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,35,0,7525.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,35,0,24789.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1841,4320.000000,35,0,39408.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,35,0,4739.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,35,0,1629.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,35,0,12769.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,802,4320.000000,35,0,15395.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,35,0,15551.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,540,4320.000000,35,0,12718.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4336.010000,35,0,-1.000000,2046.482000,extended,nbiot,180 +on0,1,11,24,0,0,0,4351.020000,36,0,-1.000000,2026.479500,extended,nbiot,180 +on11,0,0,24,1,0,2934,4320.000000,36,0,60025.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1444,4320.000000,36,0,31127.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,351,4351.010000,36,0,5804.010000,1766.410500,extended,nbiot,180 +on4,0,0,24,1,0,34,4320.000000,36,0,669.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3060,4320.000000,36,0,61681.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1990,4320.000000,36,0,43178.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,36,0,26211.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,36,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,23,1,0,3758,4298.000000,36,0,77515.010000,1745.206500,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,36,0,733.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,138,4320.000000,36,0,629.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,36,0,10638.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,603,4320.000000,37,0,13482.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,37,0,19335.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,37,0,6812.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,37,0,8672.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,37,0,63813.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,37,0,32243.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3729,4320.000000,37,0,73797.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4397.020000,37,0,-1.000000,2070.886000,extended,nbiot,180 +on11,0,0,24,1,0,4140,4320.000000,37,0,84064.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,37,0,19261.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,37,0,13583.010000,1754.006500,extended,nbiot,180 +on3,0,0,23,1,0,1324,4207.000000,37,0,27068.010000,1708.806500,extended,nbiot,180 +on9,0,0,24,1,0,2460,4320.000000,37,0,49381.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,38,0,14912.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,773,4320.000000,38,0,14812.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1833,4320.000000,38,0,39427.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,390,4320.000000,38,0,8131.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2744,4320.000000,38,0,54222.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,38,0,21005.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,38,0,39588.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,729,4320.000000,38,0,14952.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,4227,4320.000000,38,0,84749.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4341.030000,38,0,-1.000000,1996.477000,extended,nbiot,180 +on2,0,0,24,1,0,1341,4320.000000,38,0,28707.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,38,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,2363,4320.000000,39,0,50355.010000,1754.006500,extended,nbiot,180 +on4,0,0,23,1,0,2726,4215.000000,39,0,56778.010000,1712.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,39,0,-1.000000,1988.065000,extended,nbiot,180 +on5,0,0,23,1,0,1228,4198.000000,39,0,27735.020000,1705.206500,extended,nbiot,180 +on2,0,0,24,1,0,1420,4340.010000,39,0,27695.010000,1762.010500,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1205,4320.000000,39,0,23083.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,39,0,23145.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,39,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,2013,4320.000000,39,0,41583.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3406,4346.010000,39,0,65766.010000,1764.410500,extended,nbiot,180 +on11,0,0,24,1,0,18,4320.000000,39,0,2674.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,39,0,61699.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,40,0,10064.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3122,4320.000000,40,0,64187.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2069,4320.000000,40,0,43232.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,604,4320.000000,40,0,12055.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1308,4320.000000,40,0,26017.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,151,4331.010000,40,0,277.010000,1758.410500,extended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,40,0,32805.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,40,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,392,4320.000000,40,0,10104.020000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4355.010000,40,0,-1.000000,2028.075500,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,40,0,452.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,40,0,30794.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,788,4320.000000,40,0,17332.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3240,4320.000000,41,0,67521.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,41,0,35254.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,41,0,14558.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,56,4320.000000,41,0,1219.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,619,4320.000000,41,0,14428.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,41,0,24919.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,117,4320.000000,41,0,1179.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4352.010000,41,0,-1.000000,2000.869000,extended,nbiot,180 +on4,0,0,24,1,0,731,4320.000000,41,0,14468.020000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,41,0,7577.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,385,4320.000000,41,0,7507.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,42,0,17276.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,42,0,34698.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4358.010000,42,0,-1.000000,1977.262500,extended,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,42,0,60852.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,42,0,28022.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1351,4320.000000,42,0,27953.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,42,0,31105.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1470,4320.000000,42,0,31145.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,42,0,260.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,219,4320.000000,42,0,6004.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,42,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,1082,4320.000000,43,0,24637.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,43,0,46864.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,43,0,19953.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,38,4320.000000,43,0,151.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3060,4320.000000,43,0,64438.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,43,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,43,0,16023.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2525,4320.000000,43,0,53373.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,738,4320.000000,43,0,16063.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2340,4320.000000,43,0,50200.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,527,4347.010000,43,0,9006.010000,1764.810500,extended,nbiot,180 +on5,0,0,24,1,0,703,4343.010000,43,0,11377.010000,1763.210500,extended,nbiot,180 +on0,1,11,24,0,0,0,4356.020000,43,0,-1.000000,2028.479500,extended,nbiot,180 +on0,1,9,24,0,0,0,4324.010000,44,0,-1.000000,1963.662500,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,44,0,4409.010000,1754.006500,extended,nbiot,180 +on2,0,0,23,1,0,1260,4225.000000,44,0,28581.010000,1716.006500,extended,nbiot,180 +on1,0,0,24,1,0,1021,4320.000000,44,0,20841.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1079,4359.030000,44,0,20881.030000,1769.618500,extended,nbiot,180 +on3,0,0,24,1,0,975,4320.000000,44,0,20801.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1620,4320.000000,44,0,32494.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,44,0,28687.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,22,4320.000000,44,0,1578.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1853,4320.000000,44,0,38601.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,45,0,20025.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,45,0,11167.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,45,0,21778.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,45,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4331.010000,45,0,-1.000000,2018.475500,extended,nbiot,180 +on2,0,0,24,1,0,350,4350.020000,45,0,4774.020000,1766.014500,extended,nbiot,180 +on1,0,0,24,1,0,2061,4320.000000,45,0,42395.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,45,0,28551.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,205,4320.000000,45,0,4734.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,172,4352.010000,45,0,1594.010000,1766.810500,extended,nbiot,180 +on5,0,0,24,1,0,1396,4320.000000,45,0,28486.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2592,4320.000000,45,0,53651.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1825,4320.000000,45,0,37632.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4330.010000,46,0,-1.000000,2018.075500,extended,nbiot,180 +on8,0,0,24,1,0,3385,4325.010000,46,0,65017.010000,1756.010500,extended,nbiot,180 +on5,0,0,24,1,0,2160,4320.000000,46,0,44011.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,207,4320.000000,46,0,6368.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3600,4320.000000,46,0,74738.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3420,4320.000000,46,0,70276.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,46,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,3960,4320.000000,46,0,79439.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,46,0,18309.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,46,0,22044.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,71,4320.000000,46,0,2723.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,46,0,22003.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,46,0,60511.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,47,0,7440.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,47,0,2597.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1508,4320.000000,47,0,29956.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,846,4320.000000,47,0,15992.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1800,4320.000000,47,0,37845.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,966,4320.000000,47,0,21482.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1749,4320.000000,47,0,34705.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,929,4320.000000,47,0,21522.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4390.030000,47,0,-1.000000,2068.090000,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,47,0,24103.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2929,4320.000000,47,0,60014.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,47,0,24206.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,782,4320.000000,47,0,16032.020000,1754.006500,extended,nbiot,180 +on2,0,0,23,1,0,479,4265.000000,48,0,7435.010000,1732.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4335.010000,48,0,-1.000000,2046.082000,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,48,0,2016.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2780,4320.000000,48,0,56770.020000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,207,4320.000000,48,0,4071.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,48,0,15976.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,48,0,26645.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,294,4320.000000,48,0,4031.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,548,4320.000000,48,0,12724.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,48,0,34746.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2129,4329.010000,48,0,42783.010000,1757.610500,extended,nbiot,180 +on10,0,0,24,1,0,2832,4320.000000,48,0,56730.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,48,0,12835.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,804,4320.000000,49,0,15462.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,102,4320.000000,49,0,2438.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,212,4320.000000,49,0,4328.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3806,4320.000000,49,0,77525.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,49,0,-1.000000,1962.058500,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,49,0,20812.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,49,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,89,4320.000000,49,0,2398.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,49,0,4288.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,49,0,23680.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,49,0,64521.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,50,0,56115.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4335.020000,50,0,-1.000000,2046.086000,extended,nbiot,180 +on2,0,0,24,1,0,24,4320.000000,50,0,3654.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,50,0,3752.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,50,0,1050.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1944,4324.010000,50,0,37603.010000,1755.610500,extended,nbiot,180 +on5,0,0,24,1,0,2862,4342.010000,50,0,56075.010000,1762.810500,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,50,0,20962.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,50,0,28876.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,45,4320.000000,50,0,907.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,124,4320.000000,50,0,947.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3337,4320.000000,50,0,66217.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,50,0,9204.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,51,0,35225.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,51,0,12713.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,51,0,-1.000000,2014.071500,extended,nbiot,180 +on6,0,0,24,1,0,1629,4320.000000,51,0,35265.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,51,0,42356.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1557,4320.000000,51,0,29191.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,506,4326.010000,51,0,8725.010000,1756.410500,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,51,0,20210.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1078,4358.010000,51,0,21719.010000,1769.210500,extended,nbiot,180 +on12,0,0,24,1,0,852,4320.000000,51,0,14836.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,289,4320.000000,51,0,5097.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,51,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,61,4320.000000,51,0,3176.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,52,0,23419.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,52,0,1663.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1405,4325.010000,52,0,28978.010000,1756.010500,extended,nbiot,180 +on3,0,0,24,1,0,293,4320.000000,52,0,4866.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,609,4320.000000,52,0,14101.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1071,4351.010000,52,0,19771.010000,1766.410500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,52,0,-1.000000,2040.078000,extended,nbiot,180 +on2,0,0,24,1,0,3553,4320.000000,52,0,70870.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,52,0,4960.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,777,4320.000000,52,0,14896.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,52,0,41908.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2700,4320.000000,52,0,55317.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,461,4320.000000,52,0,8767.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,53,0,5165.010000,1754.006500,extended,nbiot,180 +on10,0,0,23,1,0,540,4279.000000,53,0,12069.010000,1737.606500,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,53,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,53,0,10472.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,53,0,27281.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,293,4320.000000,53,0,5021.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,53,0,15618.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,53,0,37902.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,53,0,51476.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2228,4320.000000,53,0,44382.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2142,4342.010000,53,0,42539.010000,1762.810500,extended,nbiot,180 +on0,1,11,24,0,0,0,4350.030000,53,0,-1.000000,2026.083500,extended,nbiot,180 +on1,0,0,24,1,0,725,4320.000000,53,0,15658.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3989,4320.000000,54,0,80510.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,54,0,1032.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1553,4320.000000,54,0,32057.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1297,4320.000000,54,0,28803.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1390,4320.000000,54,0,28843.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,54,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,54,0,61446.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1157,4320.000000,54,0,24986.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,54,0,32218.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,54,0,25105.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4341.010000,54,0,-1.000000,2022.475500,extended,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,54,0,48892.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2766,4320.000000,54,0,55934.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,55,0,42199.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1161,4320.000000,55,0,24261.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,55,0,42343.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1121,4320.000000,55,0,24221.010000,1754.006500,extended,nbiot,180 +on5,0,0,23,1,0,164,4289.010000,55,0,3230.010000,1741.610500,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,55,0,14204.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,600,4320.000000,55,0,14084.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1462,4320.000000,55,0,30894.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1620,4320.000000,55,0,33058.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2340,4320.000000,55,0,48471.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4331.010000,55,0,-1.000000,1992.469000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,55,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,56,0,4449.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1525,4320.000000,56,0,30348.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,56,0,1229.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,437,4320.000000,56,0,7986.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,2803,4320.000000,56,0,55775.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,8,24,0,0,0,4349.010000,56,0,-1.000000,1947.656000,extended,nbiot,180 +on12,0,0,24,1,0,652,4320.000000,56,0,12645.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,56,0,36901.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1032,4320.000000,56,0,20899.010000,1754.006500,extended,nbiot,180 +on3,0,0,23,1,0,1080,4281.000000,57,0,25222.010000,1738.406500,extended,nbiot,180 +on0,1,10,24,0,0,0,4366.030000,57,0,-1.000000,2006.477000,extended,nbiot,180 +on10,0,0,24,1,0,1339,4320.000000,57,0,25818.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,57,0,51159.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1275,4320.000000,57,0,25858.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,615,4320.000000,57,0,11149.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,457,4320.000000,57,0,10184.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3316,4320.000000,57,0,68496.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,57,0,11298.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,57,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,1650,4320.000000,57,0,35162.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,520,4340.020000,57,0,10224.020000,1762.014500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,55,4320.000000,58,0,3320.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,58,0,19296.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,58,0,11966.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,9,4320.000000,58,0,3280.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,1209,4320.000000,58,0,22676.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,58,0,34651.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,58,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,9,24,0,0,0,4363.020000,58,0,-1.000000,1979.266500,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,58,0,50560.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1919,4320.000000,58,0,36368.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,425,4320.000000,58,0,8936.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,19,4320.000000,59,0,458.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2501,4341.010000,59,0,47476.010000,1762.410500,extended,nbiot,180 +on5,0,0,24,1,0,2608,4320.000000,59,0,51211.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1039,4320.000000,59,0,18960.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,754,4320.000000,59,0,17180.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2040.078000,extended,nbiot,180 +on2,0,0,24,1,0,1505,4320.000000,59,0,31522.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2593,4320.000000,59,0,51171.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,59,0,9336.010000,1754.006500,extended,nbiot,180 +on11,0,0,23,1,0,1620,4278.000000,59,0,35552.010000,1737.206500,extended,nbiot,180 +on7,0,0,24,1,0,1064,4344.020000,59,0,19000.020000,1763.614500,extended,nbiot,180 +on1,0,0,24,1,0,79,4320.000000,59,0,418.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,59,0,17140.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,197,4320.000000,60,0,4629.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,60,0,9414.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,3960,4320.000000,60,0,82284.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,60,0,15575.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,238,4320.000000,60,0,4589.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3420,4320.000000,60,0,69225.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,60,0,3462.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,60,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,60,0,14051.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,4137,4357.010000,60,0,82155.010000,1768.810500,extended,nbiot,180 +on0,1,11,24,0,0,0,4338.020000,60,0,-1.000000,2021.279500,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,60,0,4732.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2686,4346.010000,60,0,52239.010000,1764.410500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,61,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,61,0,32360.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,61,0,7599.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1448,4320.000000,61,0,32215.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,268,4320.000000,61,0,6832.010000,1754.006500,extended,nbiot,180 +on4,0,0,23,1,0,2636,4296.010000,61,0,52278.010000,1744.410500,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,61,0,43151.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2700,4320.000000,61,0,54120.010000,1754.006500,extended,nbiot,180 +on9,0,0,23,1,0,211,4251.000000,61,0,6872.020000,1726.406500,extended,nbiot,180 +on0,1,10,24,0,0,0,4325.010000,61,0,-1.000000,1990.069000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,61,0,3177.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,61,0,26450.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,62,0,17906.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2751,4320.000000,62,0,56742.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1440,4320.000000,62,0,30213.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3344,4320.000000,62,0,65906.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,4183,4320.000000,62,0,84826.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,62,0,21575.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4357.020000,62,0,-1.000000,2028.879500,extended,nbiot,180 +on1,0,0,24,1,0,1771,4331.010000,62,0,32811.010000,1758.410500,extended,nbiot,180 +on4,0,0,24,1,0,195,4320.000000,62,0,4155.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,62,0,51757.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,525,4345.010000,62,0,8101.010000,1764.010500,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,62,0,8216.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3105,4320.000000,63,0,61681.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,63,0,23650.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3447,4320.000000,63,0,70075.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,99,4320.000000,63,0,427.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1661,4320.000000,63,0,34280.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,893,4353.010000,63,0,14882.010000,1767.210500,extended,nbiot,180 +on0,1,12,24,0,0,0,4326.010000,63,0,-1.000000,2042.482000,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,63,0,23549.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,497,4320.000000,63,0,7416.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,800,4320.000000,63,0,14922.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,826,4320.000000,63,0,14962.030000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,63,0,11503.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1917,4320.000000,63,0,36571.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4352.010000,64,0,-1.000000,2026.875500,extended,nbiot,180 +on12,0,0,24,1,0,566,4320.000000,64,0,14199.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,64,0,14489.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3420,4320.000000,64,0,68990.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1064,4344.010000,64,0,19698.010000,1763.610500,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,64,0,14246.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,64,0,61328.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,2076,4320.000000,64,0,43151.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2160,4320.000000,64,0,43323.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1198,4320.000000,64,0,23102.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1623,4320.000000,64,0,34797.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3870,4320.000000,64,0,77314.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,65,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,65,0,53253.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,65,0,19744.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,930,4320.000000,65,0,19784.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1696,4320.000000,65,0,35966.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,183,4320.000000,65,0,6408.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4327.010000,65,0,-1.000000,2016.875500,extended,nbiot,180 +on11,0,0,24,1,0,581,4320.000000,65,0,14143.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,830,4320.000000,65,0,17313.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,822,4320.000000,65,0,17273.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,705,4345.020000,65,0,14183.020000,1764.014500,extended,nbiot,180 +on1,0,0,24,1,0,1182,4320.000000,65,0,24414.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1581,4321.010000,65,0,31575.010000,1754.410500,extended,nbiot,180 +on7,0,0,24,1,0,886,4346.010000,66,0,15439.010000,1764.410500,extended,nbiot,180 +on10,0,0,24,1,0,170,4350.020000,66,0,997.020000,1766.014500,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,66,0,15482.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1241,4341.010000,66,0,22135.010000,1762.410500,extended,nbiot,180 +on2,0,0,24,1,0,678,4320.000000,66,0,14276.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,67,4320.000000,66,0,957.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,14,4320.000000,66,0,1037.030000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,66,0,7768.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,66,0,7704.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,66,0,-1.000000,2040.078000,extended,nbiot,180 +on8,0,0,24,1,0,3625,4320.000000,66,0,75023.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,66,0,27693.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,66,0,14381.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1003,4320.000000,67,0,20070.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,67,0,42800.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,43,4320.000000,67,0,2836.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2880,4320.000000,67,0,58628.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2411,4320.000000,67,0,46917.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,67,0,-1.000000,2014.071500,extended,nbiot,180 +on6,0,0,24,1,0,917,4320.000000,67,0,20110.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,72,4320.000000,67,0,2916.030000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,67,0,6050.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,67,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,141,4321.020000,67,0,2876.020000,1754.414500,extended,nbiot,180 +on9,0,0,23,1,0,1620,4275.000000,67,0,33117.010000,1736.006500,extended,nbiot,180 +on2,0,0,24,1,0,407,4320.000000,67,0,9705.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,68,0,1059.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1460,4320.000000,68,0,32277.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1980,4320.000000,68,0,40401.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,68,0,20180.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,68,0,37099.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3780,4320.000000,68,0,78029.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,68,0,1135.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4380.020000,68,0,-1.000000,2064.086000,extended,nbiot,180 +on11,0,0,24,1,0,1110,4320.000000,68,0,22166.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,68,0,8792.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3366,4320.000000,68,0,67599.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,68,0,5889.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,68,0,32347.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,69,0,28396.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,69,0,13159.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,304,4320.000000,69,0,4840.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,919,4320.000000,69,0,19433.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,69,0,-1.000000,1962.058500,extended,nbiot,180 +on8,0,0,24,1,0,2660,4320.010000,69,0,51673.010000,1754.010500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,720,4320.000000,69,0,18013.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,992,4320.000000,69,0,19473.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1311,4320.000000,69,0,28265.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,69,0,19524.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,70,0,33809.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,907,4320.000000,70,0,18424.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,70,0,42415.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,70,0,26542.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3996,4320.000000,70,0,81632.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,70,0,197.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1020,4320.000000,70,0,18464.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4324.020000,70,0,-1.000000,2041.686000,extended,nbiot,180 +on11,0,0,24,1,0,34,4320.000000,70,0,237.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2347,4320.000000,70,0,47068.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,847,4320.000000,70,0,16424.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,70,0,18513.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,35,4320.000000,70,0,93.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2340,4320.000000,71,0,50283.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,573,4320.000000,71,0,13308.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,71,0,7676.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,71,0,6171.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,690,4330.020000,71,0,13348.020000,1758.014500,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,71,0,2804.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4370.020000,71,0,-1.000000,1982.066500,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,71,0,35212.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,782,4320.000000,71,0,16761.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,3060,4320.000000,71,0,62492.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2094,4320.000000,72,0,41123.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1571,4320.000000,72,0,30141.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1397,4320.000000,72,0,28059.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1771,4331.010000,72,0,34677.010000,1758.410500,extended,nbiot,180 +on5,0,0,24,1,0,640,4320.000000,72,0,13085.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,72,0,1685.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,170,4350.010000,72,0,1553.010000,1766.010500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,72,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1105,4320.000000,72,0,23603.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2340,4320.000000,72,0,47669.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1179,4320.000000,72,0,23643.020000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,72,0,-1.000000,1988.065000,extended,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,73,0,37812.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1,4320.000000,73,0,919.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,414,4320.000000,73,0,8728.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,73,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,754,4320.000000,73,0,15551.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,73,0,21572.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,73,0,32127.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4395.060000,73,0,-1.000000,2044.095500,extended,nbiot,180 +on9,0,0,24,1,0,146,4326.010000,73,0,879.010000,1756.410500,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,73,0,15511.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3009,4320.000000,73,0,60679.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,73,0,63364.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,73,0,25426.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,56,4320.000000,74,0,1016.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,700,4340.010000,74,0,13138.010000,1762.010500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,74,0,-1.000000,1988.065000,extended,nbiot,180 +on2,0,0,24,1,0,89,4320.000000,74,0,976.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,522,4342.010000,74,0,10387.010000,1762.810500,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,74,0,19779.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,74,0,10480.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2880,4320.000000,74,0,58307.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,74,0,23241.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,3600,4320.000000,74,0,74046.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,74,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,74,0,23300.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,249,4320.000000,75,0,4565.010000,1754.006500,extended,nbiot,180 +on7,0,0,23,1,0,2092,4273.000000,75,0,41494.010000,1735.206500,extended,nbiot,180 +on10,0,0,24,1,0,3010,4320.000000,75,0,60163.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,75,0,41633.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,493,4320.000000,75,0,9337.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1026,4320.000000,75,0,18917.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3960,4320.000000,75,0,81774.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2350,4320.000000,75,0,47643.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,937,4320.000000,75,0,18997.030000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1056,4336.020000,75,0,18957.020000,1760.414500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,75,0,9377.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,75,0,39077.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,75,0,-1.000000,2040.078000,extended,nbiot,180 +on6,0,0,24,1,0,604,4320.000000,76,0,12124.010000,1754.006500,extended,nbiot,180 +on11,0,0,23,1,0,205,4279.000000,76,0,4206.010000,1737.606500,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,76,0,7716.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,76,0,51444.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,3928,4328.010000,76,0,76249.010000,1757.210500,extended,nbiot,180 +on10,0,0,24,1,0,2438,4320.000000,76,0,50242.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1027,4320.000000,76,0,18773.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1654,4320.000000,76,0,35175.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4357.010000,76,0,-1.000000,2054.882000,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,76,0,4272.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1981,4320.000000,76,0,40363.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,469,4320.000000,76,0,7539.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2023,4320.000000,76,0,40403.020000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1214,4320.000000,77,0,22666.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,48,4320.000000,77,0,3008.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,77,0,5402.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2293,4320.000000,77,0,43511.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,77,0,5519.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,445,4320.000000,77,0,9683.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,578,4320.000000,77,0,13361.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3780,4320.000000,77,0,78008.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,77,0,30704.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,77,0,43667.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,168,4348.010000,77,0,2968.010000,1765.210500,extended,nbiot,180 +on0,1,12,24,0,0,0,4428.060000,77,0,-1.000000,2083.302000,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,77,0,13321.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,78,0,45831.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2713,4320.000000,78,0,57415.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,78,0,31420.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,78,0,1917.010000,1754.006500,extended,nbiot,180 +on2,0,0,23,1,0,3804,4217.000000,78,0,75932.010000,1712.806500,extended,nbiot,180 +on7,0,0,24,1,0,1600,4340.010000,78,0,31330.010000,1762.010500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,78,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,154,4334.010000,78,0,1812.010000,1759.610500,extended,nbiot,180 +on3,0,0,24,1,0,1827,4320.000000,78,0,37597.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,979,4320.000000,78,0,18464.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3024,4324.010000,78,0,59810.010000,1755.610500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,78,0,-1.000000,1988.065000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,79,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,79,0,7744.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,79,0,52512.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,516,4336.010000,79,0,7687.010000,1760.410500,extended,nbiot,180 +on10,0,0,24,1,0,2164,4320.000000,79,0,45685.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1949,4329.010000,79,0,37966.010000,1757.610500,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,79,0,13829.010000,1754.006500,extended,nbiot,180 +on11,0,0,23,1,0,1190,4302.000000,79,0,23748.020000,1746.806500,extended,nbiot,180 +on2,0,0,24,1,0,3600,4320.000000,79,0,73075.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1173,4320.000000,79,0,23708.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,79,0,7789.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,79,0,-1.000000,1988.065000,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,80,0,22113.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,80,0,19130.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1254,4354.010000,80,0,22016.010000,1767.610500,extended,nbiot,180 +on11,0,0,24,1,0,793,4320.000000,80,0,16156.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4327.010000,80,0,-1.000000,2042.882000,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,80,0,11674.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,82,4320.000000,80,0,849.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1682,4320.000000,80,0,34710.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,853,4320.000000,80,0,16196.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,392,4320.000000,80,0,10755.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1328,4320.000000,80,0,27305.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,80,0,37021.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1362,4320.000000,80,0,27345.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,910,4320.000000,81,0,19831.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,81,0,34473.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,81,0,11918.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1830,4320.000000,81,0,36233.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,394,4320.000000,81,0,9712.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,831,4320.000000,81,0,16748.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,81,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,305,4320.000000,81,0,6193.010000,1754.006500,extended,nbiot,180 +on11,0,0,23,1,0,1371,4152.000000,81,0,25846.010000,1686.806500,extended,nbiot,180 +on9,0,0,24,1,0,1102,4320.000000,81,0,22179.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1724,4320.000000,81,0,34398.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,81,0,-1.000000,2014.071500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,81,0,2949.010000,1754.006500,extended,nbiot,180 +on10,0,0,23,0,0,4271,4271.000000,82,0,-1.000000,1708.400000,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,82,0,17326.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3960,4320.000000,82,0,79250.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,82,0,13137.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,82,0,23008.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,721,4320.000000,82,0,17366.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2025,4320.000000,82,0,41053.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1620,4320.000000,82,0,33575.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,438,4320.000000,82,0,7643.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1333,4320.000000,82,0,25581.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,82,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4336.020000,82,0,-1.000000,1994.473000,extended,nbiot,180 +on2,0,0,24,1,0,755,4320.000000,82,0,17248.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,204,4320.000000,83,0,5241.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,996,4320.000000,83,0,21473.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,83,0,65973.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,83,0,45529.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,83,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,387,4320.000000,83,0,8566.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,83,0,35495.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,18,4320.000000,83,0,3209.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2094,4320.000000,83,0,42517.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,83,0,-1.000000,1988.065000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,83,0,3317.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,83,0,8526.010000,1754.006500,extended,nbiot,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,84,0,15137.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2700,4320.000000,84,0,56293.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,84,0,21272.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,940,4320.000000,84,0,21133.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1227,4327.010000,84,0,24226.010000,1756.810500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,84,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,1282,4320.000000,84,0,28389.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,966,4320.000000,84,0,21173.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,84,0,5032.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4349.010000,84,0,-1.000000,2025.675500,extended,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,84,0,32191.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,84,0,21217.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3240,4320.000000,84,0,65519.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1341,4320.000000,85,0,28447.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,85,0,28592.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1676,4320.000000,85,0,35795.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1989,4320.000000,85,0,41291.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,849,4320.000000,85,0,17824.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3420,4320.000000,85,0,70730.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2700,4320.000000,85,0,54920.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,612,4320.000000,85,0,14362.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4345.020000,85,0,-1.000000,2050.086000,extended,nbiot,180 +on4,0,0,23,1,0,0,4264.000000,85,0,1018.010000,1731.606500,extended,nbiot,180 +on5,0,0,24,1,0,93,4320.000000,85,0,916.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,85,0,30186.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2474,4320.000000,85,0,48176.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,669,4320.000000,86,0,12018.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4329.010000,86,0,-1.000000,2043.682000,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,86,0,40859.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1265,4320.000000,86,0,25692.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,805,4320.000000,86,0,14945.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,70,4320.000000,86,0,526.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1230,4330.010000,86,0,22049.010000,1758.010500,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,86,0,4110.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,203,4320.000000,86,0,4150.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,86,0,675.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,782,4320.000000,86,0,14985.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,261,4320.000000,86,0,4038.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1128,4320.000000,86,0,22089.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,87,0,36070.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2124,4324.010000,87,0,39995.010000,1755.610500,extended,nbiot,180 +on4,0,0,24,1,0,459,4320.000000,87,0,8748.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4348.010000,87,0,-1.000000,2051.282000,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,87,0,40053.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,87,0,18911.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,87,0,5485.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,922,4320.000000,87,0,18855.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2520,4320.000000,87,0,51434.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,58,4320.000000,87,0,637.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1204,4320.000000,87,0,24025.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1144,4320.000000,87,0,24065.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,87,0,14177.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1960,4340.010000,88,0,39405.010000,1762.010500,extended,nbiot,180 +on3,0,0,24,1,0,358,4358.010000,88,0,4448.010000,1769.210500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,88,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,88,0,3350.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4354.010000,88,0,-1.000000,2027.675500,extended,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,88,0,59235.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1099,4320.000000,88,0,21805.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,552,4320.000000,88,0,13405.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1116,4320.000000,88,0,21845.020000,1754.006500,extended,nbiot,180 +on6,0,0,23,1,0,540,4267.000000,88,0,13462.010000,1732.806500,extended,nbiot,180 +on1,0,0,24,1,0,288,4320.000000,88,0,4488.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1440,4320.000000,88,0,29186.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,720,4320.000000,88,0,17839.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,482,4320.000000,89,0,7395.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,3537,4320.000000,89,0,69910.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2788,4320.000000,89,0,56258.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,89,0,7450.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,89,0,39795.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,64,4320.000000,89,0,1303.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,89,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,155,4335.010000,89,0,1263.010000,1760.010500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,89,0,3897.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2880,4320.000000,89,0,60965.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,89,0,-1.000000,1988.065000,extended,nbiot,180 +on5,0,0,24,1,0,698,4338.010000,89,0,12564.010000,1761.210500,extended,nbiot,180 +on9,0,0,24,1,0,1470,4320.000000,90,0,29407.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,4140,4320.000000,90,0,82856.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,90,0,9762.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2324,4344.010000,90,0,44168.010000,1763.610500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,90,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,23,1,0,1736,4262.000000,90,0,32827.010000,1730.806500,extended,nbiot,180 +on7,0,0,24,1,0,140,4320.010000,90,0,182.010000,1754.010500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,90,0,32950.010000,1754.006500,extended,nbiot,180 +on3,0,0,23,1,0,2160,4277.000000,90,0,44262.010000,1736.806500,extended,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,90,0,25109.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4370.020000,90,0,-1.000000,2034.079500,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,90,0,29585.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,90,0,21232.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,91,0,11274.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1210,4320.000000,91,0,23104.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3960,4320.000000,91,0,81777.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4383.020000,91,0,-1.000000,2039.279500,extended,nbiot,180 +on9,0,0,24,1,0,444,4320.000000,91,0,7923.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,91,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,3240,4320.000000,91,0,68043.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,91,0,17408.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3060,4320.000000,91,0,62027.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,91,0,42023.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,130,4320.000000,91,0,2922.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,91,0,3051.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,900,4320.000000,91,0,18978.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,92,0,3567.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,7,24,0,0,0,4320.000000,92,0,-1.000000,1910.045500,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,92,0,9660.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,92,0,6037.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,92,0,62101.010000,1754.006500,extended,nbiot,180 +on4,0,0,23,1,0,1597,4245.010000,92,0,32580.010000,1724.010500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,3240,4320.000000,92,0,68143.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1027,4320.000000,92,0,18364.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,93,0,39282.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1055,4335.010000,93,0,18444.010000,1760.010500,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,93,0,9174.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,764,4320.000000,93,0,15133.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,852,4320.000000,93,0,15093.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,93,0,5632.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,93,0,9299.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,93,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,23,1,0,0,4276.000000,93,0,1543.010000,1736.406500,extended,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,93,0,-1.000000,1962.058500,extended,nbiot,180 +on8,0,0,24,1,0,2921,4320.000000,93,0,60727.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,94,0,19518.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2340,4320.000000,94,0,48898.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,94,0,8562.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,132,4320.000000,94,0,950.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,94,0,11297.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,94,0,19429.010000,1754.006500,extended,nbiot,180 +on4,0,0,23,1,0,846,4306.010000,94,0,15903.010000,1748.410500,extended,nbiot,180 +on0,1,11,24,0,0,0,4348.040000,94,0,-1.000000,2025.287500,extended,nbiot,180 +on3,0,0,23,1,0,312,4315.000000,94,0,4297.010000,1752.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,94,0,28720.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2789,4320.000000,94,0,55518.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,94,0,11346.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,926,4320.000000,95,0,20201.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2942,4320.000000,95,0,59237.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,95,0,35693.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,302,4320.000000,95,0,5672.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,95,0,-1.000000,1988.065000,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,95,0,73.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,800,4320.000000,95,0,17190.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,95,0,22238.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2451,4320.000000,95,0,49947.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,95,0,9556.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,256,4320.000000,95,0,5712.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,95,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,23,1,0,0,4316.000000,96,0,2440.010000,1752.406500,extended,nbiot,180 +on11,0,0,23,1,0,2926,4295.000000,96,0,59819.010000,1744.006500,extended,nbiot,180 +on2,0,0,24,1,0,1727,4320.000000,96,0,36081.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,96,0,15986.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,282,4320.000000,96,0,6942.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,96,0,36160.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,427,4320.000000,96,0,10244.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1503,4320.000000,96,0,29737.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,96,0,2383.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4335.010000,96,0,-1.000000,2046.082000,extended,nbiot,180 +on3,0,0,24,1,0,3240,4320.000000,96,0,67249.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2440,4320.000000,96,0,47290.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,96,0,7060.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,285,4320.000000,97,0,5700.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2098,4320.000000,97,0,42121.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,97,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,97,0,28619.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,778,4320.000000,97,0,17859.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,97,0,17994.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,784,4320.000000,97,0,17899.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,97,0,5758.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4349.010000,97,0,-1.000000,2025.675500,extended,nbiot,180 +on7,0,0,24,1,0,56,4320.000000,97,0,2174.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1247,4347.010000,97,0,23280.010000,1764.810500,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,97,0,23407.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,97,0,2343.010000,1754.006500,extended,nbiot,180 +on4,0,0,23,1,0,720,4201.000000,98,0,16948.010000,1706.406500,extended,nbiot,180 +on9,0,0,24,1,0,3240,4320.000000,98,0,68375.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,98,0,41746.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1180,4320.000000,98,0,25026.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,497,4320.000000,98,0,10118.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,98,0,11704.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3060,4320.000000,98,0,62366.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,98,0,27920.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1436,4356.010000,98,0,27831.010000,1768.410500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,98,0,35522.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4424.040000,98,0,-1.000000,2081.694000,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,98,0,2694.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,514,4334.020000,98,0,10158.020000,1759.614500,extended,nbiot,180 +on1,0,0,24,1,0,36,4320.000000,99,0,882.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,99,0,842.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,203,4320.000000,99,0,5190.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1149,4320.000000,99,0,24886.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3060,4320.000000,99,0,61956.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,99,0,13012.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,99,0,17041.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,99,0,42117.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,99,0,5275.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,99,0,950.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4355.010000,99,0,-1.000000,2028.075500,extended,nbiot,180 +on9,0,0,24,1,0,1847,4320.000000,99,0,39222.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,100,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,2156,4356.010000,100,0,43135.010000,1768.410500,extended,nbiot,180 +on2,0,0,24,1,0,127,4320.000000,100,0,671.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,100,0,37677.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2700,4320.000000,100,0,55137.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,100,0,-1.000000,2014.071500,extended,nbiot,180 +on6,0,0,24,1,0,3902,4320.000000,100,0,77866.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,490,4320.000000,100,0,8915.030000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,555,4320.000000,100,0,12812.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,100,0,48036.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1439,4359.010000,100,0,28845.010000,1769.610500,extended,nbiot,180 +on3,0,0,24,1,0,369,4320.000000,100,0,8835.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,494,4320.000000,100,0,8875.020000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,3780,4320.000000,101,0,77783.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,316,4320.000000,101,0,7327.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4399.040000,101,0,-1.000000,2071.694000,extended,nbiot,180 +on7,0,0,24,1,0,2160,4320.000000,101,0,45580.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,73,4320.000000,101,0,3027.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,101,0,7453.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,101,0,3138.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,101,0,12930.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,101,0,26559.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3058,4358.010000,101,0,61107.010000,1769.210500,extended,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,101,0,39936.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,263,4320.000000,101,0,7287.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2160,4320.000000,101,0,45466.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3341,4320.000000,102,0,66299.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,102,0,16437.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,102,0,51467.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,102,0,42490.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,102,0,61199.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2554,4320.000000,102,0,51401.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2296,4320.000000,102,0,46032.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1980,4320.000000,102,0,42424.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,464,4320.000000,102,0,8338.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4376.030000,102,0,-1.000000,2036.483500,extended,nbiot,180 +on11,0,0,24,1,0,2340,4320.000000,102,0,48861.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3802,4320.000000,102,0,76783.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,2080,4320.000000,103,0,41136.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2168,4320.000000,103,0,46804.010000,1754.006500,extended,nbiot,180 +on5,0,0,23,1,0,529,4308.010000,103,0,9994.010000,1749.210500,extended,nbiot,180 +on2,0,0,24,1,0,3223,4343.010000,103,0,64377.010000,1763.210500,extended,nbiot,180 +on4,0,0,24,1,0,2520,4320.000000,103,0,52677.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,103,0,-1.000000,1988.065000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,103,0,15645.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,103,0,19804.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,103,0,38682.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,103,0,26402.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,103,0,10110.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,104,0,37878.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1127,4320.000000,104,0,24585.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,104,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4360.020000,104,0,-1.000000,2030.079500,extended,nbiot,180 +on8,0,0,24,1,0,742,4320.000000,104,0,15340.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,104,0,50901.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1961,4341.010000,104,0,37755.010000,1762.410500,extended,nbiot,180 +on6,0,0,24,1,0,1440,4320.000000,104,0,31725.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,339,4339.010000,104,0,5576.010000,1761.610500,extended,nbiot,180 +on2,0,0,24,1,0,595,4320.000000,104,0,12392.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3027,4327.010000,104,0,60750.010000,1756.810500,extended,nbiot,180 +on1,0,0,24,1,0,1080,4320.000000,104,0,24726.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,104,0,1955.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,105,0,41987.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,252,4320.000000,105,0,6290.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1413,4333.010000,105,0,28836.010000,1759.210500,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,105,0,12662.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,105,0,6433.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4337.030000,105,0,-1.000000,1994.877000,extended,nbiot,180 +on10,0,0,24,1,0,4140,4320.000000,105,0,84915.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,105,0,38085.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,105,0,1827.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,105,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1977,4357.010000,105,0,37941.010000,1768.810500,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,105,0,22314.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3142,4320.000000,106,0,62961.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2340,4320.000000,106,0,49192.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,106,0,11497.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,106,0,46967.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,98,4320.000000,106,0,3287.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,825,4320.000000,106,0,16820.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,35,4320.000000,106,0,3247.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,106,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,106,0,18309.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,206,4320.000000,106,0,5577.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2139,4339.010000,106,0,41432.010000,1761.610500,extended,nbiot,180 +on0,1,10,24,0,0,0,4322.010000,106,0,-1.000000,1988.869000,extended,nbiot,180 +on1,0,0,24,1,0,907,4320.000000,107,0,18535.020000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4334.010000,107,0,-1.000000,1967.662500,extended,nbiot,180 +on8,0,0,24,1,0,1068,4348.010000,107,0,18495.010000,1765.210500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,107,0,4573.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,107,0,24142.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1743,4320.000000,107,0,34324.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3991,4320.000000,107,0,79757.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,484,4320.000000,107,0,8924.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,492,4320.000000,107,0,8964.020000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2261,4320.000000,107,0,43517.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,108,0,25978.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,243,4320.000000,108,0,6382.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,108,0,6491.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1620,4320.000000,108,0,35492.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1546,4320.000000,108,0,31030.010000,1754.006500,extended,nbiot,180 +on1,0,0,23,1,0,900,4300.000000,108,0,19148.010000,1746.006500,extended,nbiot,180 +on3,0,0,24,1,0,1360,4320.000000,108,0,25933.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,108,0,14133.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,899,4359.010000,108,0,15475.010000,1769.610500,extended,nbiot,180 +on0,1,12,24,0,0,0,4392.030000,108,0,-1.000000,2068.890000,extended,nbiot,180 +on10,0,0,24,1,0,384,4320.000000,108,0,9945.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2212,4320.000000,108,0,45793.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,108,0,6557.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,935,4320.000000,109,0,20162.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1910,4320.000000,109,0,38665.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,101,4320.000000,109,0,845.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,109,0,-1.000000,1962.058500,extended,nbiot,180 +on6,0,0,24,1,0,2311,4331.010000,109,0,44398.010000,1758.410500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,109,0,6930.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,109,0,38740.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,109,0,11908.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,109,0,8354.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,599,4320.000000,109,0,11822.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,109,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,8,24,0,0,0,4349.010000,110,0,-1.000000,1947.656000,extended,nbiot,180 +on11,0,0,24,1,0,539,4359.010000,110,0,9657.010000,1769.610500,extended,nbiot,180 +on6,0,0,24,1,0,3378,4320.000000,110,0,68116.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,1316,4320.000000,110,0,26511.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,27,4320.000000,110,0,2285.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,332,4332.010000,110,0,6164.010000,1758.810500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,110,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,147,4327.020000,110,0,2325.020000,1756.814500,extended,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,110,0,47870.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,222,4320.000000,110,0,6204.020000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4336.010000,111,0,-1.000000,1994.469000,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,111,0,30155.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3047,4347.010000,111,0,60265.010000,1764.810500,extended,nbiot,180 +on10,0,0,24,1,0,1120,4320.000000,111,0,24248.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,111,0,47636.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,459,4320.000000,111,0,7525.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,3092,4320.000000,111,0,62711.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,111,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,1260,4320.000000,111,0,27451.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2926,4320.000000,111,0,60305.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2110,4320.000000,111,0,41380.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1919,4320.000000,111,0,38004.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2064,4320.000000,112,0,39922.010000,1754.006500,extended,nbiot,180 +on0,1,8,24,0,0,0,4320.000000,112,0,-1.000000,1936.052000,extended,nbiot,180 +on11,0,0,24,1,0,1980,4320.000000,112,0,40011.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,37,4320.000000,112,0,1296.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,1984,4320.000000,112,0,39962.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1328,4320.000000,112,0,26724.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,1779,4339.010000,112,0,32897.010000,1761.610500,extended,nbiot,180 +on5,0,0,24,1,0,3042,4342.010000,112,0,60034.010000,1762.810500,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,112,0,18995.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,3600,4320.000000,113,0,73882.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1620,4320.000000,113,0,34066.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2700,4320.000000,113,0,57367.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,113,0,38159.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,677,4320.000000,113,0,11299.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,60,4320.000000,113,0,478.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,784,4320.000000,113,0,14702.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4378.030000,113,0,-1.000000,2063.290000,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,113,0,20475.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2348,4320.000000,113,0,50046.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2055,4320.000000,113,0,41403.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2233,4320.000000,113,0,43623.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3197,4320.000000,113,0,62991.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3204,4324.010000,114,0,64333.010000,1755.610500,extended,nbiot,180 +on5,0,0,24,1,0,645,4320.000000,114,0,12741.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,114,0,6488.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,114,0,6578.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,114,0,22286.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,87,4320.000000,114,0,1068.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,114,0,41614.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1959,4339.010000,114,0,39470.010000,1761.610500,extended,nbiot,180 +on10,0,0,24,1,0,892,4352.010000,114,0,17628.010000,1766.810500,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,114,0,9964.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,114,0,32186.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4361.020000,114,0,-1.000000,2056.486000,extended,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,114,0,46651.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3600,4320.000000,115,0,72232.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1409,4329.010000,115,0,26237.010000,1757.610500,extended,nbiot,180 +on0,1,11,24,0,0,0,4377.020000,115,0,-1.000000,2036.879500,extended,nbiot,180 +on10,0,0,24,1,0,1491,4320.000000,115,0,31604.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2819,4320.000000,115,0,57569.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,115,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,2735,4320.000000,115,0,57529.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3162,4320.000000,115,0,64633.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,0,4320.000000,115,0,3243.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,115,0,13712.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,115,0,16226.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,561,4320.000000,115,0,13752.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,115,0,13869.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,643,4320.000000,116,0,13131.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3410,4350.020000,116,0,67136.020000,1766.014500,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,116,0,22139.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4341.010000,116,0,-1.000000,2048.482000,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,116,0,7057.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,884,4344.010000,116,0,18165.010000,1763.610500,extended,nbiot,180 +on11,0,0,24,1,0,1807,4320.000000,116,0,39381.010000,1754.006500,extended,nbiot,180 +on6,0,0,23,1,0,68,4248.000000,116,0,214.010000,1725.206500,extended,nbiot,180 +on3,0,0,24,1,0,711,4351.020000,116,0,13171.020000,1766.414500,extended,nbiot,180 +on10,0,0,24,1,0,3303,4320.000000,116,0,67096.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,714,4354.030000,116,0,13211.030000,1767.618500,extended,nbiot,180 +on7,0,0,24,1,0,463,4320.000000,116,0,10071.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,116,0,325.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,84,4320.000000,117,0,3274.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,704,4344.010000,117,0,13284.010000,1763.610500,extended,nbiot,180 +on5,0,0,24,1,0,1260,4320.000000,117,0,25933.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3170,4320.000000,117,0,62586.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,117,0,4115.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1594,4334.010000,117,0,32114.010000,1759.610500,extended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,117,0,62677.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4370.040000,117,0,-1.000000,2034.087500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,117,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,117,0,34224.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2714,4320.000000,117,0,55589.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,117,0,19050.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2700,4320.000000,117,0,55549.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3971,4320.000000,118,0,81998.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3612,4320.000000,118,0,73803.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,118,0,6643.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,118,0,3050.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,728,4320.000000,118,0,17440.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,118,0,31537.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,118,0,12078.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,4174,4320.000000,118,0,86017.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4366.020000,118,0,-1.000000,2032.479500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,118,0,17400.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,118,0,35520.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,118,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,267,4320.000000,118,0,6482.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,962,4320.000000,119,0,18102.010000,1754.006500,extended,nbiot,180 +on8,0,0,23,1,0,827,4270.000000,119,0,15414.010000,1734.006500,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,119,0,18157.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,686,4326.020000,119,0,12288.020000,1756.414500,extended,nbiot,180 +on12,0,0,24,1,0,150,4330.020000,119,0,2411.020000,1758.014500,extended,nbiot,180 +on5,0,0,24,1,0,611,4320.000000,119,0,12248.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,39,4320.000000,119,0,2371.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,119,0,9556.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,119,0,-1.000000,2040.078000,extended,nbiot,180 +on11,0,0,24,1,0,3600,4320.000000,119,0,75557.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,254,4320.000000,119,0,5145.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,119,0,28764.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2384,4320.000000,119,0,47322.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2160,4320.000000,120,0,45114.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,360,4320.000000,120,0,10054.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,286,4320.000000,120,0,6993.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,120,0,7118.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1260,4320.000000,120,0,28238.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,120,0,31923.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,601,4320.000000,120,0,13571.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,120,0,28165.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,120,0,1370.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,120,0,49049.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2880,4320.000000,120,0,60808.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,51,4320.000000,120,0,1295.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4340.010000,120,0,-1.000000,2048.082000,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,121,0,16542.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,28,4320.000000,121,0,2385.020000,1754.006500,extended,nbiot,180 +on12,0,0,22,1,0,900,4256.000000,121,0,19753.010000,1728.406500,extended,nbiot,180 +on1,0,0,24,1,0,1231,4331.010000,121,0,23658.010000,1758.410500,extended,nbiot,180 +on2,0,0,24,1,0,1754,4320.000000,121,0,33595.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,121,0,39731.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2220,4320.000000,121,0,46889.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,121,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,121,0,2345.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2258,4320.000000,121,0,46929.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2436,4320.000000,121,0,46969.030000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4339.030000,121,0,-1.000000,2021.683500,extended,nbiot,180 +on4,0,0,24,1,0,3600,4320.000000,121,0,72641.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,2520,4320.000000,122,0,52773.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,122,0,33642.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4405.030000,122,0,-1.000000,1996.070500,extended,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,122,0,63447.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,137,4320.000000,122,0,1031.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,122,0,63389.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,122,0,8235.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,122,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,122,0,8078.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2777,4320.000000,122,0,54498.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,898,4358.010000,122,0,14936.010000,1769.210500,extended,nbiot,180 +on8,0,0,24,1,0,344,4344.010000,123,0,6134.010000,1763.610500,extended,nbiot,180 +on11,0,0,24,1,0,1569,4320.000000,123,0,30078.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,0,4320.000000,123,0,509.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,918,4320.000000,123,0,20879.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,123,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,867,4327.010000,123,0,16271.010000,1756.810500,extended,nbiot,180 +on1,0,0,24,1,0,3060,4320.000000,123,0,61341.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,725,4320.000000,123,0,16311.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2355,4320.000000,123,0,48032.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1604,4344.030000,123,0,30118.030000,1763.618500,extended,nbiot,180 +on4,0,0,24,1,0,1495,4320.000000,123,0,30038.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1271,4320.000000,123,0,26814.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,123,0,-1.000000,2014.071500,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,124,0,11721.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,124,0,10734.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1762,4322.020000,124,0,33465.020000,1754.814500,extended,nbiot,180 +on12,0,0,24,1,0,1646,4320.000000,124,0,33505.030000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1800,4320.000000,124,0,37093.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2787,4320.000000,124,0,55796.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,124,0,5648.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1643,4320.000000,124,0,33425.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,124,0,3087.010000,1754.006500,extended,nbiot,180 +on3,0,0,23,1,0,840,4260.000000,124,0,19595.010000,1730.006500,extended,nbiot,180 +on7,0,0,24,1,0,2867,4347.010000,124,0,57695.010000,1764.810500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,124,0,-1.000000,2040.078000,extended,nbiot,180 +on4,0,0,23,1,0,2040,4240.010000,124,0,40512.010000,1722.010500,extended,nbiot,180 +on6,0,0,24,1,0,32,4320.000000,125,0,1181.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,612,4320.000000,125,0,13926.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,125,0,23834.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3220,4340.010000,125,0,62288.010000,1762.010500,extended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,125,0,14852.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,125,0,1268.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,701,4341.010000,125,0,13886.010000,1762.410500,extended,nbiot,180 +on1,0,0,24,1,0,345,4345.010000,125,0,5905.010000,1764.010500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,125,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1758,4320.000000,125,0,35365.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,125,0,9589.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,125,0,-1.000000,1988.065000,extended,nbiot,180 +on12,0,0,24,1,0,798,4320.000000,126,0,16382.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,747,4320.000000,126,0,16462.040000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,838,4320.000000,126,0,16422.030000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1756,4320.000000,126,0,35342.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,126,0,11587.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,126,0,-1.000000,1988.065000,extended,nbiot,180 +on6,0,0,24,1,0,853,4320.000000,126,0,16342.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,927,4320.000000,126,0,19145.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,370,4320.000000,126,0,8477.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,126,0,42987.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,3266,4320.000000,126,0,67498.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,127,0,1414.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4356.010000,127,0,-1.000000,2028.475500,extended,nbiot,180 +on9,0,0,24,1,0,984,4320.000000,127,0,19764.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,127,0,19842.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1131,4320.000000,127,0,21981.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,673,4320.000000,127,0,14320.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,127,0,1463.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1095,4320.000000,127,0,22021.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,127,0,19889.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,127,0,29033.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,127,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,2700,4320.000000,127,0,56808.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,774,4320.000000,127,0,15438.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3780,4320.000000,128,0,76125.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,435,4320.000000,128,0,8458.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,128,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,128,0,1442.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1404,4324.010000,128,0,27217.010000,1755.610500,extended,nbiot,180 +on8,0,0,24,1,0,1572,4320.000000,128,0,29367.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1000,4320.000000,128,0,19561.020000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,853,4320.000000,128,0,15188.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1744,4320.000000,128,0,34758.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,128,0,8518.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,903,4320.000000,128,0,19521.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1917,4320.000000,128,0,39033.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,128,0,-1.000000,2014.071500,extended,nbiot,180 +on1,0,0,24,1,0,756,4320.000000,129,0,18049.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,129,0,-1.000000,2040.078000,extended,nbiot,180 +on4,0,0,24,1,0,2032,4320.000000,129,0,41188.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2340,4320.000000,129,0,48001.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1434,4354.010000,129,0,27268.010000,1767.610500,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,129,0,17070.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,129,0,2468.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,313,4320.000000,129,0,5624.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,16,4320.000000,129,0,2377.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1620,4320.000000,129,0,35572.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,129,0,35499.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,900,4320.000000,129,0,18108.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,129,0,45328.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,352,4352.020000,130,0,7160.020000,1766.814500,extended,nbiot,180 +on3,0,0,24,1,0,2,4320.000000,130,0,1779.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,325,4325.010000,130,0,7120.010000,1756.010500,extended,nbiot,180 +on9,0,0,24,1,0,200,4320.000000,130,0,7200.030000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,130,0,1739.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,130,0,7275.010000,1754.006500,extended,nbiot,180 +on10,0,0,23,1,0,540,4278.000000,130,0,14157.010000,1737.206500,extended,nbiot,180 +on4,0,0,24,1,0,1575,4320.000000,130,0,30614.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,130,0,33442.010000,1754.006500,extended,nbiot,180 +on5,0,0,23,1,0,419,4291.000000,130,0,8831.010000,1742.406500,extended,nbiot,180 +on0,1,12,24,0,0,0,4338.020000,130,0,-1.000000,2047.286000,extended,nbiot,180 +on1,0,0,24,1,0,1439,4359.010000,130,0,26567.010000,1769.610500,extended,nbiot,180 +on2,0,0,24,1,0,2073,4320.000000,130,0,40525.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,131,0,6859.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,131,0,34584.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,131,0,6801.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,131,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,719,4359.010000,131,0,14079.010000,1769.610500,extended,nbiot,180 +on5,0,0,24,1,0,1412,4332.010000,131,0,26107.010000,1758.810500,extended,nbiot,180 +on11,0,0,24,1,0,2160,4320.000000,131,0,44224.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,258,4320.000000,131,0,6757.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,303,4320.000000,131,0,6717.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,131,0,24309.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4322.010000,131,0,-1.000000,2014.875500,extended,nbiot,180 +on2,0,0,24,1,0,2771,4320.000000,131,0,54593.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,131,0,14164.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,132,0,-1.000000,2014.071500,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,132,0,1824.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1260,4320.000000,132,0,28355.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,757,4320.000000,132,0,16870.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1339,4320.000000,132,0,28232.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,132,0,5611.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,132,0,64116.010000,1754.006500,extended,nbiot,180 +on12,0,0,23,0,0,4248,4248.000000,132,0,-1.000000,1699.200000,extended,nbiot,180 +on6,0,0,24,1,0,627,4320.000000,132,0,12962.010000,1754.006500,extended,nbiot,180 +on10,0,0,23,1,0,399,4224.000000,132,0,9225.010000,1715.606500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,132,0,9322.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,720,4320.000000,132,0,16980.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,132,0,1887.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,58,4320.000000,133,0,858.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,264,4320.000000,133,0,6095.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3,4320.000000,133,0,898.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1778,4338.010000,133,0,35714.010000,1761.210500,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,133,0,7423.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,133,0,26754.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,133,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1904,4320.000000,133,0,36502.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,260,4320.000000,133,0,6135.020000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4327.010000,133,0,-1.000000,2016.875500,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,133,0,15109.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2406,4320.000000,133,0,50209.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1874,4320.000000,133,0,36542.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,134,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,3883,4320.000000,134,0,78276.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1800,4320.000000,134,0,36564.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,134,0,3714.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,134,0,15236.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1341,4320.000000,134,0,27333.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2030,4320.000000,134,0,41818.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,134,0,23881.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,134,0,3757.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,134,0,4636.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,134,0,44585.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,134,0,36420.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4330.020000,134,0,-1.000000,2018.079500,extended,nbiot,180 +on12,0,0,23,1,0,45,4261.000000,135,0,3609.010000,1730.406500,extended,nbiot,180 +on0,1,11,24,0,0,0,4330.010000,135,0,-1.000000,2018.075500,extended,nbiot,180 +on6,0,0,24,1,0,294,4320.000000,135,0,5441.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3058,4358.010000,135,0,59202.010000,1769.210500,extended,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,135,0,20440.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3060,4320.000000,135,0,61836.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1735,4320.000000,135,0,32926.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,448,4320.000000,135,0,10799.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2089,4320.000000,135,0,40213.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2160,4320.000000,135,0,45246.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,303,4320.000000,135,0,5401.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,135,0,14538.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,136,0,1470.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,503,4323.010000,136,0,9243.010000,1755.210500,extended,nbiot,180 +on2,0,0,24,1,0,352,4352.010000,136,0,7240.010000,1766.810500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,136,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,136,0,14559.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2336,4356.010000,136,0,44490.010000,1768.410500,extended,nbiot,180 +on3,0,0,24,1,0,2128,4328.010000,136,0,40064.010000,1757.210500,extended,nbiot,180 +on12,0,0,24,1,0,1849,4320.000000,136,0,36943.010000,1754.006500,extended,nbiot,180 +on1,0,0,23,1,0,246,4253.000000,136,0,7280.020000,1727.206500,extended,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,136,0,44649.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,136,0,22953.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,4278,4320.000000,136,0,85964.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4339.010000,136,0,-1.000000,2021.675500,extended,nbiot,180 +on1,0,0,24,1,0,2497,4337.010000,137,0,47662.010000,1760.810500,extended,nbiot,180 +on9,0,0,24,1,0,675,4320.000000,137,0,11600.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1980,4320.000000,137,0,40917.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,137,0,11771.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1810,4320.000000,137,0,38342.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1260,4320.000000,137,0,28586.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,137,0,23711.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,137,0,9680.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4389.030000,137,0,-1.000000,2067.690000,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,137,0,4290.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,137,0,15003.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,297,4320.000000,137,0,4112.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,137,0,9741.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3555,4320.000000,138,0,71760.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2520,4320.000000,138,0,53768.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,491,4320.000000,138,0,7988.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,138,0,8159.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3938,4338.010000,138,0,77977.010000,1761.210500,extended,nbiot,180 +on8,0,0,24,1,0,204,4320.000000,138,0,6047.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2212,4320.000000,138,0,45897.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,138,0,30635.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1902,4320.000000,138,0,39088.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2231,4320.000000,138,0,45857.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4351.010000,138,0,-1.000000,2052.482000,extended,nbiot,180 +on11,0,0,24,1,0,1683,4320.000000,138,0,35854.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1521,4320.000000,138,0,30538.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4320.000000,139,0,-1.000000,1962.058500,extended,nbiot,180 +on3,0,0,24,1,0,1752,4320.000000,139,0,35822.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2799,4320.000000,139,0,54921.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,82,4320.000000,139,0,370.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,37,4320.000000,139,0,330.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1737,4320.000000,139,0,35782.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,139,0,26836.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,139,0,18709.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,762,4320.000000,139,0,15468.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,139,0,24667.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,140,0,13537.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,530,4350.030000,140,0,10543.030000,1766.018500,extended,nbiot,180 +on12,0,0,24,1,0,897,4357.010000,140,0,17303.010000,1768.810500,extended,nbiot,180 +on8,0,0,24,1,0,3600,4320.000000,140,0,74527.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,794,4320.000000,140,0,17343.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1213,4320.000000,140,0,23256.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,140,0,36722.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,393,4320.000000,140,0,10503.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,236,4320.000000,140,0,7124.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4351.010000,140,0,-1.000000,2052.482000,extended,nbiot,180 +on6,0,0,24,1,0,1708,4320.000000,140,0,33165.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,310,4320.000000,140,0,7084.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,478,4320.000000,140,0,10463.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,141,0,21545.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,141,0,6319.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3551,4320.000000,141,0,69523.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,210,4320.000000,141,0,6275.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1909,4320.000000,141,0,36789.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,141,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,141,0,27730.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4335.020000,141,0,-1.000000,1994.073000,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,141,0,36934.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2996,4320.000000,141,0,58451.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2934,4320.000000,141,0,58491.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,141,0,6235.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2700,4320.000000,142,0,55498.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1210,4320.000000,142,0,22153.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3213,4333.010000,142,0,63239.010000,1759.210500,extended,nbiot,180 +on2,0,0,24,1,0,18,4320.000000,142,0,1443.020000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,142,0,1403.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2724,4320.000000,142,0,55419.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,215,4320.000000,142,0,5923.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3960,4320.000000,142,0,81297.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,142,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,142,0,61016.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,142,0,20149.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,142,0,10626.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4356.030000,142,0,-1.000000,2028.483500,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,143,0,28440.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,143,0,20390.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,518,4338.020000,143,0,10414.020000,1761.214500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,511,4331.010000,143,0,10374.010000,1758.410500,extended,nbiot,180 +on0,1,11,24,0,0,0,4339.010000,143,0,-1.000000,2021.675500,extended,nbiot,180 +on2,0,0,24,1,0,2160,4320.000000,143,0,43770.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,143,0,23791.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1198,4320.000000,143,0,23727.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3417,4357.010000,143,0,66868.010000,1768.810500,extended,nbiot,180 +on11,0,0,24,1,0,1117,4320.000000,143,0,23831.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,143,0,23886.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1456,4320.000000,143,0,32416.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,144,0,38634.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,144,0,46081.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,42,4320.000000,144,0,553.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,21,4320.000000,144,0,593.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,144,0,46017.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,900,4320.000000,144,0,19592.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4365.030000,144,0,-1.000000,2058.090000,extended,nbiot,180 +on10,0,0,24,1,0,3060,4320.000000,144,0,61432.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,728,4320.000000,144,0,17571.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2340,4320.000000,144,0,49947.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2348,4320.000000,144,0,49987.020000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,144,0,17531.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2989,4320.000000,144,0,61303.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1260,4320.000000,145,0,25550.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,32,4320.000000,145,0,2726.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,360,4320.000000,145,0,8651.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,912,4320.000000,145,0,19078.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4396.030000,145,0,-1.000000,2070.490000,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,145,0,23022.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,145,0,2892.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,718,4358.010000,145,0,14208.010000,1769.210500,extended,nbiot,180 +on4,0,0,24,1,0,264,4320.000000,145,0,6306.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1040,4320.010000,145,0,19038.010000,1754.010500,extended,nbiot,180 +on11,0,0,24,1,0,480,4320.000000,145,0,8480.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3027,4327.010000,145,0,59090.010000,1756.810500,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,145,0,8550.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4344.010000,146,0,-1.000000,2049.682000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,146,0,11239.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,825,4320.000000,146,0,17339.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,741,4320.000000,146,0,17379.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,146,0,17503.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,146,0,62114.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3359,4320.000000,146,0,66841.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1080,4320.000000,146,0,24054.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1967,4347.010000,146,0,38273.010000,1764.810500,extended,nbiot,180 +on9,0,0,24,1,0,580,4320.000000,146,0,11103.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,548,4320.000000,146,0,11143.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3240,4320.000000,146,0,66962.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3116,4320.000000,146,0,62038.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,327,4327.010000,147,0,7258.010000,1756.810500,extended,nbiot,180 +on5,0,0,24,1,0,1295,4320.000000,147,0,26272.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,147,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,2520,4320.000000,147,0,51676.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,147,0,11042.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,394,4320.000000,147,0,7380.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,147,0,3693.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2507,4347.020000,147,0,50247.020000,1764.814500,extended,nbiot,180 +on7,0,0,24,1,0,2413,4320.000000,147,0,50207.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,147,0,7340.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3759,4339.010000,147,0,75112.010000,1761.610500,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,147,0,64198.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,147,0,-1.000000,2014.071500,extended,nbiot,180 +on1,0,0,24,1,0,3046,4346.010000,148,0,59083.010000,1764.410500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,148,0,27544.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,660,4320.000000,148,0,12055.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,148,0,4719.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,42,4320.000000,148,0,1109.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,66,4320.000000,148,0,1149.030000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,148,0,24422.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,532,4352.010000,148,0,7944.010000,1766.810500,extended,nbiot,180 +on7,0,0,24,1,0,837,4320.000000,148,0,17425.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4396.030000,148,0,-1.000000,2070.490000,extended,nbiot,180 +on12,0,0,24,1,0,52,4320.000000,148,0,1069.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,148,0,53936.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,880,4340.020000,148,0,17465.020000,1762.014500,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,149,0,29956.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,4019,4320.000000,149,0,81306.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1232,4332.010000,149,0,24316.010000,1758.810500,extended,nbiot,180 +on12,0,0,24,1,0,2880,4320.000000,149,0,60769.010000,1754.006500,extended,nbiot,180 +on1,0,0,23,1,0,2602,4290.000000,149,0,51398.010000,1742.006500,extended,nbiot,180 +on3,0,0,24,1,0,765,4320.000000,149,0,15142.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4364.020000,149,0,-1.000000,2031.679500,extended,nbiot,180 +on10,0,0,24,1,0,1572,4320.000000,149,0,29786.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,18,4320.000000,149,0,1781.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,900,4320.000000,149,0,21397.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,149,0,15196.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,149,0,39415.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3235,4355.010000,150,0,62897.010000,1768.010500,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,150,0,21990.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,19,4320.000000,150,0,729.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,467,4320.000000,150,0,9462.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2274,4320.000000,150,0,43638.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,150,0,-1.000000,1988.065000,extended,nbiot,180 +on8,0,0,24,1,0,3174,4320.000000,150,0,62937.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,548,4320.000000,150,0,12107.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1419,4339.010000,150,0,27107.010000,1761.610500,extended,nbiot,180 +on3,0,0,24,1,0,661,4320.000000,150,0,12067.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,387,4320.000000,150,0,9502.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,151,0,7589.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1663,4320.000000,151,0,34241.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3240,4320.000000,151,0,65559.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,67,4320.000000,151,0,2463.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2833,4320.000000,151,0,55077.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1142,4320.000000,151,0,23390.020000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1208,4320.000000,151,0,23350.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,151,0,7528.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1800,4320.000000,151,0,36385.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4394.030000,151,0,-1.000000,2069.690000,extended,nbiot,180 +on12,0,0,24,1,0,1346,4320.000000,151,0,26744.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,900,4320.000000,151,0,21340.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1080,4320.000000,151,0,23523.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,87,4320.000000,152,0,3120.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,669,4320.000000,152,0,11855.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,32,4320.000000,152,0,3160.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3065,4320.000000,152,0,61395.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1705,4320.000000,152,0,34191.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2880,4320.000000,152,0,60588.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,152,0,3295.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,152,0,8375.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,383,4320.000000,152,0,8415.020000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,180,4320.000000,152,0,5591.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4355.010000,152,0,-1.000000,2002.069000,extended,nbiot,180 +on1,0,0,24,1,0,1060,4340.010000,153,0,20953.010000,1762.010500,extended,nbiot,180 +on10,0,0,24,1,0,1800,4320.000000,153,0,36744.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,297,4320.000000,153,0,7261.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2520,4320.000000,153,0,50530.010000,1754.006500,extended,nbiot,180 +on11,0,0,23,1,0,1396,4276.000000,153,0,30283.010000,1736.406500,extended,nbiot,180 +on7,0,0,24,1,0,2891,4320.000000,153,0,60175.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,913,4320.000000,153,0,20993.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4369.020000,153,0,-1.000000,2059.686000,extended,nbiot,180 +on6,0,0,24,1,0,179,4359.010000,153,0,2697.010000,1769.610500,extended,nbiot,180 +on2,0,0,24,1,0,1620,4320.000000,153,0,34362.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,153,0,15972.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3361,4320.000000,153,0,66959.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,153,0,40265.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,154,0,13463.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1040,4320.010000,154,0,20241.010000,1754.010500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,154,0,20414.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,154,0,28916.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2265,4320.000000,154,0,43439.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,667,4320.000000,154,0,13391.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1800,4320.000000,154,0,37580.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,154,0,13554.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3060,4320.000000,154,0,63443.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,10,24,0,0,0,4425.040000,154,0,-1.000000,2030.081000,extended,nbiot,180 +on6,0,0,24,1,0,328,4328.010000,154,0,5228.010000,1757.210500,extended,nbiot,180 +on0,1,12,24,0,0,0,4401.030000,155,0,-1.000000,2072.490000,extended,nbiot,180 +on10,0,0,24,1,0,471,4320.000000,155,0,7537.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2417,4320.000000,155,0,50014.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1966,4346.010000,155,0,37305.010000,1764.410500,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,155,0,5162.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2880,4320.000000,155,0,59308.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1669,4320.000000,155,0,33247.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,912,4320.000000,155,0,19009.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,155,0,19073.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,155,0,14256.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,155,0,30249.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,359,4359.010000,155,0,4991.010000,1769.610500,extended,nbiot,180 +on8,0,0,23,1,0,180,4269.000000,155,0,5031.020000,1733.606500,extended,nbiot,180 +on11,0,0,24,1,0,2160,4320.000000,156,0,45931.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3960,4320.000000,156,0,79599.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,194,4320.000000,156,0,6037.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1800,4320.000000,156,0,36801.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1260,4320.000000,156,0,25357.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3420,4320.000000,156,0,68647.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1,4320.000000,156,0,3330.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,540,4320.000000,156,0,14369.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1280,4320.000000,156,0,25300.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,0,4320.000000,156,0,3505.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,156,0,-1.000000,1728.000000,extended,nbiot,180 +on0,1,11,24,0,0,0,4355.010000,156,0,-1.000000,2028.075500,extended,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,156,0,48160.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1620,4320.000000,157,0,34635.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,157,0,32096.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,407,4320.000000,157,0,8382.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,157,0,24223.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,157,0,58975.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,157,0,11829.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,180,4320.000000,157,0,5186.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,3240,4320.000000,157,0,66947.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1556,4320.000000,157,0,31933.010000,1754.006500,extended,nbiot,180 +on0,1,9,24,0,0,0,4343.010000,157,0,-1.000000,1971.262500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,158,0,32625.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1468,4320.000000,158,0,29242.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,2259,4320.000000,158,0,43374.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,158,0,7067.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,158,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,158,0,10365.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2340,4320.000000,158,0,47173.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,158,0,50746.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4385.040000,158,0,-1.000000,2014.081000,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,158,0,2480.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,566,4320.000000,158,0,13377.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1620,4320.000000,158,0,32749.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,159,0,5607.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2367,4320.000000,159,0,48722.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4404.030000,159,0,-1.000000,2073.690000,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,159,0,5692.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2066,4320.000000,159,0,42225.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,396,4320.000000,159,0,9026.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,52,4320.000000,159,0,3361.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,159,0,25724.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,395,4320.000000,159,0,8986.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,159,0,16479.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2046,4320.000000,159,0,42185.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,159,0,30888.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,730,4320.000000,159,0,16320.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1398,4320.000000,160,0,27267.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,655,4320.000000,160,0,11375.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1071,4351.010000,160,0,20450.010000,1766.410500,extended,nbiot,180 +on6,0,0,24,1,0,10,4320.000000,160,0,347.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1080,4320.000000,160,0,25117.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,900,4320.000000,160,0,18083.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,909,4320.000000,160,0,20490.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,250,4320.000000,160,0,4452.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,0,4320.000000,160,0,483.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.010000,160,0,-1.000000,2040.082000,extended,nbiot,180 +on3,0,0,24,1,0,831,4320.000000,160,0,17943.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,710,4350.020000,160,0,11415.020000,1766.014500,extended,nbiot,180 +on7,0,0,24,1,0,1080,4320.000000,160,0,25037.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,540,4320.000000,161,0,12422.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1080,4320.000000,161,0,22075.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,161,0,7484.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2875,4355.010000,161,0,55432.010000,1768.010500,extended,nbiot,180 +on6,0,0,24,1,0,3036,4336.010000,161,0,59671.010000,1760.410500,extended,nbiot,180 +on5,0,0,24,1,0,727,4320.000000,161,0,17417.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4339.010000,161,0,-1.000000,2047.682000,extended,nbiot,180 +on9,0,0,24,1,0,1011,4320.000000,161,0,18407.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,600,4320.000000,161,0,12366.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3,4320.000000,161,0,2015.010000,1754.006500,extended,nbiot,180 +on4,0,0,23,1,0,0,4192.000000,161,0,2072.010000,1702.806500,extended,nbiot,180 +on3,0,0,24,1,0,1416,4336.010000,161,0,26144.010000,1760.410500,extended,nbiot,180 +on10,0,0,24,1,0,1440,4320.000000,161,0,29864.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,577,4320.000000,162,0,11317.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,371,4320.000000,162,0,8735.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,83,4320.000000,162,0,498.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,162,0,43925.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,162,0,670.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,162,0,63804.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,162,0,31449.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,273,4320.000000,162,0,4244.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,162,0,11277.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,282,4320.000000,162,0,4284.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,436,4320.000000,162,0,8695.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4353.030000,162,0,-1.000000,2053.290000,extended,nbiot,180 +on10,0,0,24,1,0,180,4320.000000,162,0,4380.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2743,4320.000000,163,0,54980.010000,1754.006500,extended,nbiot,180 +on8,0,0,23,0,0,4280,4280.000000,163,0,-1.000000,1712.000000,extended,nbiot,180 +on2,0,0,24,1,0,205,4320.000000,163,0,7258.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,935,4320.000000,163,0,19109.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,163,0,63228.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,163,0,-1.000000,2014.071500,extended,nbiot,180 +on11,0,0,24,1,0,2494,4334.010000,163,0,48253.010000,1759.610500,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,163,0,14219.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2151,4351.010000,163,0,39878.010000,1766.410500,extended,nbiot,180 +on12,0,0,24,1,0,2340,4320.000000,163,0,48295.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1751,4320.000000,163,0,36014.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1086,4320.000000,163,0,23519.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,163,0,122.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,219,4320.000000,164,0,4401.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4353.030000,164,0,-1.000000,2053.290000,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,164,0,30859.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,360,4320.000000,164,0,8215.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,164,0,11334.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,164,0,34777.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1080,4320.000000,164,0,24888.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3670,4320.000000,164,0,75499.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,507,4327.010000,164,0,8173.010000,1756.810500,extended,nbiot,180 +on5,0,0,24,1,0,1260,4320.000000,164,0,26718.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,0,4320.000000,164,0,2626.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1651,4320.000000,164,0,34626.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,164,0,17850.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1234,4334.010000,165,0,23557.010000,1759.610500,extended,nbiot,180 +on9,0,0,24,1,0,2121,4321.010000,165,0,42896.010000,1754.410500,extended,nbiot,180 +on0,1,10,24,0,0,0,4383.030000,165,0,-1.000000,2013.277000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,2700,4320.000000,165,0,57443.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,83,4320.000000,165,0,1287.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3060,4320.000000,165,0,61349.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2340,4320.000000,165,0,48029.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,720,4320.000000,165,0,16228.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,165,0,20073.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2520,4320.000000,165,0,52865.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1475,4320.000000,165,0,31257.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,165,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,859,4320.000000,166,0,16362.020000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4378.020000,166,0,-1.000000,2037.279500,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,166,0,5654.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,166,0,26911.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,166,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,489,4320.000000,166,0,7607.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2880,4320.000000,166,0,60666.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,166,0,948.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,763,4320.000000,166,0,16322.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1838,4320.000000,166,0,39062.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2595,4320.000000,166,0,53055.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,912,4320.000000,166,0,21397.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,279,4320.000000,166,0,5475.010000,1754.006500,extended,nbiot,180 +on3,0,0,23,1,0,2150,4310.000000,167,0,46016.010000,1750.006500,extended,nbiot,180 +on7,0,0,24,1,0,1440,4320.000000,167,0,30323.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,394,4320.000000,167,0,9899.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,239,4320.000000,167,0,6721.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,167,0,20350.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2700,4320.000000,167,0,54248.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,321,4321.020000,167,0,6761.020000,1754.414500,extended,nbiot,180 +on5,0,0,23,1,0,2468,4268.000000,167,0,53912.010000,1733.206500,extended,nbiot,180 +on9,0,0,24,1,0,4095,4320.000000,167,0,82277.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2993,4320.000000,167,0,60998.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4345.010000,167,0,-1.000000,2050.082000,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,167,0,9999.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2681,4341.010000,167,0,53774.010000,1762.410500,extended,nbiot,180 +on0,1,10,24,0,0,0,4368.050000,168,0,-1.000000,2007.285000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,168,0,11707.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,0,4320.000000,168,0,1298.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1195,4320.000000,168,0,25103.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,168,0,9200.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,168,0,7224.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,378,4320.000000,168,0,9240.020000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,477,4320.000000,168,0,9090.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,168,0,15209.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,168,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,168,0,34227.010000,1754.006500,extended,nbiot,180 +on3,0,0,23,1,0,2452,4252.000000,168,0,50642.010000,1726.806500,extended,nbiot,180 +on4,0,0,24,1,0,3652,4320.000000,169,0,74439.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2340,4320.000000,169,0,47002.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1476,4320.000000,169,0,31780.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,565,4320.000000,169,0,14167.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,540,4320.000000,169,0,14220.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,739,4320.000000,169,0,17143.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4355.010000,169,0,-1.000000,2002.069000,extended,nbiot,180 +on12,0,0,24,1,0,0,4320.000000,169,0,2710.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,169,0,51870.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1080,4320.000000,169,0,22129.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1800,4320.000000,169,0,36909.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,170,0,9897.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,720,4320.000000,170,0,16161.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,434,4320.000000,170,0,9780.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,360,4320.000000,170,0,9948.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,170,0,5877.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,170,0,16238.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,635,4320.000000,170,0,11057.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2306,4326.010000,170,0,43564.010000,1756.410500,extended,nbiot,180 +on11,0,0,24,1,0,2520,4320.000000,170,0,52280.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4386.030000,170,0,-1.000000,2066.490000,extended,nbiot,180 +on7,0,0,24,1,0,1401,4321.010000,170,0,27630.010000,1754.410500,extended,nbiot,180 +on12,0,0,24,1,0,4140,4320.000000,170,0,85886.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,170,0,39387.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,720,4320.000000,171,0,16253.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2700,4320.000000,171,0,54841.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2783,4320.000000,171,0,54690.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,171,0,918.010000,1754.006500,extended,nbiot,180 +on2,0,0,23,1,0,180,4187.000000,171,0,5517.010000,1700.806500,extended,nbiot,180 +on10,0,0,24,1,0,1620,4320.000000,171,0,34558.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2030,4320.000000,171,0,39988.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,245,4320.000000,171,0,5412.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1858,4320.000000,171,0,39364.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1265,4320.000000,171,0,25388.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1254,4354.010000,171,0,25348.010000,1767.610500,extended,nbiot,180 +on12,0,0,24,1,0,3600,4320.000000,171,0,74624.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4331.010000,171,0,-1.000000,2044.482000,extended,nbiot,180 +on4,0,0,24,1,0,3420,4320.000000,172,0,68934.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1532,4320.000000,172,0,29871.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,745,4320.000000,172,0,17575.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4323.010000,172,0,-1.000000,2041.282000,extended,nbiot,180 +on1,0,0,24,1,0,3960,4320.000000,172,0,79897.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1326,4320.000000,172,0,28150.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,172,0,8103.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1514,4320.000000,172,0,29831.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,172,0,585.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,360,4320.000000,172,0,8167.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,738,4320.000000,172,0,17615.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,172,0,6832.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2247,4320.000000,172,0,44951.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1980,4320.000000,173,0,42618.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,994,4320.000000,173,0,19542.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,323,4323.010000,173,0,4458.010000,1755.210500,extended,nbiot,180 +on8,0,0,24,1,0,0,4320.000000,173,0,2120.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4351.020000,173,0,-1.000000,2052.486000,extended,nbiot,180 +on5,0,0,24,1,0,3866,4320.000000,173,0,76297.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,173,0,10347.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1440,4320.000000,173,0,29566.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2880,4320.000000,173,0,58372.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,19,4320.000000,173,0,1960.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,173,0,33565.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1860,4320.000000,173,0,38954.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,946,4320.000000,173,0,19582.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1325,4320.000000,174,0,27339.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,174,0,-1.000000,2014.071500,extended,nbiot,180 +on5,0,0,24,1,0,1408,4328.020000,174,0,27379.020000,1757.214500,extended,nbiot,180 +on3,0,0,24,1,0,845,4320.000000,174,0,17395.010000,1754.006500,extended,nbiot,180 +on1,0,0,23,1,0,180,4301.000000,174,0,5810.010000,1746.406500,extended,nbiot,180 +on4,0,0,24,1,0,3274,4320.000000,174,0,66913.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,174,0,12788.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,2649,4320.000000,174,0,51217.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3828,4320.000000,174,0,76615.010000,1754.006500,extended,nbiot,180 +on9,0,0,23,1,0,1980,4212.000000,174,0,42617.010000,1710.806500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,174,0,9464.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,607,4320.000000,174,0,12707.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1640,4320.000000,175,0,35864.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,149,4329.010000,175,0,2016.010000,1757.610500,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,175,0,17829.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1980,4320.000000,175,0,42664.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,60,4320.000000,175,0,2056.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,920,4320.000000,175,0,18726.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4357.010000,175,0,-1.000000,2054.882000,extended,nbiot,180 +on5,0,0,24,1,0,1080,4320.000000,175,0,22717.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,175,0,18686.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1767,4327.010000,175,0,35824.010000,1756.810500,extended,nbiot,180 +on6,0,0,24,1,0,3060,4320.000000,175,0,64375.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,2801,4320.000000,175,0,57045.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,302,4320.000000,175,0,7165.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2494,4334.020000,176,0,49537.020000,1759.614500,extended,nbiot,180 +on0,1,11,24,0,0,0,4368.020000,176,0,-1.000000,2033.279500,extended,nbiot,180 +on11,0,0,24,1,0,1260,4320.000000,176,0,28785.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1980,4320.000000,176,0,43006.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,2484,4324.010000,176,0,49497.010000,1755.610500,extended,nbiot,180 +on8,0,0,24,1,0,909,4320.000000,176,0,20620.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,176,0,20792.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,4008,4320.000000,176,0,81960.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,360,4320.000000,176,0,10213.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,770,4320.000000,176,0,17814.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1541,4320.000000,176,0,31292.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,176,0,12012.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,3240,4320.000000,177,0,67370.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,3780,4320.000000,177,0,77627.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,177,0,-1.000000,2014.071500,extended,nbiot,180 +on5,0,0,24,1,0,4140,4320.000000,177,0,83550.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,177,0,30772.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,720,4320.000000,177,0,17630.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,360,4320.000000,177,0,7993.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2338,4358.010000,177,0,45709.010000,1769.210500,extended,nbiot,180 +on3,0,0,23,1,0,547,4250.000000,177,0,14426.010000,1726.006500,extended,nbiot,180 +on10,0,0,24,1,0,2611,4320.000000,177,0,50683.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,177,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,1,0,230,4320.000000,177,0,6532.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,97,4320.000000,177,0,163.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,178,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,1747,4320.000000,178,0,36064.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1798,4358.010000,178,0,33761.010000,1769.210500,extended,nbiot,180 +on3,0,0,24,1,0,2558,4320.000000,178,0,52537.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,180,4320.000000,178,0,5268.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1391,4320.000000,178,0,28739.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2435,4320.000000,178,0,48604.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,863,4323.010000,178,0,14846.010000,1755.210500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,178,0,-1.000000,2014.071500,extended,nbiot,180 +on6,0,0,24,1,0,1800,4320.000000,178,0,36153.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,178,0,230.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2115,4320.000000,178,0,39777.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,729,4320.000000,178,0,14886.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,4002,4320.000000,179,0,82537.020000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,179,0,20298.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1800,4320.000000,179,0,37395.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,4008,4320.000000,179,0,82497.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2726,4320.000000,179,0,55923.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,3060,4320.000000,179,0,64791.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,180,4320.000000,179,0,6082.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1980,4320.000000,179,0,40455.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,179,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,2673,4333.010000,179,0,50634.010000,1759.210500,extended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,179,0,-1.000000,1988.065000,extended,nbiot,180 +on9,0,0,24,1,0,2019,4320.000000,179,0,40495.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1440,4320.000000,180,0,31946.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4341.020000,180,0,-1.000000,1996.473000,extended,nbiot,180 +on12,0,0,24,1,0,3780,4320.000000,180,0,76439.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,180,0,6573.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,180,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,180,0,15242.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,636,4320.000000,180,0,13562.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,920,4320.000000,180,0,18760.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2160,4320.000000,180,0,45881.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1172,4320.000000,180,0,25213.010000,1754.006500,extended,nbiot,180 +on10,0,0,23,0,0,4289,4289.000000,180,0,-1.000000,1715.600000,extended,nbiot,180 +on9,0,0,24,1,0,1370,4320.000000,180,0,27423.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,0,4320.000000,180,0,1863.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1097,4320.000000,181,0,24501.010000,1754.006500,extended,nbiot,180 +on9,0,0,23,1,0,1500,4295.000000,181,0,31766.010000,1744.006500,extended,nbiot,180 +on1,0,0,24,1,0,540,4320.000000,181,0,13391.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,24,4320.000000,181,0,1228.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1116,4320.000000,181,0,24541.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,979,4320.000000,181,0,20449.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,14,4320.000000,181,0,1188.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,181,0,-1.000000,1728.000000,extended,nbiot,180 +on2,0,0,24,1,0,720,4320.000000,181,0,16434.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,405,4320.000000,181,0,9515.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4366.020000,181,0,-1.000000,2032.479500,extended,nbiot,180 +on12,0,0,24,1,0,720,4320.000000,181,0,16505.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,720,4320.000000,181,0,16388.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,182,0,1464.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1754,4320.000000,182,0,34007.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,854,4320.000000,182,0,16553.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,292,4320.000000,182,0,6892.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,823,4320.000000,182,0,16513.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3077,4320.000000,182,0,64411.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4348.010000,182,0,-1.000000,2025.275500,extended,nbiot,180 +on8,0,0,24,1,0,540,4320.000000,182,0,11951.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1384,4320.000000,182,0,28601.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,182,0,31454.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,540,4320.000000,182,0,12113.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,182,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,1,0,1826,4320.000000,182,0,39397.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,419,4320.000000,183,0,9281.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1073,4353.010000,183,0,19841.010000,1767.210500,extended,nbiot,180 +on12,0,0,24,1,0,2522,4320.000000,183,0,50723.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,863,4323.010000,183,0,16793.010000,1755.210500,extended,nbiot,180 +on4,0,0,24,1,0,2726,4320.000000,183,0,55053.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,960,4320.000000,183,0,19921.030000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,183,0,-1.000000,1728.000000,extended,nbiot,180 +on9,0,0,24,1,0,1062,4342.020000,183,0,19881.020000,1762.814500,extended,nbiot,180 +on11,0,0,24,1,0,3420,4320.000000,183,0,69549.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,183,0,5435.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,183,0,-1.000000,2014.071500,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,183,0,14260.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,183,0,5392.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1980,4320.000000,184,0,43049.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,540,4320.000000,184,0,14439.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1080,4320.000000,184,0,22084.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,184,0,25317.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2374,4320.000000,184,0,49271.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1747,4320.000000,184,0,35986.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2160,4320.000000,184,0,46368.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,1027,4320.000000,184,0,21581.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2003,4320.000000,184,0,43089.020000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4346.020000,184,0,-1.000000,2024.479500,extended,nbiot,180 +on3,0,0,24,1,0,1620,4320.000000,184,0,36032.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1800,4320.000000,184,0,38015.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,184,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,3241,4320.000000,185,0,65980.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1800,4320.000000,185,0,39005.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1260,4320.000000,185,0,27697.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4332.010000,185,0,-1.000000,2044.882000,extended,nbiot,180 +on4,0,0,24,1,0,117,4320.000000,185,0,1801.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1003,4320.000000,185,0,20782.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,35,4320.000000,185,0,1881.030000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1769,4329.010000,185,0,33265.010000,1757.610500,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,185,0,13881.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,6,4320.000000,185,0,1841.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,900,4320.000000,185,0,20934.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,185,0,13964.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2069,4320.000000,185,0,40957.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,186,0,1979.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2520,4320.000000,186,0,54024.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4394.030000,186,0,-1.000000,2069.690000,extended,nbiot,180 +on4,0,0,24,1,0,1980,4320.000000,186,0,39896.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2880,4320.000000,186,0,58176.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1080,4320.000000,186,0,25208.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1032,4320.000000,186,0,19300.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3318,4320.000000,186,0,65343.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2880,4320.000000,186,0,58114.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,498,4320.000000,186,0,10337.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1596,4336.010000,186,0,30049.010000,1760.410500,extended,nbiot,180 +on2,0,0,24,1,0,2905,4320.000000,186,0,58216.020000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2872,4352.010000,186,0,56803.010000,1766.810500,extended,nbiot,180 +on9,0,0,24,1,0,0,4320.000000,187,0,2645.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,582,4320.000000,187,0,14080.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4356.020000,187,0,-1.000000,2002.473000,extended,nbiot,180 +on10,0,0,24,1,0,1436,4356.010000,187,0,27163.010000,1768.410500,extended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,187,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,3041,4341.010000,187,0,60163.010000,1762.410500,extended,nbiot,180 +on5,0,0,24,1,0,900,4320.000000,187,0,19710.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1567,4320.000000,187,0,29671.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,335,4335.010000,187,0,6531.010000,1760.010500,extended,nbiot,180 +on4,0,0,24,1,0,1620,4320.000000,187,0,35406.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,577,4320.000000,187,0,14120.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,54,4320.000000,187,0,2493.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,688,4328.010000,188,0,13662.010000,1757.210500,extended,nbiot,180 +on7,0,0,24,1,0,1631,4320.000000,188,0,32631.020000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4358.010000,188,0,-1.000000,2055.282000,extended,nbiot,180 +on2,0,0,24,1,0,1706,4320.000000,188,0,32591.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,4140,4320.000000,188,0,83321.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,360,4320.000000,188,0,9693.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1080,4320.000000,188,0,22648.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2745,4320.000000,188,0,56087.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1119,4320.000000,188,0,22688.020000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2908,4320.000000,188,0,59486.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1499,4320.000000,188,0,28907.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3420,4320.000000,188,0,70888.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,499,4320.000000,188,0,9515.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,197,4320.000000,189,0,4245.020000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2340,4320.000000,189,0,49055.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1586,4326.020000,189,0,30448.020000,1756.414500,extended,nbiot,180 +on4,0,0,24,1,0,1525,4320.000000,189,0,30408.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,3600,4320.000000,189,0,72784.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,3060,4320.000000,189,0,62192.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,2700,4320.000000,189,0,56503.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,189,0,4205.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,189,0,-1.000000,2014.071500,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,189,0,1728.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,189,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,1620,4320.000000,189,0,34852.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,3833,4320.000000,189,0,76876.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1083,4320.000000,190,0,23380.010000,1754.006500,extended,nbiot,180 +on0,1,8,24,0,0,0,4336.010000,190,0,-1.000000,1942.456000,extended,nbiot,180 +on9,0,0,24,1,0,180,4320.000000,190,0,4018.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,601,4320.000000,190,0,12233.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,395,4320.000000,190,0,8251.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,193,4320.000000,190,0,4098.030000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,187,4320.000000,190,0,4058.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,3060,4320.000000,190,0,62160.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1868,4320.000000,190,0,39329.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,1967,4347.010000,191,0,36753.010000,1764.810500,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,191,0,4432.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1532,4320.000000,191,0,31631.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,764,4320.000000,191,0,18071.020000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,191,0,8765.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,480,4320.000000,191,0,8686.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,180,4320.000000,191,0,4559.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,191,0,-1.000000,1728.000000,extended,nbiot,180 +on11,0,0,24,1,0,159,4339.010000,191,0,769.010000,1761.610500,extended,nbiot,180 +on9,0,0,24,1,0,2340,4320.000000,191,0,47767.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,191,0,-1.000000,2014.071500,extended,nbiot,180 +on4,0,0,24,1,0,877,4337.010000,191,0,18031.010000,1760.810500,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,191,0,34033.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,1342,4320.000000,192,0,28821.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,1620,4320.000000,192,0,34000.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,1260,4320.000000,192,0,25361.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,0,4320.000000,192,0,462.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,540,4320.000000,192,0,11452.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,192,0,16235.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4352.030000,192,0,-1.000000,2026.883500,extended,nbiot,180 +on10,0,0,24,1,0,1192,4320.000000,192,0,25210.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,180,4320.000000,192,0,6379.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1076,4356.010000,192,0,19702.010000,1768.410500,extended,nbiot,180 +on11,0,0,24,1,0,1620,4320.000000,192,0,34063.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1440,4320.000000,192,0,28927.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,192,0,-1.000000,1728.000000,extended,nbiot,180 +on1,0,0,24,1,0,1260,4320.000000,193,0,27538.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,2160,4320.000000,193,0,46238.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,180,4320.000000,193,0,4256.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,3009,4320.000000,193,0,57769.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2700,4320.000000,193,0,56079.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1260,4320.000000,193,0,27638.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,2520,4320.000000,193,0,50595.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4343.020000,193,0,-1.000000,2049.286000,extended,nbiot,180 +on4,0,0,24,1,0,3770,4350.010000,193,0,73309.010000,1766.010500,extended,nbiot,180 +on10,0,0,24,1,0,900,4320.000000,193,0,21261.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,360,4320.000000,193,0,9252.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,360,4320.000000,193,0,9372.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,2578,4320.000000,193,0,50510.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,900,4320.000000,194,0,20964.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,720,4320.000000,194,0,15562.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,2210,4320.000000,194,0,46023.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,3000,4320.000000,194,0,59911.010000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4364.020000,194,0,-1.000000,2031.679500,extended,nbiot,180 +on6,0,0,24,1,0,2019,4320.000000,194,0,41608.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,194,0,-1.000000,1728.000000,extended,nbiot,180 +on4,0,0,24,1,0,236,4320.000000,194,0,7158.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,194,0,7329.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2880,4320.000000,194,0,60064.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,708,4348.020000,194,0,13407.020000,1765.214500,extended,nbiot,180 +on3,0,0,24,1,0,1361,4320.000000,194,0,26162.010000,1754.006500,extended,nbiot,180 +on2,0,0,23,1,0,661,4198.000000,194,0,13367.010000,1705.206500,extended,nbiot,180 +on6,0,0,24,1,0,2204,4320.000000,195,0,43626.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2520,4320.000000,195,0,53553.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,1867,4320.000000,195,0,36314.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,195,0,-1.000000,1728.000000,extended,nbiot,180 +on5,0,0,24,1,0,9,4320.000000,195,0,1466.010000,1754.006500,extended,nbiot,180 +on10,0,0,23,1,0,2723,4163.000000,195,0,61037.010000,1691.206500,extended,nbiot,180 +on1,0,0,24,1,0,661,4320.000000,195,0,12939.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1401,4321.010000,195,0,27690.010000,1754.410500,extended,nbiot,180 +on3,0,0,24,1,0,180,4320.000000,195,0,7202.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,900,4320.000000,195,0,19863.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,620,4320.000000,195,0,12979.020000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4376.020000,195,0,-1.000000,2036.479500,extended,nbiot,180 +on7,0,0,24,1,0,1970,4350.020000,195,0,36354.020000,1766.014500,extended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,nbiot,180 +on6,0,0,24,1,0,3060,4320.000000,196,0,61407.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,1440,4320.000000,196,0,30348.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,196,0,-1.000000,1728.000000,extended,nbiot,180 +on12,0,0,24,1,0,1440,4320.000000,196,0,30427.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,360,4320.000000,196,0,10667.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,3060,4320.000000,196,0,61290.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,113,4320.000000,196,0,1785.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3029,4329.010000,196,0,60511.010000,1757.610500,extended,nbiot,180 +on0,1,9,24,0,0,0,4362.020000,196,0,-1.000000,1978.866500,extended,nbiot,180 +on3,0,0,24,1,0,3523,4320.000000,196,0,69306.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,540,4320.000000,196,0,11127.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,2036,4320.000000,197,0,40168.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,197,0,-1.000000,2040.078000,extended,nbiot,180 +on5,0,0,24,1,0,540,4320.000000,197,0,11260.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,1240,4340.010000,197,0,22306.010000,1762.010500,extended,nbiot,180 +on4,0,0,24,1,0,1396,4320.000000,197,0,25641.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,180,4320.000000,197,0,4529.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,858,4320.000000,197,0,16163.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,598,4320.000000,197,0,11201.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,413,4320.000000,197,0,8590.010000,1754.006500,extended,nbiot,180 +on1,0,0,23,1,0,900,4150.000000,197,0,21371.010000,1686.006500,extended,nbiot,180 +on12,0,0,24,1,0,2258,4320.000000,197,0,43560.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1900,4320.000000,197,0,36244.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,920,4320.000000,197,0,21270.010000,1754.006500,extended,nbiot,180 +on0,1,10,24,0,0,0,4415.040000,198,0,-1.000000,2026.081000,extended,nbiot,180 +on12,0,0,23,1,0,0,4266.000000,198,0,2867.010000,1732.406500,extended,nbiot,180 +on5,0,0,24,1,0,463,4320.000000,198,0,9544.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,180,4320.000000,198,0,6717.010000,1754.006500,extended,nbiot,180 +on4,0,0,24,1,0,2160,4320.000000,198,0,45134.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,2800,4320.000000,198,0,55063.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,198,0,-1.000000,1728.000000,extended,nbiot,180 +on3,0,0,24,1,0,816,4320.000000,198,0,17563.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,2425,4320.000000,198,0,48697.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,2896,4320.000000,198,0,59984.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,900,4320.000000,198,0,21409.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,452,4320.000000,198,0,9584.020000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,2159,4359.010000,199,0,40158.010000,1769.610500,extended,nbiot,180 +on3,0,0,24,1,0,1980,4320.000000,199,0,40267.010000,1754.006500,extended,nbiot,180 +on5,0,0,24,1,0,720,4320.000000,199,0,17405.010000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,561,4320.000000,199,0,12479.020000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,305,4320.000000,199,0,4889.010000,1754.006500,extended,nbiot,180 +on0,1,12,24,0,0,0,4327.010000,199,0,-1.000000,2042.882000,extended,nbiot,180 +on4,0,0,24,1,0,1440,4320.000000,199,0,29626.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,3159,4320.000000,199,0,63707.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,540,4320.000000,199,0,12439.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,312,4320.000000,199,0,4929.020000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1440,4320.000000,199,0,29765.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,1,0,783,4320.000000,199,0,17330.010000,1754.006500,extended,nbiot,180 +on7,0,0,24,1,0,3240,4320.000000,199,0,66069.010000,1754.006500,extended,nbiot,180 +on3,0,0,24,1,0,360,4320.000000,200,0,7709.010000,1754.006500,extended,nbiot,180 +on10,0,0,24,1,0,0,4320.000000,200,0,2638.010000,1754.006500,extended,nbiot,180 +on11,0,0,24,1,0,278,4320.000000,200,0,6749.010000,1754.006500,extended,nbiot,180 +on1,0,0,24,1,0,1980,4320.000000,200,0,42285.010000,1754.006500,extended,nbiot,180 +on12,0,0,24,1,0,206,4320.000000,200,0,6829.030000,1754.006500,extended,nbiot,180 +on0,1,11,24,0,0,0,4322.010000,200,0,-1.000000,2014.875500,extended,nbiot,180 +on5,0,0,24,1,0,1980,4320.000000,200,0,42176.010000,1754.006500,extended,nbiot,180 +on8,0,0,24,1,0,1620,4320.000000,200,0,35670.010000,1754.006500,extended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,200,0,-1.000000,1728.000000,extended,nbiot,180 +on7,0,0,24,1,0,228,4320.000000,200,0,6789.020000,1754.006500,extended,nbiot,180 +on9,0,0,24,1,0,1089,4320.000000,200,0,23145.010000,1754.006500,extended,nbiot,180 +on6,0,0,24,1,0,1076,4356.010000,200,0,20732.010000,1768.410500,extended,nbiot,180 +on4,0,0,24,1,0,836,4320.000000,200,0,15376.010000,1754.006500,extended,nbiot,180 +on6,0,0,27,1,0,1726,4862.200000,1,3,37344.630960,2276.496376,hintandextended,nbiot,180 +on9,0,0,26,1,0,1326,4685.300000,1,2,29076.030960,2515.519668,hintandextended,nbiot,180 +on12,0,0,26,1,0,1413,4682.300000,1,2,29036.010320,2195.969792,hintandextended,nbiot,180 +on11,0,0,24,1,0,759,4321.010640,1,0,17366.010320,1754.424172,hintandextended,nbiot,180 +on8,0,0,25,1,0,1013,4503.610320,1,1,23914.010320,1963.964252,hintandextended,nbiot,180 +on2,0,0,25,1,0,1226,4503.220000,1,1,27193.010320,2123.239292,hintandextended,nbiot,180 +on10,0,0,24,1,0,1620,4321.010320,1,0,33195.010320,1870.760836,hintandextended,nbiot,180 +on5,0,0,26,1,0,1361,4681.471280,1,2,27233.030960,1964.446304,hintandextended,nbiot,180 +on3,0,0,25,1,0,1766,4502.000000,1,1,37303.010320,2033.116292,hintandextended,nbiot,180 +on4,0,0,27,1,0,1709,4863.500000,1,4,43036.010320,2631.019792,hintandextended,nbiot,180 +on1,0,0,24,1,0,249,4320.010320,1,0,4533.010320,1754.010836,hintandextended,nbiot,180 +on7,0,0,24,1,0,780,4375.289680,1,2,18964.010320,1970.479080,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,1,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on10,0,0,25,1,0,833,4502.000000,2,1,18898.010320,1928.719792,hintandextended,nbiot,180 +on3,0,0,25,1,0,1226,4647.000000,2,2,28169.030960,2117.031376,hintandextended,nbiot,180 +on4,0,0,25,1,0,1014,4502.000000,2,1,22770.010320,2034.358000,hintandextended,nbiot,180 +on7,0,0,26,1,0,1274,4682.810000,2,2,28129.010320,2203.973792,hintandextended,nbiot,180 +on8,0,0,24,1,0,795,4322.969360,2,0,15786.010320,1987.107536,hintandextended,nbiot,180 +on1,0,0,26,1,0,1482,4682.300000,2,2,30836.010320,2195.573084,hintandextended,nbiot,180 +on11,0,0,25,1,0,1244,4501.000000,2,1,22810.030960,1891.393084,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,2,0,-1.000000,2040.140868,hintandextended,nbiot,180 +on6,0,0,24,1,0,571,4321.989680,2,0,10970.010320,1829.559288,hintandextended,nbiot,180 +on2,0,0,25,1,0,1101,4611.231280,2,2,18939.630960,2057.328928,hintandextended,nbiot,180 +on9,0,0,29,1,0,1241,5222.920000,2,7,30877.630960,2668.030336,hintandextended,nbiot,180 +on5,0,0,24,1,0,720,4321.000000,2,0,15868.010320,1845.400000,hintandextended,nbiot,180 +on12,0,0,26,1,0,1416,4682.010000,2,2,28209.051600,2106.167000,hintandextended,nbiot,180 +on5,0,0,24,1,0,900,4321.000000,3,0,19105.010320,1845.270208,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4362.640960,3,0,-1.000000,2031.324704,hintandextended,nbiot,180 +on4,0,0,25,1,0,180,4507.600000,3,1,5628.620640,2374.228540,hintandextended,nbiot,180 +on9,0,0,25,1,0,902,4507.000000,3,2,19145.830640,2140.105124,hintandextended,nbiot,180 +on6,0,0,25,1,0,491,4503.189360,3,1,10934.010320,1827.309076,hintandextended,nbiot,180 +on10,0,0,24,1,0,360,4322.010320,3,0,8316.010320,1794.467544,hintandextended,nbiot,180 +on1,0,0,25,1,0,355,4503.180000,3,1,5455.010320,2150.796500,hintandextended,nbiot,180 +on2,0,0,25,1,0,0,4506.000320,3,1,1352.020320,2199.563336,hintandextended,nbiot,180 +on11,0,0,26,1,0,376,4684.220000,3,2,5496.630960,2112.907708,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4325.000000,3,0,1284.010320,2133.663624,hintandextended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,3,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on8,0,0,25,1,0,1193,4503.989680,3,1,25233.010320,2018.715788,hintandextended,nbiot,180 +on12,0,0,24,1,0,1620,4320.010320,3,0,32959.010320,1754.010836,hintandextended,nbiot,180 +on9,0,0,25,1,0,146,4510.641280,4,1,2246.630960,2075.606552,hintandextended,nbiot,180 +on7,0,0,25,1,0,293,4503.989680,4,1,7484.010320,2151.309080,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,4,0,-1.000000,2014.207948,hintandextended,nbiot,180 +on2,0,0,25,1,0,165,4503.289680,4,1,4222.010320,2023.875872,hintandextended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,4,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on10,0,0,25,1,0,180,4502.020960,4,1,4345.020640,1895.338300,hintandextended,nbiot,180 +on12,0,0,25,1,0,1620,4502.020320,4,1,34004.020320,1942.781336,hintandextended,nbiot,180 +on3,0,0,24,1,0,17,4322.010320,4,0,2205.010320,1880.527336,hintandextended,nbiot,180 +on11,0,0,25,1,0,1260,4502.610320,4,1,27192.620640,1847.409252,hintandextended,nbiot,180 +on4,0,0,25,1,0,2993,4501.000000,4,1,59138.010320,1881.663208,hintandextended,nbiot,180 +on8,0,0,24,1,0,1800,4323.010320,4,0,37235.010320,1946.974252,hintandextended,nbiot,180 +on6,0,0,25,1,0,1055,4501.010320,4,1,21393.010320,1831.624044,hintandextended,nbiot,180 +on1,0,0,25,1,0,1913,4501.210000,4,1,37107.010320,1917.490500,hintandextended,nbiot,180 +on10,0,0,26,1,0,920,4681.900000,5,2,20616.030960,2190.849876,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,5,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4321.010320,5,0,7651.010320,1826.820836,hintandextended,nbiot,180 +on4,0,0,24,1,0,627,4321.959040,5,0,13586.010320,1754.803532,hintandextended,nbiot,180 +on7,0,0,26,1,0,915,4705.120000,5,3,25043.010320,2242.855876,hintandextended,nbiot,180 +on6,0,0,24,1,0,1440,4320.010320,5,0,32090.010320,1754.010836,hintandextended,nbiot,180 +on9,0,0,25,1,0,540,4502.651280,5,1,13682.620640,1888.642344,hintandextended,nbiot,180 +on2,0,0,27,1,0,789,4863.900000,5,5,20576.010320,2535.752876,hintandextended,nbiot,180 +on8,0,0,24,1,0,653,4417.220000,5,1,15641.010320,1999.796000,hintandextended,nbiot,180 +on11,0,0,27,1,0,1081,4864.900000,5,4,25084.630960,2552.584460,hintandextended,nbiot,180 +on1,0,0,26,1,0,834,4684.300000,5,2,20656.051600,2356.020000,hintandextended,nbiot,180 +on12,0,0,24,1,0,1970,4351.010320,5,0,38519.010320,1882.760836,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.989680,5,0,2293.010320,1754.409288,hintandextended,nbiot,180 +on11,0,0,26,1,0,1413,4682.138400,6,3,28020.010320,1963.855360,hintandextended,nbiot,180 +on8,0,0,25,1,0,1659,4501.300000,6,1,35529.010320,1987.661500,hintandextended,nbiot,180 +on2,0,0,25,1,0,1285,4503.000000,6,2,28060.630960,2032.001584,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4322.010320,6,0,3515.010320,1836.697420,hintandextended,nbiot,180 +on9,0,0,24,1,0,1080,4321.010320,6,0,21876.010320,1837.480836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4335.651600,6,0,-1.000000,2046.414924,hintandextended,nbiot,180 +on4,0,0,26,1,0,1954,4681.600000,6,2,42502.010320,2196.989792,hintandextended,nbiot,180 +on3,0,0,24,1,0,1503,4323.000000,6,0,30239.010320,1937.200000,hintandextended,nbiot,180 +on1,0,0,26,1,0,1674,4683.341280,6,2,35569.030960,2126.206428,hintandextended,nbiot,180 +on5,0,0,26,1,0,1701,4681.600000,6,2,37307.010320,2203.684792,hintandextended,nbiot,180 +on10,0,0,25,1,0,1270,4502.348400,6,1,28100.651600,2031.935944,hintandextended,nbiot,180 +on6,0,0,26,1,0,1947,4682.300000,6,2,37347.030960,2087.153084,hintandextended,nbiot,180 +on12,0,0,25,1,0,1314,4501.300000,6,1,27945.010320,1956.403208,hintandextended,nbiot,180 +on3,0,0,25,1,0,852,4502.300000,7,1,21468.010320,2131.900000,hintandextended,nbiot,180 +on5,0,0,26,1,0,513,4682.510000,7,4,13868.010320,2173.297292,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4325.430640,7,0,-1.000000,2042.366788,hintandextended,nbiot,180 +on6,0,0,25,1,0,366,4502.300000,7,1,8143.010320,2048.173292,hintandextended,nbiot,180 +on4,0,0,25,1,0,185,4500.590000,7,1,3694.430640,1826.255916,hintandextended,nbiot,180 +on12,0,0,25,1,0,332,4504.261600,7,1,6915.010320,1993.351264,hintandextended,nbiot,180 +on7,0,0,26,1,0,712,4683.300000,7,2,16867.010320,2150.739584,hintandextended,nbiot,180 +on10,0,0,24,1,0,23,4324.010320,7,0,3549.010320,2046.037544,hintandextended,nbiot,180 +on8,0,0,25,1,0,360,4503.061600,7,1,8256.051280,2149.234640,hintandextended,nbiot,180 +on2,0,0,24,1,0,3859,4321.000000,7,0,77970.010320,1794.050000,hintandextended,nbiot,180 +on1,0,0,24,1,0,180,4322.010320,7,0,3654.010320,1956.044336,hintandextended,nbiot,180 +on9,0,0,26,1,0,693,4685.199360,7,2,13909.041280,2199.931036,hintandextended,nbiot,180 +on11,0,0,27,1,0,848,4861.320640,7,3,16908.630960,2123.941048,hintandextended,nbiot,180 +on0,1,12,23,0,0,0,4340.010320,8,0,-1.000000,2048.158412,hintandextended,nbiot,180 +on3,0,0,25,1,0,1103,4601.310000,8,2,23995.010320,2164.217084,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4320.010320,8,0,7853.010320,1754.010836,hintandextended,nbiot,180 +on7,0,0,24,1,0,164,4344.010320,8,0,1965.010320,1763.610836,hintandextended,nbiot,180 +on11,0,0,25,1,0,572,4500.041280,8,1,13058.630960,1826.036428,hintandextended,nbiot,180 +on10,0,0,25,1,0,1044,4502.000000,8,1,19275.010320,1981.506500,hintandextended,nbiot,180 +on6,0,0,25,1,0,512,4503.220000,8,1,13017.010320,2109.914292,hintandextended,nbiot,180 +on1,0,0,25,1,0,180,4503.610320,8,1,6369.620640,2059.702752,hintandextended,nbiot,180 +on12,0,0,26,1,0,536,4683.600000,8,2,14868.010320,2429.651292,hintandextended,nbiot,180 +on4,0,0,24,1,0,320,4321.010320,8,0,6307.010320,1828.504128,hintandextended,nbiot,180 +on2,0,0,26,1,0,694,4682.010000,8,2,14908.030960,2053.483460,hintandextended,nbiot,180 +on9,0,0,24,1,0,156,4493.682560,8,1,2005.630960,2056.901440,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4320.010320,8,0,2093.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,24,1,0,412,4322.010320,9,0,8888.010320,1856.867544,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4321.000000,9,0,11683.010320,1755.700000,hintandextended,nbiot,180 +on2,0,0,24,1,0,2424,4323.000000,9,0,48891.010320,1976.200000,hintandextended,nbiot,180 +on7,0,0,24,1,0,2067,4323.000000,9,0,42460.010320,2000.893292,hintandextended,nbiot,180 +on9,0,0,24,1,0,1260,4323.979360,9,0,25580.010320,2014.825160,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4337.020320,9,0,-1.000000,2047.016076,hintandextended,nbiot,180 +on12,0,0,25,1,0,3169,4501.300000,9,1,64312.010320,1922.330000,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4321.000000,9,0,1577.010320,1771.956708,hintandextended,nbiot,180 +on1,0,0,24,1,0,154,4336.051600,9,0,1530.010320,1789.054180,hintandextended,nbiot,180 +on4,0,0,25,1,0,1596,4502.010320,9,1,30631.010320,1977.617336,hintandextended,nbiot,180 +on5,0,0,24,1,0,1080,4324.051600,9,0,22114.010320,2074.147472,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4355.020960,9,1,1687.020320,2064.435008,hintandextended,nbiot,180 +on8,0,0,24,1,0,560,4322.010320,9,0,11627.010320,1949.160836,hintandextended,nbiot,180 +on2,0,0,24,1,0,1573,4321.000000,10,0,29679.010320,1758.300000,hintandextended,nbiot,180 +on10,0,0,25,1,0,1293,4501.300000,10,1,28756.010320,1994.480000,hintandextended,nbiot,180 +on7,0,0,24,1,0,650,4320.030640,10,0,13632.010320,1754.025464,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,10,0,-1.000000,2040.134160,hintandextended,nbiot,180 +on4,0,0,26,1,0,1236,4844.300000,10,4,29719.030960,2360.869584,hintandextended,nbiot,180 +on6,0,0,24,1,0,937,4321.000000,10,0,20603.010320,1820.309792,hintandextended,nbiot,180 +on9,0,0,25,1,0,1261,4504.000000,10,1,28824.630960,2241.239876,hintandextended,nbiot,180 +on8,0,0,25,1,0,473,4500.010320,10,1,9500.010320,1826.017336,hintandextended,nbiot,180 +on3,0,0,25,1,0,604,4502.310320,10,2,14621.010320,2134.230712,hintandextended,nbiot,180 +on1,0,0,24,1,0,159,4340.010320,10,0,1910.010320,1863.670836,hintandextended,nbiot,180 +on12,0,0,25,1,0,1452,4500.651600,10,1,28864.651600,1826.267348,hintandextended,nbiot,180 +on5,0,0,26,1,0,900,4683.299680,10,2,20644.630960,2144.006288,hintandextended,nbiot,180 +on11,0,0,25,1,0,293,4503.000000,10,1,6116.010320,1870.373208,hintandextended,nbiot,180 +on12,0,0,25,1,0,953,4502.258720,11,1,22875.010320,1999.803488,hintandextended,nbiot,180 +on3,0,0,27,1,0,1273,4864.300000,11,4,26629.030960,2435.819376,hintandextended,nbiot,180 +on11,0,0,25,1,0,0,4503.269040,11,2,3952.010320,2127.231032,hintandextended,nbiot,180 +on6,0,0,24,1,0,992,4323.000000,11,0,19828.010320,1991.806708,hintandextended,nbiot,180 +on8,0,0,28,1,0,1132,5044.730000,11,4,26589.010320,2635.970084,hintandextended,nbiot,180 +on2,0,0,26,1,0,1028,4681.300000,11,2,19868.030960,2055.357876,hintandextended,nbiot,180 +on9,0,0,29,1,0,1198,5224.320000,11,5,31414.010320,2868.290668,hintandextended,nbiot,180 +on1,0,0,24,1,0,34,4320.041280,11,0,230.010320,1754.036428,hintandextended,nbiot,180 +on5,0,0,24,1,0,845,4322.000000,11,0,17929.010320,1877.650000,hintandextended,nbiot,180 +on10,0,0,24,1,0,720,4322.989680,11,0,17969.030960,1950.449164,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4321.969040,11,0,389.010320,1856.180908,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4339.010320,11,0,-1.000000,2047.805368,hintandextended,nbiot,180 +on4,0,0,25,1,0,1620,4501.000000,11,1,35089.620640,1917.205000,hintandextended,nbiot,180 +on3,0,0,27,1,0,733,4865.810640,12,4,18253.030960,2524.382048,hintandextended,nbiot,180 +on10,0,0,24,1,0,366,4321.989680,12,0,10783.010320,1841.252580,hintandextended,nbiot,180 +on5,0,0,27,1,0,530,4980.080000,12,4,14875.630960,2611.105000,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4321.000000,12,0,2626.010320,1814.466708,hintandextended,nbiot,180 +on9,0,0,25,1,0,513,4502.210000,12,1,10823.030960,2007.180584,hintandextended,nbiot,180 +on2,0,0,26,1,0,830,4683.200000,12,2,23904.010320,2477.383292,hintandextended,nbiot,180 +on6,0,0,25,1,0,113,4502.010320,12,1,4851.010320,1947.197336,hintandextended,nbiot,180 +on4,0,0,26,1,0,466,4681.341280,12,2,10863.051600,1980.469844,hintandextended,nbiot,180 +on11,0,0,24,1,0,2456,4321.000000,12,0,50515.010320,1770.000000,hintandextended,nbiot,180 +on1,0,0,24,1,0,848,4346.000000,12,1,18213.010320,1961.356500,hintandextended,nbiot,180 +on8,0,0,25,1,0,660,4501.010000,12,1,13122.010320,1916.760500,hintandextended,nbiot,180 +on12,0,0,27,1,0,513,4862.900000,12,4,14834.010320,2451.502460,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,12,0,-1.000000,2040.181116,hintandextended,nbiot,180 +on7,0,0,27,1,0,611,4865.710000,13,3,11124.030960,2360.815208,hintandextended,nbiot,180 +on12,0,0,25,1,0,392,4503.041280,13,1,10227.051600,2089.153096,hintandextended,nbiot,180 +on3,0,0,24,1,0,2011,4354.600000,13,1,47785.010320,2082.830000,hintandextended,nbiot,180 +on4,0,0,26,1,0,359,4682.300000,13,2,6457.630960,2092.476584,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4379.289680,13,2,6416.010320,2203.075664,hintandextended,nbiot,180 +on2,0,0,25,1,0,526,4672.520000,13,2,11084.010320,2086.107792,hintandextended,nbiot,180 +on10,0,0,26,1,0,486,4681.300000,13,2,10187.030960,2054.499876,hintandextended,nbiot,180 +on9,0,0,24,1,0,438,4321.000000,13,0,10147.010320,1794.050000,hintandextended,nbiot,180 +on11,0,0,26,1,0,1064,4680.610320,13,3,24743.010320,2045.475628,hintandextended,nbiot,180 +on8,0,0,24,1,0,3,4321.969360,13,0,2049.010320,1869.070952,hintandextended,nbiot,180 +on5,0,0,25,1,0,1028,4502.269360,13,1,20579.010320,1874.500952,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,13,0,-1.000000,2040.194532,hintandextended,nbiot,180 +on1,0,0,25,1,0,454,4513.672240,13,2,10267.672240,2227.352436,hintandextended,nbiot,180 +on8,0,0,25,1,0,385,4503.938080,14,2,9187.630960,1968.696940,hintandextended,nbiot,180 +on7,0,0,25,1,0,406,4501.410320,14,1,9069.010320,1893.735336,hintandextended,nbiot,180 +on9,0,0,26,1,0,807,4853.900000,14,3,18389.010320,2393.810084,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,14,0,-1.000000,2040.167700,hintandextended,nbiot,180 +on3,0,0,25,1,0,0,4502.620640,14,1,1892.620640,1999.116672,hintandextended,nbiot,180 +on1,0,0,24,1,0,180,4321.000000,14,0,6711.010320,1774.160000,hintandextended,nbiot,180 +on4,0,0,25,1,0,498,4561.600000,14,2,15932.010320,2201.216668,hintandextended,nbiot,180 +on11,0,0,24,1,0,1408,4329.010320,14,0,26535.010320,1873.960836,hintandextended,nbiot,180 +on2,0,0,25,1,0,472,4503.289680,14,1,14106.010320,2026.007456,hintandextended,nbiot,180 +on10,0,0,25,1,0,514,4502.600000,14,1,14146.030960,2087.683292,hintandextended,nbiot,180 +on12,0,0,25,1,0,355,4501.190000,14,1,6663.010320,1917.482500,hintandextended,nbiot,180 +on6,0,0,27,1,0,695,4863.600000,14,3,15972.030960,2287.716584,hintandextended,nbiot,180 +on5,0,0,26,1,0,513,4685.000000,14,3,9147.010320,2277.109668,hintandextended,nbiot,180 +on3,0,0,25,1,0,1013,4503.000000,15,1,22256.010320,2070.969916,hintandextended,nbiot,180 +on5,0,0,28,1,0,1364,5043.500000,15,5,32533.010320,2636.569876,hintandextended,nbiot,180 +on1,0,0,25,1,0,1038,4537.051600,15,2,18300.051600,2039.350556,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4320.010320,15,0,3572.010320,1754.010836,hintandextended,nbiot,180 +on7,0,0,26,1,0,831,4682.220000,15,2,17129.051600,2049.375584,hintandextended,nbiot,180 +on12,0,0,26,1,0,826,4684.589680,15,3,18220.010320,2127.810788,hintandextended,nbiot,180 +on4,0,0,26,1,0,1450,4681.569360,15,2,31395.010320,2068.934036,hintandextended,nbiot,180 +on11,0,0,24,1,0,540,4323.000000,15,0,13028.010320,1982.953292,hintandextended,nbiot,180 +on9,0,0,28,1,0,1175,5042.200000,15,4,28721.010320,2461.869376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,15,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on8,0,0,24,1,0,904,4322.959040,15,1,18260.030960,2002.026992,hintandextended,nbiot,180 +on2,0,0,25,1,0,873,4501.000000,15,1,17089.030960,1891.393084,hintandextended,nbiot,180 +on10,0,0,24,1,0,774,4322.000000,15,0,17049.010320,1884.143292,hintandextended,nbiot,180 +on7,0,0,24,1,0,1108,4432.300000,16,1,22185.010320,2099.480000,hintandextended,nbiot,180 +on12,0,0,27,1,0,1489,4862.810000,16,3,33866.630960,2271.208460,hintandextended,nbiot,180 +on3,0,0,24,1,0,1371,4321.948400,16,0,27202.010320,1802.112568,hintandextended,nbiot,180 +on8,0,0,25,1,0,900,4501.040960,16,1,19733.020320,1942.136300,hintandextended,nbiot,180 +on10,0,0,26,1,0,240,4680.910320,16,4,11096.010320,2211.007420,hintandextended,nbiot,180 +on5,0,0,24,1,0,1515,4321.000000,16,1,30750.010320,1794.706500,hintandextended,nbiot,180 +on1,0,0,26,1,0,1446,4682.190000,16,2,27243.630960,2104.925584,hintandextended,nbiot,180 +on11,0,0,25,1,0,526,4501.269360,16,1,9715.010320,1835.620952,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,16,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on2,0,0,26,1,0,1568,4682.600000,16,2,33825.010320,2200.379584,hintandextended,nbiot,180 +on9,0,0,24,1,0,81,4322.020320,16,0,2807.010320,1898.067920,hintandextended,nbiot,180 +on4,0,0,24,1,0,180,4320.969360,16,0,6326.010320,1754.400952,hintandextended,nbiot,180 +on6,0,0,26,1,0,1687,4682.900000,16,2,39493.010320,2272.129792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,17,0,-1.000000,2040.194532,hintandextended,nbiot,180 +on6,0,0,25,1,0,949,4503.289680,17,1,21299.010320,2025.247372,hintandextended,nbiot,180 +on5,0,0,26,1,0,970,4684.310320,17,2,21340.630960,2221.357544,hintandextended,nbiot,180 +on11,0,0,25,1,0,694,4534.630960,17,2,14477.630960,1904.488800,hintandextended,nbiot,180 +on1,0,0,25,1,0,621,4501.190000,17,1,14436.010320,1916.442292,hintandextended,nbiot,180 +on2,0,0,24,1,0,1382,4370.310320,17,3,30995.010320,1779.324128,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4322.010320,17,0,2583.010320,1899.377544,hintandextended,nbiot,180 +on10,0,0,26,1,0,986,4684.330960,17,2,22245.010320,2323.408884,hintandextended,nbiot,180 +on3,0,0,26,1,0,239,4686.658720,17,3,7541.630960,2431.401904,hintandextended,nbiot,180 +on7,0,0,25,1,0,1385,4504.300000,17,1,27670.010320,2126.083208,hintandextended,nbiot,180 +on8,0,0,25,1,0,294,4500.969360,17,1,6293.010320,1826.407452,hintandextended,nbiot,180 +on4,0,0,23,1,0,497,4319.010320,17,0,7501.010320,1906.620836,hintandextended,nbiot,180 +on9,0,0,24,1,0,2502,4321.300000,17,1,53831.010320,1852.026500,hintandextended,nbiot,180 +on3,0,0,28,1,0,617,5081.150000,18,5,15756.630960,2443.908960,hintandextended,nbiot,180 +on5,0,0,25,1,0,282,4530.300000,18,2,9023.051600,2055.862876,hintandextended,nbiot,180 +on8,0,0,25,1,0,0,4502.041280,18,1,2310.620640,1860.701636,hintandextended,nbiot,180 +on1,0,0,26,1,0,556,4682.480000,18,2,13755.010320,2147.479876,hintandextended,nbiot,180 +on10,0,0,25,1,0,465,4672.168400,18,2,9063.441280,1960.920568,hintandextended,nbiot,180 +on4,0,0,25,1,0,536,4501.000000,18,1,8983.030960,1890.353084,hintandextended,nbiot,180 +on12,0,0,27,1,0,464,4863.780000,18,3,13796.041280,2359.489876,hintandextended,nbiot,180 +on2,0,0,27,1,0,400,4881.761920,18,3,9103.461920,2158.091352,hintandextended,nbiot,180 +on7,0,0,24,1,0,113,4395.220000,18,1,3838.010320,1923.396000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4340.461920,18,0,-1.000000,2048.332344,hintandextended,nbiot,180 +on6,0,0,26,1,0,194,4681.600000,18,2,8943.010320,2157.021292,hintandextended,nbiot,180 +on11,0,0,25,1,0,153,4501.260000,18,1,3878.030960,1892.348584,hintandextended,nbiot,180 +on9,0,0,27,1,0,414,4863.500000,18,4,15715.010320,2531.991252,hintandextended,nbiot,180 +on7,0,0,26,1,0,1055,4683.000000,19,2,20129.630960,2148.429708,hintandextended,nbiot,180 +on12,0,0,25,1,0,828,4501.300000,19,1,20088.010320,1921.543084,hintandextended,nbiot,180 +on3,0,0,26,1,0,98,4683.289680,19,3,4618.651600,2123.182372,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4321.000000,19,0,3356.010320,1788.720000,hintandextended,nbiot,180 +on11,0,0,26,1,0,354,4681.610320,19,2,11608.010320,2192.463836,hintandextended,nbiot,180 +on6,0,0,25,1,0,294,4501.061920,19,1,4578.030960,1843.331268,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4374.030960,19,0,-1.000000,2061.820332,hintandextended,nbiot,180 +on1,0,0,24,1,0,720,4324.010320,19,0,17117.010320,1998.327544,hintandextended,nbiot,180 +on8,0,0,24,1,0,499,4321.000000,19,0,9983.010320,1759.606500,hintandextended,nbiot,180 +on9,0,0,24,1,0,1980,4321.000000,19,0,39693.010320,1825.900000,hintandextended,nbiot,180 +on5,0,0,24,1,0,195,4321.030960,19,0,4538.010320,1835.019092,hintandextended,nbiot,180 +on2,0,0,26,1,0,391,4859.580000,19,5,16961.010320,2485.073376,hintandextended,nbiot,180 +on4,0,0,25,1,0,1440,4503.620640,19,1,30165.620640,2122.106672,hintandextended,nbiot,180 +on8,0,0,25,1,0,1467,4503.289680,20,1,31836.010320,2043.135996,hintandextended,nbiot,180 +on6,0,0,25,1,0,1156,4505.300000,20,1,25142.010320,2187.966500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,20,0,-1.000000,2040.254904,hintandextended,nbiot,180 +on2,0,0,26,1,0,1233,4684.989680,20,2,25182.030960,2245.788956,hintandextended,nbiot,180 +on10,0,0,25,1,0,720,4505.000000,20,1,15372.020640,2233.463292,hintandextended,nbiot,180 +on5,0,0,25,1,0,742,4504.320640,20,1,18828.010320,2283.248048,hintandextended,nbiot,180 +on11,0,0,26,1,0,874,4687.030960,20,2,18869.630960,2403.569132,hintandextended,nbiot,180 +on1,0,0,24,1,0,360,4324.969040,20,0,7802.010320,1991.314448,hintandextended,nbiot,180 +on4,0,0,25,1,0,651,4502.279360,20,1,15241.010320,1962.768452,hintandextended,nbiot,180 +on3,0,0,24,1,0,1766,4326.010320,20,0,34261.010320,1756.410836,hintandextended,nbiot,180 +on9,0,0,25,1,0,3853,4501.300000,20,1,79212.010320,1987.070000,hintandextended,nbiot,180 +on12,0,0,26,1,0,1167,4684.300000,20,2,26477.010320,2330.026500,hintandextended,nbiot,180 +on7,0,0,24,1,0,358,4362.030960,20,0,6523.010320,1991.839216,hintandextended,nbiot,180 +on3,0,0,27,1,0,782,4863.200000,21,3,21325.010320,2548.927876,hintandextended,nbiot,180 +on4,0,0,27,1,0,523,4863.900000,21,3,12332.010320,2427.463292,hintandextended,nbiot,180 +on10,0,0,25,1,0,294,4503.989680,21,1,5901.010320,2062.388872,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4357.010320,21,0,-1.000000,2054.951704,hintandextended,nbiot,180 +on7,0,0,26,1,0,1080,4680.300000,21,2,21366.630960,1916.983208,hintandextended,nbiot,180 +on8,0,0,25,1,0,368,4501.300000,21,1,8360.010320,2025.940000,hintandextended,nbiot,180 +on12,0,0,26,1,0,267,4681.251280,21,2,5942.630960,1917.188428,hintandextended,nbiot,180 +on6,0,0,25,1,0,1065,4502.300000,21,1,22311.010320,2044.020000,hintandextended,nbiot,180 +on1,0,0,25,1,0,902,4563.300000,21,2,16721.630960,2058.272876,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4323.000000,21,0,376.010320,1972.163292,hintandextended,nbiot,180 +on2,0,0,26,1,0,557,4682.900000,21,2,16680.010320,2385.483084,hintandextended,nbiot,180 +on9,0,0,26,1,0,413,4682.341280,21,2,8400.030960,2129.686304,hintandextended,nbiot,180 +on11,0,0,24,1,0,33,4320.620320,21,0,199.010320,1754.254836,hintandextended,nbiot,180 +on7,0,0,25,1,0,1661,4503.489680,22,1,34841.010320,2038.139080,hintandextended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,22,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on6,0,0,24,1,0,1440,4323.989680,22,0,30419.010320,2079.302580,hintandextended,nbiot,180 +on4,0,0,24,1,0,180,4321.010320,22,0,4852.010320,1767.417544,hintandextended,nbiot,180 +on5,0,0,24,1,0,62,4320.000000,22,0,1345.010320,1754.006708,hintandextended,nbiot,180 +on1,0,0,24,1,0,564,4322.030960,22,0,12941.010320,1986.492508,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4334.030960,22,0,-1.000000,2019.779876,hintandextended,nbiot,180 +on9,0,0,24,1,0,1260,4323.979360,22,0,27051.010320,1932.021868,hintandextended,nbiot,180 +on8,0,0,25,1,0,4065,4500.300000,22,1,84509.010000,1874.876500,hintandextended,nbiot,180 +on12,0,0,23,1,0,1302,4260.989680,22,1,30272.010320,1896.419080,hintandextended,nbiot,180 +on3,0,0,24,1,0,898,4363.010320,22,0,18194.010320,2020.830960,hintandextended,nbiot,180 +on2,0,0,25,1,0,3042,4500.020320,22,1,61105.010320,1826.021336,hintandextended,nbiot,180 +on11,0,0,24,1,0,540,4320.030960,22,0,13088.010320,1754.032508,hintandextended,nbiot,180 +on9,0,0,25,1,0,1855,4501.300000,23,1,37836.010320,1998.770000,hintandextended,nbiot,180 +on10,0,0,25,1,0,338,4501.010320,23,1,6409.010320,1916.767336,hintandextended,nbiot,180 +on1,0,0,26,1,0,183,4685.799680,23,3,8249.010320,2421.821372,hintandextended,nbiot,180 +on6,0,0,24,1,0,1980,4321.000000,23,0,43211.010320,1845.400000,hintandextended,nbiot,180 +on8,0,0,26,1,0,332,4682.051600,23,2,6450.041280,2080.183848,hintandextended,nbiot,180 +on11,0,0,25,1,0,16,4504.948400,23,1,3285.630960,2116.715860,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,23,0,-1.000000,2040.207948,hintandextended,nbiot,180 +on2,0,0,27,1,0,534,4861.810000,23,3,13329.010320,2241.961668,hintandextended,nbiot,180 +on3,0,0,24,1,0,118,4322.000000,23,0,3244.010320,1883.369792,hintandextended,nbiot,180 +on4,0,0,25,1,0,9,4503.000000,23,1,3325.651600,2037.629752,hintandextended,nbiot,180 +on12,0,0,27,1,0,511,4862.869040,23,4,13409.651600,2297.734240,hintandextended,nbiot,180 +on7,0,0,24,1,0,693,4535.989680,23,2,13369.030960,2084.795456,hintandextended,nbiot,180 +on5,0,0,27,1,0,376,4865.200000,23,4,14909.010320,2730.616376,hintandextended,nbiot,180 +on2,0,0,26,1,0,1279,4686.010000,24,2,24773.030960,2413.903584,hintandextended,nbiot,180 +on10,0,0,25,1,0,2880,4503.000000,24,1,58661.010320,2039.106708,hintandextended,nbiot,180 +on6,0,0,25,1,0,602,4611.341280,24,3,15842.630960,2205.566636,hintandextended,nbiot,180 +on12,0,0,24,1,0,701,4400.199680,24,1,15801.010320,1982.653080,hintandextended,nbiot,180 +on3,0,0,25,1,0,1440,4503.989680,24,1,30736.620640,2106.257580,hintandextended,nbiot,180 +on11,0,0,24,1,0,261,4320.010320,24,0,6106.010320,1754.010836,hintandextended,nbiot,180 +on9,0,0,25,1,0,3240,4502.000000,24,1,66612.620640,1969.605000,hintandextended,nbiot,180 +on1,0,0,24,1,0,1103,4322.979360,24,0,24733.010320,1830.605160,hintandextended,nbiot,180 +on8,0,0,24,1,0,370,4320.000000,24,0,8599.010320,1754.013208,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4508.300320,24,2,13319.010320,2507.426752,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,24,0,-1.000000,2040.241488,hintandextended,nbiot,180 +on7,0,0,25,1,0,1374,4503.979360,24,1,27921.010320,2008.311660,hintandextended,nbiot,180 +on4,0,0,27,1,0,1353,4862.510000,24,3,27961.030960,2195.708376,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.020640,25,0,807.010320,1754.021672,hintandextended,nbiot,180 +on4,0,0,26,1,0,874,4685.000000,25,2,17685.630960,2237.616292,hintandextended,nbiot,180 +on2,0,0,25,1,0,540,4504.040960,25,1,14003.040960,2133.889468,hintandextended,nbiot,180 +on1,0,0,25,1,0,332,4500.979680,25,1,6120.010320,1827.269788,hintandextended,nbiot,180 +on6,0,0,24,1,0,767,4322.000000,25,0,17644.010320,1887.016500,hintandextended,nbiot,180 +on12,0,0,24,1,0,2533,4322.000000,25,0,53923.010320,1844.500000,hintandextended,nbiot,180 +on9,0,0,26,1,0,343,4681.269360,25,3,7655.010320,1989.520744,hintandextended,nbiot,180 +on8,0,0,24,1,0,122,4321.000000,25,0,709.010320,1870.100208,hintandextended,nbiot,180 +on11,0,0,24,1,0,540,4322.989680,25,0,13888.010320,1804.609288,hintandextended,nbiot,180 +on7,0,0,25,1,0,732,4503.769040,25,2,17726.251600,2136.479448,hintandextended,nbiot,180 +on0,1,12,23,0,0,0,4342.040960,25,0,-1.000000,2049.024332,hintandextended,nbiot,180 +on5,0,0,24,1,0,1620,4377.620640,25,2,34395.620640,1866.326796,hintandextended,nbiot,180 +on10,0,0,25,1,0,360,4501.300000,25,2,13837.010320,1952.606792,hintandextended,nbiot,180 +on11,0,0,25,1,0,179,4501.479360,26,2,6949.010320,1901.549744,hintandextended,nbiot,180 +on7,0,0,24,1,0,1130,4321.000000,26,0,24427.010320,1811.859792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,26,0,-1.000000,2040.140868,hintandextended,nbiot,180 +on10,0,0,24,1,0,586,4321.989680,26,0,14344.010320,1778.845872,hintandextended,nbiot,180 +on6,0,0,26,1,0,1665,4681.220000,26,3,31609.651600,1991.204416,hintandextended,nbiot,180 +on8,0,0,26,1,0,1540,4683.780000,26,2,33853.010320,2354.836584,hintandextended,nbiot,180 +on3,0,0,26,1,0,1268,4683.958400,26,2,24468.630960,2131.003484,hintandextended,nbiot,180 +on1,0,0,25,1,0,1943,4502.210000,26,1,39513.010320,1956.240500,hintandextended,nbiot,180 +on4,0,0,26,1,0,1657,4683.000000,26,2,31569.030960,2171.737668,hintandextended,nbiot,180 +on2,0,0,25,1,0,1426,4502.000000,26,1,31529.010320,2033.506500,hintandextended,nbiot,180 +on12,0,0,24,1,0,44,4320.030640,26,0,2768.010320,1754.025464,hintandextended,nbiot,180 +on9,0,0,26,1,0,446,4680.520320,26,3,10428.010320,1989.214628,hintandextended,nbiot,180 +on5,0,0,24,1,0,947,4321.000000,26,0,21112.010320,1869.716708,hintandextended,nbiot,180 +on5,0,0,25,1,0,1260,4503.010320,27,2,26921.620640,2024.622544,hintandextended,nbiot,180 +on1,0,0,25,1,0,390,4502.020640,27,2,9503.651600,1979.544632,hintandextended,nbiot,180 +on7,0,0,25,1,0,365,4501.300000,27,1,11071.010320,2030.606584,hintandextended,nbiot,180 +on8,0,0,26,1,0,627,4682.310320,27,2,17234.010320,2117.987336,hintandextended,nbiot,180 +on2,0,0,24,1,0,1283,4322.010320,27,0,26812.010320,1925.370836,hintandextended,nbiot,180 +on10,0,0,26,1,0,371,4681.300000,27,3,9423.010320,2079.869792,hintandextended,nbiot,180 +on12,0,0,26,1,0,446,4683.989680,27,2,9463.030960,2171.945456,hintandextended,nbiot,180 +on4,0,0,24,1,0,1805,4321.000000,27,0,38174.010320,1842.150000,hintandextended,nbiot,180 +on6,0,0,25,1,0,2160,4502.000000,27,1,46344.620640,2032.005000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,27,0,-1.000000,2040.228072,hintandextended,nbiot,180 +on3,0,0,25,1,0,0,4504.269360,27,2,5866.010320,2205.630952,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4322.969360,27,0,1517.010320,1874.007536,hintandextended,nbiot,180 +on11,0,0,25,1,0,395,4503.051600,27,1,9543.672240,1931.507472,hintandextended,nbiot,180 +on1,0,0,25,1,0,1980,4505.989680,28,2,40958.620640,2318.957580,hintandextended,nbiot,180 +on8,0,0,25,1,0,540,4504.630960,28,1,11165.620640,2268.110800,hintandextended,nbiot,180 +on3,0,0,24,1,0,1528,4321.000000,28,0,32344.010320,1768.056708,hintandextended,nbiot,180 +on5,0,0,24,1,0,781,4321.979360,28,0,15495.010320,1805.108244,hintandextended,nbiot,180 +on7,0,0,24,1,0,1013,4480.000000,28,1,23684.010320,1818.013208,hintandextended,nbiot,180 +on9,0,0,25,1,0,360,4504.010320,28,1,10211.620640,1938.695836,hintandextended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,28,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on12,0,0,24,1,0,900,4323.000000,28,0,18240.010320,1929.413416,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4328.620640,28,0,-1.000000,2017.649496,hintandextended,nbiot,180 +on10,0,0,25,1,0,1800,4502.620640,28,1,38044.620640,2059.559964,hintandextended,nbiot,180 +on4,0,0,25,1,0,484,4501.641280,28,1,11051.010320,1917.676428,hintandextended,nbiot,180 +on11,0,0,25,1,0,820,4503.300000,28,1,18118.010320,2080.956500,hintandextended,nbiot,180 +on6,0,0,26,1,0,694,4684.210000,28,2,15536.630960,2140.470416,hintandextended,nbiot,180 +on11,0,0,25,1,0,633,4505.289680,29,1,14489.010320,2268.686080,hintandextended,nbiot,180 +on1,0,0,24,1,0,1332,4322.000000,29,0,28204.010320,1853.613416,hintandextended,nbiot,180 +on6,0,0,24,1,0,345,4345.989680,29,0,6058.010320,1764.409288,hintandextended,nbiot,180 +on8,0,0,26,1,0,1090,4688.000000,29,2,21564.030960,2477.763000,hintandextended,nbiot,180 +on7,0,0,25,1,0,452,4500.989680,29,1,8084.630960,1919.821204,hintandextended,nbiot,180 +on4,0,0,23,1,0,2999,4321.000000,29,0,58972.010320,1870.756708,hintandextended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,29,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on2,0,0,27,1,0,933,4865.900000,29,3,21751.010320,2601.578044,hintandextended,nbiot,180 +on5,0,0,24,1,0,536,4359.020640,29,0,8044.010320,2067.328380,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,29,0,-1.000000,2014.214656,hintandextended,nbiot,180 +on12,0,0,24,1,0,638,4323.989680,29,1,14529.030960,2056.162788,hintandextended,nbiot,180 +on3,0,0,25,1,0,916,4650.300000,29,3,21604.651600,2147.049708,hintandextended,nbiot,180 +on10,0,0,25,1,0,1059,4502.989680,29,1,21524.010320,1965.860580,hintandextended,nbiot,180 +on1,0,0,24,1,0,180,4321.000000,30,0,4406.010320,1781.713208,hintandextended,nbiot,180 +on11,0,0,24,1,0,1800,4320.010320,30,0,39410.010320,1754.010836,hintandextended,nbiot,180 +on10,0,0,25,1,0,720,4501.020640,30,1,17610.010320,1941.458256,hintandextended,nbiot,180 +on12,0,0,25,1,0,466,4501.300000,30,1,13298.010320,1955.610000,hintandextended,nbiot,180 +on6,0,0,27,1,0,866,4864.600000,30,4,17524.630960,2378.024584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4339.010320,30,0,-1.000000,2047.785244,hintandextended,nbiot,180 +on2,0,0,24,1,0,138,4320.010320,30,0,2231.010320,1754.010836,hintandextended,nbiot,180 +on3,0,0,24,1,0,280,4321.948400,30,0,4324.010320,1754.792776,hintandextended,nbiot,180 +on8,0,0,25,1,0,515,4502.300000,30,1,13338.030960,2112.906584,hintandextended,nbiot,180 +on7,0,0,26,1,0,619,4685.289680,30,2,13378.051600,2412.979080,hintandextended,nbiot,180 +on5,0,0,25,1,0,239,4505.389680,30,2,7243.010320,2116.450788,hintandextended,nbiot,180 +on9,0,0,25,1,0,2178,4501.300000,30,1,45450.010320,1947.290000,hintandextended,nbiot,180 +on4,0,0,27,1,0,713,4863.799680,30,4,17483.010320,2301.524456,hintandextended,nbiot,180 +on11,0,0,24,1,0,720,4322.000000,31,0,15032.010320,1886.360000,hintandextended,nbiot,180 +on12,0,0,26,1,0,1060,4681.300000,31,3,22478.010320,2081.371292,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4399.651600,31,0,-1.000000,2072.001508,hintandextended,nbiot,180 +on10,0,0,25,1,0,477,4502.000000,31,1,11309.010320,2034.156500,hintandextended,nbiot,180 +on4,0,0,26,1,0,1080,4684.000000,31,2,20063.630960,2134.112876,hintandextended,nbiot,180 +on5,0,0,25,1,0,1061,4502.220000,31,1,20022.010320,2033.204292,hintandextended,nbiot,180 +on8,0,0,25,1,0,385,4503.000000,31,2,8597.630960,1987.151584,hintandextended,nbiot,180 +on7,0,0,26,1,0,415,4683.569040,31,4,8557.010320,2168.195908,hintandextended,nbiot,180 +on9,0,0,24,1,0,900,4411.620640,31,1,20151.651600,1790.661672,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4320.010320,31,0,2598.010320,1754.010836,hintandextended,nbiot,180 +on6,0,0,25,1,0,418,4501.300000,31,1,8440.010320,1926.113208,hintandextended,nbiot,180 +on3,0,0,24,1,0,315,4320.969360,31,0,3995.010320,1754.400952,hintandextended,nbiot,180 +on1,0,0,25,1,0,1195,4502.300000,31,1,28419.010320,2123.326500,hintandextended,nbiot,180 +on10,0,0,25,1,0,595,4500.310320,32,1,16571.010320,1886.314128,hintandextended,nbiot,180 +on11,0,0,24,1,0,1260,4321.000000,32,0,25438.010320,1783.000000,hintandextended,nbiot,180 +on12,0,0,23,1,0,518,4441.289680,32,2,11390.010320,1866.209372,hintandextended,nbiot,180 +on1,0,0,24,1,0,2160,4321.010320,32,0,45513.010320,1849.310836,hintandextended,nbiot,180 +on5,0,0,24,1,0,1620,4321.000000,32,0,35040.010320,1760.776708,hintandextended,nbiot,180 +on8,0,0,24,1,0,540,4321.000000,32,0,11489.010320,1776.110000,hintandextended,nbiot,180 +on7,0,0,24,1,0,1603,4343.010320,32,0,31406.010320,1763.210836,hintandextended,nbiot,180 +on4,0,0,24,1,0,1800,4320.010320,32,0,37849.010320,1754.010836,hintandextended,nbiot,180 +on2,0,0,25,1,0,1624,4503.290000,32,1,37698.010320,2172.102416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4361.030960,32,0,-1.000000,2056.519712,hintandextended,nbiot,180 +on6,0,0,24,1,0,419,4320.030640,32,0,7553.010320,1754.025464,hintandextended,nbiot,180 +on9,0,0,25,1,0,2328,4500.020320,32,1,45369.010320,1826.021336,hintandextended,nbiot,180 +on3,0,0,26,1,0,1780,4682.900000,32,3,40585.010320,2358.703292,hintandextended,nbiot,180 +on2,0,0,25,1,0,692,4502.020000,33,1,14093.030960,1935.344376,hintandextended,nbiot,180 +on9,0,0,25,1,0,1044,4504.999680,33,1,21636.010320,2119.869788,hintandextended,nbiot,180 +on12,0,0,26,1,0,538,4683.310320,33,3,14133.051600,2227.990336,hintandextended,nbiot,180 +on7,0,0,26,1,0,741,4685.300000,33,3,17236.010320,2388.594376,hintandextended,nbiot,180 +on5,0,0,26,1,0,935,4685.269040,33,2,21676.030960,2141.790824,hintandextended,nbiot,180 +on3,0,0,24,1,0,327,4329.000000,33,0,6819.010320,1816.373416,hintandextended,nbiot,180 +on8,0,0,24,1,0,553,4321.989680,33,0,14053.010320,1836.702580,hintandextended,nbiot,180 +on4,0,0,25,1,0,473,4502.979680,33,1,10655.010320,2003.634996,hintandextended,nbiot,180 +on10,0,0,24,1,0,3240,4321.010320,33,0,64897.010320,1870.760836,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,33,0,-1.000000,2014.207948,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4320.010320,33,0,2559.010320,1754.010836,hintandextended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,33,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on1,0,0,27,1,0,914,4861.341280,33,3,17277.630960,2177.256220,hintandextended,nbiot,180 +on6,0,0,26,1,0,718,4681.041280,34,2,14185.030960,1963.422804,hintandextended,nbiot,180 +on9,0,0,26,1,0,873,4685.958720,34,2,15781.030960,2168.853196,hintandextended,nbiot,180 +on0,1,10,24,0,0,0,4359.020640,34,0,-1.000000,2003.836328,hintandextended,nbiot,180 +on12,0,0,26,1,0,735,4683.010320,34,3,14225.651600,2118.033960,hintandextended,nbiot,180 +on11,0,0,25,1,0,293,4504.000000,34,1,8743.010320,2127.139916,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4323.989680,34,0,5339.010320,2029.512580,hintandextended,nbiot,180 +on8,0,0,24,1,0,720,4323.989680,34,0,15881.010320,1856.372704,hintandextended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,34,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on4,0,0,24,1,0,473,4457.010320,34,1,14145.010320,2072.710628,hintandextended,nbiot,180 +on3,0,0,24,1,0,1260,4324.989680,34,0,28724.010320,2025.765996,hintandextended,nbiot,180 +on2,0,0,25,1,0,1013,4504.240960,34,1,19057.010320,2200.816300,hintandextended,nbiot,180 +on10,0,0,26,1,0,808,4684.499680,34,2,15741.010320,2265.112664,hintandextended,nbiot,180 +on4,0,0,24,1,0,537,4359.010320,35,0,7451.010320,1980.217544,hintandextended,nbiot,180 +on2,0,0,26,1,0,754,4685.000000,35,2,15435.030960,2361.044376,hintandextended,nbiot,180 +on8,0,0,23,1,0,333,4254.051600,35,0,4638.010320,1727.634056,hintandextended,nbiot,180 +on1,0,0,24,1,0,363,4484.061600,35,1,7531.061600,2016.581140,hintandextended,nbiot,180 +on6,0,0,26,1,0,1005,4752.300000,35,3,21349.630960,2081.872876,hintandextended,nbiot,180 +on11,0,0,25,1,0,1048,4501.000000,35,1,21308.010320,1916.366292,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4321.000000,35,0,4739.010320,1775.466708,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4320.969040,35,0,1629.010320,1754.401032,hintandextended,nbiot,180 +on10,0,0,25,1,0,471,4640.520000,35,3,12630.010320,2129.395876,hintandextended,nbiot,180 +on5,0,0,24,1,0,802,4322.000000,35,0,15395.010320,1907.160000,hintandextended,nbiot,180 +on7,0,0,26,1,0,333,4685.220000,35,2,7491.040960,2296.126084,hintandextended,nbiot,180 +on3,0,0,24,1,0,540,4321.000000,35,0,12718.010320,1754.413416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,35,0,-1.000000,2040.154284,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,36,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on11,0,0,25,1,0,1088,4501.300000,36,1,22644.010320,1970.170000,hintandextended,nbiot,180 +on1,0,0,26,1,0,874,4683.289680,36,2,19564.010320,2195.715664,hintandextended,nbiot,180 +on9,0,0,24,1,0,351,4352.010320,36,0,5804.010320,1883.160836,hintandextended,nbiot,180 +on4,0,0,26,1,0,74,4682.658720,36,3,5844.630960,2039.021904,hintandextended,nbiot,180 +on12,0,0,26,1,0,838,4682.341280,36,2,15977.030960,2123.309804,hintandextended,nbiot,180 +on10,0,0,25,1,0,1743,4502.300000,36,1,34931.010320,2071.320000,hintandextended,nbiot,180 +on2,0,0,25,1,0,653,4502.230640,36,1,15937.010320,2032.558964,hintandextended,nbiot,180 +on7,0,0,26,1,0,724,4682.300000,36,3,16017.651600,2220.826208,hintandextended,nbiot,180 +on8,0,0,25,1,0,1065,4660.020640,36,2,19604.030960,2018.714548,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4322.010320,36,0,733.010320,1913.417544,hintandextended,nbiot,180 +on3,0,0,24,1,0,138,4320.969360,36,0,629.010320,1754.400952,hintandextended,nbiot,180 +on6,0,0,24,1,0,360,4320.010320,36,0,10638.010320,1754.010836,hintandextended,nbiot,180 +on12,0,0,24,1,0,603,4322.989680,37,0,13482.010320,1920.952580,hintandextended,nbiot,180 +on6,0,0,24,1,0,900,4374.010320,37,1,19335.010320,1926.410836,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4321.000000,37,0,6812.010320,1754.413416,hintandextended,nbiot,180 +on8,0,0,25,1,0,360,4503.000000,37,1,8672.620640,2002.525124,hintandextended,nbiot,180 +on2,0,0,26,1,0,604,4682.820000,37,2,14444.010320,2220.546292,hintandextended,nbiot,180 +on10,0,0,25,1,0,833,4504.199680,37,1,19205.010320,2117.202872,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4360.641280,37,0,-1.000000,2056.451044,hintandextended,nbiot,180 +on5,0,0,27,1,0,738,4861.320000,37,3,14484.030960,2185.865668,hintandextended,nbiot,180 +on11,0,0,25,1,0,3183,4501.300000,37,1,63710.010320,1954.570000,hintandextended,nbiot,180 +on1,0,0,25,1,0,874,4558.041280,37,2,19246.630960,2033.856344,hintandextended,nbiot,180 +on4,0,0,25,1,0,565,4502.369040,37,2,13623.630960,1976.909324,hintandextended,nbiot,180 +on3,0,0,24,1,0,692,4390.009680,37,1,13522.030960,1854.810372,hintandextended,nbiot,180 +on9,0,0,26,1,0,514,4683.261280,37,2,13583.010320,2068.779220,hintandextended,nbiot,180 +on5,0,0,26,1,0,766,4686.589680,38,3,20967.030960,2533.664164,hintandextended,nbiot,180 +on4,0,0,25,1,0,1337,4502.300000,38,1,28707.010320,2077.820000,hintandextended,nbiot,180 +on10,0,0,24,1,0,773,4321.040960,38,0,14812.010320,1870.786300,hintandextended,nbiot,180 +on9,0,0,25,1,0,1073,4502.199360,38,1,20927.010320,1918.094452,hintandextended,nbiot,180 +on12,0,0,24,1,0,390,4321.010320,38,0,8131.010320,1825.260836,hintandextended,nbiot,180 +on6,0,0,24,1,0,2744,4321.000000,38,0,54222.010320,1816.800000,hintandextended,nbiot,180 +on11,0,0,25,1,0,902,4504.000000,38,1,21007.051600,2194.816460,hintandextended,nbiot,180 +on1,0,0,24,1,0,1800,4320.989680,38,0,39588.010320,1754.409288,hintandextended,nbiot,180 +on3,0,0,24,1,0,720,4323.010320,38,0,14943.010320,1873.504128,hintandextended,nbiot,180 +on7,0,0,25,1,0,1554,4501.010320,38,1,32108.010320,1942.767336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4341.010320,38,0,-1.000000,2048.618784,hintandextended,nbiot,180 +on2,0,0,26,1,0,1078,4686.620640,38,3,21047.672240,2191.908420,hintandextended,nbiot,180 +on8,0,0,25,1,0,3607,4501.600000,38,1,76613.010320,2145.133292,hintandextended,nbiot,180 +on9,0,0,26,1,0,1707,4682.730320,39,2,35639.010320,2196.993420,hintandextended,nbiot,180 +on4,0,0,25,1,0,1773,4579.989680,39,2,35679.030960,2212.908872,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,39,0,-1.000000,2040.201240,hintandextended,nbiot,180 +on5,0,0,24,1,0,1300,4380.600000,39,2,31501.010320,2017.693292,hintandextended,nbiot,180 +on2,0,0,24,1,0,1420,4343.020640,39,0,27695.010320,1939.898380,hintandextended,nbiot,180 +on6,0,0,26,1,0,1616,4681.051280,39,3,31581.651600,2008.700344,hintandextended,nbiot,180 +on7,0,0,24,1,0,1205,4321.000000,39,0,23083.010320,1764.416708,hintandextended,nbiot,180 +on10,0,0,25,1,0,293,4504.220320,39,1,5036.010320,1967.471460,hintandextended,nbiot,180 +on1,0,0,25,1,0,3057,4500.010320,39,1,59690.010320,1826.017336,hintandextended,nbiot,180 +on12,0,0,27,1,0,1567,4864.520320,39,3,31541.030960,2451.695796,hintandextended,nbiot,180 +on8,0,0,24,1,0,3406,4347.010320,39,0,65766.010320,1871.410836,hintandextended,nbiot,180 +on11,0,0,24,1,0,18,4324.000000,39,0,2674.010320,1809.830124,hintandextended,nbiot,180 +on3,0,0,24,1,0,3060,4321.000000,39,0,61699.010320,1794.700000,hintandextended,nbiot,180 +on12,0,0,24,1,0,360,4321.030960,40,0,10064.010320,1844.372592,hintandextended,nbiot,180 +on9,0,0,24,1,0,2978,4383.300000,40,1,64187.410320,1926.090000,hintandextended,nbiot,180 +on3,0,0,27,1,0,740,4865.189360,40,3,18295.010320,2406.289160,hintandextended,nbiot,180 +on2,0,0,24,1,0,604,4322.010320,40,0,12055.010320,1919.260836,hintandextended,nbiot,180 +on7,0,0,24,1,0,1308,4320.010320,40,0,26017.010320,1754.010836,hintandextended,nbiot,180 +on10,0,0,24,1,0,151,4333.010320,40,0,277.010320,1890.517544,hintandextended,nbiot,180 +on11,0,0,25,1,0,1175,4503.310320,40,1,23954.010320,2163.004252,hintandextended,nbiot,180 +on4,0,0,26,1,0,402,4683.300000,40,2,12095.030960,2311.243044,hintandextended,nbiot,180 +on6,0,0,25,1,0,380,4503.041280,40,2,10104.640960,2049.978220,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4355.010320,40,0,-1.000000,2054.218784,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4324.020640,40,0,452.010320,1997.278464,hintandextended,nbiot,180 +on8,0,0,24,1,0,1440,4321.000000,40,0,30794.010320,1823.950000,hintandextended,nbiot,180 +on5,0,0,24,1,0,2026,4357.310320,40,1,43232.010320,1891.137544,hintandextended,nbiot,180 +on5,0,0,26,1,0,874,4685.300000,41,2,18576.010320,2320.683208,hintandextended,nbiot,180 +on8,0,0,26,1,0,717,4684.210000,41,3,14508.651600,2162.700416,hintandextended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,41,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on11,0,0,25,1,0,745,4501.379360,41,2,14598.630960,1916.446744,hintandextended,nbiot,180 +on1,0,0,24,1,0,56,4451.258720,41,2,4019.010320,2070.423612,hintandextended,nbiot,180 +on9,0,0,24,1,0,619,4324.990000,41,0,14428.010320,2018.219208,hintandextended,nbiot,180 +on7,0,0,25,1,0,768,4501.300000,41,1,16973.010320,2000.330000,hintandextended,nbiot,180 +on10,0,0,25,1,0,1080,4503.020320,41,1,24919.020320,2084.621336,hintandextended,nbiot,180 +on6,0,0,24,1,0,117,4320.969360,41,0,1179.010320,1754.400952,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4350.630960,41,0,-1.000000,2026.487164,hintandextended,nbiot,180 +on4,0,0,25,1,0,731,4504.000000,41,1,14468.030960,2146.093084,hintandextended,nbiot,180 +on2,0,0,26,1,0,450,4684.538080,41,3,14558.010320,2262.768524,hintandextended,nbiot,180 +on3,0,0,24,1,0,385,4321.030960,41,0,7507.010320,1778.099008,hintandextended,nbiot,180 +on6,0,0,25,1,0,504,4506.948720,42,1,10256.010320,2169.405904,hintandextended,nbiot,180 +on1,0,0,26,1,0,1106,4684.000000,42,2,21673.030960,2107.852876,hintandextended,nbiot,180 +on3,0,0,26,1,0,1175,4684.289680,42,2,23486.630960,2295.065788,hintandextended,nbiot,180 +on5,0,0,26,1,0,4020,4680.900000,42,2,83770.010000,2190.866500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,42,0,-1.000000,2040.274820,hintandextended,nbiot,180 +on11,0,0,25,1,0,1136,4504.300000,42,1,23445.010320,2085.133000,hintandextended,nbiot,180 +on8,0,0,25,1,0,978,4504.289680,42,1,21633.010320,2158.175872,hintandextended,nbiot,180 +on10,0,0,25,1,0,679,4504.510000,42,1,17245.010320,2185.583708,hintandextended,nbiot,180 +on12,0,0,26,1,0,874,4685.041280,42,2,17286.630960,2327.606428,hintandextended,nbiot,180 +on7,0,0,26,1,0,580,4684.700640,42,3,11328.010320,2205.263464,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4324.610320,42,1,260.620640,1885.682668,hintandextended,nbiot,180 +on2,0,0,24,1,0,219,4325.938080,42,0,6004.010320,1977.641940,hintandextended,nbiot,180 +on4,0,0,25,1,0,1576,4502.000000,42,1,31081.010320,1967.856500,hintandextended,nbiot,180 +on8,0,0,24,1,0,1082,4321.989680,43,0,24637.010320,1843.852580,hintandextended,nbiot,180 +on9,0,0,25,1,0,1374,4502.000000,43,1,28658.010320,2021.163208,hintandextended,nbiot,180 +on2,0,0,25,1,0,940,4505.400000,43,1,19993.630960,2161.246624,hintandextended,nbiot,180 +on7,0,0,24,1,0,38,4323.969040,43,0,151.010320,1890.801240,hintandextended,nbiot,180 +on6,0,0,25,1,0,3060,4501.020320,43,1,64438.020320,1870.621336,hintandextended,nbiot,180 +on4,0,0,25,1,0,896,4502.220000,43,1,15929.010320,1972.039292,hintandextended,nbiot,180 +on12,0,0,24,1,0,720,4323.010320,43,0,16023.010320,2001.814128,hintandextended,nbiot,180 +on11,0,0,26,1,0,899,4681.310320,43,4,19952.010320,2068.648628,hintandextended,nbiot,180 +on1,0,0,25,1,0,731,4502.041280,43,1,16063.030960,2034.173220,hintandextended,nbiot,180 +on10,0,0,26,1,0,1284,4683.020640,43,2,24677.030960,2061.721256,hintandextended,nbiot,180 +on3,0,0,24,1,0,527,4349.010320,43,0,9006.010320,1998.310836,hintandextended,nbiot,180 +on5,0,0,24,1,0,703,4343.010320,43,0,11377.010320,1763.210836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4353.020320,43,0,-1.000000,2053.416076,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,44,0,-1.000000,2014.214656,hintandextended,nbiot,180 +on10,0,0,24,1,0,180,4325.989680,44,0,4409.010320,2070.372912,hintandextended,nbiot,180 +on2,0,0,24,1,0,1256,4444.010320,44,2,24383.630960,1803.637252,hintandextended,nbiot,180 +on1,0,0,25,1,0,1022,4502.000000,44,1,20842.630960,2034.156500,hintandextended,nbiot,180 +on8,0,0,25,1,0,1039,4505.300000,44,1,24342.010320,2287.279792,hintandextended,nbiot,180 +on3,0,0,24,1,0,975,4322.030960,44,0,20801.010320,1911.345592,hintandextended,nbiot,180 +on9,0,0,24,1,0,1620,4320.010320,44,0,32494.010320,1754.010836,hintandextended,nbiot,180 +on4,0,0,26,1,0,480,4685.579360,44,3,11662.010320,2307.932076,hintandextended,nbiot,180 +on12,0,0,24,1,0,22,4321.989680,44,0,1578.010320,1754.815996,hintandextended,nbiot,180 +on11,0,0,24,0,0,4320,4320.000000,44,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,25,1,0,2994,4501.000000,44,1,60961.010320,1917.406500,hintandextended,nbiot,180 +on7,0,0,25,1,0,479,4501.269360,44,1,9681.010320,1836.595952,hintandextended,nbiot,180 +on6,0,0,25,1,0,1274,4505.289680,44,1,28543.010320,2165.095996,hintandextended,nbiot,180 +on4,0,0,25,1,0,771,4503.289680,45,1,17082.010320,2075.239080,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4322.000000,45,0,11167.010320,1923.930000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1080,4322.010320,45,0,21778.010320,1805.770836,hintandextended,nbiot,180 +on12,0,0,26,1,0,2661,4681.900000,45,2,55536.010320,2249.110000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4331.010320,45,0,-1.000000,2044.605368,hintandextended,nbiot,180 +on2,0,0,25,1,0,350,4501.300000,45,2,7397.010320,1833.026708,hintandextended,nbiot,180 +on1,0,0,24,1,0,2061,4320.010320,45,0,42395.010320,1754.010836,hintandextended,nbiot,180 +on10,0,0,26,1,0,779,4683.910320,45,2,19909.010320,2383.574044,hintandextended,nbiot,180 +on9,0,0,24,1,0,205,4321.989680,45,0,4734.010320,1870.515788,hintandextended,nbiot,180 +on8,0,0,24,1,0,172,4353.989680,45,0,1594.010320,1767.615996,hintandextended,nbiot,180 +on5,0,0,24,1,0,1396,4320.000000,45,0,28486.010320,1754.013208,hintandextended,nbiot,180 +on7,0,0,26,1,0,873,4682.600000,45,2,17123.630960,1977.066624,hintandextended,nbiot,180 +on3,0,0,26,1,0,1413,4683.310320,45,3,31688.010320,2143.094044,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,46,0,-1.000000,2040.181116,hintandextended,nbiot,180 +on8,0,0,24,1,0,3385,4325.010320,46,0,65017.010320,1756.010836,hintandextended,nbiot,180 +on5,0,0,25,1,0,1674,4503.310320,46,1,35549.010320,2202.257544,hintandextended,nbiot,180 +on10,0,0,24,1,0,207,4322.010320,46,0,6368.010320,1792.530960,hintandextended,nbiot,180 +on6,0,0,25,1,0,3600,4502.000000,46,1,74738.010320,1944.450000,hintandextended,nbiot,180 +on1,0,0,24,1,0,3420,4359.000000,46,1,70276.620640,2067.098292,hintandextended,nbiot,180 +on12,0,0,25,1,0,1373,4501.210000,46,1,27118.010320,1917.490500,hintandextended,nbiot,180 +on2,0,0,25,1,0,2994,4501.000000,46,1,60492.010320,1917.406500,hintandextended,nbiot,180 +on11,0,0,24,1,0,900,4320.979360,46,0,18309.010320,1754.405160,hintandextended,nbiot,180 +on3,0,0,25,1,0,1080,4502.979680,46,1,22044.020320,1998.798372,hintandextended,nbiot,180 +on9,0,0,24,1,0,71,4321.989680,46,0,2723.010320,1829.169288,hintandextended,nbiot,180 +on4,0,0,24,1,0,1080,4325.020640,46,0,22003.010320,2121.205088,hintandextended,nbiot,180 +on7,0,0,25,1,0,2273,4502.041280,46,1,49145.010320,2059.529928,hintandextended,nbiot,180 +on1,0,0,24,1,0,360,4320.969040,47,0,7440.010320,1754.401032,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4321.010320,47,0,2597.010320,1838.267544,hintandextended,nbiot,180 +on6,0,0,24,1,0,1315,4390.300000,47,1,29956.010320,2062.926708,hintandextended,nbiot,180 +on4,0,0,24,1,0,846,4322.959040,47,0,15992.010320,1870.513532,hintandextended,nbiot,180 +on12,0,0,25,1,0,1153,4501.300000,47,1,27075.010320,1958.990000,hintandextended,nbiot,180 +on5,0,0,24,1,0,966,4321.000000,47,0,21482.010320,1801.850000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1749,4321.000000,47,0,34705.010320,1761.550000,hintandextended,nbiot,180 +on8,0,0,25,1,0,929,4502.000000,47,1,21522.030960,1989.279668,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4380.620640,47,0,-1.000000,2064.402540,hintandextended,nbiot,180 +on9,0,0,24,1,0,1080,4321.020640,47,0,24103.010320,1837.614964,hintandextended,nbiot,180 +on2,0,0,26,1,0,1063,4682.300000,47,2,24034.010320,2195.573084,hintandextended,nbiot,180 +on10,0,0,25,1,0,1081,4503.000000,47,1,24207.610320,2061.473416,hintandextended,nbiot,180 +on7,0,0,26,1,0,959,4681.300000,47,4,21562.651600,2067.923208,hintandextended,nbiot,180 +on2,0,0,27,1,0,826,4992.089680,48,6,23061.010320,2666.160580,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,48,0,-1.000000,2040.254904,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4321.010320,48,0,2016.010320,1869.064336,hintandextended,nbiot,180 +on6,0,0,24,1,0,2740,4321.000000,48,0,56730.010320,1819.400000,hintandextended,nbiot,180 +on4,0,0,24,1,0,231,4459.338080,48,2,4111.651600,2004.118564,hintandextended,nbiot,180 +on9,0,0,25,1,0,541,4660.490000,48,2,12804.430640,2396.279292,hintandextended,nbiot,180 +on11,0,0,25,1,0,603,4504.289680,48,1,12764.030960,2129.062788,hintandextended,nbiot,180 +on7,0,0,25,1,0,290,4518.051600,48,2,4071.030960,2152.917264,hintandextended,nbiot,180 +on5,0,0,24,1,0,548,4323.000000,48,0,12724.010320,1992.456708,hintandextended,nbiot,180 +on3,0,0,27,1,0,829,4862.900000,48,3,21172.010320,2452.803084,hintandextended,nbiot,180 +on8,0,0,25,1,0,349,4501.020640,48,1,4031.010320,1917.629672,hintandextended,nbiot,180 +on10,0,0,26,1,0,1010,4683.300000,48,2,21213.630960,2129.159792,hintandextended,nbiot,180 +on1,0,0,26,1,0,517,4966.151280,48,5,12845.051280,2378.715388,hintandextended,nbiot,180 +on3,0,0,25,1,0,303,4502.000000,49,1,7255.010320,2032.460000,hintandextended,nbiot,180 +on7,0,0,24,1,0,804,4323.989680,49,0,15462.010320,1914.859288,hintandextended,nbiot,180 +on11,0,0,25,1,0,102,4503.300000,49,2,4248.010320,2127.229792,hintandextended,nbiot,180 +on6,0,0,27,1,0,845,4862.309680,49,3,15502.030960,2126.916956,hintandextended,nbiot,180 +on10,0,0,25,1,0,205,4503.369040,49,2,4336.630960,2151.249324,hintandextended,nbiot,180 +on1,0,0,25,1,0,488,4502.300000,49,1,11659.010320,2006.254792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,49,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on5,0,0,24,1,0,900,4321.010320,49,0,20812.010320,1784.317544,hintandextended,nbiot,180 +on12,0,0,26,1,0,674,4680.341280,49,2,11700.630960,1949.629928,hintandextended,nbiot,180 +on8,0,0,24,1,0,89,4322.020320,49,0,2398.010320,1871.178044,hintandextended,nbiot,180 +on4,0,0,25,1,0,180,4503.969040,49,2,4296.010320,2058.344324,hintandextended,nbiot,180 +on9,0,0,24,1,0,1080,4323.000000,49,0,23680.010320,1880.663416,hintandextended,nbiot,180 +on2,0,0,24,1,0,3060,4321.000000,49,0,64521.010320,1845.400000,hintandextended,nbiot,180 +on4,0,0,25,1,0,1692,4501.300000,50,1,35621.010320,1965.490000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4323.010320,50,0,-1.000000,2041.391952,hintandextended,nbiot,180 +on2,0,0,24,1,0,24,4322.000000,50,0,3654.010320,1867.379792,hintandextended,nbiot,180 +on3,0,0,25,1,0,180,4504.989680,50,1,3752.620640,2017.204164,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4321.000000,50,0,1050.010320,1809.260000,hintandextended,nbiot,180 +on1,0,0,26,1,0,748,4682.300000,50,2,15787.010320,2137.079584,hintandextended,nbiot,180 +on5,0,0,26,1,0,513,4682.310000,50,2,12929.010320,2164.110376,hintandextended,nbiot,180 +on12,0,0,26,1,0,420,4683.330960,50,2,9241.041280,2177.669092,hintandextended,nbiot,180 +on10,0,0,28,1,0,694,5044.900000,50,4,15828.630960,2566.449708,hintandextended,nbiot,180 +on9,0,0,24,1,0,45,4321.959040,50,0,907.010320,1754.803532,hintandextended,nbiot,180 +on8,0,0,25,1,0,165,4581.248400,50,3,3695.630960,1977.079276,hintandextended,nbiot,180 +on7,0,0,26,1,0,667,4839.900000,50,4,20810.010320,2453.352876,hintandextended,nbiot,180 +on11,0,0,25,1,0,266,4506.520320,50,2,9200.010320,2127.867920,hintandextended,nbiot,180 +on7,0,0,24,1,0,1620,4322.000000,51,0,35225.010320,1919.510000,hintandextended,nbiot,180 +on4,0,0,24,1,0,540,4320.010320,51,0,12713.010320,1754.010836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,51,0,-1.000000,2040.120744,hintandextended,nbiot,180 +on6,0,0,25,1,0,1307,4504.000000,51,1,27532.010320,2084.343084,hintandextended,nbiot,180 +on9,0,0,24,1,0,1980,4321.000000,51,0,42356.010320,1845.400000,hintandextended,nbiot,180 +on8,0,0,24,1,0,1557,4321.010320,51,0,29191.010320,1870.760836,hintandextended,nbiot,180 +on11,0,0,24,1,0,506,4327.010320,51,0,8725.010320,1794.517544,hintandextended,nbiot,180 +on5,0,0,24,1,0,900,4321.000000,51,0,20210.010320,1754.413416,hintandextended,nbiot,180 +on3,0,0,24,1,0,1078,4359.010320,51,0,21719.010320,1873.220836,hintandextended,nbiot,180 +on12,0,0,24,1,0,852,4321.010320,51,0,14836.010320,1808.367544,hintandextended,nbiot,180 +on10,0,0,24,1,0,289,4320.989680,51,0,5097.010320,1754.402580,hintandextended,nbiot,180 +on2,0,0,25,1,0,1846,4500.010320,51,1,38728.010320,1826.010836,hintandextended,nbiot,180 +on1,0,0,24,1,0,61,4320.989680,51,0,3176.010320,1754.402580,hintandextended,nbiot,180 +on8,0,0,25,1,0,987,4511.279680,52,2,23410.010320,1982.638288,hintandextended,nbiot,180 +on9,0,0,25,1,0,0,4502.600000,52,1,1663.620640,1853.905124,hintandextended,nbiot,180 +on7,0,0,26,1,0,1146,4681.620640,52,3,25332.010320,2203.374964,hintandextended,nbiot,180 +on3,0,0,24,1,0,293,4323.010320,52,0,4866.010320,1955.670836,hintandextended,nbiot,180 +on10,0,0,24,1,0,609,4322.989680,52,0,14101.010320,1916.662372,hintandextended,nbiot,180 +on12,0,0,24,1,0,1071,4354.010320,52,0,19771.010320,2114.977544,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,52,0,-1.000000,2040.214656,hintandextended,nbiot,180 +on2,0,0,24,1,0,3553,4321.000000,52,0,70870.010320,1758.950000,hintandextended,nbiot,180 +on5,0,0,24,1,0,180,4321.000000,52,0,4960.010320,1754.413416,hintandextended,nbiot,180 +on11,0,0,24,1,0,777,4322.000000,52,0,14896.010320,1902.609792,hintandextended,nbiot,180 +on4,0,0,28,1,0,707,5044.569040,52,5,14937.630960,2432.547324,hintandextended,nbiot,180 +on6,0,0,26,1,0,726,4682.680000,52,2,14142.630960,2091.751708,hintandextended,nbiot,180 +on1,0,0,24,1,0,461,4325.020320,52,0,8767.010320,2209.988044,hintandextended,nbiot,180 +on12,0,0,25,1,0,180,4503.620640,53,1,5165.620640,2057.996756,hintandextended,nbiot,180 +on10,0,0,23,1,0,540,4280.020640,53,0,12069.010320,1765.574964,hintandextended,nbiot,180 +on6,0,0,25,1,0,2633,4502.000000,53,1,54238.010320,2034.150000,hintandextended,nbiot,180 +on7,0,0,25,1,0,360,4502.738080,53,2,10473.251600,1836.410356,hintandextended,nbiot,180 +on11,0,0,25,1,0,962,4502.269360,53,1,21198.010320,1946.527660,hintandextended,nbiot,180 +on2,0,0,24,1,0,293,4321.000000,53,0,5021.010320,1779.113416,hintandextended,nbiot,180 +on4,0,0,25,1,0,530,4504.989680,53,1,10310.010320,2213.400372,hintandextended,nbiot,180 +on3,0,0,25,1,0,653,4505.210000,53,1,15599.010320,2036.097208,hintandextended,nbiot,180 +on9,0,0,26,1,0,1082,4681.820320,53,3,24783.010320,2156.128128,hintandextended,nbiot,180 +on5,0,0,25,1,0,718,4502.179680,53,1,11948.010320,1917.885080,hintandextended,nbiot,180 +on8,0,0,26,1,0,568,4684.000000,53,2,10351.630960,2123.459584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4347.872240,53,0,-1.000000,2051.363552,hintandextended,nbiot,180 +on1,0,0,24,1,0,720,4323.979360,53,0,15653.010320,1904.461868,hintandextended,nbiot,180 +on12,0,0,25,1,0,1653,4501.300000,54,1,35752.010320,2012.420000,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4320.010320,54,0,1032.010320,1754.010836,hintandextended,nbiot,180 +on2,0,0,24,1,0,1553,4321.000000,54,0,32057.010320,1770.909792,hintandextended,nbiot,180 +on5,0,0,24,1,0,1297,4321.000000,54,0,28803.010320,1821.350000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1390,4323.000000,54,0,28843.030960,1887.793292,hintandextended,nbiot,180 +on11,0,0,25,1,0,2454,4500.969360,54,1,48888.010320,1826.407452,hintandextended,nbiot,180 +on7,0,0,27,1,0,1633,4862.551280,54,3,32098.630960,2188.341720,hintandextended,nbiot,180 +on9,0,0,24,1,0,1157,4320.979360,54,0,24986.010320,1840.478576,hintandextended,nbiot,180 +on4,0,0,25,1,0,1440,4503.000000,54,1,32218.620640,2099.998292,hintandextended,nbiot,180 +on8,0,0,24,1,0,1080,4323.989680,54,0,25105.010320,1991.819288,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4341.620640,54,0,-1.000000,2048.802540,hintandextended,nbiot,180 +on1,0,0,25,1,0,2376,4502.300000,54,2,50528.010320,2127.863292,hintandextended,nbiot,180 +on10,0,0,27,1,0,1635,4863.600000,54,3,35792.030960,2476.482876,hintandextended,nbiot,180 +on9,0,0,25,1,0,1980,4502.000000,55,2,42199.620640,2033.955000,hintandextended,nbiot,180 +on11,0,0,28,1,0,1394,5044.200000,55,6,33099.630960,2717.332876,hintandextended,nbiot,180 +on3,0,0,27,1,0,1533,4862.920000,55,3,33058.010320,2321.907376,hintandextended,nbiot,180 +on10,0,0,24,1,0,1121,4322.389360,55,0,24221.010320,1987.019160,hintandextended,nbiot,180 +on5,0,0,23,1,0,164,4291.051600,55,0,3230.010320,1895.450764,hintandextended,nbiot,180 +on8,0,0,24,1,0,540,4321.010320,55,0,14204.010320,1870.760836,hintandextended,nbiot,180 +on1,0,0,24,1,0,600,4320.010320,55,0,14084.010320,1754.010836,hintandextended,nbiot,180 +on12,0,0,24,1,0,1462,4321.000000,55,0,30894.010320,1830.450000,hintandextended,nbiot,180 +on6,0,0,27,1,0,1754,4864.110000,55,4,38452.630960,2485.578460,hintandextended,nbiot,180 +on2,0,0,25,1,0,1423,4500.979360,55,1,27054.020640,1826.404952,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,55,0,-1.000000,2040.154284,hintandextended,nbiot,180 +on4,0,0,25,1,0,350,4500.220320,55,1,5385.010320,1826.101336,hintandextended,nbiot,180 +on7,0,0,25,1,0,1957,4502.190000,55,1,38411.010320,1998.092292,hintandextended,nbiot,180 +on8,0,0,24,1,0,180,4323.000000,56,0,4449.010320,1922.523416,hintandextended,nbiot,180 +on4,0,0,24,1,0,1525,4322.010320,56,0,30348.010320,1905.870836,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4320.010320,56,0,1229.010320,1754.010836,hintandextended,nbiot,180 +on10,0,0,24,1,0,437,4321.000000,56,0,7986.010320,1794.309792,hintandextended,nbiot,180 +on9,0,0,26,1,0,731,4681.020640,56,2,12686.630960,2014.784672,hintandextended,nbiot,180 +on1,0,0,26,1,0,1053,4681.520320,56,3,21783.010320,2086.464628,hintandextended,nbiot,180 +on7,0,0,25,1,0,684,4504.300000,56,1,17767.010320,2097.099916,hintandextended,nbiot,180 +on3,0,0,26,1,0,515,4683.000000,56,2,8027.630960,2140.824500,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4349.010320,56,0,-1.000000,2025.798660,hintandextended,nbiot,180 +on12,0,0,25,1,0,583,4618.310320,56,2,12645.010320,2481.562044,hintandextended,nbiot,180 +on2,0,0,26,1,0,1427,4683.269040,56,2,30389.630960,2003.210948,hintandextended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,56,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1032,4324.979680,56,0,20899.010320,2159.018496,hintandextended,nbiot,180 +on3,0,0,23,1,0,1080,4283.000000,57,0,25222.010320,1855.563416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4366.040960,57,0,-1.000000,2058.597500,hintandextended,nbiot,180 +on10,0,0,25,1,0,873,4502.210000,57,1,17783.030960,1940.633792,hintandextended,nbiot,180 +on6,0,0,25,1,0,2520,4502.000000,57,1,51159.020320,1997.100000,hintandextended,nbiot,180 +on7,0,0,25,1,0,852,4502.999680,57,1,17743.010320,2006.613080,hintandextended,nbiot,180 +on12,0,0,24,1,0,615,4321.969360,57,0,11149.010320,1792.110952,hintandextended,nbiot,180 +on5,0,0,26,1,0,897,4682.000000,57,2,17823.051600,2105.766500,hintandextended,nbiot,180 +on8,0,0,24,1,0,457,4323.010320,57,0,10184.010320,2018.740752,hintandextended,nbiot,180 +on9,0,0,25,1,0,2813,4501.200000,57,1,57174.010320,1917.480000,hintandextended,nbiot,180 +on11,0,0,24,1,0,540,4323.010320,57,0,11298.010320,1960.487544,hintandextended,nbiot,180 +on1,0,0,25,1,0,1027,4501.600000,57,1,25072.010320,2067.920000,hintandextended,nbiot,180 +on4,0,0,26,1,0,807,4683.499680,57,2,19229.010320,2196.267664,hintandextended,nbiot,180 +on2,0,0,28,1,0,792,5044.430640,57,7,19270.630960,2476.425048,hintandextended,nbiot,180 +on9,0,0,25,1,0,3580,4501.300000,58,1,75418.010320,1986.036500,hintandextended,nbiot,180 +on11,0,0,25,1,0,55,4501.320640,58,2,3770.010320,2023.478464,hintandextended,nbiot,180 +on12,0,0,24,1,0,900,4323.000000,58,0,19296.010320,1964.500000,hintandextended,nbiot,180 +on1,0,0,25,1,0,540,4504.000000,58,1,11966.620640,2124.065000,hintandextended,nbiot,180 +on4,0,0,24,1,0,9,4322.959040,58,0,3280.010320,1871.553532,hintandextended,nbiot,180 +on5,0,0,25,1,0,757,4501.300000,58,1,19152.010320,1914.270000,hintandextended,nbiot,180 +on3,0,0,26,1,0,358,4687.969040,58,2,8977.630960,2310.278948,hintandextended,nbiot,180 +on10,0,0,24,1,0,1620,4320.010320,58,0,34651.010320,1754.010836,hintandextended,nbiot,180 +on8,0,0,25,1,0,676,4501.190000,58,1,11871.010320,1916.442292,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4363.020640,58,0,-1.000000,2057.429620,hintandextended,nbiot,180 +on2,0,0,25,1,0,1013,4504.989680,58,1,22676.010320,2268.059080,hintandextended,nbiot,180 +on7,0,0,27,1,0,654,4864.119680,58,3,11912.630960,2211.739204,hintandextended,nbiot,180 +on6,0,0,24,1,0,425,4322.010320,58,0,8936.010320,1848.677336,hintandextended,nbiot,180 +on8,0,0,25,1,0,20,4501.041280,59,1,459.630960,1920.296428,hintandextended,nbiot,180 +on3,0,0,26,1,0,693,4682.300000,59,2,17105.010320,2196.613292,hintandextended,nbiot,180 +on5,0,0,26,1,0,899,4680.672240,59,3,17225.672240,1925.348936,hintandextended,nbiot,180 +on10,0,0,24,1,0,1039,4320.979680,59,0,18960.010320,1755.041872,hintandextended,nbiot,180 +on4,0,0,25,1,0,759,4501.000000,59,1,17185.051600,1892.023168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,59,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on2,0,0,27,1,0,590,4862.980000,59,3,12406.010320,2354.041376,hintandextended,nbiot,180 +on12,0,0,27,1,0,623,4862.600000,59,3,17145.030960,2274.186376,hintandextended,nbiot,180 +on9,0,0,25,1,0,306,4635.600000,59,3,9202.010320,2165.576376,hintandextended,nbiot,180 +on11,0,0,25,1,0,577,4639.041280,59,3,9282.651600,1987.346344,hintandextended,nbiot,180 +on7,0,0,27,1,0,460,4863.600000,59,3,9242.030960,2361.419460,hintandextended,nbiot,180 +on1,0,0,24,1,0,79,4321.000000,59,0,418.010320,1793.009792,hintandextended,nbiot,180 +on6,0,0,25,1,0,294,4502.000000,59,1,5498.010320,2005.737876,hintandextended,nbiot,180 +on1,0,0,25,1,0,197,4503.000000,60,1,4629.030960,2094.329668,hintandextended,nbiot,180 +on6,0,0,25,1,0,360,4503.000000,60,1,9414.020640,2088.383416,hintandextended,nbiot,180 +on4,0,0,26,1,0,447,4682.300000,60,2,9314.010320,2195.573084,hintandextended,nbiot,180 +on12,0,0,26,1,0,178,4683.000000,60,3,4669.651600,2157.211208,hintandextended,nbiot,180 +on9,0,0,24,1,0,238,4322.000000,60,0,4589.010320,1923.143500,hintandextended,nbiot,180 +on2,0,0,27,1,0,801,4863.510000,60,3,15514.630960,2275.843668,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4322.000000,60,0,3462.010320,1833.710000,hintandextended,nbiot,180 +on10,0,0,25,1,0,694,4501.000000,60,1,13936.030960,1891.386584,hintandextended,nbiot,180 +on7,0,0,25,1,0,626,4834.900000,60,3,20476.010320,2504.009792,hintandextended,nbiot,180 +on11,0,0,26,1,0,462,4681.610320,60,3,13896.010320,2136.745420,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4323.620640,60,0,-1.000000,2041.622664,hintandextended,nbiot,180 +on5,0,0,25,1,0,180,4503.620640,60,1,4732.620640,1999.263380,hintandextended,nbiot,180 +on3,0,0,27,1,0,699,4861.900000,60,3,15473.010320,2244.663084,hintandextended,nbiot,180 +on5,0,0,26,1,0,1706,4681.300000,61,3,34779.010320,2080.519792,hintandextended,nbiot,180 +on3,0,0,26,1,0,786,4681.620640,61,2,21523.630960,2223.018172,hintandextended,nbiot,180 +on6,0,0,25,1,0,1217,4501.020640,61,1,25075.010320,1917.421464,hintandextended,nbiot,180 +on1,0,0,25,1,0,361,4502.600000,61,2,14024.010320,2152.026584,hintandextended,nbiot,180 +on10,0,0,24,1,0,1448,4321.000000,61,0,32215.010320,1771.313208,hintandextended,nbiot,180 +on12,0,0,24,1,0,268,4320.958720,61,0,6832.010320,1754.403404,hintandextended,nbiot,180 +on4,0,0,25,1,0,654,4627.210000,61,2,14064.030960,2181.538376,hintandextended,nbiot,180 +on8,0,0,26,1,0,693,4683.490000,61,2,15719.010320,2312.665792,hintandextended,nbiot,180 +on7,0,0,25,1,0,1011,4501.000000,61,1,21482.010320,1916.366292,hintandextended,nbiot,180 +on9,0,0,24,1,0,211,4433.269360,61,2,7502.010320,2011.474244,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,61,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4321.969040,61,0,3177.010320,1754.807740,hintandextended,nbiot,180 +on11,0,0,24,1,0,1260,4321.010320,61,0,26450.010320,1756.620836,hintandextended,nbiot,180 +on8,0,0,24,1,0,720,4321.989680,62,0,17906.010320,1754.815996,hintandextended,nbiot,180 +on11,0,0,24,1,0,2751,4321.000000,62,0,56742.010320,1812.250000,hintandextended,nbiot,180 +on5,0,0,24,1,0,1440,4321.000000,62,0,30213.010320,1816.150000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1718,4500.330960,62,1,37490.010320,1879.445800,hintandextended,nbiot,180 +on9,0,0,24,1,0,4183,4320.000000,62,0,84826.010000,1754.006500,hintandextended,nbiot,180 +on6,0,0,24,1,0,900,4322.010320,62,0,21575.010320,1977.110836,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4357.020640,62,0,-1.000000,2028.948916,hintandextended,nbiot,180 +on1,0,0,24,1,0,1771,4334.000000,62,0,32811.010320,1991.663416,hintandextended,nbiot,180 +on4,0,0,24,1,0,195,4321.010320,62,0,4155.010320,1858.417544,hintandextended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,62,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on2,0,0,25,1,0,2520,4502.630960,62,1,51757.620640,1943.624216,hintandextended,nbiot,180 +on10,0,0,24,1,0,525,4345.010320,62,0,8101.010320,1764.010836,hintandextended,nbiot,180 +on12,0,0,24,1,0,360,4321.010320,62,0,8216.010320,1757.660836,hintandextended,nbiot,180 +on12,0,0,24,1,0,3105,4321.000000,63,0,61681.010320,1816.150000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1080,4502.990000,63,1,23650.020320,1903.265916,hintandextended,nbiot,180 +on10,0,0,25,1,0,1014,4501.000000,63,1,21055.010320,1917.406500,hintandextended,nbiot,180 +on7,0,0,24,1,0,99,4320.010320,63,0,427.010320,1754.010836,hintandextended,nbiot,180 +on8,0,0,25,1,0,1373,4501.020640,63,1,29219.010320,1933.684880,hintandextended,nbiot,180 +on2,0,0,24,1,0,893,4354.010320,63,0,14882.010320,1776.060836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4326.020320,63,0,-1.000000,2042.589244,hintandextended,nbiot,180 +on6,0,0,24,1,0,1013,4366.000000,63,1,23504.010320,1795.813208,hintandextended,nbiot,180 +on11,0,0,24,1,0,497,4321.989680,63,0,7416.010320,1869.202580,hintandextended,nbiot,180 +on4,0,0,25,1,0,800,4505.000000,63,1,14922.040960,2077.853292,hintandextended,nbiot,180 +on1,0,0,25,1,0,811,4503.338400,63,2,14962.661600,2023.206984,hintandextended,nbiot,180 +on9,0,0,24,1,0,540,4321.979360,63,0,11503.010320,1821.111868,hintandextended,nbiot,180 +on5,0,0,24,1,0,1917,4323.000000,63,0,36571.010320,1907.956708,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,64,0,-1.000000,2014.214656,hintandextended,nbiot,180 +on12,0,0,24,1,0,566,4321.989680,64,0,14199.010320,1796.409288,hintandextended,nbiot,180 +on8,0,0,24,1,0,720,4457.010000,64,1,14489.020320,2011.883916,hintandextended,nbiot,180 +on3,0,0,26,1,0,1234,4683.020640,64,2,27318.630960,2199.534672,hintandextended,nbiot,180 +on1,0,0,25,1,0,1347,4570.589680,64,3,29021.010320,2090.848872,hintandextended,nbiot,180 +on4,0,0,25,1,0,540,4505.979360,64,1,14246.020320,2166.698284,hintandextended,nbiot,180 +on9,0,0,24,1,0,3060,4321.010320,64,0,61328.010320,1870.760836,hintandextended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,64,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,25,1,0,1013,4502.000000,64,1,19698.010320,1916.779916,hintandextended,nbiot,180 +on6,0,0,26,1,0,988,4684.210000,64,2,19739.630960,1979.088832,hintandextended,nbiot,180 +on7,0,0,24,1,0,1198,4322.989680,64,0,23102.010320,1796.809288,hintandextended,nbiot,180 +on11,0,0,25,1,0,1194,4505.989680,64,1,27277.010320,2184.427080,hintandextended,nbiot,180 +on10,0,0,24,1,0,3870,4320.010320,64,0,77314.010320,1754.010836,hintandextended,nbiot,180 +on10,0,0,25,1,0,1773,4501.000000,65,1,35966.010320,1917.406500,hintandextended,nbiot,180 +on2,0,0,26,1,0,626,4681.310000,65,2,14143.010320,2079.860584,hintandextended,nbiot,180 +on3,0,0,25,1,0,1024,4501.300000,65,1,24414.010320,2027.363292,hintandextended,nbiot,180 +on4,0,0,25,1,0,901,4502.000000,65,1,19755.030960,2008.136376,hintandextended,nbiot,180 +on9,0,0,26,1,0,407,4683.300000,65,2,10768.030960,2267.056460,hintandextended,nbiot,180 +on7,0,0,24,1,0,183,4321.010320,65,0,6408.010320,1867.640836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,65,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on11,0,0,26,1,0,647,4683.900000,65,3,19715.010320,2456.589876,hintandextended,nbiot,180 +on5,0,0,24,1,0,764,4321.000000,65,1,17273.010320,1798.866292,hintandextended,nbiot,180 +on8,0,0,26,1,0,814,4782.641280,65,3,17314.630960,2043.791220,hintandextended,nbiot,180 +on6,0,0,25,1,0,462,4626.248400,65,3,10808.651600,2060.872900,hintandextended,nbiot,180 +on1,0,0,25,1,0,474,4506.258720,65,1,10728.010320,2176.851904,hintandextended,nbiot,180 +on12,0,0,24,1,0,1581,4322.010320,65,0,31575.010320,1861.410836,hintandextended,nbiot,180 +on7,0,0,24,1,0,886,4346.010320,66,0,15439.010320,1764.410836,hintandextended,nbiot,180 +on10,0,0,24,1,0,170,4355.289680,66,2,6637.010320,1886.025664,hintandextended,nbiot,180 +on11,0,0,26,1,0,564,4725.869360,66,4,20193.010320,2348.337536,hintandextended,nbiot,180 +on12,0,0,26,1,0,626,4682.041280,66,2,14317.041280,2080.166512,hintandextended,nbiot,180 +on2,0,0,24,1,0,626,4321.969680,66,1,14276.010320,1765.187664,hintandextended,nbiot,180 +on1,0,0,24,1,0,67,4322.000000,66,0,957.010320,1872.723208,hintandextended,nbiot,180 +on5,0,0,25,1,0,0,4502.979680,66,1,1023.020320,2030.908372,hintandextended,nbiot,180 +on3,0,0,25,1,0,360,4503.000000,66,2,7769.241280,1980.275000,hintandextended,nbiot,180 +on4,0,0,25,1,0,360,4502.000000,66,1,7704.620640,1950.111708,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,66,0,-1.000000,2040.194532,hintandextended,nbiot,180 +on8,0,0,26,1,0,1116,4682.300000,66,2,22176.630960,2082.473084,hintandextended,nbiot,180 +on9,0,0,28,1,0,711,5042.500000,66,5,22135.010320,2636.682544,hintandextended,nbiot,180 +on6,0,0,26,1,0,361,4683.210000,66,2,6678.630960,2094.173708,hintandextended,nbiot,180 +on7,0,0,25,1,0,696,4504.989680,67,1,14829.010320,2203.059080,hintandextended,nbiot,180 +on8,0,0,27,1,0,697,4864.810000,67,3,14869.030960,2448.951876,hintandextended,nbiot,180 +on3,0,0,24,1,0,43,4322.010320,67,0,2836.010320,1933.170628,hintandextended,nbiot,180 +on5,0,0,25,1,0,2880,4501.000000,67,2,58628.620640,1917.205000,hintandextended,nbiot,180 +on11,0,0,27,1,0,579,4864.620640,67,4,11001.651600,2426.614880,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,67,0,-1.000000,2040.261612,hintandextended,nbiot,180 +on6,0,0,25,1,0,1014,4500.320640,67,1,23589.010320,1942.491672,hintandextended,nbiot,180 +on1,0,0,25,1,0,145,4502.300000,67,1,5999.010320,2074.180000,hintandextended,nbiot,180 +on4,0,0,25,1,0,181,4503.410320,67,1,6051.610320,1942.700960,hintandextended,nbiot,180 +on10,0,0,27,1,0,524,4864.600000,67,4,10961.030960,2414.814376,hintandextended,nbiot,180 +on12,0,0,25,1,0,142,4506.630960,67,1,2877.630960,2198.522508,hintandextended,nbiot,180 +on9,0,0,25,1,0,478,4638.320000,67,2,10921.010320,2169.746000,hintandextended,nbiot,180 +on2,0,0,24,1,0,407,4322.989680,67,0,9705.010320,1816.309288,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4321.969360,68,0,1059.010320,1870.110952,hintandextended,nbiot,180 +on9,0,0,26,1,0,782,4683.000000,68,2,13679.051600,2055.213000,hintandextended,nbiot,180 +on10,0,0,26,1,0,360,4682.810000,68,2,13599.010320,2286.718792,hintandextended,nbiot,180 +on12,0,0,26,1,0,627,4682.600000,68,3,14929.010320,2197.441168,hintandextended,nbiot,180 +on1,0,0,25,1,0,900,4501.000000,68,1,20014.010320,1917.406500,hintandextended,nbiot,180 +on3,0,0,25,1,0,331,4502.310000,68,1,8618.010320,2041.554000,hintandextended,nbiot,180 +on2,0,0,25,1,0,0,4502.300000,68,2,5769.010320,2096.156500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4374.641280,68,0,-1.000000,2061.997380,hintandextended,nbiot,180 +on11,0,0,27,1,0,556,4862.790000,68,3,14970.630960,2409.489000,hintandextended,nbiot,180 +on6,0,0,24,1,0,360,4321.000000,68,0,8792.010320,1774.556708,hintandextended,nbiot,180 +on5,0,0,26,1,0,383,4682.000000,68,3,5889.010320,2054.136376,hintandextended,nbiot,180 +on8,0,0,25,1,0,205,4501.410320,68,2,5929.630960,1844.589252,hintandextended,nbiot,180 +on4,0,0,26,1,0,588,4681.600000,68,2,13639.030960,2067.164876,hintandextended,nbiot,180 +on12,0,0,25,1,0,834,4505.010320,69,1,17991.010320,2236.224044,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4321.051280,69,0,13159.010320,1867.793928,hintandextended,nbiot,180 +on9,0,0,24,1,0,304,4321.989680,69,0,4840.010320,1870.496080,hintandextended,nbiot,180 +on11,0,0,24,1,0,919,4321.989680,69,0,19433.010320,1832.412372,hintandextended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,69,0,-1.000000,1988.167700,hintandextended,nbiot,180 +on8,0,0,25,1,0,538,4502.959040,69,1,8844.010320,1944.411532,hintandextended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on1,0,0,25,1,0,778,4677.269040,69,3,19524.010320,2183.550908,hintandextended,nbiot,180 +on3,0,0,25,1,0,993,4503.989680,69,1,19474.630960,2083.709080,hintandextended,nbiot,180 +on10,0,0,24,1,0,1311,4321.000000,69,0,28265.010320,1754.413416,hintandextended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,69,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,26,1,0,674,4680.310320,69,3,13054.010320,1989.130628,hintandextended,nbiot,180 +on4,0,0,25,1,0,925,4502.369040,69,2,19564.630960,2059.856032,hintandextended,nbiot,180 +on8,0,0,26,1,0,340,4686.010320,70,2,4312.030960,2428.671920,hintandextended,nbiot,180 +on12,0,0,25,1,0,799,4501.310320,70,1,16424.010320,2007.880836,hintandextended,nbiot,180 +on9,0,0,25,1,0,509,4504.000000,70,1,12285.010320,2161.069916,hintandextended,nbiot,180 +on2,0,0,24,1,0,1260,4321.989680,70,0,26542.010320,1802.909288,hintandextended,nbiot,180 +on6,0,0,24,1,0,3996,4322.000000,70,0,81632.010320,1938.750000,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4504.000000,70,1,197.020320,2055.613500,hintandextended,nbiot,180 +on5,0,0,24,1,0,3479,4344.310320,70,1,68940.010320,1831.980836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4324.630320,70,0,-1.000000,2042.066784,hintandextended,nbiot,180 +on11,0,0,25,1,0,22,4501.431600,70,1,237.630320,1942.292764,hintandextended,nbiot,180 +on1,0,0,25,1,0,342,4503.958720,70,1,4272.010320,2034.303404,hintandextended,nbiot,180 +on3,0,0,26,1,0,428,4683.320640,70,2,9625.630960,2249.054672,hintandextended,nbiot,180 +on4,0,0,25,1,0,294,4503.000000,70,1,9584.010320,2034.381208,hintandextended,nbiot,180 +on7,0,0,24,1,0,35,4323.000000,70,0,93.010320,1832.186832,hintandextended,nbiot,180 +on10,0,0,26,1,0,837,4683.600000,71,2,18853.010320,2236.146708,hintandextended,nbiot,180 +on8,0,0,24,1,0,573,4324.000000,71,0,13308.010320,2035.106708,hintandextended,nbiot,180 +on6,0,0,25,1,0,360,4502.958720,71,1,7676.651600,1996.040072,hintandextended,nbiot,180 +on1,0,0,25,1,0,226,4501.210000,71,1,6149.010320,1917.692000,hintandextended,nbiot,180 +on5,0,0,27,1,0,439,4863.500000,71,5,16761.010320,2533.903084,hintandextended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,71,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on11,0,0,26,1,0,561,4681.600000,71,2,16801.030960,2164.039628,hintandextended,nbiot,180 +on7,0,0,26,1,0,334,4684.310320,71,2,7502.010320,2393.203712,hintandextended,nbiot,180 +on12,0,0,25,1,0,0,4505.041280,71,1,2804.620640,1975.021760,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4354.651600,71,0,-1.000000,2028.135668,hintandextended,nbiot,180 +on3,0,0,25,1,0,1126,4504.000000,71,1,23947.010320,2060.333332,hintandextended,nbiot,180 +on2,0,0,26,1,0,802,4745.320640,71,4,16841.651600,2268.473296,hintandextended,nbiot,180 +on4,0,0,27,1,0,376,4864.289680,71,3,7543.630960,2272.255332,hintandextended,nbiot,180 +on8,0,0,27,1,0,631,4862.900000,72,4,17063.010320,2395.400960,hintandextended,nbiot,180 +on9,0,0,26,1,0,357,4681.261280,72,2,7314.051600,2014.692428,hintandextended,nbiot,180 +on4,0,0,25,1,0,497,4501.210000,72,1,10623.010320,1916.840500,hintandextended,nbiot,180 +on7,0,0,26,1,0,340,4682.810000,72,3,10663.030960,2173.611460,hintandextended,nbiot,180 +on5,0,0,24,1,0,640,4322.000000,72,0,13085.010320,1896.500000,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4322.000000,72,0,1685.010320,1872.320000,hintandextended,nbiot,180 +on10,0,0,25,1,0,693,4501.000000,72,1,13125.030960,1891.393084,hintandextended,nbiot,180 +on2,0,0,24,1,0,170,4350.010320,72,0,1553.010320,1766.010836,hintandextended,nbiot,180 +on11,0,0,25,1,0,226,4502.000000,72,1,7234.010320,1983.716500,hintandextended,nbiot,180 +on6,0,0,28,1,0,710,5042.110000,72,4,17104.630960,2403.840168,hintandextended,nbiot,180 +on3,0,0,28,1,0,699,5042.810000,72,4,13165.051600,2432.675084,hintandextended,nbiot,180 +on12,0,0,25,1,0,333,4501.000000,72,1,7274.030960,1891.393084,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,72,0,-1.000000,2040.127452,hintandextended,nbiot,180 +on5,0,0,25,1,0,699,4505.300000,73,1,15378.010320,2112.710124,hintandextended,nbiot,180 +on6,0,0,25,1,0,1,4503.369040,73,1,919.630960,2149.552824,hintandextended,nbiot,180 +on10,0,0,24,1,0,414,4323.989680,73,0,8728.010320,1995.465996,hintandextended,nbiot,180 +on8,0,0,26,1,0,376,4680.041280,73,2,6552.630960,1898.042928,hintandextended,nbiot,180 +on3,0,0,25,1,0,720,4504.979360,73,1,15517.020640,2024.961868,hintandextended,nbiot,180 +on12,0,0,24,1,0,900,4322.000000,73,0,21572.010320,1909.500000,hintandextended,nbiot,180 +on2,0,0,26,1,0,517,4682.330320,73,2,10915.010320,2122.740128,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4355.020640,73,0,-1.000000,2054.243036,hintandextended,nbiot,180 +on9,0,0,24,1,0,146,4329.030960,73,0,879.010320,1989.292508,hintandextended,nbiot,180 +on11,0,0,26,1,0,522,4688.010320,73,2,8768.030960,2466.977128,hintandextended,nbiot,180 +on1,0,0,24,1,0,3009,4321.010320,73,0,60679.010320,1777.160836,hintandextended,nbiot,180 +on7,0,0,25,1,0,3060,4501.000000,73,1,63364.010320,1899.206708,hintandextended,nbiot,180 +on4,0,0,25,1,0,320,4503.199680,73,1,6511.010320,1918.552872,hintandextended,nbiot,180 +on12,0,0,25,1,0,56,4503.259040,74,2,6935.010320,2023.226824,hintandextended,nbiot,180 +on1,0,0,24,1,0,700,4342.979360,74,0,13138.010320,1879.561868,hintandextended,nbiot,180 +on9,0,0,26,1,0,538,4683.000000,74,2,10467.051600,2144.872752,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,74,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on2,0,0,24,1,0,89,4323.010000,74,0,976.010320,1977.133916,hintandextended,nbiot,180 +on5,0,0,24,1,0,522,4343.000000,74,0,10387.010320,1763.213416,hintandextended,nbiot,180 +on6,0,0,24,1,0,900,4321.020640,74,0,19779.010320,1859.078380,hintandextended,nbiot,180 +on11,0,0,25,1,0,387,4501.113520,74,1,10507.072240,1880.408824,hintandextended,nbiot,180 +on3,0,0,24,1,0,2880,4322.000000,74,0,58307.010320,1874.400000,hintandextended,nbiot,180 +on8,0,0,24,1,0,1080,4321.000000,74,0,23241.010320,1833.056708,hintandextended,nbiot,180 +on4,0,0,25,1,0,546,4502.210000,74,1,10427.030960,2008.227084,hintandextended,nbiot,180 +on10,0,0,28,1,0,664,5042.090000,74,6,17386.010320,2382.518668,hintandextended,nbiot,180 +on7,0,0,25,1,0,1081,4502.300000,74,1,25617.010320,2115.520000,hintandextended,nbiot,180 +on5,0,0,24,1,0,249,4320.010320,75,0,4565.010320,1754.010836,hintandextended,nbiot,180 +on7,0,0,23,1,0,2092,4274.000000,75,0,41494.010320,1753.800000,hintandextended,nbiot,180 +on10,0,0,25,1,0,1106,4501.300000,75,1,23861.010320,2016.970000,hintandextended,nbiot,180 +on4,0,0,25,1,0,1652,4501.310320,75,1,35554.010320,2027.770836,hintandextended,nbiot,180 +on12,0,0,24,1,0,493,4322.000000,75,0,9337.010320,1968.006500,hintandextended,nbiot,180 +on3,0,0,24,1,0,1026,4323.969360,75,0,18917.010320,1880.017452,hintandextended,nbiot,180 +on2,0,0,25,1,0,1350,4501.610320,75,1,30592.010320,2062.347336,hintandextended,nbiot,180 +on6,0,0,26,1,0,1247,4683.000000,75,2,23901.030960,2110.059584,hintandextended,nbiot,180 +on9,0,0,25,1,0,938,4502.292880,75,1,18999.251600,2058.792276,hintandextended,nbiot,180 +on8,0,0,25,1,0,1057,4519.630960,75,1,18958.630960,2000.258884,hintandextended,nbiot,180 +on1,0,0,25,1,0,431,4500.610320,75,2,11734.010320,1986.794128,hintandextended,nbiot,180 +on11,0,0,25,1,0,1800,4501.020320,75,1,39077.020320,1929.121336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,75,0,-1.000000,2040.134160,hintandextended,nbiot,180 +on6,0,0,24,1,0,604,4322.000000,76,0,12124.010320,1870.513416,hintandextended,nbiot,180 +on11,0,0,23,1,0,205,4279.989680,76,0,4206.010320,1738.002580,hintandextended,nbiot,180 +on12,0,0,24,1,0,360,4321.000000,76,0,7716.010320,1754.413416,hintandextended,nbiot,180 +on3,0,0,25,1,0,2291,4503.289680,76,1,46337.010320,2048.335996,hintandextended,nbiot,180 +on4,0,0,24,1,0,3928,4329.010320,76,0,76249.010320,1862.260836,hintandextended,nbiot,180 +on10,0,0,24,1,0,2438,4322.010320,76,0,50242.010320,1810.710836,hintandextended,nbiot,180 +on1,0,0,24,1,0,1027,4323.010320,76,0,18773.010320,1898.224252,hintandextended,nbiot,180 +on9,0,0,24,1,0,1654,4323.000000,76,0,35175.010320,1914.079916,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4357.010320,76,0,-1.000000,2055.012076,hintandextended,nbiot,180 +on5,0,0,24,1,0,180,4323.010320,76,0,4272.010320,1926.810836,hintandextended,nbiot,180 +on8,0,0,26,1,0,1750,4687.269040,76,2,35216.630960,2343.590948,hintandextended,nbiot,180 +on2,0,0,24,1,0,469,4322.000000,76,0,7539.010320,1820.463416,hintandextended,nbiot,180 +on7,0,0,24,1,0,2627,4324.600000,76,1,58059.010320,1989.846708,hintandextended,nbiot,180 +on2,0,0,26,1,0,621,4684.289680,77,3,13321.010320,2255.779164,hintandextended,nbiot,180 +on7,0,0,25,1,0,48,4503.630960,77,1,3008.630960,2069.324092,hintandextended,nbiot,180 +on10,0,0,25,1,0,216,4502.000000,77,2,5439.251600,1958.295000,hintandextended,nbiot,180 +on6,0,0,26,1,0,341,4683.010320,77,2,5398.630960,2100.313712,hintandextended,nbiot,180 +on3,0,0,25,1,0,181,4505.379360,77,1,5520.610320,2147.191868,hintandextended,nbiot,180 +on12,0,0,24,1,0,445,4322.000000,77,0,9683.010320,1831.500000,hintandextended,nbiot,180 +on4,0,0,25,1,0,563,4501.969040,77,2,13361.630960,1943.352740,hintandextended,nbiot,180 +on5,0,0,25,1,0,2521,4501.300000,77,1,52290.010320,2033.870000,hintandextended,nbiot,180 +on11,0,0,25,1,0,526,4504.279360,77,1,13189.010320,2118.418368,hintandextended,nbiot,180 +on1,0,0,25,1,0,345,4502.999680,77,1,5357.010320,2032.482872,hintandextended,nbiot,180 +on8,0,0,24,1,0,168,4350.989680,77,0,2968.010320,1881.725996,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4376.241280,77,0,-1.000000,2062.717876,hintandextended,nbiot,180 +on9,0,0,25,1,0,602,4504.600000,77,1,16174.010320,2437.026708,hintandextended,nbiot,180 +on8,0,0,25,1,0,2160,4504.999680,78,1,45831.020320,2075.683204,hintandextended,nbiot,180 +on4,0,0,24,1,0,2713,4321.010320,78,0,57415.010320,1836.960836,hintandextended,nbiot,180 +on12,0,0,26,1,0,636,4681.320000,78,3,12029.010320,1990.392708,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4321.000320,78,0,1917.010320,1754.420044,hintandextended,nbiot,180 +on2,0,0,23,1,0,3804,4218.000000,78,0,75932.010320,1721.650000,hintandextended,nbiot,180 +on7,0,0,25,1,0,293,4503.000000,78,1,5548.010320,2059.263416,hintandextended,nbiot,180 +on10,0,0,25,1,0,1067,4501.220320,78,1,23098.010320,1942.851336,hintandextended,nbiot,180 +on11,0,0,24,1,0,154,4336.030960,78,0,1812.010320,1955.035800,hintandextended,nbiot,180 +on3,0,0,25,1,0,512,4502.990000,78,1,10537.010320,1942.935832,hintandextended,nbiot,180 +on9,0,0,24,1,0,979,4321.989680,78,0,18464.010320,1870.112580,hintandextended,nbiot,180 +on6,0,0,24,1,0,3024,4325.010320,78,0,59810.010320,1872.360836,hintandextended,nbiot,180 +on1,0,0,25,1,0,4283,4500.300000,78,1,86289.010000,1850.176500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,78,0,-1.000000,2040.160784,hintandextended,nbiot,180 +on9,0,0,25,1,0,934,4501.300000,79,1,21266.010320,1980.440000,hintandextended,nbiot,180 +on3,0,0,25,1,0,2341,4501.300000,79,1,48615.010320,2033.870000,hintandextended,nbiot,180 +on8,0,0,25,1,0,360,4502.610320,79,1,7744.620640,1926.715960,hintandextended,nbiot,180 +on5,0,0,25,1,0,1606,4500.010320,79,1,31021.010320,1826.017336,hintandextended,nbiot,180 +on4,0,0,24,1,0,516,4339.030960,79,0,7687.010320,1900.602508,hintandextended,nbiot,180 +on10,0,0,26,1,0,1347,4683.300000,79,2,26648.010320,2310.113084,hintandextended,nbiot,180 +on12,0,0,25,1,0,654,4502.979360,79,1,13690.010320,2032.604952,hintandextended,nbiot,180 +on1,0,0,24,1,0,540,4323.989680,79,0,13829.010320,1776.682704,hintandextended,nbiot,180 +on11,0,0,24,1,0,1190,4487.000000,79,1,23748.030960,2226.653084,hintandextended,nbiot,180 +on2,0,0,26,1,0,1258,4681.969040,79,3,23788.651600,2013.818948,hintandextended,nbiot,180 +on6,0,0,24,1,0,1173,4321.000000,79,0,23708.010320,1784.300000,hintandextended,nbiot,180 +on7,0,0,25,1,0,360,4501.620640,79,1,7789.620640,1917.849964,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,79,0,-1.000000,2040.201240,hintandextended,nbiot,180 +on12,0,0,24,1,0,1080,4321.010320,80,0,22113.010320,1859.704128,hintandextended,nbiot,180 +on9,0,0,25,1,0,901,4505.000000,80,1,19131.610320,2212.423416,hintandextended,nbiot,180 +on6,0,0,24,1,0,1254,4354.010320,80,0,22016.010320,1767.610836,hintandextended,nbiot,180 +on11,0,0,25,1,0,807,4502.769040,80,2,16198.230960,1963.881032,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4328.610320,80,0,-1.000000,2043.605120,hintandextended,nbiot,180 +on2,0,0,24,1,0,540,4321.010320,80,0,11674.010320,1833.580836,hintandextended,nbiot,180 +on7,0,0,24,1,0,82,4320.989680,80,0,849.010320,1754.402580,hintandextended,nbiot,180 +on5,0,0,25,1,0,1306,4502.989680,80,1,27305.010320,2034.559080,hintandextended,nbiot,180 +on1,0,0,25,1,0,846,4501.300000,80,2,18983.010320,2020.480000,hintandextended,nbiot,180 +on3,0,0,24,1,0,392,4320.000000,80,0,10755.010320,1754.006708,hintandextended,nbiot,180 +on4,0,0,26,1,0,1322,4750.520640,80,3,34837.620640,2358.139756,hintandextended,nbiot,180 +on8,0,0,25,1,0,1800,4501.000000,80,2,37021.620640,1917.205000,hintandextended,nbiot,180 +on10,0,0,24,1,0,796,4323.338080,80,1,16156.610320,1884.777064,hintandextended,nbiot,180 +on12,0,0,28,1,0,1143,5054.010000,81,5,29737.010320,2747.913376,hintandextended,nbiot,180 +on10,0,0,28,1,0,1069,5042.811280,81,4,22220.630960,2318.333888,hintandextended,nbiot,180 +on6,0,0,25,1,0,540,4502.979680,81,1,11918.020320,1923.384956,hintandextended,nbiot,180 +on1,0,0,25,1,0,1067,4501.000000,81,1,19831.010320,1916.756500,hintandextended,nbiot,180 +on8,0,0,24,1,0,394,4321.000000,81,0,9712.010320,1816.156500,hintandextended,nbiot,180 +on5,0,0,26,1,0,446,4683.300000,81,3,11808.010320,2130.316376,hintandextended,nbiot,180 +on7,0,0,26,1,0,873,4681.118400,81,2,16789.041280,1899.982192,hintandextended,nbiot,180 +on4,0,0,24,1,0,305,4320.000000,81,0,6193.010320,1754.006708,hintandextended,nbiot,180 +on11,0,0,24,1,0,881,4336.000000,81,1,16748.010320,2101.259792,hintandextended,nbiot,180 +on9,0,0,24,1,0,1102,4321.000000,81,0,22179.010320,1830.059792,hintandextended,nbiot,180 +on3,0,0,25,1,0,1135,4501.300000,81,1,25846.010320,1977.840000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,81,0,-1.000000,2040.167700,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4321.010320,81,0,2949.010320,1795.360836,hintandextended,nbiot,180 +on10,0,0,25,1,0,1007,4633.900000,82,3,25581.010320,2401.633292,hintandextended,nbiot,180 +on7,0,0,25,1,0,723,4504.010320,82,1,17329.651600,2174.280588,hintandextended,nbiot,180 +on11,0,0,25,1,0,3560,4501.000000,82,1,71545.010320,1917.406500,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4323.000000,82,0,13137.010320,1985.833416,hintandextended,nbiot,180 +on12,0,0,26,1,0,881,4684.092240,82,2,17289.630960,2123.646812,hintandextended,nbiot,180 +on9,0,0,25,1,0,724,4502.327760,82,1,17369.672240,2032.584396,hintandextended,nbiot,180 +on1,0,0,24,1,0,2025,4321.000000,82,0,41053.010320,1754.413416,hintandextended,nbiot,180 +on4,0,0,25,1,0,1620,4501.610320,82,1,33575.620640,1826.859252,hintandextended,nbiot,180 +on3,0,0,24,1,0,438,4323.989680,82,0,7643.010320,1987.275996,hintandextended,nbiot,180 +on8,0,0,26,1,0,879,4682.330960,82,3,18676.010320,2159.198884,hintandextended,nbiot,180 +on5,0,0,25,1,0,1037,4501.000000,82,1,22856.010320,1844.599792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4324.620640,82,0,-1.000000,2042.056204,hintandextended,nbiot,180 +on2,0,0,24,1,0,755,4321.000000,82,0,17248.010320,1821.609792,hintandextended,nbiot,180 +on6,0,0,24,1,0,204,4322.010320,83,0,5241.010320,1972.560836,hintandextended,nbiot,180 +on1,0,0,24,1,0,996,4323.989680,83,0,21473.010320,1866.759288,hintandextended,nbiot,180 +on7,0,0,25,1,0,701,4503.180000,83,1,12820.030960,1991.273292,hintandextended,nbiot,180 +on9,0,0,26,1,0,1105,4682.300000,83,3,21824.010320,2051.689916,hintandextended,nbiot,180 +on8,0,0,25,1,0,2453,4502.010320,83,1,50792.010320,1878.167336,hintandextended,nbiot,180 +on11,0,0,25,1,0,413,4569.310320,83,4,12860.651600,2253.312668,hintandextended,nbiot,180 +on10,0,0,25,1,0,703,4501.190320,83,1,12780.010320,1916.449336,hintandextended,nbiot,180 +on3,0,0,24,1,0,18,4323.051280,83,0,3209.010320,1853.390636,hintandextended,nbiot,180 +on4,0,0,24,1,0,2094,4322.020640,83,0,42517.010320,1884.821672,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,83,0,-1.000000,2014.234780,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4322.000000,83,0,3317.010320,1854.263416,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4323.979680,83,0,8526.010320,2008.461996,hintandextended,nbiot,180 +on12,0,0,23,0,0,4197,4197.000000,83,0,-1.000000,1678.800000,hintandextended,nbiot,180 +on6,0,0,24,1,0,720,4320.010320,84,0,15137.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,25,1,0,1372,4501.300000,84,1,28389.010320,1955.870000,hintandextended,nbiot,180 +on5,0,0,27,1,0,1207,4861.900000,84,4,28469.051600,2348.383376,hintandextended,nbiot,180 +on2,0,0,24,1,0,940,4322.000000,84,0,21133.010320,1905.613208,hintandextended,nbiot,180 +on12,0,0,24,1,0,1227,4328.010320,84,0,24226.010320,1832.610836,hintandextended,nbiot,180 +on1,0,0,27,1,0,1406,4861.900000,84,3,32104.010320,2271.046376,hintandextended,nbiot,180 +on8,0,0,24,1,0,1234,4344.000000,84,1,28429.030960,1873.456500,hintandextended,nbiot,180 +on4,0,0,25,1,0,966,4503.948400,84,2,21217.010320,2038.179360,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4321.010320,84,0,5032.010320,1797.960836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,84,0,-1.000000,2040.140868,hintandextended,nbiot,180 +on9,0,0,25,1,0,1166,4501.000000,84,1,24266.030960,1892.238084,hintandextended,nbiot,180 +on10,0,0,24,1,0,925,4430.000000,84,2,21257.630960,2078.831460,hintandextended,nbiot,180 +on3,0,0,25,1,0,653,4500.010320,84,1,15032.010320,1826.017336,hintandextended,nbiot,180 +on7,0,0,26,1,0,1022,4683.227760,85,3,21317.651600,1980.574644,hintandextended,nbiot,180 +on2,0,0,24,1,0,1193,4466.220000,85,1,28447.010320,1997.094500,hintandextended,nbiot,180 +on6,0,0,26,1,0,1423,4683.510000,85,2,30026.010320,2230.903792,hintandextended,nbiot,180 +on8,0,0,26,1,0,914,4682.900000,85,3,21237.010320,2322.953292,hintandextended,nbiot,180 +on9,0,0,24,1,0,849,4321.969360,85,0,17824.010320,1869.454452,hintandextended,nbiot,180 +on12,0,0,26,1,0,1167,4681.300000,85,2,23187.010320,2079.856584,hintandextended,nbiot,180 +on10,0,0,26,1,0,1042,4683.300000,85,2,21277.030960,2134.801376,hintandextended,nbiot,180 +on11,0,0,24,1,0,612,4321.010320,85,0,14362.010320,1870.110836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,85,0,-1.000000,2040.167700,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4445.610320,85,1,1018.620640,1804.459252,hintandextended,nbiot,180 +on5,0,0,24,1,0,93,4322.010320,85,0,916.010320,1930.954128,hintandextended,nbiot,180 +on1,0,0,26,1,0,1388,4841.510000,85,3,30066.030960,2183.370000,hintandextended,nbiot,180 +on3,0,0,27,1,0,1567,4861.900000,85,4,35795.010320,2359.452876,hintandextended,nbiot,180 +on7,0,0,24,1,0,669,4321.000000,86,0,12018.010320,1760.900000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4329.010320,86,0,-1.000000,2043.771828,hintandextended,nbiot,180 +on2,0,0,27,1,0,568,4862.341280,86,3,12058.030960,2242.636096,hintandextended,nbiot,180 +on9,0,0,24,1,0,1265,4321.000000,86,0,25692.010320,1842.150000,hintandextended,nbiot,180 +on8,0,0,24,1,0,797,4321.000000,86,1,14945.010320,1789.506500,hintandextended,nbiot,180 +on1,0,0,24,1,0,70,4321.020640,86,0,526.010320,1754.421672,hintandextended,nbiot,180 +on12,0,0,27,1,0,398,4865.600000,86,5,12098.651600,2636.942792,hintandextended,nbiot,180 +on10,0,0,24,1,0,180,4322.000000,86,0,4110.010320,1923.020000,hintandextended,nbiot,180 +on4,0,0,25,1,0,194,4502.041280,86,2,4150.630960,1961.438012,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4320.010320,86,0,675.010320,1754.010836,hintandextended,nbiot,180 +on5,0,0,27,1,0,543,4885.900000,86,4,14985.030960,2573.535960,hintandextended,nbiot,180 +on3,0,0,24,1,0,261,4322.020640,86,0,4038.010320,1876.631672,hintandextended,nbiot,180 +on11,0,0,25,1,0,365,4502.300000,86,1,10822.010320,2140.610000,hintandextended,nbiot,180 +on10,0,0,25,1,0,1800,4501.020320,87,1,36070.020320,1942.771336,hintandextended,nbiot,180 +on1,0,0,24,1,0,2124,4325.010320,87,0,39995.010320,1872.360836,hintandextended,nbiot,180 +on4,0,0,24,1,0,459,4321.010320,87,0,8748.010320,1863.870836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4348.010320,87,0,-1.000000,2051.365120,hintandextended,nbiot,180 +on8,0,0,25,1,0,1374,4502.000000,87,1,28676.010320,1943.169916,hintandextended,nbiot,180 +on2,0,0,25,1,0,925,4503.969040,87,2,18937.251600,2060.509448,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4320.010320,87,0,5485.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,24,1,0,922,4321.000000,87,0,18855.010320,1830.059792,hintandextended,nbiot,180 +on3,0,0,24,1,0,2520,4321.000000,87,0,51434.010320,1845.400000,hintandextended,nbiot,180 +on6,0,0,24,1,0,58,4322.989680,87,0,637.010320,1904.949164,hintandextended,nbiot,180 +on12,0,0,25,1,0,874,4627.010320,87,2,18896.630960,2254.070420,hintandextended,nbiot,180 +on9,0,0,25,1,0,653,4501.240960,87,1,14009.010320,1836.526300,hintandextended,nbiot,180 +on5,0,0,24,1,0,540,4322.989680,87,0,14177.010320,1804.602580,hintandextended,nbiot,180 +on10,0,0,25,1,0,773,4502.300000,88,1,17804.030960,2042.036876,hintandextended,nbiot,180 +on3,0,0,24,1,0,358,4358.989680,88,0,4448.010320,1769.609288,hintandextended,nbiot,180 +on5,0,0,25,1,0,1553,4502.000000,88,1,33440.010320,2034.156500,hintandextended,nbiot,180 +on11,0,0,24,1,0,0,4321.010320,88,0,3350.010320,1760.267544,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,88,0,-1.000000,2040.154284,hintandextended,nbiot,180 +on9,0,0,27,1,0,850,4862.900000,88,3,21805.010320,2463.606084,hintandextended,nbiot,180 +on4,0,0,26,1,0,777,4682.900000,88,2,20099.010320,2306.962876,hintandextended,nbiot,180 +on2,0,0,24,1,0,552,4320.969040,88,0,13405.010320,1754.401032,hintandextended,nbiot,180 +on12,0,0,25,1,0,1116,4503.000000,88,1,21845.030960,2098.243084,hintandextended,nbiot,180 +on6,0,0,23,1,0,540,4268.000000,88,0,13462.010320,1747.110000,hintandextended,nbiot,180 +on1,0,0,25,1,0,288,4502.620640,88,1,4488.630960,1943.613380,hintandextended,nbiot,180 +on8,0,0,27,1,0,816,4863.171600,88,3,20140.630960,2329.386556,hintandextended,nbiot,180 +on7,0,0,24,1,0,693,4396.300000,88,1,17764.010320,1941.170000,hintandextended,nbiot,180 +on6,0,0,24,1,0,482,4322.040960,89,0,7395.010320,1976.479592,hintandextended,nbiot,180 +on7,0,0,25,1,0,2996,4501.210000,89,1,60962.010320,1916.450292,hintandextended,nbiot,180 +on2,0,0,25,1,0,1697,4501.269360,89,1,35825.010320,1894.120952,hintandextended,nbiot,180 +on11,0,0,26,1,0,1724,4683.889680,89,3,39490.010320,2294.236080,hintandextended,nbiot,180 +on9,0,0,24,1,0,360,4321.000000,89,0,7450.010320,1754.413416,hintandextended,nbiot,180 +on3,0,0,25,1,0,1060,4501.210640,89,1,19427.010320,1849.254172,hintandextended,nbiot,180 +on10,0,0,25,1,0,64,4504.358720,89,1,1303.630960,2053.768612,hintandextended,nbiot,180 +on12,0,0,27,1,0,488,4862.969040,89,4,12604.630960,2370.762532,hintandextended,nbiot,180 +on8,0,0,24,1,0,155,4335.020640,89,0,1263.010320,1760.021672,hintandextended,nbiot,180 +on4,0,0,24,1,0,180,4322.989680,89,0,3897.010320,1893.022704,hintandextended,nbiot,180 +on1,0,0,25,1,0,2918,4501.000000,89,1,61003.630960,1892.303084,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,89,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on5,0,0,24,1,0,698,4339.010320,89,0,12564.010320,1823.360836,hintandextended,nbiot,180 +on9,0,0,25,1,0,1374,4501.000000,90,1,27393.010320,1826.419916,hintandextended,nbiot,180 +on8,0,0,25,1,0,2601,4502.300000,90,1,54303.010320,2067.420000,hintandextended,nbiot,180 +on6,0,0,25,1,0,360,4502.610320,90,1,9762.620640,1890.315960,hintandextended,nbiot,180 +on12,0,0,24,1,0,2324,4345.010320,90,0,44168.010320,1880.360836,hintandextended,nbiot,180 +on1,0,0,25,1,0,2124,4500.310320,90,1,42252.010320,1849.530836,hintandextended,nbiot,180 +on5,0,0,23,1,0,1736,4262.000000,90,0,32827.010320,1730.806708,hintandextended,nbiot,180 +on7,0,0,24,1,0,140,4320.030960,90,0,182.010320,1754.032508,hintandextended,nbiot,180 +on10,0,0,25,1,0,1620,4503.989680,90,1,32950.020320,2124.659288,hintandextended,nbiot,180 +on3,0,0,23,1,0,2160,4277.010320,90,0,44262.010320,1736.810836,hintandextended,nbiot,180 +on4,0,0,24,1,0,1080,4321.010320,90,0,25109.010320,1801.470836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4370.630960,90,0,-1.000000,2060.393252,hintandextended,nbiot,180 +on11,0,0,24,1,0,1440,4322.010320,90,0,29585.010320,1854.924252,hintandextended,nbiot,180 +on2,0,0,24,1,0,900,4321.010320,90,0,21232.010320,1827.860836,hintandextended,nbiot,180 +on1,0,0,24,1,0,540,4322.000000,91,0,11274.010320,1898.066708,hintandextended,nbiot,180 +on10,0,0,24,1,0,1210,4323.979360,91,0,23104.010320,1879.761868,hintandextended,nbiot,180 +on11,0,0,25,1,0,2050,4502.300000,91,1,41924.010320,2079.126500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4383.630960,91,0,-1.000000,2065.640208,hintandextended,nbiot,180 +on9,0,0,24,1,0,444,4321.020640,91,0,7923.010320,1790.821672,hintandextended,nbiot,180 +on7,0,0,25,1,0,195,4501.300000,91,1,7138.010320,2019.050000,hintandextended,nbiot,180 +on6,0,0,25,1,0,3240,4501.620640,91,1,68043.620640,1908.106672,hintandextended,nbiot,180 +on4,0,0,25,1,0,721,4504.279360,91,2,18840.010320,2192.621744,hintandextended,nbiot,180 +on5,0,0,26,1,0,334,4682.020640,91,2,7179.630960,2071.071672,hintandextended,nbiot,180 +on12,0,0,25,1,0,834,4501.959040,91,1,17369.010320,1826.810032,hintandextended,nbiot,180 +on3,0,0,24,1,0,130,4328.958720,91,0,2922.010320,2219.110320,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4321.030960,91,0,3051.010320,1853.095800,hintandextended,nbiot,180 +on8,0,0,24,1,0,900,4321.000000,91,0,18978.010320,1817.456708,hintandextended,nbiot,180 +on7,0,0,26,1,0,521,4683.190000,92,2,9618.041280,2171.619084,hintandextended,nbiot,180 +on10,0,0,25,1,0,293,4501.220000,92,1,5979.010320,1917.305792,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4325.000000,92,0,3567.010320,1939.853540,hintandextended,nbiot,180 +on5,0,0,26,1,0,514,4682.300000,92,2,12483.010320,2179.979584,hintandextended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,92,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,92,0,-1.000000,2014.234780,hintandextended,nbiot,180 +on11,0,0,24,1,0,360,4324.000000,92,0,9660.010320,1992.876832,hintandextended,nbiot,180 +on12,0,0,25,1,0,203,4504.979360,92,1,6060.651600,1990.135284,hintandextended,nbiot,180 +on1,0,0,24,1,0,3060,4321.010320,92,0,62101.010320,1777.817544,hintandextended,nbiot,180 +on4,0,0,25,1,0,379,4590.320640,92,3,9577.010320,2099.391464,hintandextended,nbiot,180 +on9,0,0,27,1,0,489,4862.810000,92,3,12524.630960,2344.431584,hintandextended,nbiot,180 +on8,0,0,26,1,0,334,4683.989680,92,2,6020.630960,2153.608748,hintandextended,nbiot,180 +on6,0,0,24,1,0,1027,4321.979360,92,0,18364.010320,1754.805160,hintandextended,nbiot,180 +on1,0,0,25,1,0,1013,4502.000000,93,1,24362.010320,1973.056500,hintandextended,nbiot,180 +on11,0,0,24,1,0,933,4338.041280,93,1,18447.041280,1838.073344,hintandextended,nbiot,180 +on7,0,0,25,1,0,360,4503.000000,93,1,9174.620640,2004.461708,hintandextended,nbiot,180 +on12,0,0,25,1,0,653,4501.210000,93,1,12932.010320,1917.490500,hintandextended,nbiot,180 +on4,0,0,25,1,0,765,4503.000000,93,1,15134.630960,2019.449668,hintandextended,nbiot,180 +on9,0,0,28,1,0,853,5043.500000,93,4,27595.010320,2781.136376,hintandextended,nbiot,180 +on3,0,0,24,1,0,852,4321.000000,93,0,15093.010320,1847.226500,hintandextended,nbiot,180 +on6,0,0,24,1,0,180,4321.010320,93,0,5632.010320,1794.704128,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4502.969040,93,1,9299.020320,1982.161032,hintandextended,nbiot,180 +on2,0,0,27,1,0,1081,4860.900000,93,4,24442.651600,2169.208000,hintandextended,nbiot,180 +on10,0,0,23,1,0,0,4276.651600,93,0,1543.010320,1736.674056,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,93,0,-1.000000,2040.147576,hintandextended,nbiot,180 +on8,0,0,26,1,0,1167,4681.300000,93,2,24402.030960,2038.263084,hintandextended,nbiot,180 +on7,0,0,25,1,0,900,4502.000000,94,1,19518.010320,1934.706708,hintandextended,nbiot,180 +on10,0,0,25,1,0,1013,4504.210320,94,1,23463.010320,2163.090836,hintandextended,nbiot,180 +on1,0,0,25,1,0,360,4506.989680,94,1,8562.620640,2158.437496,hintandextended,nbiot,180 +on2,0,0,24,1,0,132,4322.020640,94,0,950.010320,1871.185088,hintandextended,nbiot,180 +on9,0,0,25,1,0,540,4504.000000,94,1,11297.020320,2119.456708,hintandextended,nbiot,180 +on6,0,0,25,1,0,900,4505.000000,94,1,19429.020640,2152.630124,hintandextended,nbiot,180 +on4,0,0,23,1,0,793,4306.010320,94,1,15903.010320,1748.417336,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4349.282240,94,0,-1.000000,2025.927552,hintandextended,nbiot,180 +on3,0,0,23,1,0,312,4315.010320,94,0,4297.010320,1752.010836,hintandextended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,94,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on8,0,0,24,1,0,1260,4322.000000,94,0,28720.010320,1948.500000,hintandextended,nbiot,180 +on11,0,0,25,1,0,779,4502.310320,94,1,19376.010320,2102.530836,hintandextended,nbiot,180 +on12,0,0,25,1,0,540,4503.610000,94,2,11346.640960,1990.165624,hintandextended,nbiot,180 +on10,0,0,24,1,0,926,4321.000000,95,0,20201.010320,1827.850000,hintandextended,nbiot,180 +on1,0,0,25,1,0,1102,4501.000000,95,1,20241.030960,1891.393084,hintandextended,nbiot,180 +on5,0,0,26,1,0,1064,4682.320000,95,2,22233.010320,2196.179292,hintandextended,nbiot,180 +on9,0,0,24,1,0,302,4322.979360,95,0,5672.010320,1881.168244,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,95,0,-1.000000,2040.127452,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4321.010320,95,0,73.010320,1869.720836,hintandextended,nbiot,180 +on3,0,0,27,1,0,1160,4861.920000,95,3,27034.010320,2358.804376,hintandextended,nbiot,180 +on2,0,0,24,1,0,800,4322.000000,95,0,17190.010320,1908.460000,hintandextended,nbiot,180 +on8,0,0,25,1,0,1115,4501.000000,95,1,22273.030960,1894.643084,hintandextended,nbiot,180 +on12,0,0,26,1,0,483,4681.310000,95,2,9444.010320,2080.523792,hintandextended,nbiot,180 +on11,0,0,24,1,0,360,4320.969040,95,0,9556.010320,1754.401032,hintandextended,nbiot,180 +on7,0,0,25,1,0,257,4501.000000,95,1,5713.630960,1841.363208,hintandextended,nbiot,180 +on6,0,0,27,1,0,1149,4861.300000,95,4,22313.651600,2179.586416,hintandextended,nbiot,180 +on8,0,0,23,1,0,0,4318.010320,96,0,2440.010320,1903.237544,hintandextended,nbiot,180 +on11,0,0,24,1,0,390,4476.149040,96,1,10244.010320,1907.667616,hintandextended,nbiot,180 +on2,0,0,26,1,0,699,4686.179680,96,2,15964.630960,2237.431456,hintandextended,nbiot,180 +on12,0,0,26,1,0,513,4685.992240,96,2,11091.010320,2496.713396,hintandextended,nbiot,180 +on10,0,0,27,1,0,371,4968.810000,96,4,11131.030960,2627.325084,hintandextended,nbiot,180 +on4,0,0,27,1,0,667,4865.799680,96,3,15923.010320,2442.522748,hintandextended,nbiot,180 +on7,0,0,25,1,0,293,4505.000000,96,1,6942.010320,2148.703084,hintandextended,nbiot,180 +on6,0,0,25,1,0,1017,4502.300000,96,1,21564.010320,1993.326708,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4322.072240,96,0,2383.010320,1871.205728,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,96,0,-1.000000,2040.228072,hintandextended,nbiot,180 +on3,0,0,25,1,0,513,4501.210000,96,1,10284.030960,1891.477084,hintandextended,nbiot,180 +on5,0,0,24,1,0,2440,4321.000000,96,0,47290.010320,1780.400000,hintandextended,nbiot,180 +on1,0,0,25,1,0,181,4504.938080,96,1,7061.630960,2078.355232,hintandextended,nbiot,180 +on3,0,0,24,1,0,285,4321.000000,97,0,5700.010320,1776.109792,hintandextended,nbiot,180 +on6,0,0,27,1,0,418,4862.810000,97,3,13133.630960,2339.290292,hintandextended,nbiot,180 +on1,0,0,26,1,0,335,4681.600000,97,3,10562.010320,2196.339792,hintandextended,nbiot,180 +on11,0,0,25,1,0,1260,4503.300000,97,1,29205.010320,2174.420000,hintandextended,nbiot,180 +on5,0,0,26,1,0,513,4683.300000,97,2,13092.010320,2288.792876,hintandextended,nbiot,180 +on8,0,0,26,1,0,154,4684.313200,97,2,5741.630960,2246.064988,hintandextended,nbiot,180 +on2,0,0,25,1,0,776,4502.300000,97,2,19115.010320,2109.013084,hintandextended,nbiot,180 +on9,0,0,25,1,0,203,4503.000000,97,1,5781.651600,2043.246584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4349.010320,97,0,-1.000000,2051.785244,hintandextended,nbiot,180 +on7,0,0,24,1,0,56,4321.020640,97,0,2174.010320,1842.431672,hintandextended,nbiot,180 +on10,0,0,25,1,0,833,4501.220320,97,1,17859.010320,1916.851336,hintandextended,nbiot,180 +on12,0,0,26,1,0,719,4682.330960,97,2,17900.041280,2145.282176,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4321.000000,97,0,2343.010320,1787.810000,hintandextended,nbiot,180 +on4,0,0,25,1,0,525,4565.469680,98,2,11546.010320,2262.019164,hintandextended,nbiot,180 +on9,0,0,26,1,0,592,4681.000000,98,3,10198.651600,1991.116416,hintandextended,nbiot,180 +on2,0,0,25,1,0,766,4501.210320,98,1,16770.010320,1916.834128,hintandextended,nbiot,180 +on7,0,0,25,1,0,294,4501.010320,98,1,6973.010320,1942.110836,hintandextended,nbiot,180 +on5,0,0,24,1,0,497,4323.000000,98,0,10118.010320,1884.556708,hintandextended,nbiot,180 +on6,0,0,24,1,0,540,4322.000000,98,0,11704.010320,1885.710000,hintandextended,nbiot,180 +on11,0,0,26,1,0,1012,4681.910000,98,2,25026.010320,2225.063792,hintandextended,nbiot,180 +on12,0,0,26,1,0,788,4683.341280,98,2,16810.030960,2126.706304,hintandextended,nbiot,180 +on8,0,0,26,1,0,838,4682.600000,98,2,20152.010320,2225.326584,hintandextended,nbiot,180 +on10,0,0,27,1,0,710,4863.900000,98,3,20192.030960,2502.914876,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4338.010320,98,0,-1.000000,2047.351704,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4321.010320,98,0,2694.010320,1869.720836,hintandextended,nbiot,180 +on3,0,0,25,1,0,514,4516.030960,98,1,10158.030960,1869.092300,hintandextended,nbiot,180 +on1,0,0,25,1,0,36,4506.000000,99,2,950.010320,2255.696584,hintandextended,nbiot,180 +on8,0,0,25,1,0,0,4503.020640,99,1,842.620640,2051.303296,hintandextended,nbiot,180 +on11,0,0,24,1,0,203,4325.010320,99,0,5190.010320,2140.817544,hintandextended,nbiot,180 +on2,0,0,25,1,0,690,4507.258720,99,1,12999.010320,2162.120112,hintandextended,nbiot,180 +on6,0,0,25,1,0,2146,4504.190000,99,1,42073.010320,2165.039208,hintandextended,nbiot,180 +on7,0,0,25,1,0,568,4502.369040,99,1,13040.630960,2034.304116,hintandextended,nbiot,180 +on4,0,0,25,1,0,738,4506.610320,99,1,17059.630960,2111.434168,hintandextended,nbiot,180 +on5,0,0,26,1,0,380,4686.269040,99,2,8467.010320,2331.477532,hintandextended,nbiot,180 +on10,0,0,25,1,0,180,4505.810000,99,1,5275.010320,2129.560832,hintandextended,nbiot,180 +on3,0,0,25,1,0,25,4504.369040,99,2,990.630960,2093.156032,hintandextended,nbiot,180 +on12,0,0,24,0,0,4320,4320.000000,99,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4337.630960,99,0,-1.000000,2021.381076,hintandextended,nbiot,180 +on9,0,0,26,1,0,476,4686.179360,99,2,17018.010320,2507.909952,hintandextended,nbiot,180 +on5,0,0,25,1,0,970,4501.000000,100,1,21638.010320,1916.366292,hintandextended,nbiot,180 +on1,0,0,24,1,0,2156,4357.010320,100,0,43135.010320,1885.160836,hintandextended,nbiot,180 +on2,0,0,24,1,0,127,4320.989680,100,0,671.010320,1754.402580,hintandextended,nbiot,180 +on8,0,0,24,1,0,1800,4320.010320,100,0,37677.010320,1754.010836,hintandextended,nbiot,180 +on9,0,0,27,1,0,872,4862.620640,100,3,21679.630960,2364.961464,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,100,0,-1.000000,2040.147576,hintandextended,nbiot,180 +on6,0,0,27,1,0,942,4863.200000,100,3,22258.010320,2508.426584,hintandextended,nbiot,180 +on4,0,0,26,1,0,491,4683.341280,100,2,12853.630960,2195.099720,hintandextended,nbiot,180 +on11,0,0,24,1,0,555,4322.000000,100,0,12812.010320,1860.346376,hintandextended,nbiot,180 +on12,0,0,25,1,0,639,4502.300000,100,1,14989.010320,2085.230000,hintandextended,nbiot,180 +on10,0,0,24,1,0,1439,4361.010320,100,0,28845.010320,1930.317544,hintandextended,nbiot,180 +on3,0,0,24,1,0,369,4321.000000,100,0,8835.010320,1838.509792,hintandextended,nbiot,180 +on7,0,0,25,1,0,495,4504.610320,100,1,8876.630960,2033.134044,hintandextended,nbiot,180 +on4,0,0,25,1,0,1660,4501.300000,101,1,33270.010320,1993.576500,hintandextended,nbiot,180 +on10,0,0,25,1,0,317,4501.000000,101,1,7328.630960,1895.956500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4361.641280,101,0,-1.000000,2056.830920,hintandextended,nbiot,180 +on7,0,0,26,1,0,806,4684.000000,101,2,15856.030960,2225.256292,hintandextended,nbiot,180 +on3,0,0,24,1,0,73,4321.969040,101,0,3027.010320,1754.801032,hintandextended,nbiot,180 +on9,0,0,25,1,0,527,4532.310320,101,2,12823.030960,2313.423920,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4323.000000,101,0,3138.010320,2023.526708,hintandextended,nbiot,180 +on6,0,0,25,1,0,540,4504.041280,101,1,12930.010320,2139.493220,hintandextended,nbiot,180 +on12,0,0,25,1,0,1260,4502.620640,101,1,26559.620640,1958.823380,hintandextended,nbiot,180 +on8,0,0,25,1,0,714,4501.000000,101,1,12783.010320,1916.756500,hintandextended,nbiot,180 +on5,0,0,27,1,0,254,4887.610320,101,3,7453.010320,2214.147336,hintandextended,nbiot,180 +on11,0,0,24,1,0,263,4322.000000,101,0,7287.010320,1907.159792,hintandextended,nbiot,180 +on2,0,0,25,1,0,896,4501.000000,101,1,15816.010320,1916.756500,hintandextended,nbiot,180 +on8,0,0,24,1,0,3341,4321.000000,102,0,66299.010320,1788.856708,hintandextended,nbiot,180 +on6,0,0,24,1,0,653,4474.000000,102,1,16283.010320,1815.613208,hintandextended,nbiot,180 +on12,0,0,24,1,0,2520,4320.010320,102,0,51467.010320,1754.010836,hintandextended,nbiot,180 +on4,0,0,24,1,0,1980,4322.989680,102,0,42490.010320,1901.452580,hintandextended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,102,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on7,0,0,25,1,0,2880,4502.620640,102,1,61199.620640,1855.870088,hintandextended,nbiot,180 +on3,0,0,24,1,0,2554,4322.989680,102,0,51401.010320,1852.312580,hintandextended,nbiot,180 +on2,0,0,24,1,0,2290,4322.969360,102,1,46032.020320,1871.557660,hintandextended,nbiot,180 +on1,0,0,24,1,0,1980,4322.010320,102,0,42424.010320,1950.727544,hintandextended,nbiot,180 +on5,0,0,24,1,0,464,4321.010320,102,0,8338.010320,1775.224252,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4362.630960,102,0,-1.000000,2031.199960,hintandextended,nbiot,180 +on11,0,0,24,1,0,2340,4321.010320,102,0,48861.010320,1834.360836,hintandextended,nbiot,180 +on9,0,0,25,1,0,3421,4502.310320,102,1,69943.010320,2123.337544,hintandextended,nbiot,180 +on12,0,0,26,1,0,1341,4681.900000,103,3,31176.010320,2238.053292,hintandextended,nbiot,180 +on9,0,0,24,0,0,4320,4320.000000,103,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on7,0,0,24,1,0,2080,4320.989680,103,0,41136.010320,1754.402580,hintandextended,nbiot,180 +on1,0,0,26,1,0,722,4686.000000,103,2,13125.630960,2205.758040,hintandextended,nbiot,180 +on5,0,0,23,1,0,529,4312.030960,103,0,9994.010320,2185.299216,hintandextended,nbiot,180 +on2,0,0,26,1,0,694,4681.310320,103,2,15561.010320,2080.530628,hintandextended,nbiot,180 +on4,0,0,25,1,0,1104,4503.300000,103,1,26337.010320,2147.756792,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,103,0,-1.000000,2014.241488,hintandextended,nbiot,180 +on8,0,0,25,1,0,692,4503.010320,103,1,13084.010320,2031.597252,hintandextended,nbiot,180 +on3,0,0,25,1,0,901,4504.020640,103,1,19805.610320,2199.031672,hintandextended,nbiot,180 +on6,0,0,24,1,0,1800,4321.000000,103,0,38682.010320,1829.806708,hintandextended,nbiot,180 +on10,0,0,25,1,0,883,4507.210320,103,1,19735.010320,2337.490876,hintandextended,nbiot,180 +on11,0,0,24,1,0,360,4322.010320,103,0,10110.010320,1943.961044,hintandextended,nbiot,180 +on5,0,0,25,1,0,1800,4504.600000,104,1,37878.620640,2060.761832,hintandextended,nbiot,180 +on3,0,0,25,1,0,537,4505.009680,104,1,10782.010320,2116.175288,hintandextended,nbiot,180 +on4,0,0,25,1,0,4143,4500.300000,104,1,83824.010000,1870.709792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4360.630960,104,0,-1.000000,2056.533912,hintandextended,nbiot,180 +on8,0,0,26,1,0,554,4707.289680,104,3,12433.630960,2366.782372,hintandextended,nbiot,180 +on12,0,0,26,1,0,690,4684.300000,104,2,15381.630960,2262.446624,hintandextended,nbiot,180 +on7,0,0,25,1,0,697,4502.300000,104,1,15340.010320,1931.836708,hintandextended,nbiot,180 +on6,0,0,26,1,0,473,4686.300000,104,2,10822.030960,2405.570000,hintandextended,nbiot,180 +on10,0,0,24,1,0,339,4342.000000,104,0,5576.010320,1989.916916,hintandextended,nbiot,180 +on2,0,0,24,1,0,595,4322.000000,104,0,12392.010320,1847.366500,hintandextended,nbiot,180 +on11,0,0,26,1,0,292,4681.620960,104,2,5616.630960,1954.140132,hintandextended,nbiot,180 +on1,0,0,25,1,0,1080,4502.630960,104,1,24726.620640,1848.724216,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4321.010320,104,0,1955.010320,1869.720836,hintandextended,nbiot,180 +on3,0,0,26,1,0,668,4681.540000,105,2,12661.030960,2053.244292,hintandextended,nbiot,180 +on8,0,0,24,1,0,252,4321.000000,105,0,6290.010320,1797.559792,hintandextended,nbiot,180 +on6,0,0,29,1,0,641,5223.500000,105,5,17238.030960,2728.979460,hintandextended,nbiot,180 +on9,0,0,25,1,0,543,4543.470000,105,2,12621.010320,2085.389292,hintandextended,nbiot,180 +on4,0,0,25,1,0,180,4501.620640,105,1,6433.620640,1891.179840,hintandextended,nbiot,180 +on12,0,0,25,1,0,493,4501.180000,105,1,10606.010320,1917.030000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4323.620640,105,0,-1.000000,2041.589124,hintandextended,nbiot,180 +on10,0,0,25,1,0,531,4501.300000,105,1,10646.030960,1901.575084,hintandextended,nbiot,180 +on1,0,0,27,1,0,663,4863.428720,105,4,12742.051280,2271.424488,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4322.061920,105,0,1827.010320,1811.258184,hintandextended,nbiot,180 +on5,0,0,26,1,0,230,4683.300000,105,2,6331.630960,2234.713084,hintandextended,nbiot,180 +on2,0,0,27,1,0,531,4863.200000,105,3,17198.010320,2492.885084,hintandextended,nbiot,180 +on11,0,0,26,1,0,719,4682.190000,105,2,12701.430640,2053.959292,hintandextended,nbiot,180 +on1,0,0,25,1,0,2298,4501.000000,106,1,46836.010320,1830.313208,hintandextended,nbiot,180 +on5,0,0,24,1,0,2340,4322.000000,106,0,49192.010320,1961.500000,hintandextended,nbiot,180 +on6,0,0,25,1,0,514,4644.179680,106,2,9514.630960,1892.154996,hintandextended,nbiot,180 +on12,0,0,25,1,0,2340,4501.000000,106,1,46967.020320,1861.519916,hintandextended,nbiot,180 +on8,0,0,25,1,0,211,4501.551280,106,2,5577.010320,1970.738512,hintandextended,nbiot,180 +on9,0,0,26,1,0,334,4683.190000,106,2,5618.630960,2131.995708,hintandextended,nbiot,180 +on2,0,0,24,1,0,35,4323.020320,106,0,3247.010320,1895.238044,hintandextended,nbiot,180 +on4,0,0,25,1,0,833,4501.000000,106,1,18213.010320,1877.763208,hintandextended,nbiot,180 +on11,0,0,26,1,0,2493,4682.000000,106,2,49232.030960,2058.699584,hintandextended,nbiot,180 +on7,0,0,24,1,0,900,4321.000000,106,0,18309.010320,1845.400000,hintandextended,nbiot,180 +on3,0,0,25,1,0,350,4502.510000,106,2,9473.010320,2086.158376,hintandextended,nbiot,180 +on10,0,0,24,1,0,2139,4341.010320,106,0,41432.010320,1990.164128,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,106,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on1,0,0,25,1,0,907,4502.369040,107,1,18535.630960,2033.446116,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4334.010320,107,0,-1.000000,2019.771828,hintandextended,nbiot,180 +on8,0,0,24,1,0,1068,4350.010320,107,0,18495.010320,1950.877544,hintandextended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,107,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on12,0,0,24,1,0,180,4320.010320,107,0,4573.010320,1754.010836,hintandextended,nbiot,180 +on6,0,0,25,1,0,1080,4504.738080,107,2,24143.251600,2170.270356,hintandextended,nbiot,180 +on5,0,0,26,1,0,1283,4681.040640,107,2,24081.630960,1949.584048,hintandextended,nbiot,180 +on2,0,0,25,1,0,3198,4501.000000,107,1,64814.010320,1860.856500,hintandextended,nbiot,180 +on11,0,0,25,1,0,1248,4502.030960,107,1,24040.010320,2033.142092,hintandextended,nbiot,180 +on7,0,0,24,1,0,3991,4320.989680,107,0,79757.010320,1754.402580,hintandextended,nbiot,180 +on3,0,0,24,1,0,484,4320.000000,107,0,8924.010320,1754.013208,hintandextended,nbiot,180 +on9,0,0,25,1,0,492,4500.320640,107,2,13164.010320,1857.334964,hintandextended,nbiot,180 +on4,0,0,25,1,0,1616,4504.230640,107,1,30537.010320,2096.825588,hintandextended,nbiot,180 +on7,0,0,26,1,0,626,4683.520000,108,2,14066.010320,2252.559292,hintandextended,nbiot,180 +on6,0,0,24,1,0,243,4320.969360,108,0,6382.010320,1754.400952,hintandextended,nbiot,180 +on4,0,0,26,1,0,357,4684.499680,108,4,10025.651600,2253.997872,hintandextended,nbiot,180 +on2,0,0,24,1,0,1620,4320.010320,108,0,35492.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,26,1,0,618,4683.258720,108,2,14133.010320,2042.433696,hintandextended,nbiot,180 +on1,0,0,25,1,0,446,4663.000000,108,2,9985.030960,2047.863000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1360,4321.000000,108,0,25933.010320,1776.506708,hintandextended,nbiot,180 +on12,0,0,25,1,0,565,4503.369040,108,2,14173.630960,2143.456032,hintandextended,nbiot,180 +on5,0,0,26,1,0,806,4862.820000,108,3,18972.010320,2385.646000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4356.020640,108,0,-1.000000,2054.616204,hintandextended,nbiot,180 +on10,0,0,24,1,0,384,4321.820000,108,0,9945.010320,1829.478000,hintandextended,nbiot,180 +on9,0,0,25,1,0,1127,4501.000000,108,1,24593.010320,1917.406500,hintandextended,nbiot,180 +on8,0,0,24,1,0,180,4322.969040,108,0,6557.010320,1804.861032,hintandextended,nbiot,180 +on7,0,0,25,1,0,293,4501.020960,109,1,6923.010320,1826.434800,hintandextended,nbiot,180 +on11,0,0,27,1,0,692,4862.700000,109,4,20162.010320,2334.546376,hintandextended,nbiot,180 +on10,0,0,27,1,0,1035,4862.900000,109,4,23535.010320,2474.245960,hintandextended,nbiot,180 +on2,0,0,24,1,0,101,4323.000000,109,0,845.010320,1988.803292,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,109,0,-1.000000,2040.174408,hintandextended,nbiot,180 +on6,0,0,26,1,0,1275,4681.000000,109,2,23575.030960,1963.399584,hintandextended,nbiot,180 +on4,0,0,25,1,0,213,4502.300000,109,2,8301.010320,2007.490000,hintandextended,nbiot,180 +on1,0,0,26,1,0,919,4683.051280,109,2,20203.041280,2196.927012,hintandextended,nbiot,180 +on9,0,0,26,1,0,627,4682.480000,109,2,16028.010320,2195.651792,hintandextended,nbiot,180 +on8,0,0,25,1,0,540,4501.661920,109,1,11908.620640,1943.229892,hintandextended,nbiot,180 +on3,0,0,25,1,0,360,4503.979680,109,1,8354.020320,2067.325080,hintandextended,nbiot,180 +on12,0,0,24,1,0,599,4321.000000,109,0,11822.010320,1806.400000,hintandextended,nbiot,180 +on5,0,0,29,1,0,1045,5223.010000,109,5,27651.010320,2731.910168,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,110,0,-1.000000,2040.214656,hintandextended,nbiot,180 +on11,0,0,24,1,0,539,4361.000000,110,0,9657.010320,1810.713416,hintandextended,nbiot,180 +on6,0,0,25,1,0,3053,4501.300000,110,1,60240.010320,1922.070000,hintandextended,nbiot,180 +on2,0,0,25,1,0,333,4501.000000,110,1,6204.030960,1891.393084,hintandextended,nbiot,180 +on5,0,0,25,1,0,1243,4502.190000,110,1,23278.010320,2028.382500,hintandextended,nbiot,180 +on4,0,0,26,1,0,802,4685.289680,110,2,17276.041280,2283.089372,hintandextended,nbiot,180 +on3,0,0,24,1,0,27,4320.969360,110,0,2285.010320,1754.400952,hintandextended,nbiot,180 +on10,0,0,24,1,0,332,4336.010320,110,0,6164.010320,1839.067544,hintandextended,nbiot,180 +on8,0,0,27,1,0,901,4865.600000,110,3,18986.630960,2522.119876,hintandextended,nbiot,180 +on12,0,0,26,1,0,716,4681.600000,110,2,18945.010320,2176.767876,hintandextended,nbiot,180 +on7,0,0,26,1,0,325,4685.827440,110,3,6244.051600,2174.209100,hintandextended,nbiot,180 +on1,0,0,25,1,0,832,4502.300000,110,1,17235.010320,2059.301708,hintandextended,nbiot,180 +on9,0,0,26,1,0,400,4682.558720,110,3,12660.010320,2138.684988,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4336.620640,111,0,-1.000000,2046.842788,hintandextended,nbiot,180 +on4,0,0,25,1,0,1440,4502.999680,111,1,30155.020320,1891.836496,hintandextended,nbiot,180 +on5,0,0,27,1,0,2201,4863.879360,111,5,44320.010320,2380.726328,hintandextended,nbiot,180 +on10,0,0,24,1,0,1120,4322.979360,111,0,24248.010320,1803.565160,hintandextended,nbiot,180 +on1,0,0,24,1,0,2340,4320.010320,111,0,47636.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,24,1,0,459,4323.010320,111,0,7525.010320,1870.540960,hintandextended,nbiot,180 +on9,0,0,26,1,0,3398,4681.600000,111,3,70647.010320,2196.989792,hintandextended,nbiot,180 +on8,0,0,24,1,0,3092,4321.000000,111,0,62711.010320,1786.906708,hintandextended,nbiot,180 +on3,0,0,25,1,0,3399,4500.979360,111,1,66960.010320,1826.411452,hintandextended,nbiot,180 +on2,0,0,24,1,0,1260,4476.630640,111,1,27451.620640,2010.567172,hintandextended,nbiot,180 +on6,0,0,26,1,0,2277,4682.300000,111,2,44361.630960,2166.083208,hintandextended,nbiot,180 +on7,0,0,24,1,0,2110,4321.000000,111,0,41380.010320,1858.413208,hintandextended,nbiot,180 +on12,0,0,24,1,0,1919,4322.030640,111,0,38004.010320,1936.442172,hintandextended,nbiot,180 +on2,0,0,27,1,0,1662,4946.500000,112,4,39922.010320,2599.979668,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,112,0,-1.000000,2014.221364,hintandextended,nbiot,180 +on11,0,0,26,1,0,1658,4773.589680,112,5,36769.651600,2524.362080,hintandextended,nbiot,180 +on9,0,0,24,1,0,37,4321.979360,112,0,1296.010320,1754.805160,hintandextended,nbiot,180 +on12,0,0,25,1,0,1404,4502.300000,112,1,28877.010320,2030.753292,hintandextended,nbiot,180 +on6,0,0,25,1,0,1636,4501.300000,112,1,36689.010320,2017.496500,hintandextended,nbiot,180 +on8,0,0,27,1,0,1421,4865.351600,112,4,28918.630960,2512.966640,hintandextended,nbiot,180 +on1,0,0,24,1,0,1328,4320.040960,112,0,26724.010320,1754.036300,hintandextended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,112,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1615,4481.300000,112,1,32897.010320,2009.503208,hintandextended,nbiot,180 +on5,0,0,27,1,0,1643,4862.831280,112,3,36729.030960,2236.020512,hintandextended,nbiot,180 +on7,0,0,25,1,0,900,4503.620640,112,1,18995.620640,1944.286796,hintandextended,nbiot,180 +on10,0,0,25,1,0,3032,4500.220320,112,1,60034.010320,1826.101336,hintandextended,nbiot,180 +on10,0,0,28,1,0,1939,5043.500000,113,5,50087.630960,2726.029792,hintandextended,nbiot,180 +on2,0,0,25,1,0,930,4502.600000,113,1,23067.010320,2147.366708,hintandextended,nbiot,180 +on3,0,0,24,1,0,2700,4321.000000,113,0,57367.010320,1845.400000,hintandextended,nbiot,180 +on5,0,0,24,1,0,1800,4321.000000,113,0,38159.010320,1844.360000,hintandextended,nbiot,180 +on1,0,0,24,1,0,677,4322.969040,113,0,11299.010320,1755.214448,hintandextended,nbiot,180 +on12,0,0,24,1,0,60,4320.010320,113,0,478.010320,1754.010836,hintandextended,nbiot,180 +on6,0,0,24,1,0,784,4320.989680,113,0,14702.010320,1754.402580,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.010320,113,0,-1.000000,2040.138288,hintandextended,nbiot,180 +on4,0,0,24,1,0,900,4321.000000,113,0,20475.010320,1774.160000,hintandextended,nbiot,180 +on9,0,0,24,1,0,2348,4321.000000,113,0,50046.010320,1839.159792,hintandextended,nbiot,180 +on8,0,0,24,1,0,2055,4320.969360,113,0,41403.010320,1754.400952,hintandextended,nbiot,180 +on7,0,0,24,1,0,2233,4322.000000,113,0,43623.010320,1913.659792,hintandextended,nbiot,180 +on11,0,0,26,1,0,2064,4683.300000,113,2,43664.630960,2312.076500,hintandextended,nbiot,180 +on2,0,0,25,1,0,1553,4501.000000,114,1,32016.010320,1917.406500,hintandextended,nbiot,180 +on5,0,0,25,1,0,474,4503.000000,114,1,9875.010320,1958.694584,hintandextended,nbiot,180 +on7,0,0,25,1,0,180,4502.620640,114,1,6488.620640,1958.816672,hintandextended,nbiot,180 +on9,0,0,25,1,0,180,4502.620640,114,1,6578.620640,2031.863256,hintandextended,nbiot,180 +on6,0,0,26,1,0,514,4684.300000,114,2,12741.010320,2299.333084,hintandextended,nbiot,180 +on8,0,0,24,1,0,87,4320.010320,114,0,1068.010320,1754.010836,hintandextended,nbiot,180 +on12,0,0,26,1,0,426,4681.341280,114,2,9916.041280,2063.246512,hintandextended,nbiot,180 +on11,0,0,28,1,0,762,5043.410000,114,4,18053.010320,2585.326876,hintandextended,nbiot,180 +on10,0,0,25,1,0,913,4502.930640,114,3,22322.630640,2122.623880,hintandextended,nbiot,180 +on3,0,0,24,1,0,360,4321.000000,114,0,9964.010320,1754.413416,hintandextended,nbiot,180 +on1,0,0,26,1,0,875,4680.030640,114,2,17669.630960,1898.038672,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4331.620640,114,0,-1.000000,2044.829372,hintandextended,nbiot,180 +on4,0,0,26,1,0,859,4681.520000,114,2,17628.010320,2079.769084,hintandextended,nbiot,180 +on1,0,0,25,1,0,678,4501.000000,115,1,13694.010320,1915.716500,hintandextended,nbiot,180 +on4,0,0,25,1,0,335,4501.189360,115,1,7617.010320,1826.495452,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4356.610320,115,0,-1.000000,2054.838660,hintandextended,nbiot,180 +on10,0,0,26,1,0,807,4684.300000,115,2,18432.630960,2248.926624,hintandextended,nbiot,180 +on12,0,0,25,1,0,2509,4501.190000,115,1,49690.010320,1917.482500,hintandextended,nbiot,180 +on5,0,0,27,1,0,663,4863.458400,115,5,13774.651600,2185.409484,hintandextended,nbiot,180 +on2,0,0,25,1,0,1193,4501.010320,115,1,26237.010320,1942.760836,hintandextended,nbiot,180 +on8,0,0,26,1,0,896,4682.600000,115,2,22859.010320,2240.153292,hintandextended,nbiot,180 +on11,0,0,25,1,0,0,4507.600000,115,1,3243.620640,2289.715332,hintandextended,nbiot,180 +on6,0,0,25,1,0,563,4502.300000,115,1,16202.010320,2133.576584,hintandextended,nbiot,180 +on3,0,0,25,1,0,737,4502.300000,115,1,18391.010320,2063.123084,hintandextended,nbiot,180 +on9,0,0,25,1,0,543,4502.010320,115,1,13734.030960,2006.190504,hintandextended,nbiot,180 +on7,0,0,25,1,0,541,4502.389680,115,1,13870.610320,2032.992456,hintandextended,nbiot,180 +on4,0,0,25,1,0,578,4606.300000,116,3,13131.010320,2241.639500,hintandextended,nbiot,180 +on8,0,0,24,1,0,3370,4321.000000,116,0,67096.010320,1760.900000,hintandextended,nbiot,180 +on5,0,0,25,1,0,1080,4502.979680,116,1,22139.020320,1943.561788,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4341.010320,116,0,-1.000000,2048.578536,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4323.979360,116,0,7057.010320,1883.005160,hintandextended,nbiot,180 +on1,0,0,24,1,0,884,4344.010320,116,0,18165.010320,1763.610836,hintandextended,nbiot,180 +on11,0,0,24,1,0,1807,4322.000000,116,0,39381.010320,1871.163416,hintandextended,nbiot,180 +on6,0,0,23,1,0,68,4248.000000,116,0,214.010320,1725.206708,hintandextended,nbiot,180 +on3,0,0,24,1,0,575,4450.300000,116,2,16211.010320,2187.676916,hintandextended,nbiot,180 +on10,0,0,25,1,0,2455,4500.310320,116,1,47828.010320,1868.380836,hintandextended,nbiot,180 +on12,0,0,25,1,0,640,4501.641280,116,2,13172.630960,1826.683136,hintandextended,nbiot,180 +on7,0,0,24,1,0,463,4323.969040,116,0,10071.010320,1988.314240,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4322.000000,116,0,325.010320,1840.873416,hintandextended,nbiot,180 +on8,0,0,24,1,0,84,4320.010320,117,0,3274.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,24,1,0,704,4345.010320,117,0,13284.010320,1866.054128,hintandextended,nbiot,180 +on5,0,0,24,1,0,1260,4322.000000,117,0,25933.010320,1870.506916,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4322.041280,117,0,4115.010320,1908.503344,hintandextended,nbiot,180 +on12,0,0,24,1,0,3170,4321.000000,117,0,62586.010320,1773.900000,hintandextended,nbiot,180 +on4,0,0,24,1,0,1594,4334.010320,117,0,32114.010320,1759.610836,hintandextended,nbiot,180 +on1,0,0,25,1,0,882,4500.010320,117,1,16227.010320,1826.017336,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4357.251600,117,0,-1.000000,2055.054924,hintandextended,nbiot,180 +on10,0,0,26,1,0,2594,4682.300000,117,2,55470.630960,2226.006708,hintandextended,nbiot,180 +on3,0,0,25,1,0,1620,4502.989680,117,1,34224.620640,1954.407580,hintandextended,nbiot,180 +on9,0,0,25,1,0,2700,4503.020640,117,1,55575.620640,2052.323380,hintandextended,nbiot,180 +on6,0,0,24,1,0,900,4321.989680,117,0,19050.010320,1808.752580,hintandextended,nbiot,180 +on7,0,0,24,1,0,2678,4441.300000,117,1,55429.010320,1984.454792,hintandextended,nbiot,180 +on2,0,0,24,1,0,3971,4321.000000,118,0,81998.010320,1838.250000,hintandextended,nbiot,180 +on6,0,0,26,1,0,714,4682.000000,118,2,12117.630960,2098.363000,hintandextended,nbiot,180 +on4,0,0,25,1,0,180,4503.000000,118,1,6643.620640,2059.068416,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4503.000000,118,1,3050.620640,2124.308292,hintandextended,nbiot,180 +on8,0,0,25,1,0,720,4504.000000,118,1,17432.620640,2253.805000,hintandextended,nbiot,180 +on11,0,0,26,1,0,279,4684.620960,118,2,6523.630960,2173.798216,hintandextended,nbiot,180 +on9,0,0,26,1,0,732,4684.679360,118,2,17366.630960,2166.015076,hintandextended,nbiot,180 +on7,0,0,25,1,0,1161,4502.000000,118,1,24519.010320,2034.156500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4367.241280,118,0,-1.000000,2059.124584,hintandextended,nbiot,180 +on5,0,0,24,1,0,654,4398.000000,118,1,17325.010320,1950.586416,hintandextended,nbiot,180 +on12,0,0,24,1,0,1620,4321.000000,118,0,35520.010320,1754.413416,hintandextended,nbiot,180 +on1,0,0,25,1,0,380,4503.300000,118,1,12076.010320,2140.496292,hintandextended,nbiot,180 +on3,0,0,24,1,0,267,4323.979360,118,0,6482.010320,1905.364952,hintandextended,nbiot,180 +on4,0,0,24,1,0,962,4323.051280,119,0,18102.010320,1953.503844,hintandextended,nbiot,180 +on8,0,0,25,1,0,241,4635.320640,119,2,5185.030960,2311.864964,hintandextended,nbiot,180 +on2,0,0,25,1,0,900,4502.300000,119,2,23278.010320,2034.926708,hintandextended,nbiot,180 +on9,0,0,25,1,0,687,4509.610320,119,1,12289.630960,1946.214044,hintandextended,nbiot,180 +on12,0,0,26,1,0,304,4681.600000,119,3,9481.010320,2098.819876,hintandextended,nbiot,180 +on5,0,0,24,1,0,611,4324.979360,119,0,12248.010320,1993.521660,hintandextended,nbiot,180 +on6,0,0,24,1,0,39,4321.969360,119,0,2371.010320,1816.420952,hintandextended,nbiot,180 +on7,0,0,25,1,0,356,4577.989360,119,3,5225.651600,1998.669076,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,119,0,-1.000000,2040.241488,hintandextended,nbiot,180 +on11,0,0,25,1,0,3600,4501.000000,119,1,75557.020320,1917.400000,hintandextended,nbiot,180 +on10,0,0,24,1,0,254,4323.989680,119,0,5145.010320,1947.612580,hintandextended,nbiot,180 +on3,0,0,26,1,0,514,4684.000000,119,2,9521.030960,2234.349584,hintandextended,nbiot,180 +on1,0,0,24,1,0,2384,4320.000000,119,0,47322.010320,1754.006708,hintandextended,nbiot,180 +on2,0,0,26,1,0,334,4682.369040,120,2,7034.630960,2105.277324,hintandextended,nbiot,180 +on11,0,0,24,1,0,360,4323.000000,120,0,10054.010320,1911.473416,hintandextended,nbiot,180 +on10,0,0,24,1,0,286,4322.000000,120,0,6993.010320,1794.709792,hintandextended,nbiot,180 +on5,0,0,25,1,0,180,4503.000000,120,1,7118.620640,2063.865000,hintandextended,nbiot,180 +on8,0,0,25,1,0,495,4501.310320,120,1,13571.010320,2011.397336,hintandextended,nbiot,180 +on7,0,0,26,1,0,747,4686.189360,120,2,13611.030960,2235.888744,hintandextended,nbiot,180 +on9,0,0,25,1,0,414,4505.300000,120,1,9966.010320,2388.550000,hintandextended,nbiot,180 +on3,0,0,25,1,0,813,4503.300000,120,1,18289.010320,2154.276708,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4323.020640,120,0,1370.010320,2031.348380,hintandextended,nbiot,180 +on6,0,0,27,1,0,413,4861.641280,120,3,10006.030960,2243.006096,hintandextended,nbiot,180 +on4,0,0,25,1,0,1913,4502.210000,120,1,37573.010320,2034.240500,hintandextended,nbiot,180 +on12,0,0,24,1,0,51,4322.010320,120,0,1295.010320,1851.270836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,120,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on8,0,0,24,1,0,631,4356.289680,121,1,16507.010320,1791.272580,hintandextended,nbiot,180 +on11,0,0,25,1,0,141,4503.300000,121,2,4027.010320,2157.130208,hintandextended,nbiot,180 +on12,0,0,22,1,0,900,4257.958720,121,0,19753.010320,1820.190196,hintandextended,nbiot,180 +on1,0,0,24,1,0,1231,4332.010320,121,0,23658.010320,1874.510836,hintandextended,nbiot,180 +on2,0,0,24,1,0,1754,4322.000000,121,0,33595.010320,1776.509792,hintandextended,nbiot,180 +on3,0,0,27,1,0,1661,4863.300000,121,3,33636.630960,2342.274376,hintandextended,nbiot,180 +on7,0,0,25,1,0,1569,4501.000000,121,1,32275.010320,1916.756500,hintandextended,nbiot,180 +on10,0,0,26,1,0,1627,4684.020000,121,2,32315.030960,2173.250876,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4322.948720,121,0,2345.010320,1852.692696,hintandextended,nbiot,180 +on9,0,0,25,1,0,1316,4502.300000,121,1,28328.010320,2114.213500,hintandextended,nbiot,180 +on5,0,0,26,1,0,547,4681.989680,121,2,10415.630960,1916.632288,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4323.010320,121,0,-1.000000,2041.338288,hintandextended,nbiot,180 +on4,0,0,25,1,0,518,4501.000000,121,1,10374.010320,1917.217792,hintandextended,nbiot,180 +on4,0,0,25,1,0,2814,4502.000000,122,1,58494.010320,2008.163208,hintandextended,nbiot,180 +on2,0,0,25,1,0,2520,4502.620640,122,1,52773.620640,1967.266672,hintandextended,nbiot,180 +on12,0,0,26,1,0,899,4681.020640,122,3,15016.661600,1990.481172,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4359.620640,122,0,-1.000000,2056.069620,hintandextended,nbiot,180 +on7,0,0,25,1,0,891,4502.010000,122,1,20060.010320,1948.360500,hintandextended,nbiot,180 +on5,0,0,24,1,0,137,4324.051600,122,0,1031.010320,2010.330888,hintandextended,nbiot,180 +on1,0,0,24,1,0,3060,4321.000000,122,0,63389.010320,1845.400000,hintandextended,nbiot,180 +on9,0,0,26,1,0,693,4684.000000,122,2,14976.040960,2224.196376,hintandextended,nbiot,180 +on10,0,0,25,1,0,360,4505.289680,122,2,10858.010320,2144.542580,hintandextended,nbiot,180 +on11,0,0,25,1,0,293,4500.220320,122,1,4865.010320,1826.101336,hintandextended,nbiot,180 +on3,0,0,24,1,0,360,4324.979680,122,0,8078.010320,2007.581912,hintandextended,nbiot,180 +on8,0,0,25,1,0,1767,4501.989360,122,1,33626.010320,1917.808952,hintandextended,nbiot,180 +on6,0,0,24,1,0,831,4359.000000,122,1,14936.010320,1769.619916,hintandextended,nbiot,180 +on8,0,0,24,1,0,344,4344.010320,123,0,6134.010320,1763.610836,hintandextended,nbiot,180 +on11,0,0,25,1,0,1570,4502.369040,123,1,30079.630960,2033.654116,hintandextended,nbiot,180 +on3,0,0,24,1,0,0,4320.010320,123,0,509.010320,1754.010836,hintandextended,nbiot,180 +on2,0,0,24,1,0,918,4321.010320,123,0,20879.010320,1833.710836,hintandextended,nbiot,180 +on7,0,0,26,1,0,1895,4682.300000,123,2,37182.630960,2055.823084,hintandextended,nbiot,180 +on12,0,0,24,1,0,867,4327.010320,123,0,16271.010320,1756.810836,hintandextended,nbiot,180 +on1,0,0,25,1,0,1686,4501.300000,123,1,37141.010320,1990.573292,hintandextended,nbiot,180 +on9,0,0,25,1,0,725,4500.020640,123,1,16311.630960,1826.223380,hintandextended,nbiot,180 +on5,0,0,26,1,0,1774,4681.210000,123,2,33149.630960,1989.497000,hintandextended,nbiot,180 +on6,0,0,25,1,0,1564,4501.300000,123,1,33108.010320,1952.873084,hintandextended,nbiot,180 +on4,0,0,24,1,0,1495,4322.000000,123,0,30038.010320,1879.469792,hintandextended,nbiot,180 +on10,0,0,24,1,0,1271,4320.000000,123,0,26814.010320,1754.006708,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,123,0,-1.000000,2040.120744,hintandextended,nbiot,180 +on1,0,0,26,1,0,362,4682.723840,124,3,5611.651600,1987.502536,hintandextended,nbiot,180 +on2,0,0,24,1,0,329,4422.000000,124,1,10633.010320,1950.806500,hintandextended,nbiot,180 +on11,0,0,27,1,0,421,4862.020000,124,3,11617.010320,2243.547376,hintandextended,nbiot,180 +on12,0,0,26,1,0,153,4683.000000,124,2,5571.030960,2144.684252,hintandextended,nbiot,180 +on5,0,0,25,1,0,562,4502.000000,124,1,10673.030960,2007.103084,hintandextended,nbiot,180 +on10,0,0,27,1,0,554,4863.300000,124,3,11657.030960,2333.356168,hintandextended,nbiot,180 +on9,0,0,25,1,0,183,4501.672240,124,1,5651.672240,1891.655480,hintandextended,nbiot,180 +on6,0,0,25,1,0,868,4502.190000,124,1,16483.010320,2021.882500,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4321.000000,124,0,3087.010320,1755.966708,hintandextended,nbiot,180 +on3,0,0,25,1,0,629,4622.300000,124,3,11697.651600,2071.993084,hintandextended,nbiot,180 +on7,0,0,28,1,0,709,5041.900000,124,4,16523.030960,2406.290960,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,124,0,-1.000000,2040.154284,hintandextended,nbiot,180 +on4,0,0,24,1,0,108,4418.300000,124,1,5531.010320,2067.678500,hintandextended,nbiot,180 +on6,0,0,24,1,0,32,4321.000000,125,0,1181.010320,1781.966708,hintandextended,nbiot,180 +on2,0,0,25,1,0,513,4534.000000,125,2,9513.030960,1954.013000,hintandextended,nbiot,180 +on8,0,0,25,1,0,474,4502.000000,125,1,9473.010320,1998.218000,hintandextended,nbiot,180 +on12,0,0,26,1,0,711,4682.300000,125,2,14766.010320,2108.219792,hintandextended,nbiot,180 +on3,0,0,25,1,0,720,4501.000000,125,1,14852.020320,1917.400000,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4321.989680,125,0,1268.010320,1801.219288,hintandextended,nbiot,180 +on9,0,0,25,1,0,653,4501.000000,125,1,13886.010320,1917.406500,hintandextended,nbiot,180 +on5,0,0,26,1,0,333,4683.210000,125,2,5945.040960,2170.587084,hintandextended,nbiot,180 +on1,0,0,24,1,0,283,4346.010320,125,1,5905.010320,1766.627336,hintandextended,nbiot,180 +on10,0,0,25,1,0,693,4501.000000,125,1,13926.030960,1891.393084,hintandextended,nbiot,180 +on11,0,0,26,1,0,291,4682.190000,125,3,5985.661600,1941.808916,hintandextended,nbiot,180 +on4,0,0,24,1,0,360,4320.010320,125,0,9589.010320,1754.010836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,125,0,-1.000000,2040.127452,hintandextended,nbiot,180 +on12,0,0,24,1,0,747,4322.989680,126,1,16342.430320,1847.242788,hintandextended,nbiot,180 +on9,0,0,24,1,0,720,4324.000000,126,0,16435.010320,1973.356708,hintandextended,nbiot,180 +on11,0,0,27,1,0,1094,4865.610320,126,4,24443.030960,2519.868504,hintandextended,nbiot,180 +on8,0,0,26,1,0,1170,4681.600000,126,2,25668.010320,2146.289792,hintandextended,nbiot,180 +on10,0,0,25,1,0,1195,4502.289680,126,1,24403.010320,1934.166080,hintandextended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,126,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on7,0,0,24,1,0,540,4323.010320,126,0,11587.010320,1956.600544,hintandextended,nbiot,180 +on0,1,10,24,0,0,0,4320.000000,126,0,-1.000000,1988.221364,hintandextended,nbiot,180 +on6,0,0,24,1,0,882,4354.461280,126,1,16382.450960,1883.114428,hintandextended,nbiot,180 +on3,0,0,24,1,0,370,4322.938080,126,0,8477.010320,1755.195356,hintandextended,nbiot,180 +on2,0,0,24,1,0,927,4322.989680,126,0,19145.010320,1943.962372,hintandextended,nbiot,180 +on5,0,0,26,1,0,1070,4685.051280,126,2,19186.630960,2288.767052,hintandextended,nbiot,180 +on4,0,0,24,0,0,4009,4346.600000,126,1,-1.000000,1957.690000,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4321.969360,127,0,1414.010320,1809.660952,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,127,0,-1.000000,2040.181116,hintandextended,nbiot,180 +on9,0,0,26,1,0,446,4681.320640,127,2,10701.010320,2080.534756,hintandextended,nbiot,180 +on12,0,0,24,1,0,900,4324.000000,127,0,19842.010320,2027.586832,hintandextended,nbiot,180 +on8,0,0,24,1,0,1131,4321.989680,127,0,21981.010320,1812.652580,hintandextended,nbiot,180 +on11,0,0,24,1,0,673,4322.979360,127,0,14320.010320,1762.348452,hintandextended,nbiot,180 +on10,0,0,25,1,0,113,4501.300000,127,2,5175.010320,2033.473084,hintandextended,nbiot,180 +on2,0,0,26,1,0,335,4682.969040,127,2,5216.630960,1903.328948,hintandextended,nbiot,180 +on1,0,0,25,1,0,901,4503.000000,127,1,19890.610320,2071.196584,hintandextended,nbiot,180 +on7,0,0,24,1,0,1440,4321.989680,127,0,29033.010320,1754.815996,hintandextended,nbiot,180 +on3,0,0,25,1,0,2491,4503.000000,127,1,51977.010320,2148.956500,hintandextended,nbiot,180 +on5,0,0,25,1,0,1013,4501.210000,127,1,19764.010320,1916.450500,hintandextended,nbiot,180 +on6,0,0,24,1,0,774,4321.010320,127,0,15438.010320,1766.370836,hintandextended,nbiot,180 +on1,0,0,24,1,0,3780,4321.010320,128,0,76125.010320,1870.760836,hintandextended,nbiot,180 +on7,0,0,24,1,0,435,4322.000000,128,0,8458.010320,1844.519916,hintandextended,nbiot,180 +on11,0,0,26,1,0,816,4683.289680,128,2,19562.630960,2195.345788,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4322.000000,128,0,1442.010320,1807.060000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1404,4326.030960,128,0,27217.010320,1980.032508,hintandextended,nbiot,180 +on8,0,0,24,0,0,4074,4452.300000,128,1,-1.000000,1983.076500,hintandextended,nbiot,180 +on5,0,0,24,1,0,960,4325.989680,128,0,19521.010320,2088.162372,hintandextended,nbiot,180 +on4,0,0,26,1,0,365,4685.010320,128,3,8518.010320,2156.130752,hintandextended,nbiot,180 +on9,0,0,26,1,0,626,4686.979360,128,2,12931.030960,2354.108244,hintandextended,nbiot,180 +on10,0,0,24,1,0,385,4352.020640,128,2,8558.630960,1946.026672,hintandextended,nbiot,180 +on2,0,0,25,1,0,113,4505.210000,128,1,4778.010320,2111.763916,hintandextended,nbiot,180 +on12,0,0,25,1,0,467,4505.279360,128,1,12891.010320,2205.463576,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,128,0,-1.000000,2014.254904,hintandextended,nbiot,180 +on1,0,0,25,1,0,513,4503.400000,129,1,10338.030960,2023.003084,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,129,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on4,0,0,25,1,0,535,4501.190000,129,1,10298.010320,1916.832500,hintandextended,nbiot,180 +on7,0,0,26,1,0,775,4681.600000,129,2,16979.010320,2112.749584,hintandextended,nbiot,180 +on12,0,0,26,1,0,874,4687.199680,129,2,17020.630960,2413.756288,hintandextended,nbiot,180 +on11,0,0,25,1,0,720,4502.010320,129,1,17070.010320,2059.510836,hintandextended,nbiot,180 +on6,0,0,27,1,0,277,4865.200000,129,6,11918.010320,2564.599668,hintandextended,nbiot,180 +on3,0,0,24,1,0,313,4321.000000,129,0,5624.010320,1869.723208,hintandextended,nbiot,180 +on10,0,0,24,1,0,16,4321.989680,129,0,2377.010320,1871.165788,hintandextended,nbiot,180 +on5,0,0,25,1,0,1620,4501.000000,129,2,35572.620640,1917.205000,hintandextended,nbiot,180 +on8,0,0,26,1,0,537,4684.261280,129,2,10378.051600,2241.962428,hintandextended,nbiot,180 +on2,0,0,24,1,0,900,4321.010320,129,0,18108.010320,1870.760836,hintandextended,nbiot,180 +on9,0,0,27,1,0,689,4862.600000,129,3,11958.030960,2163.367668,hintandextended,nbiot,180 +on8,0,0,27,1,0,539,4863.869040,130,4,14054.030960,2322.728784,hintandextended,nbiot,180 +on3,0,0,25,1,0,188,4501.220320,130,2,7120.010320,1957.794628,hintandextended,nbiot,180 +on11,0,0,26,1,0,475,4828.189680,130,3,14014.010320,2270.120664,hintandextended,nbiot,180 +on9,0,0,25,1,0,193,4504.989680,130,1,7200.440960,1996.175832,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4321.410000,130,0,1739.010320,1805.277208,hintandextended,nbiot,180 +on6,0,0,25,1,0,360,4500.061920,130,2,7277.061600,1826.441600,hintandextended,nbiot,180 +on10,0,0,24,1,0,654,4459.300000,130,1,15470.010320,2017.070000,hintandextended,nbiot,180 +on4,0,0,26,1,0,439,4683.300000,130,2,8872.041280,2180.503084,hintandextended,nbiot,180 +on12,0,0,26,1,0,588,4685.310320,130,2,14157.010320,2282.967420,hintandextended,nbiot,180 +on5,0,0,23,1,0,419,4292.000000,130,0,8831.010320,1794.800000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4340.071920,130,0,-1.000000,2048.209884,hintandextended,nbiot,180 +on1,0,0,24,1,0,1439,4359.010320,130,0,26567.010320,1769.610836,hintandextended,nbiot,180 +on2,0,0,26,1,0,255,4684.300000,130,2,7160.030960,2308.029876,hintandextended,nbiot,180 +on4,0,0,24,1,0,221,4479.169360,131,2,8188.030960,2351.799368,hintandextended,nbiot,180 +on7,0,0,24,1,0,1620,4321.010320,131,0,34584.010320,1855.160836,hintandextended,nbiot,180 +on1,0,0,24,1,0,180,4321.000000,131,0,6801.010320,1756.993292,hintandextended,nbiot,180 +on3,0,0,26,1,0,740,4682.300000,131,2,14566.010320,2197.269792,hintandextended,nbiot,180 +on12,0,0,26,1,0,622,4861.551280,131,4,14119.030960,2215.910180,hintandextended,nbiot,180 +on5,0,0,25,1,0,870,4502.010000,131,1,19970.010320,1921.723916,hintandextended,nbiot,180 +on11,0,0,26,1,0,582,4681.250960,131,2,8228.051600,1900.880216,hintandextended,nbiot,180 +on8,0,0,25,1,0,258,4503.300000,131,2,8148.010320,2158.820000,hintandextended,nbiot,180 +on9,0,0,24,1,0,303,4320.969360,131,0,6717.010320,1754.400952,hintandextended,nbiot,180 +on6,0,0,24,1,0,1080,4320.010320,131,0,24309.010320,1754.010836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,131,0,-1.000000,2040.167700,hintandextended,nbiot,180 +on2,0,0,24,1,0,2771,4322.000000,131,0,54593.010320,1890.650000,hintandextended,nbiot,180 +on10,0,0,25,1,0,544,4587.520000,131,2,14079.010320,2146.357792,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,132,0,-1.000000,2040.194532,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4320.010320,132,0,1824.010320,1754.010836,hintandextended,nbiot,180 +on5,0,0,26,1,0,826,4684.589680,132,2,18359.010320,2363.285872,hintandextended,nbiot,180 +on9,0,0,24,1,0,757,4322.000000,132,0,16870.010320,1904.559792,hintandextended,nbiot,180 +on11,0,0,24,1,0,1339,4322.979360,132,0,28232.010320,1848.155160,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4322.010320,132,0,5611.010320,1818.127544,hintandextended,nbiot,180 +on2,0,0,25,1,0,3060,4501.000000,132,2,64116.630640,1917.205000,hintandextended,nbiot,180 +on12,0,0,24,1,0,2633,4429.010320,132,1,51467.010320,1913.967336,hintandextended,nbiot,180 +on6,0,0,24,1,0,627,4324.959040,132,0,12962.010320,1992.473532,hintandextended,nbiot,180 +on10,0,0,23,1,0,399,4225.959040,132,0,9225.010320,1716.403532,hintandextended,nbiot,180 +on1,0,0,27,1,0,555,4862.500000,132,5,16911.630960,2295.363208,hintandextended,nbiot,180 +on3,0,0,25,1,0,720,4503.989680,132,1,16980.620640,2125.750872,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4322.010320,132,0,1887.010320,1955.010836,hintandextended,nbiot,180 +on1,0,0,24,1,0,58,4320.000000,133,0,858.010320,1754.013208,hintandextended,nbiot,180 +on10,0,0,24,1,0,243,4323.000000,133,1,6095.010320,1893.091416,hintandextended,nbiot,180 +on5,0,0,25,1,0,15,4558.600000,133,3,7416.010320,2197.631584,hintandextended,nbiot,180 +on8,0,0,25,1,0,654,4501.999680,133,1,12444.010320,1917.163080,hintandextended,nbiot,180 +on7,0,0,25,1,0,394,4500.410320,133,1,7457.630960,1826.184044,hintandextended,nbiot,180 +on3,0,0,25,1,0,946,4503.189360,133,1,18939.010320,1917.645660,hintandextended,nbiot,180 +on4,0,0,28,1,0,1052,5043.810000,133,4,18979.030960,2412.918376,hintandextended,nbiot,180 +on11,0,0,24,1,0,1904,4322.000000,133,0,36502.010320,1894.550000,hintandextended,nbiot,180 +on6,0,0,25,1,0,246,4504.630960,133,2,6136.630960,2160.898968,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4327.620640,133,0,-1.000000,2043.256204,hintandextended,nbiot,180 +on9,0,0,25,1,0,720,4503.000000,133,1,15109.620640,2111.684876,hintandextended,nbiot,180 +on12,0,0,26,1,0,670,4682.510000,133,2,14962.010320,2196.515084,hintandextended,nbiot,180 +on2,0,0,27,1,0,677,4862.551280,133,4,15003.630960,2184.882888,hintandextended,nbiot,180 +on10,0,0,26,1,0,873,4682.320000,134,2,18709.010320,2193.897584,hintandextended,nbiot,180 +on7,0,0,27,1,0,555,4863.428400,134,3,11202.630960,2202.134568,hintandextended,nbiot,180 +on1,0,0,27,1,0,462,4862.200000,134,3,15226.010320,2455.630084,hintandextended,nbiot,180 +on11,0,0,24,1,0,180,4321.010640,134,0,3714.010320,1754.424172,hintandextended,nbiot,180 +on6,0,0,24,1,0,750,4321.000000,134,0,15266.030960,1825.886584,hintandextended,nbiot,180 +on2,0,0,27,1,0,760,4943.800000,134,4,23840.630960,2616.449668,hintandextended,nbiot,180 +on9,0,0,25,1,0,554,4501.000000,134,1,10375.030960,1891.393084,hintandextended,nbiot,180 +on5,0,0,25,1,0,484,4501.000000,134,1,10335.010320,1938.011500,hintandextended,nbiot,180 +on3,0,0,25,1,0,180,4502.269360,134,2,4491.010320,2059.224244,hintandextended,nbiot,180 +on12,0,0,26,1,0,266,4683.900000,134,3,11161.010320,2433.566252,hintandextended,nbiot,180 +on8,0,0,25,1,0,1058,4502.000000,134,1,23799.010320,1918.066292,hintandextended,nbiot,180 +on4,0,0,27,1,0,915,4861.300000,134,3,18750.630960,2153.371292,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,134,0,-1.000000,2040.147576,hintandextended,nbiot,180 +on12,0,0,23,1,0,45,4261.010320,135,0,3609.010320,1730.410836,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,135,0,-1.000000,2014.248196,hintandextended,nbiot,180 +on6,0,0,26,1,0,600,4689.420320,135,4,14474.010320,2353.836420,hintandextended,nbiot,180 +on11,0,0,24,1,0,3058,4358.010320,135,0,59202.010320,1769.210836,hintandextended,nbiot,180 +on3,0,0,24,1,0,833,4471.210000,135,1,20290.010320,2002.990500,hintandextended,nbiot,180 +on2,0,0,25,1,0,513,4503.190000,135,1,10839.030960,2000.182708,hintandextended,nbiot,180 +on5,0,0,26,1,0,619,4687.289680,135,2,11651.030960,2260.255788,hintandextended,nbiot,180 +on7,0,0,24,1,0,448,4322.969040,135,0,10799.010320,1880.637616,hintandextended,nbiot,180 +on10,0,0,26,1,0,558,4684.341280,135,2,10879.051600,2132.593136,hintandextended,nbiot,180 +on1,0,0,26,1,0,537,4682.300000,135,3,11611.010320,2055.771292,hintandextended,nbiot,180 +on8,0,0,24,1,0,303,4322.969360,135,0,5401.010320,1948.777660,hintandextended,nbiot,180 +on9,0,0,25,1,0,721,4505.000000,135,1,14539.610320,1936.186832,hintandextended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,135,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,24,1,0,0,4322.041280,136,0,1470.010320,1930.856636,hintandextended,nbiot,180 +on6,0,0,24,1,0,503,4328.000000,136,0,9243.010320,2078.320124,hintandextended,nbiot,180 +on2,0,0,24,1,0,201,4352.999680,136,1,7240.020320,1859.194788,hintandextended,nbiot,180 +on11,0,0,24,0,0,4228,4320.300000,136,1,-1.000000,1753.853500,hintandextended,nbiot,180 +on10,0,0,24,1,0,720,4321.989680,136,0,14559.010320,1754.815996,hintandextended,nbiot,180 +on8,0,0,24,1,0,2336,4358.000000,136,0,44490.010320,1851.763416,hintandextended,nbiot,180 +on3,0,0,26,1,0,1347,4682.390000,136,2,28577.630960,1958.600624,hintandextended,nbiot,180 +on12,0,0,25,1,0,1734,4504.000000,136,1,35431.010320,2082.426624,hintandextended,nbiot,180 +on1,0,0,24,1,0,236,4434.379680,136,2,7280.640960,1879.916996,hintandextended,nbiot,180 +on4,0,0,26,1,0,1305,4685.869040,136,2,31053.010320,2355.309032,hintandextended,nbiot,180 +on9,0,0,24,1,0,1080,4321.000000,136,0,22953.010320,1780.010000,hintandextended,nbiot,180 +on7,0,0,25,1,0,1409,4501.210000,136,1,28536.010320,1916.450292,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,136,0,-1.000000,2014.221364,hintandextended,nbiot,180 +on1,0,0,24,1,0,2497,4338.010320,137,0,47662.010320,1877.560836,hintandextended,nbiot,180 +on9,0,0,24,1,0,464,4457.300000,137,1,11600.010320,2072.819792,hintandextended,nbiot,180 +on8,0,0,26,1,0,521,4683.300000,137,2,11641.630960,2136.166584,hintandextended,nbiot,180 +on6,0,0,25,1,0,540,4504.738080,137,2,11772.251600,2113.960232,hintandextended,nbiot,180 +on7,0,0,26,1,0,872,4685.010000,137,2,14999.030960,2243.853792,hintandextended,nbiot,180 +on3,0,0,25,1,0,293,4505.189360,137,1,9632.010320,1983.965868,hintandextended,nbiot,180 +on5,0,0,25,1,0,801,4506.289680,137,1,14959.010320,2249.859288,hintandextended,nbiot,180 +on10,0,0,24,1,0,360,4321.000000,137,0,9680.010320,1831.750000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4390.261920,137,0,-1.000000,2068.319424,hintandextended,nbiot,180 +on11,0,0,24,1,0,180,4321.000000,137,0,4290.010320,1819.010000,hintandextended,nbiot,180 +on12,0,0,25,1,0,756,4503.000000,137,1,15039.051600,2127.473168,hintandextended,nbiot,180 +on4,0,0,24,1,0,297,4320.010320,137,0,4112.010320,1754.010836,hintandextended,nbiot,180 +on2,0,0,24,1,0,360,4449.092560,137,1,9741.040960,2243.366940,hintandextended,nbiot,180 +on10,0,0,27,1,0,749,4861.900000,138,3,17199.051600,2281.453292,hintandextended,nbiot,180 +on12,0,0,26,1,0,695,4681.300000,138,2,17119.010320,2080.721292,hintandextended,nbiot,180 +on7,0,0,24,1,0,491,4324.799680,138,0,7988.010320,1872.939996,hintandextended,nbiot,180 +on5,0,0,24,1,0,360,4322.989680,138,0,8159.010320,1893.275996,hintandextended,nbiot,180 +on1,0,0,25,1,0,581,4502.320000,138,1,13807.010320,2037.853000,hintandextended,nbiot,180 +on8,0,0,24,1,0,204,4322.000000,138,0,6047.010320,1871.163416,hintandextended,nbiot,180 +on4,0,0,26,1,0,846,4681.330000,138,2,17159.030960,2053.218376,hintandextended,nbiot,180 +on3,0,0,25,1,0,1440,4503.000000,138,1,30635.620640,2028.265124,hintandextended,nbiot,180 +on9,0,0,26,1,0,875,4684.300000,138,2,19336.010320,2314.029792,hintandextended,nbiot,180 +on2,0,0,24,1,0,2231,4321.000000,138,0,45857.010320,1799.250000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4351.010320,138,0,-1.000000,2052.612076,hintandextended,nbiot,180 +on11,0,0,27,1,0,954,4865.889680,138,4,19377.630960,2452.400580,hintandextended,nbiot,180 +on6,0,0,25,1,0,626,4504.220000,138,1,13847.030960,2027.712708,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,139,0,-1.000000,2014.254904,hintandextended,nbiot,180 +on3,0,0,27,1,0,1660,4958.200000,139,5,41487.010320,2872.667876,hintandextended,nbiot,180 +on1,0,0,26,1,0,1474,4683.948400,139,2,29778.630960,2110.420692,hintandextended,nbiot,180 +on12,0,0,25,1,0,82,4503.300000,139,2,6570.010320,2097.733416,hintandextended,nbiot,180 +on7,0,0,24,1,0,37,4321.989680,139,0,330.010320,1861.409080,hintandextended,nbiot,180 +on2,0,0,25,1,0,1703,4506.269360,139,3,36255.010320,2252.340868,hintandextended,nbiot,180 +on9,0,0,24,1,0,1260,4324.061920,139,0,26836.010320,1864.858308,hintandextended,nbiot,180 +on5,0,0,24,1,0,900,4322.000320,139,0,18709.010320,1754.833460,hintandextended,nbiot,180 +on10,0,0,24,1,0,762,4322.000000,139,0,15468.010320,1923.806708,hintandextended,nbiot,180 +on4,0,0,25,1,0,1435,4501.180000,139,1,29737.010320,1916.438292,hintandextended,nbiot,180 +on11,0,0,26,1,0,2112,4683.600000,139,3,46012.010320,2327.783292,hintandextended,nbiot,180 +on6,0,0,25,1,0,1080,4502.999680,139,1,24667.020320,1941.886496,hintandextended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,139,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,25,1,0,540,4502.620640,140,1,13537.620640,1986.513380,hintandextended,nbiot,180 +on10,0,0,25,1,0,514,4532.620640,140,2,10543.651600,1918.121588,hintandextended,nbiot,180 +on12,0,0,24,1,0,897,4358.010320,140,0,17303.010320,1885.560836,hintandextended,nbiot,180 +on8,0,0,25,1,0,1062,4500.969360,140,1,19989.010320,1826.407452,hintandextended,nbiot,180 +on7,0,0,27,1,0,1100,4864.040640,140,4,23296.030960,2325.605632,hintandextended,nbiot,180 +on11,0,0,24,1,0,1213,4321.000000,140,0,23256.010320,1758.300000,hintandextended,nbiot,180 +on2,0,0,24,1,0,1800,4321.000000,140,0,36722.010320,1845.400000,hintandextended,nbiot,180 +on1,0,0,25,1,0,393,4502.989680,140,1,10503.030960,1987.738956,hintandextended,nbiot,180 +on3,0,0,26,1,0,279,4682.241280,140,3,13366.010320,2393.533096,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4351.620640,140,0,-1.000000,2052.829372,hintandextended,nbiot,180 +on6,0,0,26,1,0,1346,4682.320640,140,2,27573.010320,2160.234756,hintandextended,nbiot,180 +on9,0,0,24,1,0,310,4320.000000,140,0,7084.010320,1754.013208,hintandextended,nbiot,180 +on4,0,0,24,1,0,478,4321.000000,140,0,10463.010320,1768.050000,hintandextended,nbiot,180 +on6,0,0,25,1,0,293,4502.000000,141,1,10071.010320,2032.070000,hintandextended,nbiot,180 +on3,0,0,25,1,0,939,4502.020640,141,2,21585.251600,1955.559840,hintandextended,nbiot,180 +on10,0,0,25,1,0,480,4501.600000,141,1,12987.030960,2044.175084,hintandextended,nbiot,180 +on2,0,0,25,1,0,1041,4501.000000,141,1,21503.010320,1916.366292,hintandextended,nbiot,180 +on9,0,0,25,1,0,210,4503.620320,141,2,6319.010320,2033.744712,hintandextended,nbiot,180 +on7,0,0,27,1,0,669,4862.610320,141,3,17601.030960,2335.036796,hintandextended,nbiot,180 +on1,0,0,27,1,0,848,4863.810000,141,3,21544.630960,2476.378376,hintandextended,nbiot,180 +on12,0,0,26,1,0,741,4682.341280,141,2,13027.051600,2030.523136,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4330.010320,141,0,-1.000000,2044.198660,hintandextended,nbiot,180 +on8,0,0,25,1,0,426,4503.300000,141,1,12947.010320,2088.230000,hintandextended,nbiot,180 +on5,0,0,24,1,0,2996,4322.000000,141,0,58451.010320,1886.750000,hintandextended,nbiot,180 +on4,0,0,26,1,0,741,4682.600000,141,3,17561.010320,2194.964876,hintandextended,nbiot,180 +on11,0,0,24,1,0,180,4331.958720,141,1,6235.620640,1863.648820,hintandextended,nbiot,180 +on1,0,0,25,1,0,113,4503.000000,142,1,5923.010320,2148.176500,hintandextended,nbiot,180 +on6,0,0,26,1,0,447,4684.300000,142,2,10626.010320,2357.299876,hintandextended,nbiot,180 +on12,0,0,26,1,0,529,4681.300000,142,2,13370.010320,2077.913292,hintandextended,nbiot,180 +on2,0,0,26,1,0,395,4681.810000,142,3,10556.030960,2090.115460,hintandextended,nbiot,180 +on4,0,0,24,1,0,0,4321.000000,142,0,1403.010320,1826.563208,hintandextended,nbiot,180 +on8,0,0,27,1,0,668,4863.500000,142,3,13411.041280,2332.773376,hintandextended,nbiot,180 +on3,0,0,25,1,0,174,4539.210000,142,2,5963.030960,2081.345292,hintandextended,nbiot,180 +on9,0,0,28,1,0,696,5043.200000,142,4,18029.630960,2513.729252,hintandextended,nbiot,180 +on7,0,0,26,1,0,367,4682.000000,142,3,6003.651600,2080.813000,hintandextended,nbiot,180 +on11,0,0,27,1,0,755,4861.900000,142,3,17988.010320,2268.706376,hintandextended,nbiot,180 +on10,0,0,25,1,0,394,4501.000000,142,1,10516.010320,2006.125000,hintandextended,nbiot,180 +on5,0,0,25,1,0,385,4501.317440,142,2,10666.630960,1826.742100,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4330.630960,142,0,-1.000000,2044.406668,hintandextended,nbiot,180 +on1,0,0,24,1,0,1261,4451.000000,143,1,28441.610320,2024.410000,hintandextended,nbiot,180 +on7,0,0,24,1,0,900,4322.000000,143,0,20390.010320,1894.420000,hintandextended,nbiot,180 +on10,0,0,24,1,0,518,4419.630960,143,1,10414.630960,1974.390924,hintandextended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,143,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on9,0,0,24,1,0,511,4332.010320,143,0,10374.010320,1775.067544,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,143,0,-1.000000,2014.234780,hintandextended,nbiot,180 +on2,0,0,24,1,0,2160,4320.010320,143,0,43770.010320,1754.010836,hintandextended,nbiot,180 +on3,0,0,24,1,0,1080,4324.969040,143,0,23791.010320,1964.664448,hintandextended,nbiot,180 +on6,0,0,25,1,0,1174,4503.520640,143,3,28482.230960,2100.629880,hintandextended,nbiot,180 +on8,0,0,25,1,0,834,4502.010320,143,1,17656.010320,1930.817336,hintandextended,nbiot,180 +on11,0,0,25,1,0,1117,4505.958720,143,1,23831.030960,2097.380320,hintandextended,nbiot,180 +on12,0,0,24,1,0,1013,4482.010320,143,1,23727.010320,2188.010628,hintandextended,nbiot,180 +on5,0,0,25,1,0,1373,4505.189360,143,1,28345.010320,2150.762368,hintandextended,nbiot,180 +on6,0,0,24,1,0,1800,4459.000000,144,1,38634.020320,1914.256708,hintandextended,nbiot,180 +on4,0,0,24,1,0,2160,4320.010320,144,0,46081.010320,1754.010836,hintandextended,nbiot,180 +on8,0,0,24,1,0,42,4323.938400,144,0,553.010320,1927.201984,hintandextended,nbiot,180 +on12,0,0,25,1,0,21,4503.310320,144,2,5411.010320,2265.040836,hintandextended,nbiot,180 +on9,0,0,25,1,0,2161,4501.300000,144,1,49919.010320,2032.829792,hintandextended,nbiot,180 +on3,0,0,24,1,0,900,4320.010320,144,0,19592.010320,1754.010836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4357.010320,144,0,-1.000000,2054.985244,hintandextended,nbiot,180 +on10,0,0,24,1,0,3060,4321.000000,144,0,61432.010320,1845.400000,hintandextended,nbiot,180 +on7,0,0,25,1,0,728,4503.300000,144,2,19484.010320,2035.326708,hintandextended,nbiot,180 +on5,0,0,25,1,0,2394,4502.600000,144,2,53002.010320,2109.400000,hintandextended,nbiot,180 +on1,0,0,25,1,0,2361,4502.620640,144,1,50000.651600,1890.761672,hintandextended,nbiot,180 +on2,0,0,24,1,0,720,4320.969360,144,0,17531.010320,1754.400952,hintandextended,nbiot,180 +on11,0,0,26,1,0,2511,4683.200320,144,2,49960.630960,2059.439712,hintandextended,nbiot,180 +on10,0,0,26,1,0,421,4685.000000,145,2,6386.430960,2167.936292,hintandextended,nbiot,180 +on3,0,0,24,1,0,32,4321.000000,145,0,2726.010320,1844.366708,hintandextended,nbiot,180 +on12,0,0,24,1,0,1557,4483.300000,145,1,35301.010320,2089.720000,hintandextended,nbiot,180 +on8,0,0,26,1,0,388,4712.851600,145,2,8651.010320,2095.110556,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4377.020640,145,0,-1.000000,2062.996080,hintandextended,nbiot,180 +on5,0,0,26,1,0,334,4682.289680,145,2,8480.010320,2080.272372,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4322.020640,145,0,2892.010320,1960.084964,hintandextended,nbiot,180 +on6,0,0,24,1,0,805,4501.310320,145,1,19038.010320,2161.294044,hintandextended,nbiot,180 +on4,0,0,27,1,0,454,4947.610000,145,4,17917.010320,2606.618792,hintandextended,nbiot,180 +on7,0,0,25,1,0,391,4502.000000,145,1,6346.030960,1891.553208,hintandextended,nbiot,180 +on11,0,0,25,1,0,141,4624.248400,145,3,6427.051600,2183.357568,hintandextended,nbiot,180 +on9,0,0,25,1,0,63,4502.000000,145,1,6306.010320,2085.961500,hintandextended,nbiot,180 +on2,0,0,24,1,0,360,4322.000000,145,0,8550.010320,1835.406708,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4344.620640,146,0,-1.000000,2024.116576,hintandextended,nbiot,180 +on5,0,0,24,1,0,540,4324.010320,146,0,11239.010320,1985.977544,hintandextended,nbiot,180 +on4,0,0,24,1,0,825,4322.000000,146,0,17339.010320,1893.250000,hintandextended,nbiot,180 +on10,0,0,25,1,0,741,4504.030960,146,1,17379.030960,2120.098760,hintandextended,nbiot,180 +on6,0,0,25,1,0,720,4505.938080,146,1,17503.620640,2106.413772,hintandextended,nbiot,180 +on7,0,0,26,1,0,874,4683.610320,146,2,24035.010320,2337.160420,hintandextended,nbiot,180 +on1,0,0,24,0,0,4212,4320.300000,146,1,-1.000000,1798.320000,hintandextended,nbiot,180 +on11,0,0,25,1,0,1102,4501.020640,146,1,24076.630960,1886.878172,hintandextended,nbiot,180 +on8,0,0,26,1,0,717,4685.010320,146,3,17419.651600,2426.927252,hintandextended,nbiot,180 +on9,0,0,24,1,0,580,4324.000000,146,0,11103.010320,2086.736624,hintandextended,nbiot,180 +on3,0,0,28,1,0,947,5045.999680,146,5,27845.010320,2828.221248,hintandextended,nbiot,180 +on12,0,0,25,1,0,3354,4500.310320,146,1,70227.010320,1942.480836,hintandextended,nbiot,180 +on2,0,0,25,1,0,1058,4504.020640,146,1,20531.010320,2339.821464,hintandextended,nbiot,180 +on4,0,0,24,1,0,327,4328.020640,147,0,7258.010320,1872.531672,hintandextended,nbiot,180 +on5,0,0,26,1,0,550,4684.979040,147,3,11042.010320,2171.308116,hintandextended,nbiot,180 +on10,0,0,26,1,0,1058,4682.600000,147,2,23854.010320,2231.833292,hintandextended,nbiot,180 +on11,0,0,25,1,0,653,4502.989680,147,1,16656.010320,2015.969080,hintandextended,nbiot,180 +on1,0,0,25,1,0,565,4501.369040,147,2,11082.630960,1917.092616,hintandextended,nbiot,180 +on12,0,0,25,1,0,394,4505.289680,147,2,10940.010320,2255.445788,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4322.969040,147,0,3693.010320,1901.061032,hintandextended,nbiot,180 +on6,0,0,26,1,0,841,4684.610320,147,2,20615.630960,2210.765752,hintandextended,nbiot,180 +on7,0,0,25,1,0,1045,4506.199680,147,1,20574.010320,2194.709580,hintandextended,nbiot,180 +on2,0,0,24,1,0,360,4322.959040,147,0,7340.010320,1755.216948,hintandextended,nbiot,180 +on8,0,0,24,1,0,3759,4339.010320,147,0,75112.010320,1761.610836,hintandextended,nbiot,180 +on3,0,0,25,1,0,293,4501.020640,147,1,6255.010320,1942.778172,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4322.630960,147,0,-1.000000,2041.293872,hintandextended,nbiot,180 +on1,0,0,24,1,0,3046,4346.010320,148,0,59083.010320,1764.410836,hintandextended,nbiot,180 +on11,0,0,25,1,0,805,4505.279360,148,1,17425.010320,2208.180160,hintandextended,nbiot,180 +on4,0,0,25,1,0,334,4624.010320,148,2,7984.040960,2260.027336,hintandextended,nbiot,180 +on10,0,0,24,1,0,180,4322.000000,148,0,4719.010320,1813.963416,hintandextended,nbiot,180 +on8,0,0,25,1,0,43,4502.420640,148,1,1110.630960,2041.104880,hintandextended,nbiot,180 +on3,0,0,25,1,0,26,4502.300000,148,1,4541.010320,2121.623292,hintandextended,nbiot,180 +on6,0,0,25,1,0,1080,4502.620640,148,1,24422.620640,2059.956672,hintandextended,nbiot,180 +on5,0,0,24,1,0,532,4354.010320,148,0,7944.010320,1889.817544,hintandextended,nbiot,180 +on7,0,0,26,1,0,538,4686.000000,148,3,8024.661600,2533.058208,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.010320,148,0,-1.000000,2055.432200,hintandextended,nbiot,180 +on12,0,0,24,1,0,52,4322.000000,148,0,1069.010320,1810.973208,hintandextended,nbiot,180 +on9,0,0,26,1,0,976,4684.000000,148,2,17505.651600,2120.178332,hintandextended,nbiot,180 +on2,0,0,24,1,0,742,4340.041280,148,1,17465.030960,1845.496844,hintandextended,nbiot,180 +on4,0,0,25,1,0,1440,4502.610320,149,1,29956.620640,1943.615960,hintandextended,nbiot,180 +on2,0,0,25,1,0,1933,4503.010320,149,1,39261.010320,2150.917336,hintandextended,nbiot,180 +on6,0,0,25,1,0,474,4502.010320,149,1,10060.010320,1954.217336,hintandextended,nbiot,180 +on12,0,0,25,1,0,293,4503.030960,149,1,7063.010320,2130.392300,hintandextended,nbiot,180 +on1,0,0,24,1,0,920,4474.269360,149,1,21315.010320,2034.654368,hintandextended,nbiot,180 +on3,0,0,24,1,0,765,4324.979360,149,0,15142.010320,1938.271868,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4364.630960,149,0,-1.000000,2032.073748,hintandextended,nbiot,180 +on10,0,0,25,1,0,1193,4503.169040,149,1,24316.010320,1920.900740,hintandextended,nbiot,180 +on7,0,0,24,1,0,18,4323.989680,149,0,1781.010320,1993.379288,hintandextended,nbiot,180 +on9,0,0,25,1,0,2427,4604.900000,149,5,60709.010320,2352.216500,hintandextended,nbiot,180 +on5,0,0,24,1,0,720,4320.620320,149,0,15196.010320,1754.254836,hintandextended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,149,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on11,0,0,24,1,0,1800,4321.020640,149,0,39415.010320,1870.771672,hintandextended,nbiot,180 +on1,0,0,25,1,0,1013,4501.200000,150,1,21518.010320,1916.446292,hintandextended,nbiot,180 +on10,0,0,25,1,0,1080,4503.579360,150,1,21990.620640,1934.253576,hintandextended,nbiot,180 +on7,0,0,24,0,0,4320,4320.000000,150,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,24,1,0,19,4320.989680,150,0,729.010320,1754.402580,hintandextended,nbiot,180 +on2,0,0,24,1,0,467,4324.010000,150,0,9462.010320,1940.223916,hintandextended,nbiot,180 +on6,0,0,26,1,0,899,4683.979360,150,2,17897.030960,2056.449536,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,150,0,-1.000000,2014.181116,hintandextended,nbiot,180 +on8,0,0,24,1,0,3134,4320.000000,150,0,62897.010320,1754.006708,hintandextended,nbiot,180 +on12,0,0,27,1,0,668,4862.200000,150,3,21559.630960,2401.959792,hintandextended,nbiot,180 +on11,0,0,24,1,0,1419,4339.020640,150,0,27107.010320,1761.621672,hintandextended,nbiot,180 +on3,0,0,24,1,0,661,4322.000000,150,0,12067.010320,1881.803292,hintandextended,nbiot,180 +on9,0,0,25,1,0,838,4502.300000,150,1,17857.010320,2057.533500,hintandextended,nbiot,180 +on4,0,0,26,1,0,428,4683.330960,150,3,12108.630960,2138.812300,hintandextended,nbiot,180 +on7,0,0,25,1,0,360,4504.010320,151,1,7589.020640,2059.544252,hintandextended,nbiot,180 +on8,0,0,26,1,0,806,4682.490000,151,2,16832.010320,2197.345792,hintandextended,nbiot,180 +on11,0,0,25,1,0,1192,4501.020320,151,1,26744.010320,1916.758128,hintandextended,nbiot,180 +on6,0,0,24,1,0,67,4323.979360,151,0,2463.010320,1987.265160,hintandextended,nbiot,180 +on3,0,0,25,1,0,655,4501.190000,151,1,14227.010320,1916.832500,hintandextended,nbiot,180 +on5,0,0,27,1,0,599,4864.530640,151,5,14267.030960,2272.580048,hintandextended,nbiot,180 +on2,0,0,24,1,0,1208,4321.000000,151,0,23350.010320,1762.200000,hintandextended,nbiot,180 +on10,0,0,25,1,0,168,4503.999680,151,1,4061.010320,1957.236496,hintandextended,nbiot,180 +on9,0,0,26,1,0,1237,4681.300000,151,2,26784.030960,2076.736376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4361.030960,151,0,-1.000000,2056.573376,hintandextended,nbiot,180 +on12,0,0,25,1,0,1013,4501.000000,151,1,21193.010320,1917.406500,hintandextended,nbiot,180 +on1,0,0,24,1,0,900,4321.010320,151,0,21340.010320,1869.454128,hintandextended,nbiot,180 +on4,0,0,25,1,0,294,4502.000000,151,1,7415.010320,1962.851292,hintandextended,nbiot,180 +on1,0,0,24,1,0,87,4321.959040,152,0,3120.010320,1754.803532,hintandextended,nbiot,180 +on9,0,0,24,1,0,669,4322.010320,152,0,11855.010320,1867.910836,hintandextended,nbiot,180 +on8,0,0,24,1,0,32,4351.320640,152,2,5534.010320,1978.434964,hintandextended,nbiot,180 +on12,0,0,24,1,0,3065,4321.000000,152,0,61395.010320,1842.150000,hintandextended,nbiot,180 +on11,0,0,27,1,0,524,4865.589680,152,5,11895.030960,2473.372456,hintandextended,nbiot,180 +on10,0,0,25,1,0,1506,4502.310320,152,1,31433.010320,1997.244044,hintandextended,nbiot,180 +on7,0,0,25,1,0,468,4505.279360,152,1,8292.010320,2069.275160,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4323.010320,152,0,3295.010320,1828.030960,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4504.000000,152,1,8375.051280,2053.773376,hintandextended,nbiot,180 +on3,0,0,25,1,0,383,4505.010320,152,1,8415.071920,1899.797668,hintandextended,nbiot,180 +on4,0,0,24,1,0,180,4321.989680,152,0,5591.010320,1754.815996,hintandextended,nbiot,180 +on6,0,0,24,0,0,4320,4320.000000,152,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4355.010320,152,0,-1.000000,2028.232200,hintandextended,nbiot,180 +on1,0,0,25,1,0,1736,4501.920640,153,2,36666.620640,1839.996588,hintandextended,nbiot,180 +on10,0,0,25,1,0,1800,4502.620640,153,1,36744.620640,1960.506672,hintandextended,nbiot,180 +on8,0,0,24,1,0,297,4321.010320,153,0,7261.010320,1869.720836,hintandextended,nbiot,180 +on9,0,0,24,1,0,2520,4320.010320,153,0,50530.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,23,1,0,1396,4278.989680,153,0,30283.010320,1768.152580,hintandextended,nbiot,180 +on7,0,0,25,1,0,1118,4502.969040,153,1,20993.030960,2039.107532,hintandextended,nbiot,180 +on4,0,0,25,1,0,675,4505.010000,153,1,13683.010320,2106.230624,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4369.020640,153,0,-1.000000,2059.816204,hintandextended,nbiot,180 +on6,0,0,24,1,0,179,4359.010320,153,0,2697.010320,1769.610836,hintandextended,nbiot,180 +on2,0,0,24,1,0,1620,4326.010320,153,0,34362.010320,2149.284252,hintandextended,nbiot,180 +on5,0,0,24,1,0,720,4321.989680,153,0,15972.010320,1946.429288,hintandextended,nbiot,180 +on12,0,0,24,1,0,3361,4322.000000,153,0,66959.010320,1883.500000,hintandextended,nbiot,180 +on3,0,0,25,1,0,956,4503.230320,153,1,20953.010320,2041.356836,hintandextended,nbiot,180 +on9,0,0,24,1,0,540,4323.979360,154,0,13463.010320,1850.518368,hintandextended,nbiot,180 +on5,0,0,24,1,0,1040,4325.020640,154,0,20241.010320,2276.678380,hintandextended,nbiot,180 +on10,0,0,24,0,0,4320,4320.000000,154,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on12,0,0,25,1,0,1053,4659.030960,154,2,23506.030960,2173.018884,hintandextended,nbiot,180 +on2,0,0,26,1,0,1148,4835.500000,154,3,28763.010320,2511.243376,hintandextended,nbiot,180 +on11,0,0,27,1,0,1044,4863.589680,154,3,23466.010320,2333.479164,hintandextended,nbiot,180 +on3,0,0,24,1,0,667,4322.989680,154,0,13391.010320,1913.412580,hintandextended,nbiot,180 +on4,0,0,26,1,0,807,4682.989680,154,2,17951.630960,2000.492496,hintandextended,nbiot,180 +on7,0,0,24,1,0,635,4393.958720,154,2,17910.010320,2054.451696,hintandextended,nbiot,180 +on8,0,0,25,1,0,1024,4503.289680,154,1,20281.030960,1996.836080,hintandextended,nbiot,180 +on1,0,0,26,1,0,1032,4714.061600,154,2,20414.010320,2138.812848,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4353.010320,154,0,-1.000000,2027.438908,hintandextended,nbiot,180 +on6,0,0,24,1,0,328,4329.010320,154,0,5228.010320,1844.060836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4351.020320,155,0,-1.000000,2052.569120,hintandextended,nbiot,180 +on10,0,0,24,1,0,471,4321.000000,155,0,7537.010320,1772.600000,hintandextended,nbiot,180 +on2,0,0,26,1,0,1234,4681.569360,155,3,28512.010320,2105.984244,hintandextended,nbiot,180 +on3,0,0,26,1,0,333,4682.020640,155,2,7577.030960,2079.124548,hintandextended,nbiot,180 +on6,0,0,25,1,0,180,4503.041280,155,1,5162.020320,2149.753428,hintandextended,nbiot,180 +on1,0,0,26,1,0,1345,4682.600000,155,3,30138.010320,2194.790000,hintandextended,nbiot,180 +on9,0,0,24,1,0,1669,4322.000000,155,0,33247.010320,1838.650000,hintandextended,nbiot,180 +on12,0,0,24,1,0,912,4321.000000,155,0,19009.010320,1812.913208,hintandextended,nbiot,180 +on7,0,0,25,1,0,900,4502.269360,155,2,24246.010320,2059.614244,hintandextended,nbiot,180 +on5,0,0,24,1,0,533,4482.210000,155,1,14097.010320,2126.347208,hintandextended,nbiot,180 +on4,0,0,25,1,0,842,4501.020640,155,1,17783.010320,1917.421464,hintandextended,nbiot,180 +on11,0,0,24,1,0,359,4359.989680,155,0,4991.010320,1770.009288,hintandextended,nbiot,180 +on8,0,0,24,1,0,180,4453.000000,155,1,5031.630960,2086.128416,hintandextended,nbiot,180 +on11,0,0,28,1,0,1003,5042.500000,156,5,22490.010320,2521.314876,hintandextended,nbiot,180 +on1,0,0,29,1,0,796,5223.130640,156,5,19618.630960,2599.053340,hintandextended,nbiot,180 +on7,0,0,24,1,0,194,4322.020320,156,0,6037.010320,1870.138044,hintandextended,nbiot,180 +on9,0,0,25,1,0,860,4501.000000,156,1,16868.010320,1916.756500,hintandextended,nbiot,180 +on12,0,0,26,1,0,530,4684.000000,156,2,9746.030960,2225.263000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1790,4501.000000,156,1,35576.010320,1917.406500,hintandextended,nbiot,180 +on4,0,0,24,1,0,1,4321.000000,156,0,3330.010320,1869.463208,hintandextended,nbiot,180 +on10,0,0,25,1,0,540,4501.061920,156,1,14369.020640,1942.788184,hintandextended,nbiot,180 +on8,0,0,25,1,0,671,4503.000000,156,1,14322.010320,2080.323208,hintandextended,nbiot,180 +on5,0,0,26,1,0,154,4683.600000,156,4,9706.010320,2320.639584,hintandextended,nbiot,180 +on2,0,0,26,1,0,873,4681.300000,156,3,19577.010320,2078.829376,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,156,0,-1.000000,2040.201240,hintandextended,nbiot,180 +on6,0,0,26,1,0,398,4682.300000,156,3,9786.651600,2192.336708,hintandextended,nbiot,180 +on2,0,0,24,1,0,1620,4361.051600,157,1,34635.620640,1789.999056,hintandextended,nbiot,180 +on11,0,0,25,1,0,1440,4501.620640,157,1,32096.620640,1897.316672,hintandextended,nbiot,180 +on12,0,0,25,1,0,2813,4501.210000,157,1,56139.010320,1917.490500,hintandextended,nbiot,180 +on1,0,0,24,1,0,407,4321.989680,157,0,8382.010320,1758.065996,hintandextended,nbiot,180 +on6,0,0,25,1,0,1080,4504.610320,157,1,24223.620640,2144.219252,hintandextended,nbiot,180 +on8,0,0,26,1,0,2013,4683.240640,157,2,38940.030960,2050.752548,hintandextended,nbiot,180 +on5,0,0,24,1,0,540,4320.010320,157,0,11829.010320,1754.010836,hintandextended,nbiot,180 +on7,0,0,24,1,0,180,4322.010320,157,0,5186.010320,1866.617544,hintandextended,nbiot,180 +on9,0,0,25,1,0,1977,4501.020000,157,1,38900.010320,1917.616000,hintandextended,nbiot,180 +on3,0,0,24,0,0,4320,4320.000000,157,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on10,0,0,26,1,0,1775,4683.600000,157,2,41509.010320,2317.389792,hintandextended,nbiot,180 +on4,0,0,24,1,0,1556,4321.989680,157,0,31933.010320,1754.822704,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4343.620640,157,0,-1.000000,2023.642788,hintandextended,nbiot,180 +on10,0,0,25,1,0,1620,4503.359040,158,1,32625.620640,2140.461824,hintandextended,nbiot,180 +on5,0,0,25,1,0,1426,4501.989680,158,1,26464.010320,1917.809080,hintandextended,nbiot,180 +on3,0,0,25,1,0,1068,4500.969360,158,1,21348.010320,1827.258952,hintandextended,nbiot,180 +on12,0,0,24,1,0,2259,4320.010320,158,0,43374.010320,1754.010836,hintandextended,nbiot,180 +on11,0,0,24,1,0,180,4321.000000,158,0,7067.010320,1833.700000,hintandextended,nbiot,180 +on4,0,0,26,1,0,1092,4681.530320,158,3,22753.010320,2104.928628,hintandextended,nbiot,180 +on8,0,0,25,1,0,119,4501.041280,158,1,6917.010320,1826.443136,hintandextended,nbiot,180 +on2,0,0,26,1,0,1955,4682.000000,158,2,39655.630960,2015.183124,hintandextended,nbiot,180 +on6,0,0,24,1,0,2520,4321.000000,158,0,50746.010320,1845.400000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4337.020640,158,0,-1.000000,2046.962540,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4322.989680,158,0,2480.010320,1960.856080,hintandextended,nbiot,180 +on7,0,0,24,1,0,566,4322.000000,158,0,13377.010320,1869.850000,hintandextended,nbiot,180 +on1,0,0,25,1,0,1621,4502.600000,158,2,39614.010320,2266.296376,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4321.969360,159,0,5607.010320,1782.360952,hintandextended,nbiot,180 +on10,0,0,26,1,0,597,4682.968720,159,3,9107.051280,2068.148696,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4349.010320,159,0,-1.000000,2051.758412,hintandextended,nbiot,180 +on6,0,0,26,1,0,223,4683.920640,159,3,11791.010320,2440.361548,hintandextended,nbiot,180 +on8,0,0,25,1,0,1734,4501.000000,159,1,36012.010320,1917.406500,hintandextended,nbiot,180 +on7,0,0,25,1,0,422,4502.041280,159,1,9066.430640,1983.460012,hintandextended,nbiot,180 +on12,0,0,24,1,0,52,4321.948400,159,0,3361.010320,1754.792776,hintandextended,nbiot,180 +on9,0,0,24,1,0,1260,4320.010320,159,0,25724.010320,1754.010836,hintandextended,nbiot,180 +on1,0,0,24,1,0,395,4321.000000,159,0,8986.010320,1822.000000,hintandextended,nbiot,180 +on5,0,0,26,1,0,594,4843.600000,159,3,11831.030960,2619.796168,hintandextended,nbiot,180 +on11,0,0,25,1,0,513,4501.000000,159,1,9026.030960,1891.140000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1440,4503.620640,159,1,30888.620640,2001.453256,hintandextended,nbiot,180 +on4,0,0,25,1,0,1609,4512.600000,159,2,39097.010320,2204.146500,hintandextended,nbiot,180 +on9,0,0,26,1,0,1956,4820.900000,160,3,45811.010320,2574.459792,hintandextended,nbiot,180 +on2,0,0,24,1,0,611,4324.010320,160,1,11375.010320,1965.047128,hintandextended,nbiot,180 +on11,0,0,27,1,0,1186,5033.620640,160,4,25050.041280,2406.048048,hintandextended,nbiot,180 +on6,0,0,24,1,0,10,4322.000000,160,0,347.010320,1957.229916,hintandextended,nbiot,180 +on10,0,0,27,1,0,555,4862.392880,160,3,11416.630960,2193.940276,hintandextended,nbiot,180 +on12,0,0,27,1,0,987,5003.500000,160,5,27267.010320,2672.829460,hintandextended,nbiot,180 +on8,0,0,24,1,0,900,4320.010320,160,0,20481.010320,1754.010836,hintandextended,nbiot,180 +on5,0,0,24,1,0,250,4323.989680,160,0,4452.010320,1965.798956,hintandextended,nbiot,180 +on4,0,0,26,1,0,41,4682.341280,160,3,4493.630960,2046.369720,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,160,0,-1.000000,2040.234780,hintandextended,nbiot,180 +on3,0,0,24,1,0,831,4321.000000,160,0,17943.010320,1772.600000,hintandextended,nbiot,180 +on1,0,0,29,1,0,894,5357.389680,160,6,25009.010320,3165.723748,hintandextended,nbiot,180 +on7,0,0,25,1,0,406,4502.210000,160,1,10683.010320,2026.628584,hintandextended,nbiot,180 +on11,0,0,25,1,0,540,4503.979680,161,1,12422.020320,1943.981912,hintandextended,nbiot,180 +on2,0,0,24,1,0,1080,4321.010320,161,0,22075.010320,1869.720836,hintandextended,nbiot,180 +on8,0,0,24,1,0,360,4321.000000,161,0,7484.010320,1784.950000,hintandextended,nbiot,180 +on7,0,0,24,1,0,2875,4356.010320,161,0,55432.010320,1884.760836,hintandextended,nbiot,180 +on6,0,0,24,1,0,3036,4336.010320,161,0,59671.010320,1760.410836,hintandextended,nbiot,180 +on5,0,0,24,1,0,727,4321.989680,161,0,17417.010320,1841.252580,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4339.010320,161,0,-1.000000,2047.738288,hintandextended,nbiot,180 +on9,0,0,24,1,0,1011,4320.010320,161,0,18407.010320,1754.010836,hintandextended,nbiot,180 +on1,0,0,24,1,0,600,4323.000000,161,0,12366.010320,1909.913416,hintandextended,nbiot,180 +on12,0,0,24,1,0,3,4321.010320,161,0,2015.010320,1818.767544,hintandextended,nbiot,180 +on4,0,0,23,1,0,0,4192.010320,161,0,2072.010320,1702.810836,hintandextended,nbiot,180 +on3,0,0,24,1,0,1393,4336.420320,161,1,26144.420320,1760.581336,hintandextended,nbiot,180 +on10,0,0,24,1,0,1440,4322.000000,161,0,29864.010320,1871.163416,hintandextended,nbiot,180 +on1,0,0,24,1,0,578,4353.230960,162,2,11319.230960,1904.644092,hintandextended,nbiot,180 +on12,0,0,25,1,0,372,4502.630960,162,1,8736.630960,2014.512176,hintandextended,nbiot,180 +on5,0,0,24,1,0,83,4321.000000,162,0,498.010320,1838.913416,hintandextended,nbiot,180 +on8,0,0,25,1,0,654,4503.000000,162,1,14798.010320,2151.108000,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4321.000000,162,0,670.010320,1813.160000,hintandextended,nbiot,180 +on3,0,0,25,1,0,1371,4501.300000,162,1,28771.010320,1922.076500,hintandextended,nbiot,180 +on4,0,0,26,1,0,693,4684.989680,162,2,14838.030960,2247.752164,hintandextended,nbiot,180 +on2,0,0,26,1,0,443,4682.600000,162,4,11176.010320,2112.753084,hintandextended,nbiot,180 +on6,0,0,25,1,0,541,4502.041280,162,1,11278.610320,2033.133220,hintandextended,nbiot,180 +on9,0,0,24,1,0,152,4382.251280,162,1,4244.010320,1779.785136,hintandextended,nbiot,180 +on11,0,0,24,1,0,436,4322.010320,162,0,8695.010320,1910.680628,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4355.241280,162,0,-1.000000,2054.257504,hintandextended,nbiot,180 +on10,0,0,24,1,0,180,4322.000000,162,0,4380.010320,1884.156708,hintandextended,nbiot,180 +on1,0,0,24,1,0,2743,4322.000000,163,0,54980.010320,1934.200000,hintandextended,nbiot,180 +on8,0,0,26,1,0,607,4825.600000,163,3,15517.630960,2650.686168,hintandextended,nbiot,180 +on2,0,0,24,1,0,205,4323.989680,163,0,7258.010320,1963.992580,hintandextended,nbiot,180 +on4,0,0,26,1,0,573,4683.630960,163,2,15476.010320,2313.645384,hintandextended,nbiot,180 +on3,0,0,26,1,0,270,4682.041280,163,2,6253.030960,2145.107804,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,163,0,-1.000000,2040.214656,hintandextended,nbiot,180 +on11,0,0,27,1,0,374,4862.341280,163,3,7298.030960,2141.866180,hintandextended,nbiot,180 +on5,0,0,24,1,0,484,4383.180000,163,1,14158.010320,1933.536708,hintandextended,nbiot,180 +on9,0,0,26,1,0,241,4685.459040,163,3,6293.651600,2274.870448,hintandextended,nbiot,180 +on12,0,0,25,1,0,648,4501.010320,163,1,14198.030960,1891.403920,hintandextended,nbiot,180 +on10,0,0,25,1,0,93,4501.610320,163,1,6213.010320,2056.295836,hintandextended,nbiot,180 +on6,0,0,27,1,0,747,4867.889680,163,3,19109.010320,2780.969164,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4321.000000,163,0,122.010320,1793.926708,hintandextended,nbiot,180 +on1,0,0,24,1,0,219,4323.989680,164,0,4401.010320,2028.855664,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4335.020320,164,0,-1.000000,2046.276448,hintandextended,nbiot,180 +on11,0,0,25,1,0,1031,4503.989680,164,1,19533.010320,2137.002372,hintandextended,nbiot,180 +on9,0,0,25,1,0,385,4505.389680,164,2,8255.630960,2080.584412,hintandextended,nbiot,180 +on2,0,0,25,1,0,540,4501.979360,164,1,11334.010320,1911.955160,hintandextended,nbiot,180 +on8,0,0,27,1,0,486,4865.289680,164,3,8215.010320,2470.932372,hintandextended,nbiot,180 +on6,0,0,25,1,0,1080,4503.020320,164,1,24888.020320,2015.084752,hintandextended,nbiot,180 +on3,0,0,25,1,0,3101,4501.300000,164,1,63477.010320,2007.870000,hintandextended,nbiot,180 +on10,0,0,24,1,0,507,4329.000000,164,0,8173.010320,1771.920124,hintandextended,nbiot,180 +on5,0,0,26,1,0,335,4683.989680,164,2,4442.630960,2222.880496,hintandextended,nbiot,180 +on7,0,0,24,1,0,0,4323.010320,164,0,2626.010320,1949.170836,hintandextended,nbiot,180 +on4,0,0,24,1,0,1651,4325.989680,164,0,34626.010320,2111.315996,hintandextended,nbiot,180 +on12,0,0,24,1,0,657,4324.010320,164,1,17848.010320,1963.227336,hintandextended,nbiot,180 +on3,0,0,27,1,0,1166,5017.820000,165,4,25625.630960,2632.434292,hintandextended,nbiot,180 +on9,0,0,24,1,0,2121,4321.010320,165,0,42896.010320,1754.410836,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4348.630960,165,0,-1.000000,2051.606668,hintandextended,nbiot,180 +on1,0,0,25,1,0,1259,4501.190000,165,1,23558.020640,1916.825792,hintandextended,nbiot,180 +on12,0,0,26,1,0,1194,4683.300000,165,2,25584.010320,2265.146292,hintandextended,nbiot,180 +on10,0,0,24,1,0,83,4323.000000,165,0,1287.010320,1921.586584,hintandextended,nbiot,180 +on7,0,0,25,1,0,1280,4501.000000,165,1,23598.041280,1890.736376,hintandextended,nbiot,180 +on2,0,0,26,1,0,1392,4683.289680,165,2,31298.630960,2016.725788,hintandextended,nbiot,180 +on8,0,0,25,1,0,720,4504.030960,165,1,16228.620640,2086.404216,hintandextended,nbiot,180 +on4,0,0,24,1,0,900,4321.010320,165,0,20073.010320,1869.720836,hintandextended,nbiot,180 +on6,0,0,25,1,0,1060,4502.190000,165,1,19909.010320,2032.542500,hintandextended,nbiot,180 +on11,0,0,24,1,0,1475,4321.989680,165,0,31257.010320,1822.012372,hintandextended,nbiot,180 +on5,0,0,26,1,0,987,4681.948400,165,2,19949.030960,1965.488652,hintandextended,nbiot,180 +on2,0,0,25,1,0,860,4506.630960,166,1,16363.630960,2299.532300,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4378.020640,166,0,-1.000000,2063.402788,hintandextended,nbiot,180 +on11,0,0,24,1,0,180,4321.010320,166,0,5654.010320,1764.817544,hintandextended,nbiot,180 +on1,0,0,25,1,0,1004,4506.289680,166,1,21988.010320,2347.879288,hintandextended,nbiot,180 +on3,0,0,25,1,0,3106,4502.000000,166,1,63598.010320,2034.156500,hintandextended,nbiot,180 +on9,0,0,24,1,0,489,4321.010320,166,0,7607.010320,1870.760836,hintandextended,nbiot,180 +on6,0,0,26,1,0,994,4681.320640,166,2,21438.630960,2068.724880,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4321.000000,166,0,948.010320,1754.413416,hintandextended,nbiot,180 +on7,0,0,24,1,0,763,4323.000000,166,0,16322.010320,2000.509792,hintandextended,nbiot,180 +on10,0,0,24,1,0,1838,4323.979360,166,0,39062.010320,1862.218576,hintandextended,nbiot,180 +on8,0,0,24,1,0,2595,4322.000000,166,0,53055.010320,1808.100000,hintandextended,nbiot,180 +on4,0,0,24,1,0,912,4322.010320,166,0,21397.010320,1952.670628,hintandextended,nbiot,180 +on5,0,0,24,1,0,279,4323.010320,166,0,5475.010320,1891.710836,hintandextended,nbiot,180 +on3,0,0,23,1,0,2150,4311.000000,167,0,46016.010320,1841.400000,hintandextended,nbiot,180 +on7,0,0,26,1,0,673,4684.589680,167,2,16430.010320,2222.235872,hintandextended,nbiot,180 +on1,0,0,24,1,0,394,4323.000000,167,0,9899.010320,2039.256708,hintandextended,nbiot,180 +on11,0,0,24,1,0,239,4321.030640,167,0,6721.010320,1865.835464,hintandextended,nbiot,180 +on4,0,0,26,1,0,847,4743.761280,167,3,16470.030960,2101.169012,hintandextended,nbiot,180 +on8,0,0,25,1,0,1141,4500.310320,167,1,24054.010320,1880.080836,hintandextended,nbiot,180 +on10,0,0,26,1,0,498,4683.510000,167,4,9979.651600,2171.538460,hintandextended,nbiot,180 +on5,0,0,25,1,0,834,4631.300000,167,3,16510.651600,2024.659916,hintandextended,nbiot,180 +on9,0,0,26,1,0,514,4682.510000,167,2,12741.010320,2195.007084,hintandextended,nbiot,180 +on12,0,0,26,1,0,879,4681.910000,167,2,20289.010320,2151.730584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,167,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on6,0,0,24,1,0,380,4485.261600,167,1,10019.672240,1820.118056,hintandextended,nbiot,180 +on2,0,0,26,1,0,513,4683.820000,167,2,9939.030960,2125.707460,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4353.261920,168,0,-1.000000,2053.465760,hintandextended,nbiot,180 +on5,0,0,24,1,0,540,4320.010320,168,0,11707.010320,1754.010836,hintandextended,nbiot,180 +on1,0,0,24,1,0,0,4325.000000,168,0,1298.010320,2105.973624,hintandextended,nbiot,180 +on9,0,0,24,1,0,1195,4321.000000,168,0,25103.010320,1769.609792,hintandextended,nbiot,180 +on6,0,0,25,1,0,360,4504.989680,168,1,9200.010320,2166.905872,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4339.948720,168,1,7224.020320,1836.112820,hintandextended,nbiot,180 +on8,0,0,25,1,0,371,4502.630960,168,2,9240.630960,1968.310800,hintandextended,nbiot,180 +on7,0,0,25,1,0,294,4501.000000,168,1,7159.010320,1873.213208,hintandextended,nbiot,180 +on4,0,0,24,1,0,477,4321.000000,168,0,9090.010320,1769.350000,hintandextended,nbiot,180 +on12,0,0,25,1,0,720,4502.620640,168,1,15209.620640,1999.499964,hintandextended,nbiot,180 +on11,0,0,25,1,0,1053,4501.000000,168,1,21530.010320,1917.217792,hintandextended,nbiot,180 +on10,0,0,26,1,0,1251,4682.190000,168,2,25144.630960,2042.135584,hintandextended,nbiot,180 +on3,0,0,25,1,0,1053,4614.300000,168,2,21571.630960,2026.433000,hintandextended,nbiot,180 +on4,0,0,25,1,0,1063,4504.300000,169,1,22111.010320,2193.683208,hintandextended,nbiot,180 +on1,0,0,24,1,0,2340,4321.000000,169,0,47002.010320,1807.706708,hintandextended,nbiot,180 +on8,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,169,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on7,0,0,24,1,0,1476,4323.010320,169,0,31780.010320,1966.474252,hintandextended,nbiot,180 +on5,0,0,24,1,0,565,4321.000000,169,0,14167.010320,1792.756708,hintandextended,nbiot,180 +on6,0,0,25,1,0,540,4502.990000,169,1,14220.020320,2033.525916,hintandextended,nbiot,180 +on11,0,0,24,1,0,739,4321.989680,169,0,17143.010320,1832.412372,hintandextended,nbiot,180 +on0,1,10,24,0,0,0,4355.020320,169,0,-1.000000,2002.175828,hintandextended,nbiot,180 +on12,0,0,24,1,0,0,4320.020640,169,0,2710.010320,1754.021672,hintandextended,nbiot,180 +on10,0,0,25,1,0,2520,4503.010000,169,1,51870.020320,1984.523916,hintandextended,nbiot,180 +on9,0,0,26,1,0,938,4684.989680,169,2,17184.630960,2051.752412,hintandextended,nbiot,180 +on3,0,0,24,1,0,1800,4320.010320,169,0,36909.010320,1754.010836,hintandextended,nbiot,180 +on2,0,0,24,1,0,360,4362.379360,170,1,9897.651600,1913.958452,hintandextended,nbiot,180 +on10,0,0,25,1,0,335,4502.330320,170,1,9780.010320,2028.821712,hintandextended,nbiot,180 +on3,0,0,25,1,0,447,4502.300000,170,2,11057.010320,2077.169792,hintandextended,nbiot,180 +on6,0,0,25,1,0,360,4502.000000,170,1,9948.620640,2008.598292,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4322.000000,170,0,5877.010320,1878.170000,hintandextended,nbiot,180 +on5,0,0,25,1,0,720,4502.620640,170,1,16238.620640,2034.599964,hintandextended,nbiot,180 +on4,0,0,25,1,0,448,4596.041280,170,2,9821.630960,1992.291012,hintandextended,nbiot,180 +on1,0,0,25,1,0,1222,4501.300000,170,1,25228.010320,1942.220000,hintandextended,nbiot,180 +on11,0,0,25,1,0,654,4503.000000,170,1,16124.010320,2148.826500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4364.630960,170,0,-1.000000,2057.986544,hintandextended,nbiot,180 +on7,0,0,25,1,0,834,4503.010000,170,1,20539.010320,2086.820292,hintandextended,nbiot,180 +on12,0,0,26,1,0,1083,4681.190000,170,2,20580.630960,2014.845708,hintandextended,nbiot,180 +on8,0,0,25,1,0,556,4502.300000,170,1,11097.030960,1925.316584,hintandextended,nbiot,180 +on6,0,0,26,1,0,203,4686.168400,171,3,5533.051600,2388.876736,hintandextended,nbiot,180 +on4,0,0,25,1,0,204,4501.050000,171,1,5452.030960,1958.837792,hintandextended,nbiot,180 +on7,0,0,28,1,0,823,5042.200000,171,5,19912.010320,2520.609668,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4320.958720,171,0,918.010320,1754.403404,hintandextended,nbiot,180 +on2,0,0,26,1,0,456,4835.550000,171,4,16167.010320,2582.906168,hintandextended,nbiot,180 +on10,0,0,25,1,0,414,4502.300000,171,1,10388.030960,2081.043584,hintandextended,nbiot,180 +on1,0,0,28,1,0,613,5042.430640,171,4,16208.630960,2574.035256,hintandextended,nbiot,180 +on11,0,0,24,1,0,220,4321.010320,171,1,5412.010320,1802.510836,hintandextended,nbiot,180 +on9,0,0,26,1,0,601,4681.300000,171,2,13244.010320,2081.124292,hintandextended,nbiot,180 +on5,0,0,25,1,0,1260,4501.000000,171,1,25383.020320,1917.400000,hintandextended,nbiot,180 +on3,0,0,26,1,0,291,4684.168080,171,2,5492.430960,2037.350232,hintandextended,nbiot,180 +on12,0,0,25,1,0,158,4667.900000,171,2,10348.010320,2395.584000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,171,0,-1.000000,2040.174408,hintandextended,nbiot,180 +on4,0,0,25,1,0,3354,4501.000000,172,1,67113.010320,1917.406500,hintandextended,nbiot,180 +on2,0,0,24,1,0,1425,4322.210000,172,1,29831.010320,1928.440500,hintandextended,nbiot,180 +on9,0,0,24,1,0,745,4323.989680,172,0,17575.010320,1938.519288,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,172,0,-1.000000,2040.194532,hintandextended,nbiot,180 +on1,0,0,26,1,0,708,4681.510640,172,2,17615.030960,2079.960548,hintandextended,nbiot,180 +on11,0,0,24,1,0,1326,4320.020640,172,0,28150.010320,1754.021672,hintandextended,nbiot,180 +on10,0,0,25,1,0,226,4503.948720,172,1,6750.010320,2018.972612,hintandextended,nbiot,180 +on6,0,0,26,1,0,522,4681.361920,172,2,13206.630960,2021.421392,hintandextended,nbiot,180 +on8,0,0,24,1,0,0,4323.010320,172,0,585.010320,2000.137544,hintandextended,nbiot,180 +on7,0,0,25,1,0,361,4503.389680,172,1,8168.610320,2032.769288,hintandextended,nbiot,180 +on5,0,0,25,1,0,738,4503.289680,172,1,19580.010320,2139.965872,hintandextended,nbiot,180 +on3,0,0,25,1,0,180,4502.300000,172,2,8068.010320,2068.193292,hintandextended,nbiot,180 +on12,0,0,25,1,0,473,4505.199680,172,1,13165.010320,2209.506372,hintandextended,nbiot,180 +on2,0,0,27,1,0,666,4864.510000,173,3,14063.030960,2382.798376,hintandextended,nbiot,180 +on10,0,0,24,1,0,992,4321.000000,173,1,19542.010320,1784.306500,hintandextended,nbiot,180 +on7,0,0,24,1,0,323,4326.020640,173,0,4458.010320,1873.681672,hintandextended,nbiot,180 +on8,0,0,26,1,0,40,4682.710320,173,3,4498.630960,2246.912544,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4331.020320,173,0,-1.000000,2044.636200,hintandextended,nbiot,180 +on5,0,0,25,1,0,717,4502.010000,173,1,14023.010320,2012.970500,hintandextended,nbiot,180 +on1,0,0,24,1,0,259,4372.300000,173,1,10297.010320,2072.100000,hintandextended,nbiot,180 +on3,0,0,26,1,0,873,4684.220320,173,2,17913.030960,2123.301128,hintandextended,nbiot,180 +on9,0,0,25,1,0,2880,4501.020320,173,1,58372.020320,1942.771336,hintandextended,nbiot,180 +on6,0,0,24,1,0,19,4322.989360,173,0,1960.010320,1892.365452,hintandextended,nbiot,180 +on11,0,0,25,1,0,1620,4502.020320,173,1,33565.020320,2059.521336,hintandextended,nbiot,180 +on4,0,0,27,1,0,544,4865.661600,173,4,14103.651600,2414.044680,hintandextended,nbiot,180 +on12,0,0,26,1,0,702,4683.600000,173,2,17873.010320,2363.786584,hintandextended,nbiot,180 +on11,0,0,25,1,0,406,4507.020640,174,1,9398.010320,2367.281464,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,174,0,-1.000000,2014.248196,hintandextended,nbiot,180 +on5,0,0,26,1,0,873,4683.510000,174,2,18512.010320,2208.413584,hintandextended,nbiot,180 +on3,0,0,24,1,0,845,4321.989680,174,0,17395.010320,1763.902580,hintandextended,nbiot,180 +on1,0,0,23,1,0,180,4303.010320,174,0,5810.010320,1830.020836,hintandextended,nbiot,180 +on4,0,0,25,1,0,705,4502.989680,174,1,12707.010320,1958.132288,hintandextended,nbiot,180 +on7,0,0,25,1,0,565,4503.400000,174,2,12828.630960,2053.391832,hintandextended,nbiot,180 +on2,0,0,24,0,0,4320,4320.000000,174,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on8,0,0,27,1,0,916,4862.289680,174,3,18553.630960,2061.298996,hintandextended,nbiot,180 +on6,0,0,24,1,0,3828,4320.010320,174,0,76615.010320,1754.010836,hintandextended,nbiot,180 +on9,0,0,24,1,0,1524,4396.300000,174,1,31740.010320,2065.983416,hintandextended,nbiot,180 +on10,0,0,24,1,0,360,4322.030960,174,0,9464.010320,1970.885800,hintandextended,nbiot,180 +on12,0,0,25,1,0,621,4512.030960,174,3,12788.010320,2064.182300,hintandextended,nbiot,180 +on10,0,0,27,1,0,435,4863.341280,175,3,7963.030960,2277.746096,hintandextended,nbiot,180 +on12,0,0,24,1,0,149,4330.010320,175,0,2016.010320,1873.704336,hintandextended,nbiot,180 +on4,0,0,25,1,0,735,4503.000000,175,1,17844.651600,2060.776460,hintandextended,nbiot,180 +on9,0,0,29,1,0,696,5224.800000,175,5,17804.630960,2706.794544,hintandextended,nbiot,180 +on7,0,0,25,1,0,60,4501.062240,175,1,2056.630960,1845.360020,hintandextended,nbiot,180 +on1,0,0,26,1,0,846,4789.810000,175,4,18599.010320,2400.817084,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,175,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on5,0,0,25,1,0,368,4501.180000,175,1,7205.030960,1892.316584,hintandextended,nbiot,180 +on11,0,0,24,1,0,900,4321.000000,175,0,18686.010320,1845.400000,hintandextended,nbiot,180 +on3,0,0,25,1,0,671,4502.000000,175,1,13777.010320,2016.866500,hintandextended,nbiot,180 +on6,0,0,25,1,0,833,4501.000000,175,1,17763.010320,1916.366292,hintandextended,nbiot,180 +on2,0,0,26,1,0,240,4682.810000,175,2,7923.010320,2293.673792,hintandextended,nbiot,180 +on8,0,0,24,1,0,302,4322.041280,175,0,7165.010320,1827.609804,hintandextended,nbiot,180 +on3,0,0,26,1,0,1520,4684.289680,176,2,31333.630960,2135.049204,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4368.020640,176,0,-1.000000,2033.416204,hintandextended,nbiot,180 +on11,0,0,25,1,0,1260,4503.000000,176,1,28785.620640,2064.651708,hintandextended,nbiot,180 +on10,0,0,25,1,0,668,4503.959040,176,1,11982.010320,1997.526740,hintandextended,nbiot,180 +on7,0,0,26,1,0,1211,4681.620640,176,3,28647.010320,2145.661464,hintandextended,nbiot,180 +on8,0,0,25,1,0,947,4503.559040,176,2,24194.010320,2133.203324,hintandextended,nbiot,180 +on1,0,0,24,0,0,4320,4320.000000,176,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on5,0,0,24,1,0,900,4320.010320,176,0,20792.010320,1754.010836,hintandextended,nbiot,180 +on12,0,0,26,1,0,990,4682.310000,176,2,20620.010320,2166.073792,hintandextended,nbiot,180 +on4,0,0,24,1,0,360,4322.010320,176,0,10213.010320,1879.877544,hintandextended,nbiot,180 +on9,0,0,24,1,0,770,4322.000000,176,0,17814.010320,1863.219792,hintandextended,nbiot,180 +on6,0,0,24,1,0,1541,4323.000000,176,0,31292.010320,1901.716500,hintandextended,nbiot,180 +on2,0,0,26,1,0,591,4683.258720,176,3,17855.630960,2125.133404,hintandextended,nbiot,180 +on12,0,0,25,1,0,3240,4501.000000,177,1,67370.620640,1917.205000,hintandextended,nbiot,180 +on6,0,0,26,1,0,1347,4682.000000,177,2,26012.630960,2103.576416,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,177,0,-1.000000,2040.234780,hintandextended,nbiot,180 +on5,0,0,25,1,0,833,4501.240640,177,1,17508.010320,1916.462548,hintandextended,nbiot,180 +on9,0,0,25,1,0,1440,4504.000000,177,1,30772.020320,2125.306708,hintandextended,nbiot,180 +on11,0,0,25,1,0,720,4503.010320,177,1,17630.620640,2124.319128,hintandextended,nbiot,180 +on1,0,0,24,1,0,360,4323.040960,177,0,7993.010320,1997.289800,hintandextended,nbiot,180 +on4,0,0,27,1,0,900,4864.269680,177,4,17549.630960,2179.942496,hintandextended,nbiot,180 +on3,0,0,23,1,0,547,4254.989680,177,0,14426.010320,1978.519288,hintandextended,nbiot,180 +on10,0,0,26,1,0,873,4684.279360,177,2,18245.010320,2177.918244,hintandextended,nbiot,180 +on7,0,0,25,1,0,1436,4502.000000,177,1,25971.010320,2033.116292,hintandextended,nbiot,180 +on8,0,0,24,1,0,230,4322.000000,177,0,6532.010320,1812.670124,hintandextended,nbiot,180 +on2,0,0,24,1,0,97,4324.989680,177,0,163.010320,1964.002580,hintandextended,nbiot,180 +on4,0,0,25,1,0,741,4501.000000,178,1,14886.030960,1891.393084,hintandextended,nbiot,180 +on11,0,0,24,1,0,1747,4321.989680,178,0,36064.010320,1871.152580,hintandextended,nbiot,180 +on5,0,0,25,1,0,1373,4502.210000,178,1,28739.010320,2034.240500,hintandextended,nbiot,180 +on3,0,0,24,1,0,2558,4322.000000,178,0,52537.010320,1937.450000,hintandextended,nbiot,180 +on8,0,0,25,1,0,180,4502.610320,178,1,5268.620640,1942.952752,hintandextended,nbiot,180 +on10,0,0,25,1,0,686,4504.938400,178,1,13565.010320,2014.818484,hintandextended,nbiot,180 +on1,0,0,27,1,0,790,4863.480000,178,4,14926.051600,2294.929916,hintandextended,nbiot,180 +on12,0,0,24,1,0,863,4324.030960,178,0,14846.010320,1775.385800,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,178,0,-1.000000,2040.174408,hintandextended,nbiot,180 +on6,0,0,25,1,0,1234,4502.989680,178,1,24019.010320,1972.159080,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4321.010320,178,0,230.010320,1820.060836,hintandextended,nbiot,180 +on9,0,0,24,1,0,2115,4322.010320,178,0,39777.010320,1830.860836,hintandextended,nbiot,180 +on7,0,0,25,1,0,754,4503.289680,178,2,18318.010320,2108.960664,hintandextended,nbiot,180 +on12,0,0,28,1,0,993,5042.410000,179,5,23933.010320,2415.380460,hintandextended,nbiot,180 +on10,0,0,26,1,0,813,4685.889680,179,2,16525.030960,2343.882540,hintandextended,nbiot,180 +on8,0,0,30,1,0,890,5404.340960,179,6,23973.030960,2934.111260,hintandextended,nbiot,180 +on7,0,0,26,1,0,694,4681.600000,179,2,16485.010320,2092.976792,hintandextended,nbiot,180 +on4,0,0,26,1,0,513,4683.300000,179,3,13837.010320,2295.169584,hintandextended,nbiot,180 +on3,0,0,26,1,0,602,4682.300000,179,2,13877.030960,2167.063876,hintandextended,nbiot,180 +on11,0,0,24,1,0,3060,4321.000000,179,0,64791.010320,1845.400000,hintandextended,nbiot,180 +on5,0,0,25,1,0,180,4504.989680,179,1,6082.620640,2079.904412,hintandextended,nbiot,180 +on6,0,0,25,1,0,528,4504.010320,179,1,10497.010320,2267.017336,hintandextended,nbiot,180 +on2,0,0,26,1,0,717,4682.031280,179,2,13917.051600,1973.133928,hintandextended,nbiot,180 +on1,0,0,29,1,0,1038,5224.730320,179,6,25351.010320,2864.086796,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,179,0,-1.000000,2040.248196,hintandextended,nbiot,180 +on9,0,0,25,1,0,814,4503.289680,179,1,20266.010320,2053.659288,hintandextended,nbiot,180 +on11,0,0,25,1,0,1440,4502.620640,180,2,31946.620640,2059.956672,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4341.020640,180,0,-1.000000,2022.596080,hintandextended,nbiot,180 +on12,0,0,26,1,0,1066,4683.799680,180,3,25213.010320,2150.614456,hintandextended,nbiot,180 +on3,0,0,24,1,0,180,4321.000000,180,0,6573.010320,1818.366708,hintandextended,nbiot,180 +on5,0,0,24,0,0,4320,4320.000000,180,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on4,0,0,24,1,0,720,4321.369040,180,0,15242.010320,1756.771032,hintandextended,nbiot,180 +on7,0,0,24,1,0,636,4322.000000,180,0,13562.010320,1871.163416,hintandextended,nbiot,180 +on6,0,0,24,1,0,920,4322.020320,180,0,18760.010320,1812.938044,hintandextended,nbiot,180 +on8,0,0,24,1,0,2160,4321.010320,180,0,45881.010320,1770.667544,hintandextended,nbiot,180 +on1,0,0,25,1,0,293,4502.000000,180,1,8012.010320,1858.013208,hintandextended,nbiot,180 +on10,0,0,24,1,0,3975,4470.000000,180,1,79848.010320,1824.413208,hintandextended,nbiot,180 +on9,0,0,25,1,0,1234,4612.969040,180,2,25254.630960,1935.160616,hintandextended,nbiot,180 +on2,0,0,24,1,0,0,4322.020640,180,0,1863.010320,1984.278380,hintandextended,nbiot,180 +on11,0,0,25,1,0,1053,4519.200000,181,2,20489.030960,2026.073084,hintandextended,nbiot,180 +on9,0,0,24,1,0,586,4477.000000,181,1,13244.010320,1984.116500,hintandextended,nbiot,180 +on1,0,0,25,1,0,541,4508.000000,181,1,13392.610320,2297.090124,hintandextended,nbiot,180 +on10,0,0,25,1,0,137,4502.289680,181,2,7063.010320,2018.275664,hintandextended,nbiot,180 +on3,0,0,26,1,0,373,4684.000000,181,2,7104.630960,2192.971208,hintandextended,nbiot,180 +on8,0,0,24,1,0,979,4321.989680,181,0,20449.010320,1793.802580,hintandextended,nbiot,180 +on6,0,0,24,1,0,14,4323.020320,181,0,1188.010320,1987.271544,hintandextended,nbiot,180 +on5,0,0,25,1,0,3729,4501.010000,181,1,75599.010320,1917.410500,hintandextended,nbiot,180 +on2,0,0,27,1,0,386,4865.869040,181,3,9556.630960,2212.490740,hintandextended,nbiot,180 +on7,0,0,24,1,0,405,4322.000000,181,0,9515.010320,1931.216500,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4367.620640,181,0,-1.000000,2059.289744,hintandextended,nbiot,180 +on12,0,0,25,1,0,720,4504.041280,181,1,16505.010320,2160.956636,hintandextended,nbiot,180 +on4,0,0,25,1,0,720,4505.010320,181,2,16388.630640,2243.809128,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4321.010320,182,0,1464.010320,1866.730836,hintandextended,nbiot,180 +on2,0,0,29,1,0,769,5224.020000,182,6,21457.030960,2733.275544,hintandextended,nbiot,180 +on3,0,0,24,1,0,814,4323.000000,182,0,16513.010320,1924.843292,hintandextended,nbiot,180 +on6,0,0,24,1,0,292,4322.000000,182,0,6892.010320,1785.869792,hintandextended,nbiot,180 +on7,0,0,26,1,0,375,4681.600000,182,2,9943.030960,2170.969876,hintandextended,nbiot,180 +on11,0,0,25,1,0,474,4501.000000,182,1,9903.010320,1917.608000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,182,0,-1.000000,2040.134160,hintandextended,nbiot,180 +on8,0,0,24,1,0,574,4322.000000,182,0,11985.030960,1940.036584,hintandextended,nbiot,180 +on12,0,0,26,1,0,808,4682.600000,182,2,21417.010320,2311.782876,hintandextended,nbiot,180 +on1,0,0,27,1,0,691,4863.300000,182,3,12025.051600,2384.719584,hintandextended,nbiot,180 +on4,0,0,25,1,0,533,4669.300000,182,2,11945.010320,2185.121292,hintandextended,nbiot,180 +on5,0,0,26,1,0,297,4681.341280,182,2,6933.630960,1997.616428,hintandextended,nbiot,180 +on10,0,0,27,1,0,688,4860.810000,182,3,16554.041280,2158.395416,hintandextended,nbiot,180 +on10,0,0,24,1,0,419,4322.000000,183,0,9281.010320,1808.619792,hintandextended,nbiot,180 +on1,0,0,26,1,0,694,4682.041280,183,2,14260.030960,2080.172804,hintandextended,nbiot,180 +on12,0,0,26,1,0,1100,4682.000000,183,2,19921.051600,2106.163000,hintandextended,nbiot,180 +on8,0,0,24,1,0,863,4323.010320,183,0,16793.010320,1755.210836,hintandextended,nbiot,180 +on4,0,0,25,1,0,631,4502.000000,183,1,14220.010320,1944.716500,hintandextended,nbiot,180 +on3,0,0,24,1,0,920,4322.000000,183,0,19881.030960,1935.486584,hintandextended,nbiot,180 +on7,0,0,27,1,0,1051,4862.790000,183,4,24341.010320,2275.750252,hintandextended,nbiot,180 +on9,0,0,24,1,0,1022,4322.000000,183,0,19841.010320,1786.650000,hintandextended,nbiot,180 +on11,0,0,25,1,0,873,4502.000000,183,1,16833.030960,2007.103084,hintandextended,nbiot,180 +on6,0,0,25,1,0,221,4551.258720,183,3,9322.630960,2078.826696,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,183,0,-1.000000,2040.140868,hintandextended,nbiot,180 +on5,0,0,28,1,0,866,5042.710000,183,4,24382.630960,2547.268460,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4321.969360,183,0,5392.010320,1860.094244,hintandextended,nbiot,180 +on12,0,0,25,1,0,1799,4501.000000,184,1,35986.010320,1917.406500,hintandextended,nbiot,180 +on9,0,0,24,1,0,540,4322.010320,184,0,14439.010320,1947.724128,hintandextended,nbiot,180 +on8,0,0,25,1,0,1119,4504.010000,184,1,22123.030960,2095.937000,hintandextended,nbiot,180 +on7,0,0,25,1,0,1260,4500.061600,184,1,25317.020320,1826.044556,hintandextended,nbiot,180 +on6,0,0,26,1,0,1593,4683.210000,184,2,30853.030960,2171.626876,hintandextended,nbiot,180 +on2,0,0,26,1,0,1077,4683.000000,184,3,21661.651600,2040.673124,hintandextended,nbiot,180 +on5,0,0,25,1,0,1427,4502.000000,184,1,30813.010320,2032.466500,hintandextended,nbiot,180 +on10,0,0,24,1,0,1027,4321.000000,184,0,21581.010320,1762.200000,hintandextended,nbiot,180 +on4,0,0,25,1,0,770,4502.269360,184,1,15261.010320,1901.540952,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,184,0,-1.000000,2040.160992,hintandextended,nbiot,180 +on11,0,0,24,1,0,1800,4322.000000,184,0,38015.010320,1962.150000,hintandextended,nbiot,180 +on3,0,0,26,1,0,1054,4682.041280,184,2,21621.030960,2061.531012,hintandextended,nbiot,180 +on1,0,0,27,1,0,1027,4862.600000,184,4,22083.010320,2359.069876,hintandextended,nbiot,180 +on7,0,0,25,1,0,873,4500.969040,185,1,17953.030960,1826.400824,hintandextended,nbiot,180 +on2,0,0,28,1,0,1122,5044.110000,185,4,25035.630960,2536.011876,hintandextended,nbiot,180 +on9,0,0,25,1,0,1261,4501.000000,185,1,27698.610320,1916.360000,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,185,0,-1.000000,2040.187824,hintandextended,nbiot,180 +on4,0,0,24,1,0,117,4321.000000,185,0,1801.010320,1766.113208,hintandextended,nbiot,180 +on1,0,0,25,1,0,891,4605.500000,185,2,20782.010320,2216.794792,hintandextended,nbiot,180 +on10,0,0,25,1,0,25,4503.558720,185,2,1886.630960,1934.122028,hintandextended,nbiot,180 +on8,0,0,28,1,0,1147,5042.800000,185,5,27637.010320,2556.729668,hintandextended,nbiot,180 +on5,0,0,25,1,0,176,4505.641280,185,1,4954.010320,2174.979720,hintandextended,nbiot,180 +on3,0,0,25,1,0,6,4503.000000,185,2,1846.010320,2120.596584,hintandextended,nbiot,180 +on11,0,0,25,1,0,875,4501.989680,185,1,17913.010320,1917.159080,hintandextended,nbiot,180 +on12,0,0,24,1,0,540,4322.000000,185,0,13964.010320,1865.566708,hintandextended,nbiot,180 +on6,0,0,27,1,0,1075,4861.900000,185,3,24994.010320,2311.469876,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4321.000000,186,0,1979.010320,1767.666708,hintandextended,nbiot,180 +on10,0,0,26,1,0,822,4682.300000,186,2,19300.010320,2195.579584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,186,0,-1.000000,2040.140868,hintandextended,nbiot,180 +on4,0,0,27,1,0,577,4861.780000,186,3,13583.030960,2218.244584,hintandextended,nbiot,180 +on1,0,0,27,1,0,514,4863.848720,186,4,13664.051280,2391.816280,hintandextended,nbiot,180 +on12,0,0,26,1,0,154,4682.261280,186,2,4256.630960,2097.382428,hintandextended,nbiot,180 +on7,0,0,27,1,0,699,4863.600000,186,3,16949.010320,2366.177876,hintandextended,nbiot,180 +on3,0,0,29,1,0,747,5223.800000,186,5,19341.630960,2754.319460,hintandextended,nbiot,180 +on11,0,0,27,1,0,697,4862.521280,186,3,13623.430640,2213.835304,hintandextended,nbiot,180 +on6,0,0,24,1,0,498,4321.969680,186,0,10337.010320,1871.787872,hintandextended,nbiot,180 +on8,0,0,25,1,0,42,4502.300000,186,1,4215.010320,2108.044792,hintandextended,nbiot,180 +on2,0,0,26,1,0,482,4683.600000,186,2,13543.010320,2355.856792,hintandextended,nbiot,180 +on5,0,0,25,1,0,335,4501.480000,186,1,10377.030960,2007.935084,hintandextended,nbiot,180 +on9,0,0,24,1,0,0,4322.000000,187,0,2645.010320,1897.026708,hintandextended,nbiot,180 +on12,0,0,24,1,0,582,4321.989680,187,0,14080.010320,1817.852580,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4332.010320,187,0,-1.000000,2044.978536,hintandextended,nbiot,180 +on10,0,0,27,1,0,530,4862.889680,187,3,14120.030960,2333.842248,hintandextended,nbiot,180 +on3,0,0,26,1,0,291,4681.300000,187,3,9430.010320,2053.862876,hintandextended,nbiot,180 +on7,0,0,28,1,0,767,5042.710000,187,4,19546.010320,2580.035376,hintandextended,nbiot,180 +on6,0,0,27,1,0,775,4862.600000,187,3,15217.630960,2304.119708,hintandextended,nbiot,180 +on5,0,0,27,1,0,565,4864.090000,187,4,15176.010320,2425.595584,hintandextended,nbiot,180 +on11,0,0,26,1,0,410,4682.071600,187,2,6611.051600,2130.333264,hintandextended,nbiot,180 +on2,0,0,24,1,0,335,4335.010320,187,0,6531.010320,1760.010836,hintandextended,nbiot,180 +on4,0,0,24,1,0,1620,4322.000000,187,0,35406.010320,1962.150000,hintandextended,nbiot,180 +on1,0,0,25,1,0,371,4502.138720,187,1,6571.030960,1892.706780,hintandextended,nbiot,180 +on8,0,0,24,1,0,54,4321.010320,187,0,2493.010320,1870.104336,hintandextended,nbiot,180 +on6,0,0,26,1,0,629,4831.589680,188,3,18600.010320,2441.599080,hintandextended,nbiot,180 +on7,0,0,26,1,0,873,4685.240960,188,2,18640.030960,2221.736092,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4358.620640,188,0,-1.000000,2055.676328,hintandextended,nbiot,180 +on2,0,0,24,1,0,1706,4322.979360,188,0,32591.010320,1795.498452,hintandextended,nbiot,180 +on9,0,0,25,1,0,672,4501.000000,188,1,13662.010320,1924.615000,hintandextended,nbiot,180 +on10,0,0,24,1,0,360,4382.041280,188,1,9693.620640,1874.431512,hintandextended,nbiot,180 +on3,0,0,24,1,0,990,4339.310320,188,1,22630.010320,1889.000836,hintandextended,nbiot,180 +on8,0,0,24,1,0,2745,4321.020640,188,0,56087.010320,1870.771672,hintandextended,nbiot,180 +on11,0,0,26,1,0,588,4683.610320,188,2,14735.010320,2388.757212,hintandextended,nbiot,180 +on12,0,0,27,1,0,704,4863.641280,188,3,14776.630960,2406.703012,hintandextended,nbiot,180 +on5,0,0,26,1,0,1056,4683.610320,188,2,27998.010320,2338.071044,hintandextended,nbiot,180 +on1,0,0,24,1,0,3420,4322.000000,188,0,70888.010320,1962.150000,hintandextended,nbiot,180 +on4,0,0,24,1,0,499,4323.979360,188,0,9515.010320,1906.261744,hintandextended,nbiot,180 +on1,0,0,25,1,0,197,4503.300000,189,2,8215.010320,2254.876584,hintandextended,nbiot,180 +on6,0,0,24,1,0,2340,4321.000000,189,0,49055.010320,1845.400000,hintandextended,nbiot,180 +on3,0,0,24,1,0,1546,4321.000000,189,0,30408.010320,1776.500000,hintandextended,nbiot,180 +on4,0,0,25,1,0,527,4504.979360,189,1,13198.010320,2110.111660,hintandextended,nbiot,180 +on2,0,0,26,1,0,1000,4682.490000,189,2,23935.010320,2197.345792,hintandextended,nbiot,180 +on5,0,0,26,1,0,753,4683.600000,189,2,18173.010320,2377.579792,hintandextended,nbiot,180 +on12,0,0,27,1,0,797,4863.620640,189,4,18213.030960,2411.425924,hintandextended,nbiot,180 +on11,0,0,25,1,0,180,4504.379680,189,1,4205.620640,2092.796912,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,189,0,-1.000000,2040.181116,hintandextended,nbiot,180 +on10,0,0,24,1,0,0,4321.000000,189,0,1728.010320,1754.413416,hintandextended,nbiot,180 +on9,0,0,26,1,0,858,4680.041280,189,2,16655.051600,1921.839428,hintandextended,nbiot,180 +on7,0,0,26,1,0,708,4683.600000,189,3,16575.010320,2272.150000,hintandextended,nbiot,180 +on8,0,0,25,1,0,873,4501.000000,189,1,16615.030960,1891.386584,hintandextended,nbiot,180 +on5,0,0,25,1,0,1002,4507.748080,190,2,23420.030960,2041.922440,hintandextended,nbiot,180 +on0,1,11,24,0,0,0,4320.000000,190,0,-1.000000,2014.261612,hintandextended,nbiot,180 +on9,0,0,24,1,0,180,4321.010320,190,0,4018.010320,1754.430752,hintandextended,nbiot,180 +on11,0,0,25,1,0,908,4513.569040,190,4,23380.010320,2307.624116,hintandextended,nbiot,180 +on8,0,0,26,1,0,910,4682.300000,190,2,19625.010320,2185.563084,hintandextended,nbiot,180 +on1,0,0,28,1,0,1070,5043.469360,190,4,28386.010320,2664.780620,hintandextended,nbiot,180 +on4,0,0,24,0,0,4320,4320.000000,190,0,-1.000000,1728.000000,hintandextended,nbiot,180 +on10,0,0,26,1,0,1417,4683.300000,190,3,30363.010320,2294.519792,hintandextended,nbiot,180 +on7,0,0,24,1,0,395,4324.020320,190,0,8251.010320,2043.188252,hintandextended,nbiot,180 +on12,0,0,24,1,0,180,4323.948400,190,0,4085.010320,1869.979360,hintandextended,nbiot,180 +on2,0,0,27,1,0,288,4867.210000,190,5,15627.010320,2746.910500,hintandextended,nbiot,180 +on3,0,0,27,1,0,707,4864.589680,190,3,15668.041280,2445.472412,hintandextended,nbiot,180 +on6,0,0,24,1,0,1868,4321.000000,190,0,39329.010320,1801.200000,hintandextended,nbiot,180 +on5,0,0,26,1,0,1153,4683.610320,191,2,27828.010320,2295.267712,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4324.990000,191,0,4432.010320,2091.039332,hintandextended,nbiot,180 +on7,0,0,24,1,0,1447,4414.499680,191,1,33952.010320,1984.219788,hintandextended,nbiot,180 +on1,0,0,24,1,0,764,4497.289680,191,2,20901.010320,1956.469164,hintandextended,nbiot,180 +on3,0,0,24,1,0,360,4321.000000,191,0,8765.010320,1754.413416,hintandextended,nbiot,180 +on12,0,0,24,1,0,480,4324.010640,191,0,8686.010320,1955.187588,hintandextended,nbiot,180 +on6,0,0,26,1,0,333,4681.620640,191,4,10888.010320,2190.758256,hintandextended,nbiot,180 +on10,0,0,25,1,0,3466,4502.210000,191,1,71809.010320,2034.240500,hintandextended,nbiot,180 +on11,0,0,24,1,0,159,4343.010320,191,0,769.010320,2127.464128,hintandextended,nbiot,180 +on9,0,0,27,1,0,916,4862.910320,191,4,21991.010320,2423.173712,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,191,0,-1.000000,2040.254904,hintandextended,nbiot,180 +on4,0,0,24,1,0,877,4339.010320,191,0,18031.010320,1877.974252,hintandextended,nbiot,180 +on8,0,0,26,1,0,1054,4682.291920,191,2,22032.630960,2023.301392,hintandextended,nbiot,180 +on3,0,0,26,1,0,913,4683.000000,192,2,16203.030960,2126.692876,hintandextended,nbiot,180 +on12,0,0,26,1,0,1289,4691.200320,192,2,25361.010320,1974.636628,hintandextended,nbiot,180 +on4,0,0,25,1,0,1373,4502.000000,192,1,28821.010320,2034.150000,hintandextended,nbiot,180 +on6,0,0,24,1,0,0,4390.979360,192,1,462.620640,1872.163452,hintandextended,nbiot,180 +on2,0,0,25,1,0,540,4502.620640,192,1,11452.620640,2006.896548,hintandextended,nbiot,180 +on5,0,0,25,1,0,728,4503.000000,192,1,16243.051600,2119.659752,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4352.630960,192,0,-1.000000,2053.206668,hintandextended,nbiot,180 +on10,0,0,24,1,0,1192,4322.000000,192,0,25210.010320,1888.309792,hintandextended,nbiot,180 +on1,0,0,24,1,0,121,4373.169360,192,1,6328.010320,1953.634244,hintandextended,nbiot,180 +on8,0,0,24,1,0,1076,4357.010320,192,0,19702.010320,1884.120836,hintandextended,nbiot,180 +on11,0,0,26,1,0,914,4681.713520,192,3,16283.672240,2041.933656,hintandextended,nbiot,180 +on9,0,0,25,1,0,1222,4607.300000,192,2,25251.630960,1906.763208,hintandextended,nbiot,180 +on7,0,0,25,1,0,889,4501.180000,192,1,16163.010320,1916.828500,hintandextended,nbiot,180 +on1,0,0,27,1,0,966,4881.500000,193,4,27519.010320,2577.236376,hintandextended,nbiot,180 +on9,0,0,25,1,0,654,4502.000000,193,1,13640.010320,2021.618000,hintandextended,nbiot,180 +on12,0,0,24,1,0,180,4322.010320,193,0,4256.010320,1823.300712,hintandextended,nbiot,180 +on11,0,0,26,1,0,694,4683.300000,193,2,17170.010320,2311.673084,hintandextended,nbiot,180 +on3,0,0,28,1,0,1112,5042.790000,193,5,21814.630960,2353.822084,hintandextended,nbiot,180 +on7,0,0,24,1,0,1261,4321.000000,193,0,27638.010320,1845.400000,hintandextended,nbiot,180 +on5,0,0,26,1,0,1069,4681.510000,193,2,21773.010320,2078.913584,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4343.010320,193,0,-1.000000,2049.358412,hintandextended,nbiot,180 +on4,0,0,26,1,0,614,4683.248400,193,3,13720.651600,2240.706192,hintandextended,nbiot,180 +on10,0,0,26,1,0,693,4683.221280,193,2,13680.030960,2171.644388,hintandextended,nbiot,180 +on2,0,0,24,1,0,360,4321.010320,193,0,9252.010320,1819.020836,hintandextended,nbiot,180 +on8,0,0,24,1,0,360,4320.010320,193,0,9372.010320,1754.010836,hintandextended,nbiot,180 +on6,0,0,25,1,0,989,4501.300000,193,1,21221.010320,1941.700000,hintandextended,nbiot,180 +on7,0,0,25,1,0,900,4504.610320,194,1,20964.651600,2037.164252,hintandextended,nbiot,180 +on9,0,0,24,1,0,720,4321.000000,194,0,15562.010320,1784.176708,hintandextended,nbiot,180 +on10,0,0,26,1,0,876,4683.510000,194,2,20903.630960,2273.211876,hintandextended,nbiot,180 +on1,0,0,25,1,0,837,4501.300000,194,1,20862.010320,2029.313292,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4351.620640,194,0,-1.000000,2052.809248,hintandextended,nbiot,180 +on6,0,0,25,1,0,1733,4501.000000,194,1,33255.010320,1917.406500,hintandextended,nbiot,180 +on12,0,0,26,1,0,1100,4681.600000,194,3,23408.010320,2149.149792,hintandextended,nbiot,180 +on4,0,0,24,1,0,236,4321.000000,194,0,7158.010320,1809.656708,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4501.610320,194,1,7329.620640,1826.859252,hintandextended,nbiot,180 +on8,0,0,25,1,0,692,4501.300000,194,1,15450.010320,1935.713292,hintandextended,nbiot,180 +on11,0,0,25,1,0,709,4532.630960,194,1,13408.630960,2050.322300,hintandextended,nbiot,180 +on3,0,0,24,1,0,1361,4322.000000,194,0,26162.010320,1880.906708,hintandextended,nbiot,180 +on2,0,0,23,1,0,661,4199.000000,194,0,13367.010320,1716.909792,hintandextended,nbiot,180 +on6,0,0,25,1,0,1166,4502.199680,195,1,24761.030960,1892.478080,hintandextended,nbiot,180 +on8,0,0,26,1,0,1283,4684.886800,195,3,24842.051280,2132.688052,hintandextended,nbiot,180 +on11,0,0,27,1,0,1497,4862.910320,195,4,33024.010320,2474.250712,hintandextended,nbiot,180 +on2,0,0,26,1,0,1246,4681.600000,195,2,27690.010320,2184.893292,hintandextended,nbiot,180 +on5,0,0,24,1,0,9,4321.989680,195,0,1466.010320,1836.052580,hintandextended,nbiot,180 +on10,0,0,24,1,0,2706,4344.190000,195,1,54646.010320,1854.682500,hintandextended,nbiot,180 +on1,0,0,25,1,0,1072,4501.300000,195,2,24721.010320,1996.365000,hintandextended,nbiot,180 +on9,0,0,26,1,0,1348,4824.789360,195,3,30476.010320,2308.215536,hintandextended,nbiot,180 +on3,0,0,25,1,0,180,4503.610320,195,1,7202.620640,1998.739252,hintandextended,nbiot,180 +on4,0,0,26,1,0,587,4683.561280,195,2,15080.010320,2293.987928,hintandextended,nbiot,180 +on12,0,0,25,1,0,711,4503.300000,195,2,19687.010320,2102.926708,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,195,0,-1.000000,2040.201240,hintandextended,nbiot,180 +on7,0,0,26,1,0,1041,4685.589680,195,2,24801.430640,2264.339248,hintandextended,nbiot,180 +on11,0,0,25,1,0,668,4682.999680,196,2,17986.451280,2353.940496,hintandextended,nbiot,180 +on6,0,0,26,1,0,898,4683.010000,196,2,17946.430640,2143.967168,hintandextended,nbiot,180 +on2,0,0,27,1,0,962,4862.940000,196,3,25086.010320,2401.488584,hintandextended,nbiot,180 +on4,0,0,25,1,0,496,4501.190000,196,1,10599.010320,1871.339208,hintandextended,nbiot,180 +on8,0,0,25,1,0,900,4501.000000,196,1,17866.010320,1916.360000,hintandextended,nbiot,180 +on12,0,0,25,1,0,1440,4501.620640,196,1,30427.620640,1943.206672,hintandextended,nbiot,180 +on5,0,0,25,1,0,360,4505.000000,196,1,10667.020320,2140.293332,hintandextended,nbiot,180 +on9,0,0,25,1,0,806,4501.210000,196,1,17906.030960,1892.075500,hintandextended,nbiot,180 +on1,0,0,24,1,0,113,4321.000000,196,0,1785.010320,1869.716708,hintandextended,nbiot,180 +on10,0,0,28,1,0,1139,5043.500000,196,6,28119.010320,2695.914668,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4350.620640,196,0,-1.000000,2052.442788,hintandextended,nbiot,180 +on3,0,0,26,1,0,680,4682.900000,196,2,20601.010320,2329.843292,hintandextended,nbiot,180 +on7,0,0,25,1,0,355,4504.231280,196,1,6245.010320,2045.742552,hintandextended,nbiot,180 +on3,0,0,30,1,0,1528,5405.310000,197,9,36244.010320,3010.418460,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,197,0,-1.000000,2040.201240,hintandextended,nbiot,180 +on5,0,0,27,1,0,848,4862.127440,197,4,21311.630960,2179.072392,hintandextended,nbiot,180 +on7,0,0,24,1,0,1240,4340.010320,197,0,22306.010320,1762.010836,hintandextended,nbiot,180 +on4,0,0,24,1,0,1289,4457.190000,197,1,25641.010320,1871.945708,hintandextended,nbiot,180 +on2,0,0,24,1,0,180,4321.010320,197,0,4529.010320,1818.767544,hintandextended,nbiot,180 +on10,0,0,24,1,0,858,4322.959040,197,0,16163.010320,1871.553532,hintandextended,nbiot,180 +on11,0,0,24,1,0,594,4322.020640,197,1,11201.010320,1912.128172,hintandextended,nbiot,180 +on6,0,0,24,1,0,413,4320.979360,197,0,8590.010320,1797.565160,hintandextended,nbiot,180 +on1,0,0,24,1,0,900,4333.989680,197,1,21371.620640,2056.054164,hintandextended,nbiot,180 +on12,0,0,25,1,0,1769,4501.179360,197,1,34828.010320,1826.491452,hintandextended,nbiot,180 +on8,0,0,25,1,0,1619,4501.210000,197,1,30783.010320,1912.933792,hintandextended,nbiot,180 +on9,0,0,24,1,0,920,4323.000000,197,0,21270.010320,2049.499668,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4393.692880,198,0,-1.000000,2069.691808,hintandextended,nbiot,180 +on12,0,0,23,1,0,0,4269.989680,198,0,2867.010320,1916.392788,hintandextended,nbiot,180 +on5,0,0,25,1,0,484,4502.269360,198,2,11071.010320,1966.014036,hintandextended,nbiot,180 +on11,0,0,25,1,0,180,4502.672240,198,1,6717.672240,1929.112188,hintandextended,nbiot,180 +on4,0,0,27,1,0,706,4865.410000,198,4,21261.010320,2775.115292,hintandextended,nbiot,180 +on2,0,0,26,1,0,189,4682.300000,198,2,6583.030960,2137.209376,hintandextended,nbiot,180 +on7,0,0,24,1,0,2800,4321.000000,198,0,55063.010320,1780.400000,hintandextended,nbiot,180 +on10,0,0,25,1,0,307,4502.300000,198,1,6543.010320,2059.490000,hintandextended,nbiot,180 +on3,0,0,26,1,0,334,4682.341280,198,2,9544.010320,2195.589804,hintandextended,nbiot,180 +on1,0,0,25,1,0,730,4503.310320,198,1,17563.010320,2155.587544,hintandextended,nbiot,180 +on8,0,0,26,1,0,912,4682.020640,198,2,17603.030960,2080.164548,hintandextended,nbiot,180 +on6,0,0,24,1,0,900,4322.989680,198,0,21409.010320,1871.565996,hintandextended,nbiot,180 +on9,0,0,25,1,0,257,4554.248400,198,3,6623.651600,2015.015860,hintandextended,nbiot,180 +on11,0,0,26,1,0,1101,4683.000000,199,2,20857.030960,2169.846168,hintandextended,nbiot,180 +on3,0,0,25,1,0,533,4502.210000,199,1,12365.010320,2011.093792,hintandextended,nbiot,180 +on5,0,0,26,1,0,930,4756.741280,199,4,20897.651600,2186.721136,hintandextended,nbiot,180 +on9,0,0,25,1,0,561,4501.113200,199,1,12479.071920,1941.768696,hintandextended,nbiot,180 +on8,0,0,24,1,0,305,4320.030640,199,0,4889.010320,1754.025464,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4320.000000,199,0,-1.000000,2040.167700,hintandextended,nbiot,180 +on4,0,0,25,1,0,1252,4501.000000,199,1,25016.010320,1916.756500,hintandextended,nbiot,180 +on10,0,0,25,1,0,1061,4502.000000,199,1,20817.010320,2032.466500,hintandextended,nbiot,180 +on12,0,0,25,1,0,540,4502.000000,199,1,12439.051280,2008.109960,hintandextended,nbiot,180 +on6,0,0,25,1,0,312,4502.310320,199,2,9508.010320,2088.744128,hintandextended,nbiot,180 +on1,0,0,26,1,0,1344,4681.569360,199,2,27511.010320,2050.090744,hintandextended,nbiot,180 +on2,0,0,24,1,0,783,4321.000000,199,0,17330.010320,1803.800000,hintandextended,nbiot,180 +on7,0,0,30,1,0,1173,5405.310000,199,9,29618.010320,3117.070252,hintandextended,nbiot,180 +on3,0,0,24,1,0,360,4321.000000,200,0,7709.010320,1829.806708,hintandextended,nbiot,180 +on10,0,0,25,1,0,0,4507.620640,200,1,2638.620640,2313.766672,hintandextended,nbiot,180 +on11,0,0,24,1,0,278,4324.641280,200,0,6749.010320,1949.569928,hintandextended,nbiot,180 +on1,0,0,24,1,0,1980,4321.010320,200,0,42285.010320,1870.760836,hintandextended,nbiot,180 +on12,0,0,25,1,0,206,4504.000000,200,1,6829.051600,2193.529876,hintandextended,nbiot,180 +on0,1,12,24,0,0,0,4322.010320,200,0,-1.000000,2041.018784,hintandextended,nbiot,180 +on5,0,0,25,1,0,657,4502.300000,200,1,12961.010320,1948.209792,hintandextended,nbiot,180 +on8,0,0,25,1,0,1620,4502.000000,200,1,35670.620640,1964.411708,hintandextended,nbiot,180 +on2,0,0,26,1,0,359,4683.682240,200,3,6869.672240,2169.516228,hintandextended,nbiot,180 +on7,0,0,25,1,0,228,4503.000000,200,1,6789.030960,2072.249792,hintandextended,nbiot,180 +on9,0,0,24,1,0,1089,4320.010320,200,0,23145.010320,1754.010836,hintandextended,nbiot,180 +on6,0,0,24,1,0,1076,4356.010320,200,0,20732.010320,1768.410836,hintandextended,nbiot,180 +on4,0,0,25,1,0,693,4618.999680,200,2,13002.630960,2181.719788,hintandextended,nbiot,180 diff --git a/results/results_.csv b/results/results_.csv deleted file mode 100644 index 1e98970..0000000 --- a/results/results_.csv +++ /dev/null @@ -1,13 +0,0 @@ -node,isSender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,seed,hint_added,energy,simkey,wireless,wakeupfor -on6,0,0,24,0,0,1428,1440.000000,1,0,584.450000,hint,nbiot,60 -on9,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on11,0,0,24,0,0,1420,1440.000000,1,0,589.650000,hint,nbiot,60 -on8,0,0,24,1,0,439,1441.989680,1,0,606.052580,hint,nbiot,60 -on2,0,0,24,1,0,483,1440.010320,1,0,602.010836,hint,nbiot,60 -on10,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on5,0,0,24,0,0,1431,1440.000000,1,0,582.500000,hint,nbiot,60 -on3,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on4,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on1,0,0,24,0,0,1440,1440.000000,1,0,576.000000,hint,nbiot,60 -on7,0,0,24,1,0,282,1494.979360,1,1,636.160160,hint,nbiot,60 -on0,1,3,24,0,0,0,1440.000000,1,0,840.550000,hint,nbiot,60 diff --git a/results/scheduler/a.png b/results/scheduler/a.png new file mode 100644 index 0000000..c357bce Binary files /dev/null and b/results/scheduler/a.png differ diff --git a/results/scheduler/analysis.sh b/results/scheduler/analysis.sh new file mode 100755 index 0000000..b8178ce --- /dev/null +++ b/results/scheduler/analysis.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +wai=$(dirname $(readlink -f "$0")) # Current script directory + +log=$1 +out=$2 + +# Generate csv +cat $log | $wai/data.awk > $wai/data.csv +cat $log | $wai/hint.awk > $wai/hint.csv +cat $log | $wai/hint_fw.awk > $wai/hint_fw.csv + +Rscript $wai/wakeup.R +mv $wai/schedule.png $out \ No newline at end of file diff --git a/results/scheduler/data.awk b/results/scheduler/data.awk new file mode 100755 index 0000000..6049301 --- /dev/null +++ b/results/scheduler/data.awk @@ -0,0 +1,15 @@ +#!/usr/bin/awk -f + +BEGIN { + RS="\n" + FS=" " + CSV_HEADER="node,ts" + CSV_DATA="" + skip=1 + print(CSV_HEADER) +} + +/received data success/ { + gsub("]","",$0) + print($4","$2) +} diff --git a/results/scheduler/data.csv b/results/scheduler/data.csv new file mode 100644 index 0000000..fa2d3b4 --- /dev/null +++ b/results/scheduler/data.csv @@ -0,0 +1,13 @@ +node,ts +on10,2638.620640 +on11,6749.010320 +on7,6789.030960 +on12,6829.051600 +on2,6869.672240 +on3,7709.010320 +on5,12961.010320 +on4,13002.630960 +on6,20732.010320 +on9,23145.010320 +on8,35670.620640 +on1,42285.010320 diff --git a/results/scheduler/hint.awk b/results/scheduler/hint.awk new file mode 100755 index 0000000..2f996fc --- /dev/null +++ b/results/scheduler/hint.awk @@ -0,0 +1,15 @@ +#!/usr/bin/awk -f + +BEGIN { + RS="\n" + FS=" " + CSV_HEADER="node,wakets,duration,rcvat" + CSV_DATA="" + skip=1 + print(CSV_HEADER) +} + +/add a new hint/ { + gsub("]","",$0) + print($4","$10","$15","$2) +} diff --git a/results/scheduler/hint.csv b/results/scheduler/hint.csv new file mode 100644 index 0000000..733daa2 --- /dev/null +++ b/results/scheduler/hint.csv @@ -0,0 +1,11 @@ +node,wakets,duration,rcvat +on10,6709.000000,180.000000,2598.010320 +on2,6709.000000,180.000000,3632.010000 +on7,7556.000000,180.000000,6749.020320 +on2,7556.000000,180.000000,6749.020640 +on12,7556.000000,180.000000,6789.030960 +on2,7556.000000,180.000000,6829.061920 +on5,12921.000000,180.000000,11912.010000 +on4,12921.000000,180.000000,12029.810000 +on4,15336.000000,180.000000,12961.020320 +on8,38215.000000,180.000000,35630.010320 diff --git a/results/scheduler/hint_fw.awk b/results/scheduler/hint_fw.awk new file mode 100755 index 0000000..594df94 --- /dev/null +++ b/results/scheduler/hint_fw.awk @@ -0,0 +1,15 @@ +#!/usr/bin/awk -f + +BEGIN { + RS="\n" + FS=" " + CSV_HEADER="node,ts" + CSV_DATA="" + skip=1 + print(CSV_HEADER) +} + +/forward a hint successfully/ { + gsub("]","",$0) + print($4","$2) +} diff --git a/results/scheduler/hint_fw.csv b/results/scheduler/hint_fw.csv new file mode 100644 index 0000000..32e5a49 --- /dev/null +++ b/results/scheduler/hint_fw.csv @@ -0,0 +1,7 @@ +node,ts +on10,3632.010000 +on11,6749.020320 +on2,6789.030960 +on2,11912.010000 +on2,12029.810000 +on5,12961.020320 diff --git a/results/scheduler/j b/results/scheduler/j new file mode 100644 index 0000000..97de903 --- /dev/null +++ b/results/scheduler/j @@ -0,0 +1,54358 @@ +export LD_LIBRARY_PATH=:./libs/simgrid/build/lib && ./simulator 10 --cfg=network/bandwidth-factor:1.05 --cfg=network/model:CM02 -–cfg=network/crosstraffic:0 +[0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/bandwidth-factor' to '1.05' +[0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'CM02' +[0.000000] [simulator/INFO] ------------------------------------------------- +[0.000000] [simulator/INFO] Sarting loosely coupled data dissemination experiments +[0.000000] [simulator/INFO] ------------------------------------------------- +[on0:ON:(1) 0.000000] [simulator/INFO] Deploying observation node on0 +[on0:ON:(1) 0.000000] [simulator/INFO] on0 is sleeping +[on1:ON:(2) 0.000000] [simulator/INFO] Deploying observation node on1 +[on1:ON:(2) 0.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 0.000000] [simulator/INFO] Deploying observation node on2 +[on2:ON:(3) 0.000000] [simulator/INFO] on2 is sleeping +[on3:ON:(4) 0.000000] [simulator/INFO] Deploying observation node on3 +[on3:ON:(4) 0.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 0.000000] [simulator/INFO] Deploying observation node on4 +[on4:ON:(5) 0.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 0.000000] [simulator/INFO] Deploying observation node on5 +[on5:ON:(6) 0.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 0.000000] [simulator/INFO] Deploying observation node on6 +[on6:ON:(7) 0.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 0.000000] [simulator/INFO] Deploying observation node on7 +[on7:ON:(8) 0.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 0.000000] [simulator/INFO] Deploying observation node on8 +[on8:ON:(9) 0.000000] [simulator/INFO] on8 is sleeping +[on9:ON:(10) 0.000000] [simulator/INFO] Deploying observation node on9 +[on9:ON:(10) 0.000000] [simulator/INFO] on9 is sleeping +[on10:ON:(11) 0.000000] [simulator/INFO] Deploying observation node on10 +[on10:ON:(11) 0.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 0.000000] [simulator/INFO] Deploying observation node on11 +[on11:ON:(12) 0.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 0.000000] [simulator/INFO] Deploying observation node on12 +[on12:ON:(13) 0.000000] [simulator/INFO] on12 is sleeping +[on7:ON:(8) 129.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 130.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 131.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 132.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 133.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 134.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 135.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 136.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 137.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 138.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 139.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 140.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 141.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 142.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 143.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 144.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 145.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 146.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 147.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 148.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 149.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 150.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 151.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 152.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 153.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 154.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 155.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 156.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 157.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 158.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 159.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 160.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 161.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 162.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 163.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 164.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 165.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 166.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 167.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 168.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 169.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 170.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 171.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 172.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 173.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 174.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 175.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 176.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 177.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 178.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 179.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 180.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 181.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 182.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 183.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 184.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 185.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 186.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 187.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 188.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 189.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 190.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 191.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 192.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 193.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 194.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 195.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 196.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 197.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 198.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 199.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 200.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 201.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 202.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 203.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 204.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 205.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 206.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 207.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 208.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 209.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 210.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 211.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 212.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 213.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 214.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 215.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 216.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 217.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 218.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 219.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 220.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 221.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 222.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 223.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 224.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 225.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 226.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 227.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 228.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 229.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 230.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 231.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 232.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 233.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 234.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 235.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 236.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 237.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 238.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 239.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 240.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 241.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 242.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 243.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 244.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 245.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 246.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 247.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 248.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 249.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 250.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 251.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 252.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 253.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 254.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 255.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 256.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 257.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 258.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 259.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 260.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 261.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 262.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 263.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 264.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 265.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 266.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 267.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 268.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 269.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 270.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 271.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 272.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 273.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 274.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 275.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 276.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 277.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 278.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 279.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 280.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 281.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 282.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 283.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 284.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 285.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 286.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 287.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 288.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 289.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 290.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 291.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 292.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 293.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 294.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 295.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 296.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 297.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 298.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 299.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 300.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 301.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 302.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 303.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 304.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 305.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 306.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 307.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 308.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 309.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 309.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 863.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 864.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 865.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 866.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 867.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 868.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 869.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 870.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 871.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 872.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 873.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 874.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 875.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 876.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 877.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 878.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 879.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 880.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 881.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 882.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 883.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 884.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 885.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 886.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 887.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 888.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 889.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 890.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 891.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 892.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 893.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 894.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 895.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 896.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 897.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 898.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 899.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 900.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 901.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 902.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 903.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 904.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 905.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 906.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 907.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 908.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 909.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 910.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 911.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 912.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 913.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 914.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 915.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 916.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 917.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 918.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 919.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 920.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 921.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 922.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 923.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 924.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 925.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 926.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 927.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 928.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 929.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 930.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 931.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 932.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 933.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 934.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 935.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 936.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 937.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 938.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 939.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 940.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 941.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 942.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 943.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 944.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 945.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 946.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 947.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 948.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 949.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 950.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 951.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 952.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 953.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 954.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 955.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 956.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 957.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 958.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 959.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 960.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 961.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 962.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 963.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 964.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 965.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 966.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 967.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 968.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 969.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 970.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 971.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 972.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 973.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 974.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 975.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 976.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 977.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 978.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 979.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 980.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 981.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 982.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 983.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 984.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 985.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 986.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 987.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 988.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 989.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 990.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 991.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 992.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 993.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 994.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 995.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 996.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 997.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 998.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 999.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1000.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1001.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1002.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1003.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1004.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1005.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1006.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1007.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1008.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1009.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1010.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1011.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1012.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1013.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1014.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1015.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1016.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1017.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1018.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1019.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1020.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1021.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1022.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1023.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1024.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1025.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1026.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1027.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1028.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1029.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1030.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1031.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1032.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1033.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1034.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1035.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1036.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1037.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1038.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1039.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1040.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1041.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1042.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1043.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1043.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 1158.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 1159.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1160.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1161.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1162.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1163.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1164.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1165.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1166.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1167.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1168.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1169.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1170.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1171.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1172.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1173.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1174.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1175.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1176.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1177.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1178.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1179.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1180.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1181.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1182.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1183.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1184.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1185.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1186.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1187.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1188.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1189.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1190.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1191.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1192.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1193.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1194.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1195.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1196.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1197.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1198.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1199.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1200.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1201.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1202.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1203.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1204.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1205.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1206.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1207.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1208.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1209.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1210.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1211.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1212.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1213.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1214.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1215.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1216.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1217.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1218.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1219.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1220.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1221.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1222.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1223.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1224.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1225.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1226.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1227.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1228.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1229.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1230.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1231.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1232.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1233.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1234.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1235.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1236.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1237.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1238.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1239.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1240.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1241.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1242.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1243.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1244.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1245.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1246.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1247.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1248.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1249.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1250.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1251.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1252.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1253.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1254.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1255.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1256.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1257.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1258.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1259.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1260.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1261.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1262.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1263.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1264.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1265.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1266.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1267.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1268.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1269.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1270.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1271.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1272.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1273.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1274.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1275.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1276.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1277.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1278.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1279.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1280.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1281.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1282.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1283.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1284.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1285.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1286.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1287.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1288.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1289.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1290.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1291.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1292.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1293.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1294.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1295.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1296.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1297.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1298.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1299.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1300.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1301.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1302.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1303.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1304.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1305.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1306.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1307.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1308.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1309.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1310.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1311.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1312.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1313.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1314.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1315.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1316.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1317.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1318.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1319.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1320.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1321.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1322.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1323.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1324.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1325.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1326.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1327.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1328.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1329.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1330.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1331.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1332.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1333.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1334.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1335.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1336.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1337.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1338.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1338.000000] [simulator/INFO] on11 is sleeping +[on1:ON:(2) 1388.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 1389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1440.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1441.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1442.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1443.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1444.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1445.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1446.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1447.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1448.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1449.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1450.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1451.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1452.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1453.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1454.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1455.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1456.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1457.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1458.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1459.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1460.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1461.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1462.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1463.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1464.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1465.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1466.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1467.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1468.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1469.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1470.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1471.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1472.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1473.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1474.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1475.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1476.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1477.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1478.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1479.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1480.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1481.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1482.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1483.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1484.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1485.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1486.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1487.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1488.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1489.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1490.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1491.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1492.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1493.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1494.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1495.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1496.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1497.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1498.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1499.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1500.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1501.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1502.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1503.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1504.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1505.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1506.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1507.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1508.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1509.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1510.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1511.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1512.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1513.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1514.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1515.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1516.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1517.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1518.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1519.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1520.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1521.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1522.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1523.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1524.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1525.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1526.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1527.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1528.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1529.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1530.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1531.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1532.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1533.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1534.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1535.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1536.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1537.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1538.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1539.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1540.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1541.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1542.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1543.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1544.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1545.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1546.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1547.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1548.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1549.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1550.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1551.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1552.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1553.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1554.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1555.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1556.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1557.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1558.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1559.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1560.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1561.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1562.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1563.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1564.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1565.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1566.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1567.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1568.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1568.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 1613.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 1614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1629.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1630.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1631.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1632.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1633.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1634.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1635.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1636.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1637.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1638.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1639.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1640.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1641.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1692.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1693.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1694.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1695.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1696.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1697.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1698.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1699.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1700.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1701.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1702.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1703.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1704.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1705.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1706.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1707.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1708.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1709.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1710.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1711.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1712.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1713.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1714.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1715.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1716.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1717.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1718.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1719.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1720.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1721.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1722.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1723.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1724.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1725.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1726.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1727.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1728.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1730.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1732.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1793.000000] [simulator/INFO] on6 is sleeping +[on4:ON:(5) 1866.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 1867.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1868.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1869.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1870.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1871.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1872.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1873.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1874.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1875.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1876.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1877.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1878.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1879.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1880.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1881.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1882.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1883.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1884.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1885.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1886.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1887.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1888.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1889.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1890.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1891.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1892.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1893.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1894.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1895.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1896.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1897.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1898.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1899.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1900.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1901.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1902.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1903.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1904.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1905.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1906.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1907.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1908.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1909.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1910.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1911.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1912.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1913.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1914.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1915.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1916.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1917.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1918.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1919.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1920.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1921.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1922.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1923.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1924.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1925.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1926.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1927.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1928.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1929.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1930.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1931.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1932.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1933.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1934.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1934.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 1935.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1935.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1936.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1936.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1937.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1937.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1938.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1938.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1939.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1939.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1940.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1940.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1941.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1941.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1942.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1942.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1943.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1943.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1944.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1944.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1945.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1945.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1946.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1946.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1947.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1947.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1948.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1948.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1949.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1949.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1950.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1950.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1951.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1951.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1952.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1952.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1953.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1953.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1954.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1954.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1955.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1955.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1956.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1956.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1957.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1957.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1958.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1958.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1959.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1959.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1960.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1960.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1961.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1961.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1962.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1962.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1963.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1963.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1964.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1964.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1965.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1965.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1966.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1966.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1967.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1967.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1968.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1968.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1969.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1969.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1970.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1970.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1971.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1971.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1972.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1972.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1973.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1973.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1974.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1974.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1975.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1975.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1976.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1976.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1977.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1977.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1978.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1978.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1979.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1979.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1980.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1980.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1981.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1981.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1982.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1982.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1983.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1983.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1984.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1984.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1985.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1985.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1986.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1986.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1987.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1987.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1988.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1988.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1989.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1989.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1990.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1990.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1991.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1991.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1992.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1992.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1993.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1993.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1994.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1994.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1995.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1995.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1996.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1996.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1997.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1997.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1998.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1998.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1999.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1999.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2000.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2000.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2001.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2001.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2002.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2002.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2003.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2003.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2004.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2004.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2005.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2005.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2006.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2006.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2007.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2007.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2008.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2008.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2009.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2009.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2010.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2010.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2011.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2011.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2012.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2012.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2013.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2013.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2014.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2014.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2015.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2015.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2016.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2016.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2017.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2017.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2018.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2018.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2019.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2019.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2020.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2020.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2021.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2021.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2022.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2022.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2023.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2023.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2024.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2024.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2025.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2025.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2026.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2026.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2027.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2027.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2028.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2028.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2029.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2029.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2030.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2030.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2031.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2031.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2032.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2032.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2033.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2033.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2034.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2034.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2035.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2035.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2036.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2036.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2037.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2037.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2038.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2038.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2039.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2039.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2040.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2040.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2041.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2041.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2042.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2042.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2043.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2043.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2044.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2044.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2045.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2045.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2046.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2046.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 2046.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2047.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2048.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2049.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2050.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2051.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2052.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2053.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2054.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2055.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2056.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2057.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2058.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2059.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2060.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2061.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2062.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2063.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2064.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2065.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2066.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2067.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2068.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2069.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2070.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2071.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2072.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2073.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2074.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2075.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2076.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2077.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2078.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2079.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2080.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2081.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2082.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2083.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2084.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2085.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2086.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2087.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2088.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2089.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2090.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2091.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2092.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2093.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2094.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2095.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2096.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2097.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2098.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2099.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2100.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2101.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2102.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2103.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2104.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2105.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2106.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2107.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2108.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2109.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2110.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2111.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2112.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2113.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2114.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2114.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 2225.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 2226.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2227.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2228.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2229.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2230.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2231.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2232.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2233.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2234.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2235.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2236.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2237.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2238.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2239.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2240.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2241.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2242.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2243.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2244.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2245.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2246.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2247.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2248.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2249.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2250.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2250.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 2251.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2251.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2252.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2252.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2253.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2253.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2254.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2254.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2255.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2255.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2256.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2256.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2257.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2257.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2258.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2258.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2259.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2259.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2260.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2260.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2261.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2261.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2262.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2262.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2263.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2263.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2264.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2264.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2265.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2265.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2266.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2266.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2267.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2267.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2268.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2268.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2269.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2269.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2270.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2270.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2271.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2271.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2272.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2272.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2273.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2273.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2274.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2274.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2275.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2275.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2276.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2276.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2277.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2277.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2278.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2278.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2279.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2279.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2280.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2280.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2281.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2281.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2282.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2282.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2283.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2283.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2284.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2284.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2285.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2285.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2286.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2286.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2287.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2287.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2288.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2288.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2289.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2289.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2290.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2290.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2291.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2291.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2292.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2292.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2293.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2293.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2294.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2294.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2295.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2295.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2296.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2296.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2297.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2297.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2298.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2298.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2299.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2299.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2300.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2300.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2301.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2301.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2302.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2302.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2303.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2303.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2304.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2304.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2305.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2305.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2306.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2306.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2307.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2307.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2308.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2308.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2309.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2309.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2310.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2310.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2311.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2311.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2312.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2312.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2313.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2313.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2314.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2314.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2315.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2315.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2316.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2316.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2317.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2317.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2318.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2318.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2319.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2319.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2320.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2320.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2321.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2321.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2322.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2322.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2323.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2323.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2324.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2324.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2325.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2325.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2326.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2326.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2327.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2327.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2328.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2328.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2329.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2329.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2330.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2330.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2331.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2331.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2332.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2332.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2333.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2333.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2334.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2334.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2335.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2335.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2336.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2336.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2337.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2337.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2338.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2338.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2339.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2339.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2340.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2340.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2341.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2341.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2342.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2342.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2343.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2343.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2344.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2344.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2345.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2345.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2346.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2346.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2347.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2347.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2348.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2348.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2349.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2349.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2350.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2350.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2351.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2351.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2352.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2352.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2353.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2353.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2354.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2354.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2355.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2355.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2356.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2356.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2357.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2357.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2358.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2358.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2359.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2359.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2360.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2360.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2361.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2361.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2362.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2362.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2363.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2363.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2364.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2364.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2365.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2365.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2366.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2366.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2367.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2367.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2368.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2368.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2369.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2369.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2370.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2370.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2371.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2371.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2372.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2372.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2373.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2373.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2374.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2374.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2375.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2375.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2376.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2376.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2377.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2377.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2378.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2378.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2379.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2379.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2380.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2380.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2381.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2381.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2382.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2382.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2383.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2383.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2384.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2384.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2385.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2385.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2386.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2386.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2387.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2387.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2388.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2388.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2389.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2389.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2390.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2390.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2391.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2391.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2392.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2392.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2393.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2393.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2394.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2394.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2395.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2395.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2396.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2396.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2397.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2397.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2398.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2398.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2399.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2399.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2400.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2400.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2401.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2401.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2402.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2402.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2403.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2403.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2404.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2404.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2405.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2405.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2405.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 2406.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2407.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2408.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2409.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2410.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2411.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2412.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2413.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2414.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2415.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2416.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2417.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2418.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2419.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2420.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2421.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2422.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2423.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2424.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2425.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2426.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2427.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2428.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2429.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2430.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2430.000000] [simulator/INFO] on12 is sleeping +[on0:ON:(1) 2593.000000] [simulator/INFO] on0 wakes up +[on10:ON:(11) 2598.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 add a new hint at 6709.000000 for a duration of 180.000000 +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 2598.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 2598.310320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 received data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 received a hint along with data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 2638.620640] [simulator/INFO] on0 sent data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2639.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2640.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2641.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2641.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2642.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2643.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2644.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2644.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2645.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2646.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2647.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2647.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2648.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2649.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2650.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2650.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2651.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2652.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2653.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2653.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2654.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2655.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2656.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2656.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2657.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2658.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2659.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2659.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2660.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2661.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2662.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2662.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2663.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2664.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2665.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2665.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2666.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2667.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2668.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2668.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2669.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2670.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2671.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2671.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2672.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2673.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2674.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2674.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2675.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2676.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2677.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2677.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2678.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2679.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2680.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2680.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2681.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2682.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2683.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2683.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2684.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2685.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2686.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2686.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2687.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2688.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2689.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2689.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2690.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2691.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2692.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2692.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2693.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2694.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2695.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2695.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2696.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2697.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2698.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2698.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2699.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2700.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2701.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2701.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2702.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2703.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2704.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2704.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2705.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2706.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2707.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2707.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2708.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2709.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2710.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2710.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2711.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2712.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2713.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2713.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2714.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2715.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2716.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2716.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2717.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2718.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2719.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2719.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2720.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2721.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2722.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2722.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2723.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2724.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2725.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2725.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2726.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2727.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2728.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2728.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2729.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2730.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2731.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2731.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2732.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2733.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2734.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2734.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2735.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2736.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2737.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2737.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2738.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2739.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2740.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2740.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2741.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2742.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2743.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2743.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2744.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2745.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2746.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2746.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2747.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2748.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2749.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2749.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2750.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2751.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2752.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2752.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2753.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2754.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2755.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2755.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2756.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2757.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2758.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2758.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2759.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2760.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2761.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2761.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2762.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2763.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2764.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2764.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2765.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2766.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2767.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2767.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2768.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2769.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2770.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2770.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2771.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2772.620640] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 2773.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 2773.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2773.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2774.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2775.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2776.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2776.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2777.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2778.620640] [simulator/INFO] on10 is sleeping +[on8:ON:(9) 2802.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 2803.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2804.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2805.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2806.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2807.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2808.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2809.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2810.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2811.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2812.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2813.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2814.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2815.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2816.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2817.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2818.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2819.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2820.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2821.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2822.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2823.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2824.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2825.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2826.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2827.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2828.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2829.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2830.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2831.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2832.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2833.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2834.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2835.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2836.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2837.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2838.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2839.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2840.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2841.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2842.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2843.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2844.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2845.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2846.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2847.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2848.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2849.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2850.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2851.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2852.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2853.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2854.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2855.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2856.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2857.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2858.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2859.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2860.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2861.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2862.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2863.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2864.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2865.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2866.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2867.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2868.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2869.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2870.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2871.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2872.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2873.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2874.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2875.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2876.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2877.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2878.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2879.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2880.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2881.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2882.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2883.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2884.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2885.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2886.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2887.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2888.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2889.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2890.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2891.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2892.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2893.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2894.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2895.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2896.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2897.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2898.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2899.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2900.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2900.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 2901.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2901.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2902.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2902.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2903.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2903.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2904.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2904.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2905.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2905.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2906.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2906.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2907.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2907.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2908.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2908.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2909.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2909.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2910.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2910.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2911.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2911.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2912.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2912.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2913.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2913.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2914.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2914.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2915.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2915.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2916.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2916.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2917.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2917.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2918.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2918.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2919.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2919.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2920.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2920.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2921.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2921.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2922.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2922.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2923.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2923.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2924.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2924.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2925.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2925.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2926.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2926.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2927.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2927.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2928.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2928.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2929.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2929.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2930.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2930.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2931.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2931.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2932.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2932.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2933.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2933.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2934.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2934.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2935.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2935.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2936.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2936.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2937.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2937.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2938.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2938.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2939.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2939.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2940.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2940.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2941.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2941.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2942.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2942.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2943.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2943.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2944.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2944.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2945.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2945.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2946.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2946.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2947.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2947.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2948.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2948.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2949.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2949.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2950.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2950.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2951.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2951.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2952.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2952.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2953.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2953.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2954.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2954.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2955.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2955.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2956.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2956.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2957.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2957.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2958.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2959.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2959.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2960.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2961.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2961.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2962.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2963.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2963.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2964.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2965.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2965.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2966.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2967.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2967.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2968.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2969.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2969.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2970.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2970.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2971.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2971.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2972.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2972.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2973.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2973.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2974.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2974.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2975.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2975.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2976.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2976.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2977.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2977.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2978.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2978.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2979.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2979.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2980.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2980.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2981.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2981.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2982.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2982.000000] [simulator/INFO] on8 is sleeping +[on9:ON:(10) 2982.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2983.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2984.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2985.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2986.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2987.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2988.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2989.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2990.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2991.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2992.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2993.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2994.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2995.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2996.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2997.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2998.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2999.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3000.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3001.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3002.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3003.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3004.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3005.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3006.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3007.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3008.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3009.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3010.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3011.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3012.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3013.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3014.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3015.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3016.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3017.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3018.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3019.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3020.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3021.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3022.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3023.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3024.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3025.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3026.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3027.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3028.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3029.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3030.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3031.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3032.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3033.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3034.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3035.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3036.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3037.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3038.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3039.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3040.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3041.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3042.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3043.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3044.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3045.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3046.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3047.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3048.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3049.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3050.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3051.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3052.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3053.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3054.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3055.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3056.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3057.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3058.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3059.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3060.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3061.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3062.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3063.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3064.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3065.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3066.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3067.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3068.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3069.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3070.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3071.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3072.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3073.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3074.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3075.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3076.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3077.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3078.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3079.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3080.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3080.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 3628.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 3629.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3630.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3631.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 3631.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 3631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 3632.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3632.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 3632.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 3632.010000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3632.010000] [simulator/INFO] on2 received a forwarded hint successfully +[on2:ON:(3) 3632.010000] [simulator/INFO] on2 add a new hint at 6709.000000 for a duration of 180.000000 +[on10:ON:(11) 3633.010000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3633.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3633.010000] [simulator/INFO] on2 try to forward a hint +[on10:ON:(11) 3633.010000] [simulator/INFO] on10 try to forward a hint +[on2:ON:(3) 3633.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3634.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3634.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3634.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3636.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3636.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3636.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3637.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3637.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3638.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3639.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3639.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3639.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3641.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3641.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3641.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3642.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3642.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3642.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3644.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3644.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3644.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3645.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3645.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3646.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3647.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3647.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3647.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3649.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3649.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3649.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3650.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3650.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3650.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3652.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3652.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3652.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3653.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3653.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3654.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3655.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3655.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3655.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3657.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3657.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3657.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3658.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3658.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3658.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3660.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3660.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3660.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3661.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3661.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3662.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3663.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3663.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3663.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3665.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3665.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3665.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3666.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3666.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3666.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3668.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3668.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3668.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3669.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3669.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3670.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3671.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3671.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3671.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3673.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3673.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3673.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3674.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3674.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3674.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3676.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3676.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3676.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3677.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3677.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3678.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3679.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3679.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3679.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3681.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3681.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3681.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3682.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3682.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3682.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3684.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3684.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3684.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3685.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3685.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3686.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3687.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3687.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3687.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3689.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3689.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3689.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3690.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3690.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3690.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3692.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3692.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3692.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3693.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3693.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3694.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3695.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3695.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3695.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3697.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3697.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3697.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3698.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3698.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3698.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3700.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3700.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3700.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3701.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3701.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3702.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3703.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3703.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3703.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3705.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3705.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3705.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3706.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3706.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3706.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3708.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3708.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3708.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3709.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3709.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3710.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3711.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3711.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3711.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3713.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3713.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3713.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3714.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3714.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3714.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3716.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3716.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3716.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3717.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3717.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3718.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3719.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3719.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3719.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3721.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3721.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3721.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3722.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3722.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3722.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3724.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3724.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3724.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3725.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3725.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3726.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3727.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3727.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3727.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3729.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3729.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3729.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3730.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3730.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3730.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3732.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3732.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3732.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3733.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3733.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3734.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3735.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3735.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3735.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3737.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3737.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3737.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3738.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3738.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3738.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3740.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3740.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3740.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3741.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3741.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3742.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3743.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3743.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3743.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3745.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3745.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3745.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3746.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3746.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3746.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3748.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3748.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3748.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3749.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3749.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3750.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3751.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3751.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3751.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3753.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3753.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3753.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3754.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3754.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3754.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3756.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3756.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3756.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3757.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3757.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3758.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3759.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3759.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3759.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3761.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3761.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3761.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3762.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3762.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3762.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3764.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3764.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3764.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3765.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3765.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3766.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3767.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3767.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3767.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3769.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3769.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3769.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3770.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3770.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3770.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3772.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3772.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3772.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3773.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3773.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3774.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3775.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3775.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3775.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3777.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3777.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3777.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3778.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3778.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3778.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3780.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3780.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3780.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3781.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3781.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3782.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3783.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3783.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3783.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3785.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3785.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3785.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3786.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3786.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3786.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3788.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3788.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3788.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3789.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3789.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3790.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3791.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3791.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3791.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3793.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3793.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3793.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3794.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3794.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3794.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3796.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3796.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3796.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3797.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3797.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3798.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3799.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3799.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3799.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3801.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3801.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3801.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3802.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3802.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3802.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3804.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3804.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3804.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3805.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3805.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3806.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3807.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3807.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3807.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3808.010000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 3811.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 3812.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 3840.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 3841.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3842.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3843.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3844.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3845.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3846.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3847.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3848.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3849.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3850.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3851.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3852.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3853.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3854.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3855.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3856.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3857.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3858.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3859.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3860.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3861.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3862.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3863.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3864.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3865.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3866.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3867.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3868.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3869.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3870.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3871.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3872.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3873.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3874.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3875.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3876.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3877.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3878.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3879.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3880.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3881.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3882.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3883.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3884.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3885.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3886.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3887.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3888.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3889.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3890.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3891.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3892.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3893.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3894.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3895.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3896.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3897.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3898.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3899.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3900.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3901.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3902.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3903.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3904.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3905.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3906.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3907.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3908.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3909.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3910.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3911.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3912.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3913.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3914.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3915.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3916.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3917.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3918.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3919.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3920.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3921.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3922.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3923.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3924.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3925.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3926.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3927.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3928.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3929.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3930.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3931.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3932.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3933.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3934.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3935.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3936.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3937.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3938.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3939.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3940.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3941.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3942.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3943.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3944.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3945.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3946.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3947.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3948.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3949.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3950.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3951.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3952.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3953.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3954.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3955.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3956.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3957.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3959.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3961.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3963.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3965.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3967.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3969.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3970.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3971.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3972.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3973.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3974.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3975.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3976.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3977.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3978.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3979.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3980.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3981.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3982.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3983.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3984.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3985.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3986.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3987.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3988.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3989.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3990.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3991.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3992.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3993.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3994.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3995.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3996.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3997.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3998.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3999.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4000.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4001.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4002.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4003.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4004.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4005.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4006.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4007.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4008.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4009.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4010.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4011.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4012.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4013.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4014.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4015.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4016.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4017.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4018.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4019.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4020.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4020.000000] [simulator/INFO] on9 is sleeping +[on1:ON:(2) 4259.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 4260.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4261.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4262.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4263.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4264.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4265.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4266.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4267.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4268.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4269.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4270.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4271.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4272.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4273.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4274.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4275.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4276.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4277.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4278.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4279.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4280.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4281.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4282.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4283.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4284.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4285.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4286.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4287.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4288.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4289.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4290.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4291.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4292.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4293.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4294.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4295.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4296.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4297.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4298.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4299.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4300.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4301.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4302.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4303.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4304.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4305.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4306.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4307.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4308.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4309.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4310.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4311.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4312.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4313.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4314.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4315.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4316.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4317.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4318.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4319.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4320.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4321.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4322.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4323.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4324.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4325.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4326.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4327.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4328.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4329.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4330.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4331.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4332.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4333.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4334.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4335.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4336.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4439.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 4641.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 4642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4692.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4693.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4694.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4695.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4696.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4697.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4698.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4699.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4700.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4701.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4702.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4703.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4704.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4705.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4706.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4707.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4708.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4709.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4710.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4711.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4712.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4713.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4714.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4715.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4716.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4717.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4718.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4719.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4720.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4721.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4722.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4723.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4724.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4725.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4726.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4727.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4728.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4730.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4732.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4794.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4795.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4796.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4797.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4798.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4799.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4800.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4801.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4802.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4803.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4804.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4805.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4806.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4807.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4808.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4809.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4810.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4811.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4812.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4813.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4814.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4815.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4816.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4817.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4818.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4819.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4820.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4821.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4821.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 4944.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 4945.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4946.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4947.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4948.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4949.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4950.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4951.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4952.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4953.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4954.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4955.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4956.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4957.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4958.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4959.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4960.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4961.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4962.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4963.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4964.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4965.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4966.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4967.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4968.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4969.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4970.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4971.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4972.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4973.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4974.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4975.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4976.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4977.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4978.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4979.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4980.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4981.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4982.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4983.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4984.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4985.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4986.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4987.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4988.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4989.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4990.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4991.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4992.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4993.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4994.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4995.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4996.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4997.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4998.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4999.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5000.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5001.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5002.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5003.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5004.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5005.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5006.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5007.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5008.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5009.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5010.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5011.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5012.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5013.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5014.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5015.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5016.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5017.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5018.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5019.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5020.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5021.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5022.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5023.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5024.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5025.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5026.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5027.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5028.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5029.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5030.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5031.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5032.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5033.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5034.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5035.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5036.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5037.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5038.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5039.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5040.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5041.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5042.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5043.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5044.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5045.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5046.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5047.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5048.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5049.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5050.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5051.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5052.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5053.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5054.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5055.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5056.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5057.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5058.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5059.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5060.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5061.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5062.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5063.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5064.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5065.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5066.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5067.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5068.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5069.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5070.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5071.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5072.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5073.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5074.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5075.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5076.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5077.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5078.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5079.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5080.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5081.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5082.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5083.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5084.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5085.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5086.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5087.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5088.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5089.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5090.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5091.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5092.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5093.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5094.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5095.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5096.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5097.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5098.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5099.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5100.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5101.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5102.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5103.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5104.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5105.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5106.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5107.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5108.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5109.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5110.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5111.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5112.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5113.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5114.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5115.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5116.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5117.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5118.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5119.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5120.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5121.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5122.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5123.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5124.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5124.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 6411.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 6412.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6413.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6414.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6415.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6416.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6417.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6418.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6419.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6420.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6421.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6422.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6423.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6424.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6425.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6426.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6427.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6428.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6429.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6430.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6431.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6432.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6433.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6434.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6435.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6436.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6437.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6438.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6439.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6440.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6441.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6442.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6443.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6444.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6445.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6446.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6447.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6448.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6449.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6450.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6451.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6452.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6453.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6454.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6455.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6456.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6457.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6458.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6459.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6460.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6461.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6462.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6463.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6464.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6465.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6466.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6467.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6468.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6469.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6470.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6471.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6472.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6473.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6474.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6475.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6476.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6477.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6478.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6479.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6480.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6481.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6482.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6483.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6484.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6485.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6486.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6487.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6488.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6489.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6490.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6491.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6492.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6493.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6494.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6495.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6496.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6497.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6498.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6499.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6500.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6501.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6502.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6503.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6504.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6505.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6506.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6507.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6508.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6509.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6510.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6511.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6512.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6513.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6514.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6515.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6516.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6517.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6518.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6519.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6520.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6521.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6522.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6523.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6524.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6525.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6526.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6527.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6528.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6529.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6530.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6531.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6532.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6533.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6534.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6535.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6536.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6537.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6538.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6539.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6540.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6541.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6542.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6543.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6544.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6545.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6546.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6547.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6548.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6549.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6550.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6551.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6552.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6553.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6554.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6555.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6556.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6557.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6558.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6559.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6560.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6561.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6562.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6563.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6564.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6565.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6566.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6567.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6568.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6569.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6570.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6571.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6572.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6573.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6574.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6575.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6576.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6577.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6578.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6579.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6580.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6581.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6582.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6583.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6584.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6585.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6586.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6587.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6588.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6589.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6590.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6591.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6591.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 6611.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 6612.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6613.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6614.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6615.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6616.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6617.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6618.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6619.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6620.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6621.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6622.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6623.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6624.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6625.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6626.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6627.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6628.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6629.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6630.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6631.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6632.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6633.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6634.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6635.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6636.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6637.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6638.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6639.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6640.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6641.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6642.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6643.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6644.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6645.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6646.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6647.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6648.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6649.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6650.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6651.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6652.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6653.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6654.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6655.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6656.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6657.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6658.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6659.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6660.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6661.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6662.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6663.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6664.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6665.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6666.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6667.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6668.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6669.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6670.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6671.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6672.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6673.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6674.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6675.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6676.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6677.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6678.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6679.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6680.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6681.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6682.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6683.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6684.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6685.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6686.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6687.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6688.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6689.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6690.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6691.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6692.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6693.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6694.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6695.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6696.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6697.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6698.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6699.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6700.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6701.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6701.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 6702.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6702.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6703.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6703.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6704.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6704.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6705.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6705.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6706.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6706.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6707.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6707.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6708.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6708.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6709.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6709.000000] [simulator/INFO] on7 could not receive any data +[on0:ON:(1) 6709.000000] [simulator/INFO] on0 wakes up +[on2:ON:(3) 6709.000000] [simulator/INFO] on2 wakes up +[on10:ON:(11) 6709.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 6709.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6710.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6710.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6710.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6711.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6711.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6711.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6712.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6712.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6712.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6713.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6713.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6713.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6714.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6714.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6714.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6715.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6715.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6715.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6716.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6716.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6716.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6717.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6717.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6717.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6718.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6718.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6718.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6719.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6719.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6719.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6720.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6720.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6720.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6721.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6721.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6721.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6722.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6722.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6722.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6723.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6723.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6723.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6724.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6724.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6724.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6725.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6725.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6725.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6726.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6726.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6726.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6727.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6727.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6727.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6728.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6728.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6728.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6729.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6729.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6729.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6730.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6730.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6730.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6731.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6731.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6731.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6732.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6732.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6732.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6733.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6733.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6733.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6734.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6734.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6734.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6735.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6735.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6735.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6736.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6736.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6736.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6737.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6737.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6737.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6738.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6738.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6738.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6739.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6739.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6739.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6740.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6740.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6740.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6741.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6741.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6741.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6742.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6742.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6742.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6743.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6743.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6743.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6744.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6744.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6744.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6745.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6745.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6745.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6746.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6746.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6746.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6747.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6747.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6747.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6748.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6748.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6748.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6749.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6749.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6749.000000] [simulator/INFO] on2 could not receive any data +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 received data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 received a hint along with data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 6749.010320] [simulator/INFO] on0 sent data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 6749.020320] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 6749.020320] [simulator/INFO] on7 received a forwarded hint successfully +[on7:ON:(8) 6749.020320] [simulator/INFO] on7 add a new hint at 7556.000000 for a duration of 180.000000 +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 add a new hint at 7556.000000 for a duration of 180.000000 +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 6749.020640] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 6750.020320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 6750.020320] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 6751.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6752.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6753.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6754.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6755.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6756.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6757.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6758.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6759.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6760.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6761.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6762.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6763.000000] [simulator/INFO] on12 wakes up +[on10:ON:(11) 6763.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6764.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6764.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6765.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6765.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6766.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6766.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6767.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6767.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6768.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6768.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6769.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6769.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6770.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6770.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6771.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6771.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6772.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6772.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6773.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6773.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6774.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6774.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6775.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6775.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6776.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6776.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6777.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6777.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6778.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6778.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6779.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6779.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6780.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6780.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6781.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6781.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6782.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6782.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6783.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6783.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6784.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6784.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6785.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6785.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6786.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6786.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6787.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6787.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6788.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6788.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6789.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6789.020320] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 received data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 received a hint along with data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 6789.030960] [simulator/INFO] on0 sent data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 try to forward a hint +[on12:ON:(13) 6789.030960] [simulator/INFO] on12 received a forwarded hint successfully +[on12:ON:(13) 6789.030960] [simulator/INFO] on12 add a new hint at 7556.000000 for a duration of 180.000000 +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 6789.041280] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 6790.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6790.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6790.341280] [simulator/INFO] on2 fail to forward a hint +[on11:ON:(12) 6791.000000] [simulator/INFO] on11 fail to forward a hint +[on2:ON:(3) 6791.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6791.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6791.941280] [simulator/INFO] on2 fail to forward a hint +[on11:ON:(12) 6792.000000] [simulator/INFO] on11 is sleeping +[on2:ON:(3) 6793.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6793.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6793.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6794.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6794.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6795.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6796.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6796.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6796.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6798.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6798.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6798.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6799.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6799.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6799.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6801.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6801.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6801.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6802.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6802.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6803.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6804.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6804.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6804.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6806.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6806.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6806.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6807.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6807.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6807.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6809.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6809.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6809.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6810.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6810.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6811.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6812.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6812.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6812.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6814.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6814.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6814.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6815.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6815.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6815.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6817.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6817.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6817.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6818.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6818.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6819.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6820.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6820.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6820.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6822.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6822.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6822.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6823.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6823.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6823.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6825.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6825.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6825.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6826.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6826.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6827.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6828.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6828.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6828.741280] [simulator/INFO] on2 fail to forward a hint +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 received data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 received a hint along with data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 is observing his environment... +[on0:ON:(1) 6829.051600] [simulator/INFO] on0 sent data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 try to forward a hint +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 add a new hint at 7556.000000 for a duration of 180.000000 +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 6829.061920] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 6829.361920] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 received data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 received a hint along with data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 is observing his environment... +[on0:ON:(1) 6869.672240] [simulator/INFO] on0 sent data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6870.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6871.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6872.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6872.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6873.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6874.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6875.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6875.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6876.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6877.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6878.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6878.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6879.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6880.672240] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 6881.000000] [simulator/INFO] on7 fail to forward a hint +[on2:ON:(3) 6881.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6881.672240] [simulator/INFO] on2 try to forward a hint +[on7:ON:(8) 6882.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 6882.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6883.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6884.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6884.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6885.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6886.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6887.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6887.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6888.672240] [simulator/INFO] on2 fail to forward a hint +[on10:ON:(11) 6889.000000] [simulator/INFO] on10 fail to forward a hint +[on0:ON:(1) 6889.000000] [simulator/INFO] on0 is sleeping +[on2:ON:(3) 6889.672240] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 6890.000000] [simulator/INFO] on10 is sleeping +[on4:ON:(5) 6890.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 6891.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6892.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6893.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6894.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6895.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6896.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6897.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6898.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6899.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6900.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6901.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6902.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6903.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6904.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6905.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6906.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6907.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6908.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6909.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6910.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6911.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6912.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6913.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6914.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6915.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6916.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6917.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6918.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6919.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6920.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6921.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6922.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6923.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6924.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6925.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6926.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6927.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6928.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6928.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 6929.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6929.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6930.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6930.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6931.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6931.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6932.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6932.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6933.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6933.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6934.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6934.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6935.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6935.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6936.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6936.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6937.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6937.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6938.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6938.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6939.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6939.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6940.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6940.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6941.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6941.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6942.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6942.000000] [simulator/INFO] on3 could not receive any data +[on12:ON:(13) 6943.000000] [simulator/INFO] on12 fail to forward a hint +[on3:ON:(4) 6943.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6943.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6944.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6944.000000] [simulator/INFO] on3 could not receive any data +[on12:ON:(13) 6944.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 6945.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6945.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6946.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6946.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6947.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6947.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6948.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6948.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6949.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6949.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6950.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6950.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6951.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6951.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6952.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6952.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6953.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6953.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6954.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6954.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6955.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6955.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6956.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6956.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6957.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6957.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6958.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6958.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6959.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6959.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6960.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6960.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6961.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6961.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6962.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6962.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6963.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6963.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6964.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6964.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6965.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6965.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6966.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6966.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6967.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6967.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6968.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6968.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6969.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6969.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6970.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6970.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6971.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6971.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6972.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6972.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6973.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6973.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6974.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6974.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6975.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6975.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6976.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6976.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6977.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6977.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6978.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6978.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6979.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6979.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6980.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6980.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6981.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6981.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6982.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6982.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6983.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6983.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6984.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6984.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6985.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6985.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6986.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6986.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6987.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6987.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6988.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6988.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6989.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6989.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6990.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6990.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6991.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6991.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6992.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6992.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6993.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6993.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6994.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6994.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6995.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6995.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6996.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6996.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6997.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6997.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6998.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6998.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6999.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6999.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7000.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7000.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7001.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7001.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7002.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7002.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7003.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7003.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7004.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7004.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7005.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7005.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7006.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7006.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7007.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7007.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7008.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7008.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7009.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7009.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7010.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7010.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7011.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7011.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7012.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7012.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7013.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7013.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7014.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7014.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7015.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7015.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7016.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7016.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7017.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7017.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7018.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7018.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7019.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7019.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7020.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7020.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7021.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7021.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7022.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7022.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7023.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7023.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7024.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7024.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7025.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7025.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7026.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7026.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7027.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7027.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7028.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7028.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7029.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7029.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7030.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7030.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7031.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7031.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7032.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7032.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7033.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7033.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7034.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7034.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7035.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7035.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7036.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7036.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7037.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7037.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7038.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7038.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7039.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7039.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7040.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7040.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7041.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7041.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7042.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7042.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7043.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7043.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7044.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7044.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7045.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7045.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7046.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7046.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7047.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7047.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7048.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7048.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7049.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7049.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7050.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7050.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7051.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7051.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7052.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7052.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7053.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7053.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7054.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7054.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7055.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7055.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7056.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7056.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7057.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7057.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7058.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7058.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7059.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7059.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7060.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7060.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7061.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7061.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7062.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7062.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7063.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7063.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7064.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7064.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7065.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7065.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7066.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7066.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7067.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7067.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7068.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7068.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7069.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7069.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7070.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7070.000000] [simulator/INFO] on4 is sleeping +[on3:ON:(4) 7070.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7071.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7072.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7073.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7074.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7075.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7076.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7077.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7078.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7079.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7080.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7081.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7082.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7083.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7084.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7085.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7086.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7087.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7088.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7089.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7090.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7091.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7092.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7093.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7094.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7095.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7096.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7097.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7098.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7099.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7100.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7101.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7102.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7103.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7104.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7105.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7106.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7107.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7108.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7108.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 7336.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 7337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7440.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7441.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7442.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7443.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7444.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7445.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7446.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7447.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7448.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7449.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7450.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7451.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7452.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7453.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7454.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7455.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7456.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7457.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7458.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7459.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7460.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7461.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7462.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7463.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7464.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7465.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7466.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7467.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7468.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7469.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7470.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7471.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7472.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7473.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7474.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7475.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7476.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7477.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7478.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7479.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7480.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7481.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7482.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7483.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7484.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7485.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7486.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7487.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7488.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7489.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7490.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7491.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7492.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7493.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7494.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7495.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7496.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7497.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7498.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7499.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7500.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7501.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7502.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7503.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7504.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7505.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7506.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7507.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7508.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7509.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7510.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7511.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7512.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7513.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7514.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7515.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7516.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7516.000000] [simulator/INFO] on1 is sleeping +[on7:ON:(8) 7556.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 7556.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 7556.000000] [simulator/INFO] on0 wakes up +[on2:ON:(3) 7556.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 7556.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 7556.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 7556.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 7557.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 7557.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 7557.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 received a hint successfully +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 try to forward a hint +[on0:ON:(1) 7557.010320] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 7558.010320] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 7558.010320] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 7558.020640] [simulator/INFO] on0 sent a hint successfully +[on7:ON:(8) 7559.020640] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 received a hint successfully +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 try to forward a hint +[on0:ON:(1) 7559.030960] [simulator/INFO] on0 sent a hint successfully +[on7:ON:(8) 7560.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7561.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7561.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7562.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7563.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7563.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7564.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7565.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7565.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7566.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7567.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7567.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7568.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7569.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7569.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7570.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7571.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7571.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7572.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7573.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7573.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7574.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7575.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7575.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7576.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7577.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7577.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7578.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7579.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7579.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7580.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7581.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7581.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7582.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7583.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7583.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7584.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7585.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7585.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7586.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7587.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7587.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7588.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7589.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7589.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7590.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7591.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7591.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7592.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7593.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7593.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7594.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7595.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7595.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7596.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7597.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7597.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7598.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7599.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7599.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7600.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7601.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7601.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7602.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7603.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7603.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7604.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7605.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7605.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7606.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7607.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7607.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7608.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7609.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7609.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7610.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7611.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7611.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7612.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7613.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7613.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7614.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7615.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7615.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7616.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7617.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7617.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7618.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7619.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7619.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7620.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7621.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7621.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7622.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7623.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7623.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7624.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7625.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7625.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7626.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7627.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7627.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7628.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7629.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7629.030960] [simulator/INFO] on7 try to forward a hint +[on10:ON:(11) 7630.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 7630.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 7631.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 7632.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7633.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7633.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7634.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7635.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7635.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7636.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7637.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7637.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7638.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7639.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7639.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7640.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7641.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7641.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7642.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7643.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7643.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7644.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7645.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7645.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7646.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7647.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7647.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7648.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7649.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7649.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7650.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7651.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7651.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7652.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7653.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7653.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7654.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7655.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7655.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7656.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7657.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7657.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7658.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7659.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7659.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7660.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7661.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7661.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7662.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7663.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7663.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7664.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7665.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7665.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7666.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7667.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7667.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7668.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7669.000000] [simulator/INFO] on3 wakes up +[on10:ON:(11) 7669.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7669.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7670.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7671.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7671.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7672.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7673.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7673.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7674.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7675.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7675.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7676.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7677.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7677.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7678.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7679.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7679.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7680.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7681.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7681.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7682.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7683.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7683.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7684.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7685.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7685.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7686.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7687.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7687.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7688.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7689.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7689.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7690.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7691.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7691.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7692.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7693.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7693.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7694.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7695.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7695.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7696.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7697.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7697.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7698.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7699.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7699.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7700.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7701.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7701.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7702.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7703.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7703.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7704.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7705.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7705.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7706.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7707.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7707.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7708.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7709.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 received data successfully +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 received a hint along with data successfully +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 7709.010320] [simulator/INFO] on0 sent data successfully +[on10:ON:(11) 7709.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7710.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7710.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7711.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7711.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7711.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7712.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7712.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7712.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7713.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7713.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7713.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7714.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7714.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7715.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7715.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7715.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7715.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7716.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7716.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7717.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7717.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7717.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7718.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7718.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7718.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7719.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7719.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7719.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7720.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7720.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7721.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7721.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7721.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7721.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7722.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7722.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7723.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7723.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7723.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7724.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7724.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7724.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7725.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7725.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7725.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7726.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7726.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7727.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7727.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7727.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7727.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7728.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7728.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7729.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7729.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7729.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7730.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7730.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7730.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7731.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7731.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7731.010320] [simulator/INFO] on10 try to forward a hint +[on11:ON:(12) 7732.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 7732.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 7732.010320] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 7733.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 received a hint successfully +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 try to forward a hint +[on0:ON:(1) 7733.010320] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 7734.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 7734.020640] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 7735.020640] [simulator/INFO] on11 fail to forward a hint +[on12:ON:(13) 7736.000000] [simulator/INFO] on12 fail to forward a hint +[on2:ON:(3) 7736.000000] [simulator/INFO] on2 fail to forward a hint +[on7:ON:(8) 7736.000000] [simulator/INFO] on7 fail to forward a hint +[on0:ON:(1) 7736.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 7736.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7736.020640] [simulator/INFO] on11 try to forward a hint +[on7:ON:(8) 7737.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 7737.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 7737.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 7737.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7738.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7738.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7739.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7740.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7740.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7741.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7742.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7742.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7743.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7744.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7744.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7745.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7746.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7746.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7747.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7748.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7748.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7749.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7750.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7750.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7751.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7752.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7752.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7753.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7754.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7754.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7755.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7756.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7756.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7757.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7758.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7758.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7759.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7760.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7760.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7761.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7762.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7762.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7763.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7764.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7764.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7765.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7766.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7766.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7767.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7768.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7768.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7769.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7770.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7770.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7771.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7772.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7772.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7773.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7774.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7774.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7775.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7776.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7776.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7777.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7778.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7778.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7779.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7780.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7780.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7781.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7782.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7782.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7783.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7784.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7784.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7785.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7786.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7786.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7787.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7788.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7788.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7789.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7790.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7790.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7791.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7792.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7792.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7793.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7794.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7794.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7795.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7796.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7796.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7797.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7798.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7798.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7799.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7800.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7800.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7801.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7802.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7802.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7803.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7804.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7804.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7805.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7806.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7806.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7807.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7808.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7808.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7809.020640] [simulator/INFO] on11 fail to forward a hint +[on10:ON:(11) 7810.000000] [simulator/INFO] on10 fail to forward a hint +[on11:ON:(12) 7810.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7810.020640] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 7811.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 7811.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7812.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7812.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7813.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7814.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7814.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7815.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7816.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7816.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7817.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7818.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7818.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7819.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7820.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7820.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7821.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7822.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7822.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7823.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7824.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7824.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7825.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7826.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7826.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7827.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7828.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7828.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7829.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7830.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7830.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7831.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7832.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7832.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7833.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7834.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7834.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7835.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7836.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7836.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7837.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7838.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7838.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7839.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7840.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7840.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7841.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7842.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7842.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7843.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7844.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7844.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7845.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7846.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7846.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7847.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7848.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7848.020640] [simulator/INFO] on11 try to forward a hint +[on3:ON:(4) 7849.000000] [simulator/INFO] on3 fail to forward a hint +[on11:ON:(12) 7849.020640] [simulator/INFO] on11 fail to forward a hint +[on3:ON:(4) 7850.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 7850.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7850.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7851.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7852.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7852.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7853.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7854.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7854.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7855.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7856.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7856.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7857.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7858.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7858.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7859.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7860.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7860.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7861.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7862.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7862.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7863.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7864.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7864.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7865.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7866.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7866.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7867.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7868.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7868.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7869.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7870.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7870.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7871.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7872.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7872.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7873.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7874.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7874.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7875.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7876.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7876.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7877.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7878.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7878.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7879.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7880.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7880.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7881.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7882.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7882.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7883.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7884.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7884.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7885.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7886.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7886.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7887.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7888.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7888.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7889.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7890.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7890.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7891.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7892.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7892.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7893.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7894.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7894.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7895.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7896.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7896.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7897.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7898.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7898.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7899.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7900.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7900.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7901.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7902.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7902.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7903.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7904.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7904.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7905.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7906.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7906.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7907.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7908.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7908.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7909.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7910.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7910.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7911.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7912.020640] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 7947.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 7948.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7949.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7950.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7951.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7952.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7953.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7954.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7955.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7956.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7957.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7958.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7959.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7960.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7961.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7962.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7963.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7964.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7965.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7966.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7967.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7968.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7969.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7970.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7971.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7972.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7973.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7974.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7975.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7976.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7977.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7978.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7979.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7980.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7981.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7982.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7983.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7984.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7985.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7986.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7987.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7988.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7989.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7990.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7991.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7992.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7993.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7994.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7995.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7996.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7997.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7998.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7999.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8000.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8001.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8002.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8003.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8004.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8005.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8006.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8007.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8008.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8009.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8010.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8011.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8012.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8013.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8014.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8015.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8016.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8017.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8018.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8019.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8020.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8021.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8022.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8023.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8024.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8025.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8026.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8027.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8028.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8029.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8030.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8031.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8032.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8033.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8034.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8035.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8036.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8037.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8038.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8039.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8040.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8041.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8042.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8043.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8044.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8045.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8046.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8047.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8048.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8049.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8050.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8051.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8052.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8053.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8054.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8055.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8056.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8057.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8058.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8059.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8060.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8061.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8062.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8063.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8064.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8065.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8066.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8067.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8068.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8069.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8070.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8071.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8072.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8073.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8074.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8075.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8076.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8077.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8078.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8079.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8080.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8081.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8082.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8083.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8084.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8085.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8086.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8087.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8088.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8089.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8090.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8091.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8092.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8093.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8094.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8095.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8096.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8097.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8098.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8099.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8100.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8101.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8102.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8103.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8104.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8105.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8106.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8107.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8108.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8109.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8110.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8111.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8112.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8113.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8114.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8115.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8116.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8117.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8118.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8119.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8120.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8121.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8122.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8123.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8124.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8125.000000] [simulator/INFO] on8 could not receive any data +[on4:ON:(5) 8125.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 8126.000000] [simulator/INFO] on4 could not receive any data +[on8:ON:(9) 8126.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8127.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8127.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 8127.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8128.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8129.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8130.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8131.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8132.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8133.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8134.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8135.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8136.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8137.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8138.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8139.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8140.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8141.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8142.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8143.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8144.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8145.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8146.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8147.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8148.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8149.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8150.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8151.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8152.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8153.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8154.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8155.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8156.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8157.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8158.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8159.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8160.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8161.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8162.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8163.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8164.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8165.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8166.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8167.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8168.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8169.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8170.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8171.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8172.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8173.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8174.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8175.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8176.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8177.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8178.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8179.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8180.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8181.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8182.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8183.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8184.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8185.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8186.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8187.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8188.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8189.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8190.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8191.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8192.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8193.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8194.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8195.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8196.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8197.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8198.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8199.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8200.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8201.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8202.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8203.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8204.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8205.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8206.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8207.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8208.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8209.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8210.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8211.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8212.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8213.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8214.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8215.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8216.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8217.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8218.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8219.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8220.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8221.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8222.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8223.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8224.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8225.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8226.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8227.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8228.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8229.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8230.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8231.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8232.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8233.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8234.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8235.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8236.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8237.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8238.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8239.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8240.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8241.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8242.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8243.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8244.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8245.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8246.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8247.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8248.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8249.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8250.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8251.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8252.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8253.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8254.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8255.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8256.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8257.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8258.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8259.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8260.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8261.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8262.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8263.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8264.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8265.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8266.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8267.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8268.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8269.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8270.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8271.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8272.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8273.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8274.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8275.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8276.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8277.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8278.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8279.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8280.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8281.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8282.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8283.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8284.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8285.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8286.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8287.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8288.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8289.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8290.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8291.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8292.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8293.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8294.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8295.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8296.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8297.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8298.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8299.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8300.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8301.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8302.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8303.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8304.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8305.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8305.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 8559.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 8560.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8561.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8562.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8563.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8564.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8565.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8566.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8567.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8568.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8569.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8570.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8571.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8572.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8573.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8574.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8575.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8576.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8577.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8578.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8579.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8580.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8581.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8582.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8583.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8584.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8585.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8586.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8587.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8588.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8589.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8590.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8591.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8592.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8593.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8594.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8595.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8596.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8597.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8598.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8599.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8600.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8601.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8602.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8603.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8604.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8605.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8606.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8607.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8608.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8609.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8610.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8611.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8612.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8613.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8614.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8615.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8616.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8617.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8618.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8619.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8620.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8620.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 8621.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8621.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8622.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8622.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8623.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8623.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8624.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8624.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8625.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8625.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8626.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8626.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8627.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8627.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8628.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8628.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8629.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8629.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8630.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8630.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8631.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8631.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8632.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8632.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8633.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8633.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8634.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8634.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8635.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8635.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8636.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8636.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8637.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8637.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8638.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8638.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8639.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8639.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8640.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8640.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8641.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8641.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8642.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8642.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8643.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8643.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8644.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8644.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8645.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8645.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8646.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8646.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8647.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8647.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8648.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8648.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8649.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8649.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8650.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8650.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8651.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8651.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8652.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8652.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8653.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8653.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8654.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8654.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8655.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8655.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8656.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8656.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8657.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8657.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8658.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8658.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8659.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8659.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8660.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8660.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8661.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8661.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8662.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8662.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8663.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8663.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8664.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8664.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8665.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8665.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8666.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8666.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8667.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8667.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8668.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8668.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8669.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8669.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8670.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8670.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8671.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8671.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8672.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8672.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8673.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8673.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8674.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8674.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8675.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8675.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8676.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8676.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8677.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8677.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8678.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8678.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8679.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8679.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8680.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8680.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8681.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8681.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8682.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8682.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8683.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8683.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8684.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8684.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8685.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8685.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8686.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8686.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8687.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8687.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8688.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8688.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8689.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8689.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8690.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8690.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8691.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8691.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8692.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8692.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8693.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8693.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8694.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8694.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8695.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8695.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8696.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8696.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8697.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8697.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8698.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8698.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8699.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8699.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8700.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8700.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8701.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8701.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8702.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8702.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8703.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8703.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8704.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8704.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8705.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8705.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8706.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8706.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8707.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8707.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8708.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8708.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8709.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8709.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8710.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8710.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8711.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8711.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8712.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8712.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8713.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8713.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8714.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8714.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8715.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8715.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8716.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8716.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8717.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8717.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8718.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8718.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8719.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8719.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8720.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8720.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8721.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8721.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8722.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8722.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8723.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8723.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8724.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8724.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8725.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8725.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8726.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8726.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8727.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8727.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8728.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8728.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8729.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8729.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8730.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8730.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8731.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8731.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8732.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8732.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8733.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8733.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8734.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8734.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8735.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8735.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8736.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8736.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8737.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8737.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8738.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8738.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8739.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8739.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8739.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 8740.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8741.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8742.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8743.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8744.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8745.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8746.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8747.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8748.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8749.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8750.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8751.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8752.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8753.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8754.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8755.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8756.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8757.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8758.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8759.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8760.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8761.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8762.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8763.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8764.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8765.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8766.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8767.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8768.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8769.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8770.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8771.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8772.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8773.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8774.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8775.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8776.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8777.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8778.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8779.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8780.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8781.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8782.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8783.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8784.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8785.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8786.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8787.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8788.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8789.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8790.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8791.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8792.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8793.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8794.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8795.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8796.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8797.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8798.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8799.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8800.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8800.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 9448.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 9449.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9450.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9451.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9452.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9453.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9454.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9455.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9456.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9457.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9458.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9459.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9460.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9461.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9462.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9463.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9464.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9465.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9466.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9467.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9468.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9469.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9470.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9471.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9472.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9473.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9474.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9475.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9476.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9477.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9478.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9479.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9480.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9481.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9482.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9483.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9484.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9485.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9486.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9487.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9488.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9489.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9490.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9491.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9492.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9493.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9494.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9495.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9496.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9497.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9498.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9499.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9500.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9501.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9502.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9503.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9504.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9505.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9506.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9507.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9508.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9509.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9510.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9511.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9512.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9513.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9514.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9515.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9516.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9517.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9518.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9519.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9520.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9521.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9522.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9523.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9524.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9525.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9526.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9527.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9528.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9529.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9530.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9531.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9532.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9533.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9534.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9535.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9536.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9537.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9538.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9539.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9540.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9541.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9542.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9543.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9544.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9545.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9546.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9547.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9548.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9549.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9550.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9551.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9552.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9553.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9554.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9555.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9556.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9557.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9558.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9559.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9560.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9561.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9562.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9563.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9564.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9565.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9566.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9567.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9568.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9569.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9570.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9571.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9572.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9573.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9574.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9575.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9576.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9577.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9578.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9579.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9580.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9581.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9582.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9583.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9584.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9585.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9586.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9587.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9588.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9589.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9590.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9591.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9592.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9593.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9594.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9595.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9596.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9597.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9598.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9599.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9600.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9601.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9602.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9603.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9604.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9605.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9606.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9607.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9608.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9609.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9610.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9611.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9612.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9613.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9628.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 9835.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 9835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9836.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9837.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9839.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9840.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9842.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9843.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9845.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9846.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9848.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9849.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9851.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9852.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9854.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9855.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9857.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9858.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9860.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9861.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9863.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9864.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9866.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9867.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9869.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9870.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9872.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9873.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9875.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9876.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9878.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9878.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9879.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9880.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9881.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9882.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9884.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9884.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9885.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9886.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9887.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9888.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9890.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9890.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9891.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9892.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9893.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9894.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9896.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9896.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9897.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9898.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9899.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9900.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9902.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9902.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9903.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9904.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9905.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9906.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9908.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9908.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9909.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9910.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9911.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9912.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9914.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9914.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9915.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9916.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9917.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9918.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9920.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9920.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9921.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9922.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9923.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9923.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9924.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9925.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9926.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9927.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9929.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9930.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9932.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9933.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9935.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9936.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9938.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9939.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9941.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9942.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9944.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9945.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9947.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9948.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9950.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9951.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9953.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9954.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9956.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9957.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9959.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9960.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9962.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9963.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9965.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9966.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9968.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9969.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9971.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9972.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9974.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9975.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9977.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9978.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9980.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9981.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9983.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9984.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9986.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9987.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9989.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9990.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9992.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9993.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9995.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9995.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9996.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9997.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9998.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9998.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9999.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10000.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10001.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10001.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10002.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10003.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10004.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10004.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10005.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10006.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10007.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10008.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10010.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10010.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10011.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10012.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10013.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10014.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10015.000000] [simulator/INFO] on12 is sleeping +[on2:ON:(3) 10076.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 10076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10077.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10078.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10080.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10081.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10083.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10084.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10086.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10087.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10089.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10090.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10092.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10093.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10095.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10096.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10098.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10099.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10101.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10102.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10104.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10105.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10107.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10108.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10110.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10111.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10113.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10114.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10116.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10117.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10119.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10120.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10122.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10123.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10125.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10126.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10128.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10129.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10131.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10132.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10134.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10135.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10137.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10138.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10140.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10141.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10143.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10144.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10146.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10147.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10149.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10150.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10152.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10153.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10155.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10156.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10158.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10159.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10161.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10162.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10164.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10165.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10167.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10168.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10170.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10171.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10173.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10174.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10176.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10177.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10179.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10180.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10182.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10183.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10185.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10186.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10188.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10189.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10191.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10192.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10194.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10195.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10197.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10198.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10200.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10201.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10203.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10204.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10206.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10207.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10209.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10210.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10212.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10213.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10215.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10216.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10218.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10219.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10221.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10222.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10224.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10225.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10227.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10228.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10230.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10231.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10233.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10234.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10236.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 10236.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 10236.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 10236.000000] [simulator/INFO] on2 try to forward a hint +[on7:ON:(8) 10237.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10237.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10238.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10239.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10240.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10241.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10243.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10243.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10244.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10245.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10246.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10247.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10249.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10249.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10250.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10251.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10252.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10253.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10255.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10255.000000] [simulator/INFO] on7 try to forward a hint +[on2:ON:(3) 10256.000000] [simulator/INFO] on2 fail to forward a hint +[on7:ON:(8) 10256.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10257.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 10257.000000] [simulator/INFO] on2 is sleeping +[on7:ON:(8) 10258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10258.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10259.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10261.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10261.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10262.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10263.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10264.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10265.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10267.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10267.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10268.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10269.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10270.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10271.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10273.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10273.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10274.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10275.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10276.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10277.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10279.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10279.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10280.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10281.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10282.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10283.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10285.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10285.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10286.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10287.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10288.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10288.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10289.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10290.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10291.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10291.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10292.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10293.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10294.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10294.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10295.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10296.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10297.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10297.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10298.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10299.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10300.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10300.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10301.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10302.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10303.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10303.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10304.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10305.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10306.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10306.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10307.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10308.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10309.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10309.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10310.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10311.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10312.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10312.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10313.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10314.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10315.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10315.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10316.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10317.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10318.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10318.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10319.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10320.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10321.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10321.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10322.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10323.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10324.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10324.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10325.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10326.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10327.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10327.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10328.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10329.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10330.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10330.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10331.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10332.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10333.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10333.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10334.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10335.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10336.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10336.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10337.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10338.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10339.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10339.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10340.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10341.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10342.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10342.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10343.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10344.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10345.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10345.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10346.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10347.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10348.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10348.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10349.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10350.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10351.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10351.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10352.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10353.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10354.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10354.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10355.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10356.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10357.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10357.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10358.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10359.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10360.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10360.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10361.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10362.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10363.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10363.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10364.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10365.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10366.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10366.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10367.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10368.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10369.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10370.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10372.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10372.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10373.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10374.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10375.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10376.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10378.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10378.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10379.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10380.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10381.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10382.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10384.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10384.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10385.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10386.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10387.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10388.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10390.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10390.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10391.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10392.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10393.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10394.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10396.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10396.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10397.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10398.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10399.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10400.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10402.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10402.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10403.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10404.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10405.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10406.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10408.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10408.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10409.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10410.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10411.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10412.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10414.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10414.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10415.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10416.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 11304.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 11304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11305.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11306.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11308.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11308.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11309.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11310.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11311.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11312.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11314.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11314.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11315.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11316.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11317.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11318.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11320.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11320.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11321.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11322.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11323.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11324.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11326.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11326.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11327.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11328.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11329.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11330.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11332.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11332.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11333.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11334.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11335.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11336.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11338.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11338.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11339.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11340.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11341.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11342.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11344.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11345.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11347.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11348.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11350.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11351.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11353.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11354.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11356.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11357.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11359.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11360.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11362.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11363.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11365.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11366.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11368.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11369.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11371.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11372.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11374.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11375.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11377.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11378.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11380.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11381.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11383.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11384.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11386.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11387.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11389.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11390.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11392.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11393.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11395.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11396.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11398.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11399.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11401.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11402.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11404.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11405.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11407.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11408.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11410.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11411.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11413.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11414.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11416.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11417.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11419.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11420.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11422.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11423.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11425.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11426.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11428.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11429.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11431.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11432.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11434.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11435.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11437.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11438.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11440.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11441.000000] [simulator/INFO] on3 fail to forward a hint +[on7:ON:(8) 11441.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 11441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 11442.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 11442.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 11442.000000] [simulator/INFO] on7 try to forward a hint +[on3:ON:(4) 11443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11443.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11444.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11446.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11447.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11449.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11450.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11452.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11453.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11455.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11456.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11458.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11459.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11461.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11462.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11464.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11465.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11467.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11468.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11470.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11471.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11473.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11474.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11476.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11477.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11479.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11480.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11482.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11483.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11484.000000] [simulator/INFO] on3 is sleeping +[on9:ON:(10) 11552.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 11553.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11554.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11555.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11556.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11557.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11558.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11559.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11560.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11561.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11562.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11563.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11564.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11565.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11566.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11567.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11568.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11569.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11570.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11571.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11572.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11573.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11574.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11575.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11576.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11577.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11578.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11579.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11580.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11581.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11582.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11583.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11584.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11585.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11586.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11587.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11588.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11589.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11590.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11591.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11592.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11593.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11594.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11595.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11596.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11597.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11598.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11599.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11600.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11601.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11602.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11603.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11604.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11605.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11606.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11607.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11608.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11609.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11610.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11611.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11612.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11613.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11614.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11615.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11616.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11617.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11618.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11619.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11620.000000] [simulator/INFO] on9 could not receive any data +[on7:ON:(8) 11621.000000] [simulator/INFO] on7 fail to forward a hint +[on9:ON:(10) 11621.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11622.000000] [simulator/INFO] on9 could not receive any data +[on7:ON:(8) 11622.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 11623.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11624.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11625.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11626.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11627.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11628.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11629.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11630.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11631.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11632.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11633.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11634.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11635.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11636.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11637.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11638.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11639.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11640.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11641.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11642.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11643.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11644.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11645.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11646.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11647.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11648.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11649.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11650.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11651.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11652.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11653.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11654.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11655.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11656.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11657.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11658.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11659.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11660.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11661.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11662.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11663.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11664.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11665.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11666.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11667.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11668.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11669.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11670.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11671.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11672.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11673.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11674.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11675.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11676.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11677.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11678.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11679.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11680.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11681.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11682.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11683.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11684.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11685.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11686.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11687.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11688.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11689.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11690.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11691.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11692.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11693.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11694.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11695.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11696.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11697.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11698.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11699.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11700.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11701.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11702.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11703.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11704.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11705.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11706.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11707.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11708.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11709.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11710.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11711.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11712.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11713.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11714.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11715.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11716.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11717.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11718.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11719.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11720.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11721.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11722.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11723.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11724.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11725.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11726.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11727.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11727.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 11728.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11728.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11729.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11730.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11730.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11731.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11732.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11732.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11732.000000] [simulator/INFO] on9 is sleeping +[on6:ON:(7) 11733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11794.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11795.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11796.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11797.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11798.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11799.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11800.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11801.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11802.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11803.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11804.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11805.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11806.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11807.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11808.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11809.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11810.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11811.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11812.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11813.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11814.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11815.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11816.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11817.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11818.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11819.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11820.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11821.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11822.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11823.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11824.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11825.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11826.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11827.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11828.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11829.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11830.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11831.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11832.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11833.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11834.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11835.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11836.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11837.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11838.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11839.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11840.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11841.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11842.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11843.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11844.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11845.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11846.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11847.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11848.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11849.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11850.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11851.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11852.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11853.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11854.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11855.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11856.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11857.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11858.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11859.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11860.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11861.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11862.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11863.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11864.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11865.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11866.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11867.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11868.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11869.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11869.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 11870.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11870.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11871.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11871.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11872.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11872.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11873.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11873.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11874.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11874.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11875.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11875.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11876.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11876.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11877.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11877.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11878.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11878.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11879.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11879.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11880.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11880.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11881.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11881.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11882.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11882.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11883.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11883.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11884.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11884.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11885.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11885.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11886.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11886.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11887.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11887.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11888.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11888.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11889.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11889.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11890.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11890.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11891.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11891.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11892.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11892.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11893.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11893.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11894.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11894.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11895.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11895.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11896.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11896.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11897.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11897.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11898.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11898.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11899.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11899.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11900.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11900.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11901.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11901.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11902.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11902.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11903.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11903.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11904.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11904.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11905.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11905.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11906.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11906.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11907.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11907.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 11907.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11908.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11909.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11910.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11911.000000] [simulator/INFO] on5 could not receive any data +[on2:ON:(3) 11911.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 11911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 11912.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11912.000000] [simulator/INFO] on5 could not receive any data +[on2:ON:(3) 11912.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 11912.010000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11912.010000] [simulator/INFO] on5 received a forwarded hint successfully +[on5:ON:(6) 11912.010000] [simulator/INFO] on5 add a new hint at 12921.000000 for a duration of 180.000000 +[on2:ON:(3) 11913.010000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11913.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11913.010000] [simulator/INFO] on5 try to forward a hint +[on2:ON:(3) 11913.010000] [simulator/INFO] on2 try to forward a hint +[on5:ON:(6) 11913.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11914.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11914.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11914.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11916.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11916.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11916.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11917.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11917.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11918.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11919.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11919.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11919.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11921.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11921.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11921.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11922.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11922.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11922.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11924.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11924.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11924.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11925.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11925.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11926.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11927.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11927.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11927.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11929.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11929.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11929.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11930.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11930.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11930.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11932.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11932.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11932.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11933.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11933.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11934.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11935.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11935.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11935.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11937.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11937.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11937.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11938.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11938.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11938.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11940.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11940.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11940.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11941.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11941.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11942.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11943.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11943.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11943.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11945.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11945.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11945.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11946.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11946.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11946.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11948.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11948.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11948.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11949.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11949.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11950.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11951.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11951.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11951.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11953.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11953.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11953.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11954.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11954.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11954.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11956.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11956.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11956.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11957.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11957.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11958.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11959.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11959.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11959.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11961.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11961.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11961.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11962.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11962.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11962.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11964.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11964.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11964.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11965.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11965.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11966.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11967.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11967.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11967.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11969.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11969.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11969.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11970.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11970.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11970.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11972.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11972.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11972.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11973.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11973.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11974.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11975.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11975.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11975.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11977.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11977.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11977.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11978.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11978.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11978.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11980.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11980.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11980.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11981.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11981.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11982.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11983.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11983.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11983.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11985.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11985.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11985.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11986.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11986.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11986.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11988.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11988.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11988.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11989.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11989.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11990.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11991.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11991.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11991.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11993.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11993.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11993.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11994.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11994.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11994.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11996.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11996.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11996.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11997.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11997.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11998.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11999.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11999.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11999.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12001.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12001.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12001.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12002.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12002.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12002.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12004.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12004.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12004.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12005.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12005.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12006.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12007.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12007.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12007.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12009.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12009.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12009.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12010.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12010.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12010.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12012.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12012.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12012.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12013.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12013.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12014.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12015.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12015.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12015.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12017.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12017.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12017.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12018.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12018.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12018.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12020.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12020.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12020.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12021.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12021.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12022.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12023.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12023.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12023.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12025.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12025.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12025.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12026.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12026.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12026.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12028.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12028.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12028.510000] [simulator/INFO] on5 fail to forward a hint +[on4:ON:(5) 12029.000000] [simulator/INFO] on4 wakes up +[on5:ON:(6) 12029.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12029.810000] [simulator/INFO] on5 try to forward a hint +[on2:ON:(3) 12029.810000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 12029.810000] [simulator/INFO] on4 received a forwarded hint successfully +[on4:ON:(5) 12029.810000] [simulator/INFO] on4 add a new hint at 12921.000000 for a duration of 180.000000 +[on4:ON:(5) 12030.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12030.810000] [simulator/INFO] on4 try to forward a hint +[on2:ON:(3) 12030.810000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 12030.810000] [simulator/INFO] on2 try to forward a hint +[on4:ON:(5) 12031.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12032.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12032.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12032.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12034.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12034.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12034.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12035.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12035.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12035.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12037.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12037.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12037.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12038.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12038.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12039.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12040.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12040.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12040.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12042.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12042.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12042.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12043.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12043.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12043.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12045.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12045.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12045.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12046.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12046.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12047.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12048.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12048.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12048.710000] [simulator/INFO] on4 fail to forward a hint +[on5:ON:(6) 12049.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12049.300000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 12050.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12050.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12050.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12051.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12051.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12051.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12053.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12053.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12053.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12054.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12054.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12055.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12056.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12056.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12056.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12058.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12058.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12058.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12059.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12059.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12059.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12061.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12061.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12061.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12062.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12062.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12063.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12064.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12064.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12064.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12066.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12066.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12066.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12067.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12067.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12067.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12069.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12069.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12069.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12070.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12070.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12071.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12072.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12072.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12072.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12074.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12074.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12074.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12075.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12075.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12075.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12077.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12077.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12077.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12078.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12078.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12079.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12080.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12080.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12080.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12082.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12082.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12082.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12083.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12083.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12083.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12085.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12085.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12085.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12086.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12086.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12087.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12088.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12088.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12088.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12090.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12090.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12090.310000] [simulator/INFO] on4 fail to forward a hint +[on2:ON:(3) 12091.000000] [simulator/INFO] on2 fail to forward a hint +[on4:ON:(5) 12091.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12091.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12091.910000] [simulator/INFO] on4 fail to forward a hint +[on2:ON:(3) 12092.000000] [simulator/INFO] on2 is sleeping +[on4:ON:(5) 12093.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12093.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12093.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12094.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12094.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12095.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12096.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12096.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12096.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12098.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12098.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12098.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12099.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12099.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12099.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12101.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12101.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12101.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12102.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12102.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12103.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12104.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12104.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12104.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12106.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12106.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12106.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12107.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12107.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12107.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12109.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12109.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12109.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12110.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12110.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12111.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12112.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12112.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12112.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12114.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12114.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12114.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12115.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12115.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12115.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12117.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12117.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12117.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12118.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12118.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12119.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12120.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12120.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12120.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12122.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12122.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12122.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12123.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12123.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12123.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12125.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12125.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12125.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12126.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12126.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12127.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12128.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12128.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12128.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12130.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12130.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12130.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12131.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12131.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12131.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12133.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12133.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12133.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12134.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12134.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12135.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12136.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12136.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12136.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12138.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12138.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12138.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12139.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12139.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12139.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12141.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12141.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12141.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12142.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12142.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12143.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12144.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12144.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12144.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12146.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12146.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12146.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12147.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12147.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12147.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12149.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12149.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12149.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12150.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12150.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12151.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12152.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12152.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12152.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12154.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12154.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12154.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12155.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12155.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12155.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12157.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12157.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12157.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12158.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12158.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12159.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12160.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12160.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12160.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12162.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12162.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12162.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12163.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12163.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12163.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12165.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12165.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12165.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12166.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12166.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12167.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12168.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12168.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12168.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12170.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12170.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12170.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12171.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12171.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12171.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12173.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12173.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12173.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12174.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12174.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12175.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12176.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12176.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12176.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12178.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12178.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12178.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12179.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12179.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12179.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12181.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12181.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12181.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12182.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12182.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12183.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12184.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12184.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12184.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12186.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12186.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12186.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12187.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12187.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12187.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12189.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12189.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12189.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12190.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12190.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12191.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12192.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12192.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12192.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12194.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12194.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12194.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12195.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12195.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12195.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12197.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12197.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12197.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12198.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12198.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12199.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12200.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12200.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12200.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12202.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12202.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12202.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12203.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12203.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12203.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12205.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12205.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12205.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12206.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12206.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12207.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12208.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12208.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12208.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12209.010000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 12467.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 12467.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12468.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12469.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12471.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12471.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12472.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12473.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12474.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12475.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12477.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12477.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12478.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12479.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12480.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12481.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12483.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12483.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12484.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12485.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12486.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12486.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12487.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12488.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12489.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12489.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12490.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12491.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12492.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12492.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12493.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12494.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12495.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12495.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12496.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12497.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12498.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12498.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12499.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12500.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12501.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12501.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12502.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12503.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12504.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12504.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12505.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12506.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12507.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12507.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12508.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12509.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12510.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12510.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12511.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12512.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12513.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12513.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12514.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12515.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12516.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12516.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12517.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12518.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12519.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12519.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12520.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12521.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12522.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12522.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12523.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12524.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12525.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12525.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12526.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12527.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12528.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12528.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12529.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12530.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12531.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12531.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12532.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12533.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12534.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12534.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12535.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12536.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12537.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12537.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12538.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12539.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12540.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12540.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12541.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12542.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12543.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12543.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12544.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12545.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12546.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12546.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12547.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12548.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12549.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12549.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12550.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12551.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12552.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12552.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12553.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12554.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12555.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12555.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12556.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12557.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12558.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12558.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12559.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12560.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12561.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12561.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12562.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12563.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12564.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12564.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12565.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12566.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12567.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12567.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12568.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12569.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12570.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12570.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12571.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12572.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12573.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12573.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12574.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12575.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12576.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12576.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12577.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12578.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12579.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12579.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12580.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12581.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12582.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12582.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12583.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12584.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12585.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12585.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12586.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12587.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12588.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12588.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12589.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12590.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12591.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12591.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12592.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12593.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12594.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12594.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12595.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12596.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12597.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12597.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12598.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12599.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12600.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12600.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12601.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12602.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12603.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12603.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12604.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12605.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12606.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12606.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12607.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12608.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12609.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12609.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12610.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12611.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12612.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12612.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12613.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12614.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12615.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12615.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12616.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12617.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12618.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12618.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12619.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12620.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12621.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12621.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12622.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12623.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12624.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12624.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12625.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12626.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12627.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12627.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12628.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12629.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12630.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12630.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12631.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12632.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12633.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12633.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12634.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12635.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12636.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12636.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12637.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12638.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12639.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12639.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12640.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12641.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12642.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12642.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12643.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12644.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12645.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12645.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12646.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12647.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 12711.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 12711.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12712.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12712.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12713.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12714.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12715.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12715.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12716.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12717.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12718.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12718.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12719.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12720.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12721.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12721.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12722.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12723.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12724.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12724.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12725.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12726.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12727.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12727.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12728.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12729.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12730.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12730.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12731.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12732.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12733.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12734.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12736.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12736.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12737.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12738.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12739.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12740.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12742.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12742.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12743.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12744.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12745.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12746.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12748.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12748.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12749.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12750.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12751.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12752.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12754.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12754.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12755.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12756.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12757.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12758.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12760.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12760.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12761.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12762.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12763.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12764.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12766.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12766.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12767.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12768.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12769.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12770.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12772.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12772.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12773.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12774.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12775.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12776.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12778.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12778.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12779.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12780.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12781.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12782.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12784.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12784.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12785.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12786.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12787.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12788.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12790.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12790.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12791.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12792.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12793.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12794.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12796.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12797.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12799.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12800.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12802.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12803.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12805.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12806.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12808.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12809.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12811.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12812.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12814.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12815.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12817.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12818.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12820.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12821.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12823.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12824.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12826.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12827.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12829.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12830.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12832.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12833.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12835.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12836.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12838.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12839.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12841.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12842.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12844.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12845.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12847.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12848.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12850.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12851.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12853.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12854.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12856.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12856.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12857.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12858.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12859.000000] [simulator/INFO] on10 is observing his environment... +[on11:ON:(12) 12859.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 12859.000000] [simulator/INFO] on11 is observing his environment... +[on10:ON:(11) 12859.000000] [simulator/INFO] on10 try to forward a hint +[on11:ON:(12) 12860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12860.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12861.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12863.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12864.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12866.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12867.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12869.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12870.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12872.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12873.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12875.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12876.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12878.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12879.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12881.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12882.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12884.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12885.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12887.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12888.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12890.000000] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 12891.000000] [simulator/INFO] on10 fail to forward a hint +[on11:ON:(12) 12891.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12892.000000] [simulator/INFO] on11 is observing his environment... +[on10:ON:(11) 12892.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 12893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12893.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12894.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12896.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12897.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12899.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12900.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12902.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12903.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12905.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12906.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12908.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12909.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12911.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12912.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12914.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12915.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12917.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12918.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12920.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12921.000000] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 12921.000000] [simulator/INFO] on0 wakes up +[on5:ON:(6) 12921.000000] [simulator/INFO] on5 wakes up +[on4:ON:(5) 12921.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 12922.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12923.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12923.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12924.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12924.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12925.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12925.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12926.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12926.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12927.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12927.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12928.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12928.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12929.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12929.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12930.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12930.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12931.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12931.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12932.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12932.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12933.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12933.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12934.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12934.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12935.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12935.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12936.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12936.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12937.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12937.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12938.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12938.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12939.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12939.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12940.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12940.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12941.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12941.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12942.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12942.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12943.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12943.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12944.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12944.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12945.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12945.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12946.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12946.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12947.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12947.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12948.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12948.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12949.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12949.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12950.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12950.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12951.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12951.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12952.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12952.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12953.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12953.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12954.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12954.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12955.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12955.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12956.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12956.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12957.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12957.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12958.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12958.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12959.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12959.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12960.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12960.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12961.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12961.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 received data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 received a hint along with data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 12961.010320] [simulator/INFO] on0 sent data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12961.020320] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 12961.020320] [simulator/INFO] on4 received a forwarded hint successfully +[on4:ON:(5) 12961.020320] [simulator/INFO] on4 add a new hint at 15336.000000 for a duration of 180.000000 +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 12961.020640] [simulator/INFO] on0 sent a hint successfully +[on4:ON:(5) 12962.020640] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12962.020640] [simulator/INFO] on4 try to forward a hint +[on5:ON:(6) 12962.020640] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 12962.020640] [simulator/INFO] on5 try to forward a hint +[on4:ON:(5) 12962.320640] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 received data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 received a hint along with data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 is observing his environment... +[on0:ON:(1) 13002.630960] [simulator/INFO] on0 sent data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13003.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13004.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13005.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13005.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13006.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13007.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13008.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13008.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13009.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13010.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13011.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13011.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13012.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13013.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13014.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13014.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13015.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13016.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13017.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13017.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13018.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13019.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13020.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13020.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13021.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13022.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13023.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13023.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13024.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13025.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13026.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13026.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13027.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13028.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13029.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13029.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13030.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13031.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13032.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13032.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13033.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13034.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13035.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13035.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13036.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13037.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13038.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13038.630960] [simulator/INFO] on4 try to forward a hint +[on11:ON:(12) 13039.000000] [simulator/INFO] on11 fail to forward a hint +[on4:ON:(5) 13039.630960] [simulator/INFO] on4 fail to forward a hint +[on11:ON:(12) 13040.000000] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 13040.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13041.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13041.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13042.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13043.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13044.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13044.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13045.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13046.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13047.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13047.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13048.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13049.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13050.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13050.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13051.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13052.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13053.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13053.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13054.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13055.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13056.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13056.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13057.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13058.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13059.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13059.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13060.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13061.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13062.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13062.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13063.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13064.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13065.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13065.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13066.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13067.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13068.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13068.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13069.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13070.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13071.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13071.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13072.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13073.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13074.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13074.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13075.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13076.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13077.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13077.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13078.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13079.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13080.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13080.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13081.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13082.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13083.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13083.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13084.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13085.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13086.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13086.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13087.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13088.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13089.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13089.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13090.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13091.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13092.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13092.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13093.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13094.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13095.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13095.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13096.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13097.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13098.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13098.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13099.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13100.630960] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 13101.000000] [simulator/INFO] on5 fail to forward a hint +[on4:ON:(5) 13101.000000] [simulator/INFO] on4 is sleeping +[on0:ON:(1) 13101.000000] [simulator/INFO] on0 is sleeping +[on5:ON:(6) 13102.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 13504.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 13505.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13506.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13507.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13508.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13509.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13510.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13511.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13512.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13513.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13514.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13515.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13516.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13517.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13518.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13519.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13520.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13521.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13522.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13523.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13524.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13525.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13526.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13527.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13528.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13529.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13530.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13531.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13532.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13533.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13534.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13535.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13536.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13537.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13538.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13539.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13540.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13541.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13542.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13543.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13544.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13545.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13546.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13547.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13548.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13549.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13550.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13551.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13552.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13553.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13554.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13555.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13556.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13557.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13558.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13559.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13560.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13561.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13562.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13563.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13564.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13565.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13566.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13567.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13568.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13569.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13570.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13571.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13572.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13573.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13574.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13575.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13576.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13577.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13578.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13579.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13580.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13581.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13582.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13583.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13584.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13585.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13586.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13587.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13588.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13589.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13590.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13591.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13592.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13593.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13594.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13595.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13596.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13597.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13598.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13599.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13600.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13601.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13602.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13603.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13604.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13605.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13606.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13607.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13608.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13609.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13610.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13611.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13612.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13613.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13614.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13615.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13616.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13617.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13618.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13619.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13620.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13621.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13622.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13623.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13624.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13625.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13626.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13627.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13628.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13629.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13630.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13631.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13632.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13633.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13634.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13635.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13636.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13637.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13638.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13639.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13640.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13641.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13642.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13643.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13644.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13645.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13646.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13647.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13648.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13649.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13650.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13651.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13652.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13653.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13654.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13655.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13656.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13657.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13658.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13659.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13660.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13661.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13662.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13663.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13664.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13665.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13666.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13667.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13668.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13669.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13670.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13671.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13672.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13673.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13674.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13675.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13676.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13677.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13678.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13679.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13680.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13681.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13682.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13683.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13684.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13684.000000] [simulator/INFO] on8 is sleeping +[on1:ON:(2) 14025.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 14026.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14027.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14028.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14029.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14030.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14031.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14032.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14033.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14034.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14035.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14036.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14037.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14038.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14039.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14040.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14041.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14042.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14043.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14044.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14045.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14046.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14047.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14048.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14049.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14050.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14051.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14052.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14053.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14205.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 14705.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 14705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14731.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14732.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14733.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14734.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14735.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14736.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14737.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14738.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14739.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14740.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14741.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14742.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14743.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14744.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14745.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14746.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14747.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14748.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14749.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14750.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14751.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14752.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14753.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14754.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14755.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14756.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14757.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14758.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14759.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14760.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14761.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14762.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14763.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14764.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14765.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14766.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14767.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14768.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14769.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14770.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14771.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14772.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14773.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14774.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14775.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14776.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14777.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14778.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14779.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14780.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14781.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14782.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14783.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14784.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14785.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14786.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14787.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14788.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14789.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14790.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14791.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14792.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14793.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14794.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14795.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14796.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14797.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14798.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14799.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14800.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14801.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14802.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14803.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14804.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14805.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14806.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14807.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14808.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14809.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14810.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14811.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14812.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14813.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14814.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14815.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14816.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14817.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14818.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14819.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14820.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14821.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14822.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14823.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14824.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14825.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14826.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14885.000000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 15161.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 15161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15220.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 15220.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 15220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 15221.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 15221.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 15221.000000] [simulator/INFO] on4 try to forward a hint +[on10:ON:(11) 15222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15255.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15257.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15259.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15336.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 15336.000000] [simulator/INFO] on0 wakes up +[on10:ON:(11) 15337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 15337.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 15338.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 15339.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15339.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 15340.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 15341.010320] [simulator/INFO] on10 is sleeping +[on4:ON:(5) 15516.000000] [simulator/INFO] on4 fail to forward a hint +[on0:ON:(1) 15516.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 15517.000000] [simulator/INFO] on4 is sleeping +[on1:ON:(2) 15777.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 15778.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15779.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15780.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15781.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15782.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15783.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15784.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15785.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15786.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15787.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15788.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15789.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15790.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15791.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15792.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15793.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15794.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15795.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15796.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15797.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15798.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15799.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15800.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15801.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15802.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15803.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15804.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15805.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15806.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15807.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15808.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15809.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15810.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15811.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15812.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15813.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15814.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15815.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15816.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15817.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15818.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15819.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15820.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15821.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15822.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15823.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15824.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15825.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15826.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15827.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15828.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15829.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15830.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15831.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15832.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15833.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15834.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15835.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15836.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15837.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15838.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15839.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15840.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15841.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15842.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15843.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15844.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15845.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15846.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15847.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15848.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15849.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15850.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15851.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15852.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15853.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15854.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15855.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15856.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15857.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15858.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15859.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15860.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15861.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15862.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15863.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15864.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15865.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15866.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15867.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15868.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15869.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15870.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15871.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15872.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15873.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15874.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15875.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15876.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15877.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15877.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 15878.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15878.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15879.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15879.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15880.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15880.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15881.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15881.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15882.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15882.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15883.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15883.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15884.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15884.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15885.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15885.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15886.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15886.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15887.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15887.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15888.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15888.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15889.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15889.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15890.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15890.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15891.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15891.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15892.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15892.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15893.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15893.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15894.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15894.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15895.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15895.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15896.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15896.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15897.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15897.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15898.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15898.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15899.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15899.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15900.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15900.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15901.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15901.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15902.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15902.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15903.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15903.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15904.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15904.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15905.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15905.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15906.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15906.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15907.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15907.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15908.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15908.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15909.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15909.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15910.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15910.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15911.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15911.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15912.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15912.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15913.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15913.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15914.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15914.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15915.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15915.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15916.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15916.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15917.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15917.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15918.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15918.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15919.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15919.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15920.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15920.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15921.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15921.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15922.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15922.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15923.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15923.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15924.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15924.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15925.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15925.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15926.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15926.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15927.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15927.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15928.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15928.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15929.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15929.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15930.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15930.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15931.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15931.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15932.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15932.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15933.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15933.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15934.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15934.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15935.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15935.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15936.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15936.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15937.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15937.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15938.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15938.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15939.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15939.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15940.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15940.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15941.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15941.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15942.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15942.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15943.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15943.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15944.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15944.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15945.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15945.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15946.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15946.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15947.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15947.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15948.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15948.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15949.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15949.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15950.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15950.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15951.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15951.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15952.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15952.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15953.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15953.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15954.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15954.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15955.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15955.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15956.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15956.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15957.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15957.000000] [simulator/INFO] on1 is sleeping +[on9:ON:(10) 15957.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15959.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15961.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15963.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15965.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15967.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15969.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15969.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 15969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 15970.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15970.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15971.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15971.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15972.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15972.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15973.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15973.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15974.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15974.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15975.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15975.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15976.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15976.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15977.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15977.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15978.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15978.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15979.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15979.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15980.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15980.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15981.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15981.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15982.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15982.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15983.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15983.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15984.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15984.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15985.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15985.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15986.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15986.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15987.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15987.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15988.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15988.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15989.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15989.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15990.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15990.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15991.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15991.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15992.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15992.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15993.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15993.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15994.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15994.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15995.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15995.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15996.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15996.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15997.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15997.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15998.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15998.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15999.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15999.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16000.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16000.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16001.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16001.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16002.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16002.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16003.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16003.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16004.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16004.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16005.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16005.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16006.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16006.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16007.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16007.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16008.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16008.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16009.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16009.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16010.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16010.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16011.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16011.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16012.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16012.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16013.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16013.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16014.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16014.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16015.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16015.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16016.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16016.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16017.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16017.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16018.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16018.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16019.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16019.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16020.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16020.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16021.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16021.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16022.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16022.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16023.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16023.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16024.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16024.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16025.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16025.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16026.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16026.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16027.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16027.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16028.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16028.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16029.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16029.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16030.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16030.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16031.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16031.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16032.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16032.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16033.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16033.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16034.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16034.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16035.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16035.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16036.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16036.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16037.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16037.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16038.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16038.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16039.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16039.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16040.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16040.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16041.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16041.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16042.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16042.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16043.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16043.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16044.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16044.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16045.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16045.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16046.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16046.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16047.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16047.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16048.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16048.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16049.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16049.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16050.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16050.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16051.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16051.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16052.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16052.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16053.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16053.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16054.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16054.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16055.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16055.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16056.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16056.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16057.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16057.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 16057.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 16058.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16059.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16060.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16061.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16062.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16063.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16064.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16065.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16066.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16067.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16068.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16069.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16070.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16071.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16072.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16073.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16074.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16075.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16076.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16077.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16078.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16079.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16080.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16081.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16082.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16083.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16084.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16085.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16086.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16087.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16088.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16089.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16090.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16091.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16092.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16093.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16094.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16095.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16096.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16097.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16098.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16099.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16100.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16101.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16102.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16103.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16104.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16105.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16106.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16107.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16108.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16109.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16110.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16111.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16112.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16113.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16114.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16115.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16116.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16117.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16118.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16119.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16120.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16121.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16122.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16123.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16124.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16125.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16126.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16127.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16128.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16129.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16130.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16131.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16132.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16133.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16134.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16135.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16136.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16138.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16139.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16140.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16142.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16144.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16146.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16148.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16149.000000] [simulator/INFO] on5 is sleeping +[on11:ON:(12) 16425.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 16425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16599.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16601.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16605.000000] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 17204.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 17205.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17206.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17207.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17208.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17209.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17210.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17211.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17212.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17213.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17214.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17215.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17216.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17217.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17218.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17219.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17220.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17221.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17222.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17223.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17224.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17225.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17226.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17227.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17228.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17229.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17230.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17231.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17232.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17233.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17234.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17235.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17236.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17237.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17238.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17239.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17240.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17241.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17242.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17243.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17244.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17245.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17246.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17247.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17248.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17249.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17250.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17251.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17252.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17253.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17254.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17255.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17256.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17257.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17258.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17259.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17260.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17261.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17262.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17263.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17264.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17265.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17266.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17267.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17268.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17269.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17270.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17271.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17272.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17273.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17274.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17275.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17276.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17277.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17278.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17279.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17280.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17281.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17282.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17283.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17284.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17285.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17286.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17287.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17288.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17289.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17290.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17291.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17292.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17293.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17294.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17295.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17296.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17297.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17298.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17299.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17300.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17301.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17302.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17303.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17304.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17305.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17306.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17307.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17308.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17309.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17310.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17311.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17312.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17313.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17314.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17315.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17316.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17317.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17318.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17319.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17320.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17321.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17322.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17323.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17324.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17325.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17326.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17327.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17328.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17329.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17330.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17331.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17332.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17333.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17334.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17335.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17336.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17337.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17338.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17339.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17340.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17341.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17342.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17343.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17344.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17345.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17346.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17347.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17348.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17349.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17350.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17351.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17352.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17353.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17354.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17355.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17356.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17357.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17358.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17359.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17360.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17361.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17362.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17363.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17364.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17365.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17366.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17367.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17368.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17369.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17370.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17371.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17372.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17373.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17374.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17375.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17376.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17377.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17378.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17379.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17380.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17381.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17382.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17383.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17384.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17384.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 17425.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 17425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17426.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17428.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17430.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17432.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17434.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17436.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17438.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17440.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17442.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17444.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17446.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17448.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17450.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17452.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17454.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17456.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17457.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17457.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 17457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17458.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17458.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17459.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17460.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17460.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17461.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17462.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17462.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17463.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17464.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17464.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17465.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17466.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17466.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17467.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17468.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17468.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17469.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17470.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17470.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17471.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17472.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17472.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17473.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17474.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17474.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17475.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17476.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17476.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17477.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17478.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17478.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17479.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17480.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17480.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17481.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17482.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17482.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17483.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17484.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17484.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17485.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17486.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17486.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17487.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17488.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17488.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17489.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17490.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17490.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17491.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17492.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17493.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17494.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17495.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17496.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17497.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17498.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17499.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17500.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17501.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17502.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17503.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17504.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17505.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17506.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17506.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17507.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17508.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17509.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17510.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17511.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17512.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17513.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17514.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17515.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17516.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17517.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17518.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17519.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17520.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17521.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17522.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17523.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17524.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17525.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17526.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17527.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17528.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17529.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17530.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17531.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17532.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17533.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17534.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17535.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17536.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17537.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17538.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17539.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17540.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17541.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17542.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17543.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17544.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17545.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17546.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17547.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17548.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17549.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17550.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17551.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17552.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17553.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17554.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17555.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17556.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17557.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17558.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17559.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17560.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17561.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17562.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17563.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17564.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17565.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17566.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17567.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17568.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17569.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17570.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17571.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17572.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17573.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17574.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17575.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17576.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17577.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17578.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17579.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17580.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17581.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17582.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17583.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17584.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17585.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17586.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17587.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17588.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17589.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17590.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17591.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17592.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17593.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17594.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17595.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17596.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17597.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17598.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17599.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17600.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17601.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17602.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17603.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17604.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17605.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 17605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17637.000000] [simulator/INFO] on3 is sleeping +[on6:ON:(7) 17870.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 17871.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17872.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17873.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17874.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17875.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17876.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17877.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17878.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17879.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17880.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17881.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17882.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17883.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17884.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17885.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17886.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17887.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17888.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17889.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17890.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17891.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17892.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17893.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17894.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17895.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17896.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17897.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17898.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17899.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17900.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17901.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17902.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17903.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17904.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17905.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17906.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17907.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17908.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17909.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17910.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17911.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17912.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17913.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17914.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17915.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17916.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17917.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17918.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17919.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17920.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17921.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17922.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17923.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17924.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17925.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17926.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17927.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17928.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17929.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17930.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17931.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17932.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17933.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17934.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17935.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17936.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17937.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17938.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17939.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17940.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17941.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17942.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17943.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17944.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17945.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17946.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17947.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17948.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17949.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17949.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 17949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 17950.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17950.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17951.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17951.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17952.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17952.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17953.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17953.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17954.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17954.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17955.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17955.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17956.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17956.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17957.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17957.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17958.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17958.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17959.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17959.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17960.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17960.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17961.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17961.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17962.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17962.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17963.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17963.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17964.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17964.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17965.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17965.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17966.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17966.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17967.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17967.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17968.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17968.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17969.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17969.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17970.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17970.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17971.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17971.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17972.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17972.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17973.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17973.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17974.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17974.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17975.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17975.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17976.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17976.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17977.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17977.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17978.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17978.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17979.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17979.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17980.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17980.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17981.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17981.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17982.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17982.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17983.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17983.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17984.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17984.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17985.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17985.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17986.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17986.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17987.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17987.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17988.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17988.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17989.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17989.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17990.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17990.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17991.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17991.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17992.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17992.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17993.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17993.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17994.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17994.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17995.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17995.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17996.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17996.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17997.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17997.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17998.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17998.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17999.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17999.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18000.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18000.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18001.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18001.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18002.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18002.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18003.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18003.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18004.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18004.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18005.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18005.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18006.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18006.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18007.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18007.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18008.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18008.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18009.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18009.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18010.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18010.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18011.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18011.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18012.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18012.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18013.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18013.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18014.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18014.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18015.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18015.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18016.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18016.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18017.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18017.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18018.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18018.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18019.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18019.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18020.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18020.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18021.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18021.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18022.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18022.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18023.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18023.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18024.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18024.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18025.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18025.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18026.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18026.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18027.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18027.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18028.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18028.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18029.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18029.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18030.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18030.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18031.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18031.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18032.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18032.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18033.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18033.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18034.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18034.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18035.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18035.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18036.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18036.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18037.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18037.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18038.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18038.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18039.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18039.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18040.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18040.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18041.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18041.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18042.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18042.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18043.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18043.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18044.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18044.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18045.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18045.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18046.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18046.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18047.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18047.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18048.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18048.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18049.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18049.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18050.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18050.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 18050.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 18051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18129.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 18342.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 18342.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18348.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18351.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18354.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18357.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18360.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18363.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18366.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18369.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18372.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18375.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18378.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18381.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18384.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18396.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18402.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18408.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18414.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18420.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18426.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18432.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18438.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18442.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18444.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18450.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18456.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18462.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18468.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18474.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18480.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18484.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18486.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18488.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18490.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18492.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18494.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18496.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18498.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18500.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18502.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18504.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18506.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18508.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18510.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18512.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18514.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18515.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 18515.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 18515.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 18516.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 18516.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18516.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 18516.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 18516.000000] [simulator/INFO] on10 try to forward a hint +[on5:ON:(6) 18517.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18518.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18519.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18520.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18521.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18522.000000] [simulator/INFO] on3 is sleeping +[on5:ON:(6) 18522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18690.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18690.000000] [simulator/INFO] on1 wakes up +[on5:ON:(6) 18691.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18691.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18692.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18692.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18693.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18693.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18694.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18694.000000] [simulator/INFO] on1 could not receive any data +[on10:ON:(11) 18695.000000] [simulator/INFO] on10 fail to forward a hint +[on5:ON:(6) 18695.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18695.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18696.000000] [simulator/INFO] on5 is sleeping +[on1:ON:(2) 18696.000000] [simulator/INFO] on1 could not receive any data +[on10:ON:(11) 18696.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 18697.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18698.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18699.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18700.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18701.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18702.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18703.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18704.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18705.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18706.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18707.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18708.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18709.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18710.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18711.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18712.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18713.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18714.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18715.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18716.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18717.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18718.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18719.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18720.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18721.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18722.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18723.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18724.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18725.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18726.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18727.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18728.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18729.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18730.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18731.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18732.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18733.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18734.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18735.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18736.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18737.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18738.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18739.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18740.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18741.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18742.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18743.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18744.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18745.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18746.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18747.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18748.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18749.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18750.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18751.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18752.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18753.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18754.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18755.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18756.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18757.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18758.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18759.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18760.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18761.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18762.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18763.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18764.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18765.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18766.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18767.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18768.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18769.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18770.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18771.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18772.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18773.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18774.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18775.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18776.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18777.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18778.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18779.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18780.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18781.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18782.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18783.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18784.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18785.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18786.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18787.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18788.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18789.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18790.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18791.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18792.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18793.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18794.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18795.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18796.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18797.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18798.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18799.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18800.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18801.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18802.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18803.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18804.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18805.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18806.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18807.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18808.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18809.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18810.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18811.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18812.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18813.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18814.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18815.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18816.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18817.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18818.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18819.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18820.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18821.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18822.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18823.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18824.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18825.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18826.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18827.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18828.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18829.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18830.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18831.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18832.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18833.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18834.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18835.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18836.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18837.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18838.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18839.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18840.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18841.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18842.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18843.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18844.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18845.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18846.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18847.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18848.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18849.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18850.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18851.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18852.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18853.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18854.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18855.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18856.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18857.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18858.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18859.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18860.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18861.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18862.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18863.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18864.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18865.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18866.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18867.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18868.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18869.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18870.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18870.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 19220.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 19220.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19221.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19222.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19224.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19226.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19228.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19230.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19232.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19234.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19236.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19238.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19240.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19242.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19244.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19246.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19248.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19250.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19252.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19254.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19256.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19258.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19260.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19262.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19264.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19266.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19268.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19270.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19272.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19274.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19276.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19278.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19280.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19282.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19284.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19286.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19288.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19290.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19292.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19294.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19296.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19298.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19300.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19302.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19304.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19306.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19308.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19310.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19310.000000] [simulator/INFO] on8 wakes up +[on11:ON:(12) 19311.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19311.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19312.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19312.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19313.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19313.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19314.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19314.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19315.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19315.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19316.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19316.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19317.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19317.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19318.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19318.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19319.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19319.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19320.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19320.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19321.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19321.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19322.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19322.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19323.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19323.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19324.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19324.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19325.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19325.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19326.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19326.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19327.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19327.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19328.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19328.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19329.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19329.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19330.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19330.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19331.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19331.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19332.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19332.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19333.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19333.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19334.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19334.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19335.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19335.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19336.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19336.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19337.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19337.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19338.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19338.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19339.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19339.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19340.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19340.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19341.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19341.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19342.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19342.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19343.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19343.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19344.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19344.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19345.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19345.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19345.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 19345.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19346.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19346.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19346.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19347.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19347.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19347.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19348.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19348.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19348.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19349.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19349.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19349.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19350.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19350.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19350.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19351.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19351.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19351.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19352.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19352.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19352.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19353.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19353.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19353.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19354.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19354.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19354.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19355.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19355.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19355.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19356.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19356.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19356.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19357.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19357.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19357.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19358.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19358.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19358.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19359.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19359.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19359.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19360.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19360.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19360.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19361.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19361.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19361.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19362.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19362.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19362.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19363.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19363.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19363.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19364.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19364.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19364.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19365.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19365.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19365.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19366.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19366.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19366.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19367.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19367.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19367.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19368.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19368.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19368.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19369.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19369.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19369.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19370.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19370.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19370.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19371.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19371.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19371.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19372.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19372.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19372.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19373.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19373.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19373.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19374.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19374.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19374.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19375.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19375.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19375.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19376.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19376.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19376.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19377.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19377.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19377.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19378.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19378.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19378.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19379.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19379.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19379.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19380.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19380.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19380.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19381.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19381.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19381.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19382.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19382.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19382.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19383.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19383.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19383.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19384.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19384.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19384.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19385.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19385.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19385.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19386.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19386.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19386.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19387.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19387.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19387.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19388.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19388.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19388.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19389.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19389.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19389.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19390.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19390.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19390.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19391.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19391.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19391.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19392.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19392.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19392.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19393.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19393.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19393.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19394.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19394.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19394.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19395.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19395.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19395.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19396.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19396.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19396.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19397.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19397.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19397.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19398.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19398.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19398.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19399.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19399.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19399.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19400.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19400.000000] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 19400.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19401.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19401.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19402.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19402.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19403.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19403.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19404.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19404.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19405.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19405.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19406.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19406.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19407.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19407.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19408.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19408.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19409.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19409.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19410.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19410.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19411.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19411.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19412.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19412.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19413.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19413.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19414.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19414.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19415.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19415.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19416.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19416.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19417.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19417.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19418.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19418.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19419.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19419.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19420.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19420.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19421.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19421.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19422.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19422.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19423.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19423.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19424.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19424.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19425.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19425.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19426.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19426.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19427.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19427.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19428.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19428.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19429.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19429.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19430.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19430.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19431.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19431.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19432.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19432.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19433.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19433.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19434.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19434.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19435.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19435.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19436.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19436.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19437.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19437.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19438.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19438.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19439.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19439.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19440.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19440.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19441.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19441.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19442.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19442.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19443.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19443.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19444.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19444.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19445.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19445.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19446.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19446.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19447.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19447.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19448.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19448.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19449.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19449.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19450.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19450.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19451.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19451.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19452.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19452.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19453.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19453.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19454.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19454.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19455.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19455.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19456.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19456.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19457.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19457.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19458.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19458.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19459.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19459.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19460.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19460.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19461.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19461.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19462.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19462.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19463.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19463.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19464.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19464.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19465.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19465.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19466.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19466.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19467.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19467.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19468.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19468.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19469.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19469.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19470.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19470.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19471.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19471.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19472.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19472.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19473.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19473.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19474.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19474.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19475.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19475.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19476.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19476.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19477.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19477.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19478.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19478.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19479.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19479.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19480.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19480.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19481.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19481.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19482.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19482.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19483.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19483.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19484.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19484.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19485.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19485.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19486.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19486.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19487.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19487.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19488.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19488.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19489.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19489.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19490.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19490.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 19490.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 19491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19506.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19506.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 19506.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19507.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19508.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19508.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19509.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19510.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19510.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19511.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19512.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19512.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19513.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19514.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19514.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19515.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19516.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19516.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19517.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19518.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19518.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19519.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19520.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19521.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19522.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19523.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19524.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19525.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19525.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 19526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19530.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19531.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19532.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19533.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19534.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19535.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19536.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19537.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19538.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19539.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19540.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19541.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19542.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19543.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19544.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19545.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19546.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19547.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19548.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19549.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19550.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19686.000000] [simulator/INFO] on2 is sleeping +[on9:ON:(10) 20124.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 20125.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20126.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20127.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20128.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20129.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20130.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20131.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20132.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20133.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20134.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20135.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20136.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20137.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20138.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20139.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20140.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20141.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20142.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20143.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20144.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20145.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20146.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20147.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20148.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20149.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20150.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20151.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20152.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20153.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20154.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20155.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20156.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20157.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20158.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20159.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20160.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20161.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20162.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20163.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20164.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20165.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20166.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20167.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20168.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20169.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20170.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20171.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20172.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20173.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20174.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20175.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20176.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20177.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20178.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20179.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20180.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20181.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20182.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20183.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20184.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20185.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20186.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20187.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20188.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20189.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20190.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20191.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20192.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20193.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20194.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20195.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20196.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20197.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20198.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20199.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20200.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20201.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20202.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20203.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20204.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20205.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20206.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20207.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20208.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20209.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20210.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20211.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20212.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20213.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20214.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20215.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20216.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20217.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20218.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20219.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20220.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20221.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20222.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20223.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20224.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20225.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20226.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20227.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20228.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20229.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20230.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20231.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20232.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20233.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20234.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20235.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20236.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20237.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20238.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20239.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20240.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20241.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20242.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20243.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20244.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20245.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20246.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20247.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20248.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20249.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20250.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20251.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20252.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20253.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20254.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20255.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20256.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20257.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20258.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20259.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20260.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20261.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20262.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20263.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20264.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20265.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20266.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20267.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20268.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20269.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20270.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20271.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20272.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20273.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20274.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20275.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20276.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20277.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20278.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20279.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20280.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20281.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20282.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20283.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20284.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20285.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20286.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20287.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20288.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20289.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20290.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20291.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20292.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20293.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20294.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20295.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20296.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20297.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20298.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20299.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20300.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20301.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20302.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20303.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20304.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20304.000000] [simulator/INFO] on9 is sleeping +[on6:ON:(7) 20516.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 20517.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20518.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20519.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20520.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20521.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20522.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20523.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20524.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20525.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20526.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20527.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20528.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20529.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20530.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20531.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20532.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20533.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20534.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20535.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20536.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20537.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20538.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20539.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20540.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20541.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20542.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20543.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20544.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20545.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20546.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20547.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20548.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20549.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20550.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20551.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20552.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20553.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20554.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20555.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20556.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20557.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20558.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20559.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20560.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20561.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20562.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20563.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20564.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20565.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20566.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20567.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20568.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20569.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20570.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20571.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20572.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20573.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20574.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20575.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20576.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20577.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20578.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20579.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20580.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20581.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20582.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20583.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20584.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20585.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20586.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20587.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20588.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20589.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20590.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20591.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20592.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20593.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20594.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20595.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20596.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20597.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20598.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20599.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20600.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20601.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20602.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20603.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20604.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20605.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20606.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20607.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20608.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20609.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20610.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20611.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20612.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20613.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20629.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20630.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20631.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20632.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20633.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20634.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20635.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20636.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20637.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20638.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20639.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20640.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20641.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20692.000000] [simulator/INFO] on6 could not receive any data +[on0:ON:(1) 20692.000000] [simulator/INFO] on0 wakes up +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 received data successfully +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 received a hint along with data successfully +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 is sleeping +[on0:ON:(1) 20732.010320] [simulator/INFO] on0 sent data successfully +[on4:ON:(5) 20794.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 20794.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 received a hint successfully +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 try to forward a hint +[on0:ON:(1) 20795.010320] [simulator/INFO] on0 sent a hint successfully +[on4:ON:(5) 20796.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20797.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20797.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20798.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20799.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20799.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20800.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20801.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20801.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20802.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20803.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20803.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20804.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20805.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20805.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20806.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20807.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20807.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20808.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20809.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20809.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20810.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20811.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20811.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20812.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20813.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20813.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20814.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20815.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20815.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20816.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20817.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20817.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20818.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20819.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20819.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20820.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20821.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20821.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20822.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20823.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20823.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20824.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20825.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20825.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20826.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20827.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20827.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20828.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20829.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20829.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20830.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20831.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20831.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20832.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20833.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20833.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20834.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20835.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20835.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20836.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20837.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20837.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20838.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20839.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20839.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20840.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20841.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20841.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20842.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20843.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20843.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20844.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20845.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20845.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20846.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20847.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20847.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20848.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20849.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20849.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20850.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20851.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20851.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20852.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20853.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20853.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20854.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20855.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20855.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20856.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20857.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20857.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20858.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20859.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20859.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20860.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20861.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20861.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20862.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20863.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20863.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20864.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20865.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20865.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20866.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20867.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20867.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20868.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20869.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20869.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20870.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20871.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20871.010320] [simulator/INFO] on4 try to forward a hint +[on0:ON:(1) 20872.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 20872.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20873.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20873.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20874.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20875.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20875.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20876.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20877.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20877.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20878.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20879.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20879.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20880.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20881.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20881.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20882.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20883.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20883.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20884.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20885.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20885.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20886.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20887.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20887.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20888.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20889.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20889.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20890.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20891.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20891.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20892.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20893.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20893.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20894.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20895.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20895.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20896.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20897.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20897.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20898.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20899.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20899.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20900.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20901.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20901.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20902.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20903.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20903.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20904.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20905.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20905.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20906.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20907.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20907.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20908.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20909.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20909.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20910.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20911.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20911.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20912.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20913.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20913.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20914.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20915.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20915.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20916.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20917.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20917.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20918.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20919.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20919.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20920.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20921.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20921.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20922.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20923.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20923.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20924.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20925.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20925.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20926.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20927.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20927.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20928.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20929.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20929.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20930.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20931.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20931.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20932.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20933.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20933.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20934.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20935.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20935.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20936.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20937.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20937.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20938.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20939.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20939.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20940.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20941.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20941.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20942.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20943.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20943.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20944.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20945.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20945.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20946.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20947.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20947.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20948.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20949.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20949.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20950.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20951.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20951.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20952.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20953.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20953.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20954.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20955.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20955.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20956.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20957.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20957.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20958.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20959.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20959.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20960.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20961.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20961.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20962.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20963.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20963.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20964.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20965.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20965.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20966.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20967.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20967.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20968.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20969.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20969.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20970.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20971.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20971.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20972.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20973.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20973.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20974.000000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20974.989680] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 21139.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 21139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21255.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21257.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21259.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21261.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21263.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21265.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21267.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21269.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21271.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21273.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21275.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21277.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21279.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21281.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21283.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21285.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21287.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21289.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21291.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21293.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21295.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21297.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21299.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21301.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21303.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21305.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21307.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21309.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21311.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21313.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21315.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21317.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21319.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 22105.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 22105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22255.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22257.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22259.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22285.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 22910.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 22910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22992.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22994.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22996.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22998.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23000.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23002.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23004.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23006.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23008.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23009.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23010.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23011.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23012.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23013.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23014.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23015.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23016.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23017.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23018.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23019.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23020.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23021.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23022.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23024.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23026.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23028.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23030.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23032.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23034.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23036.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23038.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23040.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23042.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23044.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23046.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23048.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23050.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23054.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 23054.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 23054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 23055.000000] [simulator/INFO] on4 is observing his environment... +[on11:ON:(12) 23055.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 23055.000000] [simulator/INFO] on4 try to forward a hint +[on11:ON:(12) 23056.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23057.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23058.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23059.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23060.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23061.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23062.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23063.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23064.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23065.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23066.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23067.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23068.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23069.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23070.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23071.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23072.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23073.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23074.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23075.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23076.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23077.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23078.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23079.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23080.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23081.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23082.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23083.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23084.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23085.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23086.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23087.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23088.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23089.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23090.000000] [simulator/INFO] on11 is sleeping +[on9:ON:(10) 23096.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 23097.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23098.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23099.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23100.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23101.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23102.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23103.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23104.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23105.000000] [simulator/INFO] on9 could not receive any data +[on0:ON:(1) 23105.000000] [simulator/INFO] on0 wakes up +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 received data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 received a hint along with data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 23145.010320] [simulator/INFO] on0 sent data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23146.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23147.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23148.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23148.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23149.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23150.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23151.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23151.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23152.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23153.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23154.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23154.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23155.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23156.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23157.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23157.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23158.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23159.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23160.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23160.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23161.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23162.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23163.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23163.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23164.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23165.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23166.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23166.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23167.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23168.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23169.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23169.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23170.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23171.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23172.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23172.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23173.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23174.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23175.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23175.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23176.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23177.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23178.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23178.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23179.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23180.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23181.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23181.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23182.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23183.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23184.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23184.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23185.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23186.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23187.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23187.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23188.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23189.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23190.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23190.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23191.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23192.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23193.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23193.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23194.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23195.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23196.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23196.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23197.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23198.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23199.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23199.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23200.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23201.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23202.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23202.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23203.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23204.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23205.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23205.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23206.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23207.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23208.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23208.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23209.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23210.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23211.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23211.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23212.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23213.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23214.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23214.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23215.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23216.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23217.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23217.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23218.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23219.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23220.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23220.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23221.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23222.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23223.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23223.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23224.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23225.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23226.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23226.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23227.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23228.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23229.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23229.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23230.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23231.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23232.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23232.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23233.010320] [simulator/INFO] on9 fail to forward a hint +[on4:ON:(5) 23234.000000] [simulator/INFO] on4 fail to forward a hint +[on9:ON:(10) 23234.010320] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 23235.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 23235.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23235.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23236.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23237.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23238.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23238.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23239.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23240.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23241.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23241.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23242.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23243.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23244.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23244.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23245.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23246.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23247.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23247.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23248.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23249.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23250.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23250.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23251.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23252.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23253.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23253.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23254.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23255.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23256.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23256.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23257.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23258.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23259.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23259.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23260.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23261.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23262.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23262.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23263.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23264.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23265.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23265.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23266.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23267.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23268.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23268.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23269.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23270.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23271.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23271.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23272.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23273.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23274.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23274.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23275.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23276.010320] [simulator/INFO] on9 is sleeping +[on0:ON:(1) 23285.000000] [simulator/INFO] on0 is sleeping +[on6:ON:(7) 23729.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 23729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23749.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23750.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23751.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23752.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23753.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23754.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23755.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23756.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23757.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23758.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23759.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23760.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23761.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23762.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23763.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23764.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23765.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23766.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23767.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23768.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23769.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23770.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23771.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23772.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23773.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23774.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23775.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23776.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23777.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23778.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23779.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23780.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23781.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23783.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23785.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23787.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23789.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23791.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23793.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23795.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23797.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23799.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23799.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 23799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23800.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23801.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23802.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23803.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23804.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23805.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23806.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23807.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23808.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23809.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23810.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23811.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23812.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23813.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23814.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23815.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23816.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23817.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23818.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23819.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23820.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23821.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23822.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23823.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23824.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23825.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23826.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23827.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23828.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23829.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23830.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23831.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23832.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23833.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23834.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23835.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23836.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23837.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23838.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23839.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23840.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23841.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23842.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23843.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23844.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23844.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23845.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23846.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23846.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23846.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 23846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23847.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23847.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23848.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23848.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23849.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23849.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23850.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23850.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23851.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23851.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23852.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23852.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23853.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23853.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23854.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23854.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23855.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23855.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23856.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23856.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23857.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23857.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23858.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23858.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23859.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23859.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23860.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23860.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23861.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23861.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23862.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23862.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23863.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23863.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23864.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23864.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23865.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23865.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23866.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23866.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23867.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23867.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23868.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23868.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23869.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23869.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23870.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23870.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23871.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23871.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23872.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23872.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23873.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23873.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23874.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23874.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23875.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23875.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23876.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23876.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23877.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23877.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23878.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23878.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23879.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23879.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23880.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23880.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23881.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23881.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23882.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23882.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23883.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23883.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23884.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23884.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23885.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23885.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23885.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23885.000000] [simulator/INFO] on8 wakes up +[on12:ON:(13) 23886.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23886.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23886.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23886.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23887.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23887.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23887.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23887.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23888.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23888.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23888.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23888.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23889.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23889.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23889.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23889.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23890.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23890.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23890.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23890.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23891.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23891.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23891.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23891.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23892.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23892.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23892.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23892.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23893.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23893.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23893.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23893.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23894.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23894.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23894.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23894.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23895.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23895.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23895.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23895.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23896.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23896.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23896.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23896.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23897.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23897.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23897.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23897.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23898.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23898.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23898.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23898.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23899.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23899.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23899.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23899.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23900.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23900.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23900.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23900.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23901.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23901.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23901.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23901.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23902.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23902.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23902.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23902.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23903.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23903.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23903.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23903.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23904.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23904.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23904.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23904.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23905.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23905.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23905.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23905.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23906.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23906.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23906.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23906.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23907.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23907.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23907.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23907.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23908.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23908.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23908.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23908.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23909.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23909.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 23909.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23909.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23910.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23910.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23910.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23911.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23911.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23911.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23912.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23912.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23912.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23913.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23913.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23913.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23914.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23914.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23914.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23915.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23915.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23915.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23916.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23916.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23916.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23917.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23917.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23917.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23918.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23918.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23918.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23919.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23919.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23919.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23920.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23920.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23920.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23921.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23921.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23921.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23922.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23922.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23922.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23923.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23923.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23923.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23924.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23924.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23924.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23925.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23925.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23925.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23926.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23926.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23926.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23927.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23927.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23927.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23928.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23928.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23928.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23929.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23929.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23929.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23930.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23930.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23930.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23931.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23931.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23931.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23932.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23932.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23932.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23933.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23933.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23933.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23934.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23934.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23934.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23935.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23935.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23935.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23936.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23936.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23936.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23937.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23937.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23937.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23938.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23938.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23938.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23939.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23939.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23939.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23940.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23940.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23940.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23941.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23941.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23941.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23942.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23942.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23942.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23943.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23943.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23943.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23944.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23944.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23944.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23945.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23945.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23945.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23946.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23946.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23946.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23947.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23947.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23947.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23948.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23948.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23948.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23949.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23949.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23949.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23950.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23950.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23950.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23951.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23951.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23951.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23952.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23952.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23952.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23953.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23953.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23953.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23954.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23954.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23954.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23955.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23955.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23955.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23956.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23956.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23956.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23957.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23957.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23957.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23958.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23958.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23958.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23959.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23959.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23959.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23960.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23960.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23960.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23961.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23961.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23961.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23962.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23962.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23962.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23963.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23963.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23963.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23964.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23964.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23964.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23965.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23965.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23965.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23966.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23966.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23966.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23967.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23967.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23967.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23968.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23968.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23968.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23969.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23969.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23969.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23970.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23970.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23970.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23971.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23971.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23971.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23972.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23972.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23972.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23973.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23973.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23973.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23974.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23974.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23974.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23975.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23975.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23975.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23976.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23976.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23976.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23977.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23977.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23977.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23978.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23978.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23978.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23979.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23979.000000] [simulator/INFO] on12 is sleeping +[on8:ON:(9) 23979.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23980.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23980.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23981.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23981.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23982.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23982.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23983.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23983.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23984.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23984.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23985.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23985.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23986.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23986.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23987.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23987.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23988.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23988.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23989.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23989.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23990.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23990.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23991.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23991.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23992.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23992.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23993.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23993.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23994.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23994.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23995.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23995.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23996.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23996.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23997.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23997.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23998.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23998.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23999.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23999.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24000.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24000.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24001.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24001.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24002.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24002.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24003.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24003.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24004.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24004.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24005.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24005.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24006.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24006.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24007.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24007.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24008.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24008.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24009.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24009.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24010.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24010.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24011.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24011.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24012.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24012.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24013.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24013.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24014.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24014.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24015.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24015.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24016.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24016.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24017.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24017.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24018.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24018.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24019.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24019.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24020.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24020.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24021.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24021.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24022.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24022.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24023.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24023.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24024.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24024.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24025.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24025.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24026.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 24026.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24027.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24028.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24029.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24030.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24031.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24032.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24033.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24034.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24035.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24036.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24037.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24038.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24039.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24040.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24041.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24042.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24043.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24044.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24045.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24046.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24047.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24048.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24049.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24050.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24051.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24052.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24053.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24054.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24055.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24056.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24057.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24058.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24059.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24060.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24061.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24062.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24063.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24064.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24065.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24065.000000] [simulator/INFO] on8 is sleeping +[on1:ON:(2) 24094.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 24095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24206.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24207.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24208.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24209.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24210.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24211.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24212.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24213.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24214.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24215.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24215.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 24215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24216.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24216.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24217.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24217.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24218.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24218.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24219.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24219.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24220.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24220.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24221.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24221.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24222.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24222.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24223.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24223.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24224.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24224.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24225.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24225.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24226.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24226.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24227.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24227.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24228.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24228.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24229.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24229.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24230.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24230.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24231.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24231.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24232.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24232.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24233.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24233.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24234.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24234.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24235.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24235.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24236.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24236.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24237.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24237.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24238.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24238.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24239.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24239.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24240.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24240.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24241.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24241.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24242.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24242.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24243.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24243.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24244.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24244.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24245.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24245.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24246.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24246.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24247.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24247.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24248.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24248.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24249.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24249.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24250.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24250.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24251.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24251.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24252.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24252.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24253.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24253.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24254.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24254.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24255.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24255.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24256.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24256.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24257.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24257.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24258.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24258.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24259.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24259.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24260.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24260.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24261.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24261.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24262.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24262.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24263.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24263.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24264.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24264.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24265.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24265.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24266.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24266.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24267.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24267.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24268.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24268.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24269.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24269.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24270.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24270.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24271.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24271.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24272.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24272.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24273.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24273.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24274.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24274.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24274.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 24275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24283.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24283.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 24283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24284.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24285.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24285.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24286.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24287.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24287.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24288.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24289.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24289.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24290.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24291.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24291.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24292.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24293.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24293.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24294.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24295.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24295.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24296.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24296.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24297.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24297.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24298.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24298.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24299.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24299.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24300.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24300.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24301.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24301.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24302.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24302.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24303.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24303.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24304.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24304.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24305.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24305.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24306.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24306.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24307.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24307.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24308.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24308.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24309.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24309.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24310.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24310.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24311.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24311.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24312.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24312.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24313.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24313.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24314.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24314.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24315.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24315.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24316.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24316.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24317.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24317.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24318.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24318.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24319.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24319.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24320.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24320.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24321.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24321.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24322.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24322.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24323.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24323.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24324.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24324.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24325.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24325.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24326.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24326.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24327.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24327.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24328.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24328.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24329.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24329.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24330.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24330.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24331.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24331.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24332.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24332.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24333.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24333.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24334.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24334.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24335.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24335.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24336.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24336.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24337.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24337.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24338.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24338.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24339.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24339.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24340.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24340.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24341.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24341.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24342.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24342.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24343.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24343.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24344.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24344.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24345.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24345.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24346.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24346.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24347.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24347.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24348.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24348.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24349.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24349.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24350.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24351.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24351.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24352.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24353.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24353.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24354.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24355.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24355.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24356.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24357.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24357.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24358.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24359.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24359.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24360.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24361.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24361.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24362.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24363.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24363.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24364.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24365.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24365.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24366.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24367.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24367.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24368.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24369.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24369.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24370.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24371.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24371.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24372.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24373.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24373.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24374.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24375.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24375.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24376.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24377.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24377.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24378.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24379.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24379.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24380.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24381.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24381.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24382.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24383.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24383.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24384.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24385.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24385.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24386.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24387.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24387.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24388.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24389.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24389.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24390.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24391.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24391.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24392.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24393.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24393.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24394.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24395.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 24395.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24397.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24399.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24401.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24403.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24463.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 24551.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 24551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24552.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24554.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24556.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24558.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24560.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24562.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24564.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24566.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24568.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24570.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24572.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24574.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24576.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24578.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24580.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24582.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24584.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24586.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24588.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24590.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24592.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24594.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24596.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24598.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24600.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24602.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24604.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24637.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24638.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24639.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24640.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24641.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24642.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24643.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24644.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24645.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24646.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24647.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24648.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24649.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24650.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24651.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24652.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24653.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24654.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24655.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24656.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24657.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24658.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24659.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24660.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24661.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24662.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24663.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24664.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24665.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24666.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24667.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24668.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24669.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24670.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24671.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24672.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24673.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24674.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24675.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24676.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24677.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24731.000000] [simulator/INFO] on3 is sleeping +[on10:ON:(11) 25260.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 25260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25440.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 25878.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 25878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25879.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25880.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25882.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25883.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25885.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25886.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25888.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25889.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25891.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25892.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25894.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25895.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25897.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25898.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25900.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25901.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25903.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25904.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25906.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25907.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25909.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25910.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25912.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25913.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25915.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25916.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25918.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25919.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25921.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25922.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25924.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25925.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25927.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25928.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25930.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25931.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25933.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25934.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25936.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25937.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25939.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25940.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25942.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25942.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25943.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25944.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25945.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25945.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25946.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25947.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25948.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25948.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25949.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25950.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25951.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25951.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25952.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25953.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25954.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25954.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25955.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25956.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25957.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25957.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25958.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25959.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25960.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25960.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25961.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25962.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25963.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25963.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25964.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25965.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25966.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25966.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25967.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25968.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25969.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25969.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25970.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25971.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25972.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25972.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25973.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25974.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25975.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25975.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25976.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25977.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25978.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25978.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25979.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25980.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25981.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25981.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25982.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25983.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25984.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25984.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25985.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25986.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25987.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25987.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25988.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25989.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25990.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25990.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25991.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25992.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25993.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25993.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25994.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25995.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25996.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25996.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25997.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25998.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25999.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25999.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26000.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26001.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26002.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26003.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26005.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26005.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26006.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26007.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26008.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26009.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26011.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26011.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26012.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26013.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26014.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26015.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26017.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26017.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26018.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26019.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26020.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26021.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26023.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26023.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26024.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26025.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26026.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26027.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26029.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26029.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26030.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26031.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26032.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26033.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26035.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26035.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26036.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26037.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26038.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26039.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26041.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26041.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26042.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26043.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26044.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26045.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26047.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26047.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26048.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26049.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26050.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26051.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26053.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26053.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26054.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26055.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26056.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26057.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26058.000000] [simulator/INFO] on9 is sleeping +[on11:ON:(12) 26222.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 26222.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26224.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26226.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26228.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26230.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26232.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26234.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26236.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26238.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26240.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26242.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26244.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26246.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26248.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26250.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26252.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26254.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26256.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26258.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26260.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26262.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26264.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26266.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26268.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26270.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26272.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26274.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26276.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26278.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26280.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26282.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26284.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26286.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26288.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26290.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26292.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26294.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26296.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26298.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26300.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26302.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26304.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26306.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26306.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 26306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26307.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26308.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26309.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26310.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26311.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26311.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26312.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26313.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26313.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26314.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26315.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26315.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26316.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26317.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26317.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26318.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26319.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26319.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26320.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26321.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26321.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26322.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26323.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26323.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26324.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26324.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26325.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26325.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26326.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26326.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26327.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26327.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26328.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26328.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26329.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26329.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26330.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26330.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26331.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26331.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26332.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26332.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26333.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26333.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26334.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26334.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26335.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26335.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26336.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26336.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26337.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26337.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26338.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26338.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26339.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26339.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26340.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26340.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26341.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26341.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26342.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26342.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26343.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26343.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26344.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26344.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26345.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26345.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26346.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26346.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26347.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26347.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26348.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26348.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26349.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26349.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26350.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26350.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26351.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26351.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26352.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26352.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26353.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26353.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26354.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26354.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26355.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26355.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26356.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26356.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26357.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26357.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26358.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26358.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26359.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26359.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26360.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26360.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26361.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26361.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26362.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26362.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26363.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26363.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26364.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26364.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26365.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26365.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26366.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26366.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26367.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26367.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26368.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26368.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26369.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26369.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26370.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26370.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26371.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26371.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26372.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26372.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26373.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26373.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26374.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26374.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26375.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26375.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26376.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26376.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26377.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26377.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26378.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26378.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26379.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26379.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26380.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26380.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26381.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26381.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26382.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26382.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26383.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26383.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26384.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26384.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26385.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26385.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26386.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26386.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26387.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26387.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26388.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26388.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26389.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26389.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26390.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26390.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26391.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26391.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26392.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26392.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26393.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26393.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26394.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26394.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26395.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26395.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26396.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26396.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26397.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26397.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26398.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26398.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26399.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26399.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26400.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26400.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26401.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26401.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26402.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 26402.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26403.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26404.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26405.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26406.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26407.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26408.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26409.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26410.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26411.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26412.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26413.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26414.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26415.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26416.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26417.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26418.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26419.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26420.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26421.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26422.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26423.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26424.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26425.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26426.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26427.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26428.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26429.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26430.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26431.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26432.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26433.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26434.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26435.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26436.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26437.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26438.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26439.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26440.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26441.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26442.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26443.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26444.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26445.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26446.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26447.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26448.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26449.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26450.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26451.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26452.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26453.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26454.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26455.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26456.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26457.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26458.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26459.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26460.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26461.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26462.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26463.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26464.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26465.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26466.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26467.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26469.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26471.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26472.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26473.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26475.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26477.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26478.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26479.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26481.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26483.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26484.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26485.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26486.000000] [simulator/INFO] on12 is sleeping +[on2:ON:(3) 26893.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 26893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27008.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27010.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27012.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27014.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27016.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27018.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27020.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27022.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27024.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27026.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27045.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27047.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27049.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27073.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 27080.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 27081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27206.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27207.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27208.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27209.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27210.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27211.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27212.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27213.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27214.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27215.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27216.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27217.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27218.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27219.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27220.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27221.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27222.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27223.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27224.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27225.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27226.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27227.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27228.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27229.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27230.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27231.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27232.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27233.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27234.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27235.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27236.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27237.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27238.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27239.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27240.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27241.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27242.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27243.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27244.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27245.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27246.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27247.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27248.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27249.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27250.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27251.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27252.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27253.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27254.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27255.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27256.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27257.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27258.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27259.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27260.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27260.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 27274.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 27454.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 27747.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 27747.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27748.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27749.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27750.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27751.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27752.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27753.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27754.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27755.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27756.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27757.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27758.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27759.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27760.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27761.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27762.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27763.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27764.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27766.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27768.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27770.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27772.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27774.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27776.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27778.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27780.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27782.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27784.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27786.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27788.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27790.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27792.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27794.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27796.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27798.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27800.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27802.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27804.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27806.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27808.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27810.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27812.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27814.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27816.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27818.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27820.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27822.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27927.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 28133.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 28134.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28135.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28136.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28137.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28138.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28139.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28140.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28141.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28142.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28143.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28144.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28145.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28146.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28147.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28148.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28149.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28150.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28151.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28152.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28153.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28154.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28155.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28156.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28157.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28158.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28159.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28160.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28161.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28162.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28163.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28164.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28165.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28166.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28167.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28168.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28169.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28170.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28171.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28172.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28173.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28174.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28175.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28176.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28177.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28178.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28179.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28180.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28181.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28182.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28183.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28184.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28185.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28186.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28187.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28188.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28189.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28190.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28191.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28192.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28193.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28194.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28195.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28196.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28197.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28198.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28199.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28200.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28201.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28202.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28203.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28204.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28205.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28206.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28207.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28208.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28209.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28210.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28211.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28212.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28213.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28214.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28215.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28216.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28217.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28218.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28219.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28220.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28221.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28222.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28223.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28224.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28225.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28226.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28227.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28228.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28229.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28230.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28231.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28232.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28233.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28234.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28235.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28236.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28237.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28238.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28239.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28240.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28241.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28242.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28243.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28244.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28245.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28246.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28247.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28248.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28249.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28250.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28251.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28252.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28253.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28254.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28255.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28256.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28257.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28258.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28259.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28260.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28261.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28262.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28263.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28264.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28265.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28266.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28267.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28268.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28269.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28270.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28271.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28272.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28273.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28274.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28275.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28276.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28277.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28278.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28279.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28280.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28281.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28282.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28283.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28284.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28285.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28286.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28287.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28288.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28289.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28290.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28291.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28292.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28293.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28294.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28295.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28296.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28297.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28298.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28299.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28300.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28301.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28302.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28303.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28304.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28305.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28306.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28307.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28308.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28309.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28310.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28311.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28312.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28313.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28313.000000] [simulator/INFO] on8 is sleeping +[on3:ON:(4) 28391.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 28391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28394.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28394.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 28394.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28395.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28396.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28396.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28397.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28398.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28398.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28399.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28400.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28400.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28401.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28402.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28402.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28403.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28404.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28404.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28405.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28406.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28406.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28407.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28408.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28408.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28409.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28410.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28410.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28411.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28412.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28412.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28413.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28414.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28414.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28415.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28416.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28416.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28417.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28418.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28418.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28419.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28420.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28420.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28421.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28422.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28422.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28423.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28424.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28424.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28425.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28426.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28426.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28427.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28428.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28428.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28429.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28430.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28430.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28431.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28432.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28432.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28433.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28434.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28434.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28435.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28436.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28436.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28437.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28438.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28438.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28439.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28440.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28440.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28441.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28442.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28442.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28443.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28444.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28444.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28445.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28446.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28446.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28447.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28448.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28448.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28449.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28450.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28450.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28451.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28452.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28452.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28453.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28454.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28454.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28455.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28456.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28456.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28457.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28458.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28458.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28459.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28460.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28460.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28461.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28462.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28462.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28463.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28464.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28464.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28465.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28466.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28466.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28467.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28468.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28468.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28469.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28470.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28470.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28471.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28472.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28472.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28473.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28474.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28474.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28475.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28476.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28476.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28477.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28478.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28479.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28480.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28481.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28482.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28483.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28484.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28485.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28486.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28487.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28488.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28489.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28490.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28491.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28492.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28493.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28494.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28495.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28496.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28497.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28498.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28499.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28500.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28501.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28502.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28503.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28504.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28505.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28506.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28507.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28508.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28509.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28510.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28511.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28512.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28513.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28514.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28514.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28514.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 28514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28515.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28515.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28516.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28516.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28517.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28517.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28518.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28518.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28519.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28519.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28520.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28520.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28521.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28521.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28522.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28522.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28523.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28523.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28524.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28524.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28525.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28525.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28526.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28526.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28527.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28527.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28528.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28528.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28529.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28529.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28530.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28530.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28531.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28531.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28532.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28532.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28533.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28533.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28534.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28534.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28535.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28535.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28536.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28536.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28537.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28537.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28538.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28538.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28539.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28539.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28540.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28540.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28541.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28541.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28542.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28542.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28543.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28543.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28544.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28544.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28545.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28545.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28546.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28546.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28547.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28547.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28548.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28548.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28549.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28549.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28550.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28550.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28551.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28551.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28552.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28552.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28552.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28553.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28553.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28554.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28554.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28554.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28555.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28555.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28556.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28556.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28556.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28557.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28557.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28558.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28558.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28558.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28559.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28559.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28560.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28560.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28560.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28561.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28561.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28562.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28562.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28562.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28563.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28563.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28564.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28564.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28564.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28565.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28565.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28566.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28566.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28566.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28567.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28567.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28568.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28568.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28568.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28569.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28569.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28570.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28570.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28570.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28571.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28571.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28571.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 28572.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28572.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28573.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28574.000000] [simulator/INFO] on4 is sleeping +[on6:ON:(7) 28574.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28576.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28578.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28580.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28582.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28584.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28586.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28588.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28590.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28592.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28594.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28596.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28598.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28600.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28602.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28604.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28606.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28608.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28610.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28612.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28614.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28616.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28618.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28620.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28622.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28624.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28626.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28628.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28630.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28632.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28634.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28635.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28635.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 28635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28636.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28636.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28637.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28638.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28638.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28639.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28640.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28640.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28641.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28642.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28642.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28643.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28644.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28644.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28645.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28646.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28646.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28647.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28648.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28648.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28649.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28650.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28650.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28651.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28652.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28652.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28653.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28654.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28654.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28655.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28656.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28656.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28657.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28658.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28658.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28659.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28660.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28660.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28661.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28662.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28662.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28663.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28664.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28664.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28665.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28666.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28666.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28667.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28668.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28668.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28669.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28670.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28670.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28671.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28672.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28672.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28673.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28674.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28674.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28675.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28676.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28676.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28677.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28678.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28678.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28679.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28680.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28680.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28681.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28682.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28682.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28683.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28684.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28685.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28686.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28687.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28688.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28689.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28690.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28691.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28692.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28693.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28694.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28694.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 28695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28757.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28759.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28761.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28763.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28765.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28767.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28769.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28771.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28773.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28775.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28777.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28779.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28781.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28783.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28784.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28785.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28786.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28787.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28788.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28789.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28790.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28791.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28792.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28793.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28794.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28795.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28796.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28797.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28798.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28799.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28800.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28801.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28802.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28803.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28804.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28805.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28806.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28807.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28808.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28809.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28810.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28811.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28812.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28813.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28814.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28815.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 28874.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 28874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28998.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 28998.000000] [simulator/INFO] on1 wakes up +[on2:ON:(3) 28999.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 28999.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29000.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29000.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29001.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29001.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29002.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29002.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29003.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29003.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29004.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29004.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29005.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29005.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29006.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29006.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29007.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29007.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29008.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29008.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29009.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29009.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29010.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29010.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29011.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29011.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29012.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29012.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29013.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29013.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29014.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29014.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29015.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29015.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29016.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29016.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29017.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29017.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29018.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29018.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29019.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29019.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29020.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29020.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29021.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29021.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29022.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29022.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29023.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29023.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29024.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29024.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29025.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29025.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29026.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29026.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29027.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29027.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29028.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29028.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29029.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29029.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29030.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29030.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29031.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29031.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29032.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29032.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29033.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29033.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29034.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29034.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29035.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29035.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29036.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29036.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29037.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29037.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29038.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29038.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29039.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29039.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29040.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29040.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29041.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29041.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29042.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29042.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29043.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29043.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29044.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29044.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29045.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29045.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29046.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29046.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29047.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29047.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29048.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29048.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29049.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29049.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29050.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29050.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29051.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29051.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29052.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29052.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29053.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29053.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29054.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 29054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29095.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29095.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 29095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29096.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29096.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29097.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29097.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29098.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29098.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29099.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29099.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29100.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29100.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29101.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29101.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29102.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29102.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29103.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29103.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29104.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29104.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29105.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29105.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29106.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29106.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29107.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29107.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29108.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29108.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29109.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29109.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29110.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29110.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29111.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29111.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29112.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29112.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29113.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29113.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29114.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29114.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29115.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29115.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29116.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29116.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29117.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29117.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29118.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29118.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29119.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29119.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29120.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29120.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29121.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29121.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29122.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29122.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29123.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29123.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29124.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29124.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29125.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29125.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29126.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29126.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29127.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29127.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29128.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29128.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29129.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29129.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29130.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29130.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29131.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29131.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29132.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29132.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29133.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29133.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29134.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29134.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29135.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29135.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29136.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29136.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29137.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29137.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29138.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29138.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29139.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29139.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29140.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29140.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29141.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29141.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29142.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29142.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29143.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29143.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29144.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29144.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29145.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29145.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29146.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29146.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29147.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29147.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29148.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29148.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29149.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29149.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29150.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29150.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29151.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29151.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29152.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29152.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29153.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29153.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29154.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29154.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29155.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29155.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29156.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29156.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29157.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29157.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29158.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29158.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29159.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29159.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29160.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29160.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29161.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29161.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29162.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29162.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29163.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29163.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29164.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29164.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29165.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29165.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29166.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29166.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29167.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29167.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29168.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29168.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29169.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29169.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29170.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29170.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29171.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29171.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29171.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 29171.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29172.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29172.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29172.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29173.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29173.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29173.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29174.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29174.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29174.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29175.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29175.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29175.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29176.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29176.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29176.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29177.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29177.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29177.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29178.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29178.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29178.000000] [simulator/INFO] on1 is sleeping +[on7:ON:(8) 29179.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29179.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29180.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29181.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29181.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29182.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29183.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29183.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29184.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29185.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29185.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29186.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29187.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29187.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29188.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29189.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29189.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29190.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29191.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29191.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29192.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29193.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29193.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29194.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29195.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29195.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29196.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29197.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29198.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29199.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29200.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29201.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29202.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29203.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29204.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29205.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29206.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29207.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29208.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29209.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29210.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29211.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29212.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29213.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29214.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29215.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29216.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29217.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29218.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29219.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29220.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29221.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29222.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29223.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29224.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29225.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29226.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29227.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29228.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29229.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29230.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29230.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29230.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 29230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29231.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29231.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29232.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29232.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29233.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29233.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29234.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29234.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29235.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29235.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29236.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29236.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29237.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29237.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29238.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29238.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29239.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29239.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29240.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29240.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29241.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29241.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29242.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29242.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29243.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29243.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29244.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29244.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29245.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29245.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29246.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29246.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29247.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29247.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29248.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29248.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29249.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29249.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29250.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29250.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29251.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29251.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29252.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29252.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29253.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29253.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29254.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29254.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29255.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29255.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29256.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29256.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29257.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29257.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29258.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29258.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29258.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29258.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 29258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29259.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29259.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29259.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29260.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29260.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29260.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29261.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29261.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29261.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29262.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29262.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29262.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29263.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29263.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29263.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29264.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29264.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29264.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29265.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29265.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29265.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29266.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29266.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29266.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29267.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29267.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29267.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29268.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29268.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29268.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29269.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29269.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29269.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29270.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29270.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29270.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29271.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29271.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29271.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29272.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29272.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29272.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29273.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29273.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29273.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29274.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29274.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29274.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29275.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29275.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29275.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 29275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29276.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29276.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29277.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29277.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29278.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29278.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29279.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29279.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29280.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29280.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29281.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29281.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29282.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29282.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29283.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29283.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29284.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29284.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29285.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29285.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29286.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29286.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29287.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29287.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29288.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29288.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29289.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29289.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29290.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29290.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29291.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29291.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29292.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29292.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29293.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29293.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29294.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29294.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29295.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29295.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29296.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29296.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29297.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29297.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29298.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29298.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29299.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29299.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29300.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29300.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29301.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29301.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29302.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29302.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29303.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29303.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29304.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29304.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29305.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29305.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29306.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29306.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29307.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29307.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29308.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29308.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29309.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29309.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29309.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29310.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29310.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29311.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29311.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29312.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29312.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29313.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29313.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29314.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29314.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29315.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29315.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29315.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29316.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29316.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29317.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29317.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29318.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29318.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29319.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29319.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29320.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29320.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29321.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29321.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29321.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29322.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29322.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29323.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29323.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29324.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29324.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29324.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29325.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29325.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29326.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29326.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29326.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29327.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29327.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29327.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29328.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29328.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29328.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29329.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29329.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29330.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29330.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29330.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29331.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29331.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29332.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29332.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29332.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29333.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29333.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29333.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29334.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29334.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29334.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29335.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29335.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29336.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29336.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29336.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29337.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29337.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29338.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29338.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29338.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29339.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29339.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29339.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29340.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29340.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29340.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29341.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29341.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29342.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29342.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29342.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29343.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29343.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29344.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29344.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29344.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29345.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29345.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29346.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29346.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29346.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29347.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29347.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29348.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29348.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29348.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29349.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29349.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29350.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29350.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29350.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29351.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29351.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29351.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 29352.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29352.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29353.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29353.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29354.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29354.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29355.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29355.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29356.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29356.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29357.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29357.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29358.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29358.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29359.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29359.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29360.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29360.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29361.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29361.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29362.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29362.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29363.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29363.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29364.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29364.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29365.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29365.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29366.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29366.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29367.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29367.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29368.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29368.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29369.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29369.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29370.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29370.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29371.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29371.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29372.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29372.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29373.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29373.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29374.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29374.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29375.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29375.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29376.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29376.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29377.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29377.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29378.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29378.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29379.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29379.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29380.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29380.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29381.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29381.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29382.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29382.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29383.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29383.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29384.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29384.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29385.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29385.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29386.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29386.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29387.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29387.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29388.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29388.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29389.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29389.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29390.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29390.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29391.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29391.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29392.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29392.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29393.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29393.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29394.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29394.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29395.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29395.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29396.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29396.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29397.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29397.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29398.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29398.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29399.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29399.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29400.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29400.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29401.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29401.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29402.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29402.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29403.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29403.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29404.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29404.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29405.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29406.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29406.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29407.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29408.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29408.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29409.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29410.000000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 29410.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29411.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29412.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29413.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29414.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29415.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29416.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29417.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29418.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29419.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29420.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29421.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29422.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29423.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29424.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29425.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29426.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29427.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29428.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29429.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29430.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29431.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29432.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29433.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29434.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29435.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29436.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29437.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29438.000000] [simulator/INFO] on12 is sleeping +[on8:ON:(9) 29610.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 29611.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29612.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29613.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29614.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29615.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29616.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29617.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29618.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29619.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29620.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29621.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29622.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29623.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29624.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29625.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29626.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29627.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29628.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29629.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29630.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29631.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29632.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29633.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29634.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29635.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29636.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29637.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29638.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29639.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29640.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29641.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29642.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29643.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29644.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29645.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29646.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29647.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29648.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29649.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29650.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29651.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29652.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29653.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29654.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29655.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29656.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29657.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29658.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29659.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29660.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29661.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29662.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29663.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29664.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29665.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29666.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29667.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29668.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29669.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29670.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29671.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29672.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29673.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29674.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29675.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29676.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29677.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29678.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29679.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29680.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29681.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29682.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29683.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29684.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29685.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29686.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29687.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29688.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29689.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29690.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29691.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29692.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29693.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29694.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29695.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29696.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29697.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29698.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29699.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29700.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29701.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29702.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29703.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29704.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29705.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29706.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29707.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29708.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29709.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29710.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29711.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29712.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29713.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29714.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29715.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29716.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29717.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29718.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29719.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29720.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29721.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29722.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29723.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29724.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29725.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29726.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29727.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29728.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29729.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29730.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29731.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29732.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29733.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29734.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29735.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29736.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29737.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29738.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29739.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29740.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29741.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29742.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29743.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29744.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29745.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29746.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29747.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29748.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29749.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29750.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29751.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29752.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29753.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29754.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29755.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29756.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29757.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29758.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29759.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29760.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29761.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29762.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29763.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29764.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29765.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29766.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29767.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29768.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29769.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29770.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29771.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29772.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29773.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29774.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29775.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29776.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29777.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29778.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29779.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29780.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29781.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29782.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29783.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29784.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29785.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29786.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29787.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29788.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29789.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29790.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29790.000000] [simulator/INFO] on8 is sleeping +[on0:ON:(1) 29996.000000] [simulator/INFO] on0 wakes up +[on11:ON:(12) 30051.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 30051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 30052.010320] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 30053.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30054.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30054.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30055.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30056.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30056.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30057.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30058.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30058.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30059.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30060.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30060.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30061.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30062.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30062.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30063.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30064.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30064.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30065.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30066.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30066.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30067.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30068.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30068.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30069.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30070.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30070.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30071.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30072.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30072.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30073.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30074.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30074.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30075.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30076.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30076.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30077.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30078.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30078.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30079.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30080.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30080.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30081.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30082.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30082.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30083.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30084.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30084.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30085.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30086.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30086.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30087.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30088.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30088.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30089.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30090.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30090.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30091.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30092.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30092.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30093.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30094.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30094.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30095.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30096.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30096.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30097.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30098.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30098.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30099.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30100.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30100.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30101.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30102.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30102.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30103.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30104.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30104.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30105.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30106.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30106.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30107.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30108.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30108.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30109.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30110.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30110.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30111.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30112.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30112.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30113.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30114.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30114.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30115.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30116.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30116.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30117.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30118.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30118.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30119.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30120.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30120.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30121.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30122.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30122.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30123.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30124.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30124.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30125.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30126.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30126.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30127.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30128.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30128.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30129.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30130.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30130.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30131.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30132.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30132.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30133.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30134.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30134.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30135.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30136.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30136.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30137.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30138.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30138.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30139.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30140.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30140.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30141.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30142.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30142.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30143.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30144.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30144.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30145.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30146.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30146.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30147.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30148.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30148.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30149.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30150.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30150.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30151.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30152.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30152.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30153.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30154.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30154.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30155.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30156.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30156.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30157.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30158.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30158.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30159.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30160.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30160.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30161.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30162.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30162.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30163.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30164.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30164.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30165.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30166.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30166.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30167.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30168.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30168.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30169.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30170.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30170.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30171.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30172.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30172.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30173.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30174.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30174.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30175.010320] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 30176.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 30176.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30176.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30177.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30178.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30178.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30179.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30180.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30180.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30181.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30182.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30182.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30183.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30184.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30184.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30185.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30186.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30186.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30187.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30188.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30188.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30189.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30190.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30190.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30191.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30192.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30192.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30193.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30194.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30194.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30195.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30196.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30196.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30197.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30198.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30198.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30199.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30200.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30200.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30201.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30202.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30202.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30203.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30204.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30204.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30205.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30206.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30206.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30207.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30208.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30208.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30209.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30210.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30210.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30211.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30212.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30212.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30213.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30214.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30214.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30215.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30216.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30216.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30217.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30218.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30218.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30219.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30220.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30220.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30221.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30222.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30222.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30223.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30224.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30224.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30225.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30226.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30226.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30227.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30228.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30228.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30229.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30230.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30230.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30231.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30231.989680] [simulator/INFO] on11 is sleeping +[on5:ON:(6) 30516.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 30516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30569.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30569.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 30569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30570.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30571.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30572.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30573.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30574.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30575.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30576.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30577.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30578.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30579.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30580.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30581.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30582.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30583.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30584.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30585.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30586.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30587.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30588.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30589.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30590.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30591.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30592.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30593.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30594.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30595.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30596.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30597.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30598.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30599.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30600.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30601.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30602.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30603.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30604.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30605.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30606.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30607.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30608.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30609.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30610.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30611.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30612.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30613.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30614.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30615.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30616.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30617.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30618.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30619.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30620.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30621.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30622.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30623.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30624.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30625.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30626.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30627.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30628.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30629.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30630.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30631.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30632.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30633.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30634.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30635.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30636.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30637.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30638.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30639.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30640.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30641.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30642.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30643.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30644.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30645.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30646.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30647.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30648.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30649.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30650.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30651.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30652.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30653.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30654.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30655.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30656.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30657.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30658.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30659.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30660.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30661.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30662.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30663.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30664.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30665.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30666.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30667.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30668.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30669.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30670.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30671.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30672.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30673.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30674.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30675.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30676.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30677.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30678.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30679.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30680.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30681.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30682.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30683.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30683.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30684.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30685.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30686.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30687.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30688.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30689.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30690.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30691.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30692.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30693.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30694.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30695.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30696.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30696.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 30697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30715.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30717.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30719.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30720.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30721.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30722.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30723.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30724.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30725.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30726.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30727.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30728.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30749.000000] [simulator/INFO] on6 is sleeping +[on10:ON:(11) 31065.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 31065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31077.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31079.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31081.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31083.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31085.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31087.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31089.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31091.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31093.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31095.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31097.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31245.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 31644.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 31644.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31645.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31646.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31648.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31650.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31824.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 32408.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 32408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32535.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32535.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 32535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32536.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32537.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32538.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32539.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32540.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32541.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32542.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32543.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32544.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32545.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32546.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32547.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32548.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32549.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32550.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32551.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32552.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32553.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32554.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32555.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32556.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32557.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32558.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32559.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32560.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32561.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32562.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32563.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32564.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32565.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32566.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32567.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32568.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32569.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32570.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32571.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32572.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32573.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32574.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32575.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32576.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32577.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32578.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32579.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32580.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32581.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32582.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32583.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32584.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32585.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32586.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32587.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32588.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32588.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 32589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32590.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32592.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32594.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32596.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32598.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32600.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32602.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32604.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32637.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32638.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32639.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32640.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32641.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32642.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32643.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32644.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32645.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32646.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32647.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32648.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32649.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32650.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32651.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32652.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32653.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32654.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32655.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32656.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32657.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32658.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32659.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32660.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32661.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32662.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32663.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32664.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32665.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32666.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32667.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32668.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32669.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32670.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32671.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32672.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32673.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32674.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32675.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32676.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32677.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32715.000000] [simulator/INFO] on3 is sleeping +[on12:ON:(13) 33040.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 33040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33220.000000] [simulator/INFO] on12 is sleeping +[on6:ON:(7) 33859.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 33859.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33861.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33863.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33865.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33867.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33869.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33871.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33873.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33875.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33877.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33879.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33881.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33883.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33885.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33887.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33889.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33891.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33893.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33895.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33897.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33899.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33901.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33903.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33905.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33907.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33909.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33911.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33913.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33915.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33917.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33919.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33921.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33923.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33925.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33927.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33929.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33931.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33933.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33935.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33937.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33963.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33965.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33967.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33969.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33971.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33973.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33975.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33979.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33981.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34039.000000] [simulator/INFO] on6 is sleeping +[on10:ON:(11) 34264.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 34264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34440.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34441.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34442.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34443.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34444.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 34643.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 34643.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34644.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34645.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34646.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34648.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34650.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34803.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34803.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 34803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34804.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34805.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34806.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34807.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34808.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34809.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34810.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34811.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34812.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34813.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34814.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34815.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34816.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34817.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34818.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34819.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34820.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34821.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34822.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34823.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 34823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34983.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 35152.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 35152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35250.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35250.000000] [simulator/INFO] on1 wakes up +[on2:ON:(3) 35251.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35251.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35252.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35252.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35253.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35253.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35254.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35254.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35255.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35255.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35256.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35256.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35257.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35257.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35258.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35258.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35259.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35259.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35260.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35260.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35261.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35261.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35262.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35262.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35263.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35263.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35264.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35264.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35265.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35265.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35266.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35266.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35267.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35267.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35268.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35268.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35269.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35269.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35270.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35270.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35271.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35271.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35272.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35272.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35273.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35273.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35274.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35274.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35275.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35275.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35276.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35276.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35277.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35277.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35278.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35278.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35279.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35279.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35280.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35280.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35281.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35281.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35282.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35282.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35283.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35283.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35284.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35284.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35285.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35285.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35286.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35286.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35287.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35287.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35288.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35288.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35289.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35289.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35290.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35290.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35291.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35291.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35292.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35292.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35293.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35293.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35294.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35294.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35295.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35295.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35296.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35296.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35297.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35297.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35298.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35298.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35299.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35299.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35300.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35300.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35301.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35301.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35302.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35302.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35303.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35303.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35304.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35304.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35305.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35305.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35306.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35306.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35307.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35307.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35308.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35308.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35309.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35309.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35310.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35310.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35311.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35311.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35312.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35312.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35313.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35313.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35314.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35314.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35315.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35315.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35316.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35316.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35317.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35317.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35318.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35318.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35319.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35319.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35320.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35320.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35321.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35321.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35322.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35322.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35323.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35323.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35324.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35324.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35325.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35325.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35326.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35326.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35327.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35327.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35328.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35328.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35329.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35329.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35330.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35330.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35331.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35331.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35332.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 35332.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35333.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35334.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35335.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35336.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35430.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 35538.000000] [simulator/INFO] on0 wakes up +[on8:ON:(9) 35630.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 received a hint successfully +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 add a new hint at 38215.000000 for a duration of 180.000000 +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 try to forward a hint +[on0:ON:(1) 35630.010320] [simulator/INFO] on0 sent a hint successfully +[on8:ON:(9) 35630.310320] [simulator/INFO] on8 fail to forward a hint +[on11:ON:(12) 35650.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 35650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35670.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 received data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 received a hint along with data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 35670.620640] [simulator/INFO] on0 sent data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 try to forward a hint +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 35670.630960] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 35671.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35672.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35672.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35673.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35674.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35674.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35675.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35676.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35676.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35677.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35678.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35678.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35679.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35680.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35680.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35681.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35682.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35682.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35683.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35684.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35684.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35685.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35686.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35686.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35687.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35688.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35688.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35689.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35690.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35690.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35691.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35692.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35692.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35693.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35694.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35694.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35695.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35696.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35696.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35697.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35698.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35698.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35699.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35700.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35700.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35701.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35702.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35702.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35703.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35704.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35704.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35705.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35706.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35706.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35707.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35708.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35708.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35709.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35710.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35710.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35711.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35712.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35712.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35713.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35714.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35714.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35715.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35716.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35716.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35717.630960] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 35718.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 35718.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35718.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35719.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35720.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35720.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35721.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35722.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35722.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35723.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35724.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35724.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35725.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35726.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35726.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35727.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35728.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35728.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35729.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35730.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35730.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35731.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35732.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35732.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35733.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35734.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35734.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35735.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35736.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35736.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35737.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35738.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35738.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35739.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35740.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35740.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35741.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35742.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35742.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35743.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35744.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35744.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35745.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35746.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35746.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35747.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35748.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35748.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35749.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35750.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35750.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35751.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35752.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35752.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35753.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35754.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35754.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35755.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35756.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35756.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35757.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35758.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35758.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35759.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35760.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35760.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35761.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35762.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35762.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35763.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35764.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35764.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35765.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35766.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35766.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35767.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35768.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35768.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35769.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35770.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35770.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35771.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35772.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35772.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35773.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35774.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35774.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35775.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35776.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35776.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35777.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35778.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35778.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35779.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35780.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35780.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35781.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35782.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35782.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35783.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35784.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35784.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35785.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35786.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35786.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35787.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35788.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35788.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35789.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35790.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35790.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35791.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35792.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35792.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35793.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35794.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35794.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35795.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35796.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35796.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35797.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35798.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35798.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35799.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35800.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35800.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35801.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35802.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35802.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35803.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35804.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35804.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35805.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35806.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35806.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35807.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35808.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35808.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35809.630960] [simulator/INFO] on11 fail to forward a hint +[on8:ON:(9) 35810.000000] [simulator/INFO] on8 fail to forward a hint +[on11:ON:(12) 35810.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35810.630960] [simulator/INFO] on11 try to forward a hint +[on8:ON:(9) 35811.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 35811.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35812.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35812.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35813.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35814.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35814.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35815.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35816.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35816.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35817.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35818.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35818.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35819.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35820.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35820.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35821.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35822.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35822.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35823.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35824.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35824.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35825.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35826.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35826.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35827.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35828.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35828.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35829.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35830.630960] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 35833.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 35833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35834.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35836.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35838.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35840.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35842.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35844.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35846.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35848.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35850.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35852.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35854.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35856.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35858.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35860.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35862.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35864.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35866.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35868.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35870.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35872.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35873.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35874.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35875.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35876.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35877.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35878.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35879.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35880.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35881.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35882.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35883.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35884.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35885.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35886.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35887.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35888.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35890.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35892.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35894.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35896.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35898.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35900.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35902.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35904.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35906.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35908.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35910.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35912.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35914.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35916.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35918.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35920.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35922.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35924.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35926.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35928.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35930.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35932.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35934.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35936.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35937.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35938.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35939.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35940.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35941.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35942.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35943.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35944.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35945.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35946.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35947.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35948.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35949.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35950.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35951.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35952.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35953.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35954.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35955.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35956.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35957.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35958.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35959.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35960.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35961.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35962.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35963.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35964.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35965.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35966.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35967.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35968.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35969.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35970.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35971.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35972.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35973.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35974.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35975.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35976.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35977.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35978.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35979.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35980.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35981.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35982.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35983.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35984.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35985.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35986.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35987.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35988.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35989.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35990.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35991.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35992.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35993.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35994.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35995.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35996.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35997.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35998.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35999.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36000.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36001.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36002.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36003.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36004.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36005.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36006.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36007.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36008.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36009.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36010.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36011.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36012.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36013.000000] [simulator/INFO] on4 is sleeping +[on4:ON:(5) 36097.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 36097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36098.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36100.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36102.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36104.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36106.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36108.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36110.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36112.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36114.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36116.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36118.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36267.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36268.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36269.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36270.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36271.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36272.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36273.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36274.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36275.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36276.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36277.000000] [simulator/INFO] on4 is sleeping +[on3:ON:(4) 36702.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 36702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36732.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36734.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36736.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36738.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36740.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36742.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36744.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36746.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36748.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36750.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36752.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36754.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36756.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36758.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36760.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36762.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36764.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36766.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36768.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36770.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36772.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36774.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36776.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36778.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36780.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36782.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36782.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 36782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36783.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36784.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36785.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36786.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36787.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36788.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36789.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36790.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36791.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36792.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36793.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36794.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36795.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36796.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36797.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36798.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36799.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36800.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36801.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36802.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36803.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36804.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36805.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36806.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36807.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36808.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36809.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36810.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36811.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36812.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36813.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36814.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36815.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36816.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36817.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36818.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36819.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36820.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36821.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36822.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36823.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36824.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36825.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36826.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36827.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36828.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36829.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36830.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36831.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36832.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36833.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36834.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36835.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36836.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36837.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36838.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36839.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36840.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36841.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36842.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36843.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36843.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 36843.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 36843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 36844.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 36844.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36844.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 36844.000000] [simulator/INFO] on11 try to forward a hint +[on6:ON:(7) 36845.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36846.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36847.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36848.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36849.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36850.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36851.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36852.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36853.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36854.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36855.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36856.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36857.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36858.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36859.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36860.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36861.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36862.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36863.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36864.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36865.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36866.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36867.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36868.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36869.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36870.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36871.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36872.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36873.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36874.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36875.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36876.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36877.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36878.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36879.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36880.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36881.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36882.000000] [simulator/INFO] on3 is sleeping +[on6:ON:(7) 36882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36883.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36885.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36887.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36889.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36891.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36893.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36895.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36897.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36899.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36901.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36903.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36905.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36907.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36909.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36911.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36913.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36915.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36917.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36919.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36921.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36923.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36925.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36927.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36929.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36931.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36933.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36935.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36937.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36962.000000] [simulator/INFO] on6 is sleeping +[on11:ON:(12) 37023.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 37024.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 37074.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 37074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37254.000000] [simulator/INFO] on12 is sleeping +[on9:ON:(10) 37292.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 37292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37293.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37295.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37297.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37299.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37301.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37303.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37305.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37383.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37383.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 37383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37384.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37385.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37386.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37387.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37388.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37389.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37390.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37391.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37392.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37393.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37394.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37395.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37396.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37397.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37398.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37399.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37400.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37401.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37402.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37403.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37403.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37404.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37405.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37406.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37407.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37408.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37409.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37409.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37410.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37411.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37412.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37413.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37414.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37415.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37415.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37416.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37417.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37417.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37418.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37419.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37419.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37420.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37421.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37421.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37422.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37423.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37423.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37424.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37425.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37426.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37427.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37428.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37429.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37430.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37431.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37432.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37433.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37434.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37435.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37436.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37437.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37438.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37439.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37440.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37441.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37442.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37443.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37444.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37445.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37446.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37447.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37448.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37449.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37450.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37451.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37452.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37453.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37454.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37455.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37456.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37457.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37457.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37458.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37459.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37459.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37460.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37461.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37461.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37462.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37463.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37463.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37464.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37465.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37465.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37466.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37466.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37467.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37467.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37468.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37468.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37469.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37469.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37470.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37470.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37471.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37471.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37472.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37472.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 37473.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37474.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37475.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37476.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37477.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37478.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37479.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37480.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37482.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37484.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37486.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37488.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37490.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37506.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37563.000000] [simulator/INFO] on7 is sleeping +[on1:ON:(2) 37910.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 37911.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37912.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37913.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37914.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37915.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37916.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37917.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37918.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37919.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37920.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37921.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37922.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37923.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37924.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37925.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37926.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37927.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37928.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37929.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37930.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37931.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37932.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37933.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37934.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37935.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37936.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37937.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37938.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37939.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37940.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37941.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37942.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37943.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37944.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37945.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37946.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37947.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37948.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37949.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37950.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37951.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37952.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37953.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37954.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37955.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37956.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37957.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37958.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37959.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37960.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37961.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37962.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37963.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37964.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37965.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37966.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37967.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37968.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37969.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37970.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37971.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37972.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37973.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37974.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37975.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37976.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37977.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37978.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37979.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37980.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37981.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37982.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37983.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37984.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37985.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37986.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37987.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37988.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37989.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37990.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37991.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37992.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37993.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37994.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37995.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37996.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37997.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37998.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37999.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38000.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38001.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38002.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38003.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38004.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38005.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38006.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38007.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38008.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38009.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38010.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38011.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38012.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38013.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38014.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38015.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38016.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38017.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38018.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38019.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38020.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38021.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38022.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38023.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38024.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38025.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38026.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38027.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38028.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38029.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38030.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38031.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38032.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38033.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38034.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38035.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38036.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38037.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38038.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38039.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38040.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38041.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38042.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38043.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38044.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38045.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38046.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38047.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38048.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38049.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38050.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38051.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38052.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38053.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38090.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 38215.000000] [simulator/INFO] on0 wakes up +[on8:ON:(9) 38215.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 38215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 received a hint successfully +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 try to forward a hint +[on0:ON:(1) 38216.010320] [simulator/INFO] on0 sent a hint successfully +[on8:ON:(9) 38217.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38218.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38218.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38219.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38220.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38220.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38221.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38222.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38222.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38223.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38224.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38224.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38225.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38226.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38226.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38227.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38228.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38228.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38229.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38230.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38230.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38231.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38232.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38232.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38233.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38234.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38234.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38235.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38236.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38236.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38237.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38238.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38238.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38239.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38240.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38240.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38241.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38242.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38242.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38243.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38244.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38244.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38245.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38246.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38246.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38247.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38248.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38248.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38249.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38250.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38250.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38251.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38252.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38252.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38253.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38254.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38254.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38255.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38256.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38256.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38257.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38258.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38258.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38259.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38260.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38260.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38261.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38262.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38262.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38263.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38264.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38264.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38265.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38266.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38266.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38267.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38268.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38268.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38269.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38270.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38270.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38271.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38272.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38272.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38273.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38274.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38274.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38275.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38276.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38276.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38277.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38278.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38278.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38279.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38280.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38280.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38281.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38282.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38282.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38283.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38284.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38284.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38285.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38286.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38286.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38287.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38288.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38288.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38289.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38290.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38290.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38291.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38292.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38292.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38293.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38294.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38294.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38295.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38296.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38296.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38297.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38298.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38298.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38299.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38300.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38300.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38301.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38302.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38302.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38303.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38304.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38304.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38305.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38306.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38306.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38307.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38308.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38308.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38309.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38310.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38310.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38311.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38312.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38312.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38313.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38314.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38314.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38315.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38316.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38316.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38317.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38318.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38318.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38319.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38320.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38320.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38321.010320] [simulator/INFO] on8 fail to forward a hint +[on10:ON:(11) 38322.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 38322.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 38322.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38322.010320] [simulator/INFO] on8 try to forward a hint +[on10:ON:(11) 38323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 38323.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 38324.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38325.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38325.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38326.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38327.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38327.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38328.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38329.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38329.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38330.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38331.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38331.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38332.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38333.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38333.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38334.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38335.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38335.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38336.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38337.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38337.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38338.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38339.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38339.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38340.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38341.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38341.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38342.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38343.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38343.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38344.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38345.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38345.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38346.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38347.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38347.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38348.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38349.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38349.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38350.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38351.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38351.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38352.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38353.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38353.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38354.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38355.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38355.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38356.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38357.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38357.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38358.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38359.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38359.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38360.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38361.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38361.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38362.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38363.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38363.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38364.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38365.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38365.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38366.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38367.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38367.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38368.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38369.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38369.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38370.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38371.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38371.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38372.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38373.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38373.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38374.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38375.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38375.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38376.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38377.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38377.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38378.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38379.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38379.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38380.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38381.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38381.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38382.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38383.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38383.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38384.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38385.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38385.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38386.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38387.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38387.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38388.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38389.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38389.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38390.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38391.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38391.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38392.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38393.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38393.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38394.010320] [simulator/INFO] on10 fail to forward a hint +[on8:ON:(9) 38395.000000] [simulator/INFO] on8 fail to forward a hint +[on0:ON:(1) 38395.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 38395.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38395.010320] [simulator/INFO] on10 try to forward a hint +[on8:ON:(9) 38396.000000] [simulator/INFO] on8 is sleeping +[on10:ON:(11) 38396.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38397.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38397.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38398.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38399.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38399.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38400.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38401.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38401.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38402.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38403.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38403.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38404.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38405.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38405.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38406.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38407.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38407.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38408.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38409.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38409.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38410.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38411.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38411.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38412.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38413.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38413.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38414.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38415.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38415.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38416.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38417.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38417.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38418.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38419.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38419.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38420.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38421.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38421.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38422.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38423.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38423.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38424.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38425.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38425.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38426.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38427.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38427.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38428.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38429.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38429.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38430.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38431.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38431.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38432.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38433.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38433.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38434.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38435.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38435.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38436.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38437.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38437.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38438.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38439.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38439.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38440.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38441.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38441.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38442.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38443.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38443.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38444.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38445.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38445.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38446.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38447.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38447.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38448.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38449.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38449.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38450.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38451.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38451.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38452.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38453.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38453.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38454.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38455.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38455.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38456.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38457.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38457.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38458.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38459.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38459.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38460.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38461.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38461.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38462.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38463.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38463.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38464.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38465.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38465.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38466.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38467.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38467.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38468.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38469.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38469.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38470.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38471.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38471.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38472.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38473.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38473.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38474.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38475.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38475.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38476.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38477.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38477.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38478.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38479.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38479.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38480.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38481.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38481.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38482.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38483.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38483.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38484.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38485.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38485.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38486.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38487.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38487.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38488.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38489.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38489.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38490.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38491.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38491.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38492.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38493.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38493.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38494.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38495.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38495.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38496.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38497.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38497.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38498.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38499.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38499.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38500.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38501.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38501.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38502.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38502.989680] [simulator/INFO] on10 is sleeping +[on5:ON:(6) 38574.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 38574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38754.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 38827.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 38827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39007.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 39574.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 39574.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39575.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39575.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39576.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39577.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39578.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39578.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39579.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39581.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39581.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39582.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39583.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39584.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39584.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39585.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39586.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39587.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39587.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39588.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39589.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39590.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39590.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39591.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39592.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39593.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39593.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39594.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39595.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39596.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39596.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39597.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39598.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39599.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39599.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39600.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39601.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39602.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39602.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39603.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39604.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39605.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39605.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39606.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39607.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39608.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39608.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39609.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39610.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39611.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39611.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39612.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39613.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39614.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39614.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39615.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39616.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39617.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39617.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39618.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39619.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39620.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39620.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39621.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39622.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39623.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39623.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39624.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39625.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39626.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39626.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39627.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39628.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39629.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39629.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39630.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39631.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39632.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39632.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39633.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39634.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39635.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39635.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39636.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39637.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39638.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39638.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39639.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39640.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39641.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39641.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39642.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39643.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39644.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39644.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39645.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39646.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39647.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39647.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39648.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39649.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39650.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39650.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39651.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39652.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39653.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39653.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39654.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39655.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39656.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39656.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39657.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39658.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39659.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39659.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39660.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39661.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39662.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39662.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39663.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39664.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39665.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39665.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39666.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39667.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39668.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39668.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39669.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39670.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39671.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39671.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39672.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39673.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39674.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39674.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39675.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39676.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39677.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39677.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39678.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39679.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39680.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39680.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39681.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39682.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39683.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39683.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39684.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39685.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39686.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39686.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39687.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39688.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39689.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39689.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39690.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39691.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39692.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39692.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39693.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39694.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39695.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39695.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39696.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39697.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39698.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39698.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39699.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39700.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39701.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39701.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39702.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39703.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39704.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39704.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39705.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39706.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39707.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39707.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39708.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39709.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39710.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39710.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39711.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39712.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39713.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39713.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39714.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39715.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39716.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39716.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39717.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39718.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39719.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39719.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39720.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39721.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39722.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39722.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39723.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39724.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39725.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39725.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39726.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39727.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39728.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39728.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39729.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39730.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39731.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39731.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39732.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39733.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39734.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39734.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39735.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39736.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39737.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39737.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39738.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39739.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39740.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39740.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39741.000000] [simulator/INFO] on8 fail to forward a hint +[on10:ON:(11) 39741.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 39741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 39742.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 39742.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 39742.000000] [simulator/INFO] on10 try to forward a hint +[on8:ON:(9) 39743.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39743.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39744.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39746.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39747.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39749.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39750.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39752.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39753.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39754.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 39764.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 39764.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39766.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39768.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39770.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39772.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39774.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39776.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39778.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39780.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39782.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39784.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39786.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39788.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39790.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39792.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39794.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39796.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39798.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39800.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39802.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39804.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39806.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39808.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39810.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39812.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39814.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39816.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39818.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39820.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39822.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39920.000000] [simulator/INFO] on7 is observing his environment... +[on10:ON:(11) 39921.000000] [simulator/INFO] on10 fail to forward a hint +[on7:ON:(8) 39921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39922.000000] [simulator/INFO] on7 is observing his environment... +[on10:ON:(11) 39922.000000] [simulator/INFO] on10 is sleeping +[on7:ON:(8) 39923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39944.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 41051.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 41051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41231.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 41344.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 41344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41345.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41346.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41348.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41349.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41351.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41352.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41354.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41355.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41357.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41358.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41360.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41361.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41363.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41364.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41366.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41367.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41369.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41370.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41372.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41373.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41375.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41376.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41378.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41379.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41381.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41382.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41384.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41385.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41387.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41388.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41390.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41391.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41393.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41394.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41396.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41397.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41399.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41400.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41402.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41403.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41405.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41406.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41408.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41409.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41411.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41412.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41414.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41415.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41417.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41418.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41420.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41421.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41423.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41424.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41426.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41427.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41429.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41430.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41432.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41433.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41435.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41436.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41438.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41439.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41441.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41442.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41444.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41445.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41447.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41448.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41450.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41451.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41453.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41454.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41456.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41457.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41459.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41460.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41462.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41463.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41465.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41465.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41466.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41467.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41468.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41469.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41471.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41471.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41472.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41473.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41474.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41475.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41477.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41477.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41478.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41479.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41480.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41481.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41483.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41483.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41484.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41485.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41486.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41487.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41489.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41489.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41490.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41491.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41492.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41493.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41495.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41495.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41496.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41497.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41498.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41499.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41501.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41501.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41502.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41503.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41504.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41505.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41507.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41507.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41508.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41509.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41510.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41510.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41511.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41512.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41513.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41513.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41514.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41515.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41516.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41516.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41517.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41518.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41519.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41519.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41520.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41521.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41522.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41522.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41523.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41524.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 41612.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 41612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41613.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41615.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41617.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41619.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41621.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41623.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41625.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41627.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41629.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41631.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41633.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41635.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41637.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41647.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41647.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 41647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41648.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41649.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41650.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41651.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41652.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41653.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41654.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41655.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41656.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41657.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41658.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41659.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41660.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41661.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41662.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41663.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41664.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41665.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41666.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41667.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41668.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41669.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41670.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41671.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41672.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41673.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41674.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41675.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41676.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41677.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41678.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41679.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41680.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41681.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41682.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41683.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41684.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41684.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41685.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41686.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41686.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41687.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41688.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41688.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41689.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41690.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41690.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41691.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41692.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41692.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41693.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41694.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41694.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41695.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41696.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41696.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41697.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41698.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41698.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41699.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41700.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41700.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41701.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41702.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41702.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41703.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41704.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41704.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41705.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41706.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41706.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41707.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41708.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41708.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41709.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41710.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41710.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41711.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41712.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41712.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41713.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41714.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41714.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41715.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41716.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41716.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41717.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41718.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41718.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41719.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41720.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41720.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41721.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41722.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41722.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41723.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41724.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41724.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41725.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41726.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41726.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41727.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41728.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41728.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41729.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41730.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41730.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41731.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41732.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41732.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41733.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41734.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41734.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41735.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41736.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41736.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41737.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41738.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41738.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41739.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41740.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41740.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41741.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41742.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41742.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41743.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41744.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41744.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41745.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41746.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41746.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41747.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41748.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41748.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41749.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41750.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41750.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41751.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41752.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41752.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41753.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41754.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41754.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41755.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41756.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41756.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41757.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41758.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41758.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41759.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41760.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41760.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41761.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41762.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41762.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41763.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41764.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41764.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41765.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41766.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41766.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41767.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41768.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41768.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41769.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41770.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41770.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41771.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41772.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41772.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41773.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41774.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41774.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41775.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41776.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41776.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41777.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41778.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41778.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41779.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41780.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41780.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41781.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41782.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41782.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41783.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41784.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41784.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41785.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41786.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41786.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41786.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 41786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41787.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41787.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41788.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41788.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41789.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41789.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41790.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41790.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41791.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41791.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41792.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41792.000000] [simulator/INFO] on11 is sleeping +[on3:ON:(4) 41792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41793.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41794.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41795.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41796.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41797.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41798.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41799.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41800.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41801.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41802.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41803.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41804.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41805.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41806.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41807.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41808.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41809.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41810.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41811.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41812.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41813.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41814.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41815.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41816.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41817.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41818.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41819.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41820.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41821.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41822.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41823.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41824.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41825.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41826.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41827.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41827.000000] [simulator/INFO] on9 is sleeping +[on3:ON:(4) 41828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41874.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41896.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41898.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41900.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41902.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41966.000000] [simulator/INFO] on3 is sleeping +[on12:ON:(13) 42084.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 42084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42103.000000] [simulator/INFO] on12 is observing his environment... +[on0:ON:(1) 42103.000000] [simulator/INFO] on0 wakes up +[on12:ON:(13) 42104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 received a hint successfully +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 try to forward a hint +[on0:ON:(1) 42104.010320] [simulator/INFO] on0 sent a hint successfully +[on12:ON:(13) 42105.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42106.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42106.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42107.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42108.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42108.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42109.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42110.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42110.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42111.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42112.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42112.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42113.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42114.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42114.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42115.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42116.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42116.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42117.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42118.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42118.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42119.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42120.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42120.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42121.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42122.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42122.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42123.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42124.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42124.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42125.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42126.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42126.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42127.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42128.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42128.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42129.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42130.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42130.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42131.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42132.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42132.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42133.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42134.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42134.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42135.010320] [simulator/INFO] on12 fail to forward a hint +[on5:ON:(6) 42136.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 42136.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 42136.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42136.010320] [simulator/INFO] on12 try to forward a hint +[on5:ON:(6) 42137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 received a hint successfully +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 try to forward a hint +[on0:ON:(1) 42137.010320] [simulator/INFO] on0 sent a hint successfully +[on5:ON:(6) 42138.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42139.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42139.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42140.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42141.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42141.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42142.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42143.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42143.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42144.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42145.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42145.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42146.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42147.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42147.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42148.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42149.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42149.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42150.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42151.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42151.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42152.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42153.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42153.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42154.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42155.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42155.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42156.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42157.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42157.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42158.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42159.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42159.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42160.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42161.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42161.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42162.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42163.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42163.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42164.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42165.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42165.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42166.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42167.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42167.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42168.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42169.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42169.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42170.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42171.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42171.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42172.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42173.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42173.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42174.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42175.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42175.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42176.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42177.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42177.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42178.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42179.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42179.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42180.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42181.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42181.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42182.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42183.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42183.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42184.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42185.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42185.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42186.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42187.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42187.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42188.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42189.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42189.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42190.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42191.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42191.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42192.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42193.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42193.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42194.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42195.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42195.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42196.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42197.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42197.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42198.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42199.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42199.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42200.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42201.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42201.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42202.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42203.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42203.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42204.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42205.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42205.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42206.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42207.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42207.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42208.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42209.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42209.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42210.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42211.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42211.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42212.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42213.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42213.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42214.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42215.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42215.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42216.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42217.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42217.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42218.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42219.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42219.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42220.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42221.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42221.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42222.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42223.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42223.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42224.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42225.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42225.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42226.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42227.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42227.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42228.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42229.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42229.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42230.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42231.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42231.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42232.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42233.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42233.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42234.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42235.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42235.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42236.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42237.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42237.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42238.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42239.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42239.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42240.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42241.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42241.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42242.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42243.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42243.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42244.010320] [simulator/INFO] on5 fail to forward a hint +[on1:ON:(2) 42245.000000] [simulator/INFO] on1 wakes up +[on5:ON:(6) 42245.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42245.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42246.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42247.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42247.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42248.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42249.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42249.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42250.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42251.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42251.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42252.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42253.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42253.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42254.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42255.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42255.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42256.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42257.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42257.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42258.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42259.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42259.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42260.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42261.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42261.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42262.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42263.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42263.010320] [simulator/INFO] on5 try to forward a hint +[on12:ON:(13) 42264.000000] [simulator/INFO] on12 fail to forward a hint +[on5:ON:(6) 42264.010320] [simulator/INFO] on5 fail to forward a hint +[on12:ON:(13) 42265.000000] [simulator/INFO] on12 is sleeping +[on5:ON:(6) 42265.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42265.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42266.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42267.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42267.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42268.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42269.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42269.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42270.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42271.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42271.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42272.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42273.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42273.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42274.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42275.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42275.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42276.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42277.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42277.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42278.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42279.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42279.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42280.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42281.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42281.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42282.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42283.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42283.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42284.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42285.010320] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 received data successfully +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 received a hint along with data successfully +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 is observing his environment... +[on0:ON:(1) 42285.010320] [simulator/INFO] on0 sent data successfully +[on5:ON:(6) 42285.010320] [simulator/INFO] on5 try to forward a hint +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 try to forward a hint +[on0:ON:(1) 42285.010320] [simulator/INFO] on0 is sleeping +[on1:ON:(2) 42286.010320] [simulator/INFO] on1 fail to forward a hint +[on5:ON:(6) 42286.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42287.010320] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 42287.010320] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 42287.010320] [simulator/INFO] on5 try to forward a hint +[on1:ON:(2) 42288.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42288.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42289.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42290.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42291.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42291.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42292.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42293.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42294.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42294.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42295.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42296.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42297.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42297.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42298.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42299.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42300.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42300.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42301.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42302.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42303.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42303.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42304.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42305.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42306.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42306.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42307.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42308.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42309.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42309.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42310.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42311.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42312.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42312.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42313.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42314.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42315.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42315.010320] [simulator/INFO] on1 try to forward a hint +[on5:ON:(6) 42316.000000] [simulator/INFO] on5 fail to forward a hint +[on1:ON:(2) 42316.010320] [simulator/INFO] on1 fail to forward a hint +[on5:ON:(6) 42317.000000] [simulator/INFO] on5 is sleeping +[on1:ON:(2) 42317.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42318.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42318.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42319.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42320.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42321.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42321.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42322.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42323.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42324.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42324.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42325.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42326.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42327.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42327.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42328.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42329.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42330.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42330.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42331.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42332.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42333.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42333.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42334.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42335.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42336.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42336.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42337.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42338.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42339.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42339.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42340.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42341.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42342.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42342.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42343.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42344.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42345.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42345.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42346.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42347.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42348.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42348.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42349.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42350.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42351.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42351.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42352.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42353.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42354.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42354.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42355.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42356.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42357.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42357.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42358.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42359.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42360.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42360.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42361.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42362.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42363.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42363.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42364.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42365.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42366.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42366.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42367.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42368.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42369.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42369.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42370.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42371.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42372.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42372.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42373.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42374.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42375.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42375.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42376.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42377.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42378.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42378.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42379.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42380.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42381.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42381.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42382.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42383.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42384.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42384.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42385.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42386.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42387.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42387.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42388.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42389.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42390.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42390.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42391.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42392.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42393.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42393.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42394.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42395.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42396.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42396.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42397.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42398.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42399.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42399.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42400.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42401.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42402.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42402.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42403.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42404.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42405.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42405.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42406.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42407.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42408.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42408.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42409.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42410.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42411.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42411.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42412.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42413.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42414.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42414.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42415.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42416.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42417.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42417.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42418.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42419.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42420.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42420.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42421.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42422.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42423.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42423.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42424.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42425.010320] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 42939.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 42939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42963.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42965.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42967.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42969.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42971.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42973.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42975.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42979.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42981.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43039.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43040.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43041.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43042.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43043.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43044.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43045.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43046.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43047.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43048.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43049.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43050.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43051.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43052.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43053.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43054.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43055.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43056.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43057.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43058.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43059.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43060.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43061.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43062.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43063.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43064.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43065.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43066.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43067.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43068.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43069.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43070.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43071.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43072.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43073.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43074.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43075.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43076.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43077.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43078.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43079.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43080.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43081.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43082.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43083.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43084.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43085.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43086.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43087.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43087.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 43087.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43088.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43088.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43089.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43089.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43090.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43090.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43091.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43091.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43092.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43092.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43093.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43094.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43094.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43095.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43096.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43096.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43097.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43098.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43098.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43099.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43100.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43100.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43101.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43102.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43102.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43103.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43104.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43104.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43105.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43106.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43106.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43107.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43108.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43108.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43109.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43110.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43110.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43111.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43112.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43112.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43113.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43114.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43114.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43115.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43116.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43116.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43117.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43118.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43118.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43119.000000] [simulator/INFO] on6 is sleeping +[on4:ON:(5) 43119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43267.000000] [simulator/INFO] on4 is sleeping +[on4:ON:(5) 43375.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 43375.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43376.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43377.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43378.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43379.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43380.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43381.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43382.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43383.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43384.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43385.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43386.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43387.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43388.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43389.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43390.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43391.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43392.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43393.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43394.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43395.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43396.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43397.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43398.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43399.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43400.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43401.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43402.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43403.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43404.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43406.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43408.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43410.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43411.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43412.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43413.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43414.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43415.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43416.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43417.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43418.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43419.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43420.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43421.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43422.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43423.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43424.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43425.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43426.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43427.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43428.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43429.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43430.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43431.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43432.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43433.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43434.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43435.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43436.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43437.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43438.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43439.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43440.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43441.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43442.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43443.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43444.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43445.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43446.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43447.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43448.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43449.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43450.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43451.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43452.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43453.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43454.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43455.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43456.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43457.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43458.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43459.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43460.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43461.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43462.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43463.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43464.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43465.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43466.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43467.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43468.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43469.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43470.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43471.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43472.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43473.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43474.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43475.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43476.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43477.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43507.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43509.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43511.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43513.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43514.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43515.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43516.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43517.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43518.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43524.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43526.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43528.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43530.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43555.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 43911.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 43911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43912.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43913.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43915.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43916.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43917.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43918.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43919.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43921.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43921.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43922.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43923.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43924.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43925.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43927.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43927.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43928.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43929.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43930.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43931.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43933.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43933.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43934.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43935.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43936.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43937.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43939.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43939.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43940.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43941.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43942.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43943.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43945.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43945.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43946.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43947.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43948.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43949.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43951.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43951.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43952.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43953.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43954.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43955.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43957.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43957.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43958.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43959.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43960.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43961.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43963.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43963.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43964.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43965.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43966.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43967.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43969.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43970.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43971.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43972.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43973.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43975.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43975.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43976.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43977.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43978.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43979.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43981.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43981.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43982.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43983.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43984.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43985.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43987.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43987.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43988.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43989.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43990.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43991.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43993.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43993.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43994.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43995.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43996.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43997.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43999.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43999.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44000.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44001.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44002.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44002.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44003.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44004.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44005.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44005.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44006.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44007.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44008.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44008.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44009.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44010.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44011.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44011.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44012.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44013.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44014.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44014.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44015.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44016.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44017.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44017.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44018.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44019.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44020.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44020.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44021.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44022.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44023.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44023.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44024.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44025.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44026.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44026.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44027.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44028.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44029.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44029.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44030.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44031.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44032.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44032.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44033.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44034.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44035.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44035.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44036.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44037.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44038.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44038.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44039.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44040.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44041.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44041.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44042.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44043.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44044.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44044.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44045.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44046.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44047.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44047.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44048.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44049.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44050.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44050.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44051.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44052.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44053.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44053.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44054.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44055.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44056.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44056.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44057.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44058.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44059.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44059.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44060.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44061.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44062.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44062.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44063.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44064.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44065.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44065.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44066.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44067.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44068.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44068.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44069.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44070.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44071.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44071.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44072.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44073.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44074.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44074.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44075.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44076.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44077.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44077.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44078.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44079.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44080.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44080.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44081.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44082.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44083.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44083.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44084.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44085.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44086.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44086.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44087.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44088.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44089.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44089.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44090.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44091.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 44174.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 44174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44221.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44222.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44223.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44224.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44225.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44226.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44227.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44228.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44229.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44230.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44231.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44232.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44233.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44234.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44235.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44236.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44237.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44238.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44239.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44240.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44241.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44242.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44243.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44244.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44245.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44246.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44247.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44248.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44249.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44250.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44251.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44252.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44253.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44254.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44255.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44256.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44257.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44258.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44259.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44260.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44261.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44262.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44263.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44264.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44265.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44266.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44267.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44268.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44269.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44270.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44271.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44272.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44273.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44274.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44275.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44276.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44277.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44278.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44279.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44280.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44281.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44282.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44283.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44284.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44285.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44286.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44287.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44288.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44289.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44290.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44291.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44292.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44293.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44294.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44295.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44296.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44297.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44298.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44299.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44300.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44301.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44302.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44303.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44304.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44305.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44306.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44307.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44308.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44309.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44310.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44311.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44312.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44313.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44314.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44315.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44316.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44317.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44318.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44319.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44320.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44321.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44322.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44323.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44324.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44325.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44326.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44327.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44328.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44329.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44354.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 44551.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 44551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44693.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44695.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44697.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44701.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44703.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44731.000000] [simulator/INFO] on2 is sleeping +[on3:ON:(4) 44841.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 44841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44874.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44874.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 44874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44875.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44876.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44877.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44878.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44879.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44880.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44881.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44882.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44883.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44884.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44885.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44886.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44887.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44888.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44889.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44890.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44891.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44892.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44893.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44894.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44895.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44896.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44897.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44898.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44899.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44900.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44901.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44902.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44903.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44904.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44905.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44906.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44907.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44908.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44909.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44910.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44911.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44912.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44913.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44914.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44915.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44916.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44917.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44918.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44919.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44920.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44921.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44922.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44923.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44924.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44925.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44926.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44927.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44928.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44929.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44930.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44931.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44932.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44933.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44934.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44935.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44936.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44937.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44938.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44939.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44940.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44941.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44942.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44943.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44944.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44945.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44946.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44947.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44948.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44949.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44950.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44951.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44952.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44953.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44954.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44955.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44956.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44957.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44958.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44959.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44960.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44961.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44962.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44963.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44964.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44965.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44966.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44967.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44968.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44969.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44970.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44971.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44972.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44973.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44974.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44975.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44976.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44977.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44978.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44979.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44980.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44981.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44982.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44983.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44984.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44985.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44986.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44987.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44988.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44989.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44990.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44991.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44992.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44992.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44993.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44994.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44994.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44995.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44996.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44996.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44997.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44998.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44998.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44999.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45000.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45000.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45001.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45002.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45002.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45003.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45004.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45004.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45005.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45006.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45006.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45007.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45008.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45008.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45009.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45010.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45010.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45011.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45012.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45012.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45013.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45014.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45014.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45015.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45016.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45016.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45017.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45018.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45018.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45019.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45020.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45020.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45021.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45021.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 45022.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45024.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45026.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45028.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45030.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45032.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45034.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45036.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45038.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45040.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45042.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45044.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45046.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45048.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45050.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45054.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 45060.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 45060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45061.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45062.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45064.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45065.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45067.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45068.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45070.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45071.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45073.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45074.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45076.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45077.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45079.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45080.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45082.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45083.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45085.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45086.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45088.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45089.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45091.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45092.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45094.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45095.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45097.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 45097.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 45097.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 45097.000000] [simulator/INFO] on12 try to forward a hint +[on10:ON:(11) 45098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45142.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 45142.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 45142.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 45143.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 45143.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 45143.000000] [simulator/INFO] on1 try to forward a hint +[on10:ON:(11) 45144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45175.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45175.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 45175.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45176.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45177.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45177.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45178.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45179.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45179.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45180.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45181.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45181.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45182.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45183.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45183.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45184.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45185.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45185.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45186.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45187.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45187.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45188.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45189.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45189.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45190.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45191.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45191.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45192.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45193.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45193.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45194.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45195.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45195.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45196.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45197.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45197.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45198.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45199.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45199.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45200.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45201.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45201.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45202.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45203.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45203.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45204.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45205.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45205.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45206.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45207.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45207.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45208.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45209.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45209.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45210.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45211.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45211.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45212.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45213.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45213.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45214.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45215.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45215.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45216.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45217.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45217.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45218.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45219.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45219.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45220.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45221.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45221.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45222.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45223.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45223.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45224.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45225.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45225.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45226.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45227.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45227.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45228.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45229.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45229.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45230.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45231.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45231.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45232.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45233.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45233.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45234.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45235.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45235.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45236.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45237.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45237.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45238.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45239.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45239.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 45240.000000] [simulator/INFO] on12 fail to forward a hint +[on6:ON:(7) 45240.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45241.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45241.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 45241.000000] [simulator/INFO] on12 is sleeping +[on6:ON:(7) 45242.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45243.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45243.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45244.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45245.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45245.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45246.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45247.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45247.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45248.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45249.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45249.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45250.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45251.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45251.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45252.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45253.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45253.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45254.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45255.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45255.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45256.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45257.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45257.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45258.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45259.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45259.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45260.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45261.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45261.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45262.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45263.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45263.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45264.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45265.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45265.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45266.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45267.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45267.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45268.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45269.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45269.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45270.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45271.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45271.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45272.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45273.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45273.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45274.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45275.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45275.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45276.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45277.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 45277.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45278.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45279.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45280.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45281.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45282.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45283.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45284.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45285.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45286.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45287.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45288.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45289.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45290.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45291.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45292.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45293.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45294.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45295.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45296.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45297.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45298.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45299.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45300.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45301.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45302.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45303.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45304.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45305.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45306.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45307.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45308.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45309.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45310.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45311.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45312.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45313.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45314.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45315.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45316.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45317.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45318.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45319.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45320.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45321.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 45322.000000] [simulator/INFO] on1 fail to forward a hint +[on6:ON:(7) 45322.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45323.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 45323.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 45324.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45325.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45326.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45327.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45328.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45330.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45332.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45334.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45336.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45338.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45340.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45342.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45344.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45346.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45348.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45350.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45352.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45354.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45355.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 46029.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 46029.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46030.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46031.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46032.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46033.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46034.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46035.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46036.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46037.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46038.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46039.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46040.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46041.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46042.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46043.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46044.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46046.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46048.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46050.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46052.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46054.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46056.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46058.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46060.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46062.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46064.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46066.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46068.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46070.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46072.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46074.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46076.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46078.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46080.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46082.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46084.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46086.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46088.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46090.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46092.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46094.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46096.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46098.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46100.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46145.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46146.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46147.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46148.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46149.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46150.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46151.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46152.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46153.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46154.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46155.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46156.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46157.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46158.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46159.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46160.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46161.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46162.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46163.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46164.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46183.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46183.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 46183.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46184.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46185.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46185.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46186.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46187.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46187.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46188.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46189.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46189.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46190.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46191.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46191.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46192.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46193.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46193.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46194.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46195.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46195.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46196.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46197.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46197.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46198.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46199.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46199.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46200.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46201.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46201.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46202.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46203.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46203.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46204.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46205.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46205.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46206.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46207.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46207.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46208.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46209.000000] [simulator/INFO] on7 is sleeping +[on0:ON:(1) 46209.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46210.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46211.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46212.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46213.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46214.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46215.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46216.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46217.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46218.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46219.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46220.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46221.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46222.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46223.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46224.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46225.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46226.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46227.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46228.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46229.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46230.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46231.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46232.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46233.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46234.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46235.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46236.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46237.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46238.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46239.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46240.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46241.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46242.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46243.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46244.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46245.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46246.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46247.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46248.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46249.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46250.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46251.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46252.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46253.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46254.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46255.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46256.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46257.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46258.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46259.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46260.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46261.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46262.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46263.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46264.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46265.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46266.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46267.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46268.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46269.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46270.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46271.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46272.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46273.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46274.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46275.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46276.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46277.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46278.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46279.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46280.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46281.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46282.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46283.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46284.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46285.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46286.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46287.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46288.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46289.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46290.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46291.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46292.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46293.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46294.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46295.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46296.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46297.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46298.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46299.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46300.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46301.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46302.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46303.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46363.000000] [simulator/INFO] on0 is sleeping +[on9:ON:(10) 46753.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 46753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46837.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46839.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46841.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46843.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46845.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46847.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46849.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46851.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46853.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46855.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46857.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46859.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46861.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46863.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46865.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46867.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46869.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46871.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46873.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46898.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46928.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46928.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 46928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46929.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46930.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46931.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46932.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46933.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46933.000000] [simulator/INFO] on9 is sleeping +[on8:ON:(9) 46934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46955.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46957.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46959.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46960.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46961.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46962.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46963.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46964.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46965.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46966.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46967.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46968.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46969.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46970.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46971.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46972.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46973.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46974.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46975.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46976.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46977.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46978.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46979.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46980.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46981.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46982.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46983.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46984.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46985.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46986.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46987.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46988.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46989.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46990.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46991.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46992.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46993.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46994.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46995.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46996.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46997.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46998.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46999.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47000.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47001.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47002.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47003.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47004.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47005.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47006.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47007.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47008.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47009.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47010.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47011.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47012.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47013.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47014.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47015.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47016.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47017.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47018.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47018.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 47018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47019.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47019.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47020.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47021.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47021.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47022.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47023.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47023.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47024.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47025.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47025.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47026.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47027.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47027.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47028.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47029.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47029.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47030.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47031.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47031.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47032.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47033.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47033.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47034.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47035.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47035.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47036.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47037.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47037.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47038.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47039.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47039.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47040.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47041.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47042.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47043.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47044.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47045.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47046.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47047.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47048.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47049.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47050.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47051.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47052.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47053.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47054.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47055.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47056.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47057.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47058.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47059.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47060.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47061.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47062.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47063.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47064.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47065.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47066.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47067.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47068.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47069.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47070.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47071.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47072.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47073.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47074.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47075.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47076.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47077.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47078.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47079.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47080.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47081.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47082.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47083.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47084.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47085.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47086.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47087.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47088.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47089.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47090.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47091.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47092.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47093.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47093.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47093.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 47093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47094.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47094.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47095.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47095.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47096.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47096.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47097.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47097.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47098.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47098.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47099.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47099.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47100.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47100.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47101.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47101.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47102.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47102.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47103.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47103.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47104.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47104.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47105.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47105.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47106.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47106.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47107.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47107.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47108.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47108.000000] [simulator/INFO] on8 is sleeping +[on10:ON:(11) 47108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47109.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47110.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47111.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47112.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47113.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47114.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47115.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47116.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47117.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47118.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47119.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47120.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47121.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47122.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47123.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47124.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47125.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47126.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47127.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47128.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47129.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47130.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47131.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47132.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47133.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47134.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47135.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47136.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47137.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47138.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47139.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47140.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47141.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47142.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47143.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47144.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47145.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47146.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47147.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47148.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47149.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47150.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47151.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47152.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47153.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47154.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47155.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47156.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47157.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47158.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47159.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47160.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47161.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47162.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47163.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47164.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47165.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47166.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47167.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47168.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47169.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47170.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47171.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47172.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47173.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47174.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47175.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47176.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47177.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47178.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47179.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47180.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47181.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47182.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47183.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47184.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47185.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47186.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47187.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47188.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47189.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47190.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47191.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47192.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47193.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47194.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47195.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47196.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47197.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47198.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47198.000000] [simulator/INFO] on10 is sleeping +[on12:ON:(13) 47199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47255.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47257.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47259.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47261.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47263.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47265.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47267.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47269.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47271.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47273.000000] [simulator/INFO] on12 is sleeping +[on0:ON:(1) 47289.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 47289.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47290.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47291.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47292.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47293.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47294.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47295.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47296.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47297.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47298.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47299.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47300.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47301.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47302.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47303.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47363.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47364.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47365.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47366.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47367.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47368.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47369.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47370.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47371.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47372.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47373.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47374.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47375.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47376.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47377.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47378.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47379.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47380.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47381.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47382.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47383.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47384.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47385.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47386.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47387.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47388.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47389.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47390.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47391.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47392.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47393.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47394.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47395.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47396.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47397.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47398.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47399.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47400.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47401.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47402.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47403.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47404.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47405.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47406.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47407.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47409.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47411.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47413.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47415.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47417.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47419.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47421.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47423.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47425.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47427.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47429.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47431.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47433.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47435.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47437.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47439.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47441.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47443.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47445.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47447.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47449.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47451.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47453.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47455.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47457.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47459.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47461.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47463.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47465.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47467.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47469.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 47757.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 47757.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47758.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47759.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47760.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47761.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47762.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47763.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47764.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47765.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47766.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47767.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47768.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47769.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47770.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47771.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47772.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47773.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47774.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47775.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47776.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47777.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47778.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47779.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47780.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47781.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47782.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47783.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47784.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47785.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47786.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47787.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47788.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47789.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47790.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47791.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47792.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47793.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47794.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47796.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47797.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47798.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47799.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47800.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47801.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47802.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47803.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47804.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47805.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47806.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47807.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47808.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47809.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47810.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47811.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47812.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47813.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47814.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47815.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47816.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47817.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47818.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47819.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47820.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47821.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47822.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47823.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47824.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47825.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47826.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47827.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47828.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47829.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47830.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47831.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47832.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47834.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47836.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47838.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47840.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47842.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47844.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47846.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47848.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47850.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47852.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47854.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47856.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47858.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47860.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47862.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47864.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47866.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47868.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47870.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47872.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47873.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47874.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47875.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47876.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47877.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47878.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47879.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47880.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47881.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47882.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47883.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47884.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47885.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47886.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47887.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47888.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47890.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47892.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47894.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47896.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47898.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47900.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47902.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47904.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47906.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47908.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47910.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47912.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47914.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47916.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47918.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47920.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47922.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47924.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47926.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47928.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47930.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47932.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47934.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47936.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47937.000000] [simulator/INFO] on4 is sleeping +[on11:ON:(12) 48148.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 48148.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48149.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48150.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48151.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48152.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48153.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48154.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48155.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48156.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48157.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48158.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48159.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48160.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48161.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48162.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48163.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48164.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48165.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48166.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48167.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48168.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48169.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48170.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48171.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48172.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48173.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48174.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48174.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 48174.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48175.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48175.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48176.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48176.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48177.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48177.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48178.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48178.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48179.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48179.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48180.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48180.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48181.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48181.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48182.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48182.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48183.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48183.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48184.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48184.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48185.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48185.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48186.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48186.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48187.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48187.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48188.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48188.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48189.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48189.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48190.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48190.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48191.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48191.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48192.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48192.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48193.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48193.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48194.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48194.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48195.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48195.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48196.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48196.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48197.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48197.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48198.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48198.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48199.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48199.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48200.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48200.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48201.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48201.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48202.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48202.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48203.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48203.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48204.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48204.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48205.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48205.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48206.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48206.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48207.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48207.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48208.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48208.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48209.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48209.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48210.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48210.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48211.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48211.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48212.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48212.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48213.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48213.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48214.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48214.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48215.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48215.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48216.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48216.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48217.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48217.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48218.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48218.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48219.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48219.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48220.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48220.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48221.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48221.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48222.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48222.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48222.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 48222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48223.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48223.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48224.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48224.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48225.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48225.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48226.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48226.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48227.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48227.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48228.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48228.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48229.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48229.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48230.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48230.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48230.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48231.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48231.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48232.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48232.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48232.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48233.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48233.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48234.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48234.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48234.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48235.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48235.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48236.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48236.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48236.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48237.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48237.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48238.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48238.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48238.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48239.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48239.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48240.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48240.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48241.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48241.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48242.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48242.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48243.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48243.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48244.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48244.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48244.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48245.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48245.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48246.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48246.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48247.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48247.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48248.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48248.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48249.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48249.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48250.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48250.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48250.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48251.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48251.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48252.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48252.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48253.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48253.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48254.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48254.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48255.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48255.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48256.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48256.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48256.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48257.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48257.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48258.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48258.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48259.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48259.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48260.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48260.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48261.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48261.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48262.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48262.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48262.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48263.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48263.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48264.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48264.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48265.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48265.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48266.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48266.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48267.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48267.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48268.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48268.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48268.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48269.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48269.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48270.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48270.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48271.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48271.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48272.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48272.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48273.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48273.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48274.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48274.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48274.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48275.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48275.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48276.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48276.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48277.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48277.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48278.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48278.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48279.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48279.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48280.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48280.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48280.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48281.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48281.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48282.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48282.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48283.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48283.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48284.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48284.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48285.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48285.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48286.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48286.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48286.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48286.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 48286.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48287.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48287.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48287.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48288.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48288.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48288.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48288.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48289.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48289.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48289.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48290.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48290.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48290.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48290.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48291.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48291.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48291.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48292.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48292.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48292.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48293.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48293.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48293.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48294.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48294.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48294.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48295.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48295.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48295.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48296.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48296.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48296.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48297.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48297.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48297.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48298.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48298.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48298.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48299.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48299.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48299.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48300.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48300.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48300.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48301.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48301.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48301.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48302.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48302.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48302.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48303.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48303.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48303.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48304.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48304.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48304.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48305.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48305.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48305.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48306.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48306.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48306.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48307.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48307.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48307.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48308.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48308.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48308.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48309.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48309.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48309.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48310.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48310.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48310.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48311.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48311.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48311.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48311.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48312.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48312.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48312.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48313.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48313.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48313.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48313.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48314.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48314.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48314.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48315.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48315.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48315.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48315.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48316.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48316.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48316.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48317.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48317.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48317.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48317.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48318.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48318.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48318.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48319.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48319.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48319.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48319.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48320.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48320.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48320.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48321.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48321.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48321.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48321.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48322.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48322.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48322.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48323.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48323.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48323.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48323.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48324.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48324.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48324.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48325.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48325.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48325.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48325.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48326.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48326.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48326.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48327.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48327.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48327.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48327.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48328.000000] [simulator/INFO] on11 is sleeping +[on6:ON:(7) 48328.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48328.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48329.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48329.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48330.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48330.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48331.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48331.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48332.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48332.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48333.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48333.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48334.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48334.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48335.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48335.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48336.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48336.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48337.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48337.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48338.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48338.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48339.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48339.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48340.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48340.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48341.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48341.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48342.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48342.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48343.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48343.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48344.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48344.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48345.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48345.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48346.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48346.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48347.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48347.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48348.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48348.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48349.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48349.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48350.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48350.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48351.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48351.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48352.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48352.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48353.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48353.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48354.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 48354.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48355.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48355.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48356.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48357.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48357.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48358.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48359.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48359.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48360.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48361.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48361.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48362.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48363.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48363.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48364.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48365.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48365.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48366.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48367.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48367.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48368.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48369.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48370.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48371.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48372.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48373.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48373.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48374.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48375.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48376.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48377.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48378.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48379.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48379.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48380.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48381.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48382.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48383.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48384.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48385.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48386.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48387.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48388.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48389.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48390.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48391.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48392.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48393.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48394.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48395.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48396.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48397.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48398.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48399.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48400.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48401.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48402.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 48402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48466.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 48520.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 48520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48521.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48523.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48525.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48530.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48531.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48532.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48533.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48534.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48535.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48536.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48537.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48538.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48539.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48540.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48541.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48542.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48543.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48544.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48545.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48546.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48547.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48548.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48549.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48550.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48693.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48695.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48697.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48700.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 48737.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 48737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48757.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48759.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48761.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48763.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48765.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48767.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48769.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48771.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48773.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48775.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48777.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48779.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48781.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48783.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48784.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48785.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48786.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48787.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48788.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48789.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48790.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48791.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48792.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48793.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48794.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48795.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48796.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48797.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48798.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48799.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48800.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48801.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48802.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48803.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48804.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48805.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48806.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48807.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48808.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48809.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48810.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48811.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48812.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48813.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48814.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48815.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48816.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48817.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48818.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48819.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48820.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48821.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48822.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48823.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48824.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48825.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48826.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48827.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48828.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48829.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48830.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48831.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48832.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48833.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48834.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48835.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48836.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48837.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48838.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48839.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48840.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48841.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48842.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48843.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48844.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48845.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48846.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48847.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48848.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48849.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48850.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48851.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48852.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48853.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48854.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48889.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48891.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48893.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48895.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48897.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48899.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48901.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48903.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48905.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48907.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48909.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48913.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48917.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 50117.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 50117.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50118.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50119.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50120.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50121.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50122.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50123.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50124.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50125.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50126.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50127.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50128.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50129.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50130.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50131.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50132.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50133.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50134.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50135.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50136.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50137.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50138.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50139.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50140.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50141.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50142.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50143.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50144.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50145.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50146.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50147.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50148.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50149.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50150.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50151.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50153.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50155.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50157.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50158.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50159.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50160.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50161.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50162.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50163.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50164.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50165.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50166.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50167.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50168.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50169.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50170.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50171.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50172.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50173.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50174.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50175.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50176.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50177.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50178.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50179.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50180.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50181.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50182.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50183.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50184.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50185.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50186.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50187.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50188.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50189.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50190.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50191.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50192.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50193.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50194.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50195.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50196.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50198.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50200.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50202.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50204.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50206.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50208.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50210.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50212.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50214.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50215.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50215.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 50215.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50216.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50217.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50217.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50218.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50219.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50219.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50220.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50221.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50221.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50222.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50223.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50223.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50224.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50225.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50225.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50226.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50227.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50227.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50228.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50229.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50229.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50230.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50231.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50231.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50232.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50233.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50233.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50234.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50235.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50235.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50236.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50237.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50237.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50238.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50239.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50239.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50240.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50241.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50241.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50242.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50243.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50243.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50244.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50245.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50245.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50246.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50247.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50247.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50248.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50249.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50249.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50250.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50251.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50251.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50252.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50253.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50253.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50254.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50255.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50255.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50256.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50257.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50257.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50258.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50259.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50259.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50260.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50261.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50262.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50263.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50264.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50265.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50266.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50267.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50268.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50269.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50270.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50271.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50272.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50273.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50274.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50275.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50276.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50277.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50278.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50279.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50280.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50281.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50282.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50283.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50284.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50285.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50286.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50287.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50288.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50289.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50290.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50291.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50292.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50293.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50294.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50295.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50296.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50297.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 50297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50344.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50345.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50346.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50347.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50348.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50349.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50350.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50351.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50352.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50353.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50354.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50355.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50356.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50357.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50358.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50359.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50360.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50361.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50362.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50363.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50364.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50365.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50366.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50367.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50368.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50369.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50370.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50371.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50372.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50373.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50374.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50375.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50376.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50377.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50378.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50379.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50380.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50381.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50382.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50383.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50384.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50385.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50386.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50387.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50388.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50389.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50390.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50391.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50392.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50393.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50394.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50395.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 50438.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 50438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50618.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 50678.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 50678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50732.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50734.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50736.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50738.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50740.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50742.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50744.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50746.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50748.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50750.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50752.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50754.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50756.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50758.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50759.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50759.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 50759.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50760.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50760.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50761.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50761.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50762.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50762.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50763.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50763.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50764.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50764.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50765.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50765.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50766.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50766.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50767.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50767.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50768.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50768.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50769.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50769.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50770.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50770.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50771.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50771.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50772.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50772.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50773.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50773.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50774.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50774.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50775.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50775.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50776.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50776.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50777.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50777.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50778.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50778.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50779.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50779.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50780.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50780.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50781.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50781.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50782.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50782.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50783.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50783.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50784.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50784.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50785.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50785.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50786.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50787.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50787.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50788.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50789.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50789.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50790.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50791.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50791.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50792.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50793.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50793.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50794.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50795.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50795.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50796.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50797.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50797.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50798.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50799.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50799.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50800.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50801.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50801.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50802.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50803.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50803.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50804.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50805.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50805.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50806.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50807.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50807.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50808.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50809.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50809.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50810.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50811.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50811.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50812.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50813.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50813.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50814.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50815.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50815.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50816.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50817.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50817.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50818.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50819.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50819.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50820.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50821.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50821.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50822.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50823.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50823.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50824.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50825.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50825.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50826.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50827.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50827.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50828.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50829.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50829.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50830.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50831.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50831.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50832.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50833.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50833.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50834.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50835.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50835.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50836.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50837.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50837.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50838.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50839.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50839.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50840.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50841.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50841.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50842.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50843.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50843.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50844.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50845.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50845.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50846.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50847.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50847.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50848.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50849.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50849.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50850.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50851.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50851.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50852.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50853.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50853.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50854.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50855.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50855.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50856.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50857.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50857.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50858.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50858.000000] [simulator/INFO] on3 is sleeping +[on0:ON:(1) 50859.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50861.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50863.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50865.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50867.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50869.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50871.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50873.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50875.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50877.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50879.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50881.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50883.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50885.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50887.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50889.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50891.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50893.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50895.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50901.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50903.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50939.000000] [simulator/INFO] on0 is sleeping +[on8:ON:(9) 51090.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 51090.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51092.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51094.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51096.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51098.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51100.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51102.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51104.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51106.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51108.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51110.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51112.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51114.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51116.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51118.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51120.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51122.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51124.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51126.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51128.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51130.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51132.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51134.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51136.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51138.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51140.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51142.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51144.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51146.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51148.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51150.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51152.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51154.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51156.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51158.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51160.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51162.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51164.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51166.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51168.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51170.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51172.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51173.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51221.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51222.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51223.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51224.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51225.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51226.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51227.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51228.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51229.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51230.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51231.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51232.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51233.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51234.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51235.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51236.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51237.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51238.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51239.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51240.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51241.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51242.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51243.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51244.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51245.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51246.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51247.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51248.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51249.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51250.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51251.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51252.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51253.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51254.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51255.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51256.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51257.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51258.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51259.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51260.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51261.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51262.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51263.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51264.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51265.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51266.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51267.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51268.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51269.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51270.000000] [simulator/INFO] on8 is sleeping +[on6:ON:(7) 51482.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 51482.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51483.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51484.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51485.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51486.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51487.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51488.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51489.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51490.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51491.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51493.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51495.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51497.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51499.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51501.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51518.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51518.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 51518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51519.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51520.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51521.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51522.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51523.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51524.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51525.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51526.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51527.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51528.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51529.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51530.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51531.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51532.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51533.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51534.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51535.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51536.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51537.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51538.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51539.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51540.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51541.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51542.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51543.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51544.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51545.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51546.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51547.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51548.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51549.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51550.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51551.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51552.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51553.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51554.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51555.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51556.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51557.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51558.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51559.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51560.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51561.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51562.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51563.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51564.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51565.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51566.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51567.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51568.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51569.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51570.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51571.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51572.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51573.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51574.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51575.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51576.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51577.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51578.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51579.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51580.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51581.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51582.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51583.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51584.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51585.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51586.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51587.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51588.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51589.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51590.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51591.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51592.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51593.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51594.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51595.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51596.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51597.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51598.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51599.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51600.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51601.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51602.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51603.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51604.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51605.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51606.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51607.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51608.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51609.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51610.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51611.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51612.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51613.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51614.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51615.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51616.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51617.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51618.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51619.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51620.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51621.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51622.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51622.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51623.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51624.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51624.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51625.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51626.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51626.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51627.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51628.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51628.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51629.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51630.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51630.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51631.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51632.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51632.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51633.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51634.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51634.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51635.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51636.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51636.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51637.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51638.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51638.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51639.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51640.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51640.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51640.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 51640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51641.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51641.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51642.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51642.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51643.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51643.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51644.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51644.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51645.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51645.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51646.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51646.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51647.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51647.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51648.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51648.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51649.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51649.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51650.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51650.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51651.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51651.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51652.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51652.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51653.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51653.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51654.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51654.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51655.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51655.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51656.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51656.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51657.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51657.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51658.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51658.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51659.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51659.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51660.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51660.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51661.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51661.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51662.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 51662.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51663.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51663.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51664.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51665.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51665.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51666.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51667.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51667.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51668.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51669.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51669.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51670.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51671.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51671.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51672.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51673.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51674.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51675.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51676.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51677.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51678.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51679.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51680.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51681.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51682.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51683.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51684.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51685.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51686.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51687.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51688.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51689.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51690.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51691.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51692.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51693.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51694.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51695.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51696.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51697.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51698.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 51698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51701.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51703.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51731.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51732.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51733.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51734.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51735.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51736.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51737.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51738.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51739.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51740.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51741.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51742.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51743.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51744.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51745.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51746.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51747.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51748.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51749.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51750.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51751.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51752.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51753.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51754.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51755.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51756.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51757.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51758.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51759.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51760.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51761.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51762.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51763.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51764.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51765.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51766.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51767.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51768.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51769.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51770.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51771.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51772.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51773.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51774.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51775.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51776.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51777.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51778.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51779.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51780.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51781.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51782.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51783.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51784.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51785.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51786.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51787.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51788.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51789.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51790.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51791.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51792.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51793.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51794.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51795.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51796.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51797.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51798.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51799.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51800.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51801.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51802.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51803.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51804.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51805.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51806.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51807.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51808.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51809.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51810.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51811.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51812.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51813.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51814.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51815.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51815.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 51815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51816.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51816.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51817.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51818.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51818.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51819.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51820.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51820.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 51821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51846.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51852.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51858.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51864.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51870.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51876.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51878.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51880.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51882.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51884.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51885.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51886.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51888.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51890.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51891.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51892.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51894.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51896.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51897.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51898.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51900.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51902.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51903.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51904.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51906.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51908.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51909.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51910.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51912.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51914.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51915.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51916.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51918.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51920.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51921.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51922.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51923.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51924.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51925.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51927.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51930.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51933.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51936.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51939.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51942.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51945.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51948.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51951.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51954.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51957.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51960.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51963.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51966.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51969.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51972.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51975.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51978.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51981.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51984.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51987.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51990.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51993.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51995.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 52730.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 52730.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52731.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52732.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52734.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52736.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52737.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52738.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52740.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52742.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52743.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52744.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52746.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52748.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52749.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52750.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52752.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52754.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52755.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52756.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52758.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52760.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52761.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52762.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52764.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52766.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52767.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52768.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52770.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52772.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52773.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52774.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52776.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52778.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52779.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52780.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52782.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52784.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52785.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52786.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52788.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52790.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52791.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52792.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52794.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52800.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52806.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52812.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52818.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52824.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52830.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52836.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52842.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52848.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52854.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52856.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52858.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52860.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52862.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52864.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52866.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52868.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52870.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52872.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52874.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52876.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52878.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52880.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52882.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52884.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52886.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52888.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52890.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52892.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52894.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52896.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52898.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52900.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52902.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52903.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52904.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52905.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52906.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52907.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52908.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52909.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52910.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 53290.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 53290.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53291.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53293.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53295.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53297.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53299.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53301.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53303.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53305.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53383.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53385.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53387.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53389.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53391.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53393.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53395.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53397.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53399.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53401.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53466.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53467.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53468.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53469.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53470.000000] [simulator/INFO] on9 is sleeping +[on4:ON:(5) 53478.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 53478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53507.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53509.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53511.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53513.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53514.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53515.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53516.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53517.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53518.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53524.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53526.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53528.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53530.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53658.000000] [simulator/INFO] on4 is sleeping +[on7:ON:(8) 53878.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 53878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53983.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53983.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 53983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53984.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53984.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53985.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53986.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53986.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53987.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53988.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53988.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53989.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53990.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53990.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53991.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53992.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53992.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53993.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53994.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53994.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53995.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53996.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53996.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53997.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53998.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53998.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53999.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54000.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54000.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54001.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54002.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54002.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54003.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54004.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54004.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54005.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54006.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54006.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54007.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54008.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54008.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54009.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54009.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54010.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54010.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54011.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54011.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54012.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54012.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54013.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54013.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54014.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54014.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54015.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54015.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54016.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54016.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54017.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54017.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54018.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54018.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54019.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54019.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54020.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54020.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54021.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54021.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54022.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54022.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54023.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54024.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54024.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54025.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54026.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54026.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54027.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54028.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54028.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54029.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54030.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54030.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54031.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54032.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54032.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54033.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54034.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54034.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54035.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54036.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54036.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54037.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54038.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54038.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54039.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54040.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54040.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54041.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54042.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54042.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54043.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54044.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54044.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54045.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54046.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54046.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54047.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54048.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54048.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54049.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54050.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54050.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54051.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54052.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54052.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54053.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54054.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54054.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54055.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54055.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54056.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54056.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54057.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54057.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54058.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54058.000000] [simulator/INFO] on7 is sleeping +[on11:ON:(12) 54059.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54060.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54061.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54062.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54063.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54064.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54065.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54066.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54067.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54068.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54069.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54070.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54071.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54072.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54073.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54074.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54075.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54076.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54077.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54078.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54079.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54080.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54081.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54082.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54083.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54084.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54085.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54086.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54087.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54088.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54089.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54090.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54091.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54092.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54093.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54094.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54095.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54096.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54097.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54098.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54099.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54100.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54101.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54102.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54103.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54104.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54105.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54106.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54107.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54108.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54109.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54110.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54111.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54112.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54113.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54114.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54115.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54116.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54117.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54118.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54119.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54120.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54121.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54122.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54123.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54124.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54125.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54126.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54127.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54128.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54129.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54130.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54131.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54132.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54133.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54134.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54135.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54136.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54137.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54138.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54139.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54140.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54141.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54142.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54143.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54144.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54145.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54146.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54147.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54148.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54149.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54150.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54151.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54152.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54153.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54154.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54155.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54156.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54157.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54158.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54159.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54160.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54161.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54162.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54163.000000] [simulator/INFO] on11 is sleeping +[on11:ON:(12) 54339.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 54339.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54340.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54341.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54342.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54343.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54344.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54345.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54346.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54347.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54348.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54349.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54350.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54351.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54352.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54353.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54354.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54355.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54356.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54357.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54358.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54359.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54360.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54361.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54362.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54363.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54364.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54365.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54366.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54367.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54368.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54369.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54370.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54371.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54372.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54373.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54374.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54375.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54376.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54377.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54378.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54379.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54380.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54381.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54382.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54383.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54384.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54385.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54386.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54387.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54388.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54389.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54390.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54391.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54392.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54393.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54394.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54395.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54396.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54397.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54398.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54399.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54400.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54401.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54402.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54403.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54404.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54405.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54406.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54407.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54408.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54409.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54410.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54411.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54412.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54413.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54414.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54415.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54416.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54417.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54418.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54419.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54420.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54421.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54422.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54423.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54424.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54519.000000] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 54546.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 54546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54712.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54714.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54716.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54718.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54720.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54722.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54724.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54726.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 54762.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 54762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54837.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54839.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54841.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54843.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54845.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54847.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54849.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54851.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54853.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54855.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54857.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54859.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54861.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54863.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54865.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54867.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54869.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54871.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54873.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54898.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54928.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54934.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54937.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54940.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54942.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 55020.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 55020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55047.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55047.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 55047.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55048.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55049.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55049.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55050.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55051.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55051.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55052.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55053.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55053.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55054.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55055.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55055.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55056.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55057.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55057.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55058.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55059.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55059.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55060.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55061.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55061.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55062.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55063.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55063.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55064.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55065.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55065.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55066.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55067.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55067.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55068.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55069.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55069.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55070.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55071.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55071.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55072.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55073.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55073.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55074.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55075.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55075.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55076.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55077.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55077.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55078.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55079.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55079.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55080.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55081.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55081.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55082.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55083.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55083.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55084.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55085.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55085.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55086.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55087.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55087.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55088.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55089.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55089.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55090.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55091.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55091.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55092.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55093.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55093.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55094.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55095.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55095.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55096.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55097.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55097.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55098.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55099.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55099.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55100.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55101.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55101.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55102.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55103.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55103.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55104.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55105.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55105.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55106.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55107.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55107.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55108.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55109.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55109.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55110.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55111.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55111.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55112.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55113.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55113.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55114.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55115.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55115.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55116.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55117.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55117.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55118.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55119.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55119.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55120.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55121.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55121.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55122.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55123.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55123.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55124.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55125.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55125.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55126.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55127.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55127.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55128.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55129.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55129.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55130.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55131.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55131.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55132.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55133.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55133.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55134.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55135.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55135.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55136.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55137.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55137.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55138.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55139.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55139.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55140.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55140.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55140.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 55140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55141.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55141.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55141.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55141.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 55141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55142.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55142.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55142.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55143.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55143.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55143.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55144.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55144.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55144.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55145.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55145.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55145.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55146.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55146.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55146.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55147.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55147.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55147.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55148.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55148.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55148.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55149.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55149.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55149.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55149.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55150.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55150.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55150.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55151.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55151.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55151.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55151.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55152.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55152.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55152.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55153.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55153.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55153.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55153.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55154.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55154.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55154.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55155.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55155.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55155.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55155.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55156.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55156.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55156.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55157.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55157.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55157.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55157.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55158.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55158.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55158.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55159.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55159.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55159.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55159.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55160.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55160.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55160.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55161.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55161.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55161.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55161.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55162.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55162.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55162.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55163.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55163.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55163.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55163.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55164.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55164.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55164.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55165.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55165.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55165.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55165.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55166.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55166.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55166.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55167.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55167.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55167.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55167.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55168.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55168.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55168.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55169.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55169.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55169.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55169.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55170.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55170.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55170.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55171.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55171.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55171.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55171.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55172.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55172.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55172.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55173.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55173.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55173.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55173.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55174.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55174.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55174.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55175.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55175.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55175.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55175.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55176.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55176.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55176.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55177.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55177.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55177.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55177.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55178.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55178.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55178.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55179.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55179.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55179.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55179.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55180.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55180.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55180.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55181.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55181.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55181.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55181.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55182.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55182.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55182.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55183.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55183.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55183.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55183.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55184.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55184.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55184.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55185.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55185.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55185.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55185.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55186.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55186.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55186.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55187.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55187.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55187.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55187.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55188.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55188.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55188.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55189.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55189.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55189.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55189.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55190.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55190.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55190.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55191.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55191.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55191.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55191.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55192.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55192.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55192.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55193.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55193.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55193.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55193.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55194.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55194.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55194.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55195.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55195.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55195.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55195.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55196.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55196.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55196.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55197.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55197.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55197.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55197.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55198.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55198.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55198.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55199.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55199.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55199.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55199.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55200.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55200.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55200.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 55200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55201.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55201.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55201.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55202.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55202.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55203.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55203.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55203.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55204.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55204.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55205.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55205.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55205.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55206.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55206.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55207.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55207.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55207.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55208.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55208.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55209.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55209.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55209.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55210.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55210.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55211.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55211.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55211.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55212.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55212.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55213.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55213.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55213.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55214.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55214.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55215.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55215.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55215.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55216.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55216.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55217.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55217.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55217.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55218.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55218.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55219.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55219.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55219.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55220.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55220.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55221.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55221.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55221.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55222.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55222.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55223.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55223.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55223.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55224.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55224.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55225.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55225.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55225.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55226.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55226.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55227.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55227.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 55227.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55228.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55229.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55229.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55230.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55231.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55231.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55232.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55233.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55233.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55234.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55235.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55235.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55236.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55237.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55237.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55238.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55239.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55239.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55240.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55241.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55241.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55242.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55243.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55243.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55244.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55245.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55245.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55246.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55247.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55247.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55248.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55249.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55249.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55250.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55251.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55251.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55252.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55253.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55253.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55254.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55255.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55255.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55256.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55257.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55257.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55258.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55259.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55259.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55260.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55261.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55261.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55262.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55263.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55263.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55264.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55265.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55265.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55266.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55267.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55267.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55268.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55269.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55269.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55270.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55271.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55271.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55272.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55273.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55273.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55274.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55275.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55275.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55276.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55277.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55277.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55278.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55279.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55279.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55280.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55281.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55281.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55282.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55283.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55284.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55285.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55285.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55286.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55287.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55287.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55288.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55289.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55289.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55290.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55291.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55291.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55292.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55293.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55293.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55294.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55295.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55295.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55296.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55297.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55297.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55298.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55299.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55299.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55300.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55301.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55301.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55302.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55303.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55303.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55304.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55305.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55305.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55306.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55307.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55307.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55308.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55309.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55309.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55310.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55311.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55311.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55312.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55313.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55313.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55314.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55315.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55315.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55316.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55317.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55317.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55318.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55319.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55319.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55320.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55320.000000] [simulator/INFO] on10 is sleeping +[on5:ON:(6) 55321.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 55600.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 55600.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55602.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55604.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55606.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55608.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55610.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55612.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55614.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55616.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55618.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55620.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55622.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55624.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55626.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55628.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55630.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55632.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55634.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55636.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55638.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55640.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55642.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55644.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55646.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55648.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55650.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55652.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55654.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55656.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55658.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55660.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55662.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55664.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55666.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55668.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55670.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55672.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55674.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55676.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55678.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55680.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55682.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55683.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55694.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55696.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55715.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55715.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 55715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55716.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55717.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55718.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55719.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55720.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55720.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55720.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 55720.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55721.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55721.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55722.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55722.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55722.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55723.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55723.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55724.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55724.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55724.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55725.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55725.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55726.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55726.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55726.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55727.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55727.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55728.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55728.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55728.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55729.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55729.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55730.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55730.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55730.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55731.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55731.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55732.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55732.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55732.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55733.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55733.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55734.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55734.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55734.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55735.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55735.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55736.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55736.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55736.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55737.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55737.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55738.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55738.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55738.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55739.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55739.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55740.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55740.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55740.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55741.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55741.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55742.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55742.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55742.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55743.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55743.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55744.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55744.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55744.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55745.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55745.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55746.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55746.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55746.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55747.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55747.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55748.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55748.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55748.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55749.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55749.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55750.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55750.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55750.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55751.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55751.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55752.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55752.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55752.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55753.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55753.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55754.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55754.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55754.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55755.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55755.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55756.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55756.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55756.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55757.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55757.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55758.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55758.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55758.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55759.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55759.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55760.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55760.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55760.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55761.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55761.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55762.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55762.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55762.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55763.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55763.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55764.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55764.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55764.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55765.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55765.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55766.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55766.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55766.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55767.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55767.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55768.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55768.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55768.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55769.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55769.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55770.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55770.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55770.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55771.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55771.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55772.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55772.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55772.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55773.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55773.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55774.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55774.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55774.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55775.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55775.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55776.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55776.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55776.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55777.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55777.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55778.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55778.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55778.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55779.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55779.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55780.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55780.000000] [simulator/INFO] on6 is sleeping +[on0:ON:(1) 55780.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55781.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55782.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55782.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55783.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55784.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55784.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55785.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55786.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55786.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55787.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55788.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55788.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55789.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55790.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55790.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55791.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55792.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55792.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55793.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55794.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55794.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55795.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55796.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55796.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55797.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55798.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55798.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55799.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55800.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55800.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55801.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55802.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55802.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55803.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55804.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55804.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55805.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55806.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55806.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55807.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55808.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55808.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55809.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55810.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55810.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55811.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55812.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55812.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55813.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55814.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55814.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55815.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55816.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55816.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55817.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55818.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55818.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55819.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55820.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55820.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55821.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55822.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55822.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55823.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55824.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55824.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55825.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55826.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55826.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55827.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55828.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55829.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55830.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55831.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55832.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55833.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55834.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55835.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55836.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55837.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55838.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55839.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55840.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55841.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55842.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55843.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55844.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55845.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55846.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55847.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55848.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55849.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55850.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55851.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55852.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55853.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55854.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55855.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55856.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55857.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55858.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55859.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55860.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55861.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55862.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55863.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55864.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55865.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55866.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55867.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55868.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55869.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55870.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55871.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55872.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55873.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55874.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55875.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55876.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55877.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55878.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55879.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55880.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55881.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55882.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55883.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55884.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55885.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55886.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55887.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55888.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55889.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55890.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55891.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55892.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55893.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55894.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55895.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55895.000000] [simulator/INFO] on3 is sleeping +[on0:ON:(1) 55896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55900.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 56507.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 56507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56563.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56565.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56567.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56569.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56571.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56573.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56575.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56577.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56579.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56581.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56583.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56585.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56587.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56589.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56591.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56593.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56595.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56597.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56599.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56601.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56603.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56605.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56606.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56607.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56608.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56609.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56610.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56611.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56612.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56613.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56614.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56615.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56616.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56617.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56618.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56619.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56620.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56621.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56622.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56623.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56624.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56625.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56626.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56627.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56628.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56629.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56630.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56631.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56632.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56633.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56634.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56652.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56654.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56656.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56658.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56660.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56661.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56662.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56663.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56664.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56665.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56666.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56667.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56668.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56669.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56670.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56671.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56672.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56673.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56674.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56675.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56676.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56677.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56678.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56679.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56680.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56681.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56682.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56683.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56684.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56686.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56687.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 56779.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 56779.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56780.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56781.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56782.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56924.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56925.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56926.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56927.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56929.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56931.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56933.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56955.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56957.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56959.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 57059.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 57059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57239.000000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 57970.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 57970.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57971.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57972.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57973.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57974.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57975.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57976.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57977.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57977.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 57977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57978.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57978.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57979.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57980.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57980.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57981.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57982.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57982.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57983.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57984.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57984.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57985.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57986.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57986.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57987.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57988.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57988.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57989.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57990.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57990.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57991.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57992.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57992.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57993.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57994.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57994.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57995.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57996.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57996.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57997.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57998.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57998.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57999.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58000.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58000.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58001.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58002.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58002.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58003.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58004.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58004.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58005.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58006.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58006.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58007.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58008.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58008.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58009.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58010.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58010.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58011.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58012.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58012.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58013.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58014.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58014.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58015.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58016.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58016.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58017.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58018.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58019.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58020.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58021.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58022.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58023.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58024.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58025.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58026.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58027.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58028.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58029.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58030.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58031.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58032.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58033.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58034.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58035.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58036.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58037.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58038.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58039.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58040.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58041.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58041.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58041.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 58041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58042.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58042.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58043.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58043.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58044.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58044.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58045.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58045.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58046.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58046.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58047.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58047.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58048.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58048.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58049.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58049.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58050.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58050.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58051.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58051.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58052.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58052.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58053.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58053.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58054.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58054.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58055.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58055.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58056.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58056.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58057.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58057.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58058.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58058.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58059.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58059.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58060.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58060.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58061.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58061.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58062.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58062.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58063.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58063.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58064.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58064.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58065.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58065.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58066.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58066.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58067.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58067.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58068.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58068.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58069.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58069.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58070.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58070.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58071.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58071.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58072.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58072.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58073.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58073.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58074.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58074.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58075.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58075.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58076.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58076.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58077.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58077.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58078.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58078.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58079.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58079.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58080.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58080.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58081.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58081.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58082.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58082.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58083.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58083.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58084.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58084.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58085.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58085.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58086.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58086.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58087.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58087.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58088.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58088.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58089.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58089.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58090.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58090.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58091.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58091.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58092.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58092.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58093.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58093.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58094.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58094.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58095.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58095.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58096.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58096.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58097.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58097.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58098.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58098.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58099.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58099.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58100.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58100.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58101.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58101.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58102.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58102.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58103.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58103.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58104.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58104.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58105.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58105.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58106.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58106.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58107.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58107.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58108.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58108.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58109.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58109.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58110.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58110.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58111.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58111.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58112.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58112.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58113.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58113.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58114.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58114.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58115.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58115.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58116.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58116.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58117.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58117.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58118.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58118.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58119.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58119.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58120.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58120.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58121.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58121.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58122.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58122.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58123.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58123.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58124.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58124.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58125.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58125.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58126.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58126.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58127.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58127.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58128.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58128.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58129.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58129.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58130.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58130.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58131.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58131.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58132.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58132.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58133.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58133.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58134.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58134.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58135.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58135.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58136.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58136.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58137.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58137.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58138.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58138.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58139.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58139.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58140.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58140.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58141.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58141.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58142.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58142.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58143.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58143.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58144.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58144.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58145.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58145.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58146.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58146.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58147.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58147.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58148.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58148.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58149.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58149.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58150.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58150.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58150.000000] [simulator/INFO] on10 is sleeping +[on3:ON:(4) 58151.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58152.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58153.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58154.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58155.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58156.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58157.000000] [simulator/INFO] on3 is sleeping +[on8:ON:(9) 58157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58158.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58160.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58162.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58164.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58166.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58168.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58170.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58172.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58173.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58221.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 58570.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 58570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58693.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58693.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 58693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58694.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58695.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58696.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58697.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58698.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58699.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58700.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58701.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58702.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58703.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58704.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58705.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58706.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58707.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58708.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58709.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58710.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58711.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58712.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58713.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58714.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58715.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58716.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58716.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58716.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 58716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58717.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58717.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58718.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58718.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58719.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58719.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58720.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58720.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58721.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58721.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58722.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58722.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58723.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58723.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58724.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58724.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58725.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58725.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58726.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58726.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58727.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58727.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58727.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58728.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58728.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58729.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58729.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58729.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58730.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58730.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58731.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58731.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58731.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58732.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58732.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58733.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58733.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58733.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58734.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58734.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58735.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58735.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58735.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58736.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58736.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58737.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58737.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58737.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58738.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58738.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58739.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58739.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58739.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58740.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58740.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58741.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58741.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58741.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58742.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58742.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58743.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58743.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58743.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58744.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58744.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58745.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58745.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58745.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58746.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58746.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58747.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58747.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58747.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58748.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58748.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58749.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58749.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58749.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58750.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58750.000000] [simulator/INFO] on2 is sleeping +[on9:ON:(10) 58750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58751.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58751.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58752.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58753.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58753.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58754.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58755.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58755.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58756.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58757.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58757.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58758.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58759.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58759.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58760.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58761.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58761.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58762.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58763.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58763.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58764.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58765.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58765.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58766.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58767.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58767.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58768.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58769.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58769.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58770.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58771.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58771.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58772.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58773.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58773.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58774.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58775.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58775.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58776.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58777.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58777.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58778.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58779.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58779.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58780.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58781.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58781.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58782.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58783.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58783.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58784.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58785.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58785.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58786.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58787.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58787.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58788.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58789.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58789.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58790.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58791.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58791.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58792.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58793.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58793.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58794.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58795.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58796.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58797.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58797.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58798.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58799.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58799.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58800.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58801.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58801.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58802.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58803.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58803.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58804.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58805.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58805.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58806.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58807.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58807.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58808.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58809.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58809.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58810.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58811.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58811.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58812.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58813.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58813.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58814.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58815.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58815.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58816.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58817.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58817.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58818.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58819.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58819.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58820.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58821.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58821.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58822.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58823.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58823.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58824.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58825.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58825.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58826.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58827.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58827.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58828.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58829.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58829.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58830.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58831.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58831.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58832.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58833.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58834.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58835.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58836.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58837.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58838.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58839.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58840.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58841.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58842.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58843.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58844.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58845.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58846.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58847.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58848.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58849.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58850.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58851.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58852.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58853.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58854.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58855.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58856.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58857.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58858.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58859.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58860.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58861.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58862.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58863.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58864.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58865.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58866.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58867.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58868.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58869.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58870.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58871.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58872.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58873.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58873.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 58874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58896.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 59370.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 59370.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59371.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59372.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59373.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59374.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59375.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59376.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59377.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59378.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59379.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59380.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59381.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59382.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59383.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59384.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59385.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59386.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59387.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59388.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59389.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59390.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59391.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59392.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59393.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59394.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59395.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59397.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59399.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59401.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59403.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59550.000000] [simulator/INFO] on5 is sleeping +[on0:ON:(1) 60407.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 60407.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60409.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60411.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60413.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60415.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60417.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60419.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60421.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60423.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60425.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60427.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60429.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60431.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60433.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60435.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60437.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60439.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60441.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60443.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60445.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60447.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60449.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60451.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60453.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60455.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60457.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60459.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60461.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60463.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60465.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60467.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60469.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60470.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60471.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60472.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60473.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60474.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60475.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60476.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60477.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60478.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60479.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60480.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60481.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60481.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 60481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60482.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60482.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60483.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60484.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60484.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60485.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60486.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60486.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60487.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60488.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60488.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60489.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60490.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60490.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60491.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60492.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60492.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60492.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 60492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60493.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60493.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60494.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60494.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60495.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60495.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60496.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60496.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60497.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60497.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60498.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60498.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60499.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60499.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60500.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60500.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60501.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60501.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60502.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60502.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60503.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60503.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60504.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60504.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60505.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60505.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60506.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60506.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60507.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60507.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60508.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60508.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60509.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60509.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60510.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60510.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60511.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60511.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60512.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60512.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60513.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60513.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60514.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60514.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60515.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60515.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60516.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60516.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60517.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60517.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60518.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60518.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60519.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60519.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60520.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60520.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60521.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60521.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60522.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60522.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60523.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60523.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60524.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60524.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60525.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60525.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60526.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60526.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60527.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60527.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60528.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60528.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60529.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60529.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60530.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60530.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60531.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60531.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60532.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60532.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60533.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60533.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60534.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60534.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60535.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60535.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60536.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60536.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60537.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60537.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60538.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60538.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60539.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60539.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60540.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60540.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60541.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60541.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60542.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60542.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60543.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60543.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60544.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60544.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60545.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60545.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60546.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60546.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60547.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60547.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60548.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60548.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60549.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60549.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60550.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60550.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60551.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60551.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60552.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60552.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60552.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60552.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 60552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60553.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60553.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60553.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60554.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60554.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60554.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60555.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60555.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60555.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60556.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60556.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60556.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60557.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60557.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60557.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60558.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60558.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60558.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60559.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60559.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60559.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60560.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60560.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60560.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60561.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60561.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60561.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60562.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60562.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60562.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60563.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60563.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60563.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60563.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60564.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60564.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60564.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60565.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60565.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60565.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60565.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60566.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60566.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60566.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60567.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60567.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60567.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60567.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60568.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60568.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60568.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60569.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60569.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60569.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60569.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60570.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60570.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60570.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60571.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60571.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60571.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60571.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60572.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60572.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60572.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60573.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60573.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60573.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60573.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60574.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60574.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60574.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60575.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60575.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60575.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60575.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60576.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60576.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60576.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60577.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60577.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60577.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60577.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60578.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60578.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60578.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60579.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60579.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60579.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60579.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60580.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60580.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60580.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60581.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60581.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60581.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60581.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60582.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60582.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60582.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60583.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60583.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60583.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60583.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60584.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60584.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60584.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60585.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60585.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60585.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60585.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60586.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60586.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60586.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60587.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60587.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60587.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 60587.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60588.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60588.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60589.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60589.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60589.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60590.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60590.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60591.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60591.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60591.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60592.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60592.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60593.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60593.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60593.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60594.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60594.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60595.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60595.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60595.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60596.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60596.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60597.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60597.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60597.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60598.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60598.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60599.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60599.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60599.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60600.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60600.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60601.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60601.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60601.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60602.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60602.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60603.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60603.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60603.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60604.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60604.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60605.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60605.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60605.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60606.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60606.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60607.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60607.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60607.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60608.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60608.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60609.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60609.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60609.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60610.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60610.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60611.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60611.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60611.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60612.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60612.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60613.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60613.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60613.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60614.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60614.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60615.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60615.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60615.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60616.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60616.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60617.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60617.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60617.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60618.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60618.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60619.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60619.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60619.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60620.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60620.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60621.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60621.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60621.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60622.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60622.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60622.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60623.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60623.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60623.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60624.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60624.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60624.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60625.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60625.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60625.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60626.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60626.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60626.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60627.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60627.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60627.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60628.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60628.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60628.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60629.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60629.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60629.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60630.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60630.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60630.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60631.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60631.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60631.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60632.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60632.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60632.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60633.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60633.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60633.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60634.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60634.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60634.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60635.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60635.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60636.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60636.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60636.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60637.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60637.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60638.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60638.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60638.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60639.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60639.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60640.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60640.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60640.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60641.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60641.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60642.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60642.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60642.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60643.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60643.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60644.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60644.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60644.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60645.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60645.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60646.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60646.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60646.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60647.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60647.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60648.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60648.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60648.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60649.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60649.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60650.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60650.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60650.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60651.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60651.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60652.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60652.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60652.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60653.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60653.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60654.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60654.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60654.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60655.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60655.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60656.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60656.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60656.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60657.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60657.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60658.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60658.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60658.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60659.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60659.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60660.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60660.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60660.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60661.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60661.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60661.000000] [simulator/INFO] on7 is sleeping +[on6:ON:(7) 60662.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60662.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60663.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60664.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60664.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60665.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60666.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60666.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60667.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60668.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60668.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60669.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60670.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60670.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60671.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60672.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 60672.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60674.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60676.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60678.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60680.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60682.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60684.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60686.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60688.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60690.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60692.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60694.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60696.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60698.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60699.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60700.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60701.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60702.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60703.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60704.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60705.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60706.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60707.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60708.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60709.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60710.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60711.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60712.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60713.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60714.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60715.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60716.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60717.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60718.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60719.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60720.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60721.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60722.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60723.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60724.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60725.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60726.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60727.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60728.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60729.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60730.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60731.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60732.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 60812.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 60812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60846.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60848.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60850.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60852.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60854.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60856.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60858.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60864.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60992.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 61143.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 61143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61221.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61221.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 61221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61222.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61223.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61224.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61225.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61226.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61227.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61228.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61229.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61230.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61231.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61232.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61233.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61234.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61235.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61236.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61237.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61238.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61239.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61240.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61241.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61242.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61243.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61244.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61245.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61246.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61247.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61248.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61249.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61250.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61251.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61252.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61253.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61254.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61255.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61255.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61255.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 61255.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61256.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61256.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61257.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61257.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61257.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61258.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61258.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61259.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61259.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61259.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61260.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61260.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61261.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61261.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61261.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61262.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61262.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61263.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61263.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61263.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61264.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61264.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61265.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61265.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61265.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61266.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61266.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61267.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61267.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61267.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61268.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61268.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61269.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61269.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61269.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61270.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61270.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61271.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61271.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61271.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61272.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61272.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61273.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61273.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61273.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61274.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61274.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61275.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61275.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61275.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61276.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61276.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61277.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61277.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61277.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61278.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61278.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61279.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61279.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61279.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61280.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61280.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61281.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61281.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61281.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61282.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61282.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61283.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61283.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61283.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61284.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61284.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61285.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61285.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61285.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61286.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61286.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61287.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61287.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61287.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61288.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61288.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61289.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61289.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61289.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61290.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61290.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61291.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61291.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61291.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61292.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61292.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61293.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61293.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61293.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61294.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61294.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61295.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61295.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61295.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61296.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61296.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61297.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61297.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61297.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61298.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61298.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61299.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61299.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61299.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61300.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61300.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61301.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61301.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61301.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61302.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61302.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61303.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61303.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61303.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61304.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61304.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61305.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61305.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61305.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61306.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61306.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61307.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61307.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61307.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61308.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61308.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61309.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61309.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61309.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61310.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61310.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61311.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61311.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61311.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61312.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61312.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61313.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61313.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61313.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61314.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61314.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61315.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61315.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61315.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61316.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61316.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61317.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61317.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61317.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61318.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61318.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61319.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61319.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61319.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61320.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61320.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61321.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61321.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61321.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61322.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61322.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61323.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 61323.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61323.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61324.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61325.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61325.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61326.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61327.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61327.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61328.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61329.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61330.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61331.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61332.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61333.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61334.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61335.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61336.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61337.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61338.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61339.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61340.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61341.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61342.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61343.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61344.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61345.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61346.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61347.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61348.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61349.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61350.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61351.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61352.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61353.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61354.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61355.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61355.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61356.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61357.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61357.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61358.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61359.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61359.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61360.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61361.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61361.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61362.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61363.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61363.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61364.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61365.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61365.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61366.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61367.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61367.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61368.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61369.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61369.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61370.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61371.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61371.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61372.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61373.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61373.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61374.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61375.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61375.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61376.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61377.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61377.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61378.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61379.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61379.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61380.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61381.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61381.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61382.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61383.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61383.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61384.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61385.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61385.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61386.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61387.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61387.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61388.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61389.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61389.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61390.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61391.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61391.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61392.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61393.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61393.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61394.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61395.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61395.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61396.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61397.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61397.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61398.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61399.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61399.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61400.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61401.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 61401.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61402.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61403.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61404.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61405.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61406.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61407.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61408.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61409.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61410.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61411.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61412.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61413.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61414.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61415.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61416.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61417.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61418.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61419.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61420.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61421.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61422.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61423.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61424.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61425.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61426.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61427.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61428.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61429.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61430.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61431.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61432.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61433.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61434.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61435.000000] [simulator/INFO] on6 is sleeping +[on3:ON:(4) 62215.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 62215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62298.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62300.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62302.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62306.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62308.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62309.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62310.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62312.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62314.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62315.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62316.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62318.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62320.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62321.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62322.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62324.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62326.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62327.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62328.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62330.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62332.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62333.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62334.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62336.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62338.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62339.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62340.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62342.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62348.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62351.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62354.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62357.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62360.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62363.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62366.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62369.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62372.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62375.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62378.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62381.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62384.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62395.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 62442.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 62442.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62443.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62444.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62445.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62446.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62447.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62448.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62449.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62450.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62451.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62452.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62453.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62454.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62455.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62456.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62457.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62458.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62459.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62460.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62461.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62462.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62463.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62464.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62465.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62466.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62467.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62468.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62469.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62470.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62471.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62472.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62473.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62474.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62475.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62476.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62477.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62478.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62479.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62480.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62481.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62482.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62483.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62484.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62485.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62486.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62487.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62488.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62489.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62490.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62491.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62492.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62493.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62494.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62495.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62496.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62497.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62498.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62499.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62500.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62501.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62502.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62503.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62504.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62505.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62506.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62507.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62508.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62509.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62510.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62511.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62512.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62513.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62514.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62515.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62516.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62517.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62519.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62521.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62523.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62525.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62527.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62529.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62531.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62533.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62535.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62537.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62539.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62541.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62543.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62545.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62547.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62549.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62551.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62553.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62555.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62557.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62559.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62561.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62563.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62565.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62567.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62569.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62571.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62573.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62575.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62577.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62579.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62581.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62583.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62585.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62587.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62589.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62591.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62593.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62595.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62597.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62599.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62601.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62603.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62605.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62607.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62609.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62611.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62613.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62615.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62617.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62619.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62621.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62622.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 62845.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 62845.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62846.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62847.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62848.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62849.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62850.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62851.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62852.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62853.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62854.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62889.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62889.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 62889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62890.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62891.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62892.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62893.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62894.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62895.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62896.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62897.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62898.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62899.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62900.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62901.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62902.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62903.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62904.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62905.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62906.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62907.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62908.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62909.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62910.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62911.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62912.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62913.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62914.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62915.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62916.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62917.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62918.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62919.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62920.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62921.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62922.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62922.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62923.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62924.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62925.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62926.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62927.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62928.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62928.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62929.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62930.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62931.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62932.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62933.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62934.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62934.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62935.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62936.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62937.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62937.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62938.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62939.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62939.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62940.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62940.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62941.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62941.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62942.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62943.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62943.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62944.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62945.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62945.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62946.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62946.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62947.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62947.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62948.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62949.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62949.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62950.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62951.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62951.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62952.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62952.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62953.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62953.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62954.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62955.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62955.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62956.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62957.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62957.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62958.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62958.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62959.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62959.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62960.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62961.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62961.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62962.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62963.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62963.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62964.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62964.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62965.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62965.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62966.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62967.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62967.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62968.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62969.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62969.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62970.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62970.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62971.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62971.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62972.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62973.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62973.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62974.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62975.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62975.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62976.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62976.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62977.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62977.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62978.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62979.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62979.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62980.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62981.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62981.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62982.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62982.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62983.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62983.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62984.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62985.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62985.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62986.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62987.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62987.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62988.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62988.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62989.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62989.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62990.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62991.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62991.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62992.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62993.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62993.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62994.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62994.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62995.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62995.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62996.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62997.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62997.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62998.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62999.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62999.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63000.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63000.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63001.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63001.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63002.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63002.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63003.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63003.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63004.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63004.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63005.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63005.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63006.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63006.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63007.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63007.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63008.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63008.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63009.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63009.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63010.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63010.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63011.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63011.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63012.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63012.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63013.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63013.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63014.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63014.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63015.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63015.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63016.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63016.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63017.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63017.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63018.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63018.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63019.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63019.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63020.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63020.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63021.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63021.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63022.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63022.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63023.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63023.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63024.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63024.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63025.000000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 63025.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63026.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63027.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63028.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63029.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63030.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63031.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63032.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63033.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63034.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63035.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63036.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63037.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63038.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63039.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63040.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63041.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63042.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63043.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63044.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63045.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63046.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63047.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63048.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63049.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63050.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63051.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63052.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63053.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63055.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63056.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63057.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63058.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63059.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63060.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63061.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63062.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63063.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63064.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63065.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63066.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63067.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63068.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63069.000000] [simulator/INFO] on4 is sleeping +[on7:ON:(8) 63369.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 63369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63370.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63372.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63373.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63374.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63376.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63378.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63379.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63380.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63382.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63384.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63386.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63388.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63390.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63392.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63394.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63396.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63398.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63400.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63402.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63403.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63404.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63406.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63408.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63409.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63410.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63412.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63414.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63415.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63416.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63417.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63418.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63419.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63420.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63421.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63422.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63423.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63424.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63426.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63428.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63430.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63432.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63434.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63436.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63438.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63440.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63442.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63444.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63446.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63448.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63450.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63452.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63454.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63456.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63457.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63458.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63458.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 63458.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63459.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63459.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63460.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63460.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63461.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63461.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63462.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63462.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63463.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63463.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63464.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63464.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63465.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63465.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63466.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63466.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63467.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63467.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63468.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63469.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63469.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63470.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63471.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63471.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63472.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63472.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63473.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63473.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63474.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63475.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63475.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63476.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63477.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63477.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63478.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63478.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63479.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63479.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63480.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63481.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63482.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63483.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63484.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63484.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63485.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63486.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63486.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63487.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63488.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63488.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63489.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63490.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63490.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63491.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63492.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63492.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63493.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63494.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63494.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63495.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63496.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63496.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63497.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63498.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63498.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63499.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63500.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63500.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63501.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63502.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63502.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63503.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63504.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63504.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63504.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 63504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63505.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63505.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63506.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63506.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63507.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63507.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63508.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63508.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63509.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63509.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63510.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63510.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63511.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63511.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63512.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63512.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63513.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63513.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63514.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63514.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63515.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63515.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63516.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63516.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63517.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63517.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63518.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63518.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63519.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63519.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63520.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63520.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63521.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63521.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63522.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63522.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63523.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63523.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63524.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63524.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63525.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63525.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63526.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63526.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63527.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63527.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63528.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63528.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63529.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63529.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63530.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63530.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63531.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63531.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63532.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63532.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63533.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63533.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63534.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63534.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63535.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63535.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63536.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63536.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63537.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63537.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63538.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63538.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63539.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63539.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63540.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63540.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63541.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63541.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63542.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63542.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63543.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63543.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63544.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63544.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63545.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63545.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63546.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63546.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63547.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63547.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63548.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63548.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63549.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63549.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63549.000000] [simulator/INFO] on7 is sleeping +[on12:ON:(13) 63550.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63551.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63551.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63552.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63553.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63553.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63554.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63555.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63555.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63556.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63557.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63557.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63558.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63559.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63559.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63560.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63561.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63561.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63562.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63563.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63563.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63564.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63565.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63565.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63566.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63567.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63567.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63568.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63569.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63569.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63570.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63571.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63571.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63572.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63573.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63573.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63574.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63575.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63575.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63576.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63577.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63577.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63578.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63579.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63579.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63580.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63581.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63581.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63582.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63583.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63583.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63584.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63585.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63585.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63586.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63587.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63587.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63588.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63589.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63589.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63590.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63591.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63591.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63592.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63593.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63593.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63594.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63595.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63595.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63596.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63597.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63597.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63598.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63599.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63599.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63600.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63601.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63601.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63602.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63603.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63603.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63604.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63605.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63605.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63606.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63607.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63607.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63608.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63609.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63609.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63610.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63611.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63611.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63612.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63613.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63613.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63614.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63615.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63615.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63616.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63617.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63617.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63618.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63619.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63619.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63620.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63621.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63621.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63622.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63623.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63623.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63624.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63625.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63625.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63626.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63627.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63627.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63628.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63629.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63629.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63630.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63631.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63631.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63632.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63633.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63633.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63634.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63635.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63635.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63636.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63637.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63637.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63638.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 63638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63647.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63649.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63671.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63673.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63675.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63677.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63679.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63681.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63683.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63684.000000] [simulator/INFO] on11 is sleeping +[on0:ON:(1) 63697.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 63697.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63698.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63699.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63700.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63701.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63702.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63703.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63704.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63705.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63706.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63707.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63708.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63709.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63710.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63711.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63712.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63713.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63714.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63715.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63716.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63717.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63718.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63719.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63720.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63721.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63722.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63723.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63724.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63725.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63726.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63727.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63728.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63729.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63730.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63731.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63732.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63733.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63734.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63735.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63736.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63737.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63738.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63739.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63740.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63741.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63742.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63743.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63744.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63745.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63746.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63747.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63748.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63749.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63750.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63751.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63752.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63753.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63754.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63755.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63756.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63757.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63758.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63759.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63760.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63761.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63762.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63763.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63764.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63765.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63766.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63767.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63768.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63769.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63770.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63771.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63772.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63773.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63774.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63775.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63776.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63777.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63778.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63779.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63780.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63781.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63782.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63783.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63784.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63785.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63786.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63787.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63788.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63789.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63790.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63791.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63792.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63793.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63794.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63795.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63796.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63797.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63798.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63799.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63800.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63801.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63802.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63803.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63804.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63805.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63806.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63807.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63808.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63809.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63810.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63811.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63812.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63813.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63814.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63815.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63816.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63817.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63818.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63819.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63820.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63821.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63822.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63823.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63824.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63825.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63826.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63827.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63829.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63831.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63833.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63835.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63837.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63839.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63841.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63843.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63845.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63847.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63849.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63851.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63853.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63855.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63857.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63859.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63861.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63863.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63865.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63867.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63869.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63871.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63873.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63875.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63877.000000] [simulator/INFO] on0 is sleeping +[on9:ON:(10) 64063.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 64063.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64065.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64067.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64069.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64071.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64073.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64075.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64077.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64079.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64081.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64083.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64085.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64087.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64089.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64091.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64093.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64095.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64097.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64099.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64101.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64103.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64105.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64107.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64109.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64111.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64113.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64115.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64117.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64119.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64121.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64123.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64125.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64127.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64129.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64131.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64133.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64135.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64137.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64139.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64141.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64143.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64145.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64147.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64149.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64151.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64153.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64155.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64157.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64159.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64160.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64161.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64162.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64163.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64164.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64165.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64166.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64167.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64168.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64169.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64170.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64171.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64172.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64173.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64174.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64175.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64176.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64177.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64178.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64179.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64180.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64181.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64182.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64183.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64184.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64185.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64186.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64187.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64188.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64189.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64190.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64191.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64192.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64193.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64194.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64195.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64196.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64197.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64198.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64199.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64200.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64201.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64202.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64203.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64204.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64205.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64206.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64207.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64208.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64209.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64210.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64211.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64212.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64213.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64214.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64215.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64216.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64217.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64218.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64219.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64220.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64221.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64222.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64223.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64224.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64225.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64226.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64227.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64228.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64229.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64230.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64231.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64232.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64233.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64234.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64235.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64236.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64237.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64238.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64239.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64240.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64241.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64242.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64243.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 64350.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 64350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64351.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64353.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64355.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64357.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64359.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64361.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64363.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64365.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64367.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64369.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64371.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64373.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64375.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64377.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64379.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64381.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64383.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64385.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64387.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64389.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64391.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64393.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64395.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64396.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64397.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64398.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64399.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64400.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64401.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64402.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64403.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64404.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64405.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64406.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64407.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64408.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64409.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64410.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64411.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64412.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64413.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64414.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64415.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64416.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64417.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64418.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64419.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64420.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64421.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64422.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64423.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64424.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64425.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64426.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64427.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64428.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64429.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64430.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64431.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64432.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64433.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64434.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64435.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64436.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64437.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64438.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64439.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64440.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64441.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64442.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64443.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64444.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64445.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64446.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64447.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64448.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64449.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64450.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64451.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64452.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64453.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64454.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64455.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64456.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64457.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64458.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64459.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64460.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64461.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64462.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64463.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64464.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64465.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64466.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64467.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64468.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64469.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64470.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64471.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64472.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64473.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64474.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64475.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64476.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64477.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64478.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64479.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64480.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64481.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64482.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64483.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64484.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64485.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64486.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64487.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64488.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64489.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64490.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64491.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64492.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64493.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64494.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64495.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64496.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64497.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64498.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64499.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64500.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64501.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64502.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64503.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64504.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64505.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64506.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64507.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64508.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64509.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64510.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64511.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64512.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64513.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64514.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64515.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64516.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64517.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64518.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64519.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64521.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64523.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64525.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64530.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 64783.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 64783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64924.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64925.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64926.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64927.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64929.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64931.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64933.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64955.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64955.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 64955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64956.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64957.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64958.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64959.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64960.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64960.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64961.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64962.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64962.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64963.000000] [simulator/INFO] on8 is sleeping +[on0:ON:(1) 64963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65009.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65011.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65013.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65015.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65017.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65019.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65021.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65023.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65025.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65027.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65029.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65031.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65033.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65035.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65037.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65039.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65041.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65043.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65045.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65047.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65049.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65051.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65053.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65055.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65056.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65057.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65058.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65059.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65060.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65061.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65062.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65063.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65064.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65065.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65066.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65067.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65068.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65069.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65070.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65071.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65072.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65073.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65074.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65075.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65076.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65077.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65078.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65079.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65080.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65081.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65083.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65085.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65087.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65089.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65091.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65093.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65095.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65097.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65099.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65101.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65102.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65103.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65104.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65105.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65106.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65107.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65108.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65109.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65110.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65111.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65112.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65113.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65114.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65115.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65116.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65117.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65118.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65119.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65120.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65121.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65122.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65123.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65124.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65125.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65126.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65127.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65128.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65129.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65130.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65131.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65132.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65133.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65134.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65135.000000] [simulator/INFO] on0 is sleeping +[on12:ON:(13) 65742.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 65742.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65743.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65744.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65745.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65746.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65747.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65748.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65749.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65750.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65751.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65752.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65753.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65754.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65755.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65756.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65757.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65758.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65759.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65760.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65761.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65762.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65763.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65764.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65765.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65766.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65767.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65768.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65769.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65770.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65771.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65772.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65773.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65774.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65775.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65776.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65777.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65778.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65779.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65780.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65781.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65782.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65783.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65784.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65785.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65786.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65787.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65788.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65789.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65790.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65791.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65792.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65793.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65794.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65795.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65796.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65797.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65798.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65800.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65802.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65804.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65806.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65808.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65810.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65812.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65814.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65816.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65818.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65820.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65846.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65852.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65858.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65864.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65870.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65876.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65876.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 65876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65877.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65878.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65879.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65880.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65881.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65882.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65883.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65884.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65885.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65885.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65886.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65887.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65888.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65889.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65890.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65891.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65891.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65892.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65893.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65894.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65895.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65896.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65896.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65896.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 65896.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65897.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65897.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65897.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65898.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65898.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65898.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65899.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65899.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65900.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65900.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65900.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65901.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65901.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65902.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65902.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65902.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65903.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65903.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65903.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65904.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65904.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65904.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65905.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65905.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65906.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65906.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65906.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65907.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65907.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65908.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65908.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65908.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65909.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65909.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65909.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65910.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65910.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65910.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65911.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65911.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65912.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65912.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65912.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65913.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65913.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65914.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65914.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65914.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65915.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65915.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65915.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65916.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65916.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65916.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65917.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65917.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65918.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65918.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65918.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65919.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65919.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65920.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65920.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65920.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65921.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65921.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65921.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65922.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 65922.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65922.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65923.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65924.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65924.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65925.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65926.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65926.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65927.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65928.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65928.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65929.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65930.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65930.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65931.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65932.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65932.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65933.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65934.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65934.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65935.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65936.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65936.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65937.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65938.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65938.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65939.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65940.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65940.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65941.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65942.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65942.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65943.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65944.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65944.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65945.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65946.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65946.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65947.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65948.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65948.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65949.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65950.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65950.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65951.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65952.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65952.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65953.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65954.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65954.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65955.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65956.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65956.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65957.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65958.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65958.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65959.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65960.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65960.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65961.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65962.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65962.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65963.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65964.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65964.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65965.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65966.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65966.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65967.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65968.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65968.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65969.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65970.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65970.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65971.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65972.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65972.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65973.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65974.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65974.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65975.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65976.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65976.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65977.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65978.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65978.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65979.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65980.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65980.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65981.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65982.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65982.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65983.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65984.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65984.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65985.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65986.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65986.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65987.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65988.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65988.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65989.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65990.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65990.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65991.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65992.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65992.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65993.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65994.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65994.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65995.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65996.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65996.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65997.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65998.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65998.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65999.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66000.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66000.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66001.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66002.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66002.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66003.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66004.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66004.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66005.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66006.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66006.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66007.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66008.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66008.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66009.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66010.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66010.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66011.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66012.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66012.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66013.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66014.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66014.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66015.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66016.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66016.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66017.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66018.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66019.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66020.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66021.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66022.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66023.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66024.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66025.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66026.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66027.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66028.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66029.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66030.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66031.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66032.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66033.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66034.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66035.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66036.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66037.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66038.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66039.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66040.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66041.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66042.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66043.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66044.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66045.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66046.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66047.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66048.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66049.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66050.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66051.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66052.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66053.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66054.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66055.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66056.000000] [simulator/INFO] on3 is sleeping +[on10:ON:(11) 66056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66057.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66059.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66061.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66063.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66076.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 66260.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 66260.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66262.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66264.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66266.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66268.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66270.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66272.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66274.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66276.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66278.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66280.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66282.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66284.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66286.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66288.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66290.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66292.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66294.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66296.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66344.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66345.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66346.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66347.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66348.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66349.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66350.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66351.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66352.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66353.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66354.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66355.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66356.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66357.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66358.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66359.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66360.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66361.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66362.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66363.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66364.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66365.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66366.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66367.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66368.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66369.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66370.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66371.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66372.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66373.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66374.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66375.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66376.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66377.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66378.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66379.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66380.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66381.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66382.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66383.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66384.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66385.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66386.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66387.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66388.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66389.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66390.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66391.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66392.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66393.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66394.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66395.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66396.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66397.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66398.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66399.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66400.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66401.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66402.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66403.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66404.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66405.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66406.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66407.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66408.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66409.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66410.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66411.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66412.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66413.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66414.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66415.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66416.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66417.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66418.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66419.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66420.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66421.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66422.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66423.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66424.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66425.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66426.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66427.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66428.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66429.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66430.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66431.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66432.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66433.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66434.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66435.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66436.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66437.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66438.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66439.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66440.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 66790.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 66790.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66791.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66792.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66793.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66794.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66795.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66796.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66797.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66798.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66799.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66800.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66801.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66802.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66803.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66804.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66805.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66806.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66807.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66808.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66809.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66810.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66811.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66846.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66846.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 66846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66847.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66848.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66849.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66850.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66851.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66852.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66853.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66854.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66855.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66856.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66857.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66858.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66859.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66860.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66861.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66862.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66863.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66864.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66865.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66866.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66867.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66868.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66869.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66870.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66871.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66872.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66873.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66874.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66875.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66876.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66877.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66878.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66879.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66880.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66881.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66882.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66883.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66884.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66885.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66886.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66887.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66888.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66889.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66890.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66891.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66892.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66893.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66894.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66895.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66896.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66897.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66898.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66899.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66900.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66901.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66902.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66903.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66903.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66903.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 66903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66904.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66904.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66905.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66905.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66906.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66906.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66907.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66907.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66908.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66908.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66909.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66909.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66910.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66910.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66911.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66911.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66912.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66912.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66913.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66913.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66914.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66914.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66915.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66915.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66916.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66916.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66917.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66917.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66918.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66918.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66919.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66919.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66920.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66920.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66921.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66921.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66922.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66922.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66923.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66923.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66924.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66924.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66925.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66925.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66926.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66926.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66927.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66927.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66928.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66928.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66929.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66929.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66930.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66930.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66931.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66931.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66932.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66932.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66933.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66933.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66934.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66934.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66935.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66935.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66936.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66936.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66937.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66937.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66938.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66938.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66939.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66939.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66940.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66940.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66941.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66941.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66942.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66942.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66943.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66943.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66944.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66944.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66945.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66945.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66946.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66946.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66947.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66947.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66948.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66948.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66949.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66949.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66950.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66950.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66951.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66951.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66952.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66952.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66953.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66953.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66954.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66954.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66955.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66955.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66956.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66956.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66957.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66957.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66958.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66958.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66959.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66959.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66960.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66960.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66961.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66961.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66962.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66962.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66963.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66963.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66964.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66964.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66965.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66965.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66966.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66966.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66967.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66967.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66968.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66968.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66969.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66969.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66970.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66970.000000] [simulator/INFO] on11 is sleeping +[on6:ON:(7) 66970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66971.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66972.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66973.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66974.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66975.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66976.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66977.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66978.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66979.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66980.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66981.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66982.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66983.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66984.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66985.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66986.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66987.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66988.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66989.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66990.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66991.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66992.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66993.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66994.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66995.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66996.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66997.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66998.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66999.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67000.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67001.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67002.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67003.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67004.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67005.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67006.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67007.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67008.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67009.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67010.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67011.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67012.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67013.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67014.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67015.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67016.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67017.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67018.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67019.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67020.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67021.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67022.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67023.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67024.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67025.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67026.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67026.000000] [simulator/INFO] on6 is sleeping +[on2:ON:(3) 67027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67045.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67045.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 67045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67046.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67047.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67048.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67049.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67050.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67051.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67052.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67053.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67054.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67055.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67056.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67057.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67058.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67059.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67060.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67061.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67062.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67063.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67064.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67065.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67066.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67067.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67068.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67069.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67070.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67071.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67072.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67073.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67074.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67075.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67076.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67077.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67078.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67079.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67080.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67081.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67082.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67083.000000] [simulator/INFO] on2 is sleeping +[on7:ON:(8) 67083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67084.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67086.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67088.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67090.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67092.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67094.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67096.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67098.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67100.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67145.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67146.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67147.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67148.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67149.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67150.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67151.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67152.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67153.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67154.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67155.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67156.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67157.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67158.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67159.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67160.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67161.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67162.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67163.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67164.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67183.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67185.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67187.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67189.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67191.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67193.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67195.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67197.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67199.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67201.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67203.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67205.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67207.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67209.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67211.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67213.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67215.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67217.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67219.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67221.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67223.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67225.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 67306.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 67306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67338.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67338.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 67338.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67339.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67340.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67340.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67341.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67342.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67342.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67343.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67344.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67344.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67345.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67346.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67346.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67347.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67348.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67348.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67349.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67350.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67350.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67351.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67352.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67352.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67353.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67354.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67354.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67355.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67356.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67356.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67357.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67358.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67358.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67359.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67360.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67360.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67361.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67362.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67362.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67363.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67364.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67364.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67365.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67366.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67366.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67367.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67368.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67368.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67369.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67370.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67370.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67371.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67372.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67372.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67373.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67374.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67374.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67375.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67376.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67376.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67377.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67378.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67378.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67379.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67380.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67380.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67381.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67382.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67382.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67383.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67383.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67384.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67384.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67385.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67385.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67386.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67386.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67387.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67387.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67388.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67388.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67389.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67389.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67390.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67390.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67391.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67391.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67392.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67392.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67393.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67393.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67394.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67394.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67395.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67395.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67396.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67397.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67397.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67398.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67399.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67399.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67400.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67401.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67401.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67402.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67403.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67404.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67405.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67406.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67407.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67408.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67409.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67410.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67411.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67412.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67413.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67414.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67415.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67416.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67417.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67418.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67419.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67420.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67421.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67422.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67423.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67424.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67425.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67426.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67427.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67428.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67429.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67430.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67431.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67432.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67433.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67434.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67435.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67436.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67437.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67438.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67439.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67440.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67441.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67442.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67443.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67444.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67445.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67446.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67447.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67448.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67449.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67450.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67451.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67452.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67453.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67454.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67455.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67456.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67457.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67458.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67459.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67460.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67461.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67462.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67463.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67464.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67465.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67466.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67467.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67467.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67468.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67469.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67469.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67470.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67471.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67471.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67472.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67473.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67473.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67474.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67475.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67475.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67476.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67477.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67477.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67478.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67479.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67479.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67480.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67481.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67481.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67482.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67483.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67483.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67484.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67485.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67485.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67486.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 67486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67518.000000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 67532.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 67532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67712.000000] [simulator/INFO] on4 is sleeping +[on8:ON:(9) 67744.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 67744.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67747.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67750.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67753.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67754.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67755.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67756.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67757.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67758.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67759.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67760.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67761.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67762.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67763.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67764.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67765.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67766.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67767.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67768.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67769.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67770.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67771.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67772.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67773.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67774.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67775.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67776.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67777.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67778.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67779.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67780.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67781.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67782.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67924.000000] [simulator/INFO] on8 is sleeping +[on6:ON:(7) 68402.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 68402.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68403.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68404.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68405.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68406.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68407.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68408.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68409.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68410.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68411.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68412.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68413.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68414.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68415.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68416.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68417.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68418.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68419.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68420.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68421.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68422.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68423.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68424.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68425.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68426.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68427.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68428.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68429.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68430.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68431.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68432.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68433.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68434.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68435.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68436.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68437.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68438.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68439.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68440.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68441.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68442.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68443.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68444.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68445.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68446.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68447.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68448.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68449.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68450.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68451.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68452.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68453.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68454.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68455.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68456.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68457.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68458.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68459.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68460.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68461.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68462.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68463.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68464.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68465.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68466.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68467.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68468.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68469.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68470.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68471.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68472.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68473.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68474.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68475.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68476.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68477.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68478.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68479.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68480.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68481.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68482.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68483.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68484.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68485.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68486.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68487.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68488.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68489.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68490.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68491.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68493.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68495.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68497.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68499.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68501.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68552.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68554.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68556.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68558.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68560.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68562.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68564.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68566.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68568.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68570.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68572.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68574.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68576.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68578.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68580.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68582.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 68644.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 68644.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68645.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68646.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68647.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68648.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68649.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68650.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68651.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68652.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68653.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68654.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68655.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68656.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68657.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68658.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68659.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68660.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68661.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68662.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68663.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68664.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68665.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68666.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68667.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68668.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68669.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68670.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68671.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68672.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68674.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68676.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68678.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68680.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68682.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68684.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68686.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68688.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68690.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68692.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68694.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68696.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68698.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68699.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68700.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68701.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68702.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68703.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68704.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68705.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68706.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68707.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68708.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68709.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68710.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68711.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68712.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68713.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68714.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68715.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68716.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68717.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68718.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68719.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68720.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68721.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68722.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68723.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68723.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 68723.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68724.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68724.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68725.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68725.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68726.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68726.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68727.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68727.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68728.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68728.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68729.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68729.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68730.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68730.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68731.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68731.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68732.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68732.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68733.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68734.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68734.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68735.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68736.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68736.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68737.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68737.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68738.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68738.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68739.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68740.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68740.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68741.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68742.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68742.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68743.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68743.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68744.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68744.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68745.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68746.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68746.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68747.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68748.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68748.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68749.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68749.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68750.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68750.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68751.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68752.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68752.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68753.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68754.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68754.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68755.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68755.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68756.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68756.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68757.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68758.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68758.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68759.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68760.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68760.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68761.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68761.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68762.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68762.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68763.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68764.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68764.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68765.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68766.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68766.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68767.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68767.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68768.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68768.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68769.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68770.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68770.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68771.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68772.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68772.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68773.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68773.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68774.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68774.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68775.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68776.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68776.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68777.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68778.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68778.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68779.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68779.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68780.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68780.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68781.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68782.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68782.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68783.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68784.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68785.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68785.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68786.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68787.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68788.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68789.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68790.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68791.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68791.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68792.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68793.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68794.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68795.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68796.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68797.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68798.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68799.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68800.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68801.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68802.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68803.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68804.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68805.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68806.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68807.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68808.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68809.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68810.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68811.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68812.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68813.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68814.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68815.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68816.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68817.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68818.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68819.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68820.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68821.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68822.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68823.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68824.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68824.000000] [simulator/INFO] on1 is sleeping +[on10:ON:(11) 68825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68828.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68828.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 68828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68829.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68830.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68831.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68832.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68833.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68834.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68835.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68836.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68837.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68838.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68839.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68840.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68841.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68842.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68843.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68844.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68845.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68846.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68847.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68848.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68849.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68850.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68851.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68852.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68853.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68854.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68855.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68856.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68857.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68858.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68859.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68860.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68861.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68862.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68863.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68864.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68865.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68866.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68867.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68868.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68869.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68870.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68871.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68872.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68873.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68874.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68875.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68876.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68877.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68878.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68879.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68880.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68881.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68882.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68883.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68884.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68885.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68886.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68887.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68888.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68889.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68890.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68891.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68892.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68893.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68894.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68895.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68896.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68897.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68898.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68899.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68900.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68901.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68902.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68903.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68903.000000] [simulator/INFO] on10 is sleeping +[on0:ON:(1) 68904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69008.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 69043.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 69043.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69044.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69045.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69046.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69047.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69048.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69049.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69050.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69051.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69052.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69053.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69055.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69056.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69057.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69058.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69059.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69060.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69061.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69062.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69063.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69064.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69065.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69066.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69067.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69068.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69069.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69070.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69071.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69072.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69073.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69074.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69075.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69076.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69077.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69078.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69079.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69080.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69081.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69082.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69083.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69084.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69085.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69086.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69087.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69088.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69089.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69090.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69091.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69092.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69094.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69096.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69098.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69100.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69102.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69104.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69106.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69108.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69110.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69112.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69114.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69116.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69118.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69221.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 69221.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 69221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69222.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 69222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69223.000000] [simulator/INFO] on4 is sleeping +[on2:ON:(3) 69223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69250.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69251.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69252.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69253.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69254.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69255.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69256.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69257.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69258.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69259.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69260.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69261.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69262.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69263.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69264.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69265.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69266.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69267.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69268.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69269.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69270.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69271.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69272.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69273.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69274.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69283.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69285.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69287.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69289.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69291.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69293.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69295.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69296.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69297.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69298.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69299.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69300.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69301.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69302.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69303.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69304.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69305.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69306.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69307.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69308.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69309.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69310.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69311.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69312.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69313.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69314.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69315.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69316.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69317.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69318.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69319.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69320.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69321.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69322.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69323.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69324.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69325.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69326.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69327.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69328.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69329.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69330.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69331.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69332.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69333.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69334.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69335.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69336.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69337.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69338.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69339.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69340.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69341.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69342.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69343.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69344.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69345.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69346.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69347.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69348.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69349.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69351.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69353.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69355.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69357.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69359.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69361.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69363.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69365.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69367.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69369.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69371.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69373.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69375.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69377.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69379.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69381.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69383.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69385.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69387.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69389.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69391.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69393.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69395.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69396.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69397.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69398.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69399.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69400.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69401.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 69579.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 69579.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69581.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69582.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69583.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69584.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69585.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69586.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69587.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69588.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69589.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69590.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69591.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69592.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69593.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69594.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69595.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69596.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69597.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69598.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69599.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69600.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69601.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69602.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69603.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69604.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69605.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69606.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69607.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69608.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69609.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69610.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69611.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69612.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69613.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69614.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69615.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69616.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69617.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69618.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69619.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69620.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69621.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69622.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69623.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69624.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69625.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69626.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69627.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69628.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69629.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69630.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69631.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69632.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69633.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69634.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69635.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69636.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69637.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69638.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69639.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69640.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69641.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69642.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69643.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69644.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69645.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69646.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69647.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69648.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69649.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69650.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69651.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69652.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69653.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69654.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69655.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69656.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69657.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69658.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69659.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69660.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69661.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69662.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69663.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69664.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69665.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69666.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69667.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69668.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69669.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69670.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69671.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69672.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69673.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69674.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69675.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69676.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69677.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69678.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69679.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69680.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69681.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69682.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69683.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69684.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69685.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69686.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69687.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69688.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69689.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69690.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69691.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69692.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69693.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69694.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69695.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69696.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69697.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69698.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69699.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69700.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69701.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69702.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69703.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69704.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69705.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69706.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69707.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69708.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69709.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69710.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69711.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69712.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69713.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69714.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69715.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69716.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69717.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69718.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69719.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69720.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69721.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69722.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69723.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69724.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69725.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69726.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69727.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69728.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69729.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69730.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69731.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69732.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69733.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69734.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69735.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69736.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69737.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69738.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69739.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69740.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69741.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69742.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69743.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69744.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69747.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69750.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69753.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69754.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69755.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69756.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69757.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69758.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69759.000000] [simulator/INFO] on8 is sleeping +[on12:ON:(13) 70016.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 70016.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70018.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70128.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70128.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 70128.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70129.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70130.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70130.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70131.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70132.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70132.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70133.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70134.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70134.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70135.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70136.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70136.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70137.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70138.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70138.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70139.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70140.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70140.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70141.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70142.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70142.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70143.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70144.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70144.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70145.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70146.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70146.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70147.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70148.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70148.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70149.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70150.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70150.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70151.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70152.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70153.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70154.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70155.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70156.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70157.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70158.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70158.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70159.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70160.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70160.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70161.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70162.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70162.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70163.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70164.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70164.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70165.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70166.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70166.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70167.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70168.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70168.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70169.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70170.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70170.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70171.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70172.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70172.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70173.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70174.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70174.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70175.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70176.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70176.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70177.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70178.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70178.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70179.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70180.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70180.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70181.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70182.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70182.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70183.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70184.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70184.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70185.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70186.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70186.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70187.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70188.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70188.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70189.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70190.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70190.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70191.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70192.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70192.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70193.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70194.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70194.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70195.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70196.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 70196.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70198.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70200.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70202.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70204.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70206.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70208.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70210.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70212.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70214.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70298.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70300.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70302.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70306.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70308.000000] [simulator/INFO] on3 is sleeping +[on7:ON:(8) 71165.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 71165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71183.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71185.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71187.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71189.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71191.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71193.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71195.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71197.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71199.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71201.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71203.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71205.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71207.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71209.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71211.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71213.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71215.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71217.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71219.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71221.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71223.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71225.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71227.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71229.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71230.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71231.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71232.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71233.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71234.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71235.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71236.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71237.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71238.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71239.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71241.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71243.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71244.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71245.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71247.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71249.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71250.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71251.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71253.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71255.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71256.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71257.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71259.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71261.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71262.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71263.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71265.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71267.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71268.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71269.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71271.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71273.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71274.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71275.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71277.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71279.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71280.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71281.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71283.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71285.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71286.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71287.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71288.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71289.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71290.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71291.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71292.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71293.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71294.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71295.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71296.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71297.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71298.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71299.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71300.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71301.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71302.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71303.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71304.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71305.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71306.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71307.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71308.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71309.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71310.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71311.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71312.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71313.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71314.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71315.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71316.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71317.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71318.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71319.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71320.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71321.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71322.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71323.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71324.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71325.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71326.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71327.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71328.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71329.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71330.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71331.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71332.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71333.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71334.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71335.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71336.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71337.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71338.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71339.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71340.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71341.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71342.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71343.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71344.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71345.000000] [simulator/INFO] on7 is sleeping +[on11:ON:(12) 71418.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 71418.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71419.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71420.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71421.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71422.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71423.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71424.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71598.000000] [simulator/INFO] on11 is sleeping +[on5:ON:(6) 71855.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 71855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71889.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71891.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71893.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71895.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71897.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71899.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71901.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71903.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71905.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71907.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71909.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71913.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71917.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71919.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71921.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71922.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71923.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71925.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71927.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71928.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71929.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71931.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71933.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71934.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71935.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71937.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71939.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71940.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71941.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71943.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71945.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71946.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71947.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71949.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71951.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71952.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71953.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71955.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71957.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71958.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71959.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71961.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71963.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71964.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71965.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71967.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71970.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71971.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71973.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71975.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71976.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71977.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71979.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71981.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71982.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71983.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71985.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71987.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71988.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71989.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71991.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71993.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71994.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71995.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71997.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71999.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72000.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72000.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 72000.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72001.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72001.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72002.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72003.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72003.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72004.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72005.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72005.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72005.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 72005.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72006.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72006.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72006.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72007.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72007.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72008.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72008.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72009.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72009.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72010.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72010.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72011.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72011.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72011.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72012.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72012.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72012.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72013.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72013.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72014.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72014.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72015.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72015.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72015.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72016.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72016.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72017.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72017.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72018.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72018.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72018.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72019.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72019.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72020.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72020.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72021.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72021.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72022.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72022.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72023.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72023.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72024.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72024.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72024.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72025.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72025.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72026.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72026.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72027.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72027.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72028.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72028.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72029.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72029.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72030.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72030.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72030.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72031.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72031.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72032.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72032.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72033.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72033.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72034.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72034.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72035.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72035.000000] [simulator/INFO] on5 is sleeping +[on12:ON:(13) 72035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72036.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72037.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72038.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72039.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72040.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72041.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72042.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72043.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72044.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72045.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72046.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72047.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72048.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72049.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72050.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72051.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72052.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72053.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72054.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72055.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72056.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72057.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72058.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72059.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72060.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72061.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72062.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72063.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72064.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72065.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72066.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72067.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72068.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72069.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72070.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72071.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72072.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72073.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72074.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72075.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72076.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72077.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72078.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72079.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72080.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72081.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72082.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72083.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72084.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72085.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72086.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72087.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72088.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72089.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72090.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72091.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72092.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72093.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72094.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72095.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72096.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72097.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72098.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72099.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72100.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72101.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72102.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72103.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72104.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72105.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72106.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72107.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72108.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72109.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72110.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72111.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72112.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72113.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72114.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72115.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72116.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72117.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72118.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72119.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72120.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72121.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72122.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72123.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72124.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72125.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72126.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72127.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72128.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72129.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72130.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72131.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72132.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72133.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72134.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72135.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72136.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72137.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72138.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72139.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72140.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72141.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72142.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72143.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72144.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72145.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72146.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72147.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72148.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72149.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72150.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72151.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72152.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72153.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72154.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72155.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72156.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72157.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72158.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72159.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72160.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72160.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72161.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72162.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72162.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72163.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72164.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72164.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72165.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72166.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72166.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72167.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72168.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72168.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72169.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72170.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72170.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72171.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72172.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72172.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72173.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72174.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72174.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72175.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72176.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72176.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72177.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72178.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72178.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72179.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72180.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72180.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 72181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72185.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 72431.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 72431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72599.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72601.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72605.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72607.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72609.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72611.000000] [simulator/INFO] on11 is sleeping +[on9:ON:(10) 72901.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 72901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72928.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72934.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72937.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72940.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72942.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72943.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72944.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72945.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72946.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72947.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72948.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72949.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72950.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72951.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72952.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72953.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72954.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72955.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72956.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72957.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72958.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72959.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72960.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72961.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72962.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72963.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72964.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72965.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72966.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72967.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72968.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72969.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72970.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72971.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72972.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72973.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72974.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72975.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72976.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72977.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72977.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 72977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72978.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72978.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72979.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72980.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72980.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72981.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72982.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72982.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72983.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72984.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72984.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72985.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72986.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72986.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72987.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72988.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72988.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72989.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72990.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72990.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72991.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72992.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72992.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72993.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72994.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72994.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72995.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72996.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72996.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72997.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72998.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72998.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72999.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73000.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73000.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73001.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73002.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73003.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73004.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73005.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73006.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73006.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73007.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73008.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73009.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73009.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73010.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73011.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73011.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73012.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73012.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73013.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73013.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73014.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73015.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73015.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73016.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73017.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73017.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73018.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73018.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73019.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73019.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73020.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73021.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73021.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73022.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73023.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73023.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73024.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73024.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73025.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73025.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73026.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73027.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73027.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73028.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73029.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73029.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73030.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73030.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73031.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73031.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73032.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73033.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73033.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73034.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73035.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73035.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73036.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73037.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73037.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73038.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73039.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73039.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73040.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73041.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73041.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73042.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73043.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73043.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73044.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73045.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73045.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73046.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73047.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73047.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73048.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73049.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73049.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73050.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73051.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73051.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73052.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73053.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73053.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73054.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73055.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73055.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73056.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73057.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73057.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73058.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73059.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73059.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73060.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73061.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73061.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73062.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73063.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73063.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73064.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73065.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73065.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73066.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73067.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73067.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73068.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73069.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73069.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73070.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73071.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73071.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73072.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73073.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73073.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73074.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73075.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73075.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73076.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73077.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73077.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73078.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73079.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73079.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73080.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73081.000000] [simulator/INFO] on9 is sleeping +[on0:ON:(1) 73081.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73083.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73085.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73087.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73089.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73091.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73093.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73095.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73097.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73099.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73101.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73102.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73103.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73104.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73105.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73106.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73107.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73108.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73109.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73110.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73111.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73112.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73113.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73114.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73115.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73116.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73117.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73118.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73119.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73120.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73121.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73122.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73123.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73124.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73125.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73126.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73127.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73128.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73129.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73130.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73131.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73132.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73133.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73134.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73135.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73136.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73137.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73138.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73139.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73140.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73141.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73142.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73143.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73144.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73145.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73146.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73147.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73148.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73149.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73150.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73151.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73152.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73153.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73154.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73155.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73156.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73157.000000] [simulator/INFO] on0 is sleeping +[on8:ON:(9) 73404.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 73404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73405.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73405.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 73405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73406.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73407.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73408.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73409.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73410.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73411.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73411.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73412.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73413.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73413.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73414.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73415.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73415.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73416.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73417.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73417.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73418.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73419.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73419.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73420.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73421.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73421.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73422.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73423.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73423.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73424.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73425.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73425.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73426.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73427.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73427.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73428.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73429.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73429.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73430.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73431.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73431.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73432.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73433.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73433.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73434.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73435.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73435.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73436.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73437.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73437.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73438.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73439.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73439.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73440.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73441.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73441.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73442.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73443.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73443.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73444.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73445.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73445.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73446.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73447.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73447.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73448.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73449.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73449.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73450.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73451.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73451.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73452.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73453.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73453.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73454.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73455.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73455.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73456.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73457.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73457.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73458.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73459.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73459.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73460.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73461.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73461.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73462.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73463.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73463.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73464.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73465.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73465.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73466.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73466.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73467.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73467.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73468.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73469.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73469.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73470.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73471.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73471.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73472.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73472.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73473.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73473.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73474.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73475.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73475.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73476.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73477.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73477.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73478.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73478.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73479.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73480.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73481.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73482.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73483.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73484.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73484.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73485.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73486.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73487.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73488.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73489.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73490.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73490.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73491.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73492.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73493.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73494.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73495.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73496.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73496.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73497.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73498.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73499.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73500.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73501.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73502.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73502.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73503.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73504.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73505.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73506.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73507.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73507.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73507.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 73507.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73508.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73508.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73508.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73509.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73509.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73509.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73510.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73510.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73510.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73511.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73511.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73511.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73512.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73512.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73512.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73513.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73513.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73513.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73514.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73514.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73514.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73515.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73515.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73515.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73516.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73516.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73516.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73517.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73517.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73517.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73518.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73518.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73518.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73519.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73519.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73519.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73520.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73520.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73520.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73521.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73521.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73521.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73522.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73522.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73522.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73523.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73523.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73523.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73524.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73524.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73524.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73525.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73525.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73525.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73526.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73526.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73526.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73527.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73527.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73527.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73528.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73528.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73528.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73529.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73529.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73529.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73530.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73530.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73530.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73531.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73531.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73531.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73532.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73532.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73532.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73533.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73533.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73533.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73534.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73534.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73534.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73535.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73535.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73535.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73536.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73536.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73536.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73537.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73537.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73537.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73538.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73538.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73538.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73539.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73539.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73539.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73540.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73540.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73540.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73541.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73541.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73541.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73542.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73542.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73542.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73543.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73543.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73543.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73544.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73544.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73544.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73545.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73545.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73545.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73546.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73546.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73546.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73547.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73547.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73547.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73548.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73548.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73548.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73549.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73549.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73549.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73550.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73550.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73550.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73551.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73551.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73551.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73552.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73552.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73552.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73553.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73553.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73553.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73554.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73554.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73554.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73555.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73555.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73555.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73556.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73556.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73556.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73557.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73557.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73557.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73558.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73558.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73558.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73559.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73559.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73559.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73560.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73560.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73560.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73561.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73561.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73561.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73562.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73562.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73562.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73563.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73563.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73563.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73564.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73564.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73564.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73565.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73565.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73565.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73566.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73566.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73566.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73567.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73567.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73567.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73568.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73568.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73568.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73569.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73569.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73569.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73570.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73570.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73570.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73571.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73571.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73571.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73572.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73572.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73572.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73573.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73573.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73573.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73574.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73574.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73574.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73575.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73575.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73575.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73576.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73576.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73576.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73577.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73577.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73577.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73578.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73578.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73578.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73579.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73579.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73579.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73580.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73580.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73581.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73581.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73581.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73582.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73582.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73582.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73583.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73583.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73583.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73584.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73584.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73584.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 73585.000000] [simulator/INFO] on4 is sleeping +[on10:ON:(11) 73585.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73586.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73587.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73588.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73589.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73590.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73591.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73592.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73593.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73594.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73595.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73596.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73597.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73598.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73599.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73600.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73601.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73602.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73603.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73604.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73605.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73606.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73607.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73608.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73609.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73610.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73611.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73612.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73613.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73614.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73615.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73616.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73617.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73618.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73619.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73620.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73621.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73622.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73623.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73624.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73625.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73626.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73627.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73628.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73629.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73630.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73632.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73633.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73634.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73635.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73636.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73637.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73638.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73639.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73640.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73641.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73642.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73643.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73644.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73645.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73646.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73647.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73648.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73649.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73650.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73651.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73652.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73653.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73654.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73655.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73656.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73657.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73658.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73659.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73660.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73661.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73662.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73663.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73664.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73665.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73666.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73667.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73668.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73669.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73670.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73671.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73672.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73673.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73674.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73675.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73676.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73677.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73678.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73679.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73680.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73681.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73682.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73683.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73684.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73685.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73686.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73687.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 73731.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 73731.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73732.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73733.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73734.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73735.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73736.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73737.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73738.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73739.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73740.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73741.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73742.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73743.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73744.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73745.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73746.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73747.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73748.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73749.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73750.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73751.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73752.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73753.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73754.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73755.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73756.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73757.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73758.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73759.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73760.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73761.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73762.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73763.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73764.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73765.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73766.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73767.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73768.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73769.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73770.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73771.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73772.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73773.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73774.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73775.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73776.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73777.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73778.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73779.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73780.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73781.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73782.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73783.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73785.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73787.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73789.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73791.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73793.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73795.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73797.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73799.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73801.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73803.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73805.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73807.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73809.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73811.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73813.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73815.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73817.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73819.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73821.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73823.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73824.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73825.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73826.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73827.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73828.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73829.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73830.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73831.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73832.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73833.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73834.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73835.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73836.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73837.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73838.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73839.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73840.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73841.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73842.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73843.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73844.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73845.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73846.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73847.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73848.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73849.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73850.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73851.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73852.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73853.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73854.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73855.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73856.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73857.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73858.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73859.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73860.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73861.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73862.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73863.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73864.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73865.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73866.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73867.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73868.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73869.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73870.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73871.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73872.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73873.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73874.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73875.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73876.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73877.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73878.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73879.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73880.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73881.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73882.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73883.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73884.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73885.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73886.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73887.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73888.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73889.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73890.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73891.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73892.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73893.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73894.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73895.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73896.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73897.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73898.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73899.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73900.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73901.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73902.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73903.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73904.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73905.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73906.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73907.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73908.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73909.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73910.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73911.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 74603.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 74603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74735.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74735.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 74735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74736.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74737.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74738.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74739.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74740.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74741.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74742.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74743.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74744.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74745.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74746.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74747.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74748.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74749.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74750.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74751.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74752.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74753.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74754.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74755.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74756.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74757.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74758.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74759.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74760.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74761.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74762.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74763.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74764.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74765.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74766.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74767.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74768.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74769.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74770.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74771.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74772.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74773.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74774.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74775.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74776.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74777.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74778.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74779.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74780.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74781.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74782.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74783.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 74783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74784.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74874.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74896.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74898.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74900.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74902.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74915.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 74964.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 74964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75008.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75010.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75012.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75014.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75016.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75018.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75020.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75022.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75024.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75026.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75045.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75047.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75049.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75144.000000] [simulator/INFO] on2 is sleeping +[on6:ON:(7) 75503.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 75503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75544.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75544.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 75544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75545.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75546.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75547.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75548.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75549.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75550.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75551.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75552.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75553.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75554.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75555.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75556.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75557.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75558.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75559.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75560.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75561.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75562.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75563.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75564.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75565.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75566.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75567.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75568.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75569.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75570.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75571.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75572.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75573.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75574.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75575.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75576.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75577.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75578.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75579.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75580.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75581.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75582.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75583.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75584.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75585.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75586.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75587.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75588.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75589.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75590.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75591.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75592.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75593.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75594.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75595.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75596.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75597.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75598.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75599.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75600.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75601.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75602.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75603.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75604.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75605.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75606.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75606.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75607.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75608.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75608.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75609.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75610.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75610.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75611.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75612.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75612.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75613.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75614.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75614.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75615.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75616.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75616.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75617.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75618.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75618.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75619.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75620.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75620.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75621.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75622.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75622.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75623.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75624.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75624.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75625.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75626.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75626.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75627.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75628.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75628.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75629.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75630.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75630.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75631.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75632.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75632.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75633.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75634.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75634.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75635.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75636.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75637.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75638.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75639.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75640.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75641.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75642.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75643.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75644.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75645.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75646.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75647.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75648.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75649.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75650.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75651.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75652.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75652.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75653.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75654.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75654.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75655.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75656.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75656.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75657.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75658.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75658.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75659.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75660.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75660.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75661.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75662.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75662.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75663.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75664.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75664.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75665.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75666.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75666.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75667.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75668.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75668.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75669.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75670.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75670.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75671.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75672.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75672.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75673.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75674.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75674.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75675.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75676.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75676.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75677.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75678.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75678.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75679.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75680.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75680.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75681.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75682.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75682.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75683.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75683.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 75684.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75686.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75687.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75688.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75689.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75690.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75691.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75692.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75693.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75694.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75695.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75696.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75697.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75698.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75699.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75700.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75701.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75702.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75703.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75704.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75705.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75706.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75707.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75708.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75709.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75710.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75711.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75712.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75713.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75714.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75715.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75716.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75717.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75718.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75719.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75720.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75721.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75722.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75723.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75724.000000] [simulator/INFO] on7 is sleeping +[on0:ON:(1) 75876.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 75876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75877.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75879.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75881.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75883.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75885.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75887.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75889.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75891.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75893.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75895.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75901.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75903.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75985.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75985.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 75985.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75986.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75987.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75987.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75988.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75989.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75989.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75990.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75991.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75991.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75992.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75993.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75993.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75994.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75995.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75995.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75996.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75997.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75997.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75998.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75999.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75999.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76000.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76001.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76001.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76002.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76003.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76003.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76004.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76005.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76005.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76006.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76007.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76007.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76008.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76009.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76009.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76010.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76011.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76011.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76012.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76013.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76013.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76014.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76015.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76015.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76016.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76017.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76017.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76018.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76019.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76019.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76020.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76021.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76021.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76022.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76023.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76023.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76024.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76025.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76025.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76026.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76027.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76027.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76028.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76029.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76029.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76030.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76031.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76031.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76032.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76033.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76033.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76034.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76035.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76035.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76036.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76037.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76037.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76038.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76039.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76039.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76040.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76041.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76041.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76042.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76043.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76043.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76044.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76045.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76045.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76046.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76047.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76047.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76048.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76049.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76049.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76050.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76051.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76051.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76052.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76053.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76053.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76054.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76055.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76055.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76056.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76056.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 76057.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76059.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76061.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76063.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76077.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76079.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76081.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76083.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76085.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76087.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76089.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76091.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76093.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76095.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76097.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76165.000000] [simulator/INFO] on10 is sleeping +[on8:ON:(9) 76330.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 76330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76355.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76358.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76361.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76364.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76367.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76370.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76373.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76376.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76379.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76382.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76385.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76388.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76391.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76394.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76397.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76400.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76403.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76409.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76415.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76421.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76427.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76433.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76439.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76445.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76451.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76457.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76463.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76465.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76466.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76467.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76469.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76471.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76472.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76473.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76475.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76477.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76478.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76479.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76481.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76483.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76484.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76485.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76487.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76489.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76490.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76491.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76493.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76495.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76496.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76497.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76499.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76501.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76502.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76503.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76505.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76507.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76508.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76509.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76510.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 76519.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 76519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76524.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76524.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 76524.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76525.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76526.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76526.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76527.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76528.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76528.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76529.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76530.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76530.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76531.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76532.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76532.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76533.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76534.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76534.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76535.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76536.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76536.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76537.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76538.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76538.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76539.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76540.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76540.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76541.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76542.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76542.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76543.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76544.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76544.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76545.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76546.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76546.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76547.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76548.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76548.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76549.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76550.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76550.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76551.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76552.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76552.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76553.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76554.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76554.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76555.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76556.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76556.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76557.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76558.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76558.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76559.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76560.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76560.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76561.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76562.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76562.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76563.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76564.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76564.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76565.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76566.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76566.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76567.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76568.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76568.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76569.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76570.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76570.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76571.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76572.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76572.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76573.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76574.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76574.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76575.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76576.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76576.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76577.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76578.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76578.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76579.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76580.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76580.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76581.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76582.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76582.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76583.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76584.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76584.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76585.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76586.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76586.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76587.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76588.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76588.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76589.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76590.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76590.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76591.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76592.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76592.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76593.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76594.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76594.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76595.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76596.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76596.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76597.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76598.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76598.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76599.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76600.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76600.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76601.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76602.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76602.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76603.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76604.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76604.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76605.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76606.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76606.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76607.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76608.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76608.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76609.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76610.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76610.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76611.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76612.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76612.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76613.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76614.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76614.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76615.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76616.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76616.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76617.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76618.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76618.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76619.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76620.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76620.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76621.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76622.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76622.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76623.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76624.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76624.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76625.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76626.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76626.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76627.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76628.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76628.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76629.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76630.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76630.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76631.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76632.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76632.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76633.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76634.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76634.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76635.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76636.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76636.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76637.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76638.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76638.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76639.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76640.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76640.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76641.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76642.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76642.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76643.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76644.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76644.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76645.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76646.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76646.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76647.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76648.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76648.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76649.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76650.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76650.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76651.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76652.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76652.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76653.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76654.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76654.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76655.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76656.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76656.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76657.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76658.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76658.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76659.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76660.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76660.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76661.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76662.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76662.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76663.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76664.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76664.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76665.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76666.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76666.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76667.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76668.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76668.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76669.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76670.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76670.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76671.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76672.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76672.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76673.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76674.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76674.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76675.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76676.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76676.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76677.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76678.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76678.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76679.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76680.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76680.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76681.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76682.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76682.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76683.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76684.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76684.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76685.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76686.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76686.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76687.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76688.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76688.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76689.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76690.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76690.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76691.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76692.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76692.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76693.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76694.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76694.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76695.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76696.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76696.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76697.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76698.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76698.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76699.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76699.000000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 76700.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76701.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76702.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76703.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76704.000000] [simulator/INFO] on12 is sleeping +[on9:ON:(10) 76705.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 76705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76837.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76837.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 76837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76838.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76839.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76840.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76841.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76842.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76843.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76844.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76845.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76846.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76847.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76848.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76849.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76850.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76851.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76852.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76853.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76854.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76855.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76856.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76857.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76858.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76859.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76860.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76861.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76862.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76863.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76864.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76865.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76866.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76867.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76868.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76869.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76870.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76871.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76872.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76873.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76874.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76875.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76876.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76877.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76878.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76879.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76880.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76881.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76882.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76883.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76884.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76885.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 76885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76983.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76984.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76985.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76986.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76987.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76988.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76989.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76990.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76991.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76992.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76993.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76994.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76995.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76996.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76997.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76998.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76999.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77000.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77001.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77002.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77003.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77004.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77005.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77006.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77007.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77008.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77009.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77010.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77011.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77012.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77013.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77014.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77015.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77016.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77017.000000] [simulator/INFO] on7 is sleeping +[on1:ON:(2) 77419.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 77419.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77420.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77421.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77422.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77423.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77424.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77425.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77426.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77427.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77428.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77429.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77430.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77431.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77432.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77433.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77434.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77435.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77436.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77437.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77438.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77439.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77440.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77441.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77442.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77443.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77444.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77445.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77446.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77447.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77448.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77449.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77450.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77451.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77452.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77453.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77454.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77455.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77456.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77457.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77458.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77459.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77460.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77461.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77462.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77463.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77464.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77465.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77466.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77467.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77468.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77469.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77470.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77471.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77472.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77473.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77474.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77475.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77476.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77477.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77478.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77479.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77480.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77481.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77482.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77483.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77484.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77485.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77486.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77487.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77488.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77489.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77490.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77491.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77492.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77493.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77494.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77495.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77496.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77497.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77498.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77499.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77500.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77501.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77502.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77503.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77504.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77505.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77506.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77507.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77508.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77509.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77510.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77511.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77512.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77513.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77514.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77515.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77516.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77517.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77519.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77521.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77523.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77525.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77527.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77529.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77531.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77533.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77535.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77537.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77539.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77541.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77543.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77545.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77547.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77549.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77551.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77553.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77555.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77557.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77559.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77561.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77563.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77565.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77567.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77569.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77571.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77573.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77575.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77577.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77579.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77581.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77583.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77585.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77587.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77589.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77591.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77593.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77595.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77597.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77599.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 77684.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 77684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77694.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77696.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77715.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77717.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77719.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77720.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77721.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77722.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77723.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77724.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77725.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77726.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77727.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77728.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77749.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77750.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77751.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77752.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77753.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77754.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77755.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77756.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77757.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77758.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77759.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77760.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77761.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77762.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77763.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77764.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77765.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77766.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77767.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77768.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77769.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77770.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77771.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77772.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77773.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77774.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77775.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77776.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77777.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77778.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77779.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77780.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77781.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77783.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77785.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77787.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77789.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77791.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77793.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77795.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77797.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77799.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77801.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77803.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77805.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77807.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77809.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77811.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77813.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77815.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77817.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77819.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77821.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77823.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77825.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77827.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77829.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77829.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 77829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77830.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77831.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77832.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77833.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77834.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77835.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77836.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77837.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77838.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77839.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77840.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77841.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77842.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77843.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77844.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77844.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77845.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77846.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77847.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77848.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77849.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77850.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77851.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77852.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77853.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77854.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77855.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77856.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77857.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77858.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77859.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77860.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77861.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77862.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77863.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77864.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77864.000000] [simulator/INFO] on6 is sleeping +[on11:ON:(12) 77865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77916.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77916.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 77916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77917.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77918.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77919.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77920.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77921.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77922.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77923.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77924.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77925.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77926.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77927.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77928.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77929.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77930.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77931.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77932.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77933.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77934.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77935.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77936.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77937.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77938.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77939.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77940.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77941.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77942.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77943.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77944.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77945.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77946.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77947.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77948.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77949.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77950.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77951.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77952.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77953.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77954.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77955.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77956.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77957.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77958.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77959.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77960.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77961.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77962.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77963.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77964.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77965.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77966.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77966.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77967.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77968.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77968.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77969.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77970.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77970.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77971.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77972.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77972.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77973.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77974.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77974.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77975.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77976.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77976.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77977.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77978.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77978.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77979.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77980.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77980.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77981.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77982.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77982.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77983.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77984.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77984.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77985.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77986.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77986.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77987.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77988.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77988.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77989.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77990.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77990.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77991.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77992.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77992.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77993.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77994.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77994.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77995.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77996.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77996.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77997.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77998.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77998.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77999.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78000.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78000.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78001.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78002.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78002.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78003.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78004.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78004.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78005.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78006.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78006.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78007.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78008.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78008.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78009.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78009.000000] [simulator/INFO] on11 is sleeping +[on3:ON:(4) 78010.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78012.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78014.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78016.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78018.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78020.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78022.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78024.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78026.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78028.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78030.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78032.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78034.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78036.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78038.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78040.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78042.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78044.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78046.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78048.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78050.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78052.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78054.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78056.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78057.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78058.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78059.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78060.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78061.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78062.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78063.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78064.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78065.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78066.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78067.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78068.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78069.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78070.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78071.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78072.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78073.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78074.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78075.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78076.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78077.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78078.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78079.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78080.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78081.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78082.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78083.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78084.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78085.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78086.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78087.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78088.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78089.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78090.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78091.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78092.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78093.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78094.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78095.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78096.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 78822.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 78822.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78823.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78824.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78825.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78826.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79002.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 79125.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 79125.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79126.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79127.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79128.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79129.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79130.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79131.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79132.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79133.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79134.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79135.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79136.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79138.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79139.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79140.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79142.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79144.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79146.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79148.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79149.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79150.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79151.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79152.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79153.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79154.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79155.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79156.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79157.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79158.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79159.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79160.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79161.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79162.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79163.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79164.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79165.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79166.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79167.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79168.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79169.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79170.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79171.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79172.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79173.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79174.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79175.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79176.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79177.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79178.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79179.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79180.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79181.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79182.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79183.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79184.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79185.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79186.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79187.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79188.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79189.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79190.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79191.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79192.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79193.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79194.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79195.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79196.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79197.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79198.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79199.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79200.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79201.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79202.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79203.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79204.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79205.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79206.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79207.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79208.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79209.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79210.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79211.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79212.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79213.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79214.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79215.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79216.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79217.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79218.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79219.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79220.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79221.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79222.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79223.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79224.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79225.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79226.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79227.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79228.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79229.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79230.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79231.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79232.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79233.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79234.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79235.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79236.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79237.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79238.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79239.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79240.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79241.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79242.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79243.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79244.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79245.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79246.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79247.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79248.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79249.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79250.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79251.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79252.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79253.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79254.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79255.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79256.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79257.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79258.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79259.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79260.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79261.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79262.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79263.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79264.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79265.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79266.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79267.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79268.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79269.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79270.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79271.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79272.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79273.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79274.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79275.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79276.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79277.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79278.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79279.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79280.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79281.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79282.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79284.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79285.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79285.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 79285.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79286.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79286.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79287.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79287.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79288.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79288.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79289.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79289.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79290.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79290.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79291.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79291.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79292.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79292.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79293.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79293.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79294.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79294.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79295.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79295.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79296.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79296.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79297.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79297.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79298.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79298.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79299.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79299.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79300.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79300.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79301.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79301.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79302.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79302.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79303.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79303.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79304.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79304.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79305.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 79305.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79306.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79307.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79308.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79309.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79310.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79311.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79312.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79313.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79314.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79315.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79316.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79317.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79318.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79319.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79320.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79321.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79322.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79323.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79324.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79325.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79326.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79327.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79328.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79329.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79355.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79358.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79361.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79364.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79367.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79370.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79373.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79376.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79379.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79382.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79385.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79388.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79391.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79394.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79397.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79400.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79403.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79409.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79415.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79421.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79427.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79433.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79439.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79445.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79451.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79457.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79463.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79465.000000] [simulator/INFO] on8 is sleeping +[on5:ON:(6) 79600.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 79600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79757.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79757.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 79757.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79758.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79759.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79759.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79760.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79761.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79761.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79762.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79763.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79763.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79764.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79765.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79765.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79766.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79767.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79767.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79768.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79769.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79769.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79770.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79771.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79771.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79772.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79773.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79773.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79774.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79775.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79775.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79776.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79777.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79777.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79778.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79779.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79779.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79780.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79780.000000] [simulator/INFO] on5 is sleeping +[on11:ON:(12) 79781.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79782.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79783.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79784.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79785.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79786.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79787.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79788.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79789.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79790.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79791.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79792.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79793.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79794.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79795.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79796.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79797.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79798.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79799.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79800.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79801.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79802.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79803.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79804.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79805.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79806.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79807.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79808.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79809.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79810.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79811.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79846.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79848.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79850.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79852.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79854.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79856.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79858.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79864.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79921.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79921.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 79921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79922.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79923.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79924.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79925.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79926.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79927.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79928.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79929.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79930.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79931.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79932.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79933.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79934.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79935.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79936.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79937.000000] [simulator/INFO] on11 is sleeping +[on0:ON:(1) 79937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79965.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79965.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 79965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79966.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79967.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79968.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79969.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79970.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79971.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79972.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79973.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79974.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79975.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79976.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79977.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79978.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79979.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79980.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79981.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79982.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79983.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79983.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79984.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79985.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79985.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79986.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79987.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79987.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79988.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79989.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79989.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79990.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79991.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79991.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79992.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79993.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79993.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79994.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79995.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79995.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79996.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79997.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79997.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79998.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79999.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79999.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80000.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80001.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80001.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80002.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80003.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80003.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80004.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80005.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80005.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80006.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80007.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80007.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80008.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80009.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80009.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80010.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80011.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80011.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80012.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80013.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80013.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80014.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80015.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80015.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80016.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80017.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80017.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80018.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80019.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80019.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80020.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80021.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80021.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80022.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80023.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80023.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80024.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80025.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80025.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80026.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80027.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80027.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80028.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80029.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80029.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80030.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80031.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80031.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80032.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80033.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80033.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80034.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80035.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80035.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80036.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80037.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80037.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80038.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80039.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80039.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80040.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80041.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80041.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80042.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80043.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80043.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80044.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80045.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80046.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80047.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80048.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80049.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80050.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80051.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80052.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80053.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80054.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80055.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80056.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80056.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80057.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80058.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80058.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80059.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80060.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80060.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80061.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80062.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80062.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80063.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80064.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80064.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80065.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80066.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80066.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80067.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80068.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80068.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80069.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80070.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80070.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80071.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80072.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80072.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80073.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80074.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80074.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80075.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80076.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80076.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80077.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80078.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80078.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80079.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80080.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80080.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80081.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80082.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80083.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80084.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80085.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80086.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80087.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80088.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80089.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80090.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80091.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80092.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80093.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80094.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80095.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80096.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80097.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80098.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80099.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80100.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80101.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 80101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80145.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 80387.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 80387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80396.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80402.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80408.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80414.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80420.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80426.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80432.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80438.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80442.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80444.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80450.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80456.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80462.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80468.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80474.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80480.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80484.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80486.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80488.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80490.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80492.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80494.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80496.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80498.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80500.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80502.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80504.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80506.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80508.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80510.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80512.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80514.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80516.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80518.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80520.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80522.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80524.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80526.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80528.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80530.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80532.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80534.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80536.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80538.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80540.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80542.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80544.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80546.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80548.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80550.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80552.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80554.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80556.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80558.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80560.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80562.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80564.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80566.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80567.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 81068.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 81068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81164.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81164.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 81164.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81165.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81166.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81166.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81167.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81168.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81168.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81169.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81170.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81170.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81171.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81172.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81172.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81173.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81174.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81174.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81175.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81176.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81176.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81177.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81178.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81178.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81179.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81180.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81180.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81181.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81182.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81182.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81183.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81184.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81184.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81185.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81186.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81186.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81187.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81188.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81188.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81189.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81190.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81190.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81191.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81192.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81192.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81193.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81194.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81194.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81195.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81196.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81196.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81197.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81198.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81198.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81199.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81200.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81200.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81201.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81202.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81202.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81203.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81204.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81204.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81205.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81206.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81206.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81207.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81208.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81208.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81209.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81210.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81210.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81211.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81212.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81212.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81213.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81214.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81214.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81215.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81216.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81216.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81217.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81218.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81218.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81219.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81220.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81220.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81221.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81222.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81222.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81223.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81224.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81224.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81225.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81226.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81226.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81227.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81228.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81228.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81229.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81230.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81230.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81231.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81232.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81232.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81233.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81234.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81234.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81235.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81236.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81236.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81237.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81238.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81238.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81239.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81240.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81240.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81241.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81242.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81242.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81243.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81244.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81244.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81245.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81246.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81246.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81247.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81248.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 81248.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81249.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81250.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81251.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81252.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81253.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81254.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81255.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81256.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81257.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81258.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81259.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81260.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81262.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81264.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81266.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81268.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81270.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81272.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81274.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81276.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81278.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81280.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81282.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81284.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81286.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81288.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81290.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81292.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81294.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81296.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81344.000000] [simulator/INFO] on1 is sleeping +[on4:ON:(5) 81559.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 81559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81712.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81714.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81716.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81718.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81720.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81722.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81724.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81726.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81727.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81728.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81729.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81730.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81731.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81732.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81733.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81734.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81735.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81736.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81737.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81738.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81739.000000] [simulator/INFO] on4 is sleeping +[on10:ON:(11) 81795.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 81795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81800.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81806.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81812.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81818.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81824.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81830.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81836.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81842.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81848.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81854.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81854.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 81854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81855.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81856.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81857.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81858.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81859.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81860.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81861.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81862.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81863.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81864.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81865.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81866.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81867.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81868.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81869.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81870.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81871.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81872.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81873.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81874.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81875.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81876.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81877.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81878.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81879.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81880.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81881.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81882.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81883.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81884.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81885.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81886.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81887.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81888.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81889.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81890.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81891.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81892.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81893.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81894.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81895.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81896.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81897.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81898.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81899.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81900.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81901.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81902.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81903.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81903.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81904.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81905.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81905.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81906.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81907.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81907.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81908.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81909.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81909.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81910.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81911.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81911.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81912.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81913.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81913.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81914.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81915.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81915.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81916.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81917.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81917.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81918.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81919.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81919.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81920.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81921.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81921.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81922.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81923.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81923.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81924.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81925.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81925.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81926.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81927.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81927.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81928.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81929.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81929.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81930.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81931.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81931.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81932.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81933.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81933.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81934.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81935.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81935.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81936.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81937.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81937.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81938.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81939.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81939.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81940.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81941.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81941.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81942.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81943.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81943.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81944.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81945.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81945.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81946.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81947.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81947.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81948.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81949.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81949.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81950.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81951.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81951.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81952.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81953.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81953.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81954.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81955.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81955.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81956.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81957.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81957.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81958.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81959.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81959.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81960.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81961.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81961.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81962.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81963.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81963.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81964.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81965.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81965.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81966.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81967.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81967.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81968.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81969.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81969.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81970.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81971.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81971.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81972.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81973.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81973.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81974.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81975.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81975.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 81976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81979.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81979.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 81979.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81980.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81981.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81981.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81982.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81983.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81983.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81984.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81985.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81985.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81986.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81987.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81987.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81988.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81989.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81989.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81990.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81991.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81991.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81992.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81993.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81993.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81994.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81995.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81995.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81996.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81997.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81997.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81998.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81999.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81999.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82000.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82001.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82001.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82002.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82003.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82003.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82004.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82005.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82005.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82006.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82007.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82007.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82008.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82009.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82009.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82010.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82011.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82011.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82012.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82013.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82013.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82014.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82015.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82015.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82016.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82017.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82017.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82018.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82019.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82019.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82020.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82021.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82021.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82022.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82023.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82023.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82024.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82025.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82025.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82026.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82027.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82027.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82028.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82029.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82029.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82030.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82031.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82031.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82032.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82033.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82033.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82034.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82034.000000] [simulator/INFO] on6 is sleeping +[on9:ON:(10) 82035.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82037.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82039.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82041.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82043.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82045.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82047.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82049.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82051.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82053.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82055.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82057.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82059.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82061.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82063.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82065.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82067.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82069.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82071.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82073.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82075.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82077.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82079.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82081.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82083.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82085.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82087.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82089.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82091.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82093.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82095.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82097.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82099.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82101.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82103.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82105.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82107.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82109.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82111.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82113.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82115.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82117.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82119.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82121.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82123.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82125.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82127.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82129.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82131.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82133.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82135.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82137.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82139.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82141.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82143.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82145.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82147.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82149.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82151.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82153.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82155.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82157.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82159.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 82665.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 82665.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82666.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82667.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82668.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82669.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82670.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82671.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82672.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82673.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82674.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82675.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82676.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82677.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82678.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82679.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82680.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82681.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82682.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82683.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82684.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82685.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82686.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82687.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82688.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82689.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82690.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82691.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82692.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82693.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82694.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82695.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82696.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82697.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82698.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82699.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82700.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82701.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82702.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82703.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82704.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82705.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82706.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82707.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82708.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82709.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82710.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82711.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82712.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82713.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82714.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82715.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82716.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82717.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82718.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82719.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82720.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82721.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82722.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82723.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82724.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82725.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82726.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82727.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82728.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82729.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82730.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82731.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82732.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82733.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82734.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82735.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82736.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82737.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82738.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82739.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82740.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82741.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82742.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82743.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82744.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82745.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82746.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82747.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82748.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82749.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82750.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82751.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82752.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82753.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82754.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82755.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82756.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82757.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82758.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82759.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82760.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82761.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82762.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82763.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82764.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82765.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82766.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82767.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82768.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82769.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82770.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82771.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82772.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82773.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82774.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82775.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82776.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82777.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82778.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82779.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82780.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82781.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82782.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82783.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82784.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82785.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82786.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82787.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82788.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82789.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82790.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82791.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82792.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82793.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82794.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82795.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82796.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82797.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82798.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82800.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82802.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82804.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82806.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82808.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82810.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82812.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82814.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82816.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82818.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82820.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82845.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 82904.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 82904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82966.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82968.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82970.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82972.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82974.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82976.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82978.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82980.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82982.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82984.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82986.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82988.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82990.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82992.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82994.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82996.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82998.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83000.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83002.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83004.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83006.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83008.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83010.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83012.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83014.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83016.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83018.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83020.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83022.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83024.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83026.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83028.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83030.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83032.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83034.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83036.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83038.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83040.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83042.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83044.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83046.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83048.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83050.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83052.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83054.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83056.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83057.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83058.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83059.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83060.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83061.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83062.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83063.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83064.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83065.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83066.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83067.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83068.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83069.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83070.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83071.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83072.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83073.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83074.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83075.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83076.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83077.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83078.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83079.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83080.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83081.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83082.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83083.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83084.000000] [simulator/INFO] Observation node on3 finished [LOG2PARSE](node:on3|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:360|totalUptime:4321.000000|seed:200|hint_added:0|timeDataRcv:7709.010320) +[on10:ON:(11) 83332.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 83332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83440.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83441.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83442.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83443.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83444.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83445.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83446.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83447.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83448.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83449.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83450.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83451.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83452.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83453.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83454.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83455.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83456.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83457.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83458.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83459.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83460.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83461.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83462.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83463.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83464.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83465.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83466.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83467.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83468.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83469.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83470.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83471.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83472.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83473.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83474.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83475.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83476.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83477.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83478.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83479.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83480.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83481.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83482.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83483.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83484.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83485.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83486.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83487.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83488.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83489.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83490.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83491.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83492.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83493.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83494.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83495.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83496.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83497.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83498.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83499.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83500.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83501.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83502.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83503.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83504.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83505.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83506.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83507.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83508.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83509.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83510.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83511.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83512.000000] [simulator/INFO] Observation node on10 finished [LOG2PARSE](node:on10|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:0|totalUptime:4507.620640|seed:200|hint_added:1|timeDataRcv:2638.620640) +[on11:ON:(12) 83602.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 83602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83605.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83607.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83609.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83611.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83613.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83615.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83617.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83619.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83621.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83623.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83625.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83627.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83629.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83631.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83633.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83635.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83637.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83647.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83649.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83671.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83673.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83675.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83677.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83679.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83681.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83683.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83684.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83685.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83686.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83687.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83688.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83689.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83690.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83691.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83692.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83693.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83694.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83695.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83696.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83697.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83698.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83699.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83700.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83701.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83702.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83703.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83704.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83705.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83706.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83707.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83708.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83709.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83710.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83711.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83712.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83713.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83714.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83715.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83716.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83717.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83718.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83719.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83720.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83721.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83722.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83723.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83724.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83725.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83726.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83727.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83728.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83729.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83730.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83731.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83732.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83733.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83734.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83735.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83736.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83737.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83737.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 83737.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83738.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83738.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83739.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83739.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83740.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83740.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83741.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83741.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83742.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83742.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83743.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83743.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83744.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83744.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83745.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83745.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83746.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83746.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83747.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83747.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83748.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83748.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83749.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83749.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83750.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83750.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83751.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83751.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83752.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83752.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83753.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83753.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83754.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83754.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83755.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83755.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83756.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83756.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83757.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83757.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83758.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83758.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83759.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83759.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83760.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83760.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83761.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83761.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83762.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83762.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83763.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83763.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83764.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83764.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83765.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83765.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83766.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83766.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83767.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83767.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83768.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83768.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83769.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83769.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83770.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83770.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83771.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83771.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83772.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83772.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83773.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83773.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83774.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83774.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83775.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83775.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83776.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83776.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83777.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83777.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83778.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83778.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83779.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83779.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83780.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83780.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83781.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83781.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83782.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83782.000000] [simulator/INFO] Observation node on11 finished [LOG2PARSE](node:on11|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:278|totalUptime:4324.641280|seed:200|hint_added:0|timeDataRcv:6749.010320) +[on1:ON:(2) 83783.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83785.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83787.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83789.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83791.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83793.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83795.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83797.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83799.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83801.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83803.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83805.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83807.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83809.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83811.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83813.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83815.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83817.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83819.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83821.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83823.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83824.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83825.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83826.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83827.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83828.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83829.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83830.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83831.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83832.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83833.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83834.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83835.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83836.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83837.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83838.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83839.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83840.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83841.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83842.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83843.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83844.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83845.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83846.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83847.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83848.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83849.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83850.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83851.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83852.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83853.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83854.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83855.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83856.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83857.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83858.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83859.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83860.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83861.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83862.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83863.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83864.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83865.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83866.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83867.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83868.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83869.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83870.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83871.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83872.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83873.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83874.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83875.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83876.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83877.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83878.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83879.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83880.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83881.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83882.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83883.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83884.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83885.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83886.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83887.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83888.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83889.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83890.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83891.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83892.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83893.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83894.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83895.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83896.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83897.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83898.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83899.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83900.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83901.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83902.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83903.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83904.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83905.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83906.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83907.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83908.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83909.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83910.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83911.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83912.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83913.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83914.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83915.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83916.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83917.000000] [simulator/INFO] Observation node on1 finished [LOG2PARSE](node:on1|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1980|totalUptime:4321.010320|seed:200|hint_added:0|timeDataRcv:42285.010320) +[on12:ON:(13) 83926.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 83926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83927.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83930.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83933.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83936.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83939.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83942.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83945.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83948.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83951.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83954.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83957.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83960.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83963.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83966.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83969.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83972.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83975.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83978.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83981.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83984.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83987.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83990.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83993.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83995.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83996.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83997.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83998.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83999.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84000.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84001.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84002.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84003.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84004.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84005.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84006.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84008.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84010.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84011.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84012.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84014.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84015.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84016.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84018.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84106.000000] [simulator/INFO] Observation node on12 finished [LOG2PARSE](node:on12|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:206|totalUptime:4504.000000|seed:200|hint_added:1|timeDataRcv:6829.051600) +[on0:ON:(1) 84304.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 84304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84363.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84364.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84365.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84366.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84367.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84368.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84369.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84370.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84371.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84372.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84373.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84374.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84375.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84376.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84377.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84378.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84379.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84380.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84381.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84382.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84383.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84384.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84385.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84386.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84387.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84388.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84389.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84390.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84391.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84392.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84393.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84394.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84395.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84396.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84397.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84398.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84399.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84400.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84401.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84402.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84403.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84404.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84405.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84405.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 84405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84406.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84406.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84407.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84408.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84409.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84410.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84411.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84412.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84413.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84414.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84415.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84416.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84417.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84418.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84419.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84420.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84421.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84422.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84423.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84424.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84425.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84426.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84427.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84428.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84429.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84430.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84431.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84432.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84433.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84434.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84435.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84436.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84437.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84438.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84439.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84440.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84441.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84442.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84443.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84444.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84445.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84446.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84447.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84448.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84449.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84450.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84451.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84452.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84453.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84454.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84455.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84456.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84457.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84458.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84459.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84460.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84461.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84462.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84463.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84464.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84465.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84466.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84467.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84468.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84469.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84470.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84470.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84471.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84472.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84472.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84473.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84474.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84474.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84475.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84476.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84476.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84477.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84478.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84478.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84479.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84480.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84480.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84481.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84482.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84482.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84483.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84484.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84484.000000] [simulator/INFO] Observation node on0 finished [LOG2PARSE](node:on0|isSender:1|nSend:12|nWakeUp:24|nDataRcv:0|nSendFail:0|nRcvFail:0|totalUptime:4322.010320|seed:200|hint_added:0|timeDataRcv:-1.000000) +[on5:ON:(6) 84485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84585.000000] [simulator/INFO] Observation node on5 finished [LOG2PARSE](node:on5|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:657|totalUptime:4502.300000|seed:200|hint_added:1|timeDataRcv:12961.010320) +[on8:ON:(9) 84994.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 84994.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84995.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84996.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84997.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84998.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84999.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85000.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85001.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85002.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85003.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85004.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85005.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85006.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85007.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85008.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85009.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85010.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85011.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85012.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85013.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85014.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85015.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85016.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85017.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85018.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85019.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85020.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85021.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85022.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85023.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85024.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85025.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85026.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85027.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85028.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85029.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85030.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85031.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85032.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85033.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85034.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85035.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85036.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85037.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85038.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85039.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85040.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85042.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85044.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85046.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85048.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85050.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85052.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85054.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85056.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85058.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85060.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85062.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85064.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85066.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85068.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85070.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85072.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85074.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85076.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85078.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85080.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85082.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85084.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85086.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85088.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85090.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85092.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85094.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85096.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85098.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85100.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85102.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85104.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85106.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85108.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85110.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85112.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85114.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85116.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85116.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 85116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85117.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85118.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85119.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85120.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85121.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85122.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85123.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85124.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85125.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85126.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85127.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85128.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85129.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85130.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85131.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85132.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85133.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85134.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85135.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85136.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85137.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85138.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85139.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85140.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85141.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85142.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85143.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85144.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85145.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85146.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85147.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85148.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85149.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85150.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85151.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85152.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85153.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85154.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85155.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85156.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85157.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85158.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85159.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85160.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85161.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85162.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85163.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85164.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85165.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85166.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85167.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85168.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85169.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85170.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85171.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85172.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85173.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85173.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85174.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85174.000000] [simulator/INFO] Observation node on8 finished [LOG2PARSE](node:on8|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:1620|totalUptime:4502.000000|seed:200|hint_added:1|timeDataRcv:35670.620640) +[on2:ON:(3) 85175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85250.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85251.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85252.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85253.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85254.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85255.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85256.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85257.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85258.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85259.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85260.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85261.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85262.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85263.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85264.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85265.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85266.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85267.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85268.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85269.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85270.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85271.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85272.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85273.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85274.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85283.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85285.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85287.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85289.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85291.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85293.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85295.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85296.000000] [simulator/INFO] Observation node on2 finished [LOG2PARSE](node:on2|isSender:0|nSend:0|nWakeUp:26|nDataRcv:1|nSendFail:0|nRcvFail:359|totalUptime:4683.682240|seed:200|hint_added:3|timeDataRcv:6869.672240) +[on7:ON:(8) 85635.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 85635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85652.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85652.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 85652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85653.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85654.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85655.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85656.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85657.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85658.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85659.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85660.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85661.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85661.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85662.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85663.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85663.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85664.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85665.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85665.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85666.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85667.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85667.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85668.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85669.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85669.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85670.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85671.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85671.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85672.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85673.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85673.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85674.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85675.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85675.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85676.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85677.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85677.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85678.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85679.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85679.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85680.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85681.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85681.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85682.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85683.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85683.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85684.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85685.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85686.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85687.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85687.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85688.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85689.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85689.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85690.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85691.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85691.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85692.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85693.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85693.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85694.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85695.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85695.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85696.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85697.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85697.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85698.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85699.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85699.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85700.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85701.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85701.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85702.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85703.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85703.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85704.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85705.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85705.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85706.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85707.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85707.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85708.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85709.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85709.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85710.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85711.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85711.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85712.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85713.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85713.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85714.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85715.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85715.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85716.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85717.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85717.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85718.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85719.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85719.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85720.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85721.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85721.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85722.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85723.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85723.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85724.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85725.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85725.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85726.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85727.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85727.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85728.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85729.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85729.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85730.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85731.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85731.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85732.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85733.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85733.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85734.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85735.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85735.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85736.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85737.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85737.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85738.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85739.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85739.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85740.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85741.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85741.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85742.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85743.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85743.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85744.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85745.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85745.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85746.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85747.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85747.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85748.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85749.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85749.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85750.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85751.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85751.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85752.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85753.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85753.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85754.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85755.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85755.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85756.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85757.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85757.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85758.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85759.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85759.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85760.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85761.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85761.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85762.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85763.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85763.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85764.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85765.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85766.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85767.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85768.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85769.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85770.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85771.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85772.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85773.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85774.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85775.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85776.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85777.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85778.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85779.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85780.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85781.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85782.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85783.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85784.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85785.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85786.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85787.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85788.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85789.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85790.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85791.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85792.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85793.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85794.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85795.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85796.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85797.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85798.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85799.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85800.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85801.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85802.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85803.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85804.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85805.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85806.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85807.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85808.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85809.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85810.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85811.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85812.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85813.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85814.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85815.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85815.000000] [simulator/INFO] Observation node on7 finished [LOG2PARSE](node:on7|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:228|totalUptime:4503.000000|seed:200|hint_added:1|timeDataRcv:6789.030960) +[on9:ON:(10) 85816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85832.000000] [simulator/INFO] Observation node on9 finished [LOG2PARSE](node:on9|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1089|totalUptime:4320.010320|seed:200|hint_added:0|timeDataRcv:23145.010320) +[on6:ON:(7) 85982.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 85982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86039.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86040.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86041.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86042.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86043.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86044.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86045.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86046.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86047.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86048.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86049.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86050.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86051.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86052.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86053.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86054.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86055.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86056.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86057.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86058.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86059.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86060.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86061.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86062.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86063.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86064.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86065.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86066.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86067.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86068.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86069.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86070.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86071.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86072.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86073.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86074.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86075.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86076.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86077.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86078.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86079.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86080.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86081.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86082.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86083.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86084.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86085.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86086.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86087.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86088.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86089.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86090.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86091.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86092.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86093.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86093.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 86093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86094.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86094.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86095.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86096.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86096.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86097.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86098.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86098.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86099.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86100.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86100.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86101.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86102.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86102.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86103.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86104.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86104.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86105.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86106.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86106.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86107.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86108.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86108.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86109.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86110.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86110.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86111.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86112.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86112.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86113.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86114.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86114.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86115.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86116.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86116.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86117.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86118.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86118.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86119.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86120.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86120.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86121.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86122.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86122.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86123.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86124.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86124.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86125.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86126.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86126.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86127.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86128.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86128.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86129.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86130.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86130.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86131.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86132.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86132.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86133.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86134.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86134.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86135.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86136.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86136.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86137.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86138.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86138.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86139.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86140.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86140.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86141.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86142.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86142.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86143.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86144.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86144.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86145.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86146.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86146.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86147.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86148.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86148.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86149.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86150.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86150.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86151.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86152.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86152.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86153.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86154.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86154.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86155.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86156.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86156.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86157.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86158.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86158.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86159.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86160.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86160.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86161.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86162.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86162.000000] [simulator/INFO] Observation node on6 finished [LOG2PARSE](node:on6|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1076|totalUptime:4356.010320|seed:200|hint_added:0|timeDataRcv:20732.010320) +[on4:ON:(5) 86163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86267.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86268.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86269.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86270.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86271.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86272.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86273.000000] [simulator/INFO] Observation node on4 finished [LOG2PARSE](node:on4|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:693|totalUptime:4618.999680|seed:200|hint_added:2|timeDataRcv:13002.630960) +[86273.000000] [surf_energy/INFO] Total energy consumption: 26056.981784 Joules (used hosts: 0.000000 Joules; unused/idle hosts: 26056.981784) +[86273.000000] [simulator/INFO] Simulation took 86273.000000s +[86273.000000] [simulator/INFO] The simulated platform file is available in "platform.xml" +[86273.000000] [surf_energy/INFO] Energy consumption of host on0: 2041.018784 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on1: 1870.760836 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on10: 2313.766672 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on11: 1949.569928 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on12: 2193.529876 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on2: 2169.516228 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on3: 1829.806708 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on4: 2181.719788 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on5: 1948.209792 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on6: 1768.410836 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on7: 2072.249792 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on8: 1964.411708 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on9: 1754.010836 Joules diff --git a/results/scheduler/j2 b/results/scheduler/j2 new file mode 100644 index 0000000..db9fffb --- /dev/null +++ b/results/scheduler/j2 @@ -0,0 +1,54364 @@ +export LD_LIBRARY_PATH=:./libs/simgrid/build/lib && ./simulator 10 --cfg=network/bandwidth-factor:1.05 --cfg=network/model:CM02 -–cfg=network/crosstraffic:0 +[0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/bandwidth-factor' to '1.05' +[0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'CM02' +[0.000000] [simulator/INFO] ------------------------------------------------- +[0.000000] [simulator/INFO] Sarting loosely coupled data dissemination experiments +[0.000000] [simulator/INFO] ------------------------------------------------- +[on0:ON:(1) 0.000000] [simulator/INFO] Deploying observation node on0 +[on0:ON:(1) 0.000000] [simulator/INFO] on0 is sleeping +[on1:ON:(2) 0.000000] [simulator/INFO] Deploying observation node on1 +[on1:ON:(2) 0.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 0.000000] [simulator/INFO] Deploying observation node on2 +[on2:ON:(3) 0.000000] [simulator/INFO] on2 is sleeping +[on3:ON:(4) 0.000000] [simulator/INFO] Deploying observation node on3 +[on3:ON:(4) 0.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 0.000000] [simulator/INFO] Deploying observation node on4 +[on4:ON:(5) 0.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 0.000000] [simulator/INFO] Deploying observation node on5 +[on5:ON:(6) 0.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 0.000000] [simulator/INFO] Deploying observation node on6 +[on6:ON:(7) 0.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 0.000000] [simulator/INFO] Deploying observation node on7 +[on7:ON:(8) 0.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 0.000000] [simulator/INFO] Deploying observation node on8 +[on8:ON:(9) 0.000000] [simulator/INFO] on8 is sleeping +[on9:ON:(10) 0.000000] [simulator/INFO] Deploying observation node on9 +[on9:ON:(10) 0.000000] [simulator/INFO] on9 is sleeping +[on10:ON:(11) 0.000000] [simulator/INFO] Deploying observation node on10 +[on10:ON:(11) 0.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 0.000000] [simulator/INFO] Deploying observation node on11 +[on11:ON:(12) 0.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 0.000000] [simulator/INFO] Deploying observation node on12 +[on12:ON:(13) 0.000000] [simulator/INFO] on12 is sleeping +[on7:ON:(8) 129.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 130.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 131.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 132.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 133.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 134.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 135.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 136.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 137.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 138.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 139.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 140.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 141.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 142.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 143.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 144.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 145.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 146.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 147.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 148.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 149.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 150.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 151.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 152.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 153.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 154.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 155.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 156.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 157.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 158.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 159.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 160.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 161.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 162.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 163.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 164.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 165.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 166.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 167.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 168.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 169.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 170.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 171.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 172.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 173.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 174.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 175.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 176.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 177.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 178.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 179.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 180.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 181.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 182.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 183.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 184.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 185.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 186.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 187.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 188.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 189.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 190.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 191.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 192.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 193.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 194.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 195.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 196.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 197.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 198.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 199.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 200.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 201.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 202.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 203.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 204.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 205.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 206.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 207.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 208.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 209.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 210.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 211.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 212.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 213.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 214.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 215.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 216.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 217.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 218.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 219.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 220.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 221.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 222.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 223.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 224.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 225.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 226.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 227.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 228.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 229.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 230.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 231.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 232.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 233.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 234.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 235.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 236.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 237.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 238.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 239.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 240.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 241.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 242.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 243.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 244.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 245.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 246.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 247.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 248.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 249.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 250.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 251.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 252.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 253.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 254.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 255.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 256.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 257.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 258.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 259.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 260.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 261.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 262.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 263.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 264.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 265.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 266.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 267.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 268.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 269.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 270.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 271.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 272.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 273.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 274.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 275.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 276.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 277.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 278.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 279.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 280.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 281.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 282.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 283.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 284.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 285.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 286.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 287.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 288.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 289.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 290.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 291.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 292.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 293.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 294.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 295.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 296.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 297.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 298.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 299.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 300.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 301.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 302.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 303.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 304.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 305.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 306.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 307.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 308.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 309.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 309.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 863.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 864.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 865.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 866.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 867.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 868.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 869.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 870.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 871.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 872.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 873.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 874.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 875.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 876.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 877.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 878.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 879.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 880.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 881.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 882.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 883.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 884.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 885.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 886.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 887.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 888.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 889.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 890.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 891.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 892.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 893.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 894.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 895.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 896.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 897.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 898.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 899.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 900.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 901.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 902.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 903.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 904.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 905.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 906.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 907.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 908.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 909.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 910.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 911.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 912.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 913.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 914.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 915.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 916.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 917.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 918.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 919.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 920.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 921.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 922.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 923.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 924.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 925.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 926.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 927.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 928.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 929.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 930.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 931.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 932.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 933.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 934.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 935.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 936.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 937.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 938.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 939.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 940.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 941.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 942.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 943.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 944.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 945.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 946.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 947.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 948.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 949.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 950.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 951.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 952.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 953.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 954.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 955.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 956.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 957.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 958.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 959.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 960.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 961.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 962.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 963.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 964.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 965.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 966.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 967.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 968.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 969.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 970.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 971.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 972.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 973.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 974.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 975.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 976.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 977.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 978.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 979.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 980.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 981.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 982.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 983.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 984.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 985.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 986.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 987.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 988.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 989.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 990.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 991.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 992.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 993.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 994.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 995.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 996.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 997.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 998.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 999.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1000.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1001.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1002.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1003.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1004.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1005.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1006.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1007.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1008.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1009.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1010.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1011.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1012.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1013.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1014.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1015.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1016.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1017.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1018.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1019.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1020.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1021.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1022.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1023.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1024.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1025.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1026.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1027.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1028.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1029.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1030.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1031.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1032.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1033.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1034.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1035.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1036.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1037.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1038.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1039.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1040.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1041.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1042.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1043.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1043.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 1158.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 1159.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1160.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1161.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1162.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1163.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1164.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1165.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1166.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1167.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1168.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1169.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1170.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1171.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1172.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1173.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1174.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1175.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1176.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1177.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1178.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1179.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1180.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1181.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1182.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1183.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1184.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1185.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1186.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1187.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1188.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1189.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1190.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1191.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1192.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1193.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1194.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1195.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1196.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1197.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1198.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1199.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1200.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1201.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1202.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1203.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1204.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1205.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1206.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1207.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1208.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1209.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1210.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1211.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1212.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1213.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1214.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1215.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1216.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1217.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1218.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1219.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1220.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1221.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1222.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1223.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1224.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1225.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1226.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1227.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1228.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1229.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1230.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1231.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1232.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1233.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1234.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1235.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1236.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1237.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1238.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1239.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1240.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1241.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1242.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1243.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1244.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1245.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1246.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1247.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1248.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1249.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1250.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1251.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1252.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1253.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1254.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1255.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1256.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1257.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1258.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1259.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1260.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1261.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1262.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1263.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1264.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1265.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1266.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1267.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1268.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1269.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1270.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1271.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1272.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1273.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1274.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1275.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1276.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1277.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1278.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1279.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1280.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1281.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1282.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1283.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1284.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1285.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1286.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1287.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1288.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1289.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1290.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1291.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1292.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1293.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1294.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1295.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1296.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1297.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1298.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1299.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1300.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1301.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1302.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1303.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1304.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1305.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1306.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1307.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1308.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1309.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1310.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1311.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1312.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1313.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1314.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1315.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1316.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1317.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1318.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1319.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1320.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1321.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1322.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1323.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1324.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1325.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1326.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1327.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1328.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1329.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1330.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1331.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1332.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1333.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1334.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1335.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1336.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1337.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1338.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1338.000000] [simulator/INFO] on11 is sleeping +[on1:ON:(2) 1388.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 1389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1440.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1441.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1442.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1443.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1444.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1445.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1446.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1447.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1448.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1449.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1450.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1451.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1452.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1453.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1454.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1455.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1456.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1457.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1458.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1459.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1460.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1461.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1462.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1463.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1464.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1465.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1466.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1467.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1468.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1469.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1470.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1471.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1472.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1473.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1474.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1475.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1476.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1477.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1478.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1479.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1480.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1481.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1482.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1483.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1484.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1485.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1486.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1487.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1488.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1489.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1490.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1491.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1492.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1493.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1494.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1495.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1496.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1497.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1498.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1499.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1500.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1501.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1502.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1503.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1504.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1505.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1506.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1507.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1508.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1509.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1510.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1511.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1512.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1513.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1514.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1515.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1516.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1517.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1518.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1519.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1520.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1521.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1522.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1523.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1524.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1525.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1526.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1527.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1528.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1529.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1530.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1531.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1532.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1533.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1534.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1535.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1536.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1537.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1538.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1539.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1540.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1541.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1542.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1543.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1544.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1545.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1546.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1547.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1548.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1549.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1550.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1551.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1552.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1553.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1554.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1555.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1556.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1557.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1558.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1559.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1560.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1561.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1562.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1563.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1564.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1565.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1566.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1567.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1568.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1568.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 1613.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 1614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1629.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1630.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1631.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1632.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1633.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1634.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1635.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1636.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1637.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1638.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1639.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1640.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1641.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1692.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1693.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1694.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1695.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1696.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1697.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1698.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1699.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1700.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1701.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1702.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1703.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1704.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1705.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1706.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1707.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1708.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1709.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1710.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1711.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1712.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1713.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1714.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1715.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1716.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1717.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1718.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1719.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1720.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1721.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1722.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1723.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1724.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1725.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1726.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1727.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1728.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1730.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1732.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1793.000000] [simulator/INFO] on6 is sleeping +[on4:ON:(5) 1866.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 1867.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1868.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1869.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1870.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1871.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1872.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1873.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1874.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1875.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1876.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1877.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1878.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1879.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1880.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1881.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1882.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1883.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1884.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1885.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1886.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1887.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1888.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1889.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1890.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1891.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1892.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1893.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1894.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1895.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1896.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1897.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1898.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1899.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1900.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1901.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1902.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1903.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1904.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1905.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1906.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1907.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1908.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1909.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1910.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1911.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1912.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1913.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1914.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1915.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1916.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1917.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1918.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1919.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1920.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1921.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1922.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1923.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1924.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1925.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1926.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1927.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1928.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1929.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1930.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1931.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1932.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1933.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1934.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1934.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 1935.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1935.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1936.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1936.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1937.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1937.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1938.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1938.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1939.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1939.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1940.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1940.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1941.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1941.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1942.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1942.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1943.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1943.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1944.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1944.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1945.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1945.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1946.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1946.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1947.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1947.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1948.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1948.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1949.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1949.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1950.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1950.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1951.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1951.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1952.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1952.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1953.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1953.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1954.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1954.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1955.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1955.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1956.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1956.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1957.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1957.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1958.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1958.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1959.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1959.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1960.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1960.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1961.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1961.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1962.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1962.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1963.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1963.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1964.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1964.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1965.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1965.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1966.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1966.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1967.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1967.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1968.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1968.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1969.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1969.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1970.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1970.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1971.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1971.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1972.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1972.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1973.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1973.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1974.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1974.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1975.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1975.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1976.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1976.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1977.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1977.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1978.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1978.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1979.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1979.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1980.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1980.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1981.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1981.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1982.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1982.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1983.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1983.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1984.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1984.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1985.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1985.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1986.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1986.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1987.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1987.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1988.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1988.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1989.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1989.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1990.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1990.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1991.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1991.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1992.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1992.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1993.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1993.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1994.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1994.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1995.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1995.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1996.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1996.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1997.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1997.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1998.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1998.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1999.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1999.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2000.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2000.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2001.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2001.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2002.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2002.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2003.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2003.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2004.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2004.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2005.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2005.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2006.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2006.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2007.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2007.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2008.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2008.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2009.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2009.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2010.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2010.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2011.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2011.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2012.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2012.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2013.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2013.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2014.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2014.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2015.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2015.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2016.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2016.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2017.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2017.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2018.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2018.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2019.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2019.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2020.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2020.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2021.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2021.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2022.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2022.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2023.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2023.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2024.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2024.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2025.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2025.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2026.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2026.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2027.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2027.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2028.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2028.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2029.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2029.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2030.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2030.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2031.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2031.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2032.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2032.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2033.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2033.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2034.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2034.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2035.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2035.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2036.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2036.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2037.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2037.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2038.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2038.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2039.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2039.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2040.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2040.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2041.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2041.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2042.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2042.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2043.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2043.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2044.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2044.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2045.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2045.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2046.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2046.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 2046.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2047.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2048.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2049.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2050.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2051.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2052.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2053.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2054.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2055.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2056.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2057.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2058.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2059.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2060.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2061.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2062.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2063.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2064.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2065.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2066.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2067.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2068.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2069.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2070.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2071.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2072.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2073.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2074.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2075.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2076.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2077.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2078.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2079.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2080.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2081.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2082.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2083.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2084.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2085.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2086.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2087.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2088.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2089.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2090.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2091.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2092.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2093.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2094.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2095.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2096.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2097.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2098.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2099.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2100.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2101.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2102.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2103.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2104.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2105.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2106.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2107.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2108.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2109.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2110.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2111.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2112.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2113.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2114.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2114.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 2225.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 2226.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2227.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2228.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2229.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2230.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2231.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2232.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2233.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2234.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2235.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2236.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2237.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2238.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2239.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2240.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2241.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2242.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2243.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2244.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2245.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2246.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2247.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2248.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2249.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2250.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2250.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 2251.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2251.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2252.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2252.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2253.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2253.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2254.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2254.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2255.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2255.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2256.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2256.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2257.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2257.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2258.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2258.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2259.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2259.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2260.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2260.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2261.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2261.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2262.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2262.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2263.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2263.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2264.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2264.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2265.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2265.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2266.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2266.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2267.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2267.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2268.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2268.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2269.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2269.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2270.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2270.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2271.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2271.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2272.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2272.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2273.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2273.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2274.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2274.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2275.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2275.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2276.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2276.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2277.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2277.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2278.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2278.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2279.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2279.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2280.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2280.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2281.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2281.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2282.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2282.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2283.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2283.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2284.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2284.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2285.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2285.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2286.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2286.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2287.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2287.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2288.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2288.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2289.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2289.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2290.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2290.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2291.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2291.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2292.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2292.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2293.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2293.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2294.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2294.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2295.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2295.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2296.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2296.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2297.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2297.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2298.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2298.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2299.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2299.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2300.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2300.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2301.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2301.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2302.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2302.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2303.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2303.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2304.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2304.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2305.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2305.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2306.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2306.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2307.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2307.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2308.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2308.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2309.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2309.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2310.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2310.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2311.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2311.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2312.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2312.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2313.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2313.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2314.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2314.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2315.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2315.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2316.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2316.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2317.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2317.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2318.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2318.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2319.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2319.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2320.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2320.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2321.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2321.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2322.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2322.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2323.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2323.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2324.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2324.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2325.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2325.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2326.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2326.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2327.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2327.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2328.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2328.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2329.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2329.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2330.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2330.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2331.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2331.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2332.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2332.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2333.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2333.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2334.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2334.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2335.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2335.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2336.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2336.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2337.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2337.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2338.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2338.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2339.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2339.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2340.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2340.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2341.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2341.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2342.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2342.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2343.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2343.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2344.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2344.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2345.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2345.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2346.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2346.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2347.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2347.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2348.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2348.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2349.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2349.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2350.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2350.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2351.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2351.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2352.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2352.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2353.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2353.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2354.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2354.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2355.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2355.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2356.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2356.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2357.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2357.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2358.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2358.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2359.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2359.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2360.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2360.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2361.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2361.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2362.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2362.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2363.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2363.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2364.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2364.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2365.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2365.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2366.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2366.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2367.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2367.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2368.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2368.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2369.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2369.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2370.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2370.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2371.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2371.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2372.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2372.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2373.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2373.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2374.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2374.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2375.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2375.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2376.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2376.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2377.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2377.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2378.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2378.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2379.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2379.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2380.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2380.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2381.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2381.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2382.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2382.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2383.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2383.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2384.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2384.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2385.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2385.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2386.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2386.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2387.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2387.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2388.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2388.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2389.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2389.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2390.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2390.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2391.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2391.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2392.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2392.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2393.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2393.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2394.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2394.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2395.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2395.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2396.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2396.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2397.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2397.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2398.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2398.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2399.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2399.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2400.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2400.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2401.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2401.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2402.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2402.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2403.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2403.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2404.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2404.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2405.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2405.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2405.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 2406.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2407.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2408.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2409.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2410.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2411.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2412.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2413.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2414.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2415.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2416.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2417.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2418.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2419.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2420.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2421.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2422.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2423.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2424.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2425.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2426.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2427.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2428.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2429.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2430.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2430.000000] [simulator/INFO] on12 is sleeping +[on0:ON:(1) 2593.000000] [simulator/INFO] on0 wakes up +[on10:ON:(11) 2598.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 add a new hint at 6709.000000 for a duration of 180.000000 +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 2598.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 2598.310320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 received data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 received a hint along with data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 2638.620640] [simulator/INFO] on0 sent data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2639.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2640.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2641.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2641.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2642.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2643.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2644.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2644.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2645.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2646.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2647.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2647.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2648.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2649.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2650.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2650.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2651.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2652.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2653.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2653.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2654.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2655.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2656.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2656.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2657.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2658.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2659.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2659.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2660.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2661.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2662.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2662.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2663.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2664.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2665.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2665.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2666.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2667.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2668.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2668.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2669.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2670.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2671.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2671.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2672.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2673.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2674.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2674.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2675.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2676.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2677.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2677.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2678.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2679.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2680.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2680.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2681.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2682.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2683.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2683.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2684.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2685.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2686.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2686.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2687.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2688.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2689.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2689.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2690.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2691.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2692.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2692.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2693.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2694.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2695.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2695.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2696.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2697.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2698.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2698.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2699.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2700.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2701.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2701.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2702.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2703.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2704.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2704.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2705.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2706.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2707.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2707.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2708.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2709.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2710.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2710.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2711.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2712.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2713.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2713.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2714.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2715.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2716.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2716.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2717.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2718.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2719.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2719.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2720.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2721.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2722.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2722.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2723.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2724.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2725.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2725.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2726.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2727.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2728.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2728.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2729.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2730.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2731.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2731.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2732.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2733.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2734.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2734.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2735.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2736.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2737.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2737.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2738.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2739.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2740.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2740.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2741.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2742.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2743.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2743.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2744.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2745.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2746.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2746.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2747.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2748.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2749.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2749.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2750.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2751.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2752.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2752.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2753.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2754.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2755.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2755.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2756.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2757.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2758.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2758.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2759.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2760.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2761.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2761.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2762.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2763.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2764.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2764.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2765.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2766.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2767.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2767.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2768.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2769.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2770.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2770.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2771.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2772.620640] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 2773.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 2773.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2773.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2774.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2775.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2776.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2776.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2777.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2778.620640] [simulator/INFO] on10 is sleeping +[on8:ON:(9) 2802.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 2803.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2804.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2805.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2806.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2807.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2808.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2809.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2810.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2811.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2812.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2813.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2814.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2815.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2816.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2817.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2818.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2819.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2820.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2821.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2822.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2823.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2824.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2825.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2826.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2827.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2828.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2829.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2830.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2831.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2832.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2833.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2834.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2835.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2836.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2837.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2838.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2839.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2840.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2841.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2842.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2843.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2844.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2845.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2846.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2847.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2848.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2849.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2850.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2851.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2852.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2853.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2854.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2855.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2856.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2857.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2858.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2859.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2860.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2861.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2862.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2863.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2864.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2865.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2866.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2867.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2868.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2869.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2870.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2871.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2872.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2873.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2874.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2875.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2876.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2877.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2878.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2879.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2880.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2881.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2882.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2883.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2884.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2885.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2886.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2887.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2888.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2889.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2890.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2891.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2892.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2893.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2894.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2895.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2896.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2897.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2898.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2899.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2900.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2900.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 2901.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2901.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2902.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2902.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2903.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2903.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2904.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2904.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2905.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2905.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2906.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2906.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2907.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2907.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2908.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2908.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2909.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2909.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2910.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2910.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2911.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2911.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2912.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2912.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2913.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2913.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2914.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2914.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2915.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2915.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2916.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2916.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2917.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2917.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2918.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2918.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2919.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2919.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2920.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2920.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2921.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2921.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2922.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2922.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2923.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2923.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2924.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2924.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2925.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2925.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2926.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2926.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2927.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2927.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2928.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2928.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2929.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2929.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2930.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2930.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2931.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2931.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2932.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2932.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2933.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2933.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2934.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2934.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2935.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2935.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2936.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2936.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2937.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2937.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2938.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2938.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2939.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2939.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2940.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2940.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2941.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2941.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2942.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2942.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2943.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2943.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2944.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2944.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2945.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2945.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2946.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2946.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2947.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2947.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2948.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2948.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2949.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2949.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2950.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2950.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2951.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2951.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2952.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2952.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2953.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2953.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2954.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2954.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2955.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2955.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2956.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2956.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2957.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2957.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2958.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2959.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2959.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2960.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2961.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2961.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2962.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2963.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2963.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2964.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2965.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2965.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2966.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2967.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2967.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2968.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2969.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2969.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2970.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2970.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2971.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2971.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2972.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2972.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2973.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2973.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2974.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2974.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2975.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2975.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2976.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2976.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2977.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2977.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2978.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2978.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2979.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2979.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2980.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2980.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2981.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2981.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2982.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2982.000000] [simulator/INFO] on8 is sleeping +[on9:ON:(10) 2982.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2983.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2984.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2985.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2986.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2987.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2988.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2989.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2990.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2991.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2992.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2993.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2994.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2995.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2996.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2997.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2998.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2999.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3000.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3001.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3002.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3003.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3004.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3005.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3006.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3007.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3008.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3009.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3010.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3011.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3012.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3013.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3014.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3015.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3016.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3017.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3018.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3019.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3020.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3021.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3022.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3023.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3024.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3025.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3026.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3027.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3028.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3029.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3030.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3031.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3032.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3033.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3034.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3035.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3036.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3037.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3038.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3039.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3040.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3041.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3042.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3043.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3044.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3045.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3046.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3047.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3048.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3049.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3050.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3051.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3052.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3053.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3054.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3055.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3056.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3057.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3058.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3059.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3060.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3061.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3062.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3063.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3064.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3065.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3066.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3067.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3068.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3069.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3070.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3071.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3072.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3073.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3074.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3075.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3076.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3077.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3078.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3079.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3080.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3080.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 3628.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 3629.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3630.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3631.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 3631.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 3631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 3632.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3632.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 3632.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 3632.010000] [simulator/INFO] on10 forward a hint successfully +[on10:ON:(11) 3632.010000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3632.010000] [simulator/INFO] on2 received a forwarded hint successfully +[on2:ON:(3) 3632.010000] [simulator/INFO] on2 add a new hint at 6709.000000 for a duration of 180.000000 +[on10:ON:(11) 3633.010000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3633.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3633.010000] [simulator/INFO] on2 try to forward a hint +[on10:ON:(11) 3633.010000] [simulator/INFO] on10 try to forward a hint +[on2:ON:(3) 3633.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3634.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3634.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3634.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3636.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3636.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3636.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3637.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3637.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3638.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3639.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3639.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3639.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3641.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3641.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3641.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3642.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3642.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3642.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3644.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3644.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3644.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3645.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3645.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3646.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3647.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3647.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3647.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3649.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3649.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3649.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3650.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3650.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3650.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3652.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3652.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3652.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3653.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3653.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3654.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3655.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3655.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3655.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3657.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3657.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3657.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3658.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3658.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3658.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3660.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3660.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3660.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3661.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3661.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3662.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3663.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3663.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3663.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3665.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3665.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3665.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3666.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3666.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3666.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3668.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3668.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3668.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3669.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3669.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3670.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3671.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3671.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3671.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3673.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3673.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3673.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3674.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3674.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3674.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3676.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3676.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3676.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3677.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3677.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3678.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3679.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3679.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3679.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3681.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3681.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3681.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3682.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3682.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3682.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3684.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3684.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3684.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3685.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3685.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3686.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3687.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3687.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3687.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3689.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3689.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3689.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3690.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3690.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3690.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3692.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3692.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3692.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3693.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3693.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3694.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3695.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3695.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3695.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3697.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3697.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3697.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3698.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3698.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3698.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3700.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3700.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3700.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3701.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3701.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3702.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3703.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3703.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3703.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3705.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3705.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3705.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3706.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3706.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3706.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3708.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3708.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3708.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3709.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3709.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3710.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3711.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3711.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3711.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3713.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3713.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3713.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3714.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3714.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3714.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3716.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3716.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3716.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3717.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3717.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3718.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3719.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3719.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3719.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3721.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3721.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3721.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3722.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3722.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3722.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3724.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3724.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3724.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3725.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3725.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3726.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3727.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3727.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3727.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3729.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3729.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3729.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3730.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3730.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3730.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3732.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3732.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3732.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3733.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3733.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3734.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3735.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3735.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3735.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3737.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3737.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3737.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3738.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3738.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3738.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3740.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3740.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3740.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3741.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3741.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3742.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3743.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3743.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3743.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3745.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3745.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3745.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3746.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3746.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3746.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3748.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3748.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3748.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3749.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3749.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3750.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3751.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3751.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3751.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3753.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3753.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3753.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3754.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3754.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3754.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3756.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3756.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3756.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3757.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3757.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3758.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3759.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3759.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3759.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3761.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3761.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3761.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3762.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3762.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3762.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3764.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3764.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3764.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3765.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3765.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3766.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3767.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3767.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3767.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3769.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3769.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3769.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3770.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3770.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3770.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3772.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3772.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3772.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3773.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3773.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3774.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3775.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3775.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3775.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3777.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3777.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3777.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3778.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3778.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3778.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3780.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3780.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3780.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3781.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3781.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3782.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3783.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3783.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3783.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3785.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3785.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3785.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3786.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3786.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3786.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3788.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3788.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3788.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3789.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3789.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3790.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3791.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3791.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3791.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3793.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3793.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3793.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3794.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3794.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3794.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3796.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3796.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3796.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3797.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3797.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3798.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3799.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3799.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3799.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3801.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3801.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3801.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3802.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3802.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3802.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3804.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3804.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3804.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3805.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3805.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3806.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3807.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3807.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3807.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3808.010000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 3811.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 3812.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 3840.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 3841.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3842.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3843.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3844.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3845.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3846.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3847.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3848.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3849.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3850.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3851.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3852.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3853.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3854.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3855.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3856.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3857.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3858.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3859.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3860.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3861.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3862.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3863.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3864.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3865.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3866.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3867.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3868.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3869.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3870.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3871.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3872.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3873.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3874.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3875.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3876.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3877.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3878.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3879.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3880.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3881.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3882.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3883.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3884.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3885.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3886.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3887.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3888.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3889.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3890.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3891.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3892.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3893.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3894.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3895.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3896.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3897.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3898.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3899.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3900.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3901.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3902.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3903.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3904.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3905.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3906.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3907.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3908.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3909.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3910.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3911.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3912.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3913.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3914.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3915.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3916.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3917.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3918.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3919.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3920.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3921.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3922.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3923.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3924.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3925.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3926.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3927.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3928.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3929.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3930.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3931.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3932.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3933.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3934.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3935.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3936.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3937.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3938.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3939.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3940.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3941.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3942.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3943.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3944.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3945.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3946.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3947.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3948.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3949.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3950.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3951.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3952.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3953.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3954.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3955.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3956.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3957.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3959.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3961.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3963.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3965.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3967.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3969.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3970.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3971.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3972.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3973.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3974.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3975.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3976.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3977.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3978.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3979.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3980.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3981.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3982.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3983.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3984.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3985.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3986.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3987.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3988.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3989.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3990.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3991.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3992.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3993.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3994.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3995.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3996.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3997.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3998.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3999.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4000.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4001.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4002.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4003.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4004.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4005.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4006.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4007.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4008.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4009.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4010.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4011.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4012.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4013.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4014.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4015.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4016.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4017.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4018.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4019.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4020.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4020.000000] [simulator/INFO] on9 is sleeping +[on1:ON:(2) 4259.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 4260.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4261.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4262.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4263.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4264.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4265.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4266.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4267.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4268.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4269.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4270.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4271.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4272.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4273.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4274.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4275.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4276.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4277.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4278.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4279.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4280.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4281.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4282.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4283.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4284.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4285.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4286.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4287.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4288.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4289.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4290.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4291.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4292.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4293.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4294.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4295.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4296.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4297.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4298.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4299.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4300.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4301.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4302.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4303.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4304.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4305.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4306.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4307.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4308.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4309.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4310.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4311.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4312.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4313.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4314.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4315.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4316.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4317.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4318.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4319.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4320.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4321.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4322.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4323.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4324.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4325.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4326.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4327.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4328.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4329.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4330.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4331.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4332.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4333.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4334.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4335.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4336.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4439.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 4641.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 4642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4692.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4693.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4694.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4695.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4696.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4697.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4698.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4699.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4700.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4701.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4702.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4703.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4704.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4705.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4706.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4707.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4708.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4709.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4710.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4711.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4712.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4713.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4714.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4715.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4716.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4717.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4718.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4719.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4720.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4721.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4722.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4723.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4724.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4725.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4726.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4727.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4728.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4730.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4732.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4794.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4795.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4796.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4797.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4798.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4799.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4800.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4801.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4802.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4803.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4804.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4805.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4806.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4807.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4808.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4809.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4810.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4811.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4812.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4813.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4814.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4815.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4816.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4817.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4818.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4819.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4820.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4821.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4821.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 4944.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 4945.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4946.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4947.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4948.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4949.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4950.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4951.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4952.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4953.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4954.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4955.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4956.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4957.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4958.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4959.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4960.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4961.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4962.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4963.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4964.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4965.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4966.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4967.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4968.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4969.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4970.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4971.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4972.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4973.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4974.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4975.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4976.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4977.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4978.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4979.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4980.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4981.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4982.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4983.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4984.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4985.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4986.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4987.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4988.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4989.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4990.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4991.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4992.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4993.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4994.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4995.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4996.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4997.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4998.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4999.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5000.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5001.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5002.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5003.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5004.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5005.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5006.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5007.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5008.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5009.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5010.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5011.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5012.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5013.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5014.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5015.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5016.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5017.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5018.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5019.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5020.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5021.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5022.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5023.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5024.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5025.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5026.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5027.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5028.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5029.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5030.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5031.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5032.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5033.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5034.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5035.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5036.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5037.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5038.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5039.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5040.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5041.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5042.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5043.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5044.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5045.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5046.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5047.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5048.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5049.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5050.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5051.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5052.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5053.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5054.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5055.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5056.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5057.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5058.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5059.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5060.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5061.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5062.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5063.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5064.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5065.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5066.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5067.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5068.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5069.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5070.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5071.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5072.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5073.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5074.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5075.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5076.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5077.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5078.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5079.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5080.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5081.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5082.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5083.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5084.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5085.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5086.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5087.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5088.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5089.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5090.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5091.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5092.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5093.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5094.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5095.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5096.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5097.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5098.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5099.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5100.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5101.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5102.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5103.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5104.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5105.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5106.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5107.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5108.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5109.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5110.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5111.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5112.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5113.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5114.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5115.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5116.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5117.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5118.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5119.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5120.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5121.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5122.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5123.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5124.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5124.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 6411.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 6412.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6413.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6414.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6415.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6416.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6417.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6418.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6419.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6420.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6421.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6422.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6423.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6424.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6425.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6426.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6427.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6428.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6429.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6430.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6431.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6432.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6433.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6434.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6435.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6436.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6437.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6438.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6439.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6440.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6441.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6442.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6443.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6444.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6445.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6446.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6447.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6448.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6449.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6450.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6451.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6452.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6453.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6454.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6455.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6456.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6457.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6458.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6459.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6460.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6461.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6462.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6463.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6464.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6465.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6466.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6467.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6468.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6469.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6470.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6471.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6472.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6473.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6474.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6475.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6476.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6477.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6478.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6479.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6480.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6481.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6482.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6483.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6484.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6485.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6486.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6487.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6488.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6489.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6490.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6491.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6492.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6493.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6494.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6495.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6496.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6497.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6498.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6499.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6500.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6501.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6502.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6503.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6504.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6505.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6506.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6507.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6508.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6509.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6510.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6511.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6512.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6513.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6514.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6515.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6516.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6517.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6518.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6519.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6520.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6521.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6522.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6523.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6524.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6525.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6526.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6527.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6528.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6529.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6530.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6531.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6532.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6533.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6534.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6535.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6536.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6537.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6538.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6539.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6540.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6541.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6542.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6543.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6544.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6545.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6546.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6547.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6548.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6549.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6550.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6551.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6552.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6553.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6554.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6555.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6556.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6557.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6558.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6559.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6560.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6561.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6562.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6563.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6564.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6565.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6566.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6567.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6568.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6569.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6570.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6571.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6572.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6573.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6574.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6575.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6576.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6577.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6578.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6579.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6580.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6581.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6582.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6583.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6584.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6585.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6586.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6587.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6588.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6589.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6590.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6591.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6591.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 6611.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 6612.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6613.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6614.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6615.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6616.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6617.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6618.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6619.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6620.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6621.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6622.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6623.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6624.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6625.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6626.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6627.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6628.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6629.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6630.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6631.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6632.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6633.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6634.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6635.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6636.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6637.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6638.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6639.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6640.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6641.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6642.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6643.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6644.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6645.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6646.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6647.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6648.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6649.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6650.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6651.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6652.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6653.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6654.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6655.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6656.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6657.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6658.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6659.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6660.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6661.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6662.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6663.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6664.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6665.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6666.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6667.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6668.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6669.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6670.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6671.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6672.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6673.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6674.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6675.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6676.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6677.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6678.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6679.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6680.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6681.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6682.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6683.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6684.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6685.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6686.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6687.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6688.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6689.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6690.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6691.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6692.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6693.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6694.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6695.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6696.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6697.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6698.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6699.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6700.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6701.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6701.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 6702.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6702.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6703.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6703.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6704.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6704.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6705.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6705.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6706.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6706.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6707.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6707.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6708.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6708.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6709.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6709.000000] [simulator/INFO] on7 could not receive any data +[on0:ON:(1) 6709.000000] [simulator/INFO] on0 wakes up +[on2:ON:(3) 6709.000000] [simulator/INFO] on2 wakes up +[on10:ON:(11) 6709.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 6709.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6710.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6710.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6710.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6711.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6711.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6711.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6712.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6712.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6712.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6713.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6713.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6713.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6714.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6714.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6714.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6715.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6715.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6715.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6716.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6716.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6716.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6717.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6717.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6717.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6718.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6718.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6718.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6719.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6719.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6719.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6720.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6720.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6720.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6721.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6721.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6721.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6722.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6722.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6722.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6723.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6723.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6723.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6724.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6724.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6724.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6725.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6725.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6725.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6726.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6726.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6726.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6727.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6727.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6727.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6728.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6728.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6728.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6729.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6729.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6729.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6730.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6730.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6730.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6731.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6731.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6731.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6732.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6732.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6732.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6733.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6733.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6733.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6734.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6734.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6734.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6735.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6735.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6735.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6736.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6736.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6736.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6737.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6737.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6737.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6738.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6738.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6738.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6739.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6739.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6739.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6740.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6740.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6740.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6741.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6741.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6741.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6742.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6742.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6742.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6743.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6743.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6743.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6744.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6744.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6744.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6745.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6745.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6745.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6746.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6746.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6746.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6747.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6747.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6747.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6748.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6748.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6748.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6749.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6749.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6749.000000] [simulator/INFO] on2 could not receive any data +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 received data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 received a hint along with data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 6749.010320] [simulator/INFO] on0 sent data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 6749.020320] [simulator/INFO] on11 forward a hint successfully +[on11:ON:(12) 6749.020320] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 6749.020320] [simulator/INFO] on7 received a forwarded hint successfully +[on7:ON:(8) 6749.020320] [simulator/INFO] on7 add a new hint at 7556.000000 for a duration of 180.000000 +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 add a new hint at 7556.000000 for a duration of 180.000000 +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 6749.020640] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 6750.020320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 6750.020320] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 6751.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6752.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6753.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6754.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6755.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6756.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6757.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6758.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6759.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6760.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6761.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6762.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6763.000000] [simulator/INFO] on12 wakes up +[on10:ON:(11) 6763.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6764.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6764.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6765.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6765.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6766.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6766.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6767.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6767.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6768.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6768.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6769.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6769.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6770.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6770.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6771.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6771.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6772.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6772.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6773.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6773.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6774.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6774.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6775.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6775.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6776.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6776.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6777.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6777.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6778.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6778.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6779.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6779.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6780.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6780.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6781.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6781.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6782.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6782.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6783.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6783.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6784.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6784.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6785.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6785.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6786.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6786.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6787.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6787.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6788.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6788.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6789.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6789.020320] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 received data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 received a hint along with data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 6789.030960] [simulator/INFO] on0 sent data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 try to forward a hint +[on2:ON:(3) 6789.030960] [simulator/INFO] on2 forward a hint successfully +[on12:ON:(13) 6789.030960] [simulator/INFO] on12 received a forwarded hint successfully +[on12:ON:(13) 6789.030960] [simulator/INFO] on12 add a new hint at 7556.000000 for a duration of 180.000000 +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 6789.041280] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 6790.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6790.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6790.341280] [simulator/INFO] on2 fail to forward a hint +[on11:ON:(12) 6791.000000] [simulator/INFO] on11 fail to forward a hint +[on2:ON:(3) 6791.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6791.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6791.941280] [simulator/INFO] on2 fail to forward a hint +[on11:ON:(12) 6792.000000] [simulator/INFO] on11 is sleeping +[on2:ON:(3) 6793.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6793.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6793.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6794.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6794.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6795.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6796.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6796.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6796.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6798.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6798.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6798.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6799.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6799.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6799.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6801.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6801.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6801.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6802.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6802.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6803.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6804.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6804.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6804.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6806.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6806.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6806.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6807.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6807.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6807.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6809.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6809.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6809.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6810.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6810.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6811.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6812.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6812.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6812.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6814.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6814.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6814.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6815.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6815.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6815.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6817.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6817.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6817.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6818.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6818.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6819.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6820.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6820.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6820.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6822.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6822.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6822.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6823.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6823.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6823.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6825.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6825.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6825.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6826.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6826.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6827.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6828.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6828.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6828.741280] [simulator/INFO] on2 fail to forward a hint +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 received data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 received a hint along with data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 is observing his environment... +[on0:ON:(1) 6829.051600] [simulator/INFO] on0 sent data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 try to forward a hint +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 add a new hint at 7556.000000 for a duration of 180.000000 +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 6829.061920] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 6829.361920] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 received data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 received a hint along with data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 is observing his environment... +[on0:ON:(1) 6869.672240] [simulator/INFO] on0 sent data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6870.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6871.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6872.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6872.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6873.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6874.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6875.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6875.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6876.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6877.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6878.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6878.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6879.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6880.672240] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 6881.000000] [simulator/INFO] on7 fail to forward a hint +[on2:ON:(3) 6881.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6881.672240] [simulator/INFO] on2 try to forward a hint +[on7:ON:(8) 6882.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 6882.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6883.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6884.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6884.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6885.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6886.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6887.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6887.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6888.672240] [simulator/INFO] on2 fail to forward a hint +[on10:ON:(11) 6889.000000] [simulator/INFO] on10 fail to forward a hint +[on0:ON:(1) 6889.000000] [simulator/INFO] on0 is sleeping +[on2:ON:(3) 6889.672240] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 6890.000000] [simulator/INFO] on10 is sleeping +[on4:ON:(5) 6890.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 6891.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6892.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6893.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6894.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6895.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6896.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6897.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6898.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6899.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6900.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6901.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6902.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6903.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6904.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6905.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6906.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6907.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6908.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6909.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6910.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6911.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6912.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6913.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6914.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6915.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6916.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6917.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6918.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6919.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6920.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6921.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6922.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6923.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6924.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6925.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6926.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6927.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6928.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6928.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 6929.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6929.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6930.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6930.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6931.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6931.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6932.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6932.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6933.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6933.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6934.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6934.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6935.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6935.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6936.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6936.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6937.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6937.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6938.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6938.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6939.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6939.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6940.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6940.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6941.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6941.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6942.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6942.000000] [simulator/INFO] on3 could not receive any data +[on12:ON:(13) 6943.000000] [simulator/INFO] on12 fail to forward a hint +[on3:ON:(4) 6943.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6943.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6944.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6944.000000] [simulator/INFO] on3 could not receive any data +[on12:ON:(13) 6944.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 6945.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6945.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6946.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6946.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6947.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6947.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6948.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6948.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6949.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6949.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6950.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6950.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6951.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6951.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6952.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6952.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6953.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6953.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6954.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6954.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6955.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6955.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6956.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6956.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6957.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6957.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6958.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6958.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6959.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6959.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6960.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6960.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6961.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6961.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6962.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6962.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6963.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6963.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6964.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6964.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6965.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6965.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6966.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6966.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6967.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6967.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6968.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6968.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6969.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6969.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6970.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6970.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6971.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6971.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6972.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6972.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6973.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6973.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6974.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6974.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6975.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6975.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6976.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6976.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6977.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6977.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6978.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6978.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6979.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6979.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6980.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6980.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6981.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6981.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6982.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6982.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6983.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6983.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6984.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6984.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6985.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6985.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6986.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6986.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6987.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6987.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6988.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6988.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6989.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6989.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6990.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6990.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6991.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6991.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6992.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6992.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6993.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6993.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6994.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6994.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6995.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6995.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6996.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6996.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6997.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6997.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6998.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6998.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6999.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6999.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7000.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7000.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7001.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7001.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7002.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7002.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7003.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7003.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7004.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7004.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7005.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7005.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7006.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7006.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7007.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7007.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7008.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7008.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7009.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7009.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7010.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7010.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7011.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7011.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7012.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7012.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7013.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7013.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7014.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7014.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7015.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7015.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7016.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7016.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7017.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7017.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7018.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7018.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7019.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7019.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7020.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7020.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7021.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7021.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7022.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7022.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7023.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7023.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7024.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7024.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7025.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7025.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7026.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7026.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7027.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7027.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7028.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7028.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7029.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7029.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7030.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7030.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7031.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7031.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7032.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7032.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7033.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7033.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7034.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7034.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7035.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7035.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7036.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7036.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7037.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7037.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7038.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7038.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7039.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7039.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7040.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7040.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7041.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7041.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7042.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7042.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7043.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7043.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7044.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7044.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7045.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7045.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7046.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7046.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7047.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7047.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7048.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7048.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7049.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7049.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7050.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7050.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7051.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7051.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7052.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7052.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7053.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7053.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7054.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7054.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7055.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7055.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7056.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7056.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7057.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7057.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7058.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7058.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7059.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7059.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7060.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7060.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7061.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7061.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7062.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7062.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7063.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7063.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7064.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7064.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7065.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7065.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7066.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7066.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7067.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7067.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7068.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7068.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7069.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7069.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7070.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7070.000000] [simulator/INFO] on4 is sleeping +[on3:ON:(4) 7070.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7071.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7072.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7073.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7074.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7075.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7076.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7077.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7078.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7079.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7080.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7081.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7082.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7083.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7084.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7085.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7086.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7087.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7088.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7089.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7090.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7091.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7092.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7093.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7094.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7095.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7096.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7097.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7098.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7099.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7100.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7101.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7102.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7103.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7104.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7105.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7106.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7107.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7108.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7108.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 7336.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 7337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7440.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7441.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7442.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7443.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7444.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7445.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7446.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7447.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7448.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7449.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7450.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7451.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7452.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7453.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7454.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7455.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7456.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7457.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7458.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7459.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7460.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7461.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7462.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7463.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7464.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7465.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7466.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7467.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7468.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7469.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7470.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7471.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7472.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7473.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7474.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7475.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7476.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7477.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7478.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7479.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7480.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7481.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7482.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7483.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7484.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7485.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7486.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7487.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7488.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7489.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7490.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7491.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7492.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7493.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7494.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7495.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7496.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7497.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7498.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7499.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7500.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7501.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7502.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7503.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7504.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7505.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7506.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7507.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7508.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7509.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7510.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7511.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7512.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7513.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7514.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7515.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7516.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7516.000000] [simulator/INFO] on1 is sleeping +[on7:ON:(8) 7556.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 7556.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 7556.000000] [simulator/INFO] on0 wakes up +[on2:ON:(3) 7556.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 7556.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 7556.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 7556.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 7557.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 7557.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 7557.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 received a hint successfully +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 try to forward a hint +[on0:ON:(1) 7557.010320] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 7558.010320] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 7558.010320] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 7558.020640] [simulator/INFO] on0 sent a hint successfully +[on7:ON:(8) 7559.020640] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 received a hint successfully +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 try to forward a hint +[on0:ON:(1) 7559.030960] [simulator/INFO] on0 sent a hint successfully +[on7:ON:(8) 7560.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7561.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7561.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7562.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7563.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7563.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7564.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7565.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7565.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7566.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7567.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7567.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7568.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7569.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7569.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7570.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7571.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7571.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7572.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7573.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7573.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7574.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7575.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7575.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7576.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7577.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7577.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7578.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7579.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7579.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7580.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7581.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7581.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7582.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7583.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7583.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7584.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7585.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7585.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7586.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7587.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7587.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7588.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7589.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7589.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7590.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7591.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7591.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7592.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7593.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7593.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7594.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7595.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7595.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7596.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7597.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7597.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7598.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7599.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7599.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7600.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7601.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7601.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7602.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7603.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7603.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7604.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7605.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7605.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7606.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7607.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7607.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7608.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7609.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7609.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7610.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7611.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7611.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7612.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7613.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7613.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7614.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7615.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7615.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7616.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7617.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7617.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7618.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7619.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7619.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7620.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7621.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7621.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7622.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7623.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7623.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7624.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7625.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7625.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7626.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7627.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7627.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7628.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7629.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7629.030960] [simulator/INFO] on7 try to forward a hint +[on10:ON:(11) 7630.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 7630.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 7631.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 7632.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7633.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7633.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7634.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7635.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7635.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7636.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7637.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7637.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7638.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7639.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7639.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7640.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7641.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7641.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7642.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7643.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7643.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7644.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7645.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7645.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7646.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7647.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7647.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7648.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7649.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7649.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7650.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7651.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7651.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7652.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7653.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7653.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7654.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7655.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7655.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7656.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7657.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7657.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7658.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7659.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7659.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7660.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7661.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7661.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7662.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7663.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7663.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7664.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7665.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7665.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7666.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7667.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7667.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7668.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7669.000000] [simulator/INFO] on3 wakes up +[on10:ON:(11) 7669.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7669.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7670.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7671.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7671.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7672.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7673.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7673.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7674.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7675.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7675.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7676.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7677.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7677.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7678.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7679.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7679.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7680.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7681.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7681.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7682.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7683.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7683.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7684.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7685.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7685.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7686.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7687.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7687.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7688.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7689.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7689.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7690.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7691.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7691.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7692.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7693.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7693.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7694.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7695.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7695.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7696.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7697.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7697.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7698.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7699.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7699.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7700.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7701.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7701.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7702.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7703.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7703.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7704.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7705.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7705.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7706.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7707.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7707.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7708.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7709.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 received data successfully +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 received a hint along with data successfully +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 7709.010320] [simulator/INFO] on0 sent data successfully +[on10:ON:(11) 7709.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7710.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7710.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7711.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7711.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7711.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7712.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7712.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7712.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7713.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7713.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7713.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7714.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7714.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7715.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7715.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7715.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7715.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7716.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7716.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7717.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7717.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7717.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7718.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7718.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7718.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7719.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7719.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7719.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7720.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7720.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7721.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7721.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7721.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7721.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7722.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7722.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7723.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7723.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7723.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7724.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7724.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7724.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7725.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7725.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7725.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7726.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7726.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7727.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7727.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7727.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7727.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7728.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7728.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7729.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7729.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7729.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7730.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7730.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7730.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7731.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7731.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7731.010320] [simulator/INFO] on10 try to forward a hint +[on11:ON:(12) 7732.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 7732.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 7732.010320] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 7733.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 received a hint successfully +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 try to forward a hint +[on0:ON:(1) 7733.010320] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 7734.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 7734.020640] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 7735.020640] [simulator/INFO] on11 fail to forward a hint +[on12:ON:(13) 7736.000000] [simulator/INFO] on12 fail to forward a hint +[on2:ON:(3) 7736.000000] [simulator/INFO] on2 fail to forward a hint +[on7:ON:(8) 7736.000000] [simulator/INFO] on7 fail to forward a hint +[on0:ON:(1) 7736.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 7736.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7736.020640] [simulator/INFO] on11 try to forward a hint +[on7:ON:(8) 7737.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 7737.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 7737.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 7737.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7738.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7738.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7739.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7740.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7740.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7741.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7742.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7742.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7743.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7744.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7744.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7745.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7746.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7746.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7747.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7748.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7748.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7749.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7750.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7750.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7751.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7752.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7752.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7753.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7754.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7754.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7755.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7756.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7756.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7757.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7758.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7758.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7759.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7760.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7760.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7761.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7762.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7762.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7763.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7764.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7764.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7765.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7766.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7766.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7767.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7768.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7768.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7769.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7770.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7770.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7771.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7772.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7772.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7773.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7774.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7774.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7775.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7776.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7776.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7777.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7778.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7778.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7779.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7780.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7780.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7781.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7782.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7782.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7783.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7784.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7784.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7785.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7786.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7786.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7787.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7788.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7788.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7789.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7790.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7790.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7791.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7792.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7792.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7793.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7794.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7794.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7795.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7796.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7796.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7797.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7798.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7798.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7799.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7800.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7800.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7801.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7802.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7802.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7803.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7804.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7804.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7805.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7806.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7806.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7807.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7808.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7808.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7809.020640] [simulator/INFO] on11 fail to forward a hint +[on10:ON:(11) 7810.000000] [simulator/INFO] on10 fail to forward a hint +[on11:ON:(12) 7810.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7810.020640] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 7811.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 7811.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7812.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7812.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7813.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7814.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7814.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7815.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7816.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7816.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7817.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7818.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7818.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7819.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7820.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7820.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7821.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7822.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7822.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7823.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7824.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7824.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7825.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7826.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7826.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7827.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7828.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7828.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7829.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7830.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7830.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7831.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7832.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7832.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7833.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7834.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7834.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7835.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7836.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7836.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7837.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7838.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7838.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7839.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7840.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7840.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7841.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7842.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7842.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7843.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7844.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7844.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7845.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7846.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7846.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7847.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7848.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7848.020640] [simulator/INFO] on11 try to forward a hint +[on3:ON:(4) 7849.000000] [simulator/INFO] on3 fail to forward a hint +[on11:ON:(12) 7849.020640] [simulator/INFO] on11 fail to forward a hint +[on3:ON:(4) 7850.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 7850.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7850.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7851.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7852.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7852.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7853.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7854.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7854.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7855.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7856.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7856.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7857.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7858.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7858.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7859.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7860.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7860.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7861.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7862.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7862.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7863.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7864.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7864.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7865.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7866.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7866.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7867.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7868.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7868.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7869.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7870.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7870.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7871.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7872.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7872.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7873.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7874.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7874.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7875.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7876.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7876.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7877.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7878.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7878.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7879.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7880.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7880.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7881.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7882.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7882.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7883.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7884.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7884.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7885.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7886.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7886.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7887.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7888.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7888.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7889.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7890.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7890.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7891.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7892.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7892.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7893.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7894.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7894.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7895.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7896.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7896.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7897.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7898.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7898.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7899.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7900.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7900.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7901.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7902.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7902.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7903.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7904.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7904.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7905.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7906.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7906.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7907.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7908.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7908.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7909.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7910.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7910.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7911.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7912.020640] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 7947.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 7948.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7949.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7950.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7951.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7952.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7953.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7954.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7955.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7956.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7957.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7958.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7959.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7960.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7961.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7962.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7963.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7964.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7965.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7966.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7967.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7968.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7969.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7970.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7971.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7972.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7973.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7974.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7975.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7976.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7977.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7978.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7979.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7980.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7981.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7982.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7983.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7984.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7985.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7986.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7987.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7988.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7989.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7990.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7991.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7992.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7993.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7994.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7995.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7996.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7997.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7998.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7999.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8000.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8001.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8002.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8003.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8004.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8005.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8006.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8007.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8008.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8009.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8010.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8011.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8012.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8013.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8014.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8015.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8016.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8017.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8018.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8019.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8020.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8021.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8022.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8023.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8024.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8025.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8026.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8027.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8028.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8029.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8030.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8031.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8032.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8033.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8034.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8035.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8036.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8037.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8038.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8039.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8040.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8041.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8042.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8043.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8044.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8045.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8046.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8047.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8048.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8049.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8050.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8051.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8052.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8053.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8054.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8055.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8056.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8057.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8058.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8059.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8060.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8061.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8062.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8063.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8064.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8065.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8066.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8067.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8068.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8069.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8070.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8071.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8072.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8073.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8074.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8075.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8076.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8077.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8078.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8079.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8080.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8081.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8082.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8083.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8084.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8085.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8086.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8087.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8088.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8089.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8090.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8091.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8092.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8093.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8094.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8095.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8096.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8097.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8098.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8099.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8100.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8101.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8102.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8103.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8104.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8105.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8106.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8107.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8108.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8109.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8110.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8111.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8112.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8113.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8114.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8115.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8116.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8117.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8118.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8119.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8120.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8121.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8122.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8123.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8124.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8125.000000] [simulator/INFO] on8 could not receive any data +[on4:ON:(5) 8125.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 8126.000000] [simulator/INFO] on4 could not receive any data +[on8:ON:(9) 8126.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8127.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8127.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 8127.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8128.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8129.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8130.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8131.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8132.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8133.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8134.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8135.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8136.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8137.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8138.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8139.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8140.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8141.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8142.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8143.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8144.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8145.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8146.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8147.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8148.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8149.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8150.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8151.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8152.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8153.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8154.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8155.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8156.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8157.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8158.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8159.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8160.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8161.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8162.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8163.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8164.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8165.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8166.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8167.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8168.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8169.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8170.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8171.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8172.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8173.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8174.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8175.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8176.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8177.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8178.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8179.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8180.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8181.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8182.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8183.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8184.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8185.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8186.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8187.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8188.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8189.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8190.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8191.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8192.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8193.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8194.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8195.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8196.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8197.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8198.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8199.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8200.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8201.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8202.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8203.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8204.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8205.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8206.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8207.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8208.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8209.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8210.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8211.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8212.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8213.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8214.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8215.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8216.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8217.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8218.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8219.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8220.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8221.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8222.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8223.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8224.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8225.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8226.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8227.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8228.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8229.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8230.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8231.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8232.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8233.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8234.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8235.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8236.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8237.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8238.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8239.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8240.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8241.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8242.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8243.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8244.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8245.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8246.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8247.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8248.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8249.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8250.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8251.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8252.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8253.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8254.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8255.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8256.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8257.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8258.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8259.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8260.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8261.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8262.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8263.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8264.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8265.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8266.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8267.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8268.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8269.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8270.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8271.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8272.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8273.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8274.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8275.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8276.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8277.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8278.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8279.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8280.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8281.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8282.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8283.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8284.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8285.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8286.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8287.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8288.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8289.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8290.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8291.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8292.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8293.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8294.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8295.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8296.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8297.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8298.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8299.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8300.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8301.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8302.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8303.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8304.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8305.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8305.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 8559.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 8560.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8561.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8562.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8563.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8564.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8565.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8566.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8567.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8568.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8569.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8570.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8571.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8572.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8573.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8574.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8575.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8576.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8577.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8578.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8579.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8580.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8581.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8582.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8583.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8584.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8585.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8586.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8587.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8588.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8589.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8590.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8591.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8592.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8593.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8594.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8595.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8596.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8597.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8598.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8599.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8600.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8601.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8602.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8603.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8604.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8605.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8606.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8607.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8608.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8609.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8610.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8611.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8612.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8613.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8614.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8615.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8616.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8617.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8618.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8619.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8620.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8620.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 8621.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8621.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8622.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8622.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8623.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8623.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8624.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8624.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8625.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8625.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8626.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8626.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8627.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8627.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8628.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8628.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8629.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8629.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8630.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8630.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8631.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8631.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8632.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8632.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8633.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8633.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8634.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8634.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8635.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8635.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8636.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8636.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8637.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8637.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8638.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8638.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8639.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8639.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8640.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8640.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8641.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8641.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8642.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8642.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8643.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8643.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8644.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8644.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8645.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8645.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8646.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8646.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8647.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8647.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8648.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8648.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8649.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8649.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8650.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8650.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8651.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8651.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8652.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8652.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8653.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8653.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8654.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8654.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8655.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8655.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8656.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8656.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8657.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8657.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8658.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8658.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8659.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8659.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8660.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8660.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8661.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8661.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8662.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8662.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8663.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8663.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8664.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8664.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8665.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8665.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8666.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8666.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8667.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8667.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8668.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8668.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8669.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8669.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8670.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8670.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8671.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8671.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8672.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8672.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8673.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8673.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8674.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8674.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8675.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8675.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8676.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8676.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8677.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8677.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8678.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8678.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8679.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8679.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8680.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8680.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8681.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8681.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8682.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8682.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8683.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8683.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8684.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8684.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8685.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8685.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8686.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8686.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8687.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8687.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8688.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8688.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8689.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8689.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8690.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8690.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8691.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8691.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8692.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8692.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8693.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8693.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8694.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8694.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8695.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8695.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8696.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8696.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8697.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8697.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8698.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8698.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8699.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8699.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8700.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8700.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8701.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8701.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8702.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8702.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8703.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8703.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8704.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8704.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8705.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8705.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8706.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8706.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8707.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8707.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8708.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8708.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8709.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8709.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8710.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8710.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8711.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8711.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8712.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8712.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8713.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8713.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8714.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8714.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8715.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8715.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8716.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8716.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8717.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8717.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8718.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8718.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8719.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8719.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8720.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8720.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8721.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8721.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8722.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8722.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8723.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8723.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8724.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8724.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8725.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8725.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8726.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8726.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8727.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8727.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8728.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8728.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8729.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8729.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8730.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8730.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8731.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8731.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8732.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8732.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8733.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8733.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8734.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8734.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8735.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8735.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8736.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8736.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8737.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8737.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8738.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8738.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8739.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8739.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8739.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 8740.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8741.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8742.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8743.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8744.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8745.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8746.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8747.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8748.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8749.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8750.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8751.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8752.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8753.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8754.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8755.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8756.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8757.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8758.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8759.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8760.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8761.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8762.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8763.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8764.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8765.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8766.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8767.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8768.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8769.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8770.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8771.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8772.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8773.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8774.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8775.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8776.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8777.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8778.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8779.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8780.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8781.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8782.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8783.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8784.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8785.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8786.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8787.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8788.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8789.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8790.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8791.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8792.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8793.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8794.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8795.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8796.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8797.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8798.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8799.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8800.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8800.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 9448.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 9449.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9450.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9451.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9452.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9453.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9454.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9455.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9456.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9457.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9458.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9459.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9460.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9461.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9462.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9463.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9464.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9465.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9466.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9467.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9468.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9469.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9470.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9471.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9472.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9473.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9474.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9475.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9476.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9477.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9478.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9479.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9480.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9481.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9482.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9483.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9484.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9485.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9486.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9487.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9488.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9489.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9490.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9491.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9492.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9493.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9494.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9495.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9496.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9497.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9498.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9499.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9500.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9501.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9502.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9503.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9504.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9505.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9506.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9507.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9508.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9509.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9510.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9511.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9512.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9513.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9514.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9515.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9516.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9517.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9518.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9519.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9520.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9521.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9522.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9523.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9524.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9525.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9526.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9527.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9528.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9529.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9530.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9531.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9532.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9533.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9534.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9535.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9536.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9537.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9538.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9539.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9540.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9541.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9542.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9543.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9544.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9545.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9546.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9547.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9548.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9549.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9550.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9551.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9552.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9553.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9554.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9555.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9556.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9557.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9558.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9559.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9560.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9561.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9562.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9563.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9564.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9565.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9566.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9567.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9568.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9569.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9570.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9571.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9572.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9573.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9574.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9575.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9576.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9577.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9578.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9579.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9580.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9581.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9582.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9583.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9584.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9585.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9586.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9587.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9588.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9589.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9590.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9591.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9592.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9593.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9594.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9595.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9596.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9597.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9598.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9599.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9600.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9601.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9602.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9603.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9604.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9605.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9606.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9607.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9608.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9609.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9610.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9611.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9612.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9613.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9628.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 9835.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 9835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9836.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9837.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9839.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9840.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9842.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9843.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9845.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9846.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9848.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9849.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9851.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9852.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9854.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9855.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9857.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9858.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9860.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9861.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9863.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9864.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9866.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9867.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9869.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9870.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9872.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9873.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9875.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9876.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9878.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9878.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9879.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9880.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9881.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9882.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9884.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9884.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9885.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9886.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9887.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9888.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9890.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9890.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9891.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9892.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9893.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9894.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9896.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9896.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9897.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9898.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9899.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9900.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9902.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9902.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9903.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9904.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9905.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9906.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9908.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9908.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9909.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9910.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9911.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9912.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9914.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9914.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9915.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9916.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9917.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9918.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9920.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9920.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9921.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9922.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9923.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9923.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9924.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9925.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9926.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9927.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9929.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9930.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9932.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9933.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9935.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9936.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9938.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9939.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9941.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9942.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9944.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9945.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9947.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9948.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9950.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9951.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9953.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9954.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9956.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9957.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9959.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9960.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9962.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9963.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9965.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9966.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9968.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9969.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9971.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9972.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9974.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9975.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9977.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9978.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9980.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9981.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9983.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9984.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9986.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9987.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9989.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9990.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9992.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9993.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9995.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9995.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9996.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9997.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9998.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9998.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9999.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10000.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10001.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10001.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10002.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10003.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10004.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10004.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10005.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10006.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10007.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10008.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10010.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10010.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10011.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10012.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10013.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10014.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10015.000000] [simulator/INFO] on12 is sleeping +[on2:ON:(3) 10076.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 10076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10077.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10078.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10080.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10081.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10083.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10084.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10086.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10087.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10089.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10090.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10092.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10093.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10095.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10096.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10098.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10099.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10101.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10102.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10104.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10105.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10107.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10108.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10110.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10111.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10113.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10114.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10116.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10117.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10119.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10120.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10122.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10123.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10125.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10126.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10128.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10129.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10131.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10132.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10134.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10135.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10137.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10138.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10140.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10141.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10143.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10144.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10146.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10147.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10149.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10150.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10152.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10153.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10155.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10156.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10158.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10159.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10161.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10162.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10164.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10165.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10167.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10168.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10170.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10171.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10173.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10174.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10176.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10177.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10179.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10180.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10182.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10183.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10185.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10186.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10188.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10189.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10191.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10192.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10194.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10195.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10197.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10198.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10200.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10201.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10203.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10204.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10206.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10207.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10209.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10210.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10212.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10213.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10215.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10216.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10218.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10219.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10221.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10222.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10224.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10225.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10227.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10228.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10230.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10231.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10233.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10234.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10236.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 10236.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 10236.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 10236.000000] [simulator/INFO] on2 try to forward a hint +[on7:ON:(8) 10237.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10237.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10238.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10239.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10240.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10241.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10243.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10243.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10244.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10245.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10246.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10247.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10249.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10249.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10250.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10251.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10252.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10253.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10255.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10255.000000] [simulator/INFO] on7 try to forward a hint +[on2:ON:(3) 10256.000000] [simulator/INFO] on2 fail to forward a hint +[on7:ON:(8) 10256.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10257.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 10257.000000] [simulator/INFO] on2 is sleeping +[on7:ON:(8) 10258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10258.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10259.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10261.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10261.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10262.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10263.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10264.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10265.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10267.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10267.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10268.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10269.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10270.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10271.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10273.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10273.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10274.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10275.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10276.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10277.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10279.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10279.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10280.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10281.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10282.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10283.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10285.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10285.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10286.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10287.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10288.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10288.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10289.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10290.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10291.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10291.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10292.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10293.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10294.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10294.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10295.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10296.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10297.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10297.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10298.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10299.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10300.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10300.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10301.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10302.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10303.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10303.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10304.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10305.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10306.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10306.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10307.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10308.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10309.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10309.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10310.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10311.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10312.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10312.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10313.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10314.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10315.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10315.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10316.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10317.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10318.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10318.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10319.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10320.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10321.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10321.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10322.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10323.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10324.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10324.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10325.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10326.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10327.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10327.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10328.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10329.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10330.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10330.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10331.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10332.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10333.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10333.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10334.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10335.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10336.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10336.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10337.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10338.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10339.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10339.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10340.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10341.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10342.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10342.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10343.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10344.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10345.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10345.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10346.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10347.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10348.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10348.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10349.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10350.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10351.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10351.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10352.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10353.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10354.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10354.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10355.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10356.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10357.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10357.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10358.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10359.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10360.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10360.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10361.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10362.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10363.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10363.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10364.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10365.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10366.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10366.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10367.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10368.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10369.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10370.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10372.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10372.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10373.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10374.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10375.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10376.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10378.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10378.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10379.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10380.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10381.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10382.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10384.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10384.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10385.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10386.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10387.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10388.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10390.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10390.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10391.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10392.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10393.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10394.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10396.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10396.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10397.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10398.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10399.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10400.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10402.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10402.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10403.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10404.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10405.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10406.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10408.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10408.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10409.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10410.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10411.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10412.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10414.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10414.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10415.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10416.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 11304.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 11304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11305.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11306.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11308.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11308.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11309.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11310.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11311.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11312.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11314.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11314.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11315.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11316.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11317.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11318.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11320.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11320.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11321.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11322.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11323.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11324.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11326.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11326.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11327.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11328.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11329.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11330.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11332.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11332.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11333.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11334.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11335.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11336.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11338.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11338.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11339.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11340.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11341.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11342.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11344.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11345.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11347.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11348.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11350.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11351.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11353.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11354.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11356.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11357.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11359.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11360.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11362.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11363.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11365.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11366.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11368.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11369.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11371.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11372.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11374.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11375.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11377.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11378.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11380.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11381.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11383.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11384.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11386.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11387.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11389.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11390.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11392.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11393.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11395.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11396.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11398.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11399.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11401.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11402.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11404.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11405.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11407.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11408.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11410.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11411.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11413.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11414.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11416.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11417.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11419.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11420.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11422.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11423.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11425.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11426.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11428.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11429.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11431.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11432.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11434.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11435.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11437.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11438.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11440.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11441.000000] [simulator/INFO] on3 fail to forward a hint +[on7:ON:(8) 11441.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 11441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 11442.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 11442.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 11442.000000] [simulator/INFO] on7 try to forward a hint +[on3:ON:(4) 11443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11443.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11444.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11446.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11447.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11449.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11450.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11452.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11453.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11455.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11456.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11458.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11459.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11461.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11462.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11464.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11465.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11467.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11468.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11470.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11471.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11473.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11474.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11476.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11477.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11479.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11480.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11482.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11483.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11484.000000] [simulator/INFO] on3 is sleeping +[on9:ON:(10) 11552.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 11553.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11554.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11555.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11556.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11557.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11558.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11559.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11560.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11561.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11562.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11563.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11564.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11565.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11566.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11567.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11568.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11569.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11570.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11571.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11572.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11573.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11574.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11575.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11576.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11577.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11578.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11579.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11580.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11581.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11582.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11583.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11584.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11585.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11586.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11587.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11588.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11589.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11590.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11591.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11592.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11593.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11594.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11595.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11596.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11597.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11598.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11599.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11600.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11601.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11602.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11603.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11604.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11605.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11606.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11607.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11608.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11609.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11610.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11611.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11612.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11613.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11614.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11615.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11616.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11617.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11618.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11619.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11620.000000] [simulator/INFO] on9 could not receive any data +[on7:ON:(8) 11621.000000] [simulator/INFO] on7 fail to forward a hint +[on9:ON:(10) 11621.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11622.000000] [simulator/INFO] on9 could not receive any data +[on7:ON:(8) 11622.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 11623.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11624.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11625.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11626.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11627.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11628.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11629.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11630.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11631.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11632.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11633.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11634.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11635.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11636.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11637.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11638.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11639.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11640.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11641.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11642.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11643.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11644.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11645.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11646.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11647.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11648.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11649.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11650.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11651.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11652.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11653.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11654.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11655.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11656.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11657.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11658.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11659.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11660.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11661.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11662.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11663.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11664.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11665.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11666.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11667.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11668.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11669.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11670.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11671.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11672.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11673.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11674.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11675.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11676.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11677.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11678.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11679.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11680.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11681.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11682.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11683.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11684.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11685.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11686.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11687.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11688.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11689.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11690.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11691.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11692.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11693.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11694.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11695.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11696.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11697.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11698.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11699.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11700.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11701.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11702.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11703.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11704.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11705.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11706.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11707.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11708.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11709.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11710.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11711.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11712.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11713.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11714.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11715.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11716.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11717.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11718.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11719.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11720.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11721.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11722.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11723.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11724.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11725.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11726.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11727.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11727.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 11728.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11728.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11729.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11730.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11730.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11731.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11732.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11732.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11732.000000] [simulator/INFO] on9 is sleeping +[on6:ON:(7) 11733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11794.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11795.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11796.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11797.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11798.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11799.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11800.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11801.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11802.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11803.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11804.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11805.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11806.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11807.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11808.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11809.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11810.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11811.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11812.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11813.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11814.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11815.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11816.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11817.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11818.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11819.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11820.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11821.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11822.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11823.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11824.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11825.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11826.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11827.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11828.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11829.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11830.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11831.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11832.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11833.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11834.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11835.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11836.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11837.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11838.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11839.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11840.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11841.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11842.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11843.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11844.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11845.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11846.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11847.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11848.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11849.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11850.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11851.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11852.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11853.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11854.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11855.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11856.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11857.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11858.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11859.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11860.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11861.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11862.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11863.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11864.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11865.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11866.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11867.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11868.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11869.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11869.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 11870.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11870.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11871.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11871.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11872.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11872.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11873.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11873.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11874.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11874.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11875.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11875.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11876.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11876.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11877.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11877.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11878.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11878.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11879.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11879.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11880.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11880.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11881.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11881.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11882.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11882.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11883.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11883.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11884.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11884.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11885.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11885.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11886.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11886.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11887.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11887.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11888.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11888.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11889.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11889.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11890.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11890.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11891.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11891.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11892.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11892.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11893.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11893.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11894.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11894.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11895.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11895.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11896.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11896.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11897.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11897.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11898.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11898.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11899.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11899.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11900.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11900.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11901.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11901.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11902.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11902.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11903.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11903.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11904.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11904.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11905.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11905.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11906.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11906.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11907.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11907.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 11907.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11908.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11909.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11910.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11911.000000] [simulator/INFO] on5 could not receive any data +[on2:ON:(3) 11911.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 11911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 11912.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11912.000000] [simulator/INFO] on5 could not receive any data +[on2:ON:(3) 11912.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 11912.010000] [simulator/INFO] on2 forward a hint successfully +[on2:ON:(3) 11912.010000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11912.010000] [simulator/INFO] on5 received a forwarded hint successfully +[on5:ON:(6) 11912.010000] [simulator/INFO] on5 add a new hint at 12921.000000 for a duration of 180.000000 +[on2:ON:(3) 11913.010000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11913.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11913.010000] [simulator/INFO] on5 try to forward a hint +[on2:ON:(3) 11913.010000] [simulator/INFO] on2 try to forward a hint +[on5:ON:(6) 11913.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11914.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11914.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11914.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11916.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11916.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11916.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11917.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11917.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11918.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11919.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11919.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11919.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11921.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11921.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11921.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11922.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11922.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11922.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11924.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11924.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11924.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11925.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11925.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11926.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11927.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11927.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11927.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11929.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11929.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11929.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11930.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11930.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11930.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11932.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11932.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11932.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11933.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11933.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11934.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11935.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11935.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11935.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11937.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11937.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11937.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11938.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11938.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11938.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11940.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11940.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11940.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11941.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11941.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11942.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11943.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11943.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11943.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11945.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11945.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11945.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11946.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11946.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11946.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11948.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11948.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11948.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11949.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11949.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11950.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11951.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11951.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11951.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11953.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11953.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11953.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11954.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11954.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11954.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11956.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11956.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11956.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11957.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11957.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11958.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11959.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11959.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11959.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11961.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11961.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11961.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11962.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11962.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11962.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11964.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11964.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11964.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11965.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11965.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11966.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11967.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11967.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11967.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11969.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11969.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11969.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11970.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11970.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11970.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11972.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11972.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11972.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11973.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11973.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11974.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11975.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11975.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11975.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11977.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11977.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11977.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11978.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11978.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11978.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11980.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11980.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11980.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11981.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11981.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11982.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11983.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11983.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11983.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11985.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11985.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11985.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11986.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11986.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11986.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11988.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11988.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11988.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11989.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11989.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11990.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11991.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11991.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11991.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11993.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11993.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11993.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11994.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11994.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11994.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11996.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11996.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11996.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11997.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11997.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11998.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11999.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11999.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11999.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12001.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12001.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12001.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12002.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12002.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12002.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12004.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12004.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12004.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12005.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12005.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12006.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12007.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12007.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12007.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12009.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12009.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12009.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12010.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12010.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12010.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12012.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12012.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12012.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12013.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12013.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12014.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12015.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12015.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12015.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12017.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12017.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12017.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12018.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12018.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12018.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12020.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12020.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12020.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12021.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12021.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12022.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12023.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12023.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12023.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12025.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12025.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12025.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12026.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12026.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12026.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12028.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12028.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12028.510000] [simulator/INFO] on5 fail to forward a hint +[on4:ON:(5) 12029.000000] [simulator/INFO] on4 wakes up +[on5:ON:(6) 12029.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12029.810000] [simulator/INFO] on5 try to forward a hint +[on2:ON:(3) 12029.810000] [simulator/INFO] on2 forward a hint successfully +[on2:ON:(3) 12029.810000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 12029.810000] [simulator/INFO] on4 received a forwarded hint successfully +[on4:ON:(5) 12029.810000] [simulator/INFO] on4 add a new hint at 12921.000000 for a duration of 180.000000 +[on4:ON:(5) 12030.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12030.810000] [simulator/INFO] on4 try to forward a hint +[on2:ON:(3) 12030.810000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 12030.810000] [simulator/INFO] on2 try to forward a hint +[on4:ON:(5) 12031.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12032.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12032.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12032.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12034.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12034.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12034.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12035.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12035.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12035.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12037.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12037.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12037.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12038.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12038.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12039.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12040.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12040.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12040.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12042.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12042.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12042.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12043.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12043.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12043.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12045.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12045.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12045.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12046.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12046.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12047.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12048.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12048.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12048.710000] [simulator/INFO] on4 fail to forward a hint +[on5:ON:(6) 12049.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12049.300000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 12050.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12050.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12050.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12051.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12051.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12051.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12053.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12053.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12053.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12054.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12054.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12055.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12056.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12056.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12056.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12058.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12058.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12058.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12059.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12059.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12059.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12061.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12061.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12061.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12062.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12062.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12063.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12064.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12064.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12064.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12066.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12066.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12066.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12067.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12067.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12067.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12069.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12069.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12069.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12070.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12070.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12071.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12072.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12072.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12072.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12074.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12074.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12074.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12075.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12075.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12075.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12077.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12077.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12077.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12078.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12078.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12079.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12080.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12080.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12080.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12082.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12082.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12082.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12083.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12083.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12083.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12085.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12085.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12085.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12086.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12086.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12087.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12088.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12088.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12088.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12090.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12090.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12090.310000] [simulator/INFO] on4 fail to forward a hint +[on2:ON:(3) 12091.000000] [simulator/INFO] on2 fail to forward a hint +[on4:ON:(5) 12091.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12091.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12091.910000] [simulator/INFO] on4 fail to forward a hint +[on2:ON:(3) 12092.000000] [simulator/INFO] on2 is sleeping +[on4:ON:(5) 12093.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12093.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12093.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12094.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12094.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12095.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12096.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12096.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12096.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12098.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12098.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12098.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12099.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12099.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12099.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12101.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12101.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12101.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12102.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12102.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12103.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12104.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12104.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12104.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12106.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12106.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12106.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12107.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12107.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12107.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12109.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12109.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12109.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12110.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12110.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12111.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12112.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12112.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12112.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12114.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12114.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12114.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12115.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12115.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12115.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12117.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12117.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12117.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12118.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12118.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12119.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12120.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12120.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12120.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12122.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12122.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12122.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12123.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12123.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12123.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12125.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12125.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12125.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12126.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12126.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12127.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12128.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12128.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12128.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12130.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12130.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12130.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12131.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12131.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12131.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12133.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12133.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12133.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12134.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12134.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12135.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12136.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12136.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12136.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12138.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12138.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12138.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12139.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12139.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12139.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12141.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12141.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12141.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12142.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12142.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12143.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12144.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12144.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12144.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12146.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12146.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12146.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12147.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12147.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12147.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12149.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12149.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12149.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12150.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12150.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12151.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12152.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12152.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12152.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12154.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12154.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12154.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12155.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12155.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12155.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12157.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12157.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12157.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12158.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12158.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12159.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12160.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12160.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12160.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12162.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12162.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12162.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12163.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12163.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12163.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12165.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12165.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12165.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12166.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12166.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12167.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12168.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12168.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12168.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12170.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12170.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12170.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12171.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12171.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12171.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12173.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12173.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12173.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12174.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12174.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12175.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12176.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12176.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12176.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12178.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12178.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12178.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12179.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12179.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12179.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12181.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12181.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12181.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12182.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12182.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12183.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12184.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12184.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12184.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12186.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12186.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12186.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12187.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12187.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12187.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12189.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12189.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12189.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12190.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12190.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12191.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12192.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12192.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12192.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12194.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12194.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12194.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12195.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12195.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12195.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12197.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12197.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12197.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12198.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12198.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12199.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12200.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12200.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12200.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12202.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12202.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12202.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12203.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12203.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12203.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12205.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12205.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12205.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12206.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12206.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12207.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12208.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12208.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12208.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12209.010000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 12467.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 12467.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12468.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12469.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12471.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12471.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12472.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12473.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12474.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12475.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12477.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12477.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12478.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12479.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12480.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12481.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12483.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12483.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12484.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12485.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12486.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12486.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12487.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12488.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12489.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12489.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12490.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12491.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12492.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12492.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12493.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12494.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12495.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12495.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12496.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12497.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12498.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12498.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12499.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12500.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12501.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12501.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12502.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12503.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12504.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12504.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12505.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12506.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12507.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12507.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12508.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12509.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12510.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12510.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12511.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12512.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12513.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12513.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12514.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12515.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12516.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12516.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12517.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12518.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12519.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12519.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12520.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12521.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12522.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12522.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12523.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12524.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12525.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12525.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12526.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12527.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12528.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12528.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12529.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12530.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12531.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12531.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12532.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12533.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12534.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12534.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12535.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12536.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12537.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12537.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12538.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12539.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12540.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12540.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12541.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12542.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12543.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12543.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12544.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12545.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12546.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12546.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12547.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12548.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12549.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12549.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12550.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12551.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12552.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12552.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12553.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12554.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12555.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12555.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12556.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12557.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12558.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12558.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12559.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12560.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12561.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12561.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12562.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12563.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12564.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12564.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12565.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12566.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12567.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12567.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12568.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12569.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12570.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12570.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12571.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12572.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12573.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12573.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12574.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12575.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12576.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12576.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12577.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12578.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12579.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12579.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12580.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12581.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12582.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12582.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12583.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12584.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12585.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12585.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12586.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12587.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12588.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12588.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12589.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12590.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12591.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12591.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12592.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12593.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12594.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12594.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12595.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12596.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12597.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12597.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12598.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12599.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12600.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12600.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12601.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12602.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12603.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12603.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12604.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12605.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12606.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12606.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12607.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12608.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12609.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12609.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12610.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12611.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12612.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12612.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12613.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12614.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12615.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12615.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12616.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12617.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12618.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12618.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12619.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12620.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12621.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12621.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12622.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12623.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12624.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12624.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12625.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12626.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12627.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12627.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12628.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12629.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12630.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12630.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12631.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12632.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12633.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12633.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12634.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12635.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12636.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12636.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12637.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12638.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12639.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12639.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12640.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12641.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12642.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12642.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12643.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12644.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12645.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12645.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12646.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12647.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 12711.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 12711.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12712.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12712.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12713.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12714.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12715.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12715.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12716.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12717.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12718.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12718.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12719.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12720.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12721.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12721.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12722.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12723.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12724.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12724.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12725.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12726.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12727.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12727.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12728.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12729.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12730.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12730.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12731.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12732.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12733.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12734.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12736.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12736.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12737.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12738.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12739.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12740.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12742.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12742.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12743.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12744.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12745.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12746.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12748.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12748.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12749.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12750.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12751.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12752.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12754.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12754.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12755.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12756.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12757.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12758.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12760.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12760.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12761.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12762.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12763.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12764.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12766.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12766.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12767.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12768.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12769.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12770.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12772.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12772.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12773.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12774.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12775.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12776.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12778.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12778.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12779.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12780.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12781.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12782.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12784.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12784.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12785.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12786.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12787.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12788.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12790.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12790.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12791.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12792.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12793.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12794.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12796.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12797.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12799.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12800.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12802.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12803.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12805.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12806.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12808.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12809.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12811.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12812.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12814.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12815.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12817.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12818.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12820.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12821.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12823.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12824.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12826.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12827.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12829.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12830.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12832.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12833.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12835.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12836.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12838.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12839.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12841.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12842.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12844.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12845.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12847.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12848.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12850.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12851.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12853.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12854.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12856.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12856.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12857.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12858.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12859.000000] [simulator/INFO] on10 is observing his environment... +[on11:ON:(12) 12859.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 12859.000000] [simulator/INFO] on11 is observing his environment... +[on10:ON:(11) 12859.000000] [simulator/INFO] on10 try to forward a hint +[on11:ON:(12) 12860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12860.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12861.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12863.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12864.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12866.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12867.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12869.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12870.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12872.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12873.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12875.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12876.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12878.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12879.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12881.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12882.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12884.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12885.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12887.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12888.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12890.000000] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 12891.000000] [simulator/INFO] on10 fail to forward a hint +[on11:ON:(12) 12891.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12892.000000] [simulator/INFO] on11 is observing his environment... +[on10:ON:(11) 12892.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 12893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12893.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12894.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12896.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12897.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12899.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12900.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12902.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12903.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12905.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12906.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12908.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12909.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12911.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12912.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12914.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12915.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12917.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12918.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12920.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12921.000000] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 12921.000000] [simulator/INFO] on0 wakes up +[on5:ON:(6) 12921.000000] [simulator/INFO] on5 wakes up +[on4:ON:(5) 12921.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 12922.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12923.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12923.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12924.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12924.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12925.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12925.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12926.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12926.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12927.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12927.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12928.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12928.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12929.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12929.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12930.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12930.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12931.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12931.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12932.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12932.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12933.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12933.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12934.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12934.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12935.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12935.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12936.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12936.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12937.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12937.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12938.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12938.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12939.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12939.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12940.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12940.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12941.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12941.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12942.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12942.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12943.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12943.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12944.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12944.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12945.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12945.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12946.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12946.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12947.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12947.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12948.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12948.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12949.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12949.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12950.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12950.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12951.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12951.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12952.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12952.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12953.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12953.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12954.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12954.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12955.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12955.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12956.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12956.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12957.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12957.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12958.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12958.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12959.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12959.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12960.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12960.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12961.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12961.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 received data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 received a hint along with data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 12961.010320] [simulator/INFO] on0 sent data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12961.020320] [simulator/INFO] on5 forward a hint successfully +[on5:ON:(6) 12961.020320] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 12961.020320] [simulator/INFO] on4 received a forwarded hint successfully +[on4:ON:(5) 12961.020320] [simulator/INFO] on4 add a new hint at 15336.000000 for a duration of 180.000000 +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 12961.020640] [simulator/INFO] on0 sent a hint successfully +[on4:ON:(5) 12962.020640] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12962.020640] [simulator/INFO] on4 try to forward a hint +[on5:ON:(6) 12962.020640] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 12962.020640] [simulator/INFO] on5 try to forward a hint +[on4:ON:(5) 12962.320640] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 received data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 received a hint along with data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 is observing his environment... +[on0:ON:(1) 13002.630960] [simulator/INFO] on0 sent data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13003.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13004.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13005.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13005.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13006.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13007.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13008.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13008.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13009.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13010.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13011.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13011.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13012.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13013.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13014.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13014.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13015.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13016.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13017.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13017.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13018.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13019.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13020.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13020.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13021.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13022.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13023.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13023.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13024.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13025.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13026.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13026.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13027.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13028.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13029.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13029.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13030.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13031.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13032.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13032.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13033.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13034.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13035.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13035.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13036.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13037.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13038.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13038.630960] [simulator/INFO] on4 try to forward a hint +[on11:ON:(12) 13039.000000] [simulator/INFO] on11 fail to forward a hint +[on4:ON:(5) 13039.630960] [simulator/INFO] on4 fail to forward a hint +[on11:ON:(12) 13040.000000] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 13040.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13041.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13041.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13042.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13043.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13044.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13044.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13045.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13046.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13047.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13047.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13048.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13049.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13050.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13050.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13051.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13052.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13053.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13053.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13054.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13055.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13056.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13056.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13057.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13058.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13059.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13059.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13060.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13061.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13062.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13062.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13063.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13064.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13065.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13065.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13066.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13067.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13068.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13068.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13069.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13070.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13071.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13071.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13072.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13073.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13074.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13074.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13075.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13076.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13077.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13077.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13078.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13079.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13080.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13080.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13081.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13082.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13083.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13083.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13084.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13085.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13086.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13086.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13087.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13088.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13089.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13089.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13090.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13091.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13092.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13092.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13093.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13094.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13095.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13095.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13096.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13097.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13098.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13098.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13099.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13100.630960] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 13101.000000] [simulator/INFO] on5 fail to forward a hint +[on4:ON:(5) 13101.000000] [simulator/INFO] on4 is sleeping +[on0:ON:(1) 13101.000000] [simulator/INFO] on0 is sleeping +[on5:ON:(6) 13102.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 13504.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 13505.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13506.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13507.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13508.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13509.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13510.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13511.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13512.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13513.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13514.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13515.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13516.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13517.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13518.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13519.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13520.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13521.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13522.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13523.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13524.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13525.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13526.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13527.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13528.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13529.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13530.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13531.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13532.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13533.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13534.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13535.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13536.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13537.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13538.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13539.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13540.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13541.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13542.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13543.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13544.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13545.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13546.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13547.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13548.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13549.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13550.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13551.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13552.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13553.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13554.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13555.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13556.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13557.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13558.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13559.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13560.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13561.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13562.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13563.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13564.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13565.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13566.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13567.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13568.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13569.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13570.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13571.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13572.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13573.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13574.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13575.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13576.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13577.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13578.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13579.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13580.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13581.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13582.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13583.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13584.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13585.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13586.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13587.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13588.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13589.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13590.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13591.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13592.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13593.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13594.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13595.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13596.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13597.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13598.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13599.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13600.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13601.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13602.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13603.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13604.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13605.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13606.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13607.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13608.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13609.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13610.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13611.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13612.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13613.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13614.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13615.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13616.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13617.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13618.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13619.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13620.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13621.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13622.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13623.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13624.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13625.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13626.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13627.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13628.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13629.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13630.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13631.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13632.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13633.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13634.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13635.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13636.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13637.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13638.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13639.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13640.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13641.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13642.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13643.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13644.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13645.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13646.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13647.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13648.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13649.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13650.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13651.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13652.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13653.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13654.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13655.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13656.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13657.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13658.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13659.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13660.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13661.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13662.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13663.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13664.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13665.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13666.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13667.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13668.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13669.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13670.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13671.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13672.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13673.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13674.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13675.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13676.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13677.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13678.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13679.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13680.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13681.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13682.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13683.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13684.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13684.000000] [simulator/INFO] on8 is sleeping +[on1:ON:(2) 14025.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 14026.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14027.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14028.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14029.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14030.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14031.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14032.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14033.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14034.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14035.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14036.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14037.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14038.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14039.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14040.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14041.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14042.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14043.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14044.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14045.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14046.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14047.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14048.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14049.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14050.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14051.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14052.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14053.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14205.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 14705.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 14705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14731.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14732.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14733.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14734.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14735.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14736.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14737.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14738.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14739.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14740.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14741.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14742.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14743.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14744.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14745.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14746.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14747.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14748.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14749.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14750.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14751.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14752.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14753.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14754.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14755.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14756.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14757.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14758.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14759.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14760.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14761.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14762.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14763.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14764.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14765.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14766.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14767.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14768.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14769.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14770.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14771.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14772.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14773.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14774.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14775.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14776.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14777.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14778.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14779.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14780.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14781.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14782.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14783.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14784.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14785.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14786.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14787.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14788.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14789.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14790.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14791.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14792.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14793.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14794.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14795.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14796.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14797.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14798.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14799.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14800.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14801.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14802.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14803.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14804.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14805.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14806.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14807.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14808.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14809.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14810.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14811.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14812.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14813.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14814.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14815.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14816.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14817.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14818.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14819.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14820.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14821.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14822.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14823.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14824.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14825.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14826.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14885.000000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 15161.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 15161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15220.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 15220.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 15220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 15221.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 15221.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 15221.000000] [simulator/INFO] on4 try to forward a hint +[on10:ON:(11) 15222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15255.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15257.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15259.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15336.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 15336.000000] [simulator/INFO] on0 wakes up +[on10:ON:(11) 15337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 15337.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 15338.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 15339.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15339.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 15340.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 15341.010320] [simulator/INFO] on10 is sleeping +[on4:ON:(5) 15516.000000] [simulator/INFO] on4 fail to forward a hint +[on0:ON:(1) 15516.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 15517.000000] [simulator/INFO] on4 is sleeping +[on1:ON:(2) 15777.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 15778.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15779.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15780.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15781.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15782.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15783.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15784.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15785.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15786.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15787.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15788.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15789.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15790.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15791.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15792.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15793.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15794.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15795.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15796.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15797.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15798.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15799.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15800.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15801.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15802.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15803.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15804.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15805.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15806.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15807.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15808.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15809.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15810.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15811.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15812.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15813.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15814.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15815.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15816.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15817.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15818.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15819.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15820.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15821.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15822.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15823.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15824.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15825.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15826.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15827.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15828.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15829.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15830.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15831.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15832.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15833.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15834.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15835.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15836.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15837.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15838.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15839.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15840.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15841.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15842.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15843.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15844.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15845.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15846.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15847.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15848.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15849.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15850.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15851.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15852.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15853.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15854.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15855.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15856.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15857.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15858.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15859.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15860.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15861.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15862.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15863.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15864.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15865.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15866.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15867.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15868.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15869.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15870.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15871.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15872.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15873.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15874.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15875.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15876.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15877.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15877.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 15878.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15878.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15879.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15879.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15880.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15880.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15881.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15881.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15882.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15882.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15883.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15883.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15884.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15884.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15885.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15885.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15886.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15886.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15887.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15887.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15888.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15888.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15889.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15889.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15890.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15890.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15891.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15891.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15892.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15892.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15893.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15893.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15894.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15894.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15895.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15895.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15896.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15896.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15897.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15897.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15898.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15898.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15899.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15899.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15900.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15900.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15901.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15901.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15902.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15902.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15903.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15903.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15904.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15904.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15905.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15905.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15906.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15906.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15907.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15907.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15908.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15908.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15909.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15909.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15910.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15910.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15911.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15911.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15912.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15912.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15913.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15913.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15914.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15914.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15915.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15915.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15916.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15916.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15917.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15917.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15918.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15918.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15919.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15919.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15920.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15920.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15921.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15921.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15922.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15922.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15923.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15923.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15924.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15924.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15925.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15925.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15926.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15926.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15927.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15927.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15928.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15928.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15929.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15929.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15930.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15930.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15931.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15931.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15932.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15932.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15933.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15933.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15934.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15934.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15935.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15935.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15936.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15936.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15937.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15937.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15938.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15938.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15939.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15939.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15940.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15940.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15941.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15941.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15942.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15942.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15943.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15943.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15944.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15944.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15945.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15945.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15946.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15946.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15947.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15947.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15948.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15948.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15949.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15949.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15950.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15950.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15951.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15951.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15952.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15952.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15953.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15953.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15954.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15954.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15955.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15955.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15956.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15956.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15957.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15957.000000] [simulator/INFO] on1 is sleeping +[on9:ON:(10) 15957.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15959.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15961.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15963.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15965.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15967.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15969.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15969.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 15969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 15970.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15970.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15971.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15971.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15972.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15972.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15973.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15973.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15974.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15974.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15975.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15975.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15976.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15976.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15977.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15977.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15978.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15978.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15979.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15979.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15980.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15980.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15981.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15981.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15982.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15982.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15983.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15983.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15984.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15984.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15985.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15985.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15986.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15986.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15987.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15987.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15988.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15988.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15989.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15989.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15990.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15990.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15991.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15991.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15992.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15992.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15993.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15993.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15994.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15994.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15995.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15995.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15996.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15996.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15997.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15997.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15998.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15998.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15999.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15999.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16000.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16000.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16001.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16001.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16002.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16002.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16003.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16003.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16004.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16004.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16005.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16005.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16006.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16006.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16007.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16007.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16008.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16008.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16009.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16009.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16010.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16010.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16011.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16011.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16012.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16012.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16013.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16013.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16014.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16014.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16015.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16015.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16016.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16016.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16017.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16017.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16018.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16018.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16019.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16019.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16020.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16020.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16021.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16021.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16022.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16022.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16023.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16023.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16024.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16024.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16025.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16025.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16026.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16026.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16027.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16027.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16028.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16028.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16029.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16029.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16030.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16030.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16031.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16031.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16032.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16032.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16033.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16033.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16034.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16034.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16035.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16035.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16036.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16036.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16037.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16037.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16038.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16038.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16039.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16039.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16040.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16040.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16041.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16041.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16042.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16042.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16043.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16043.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16044.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16044.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16045.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16045.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16046.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16046.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16047.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16047.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16048.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16048.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16049.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16049.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16050.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16050.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16051.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16051.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16052.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16052.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16053.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16053.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16054.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16054.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16055.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16055.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16056.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16056.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16057.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16057.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 16057.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 16058.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16059.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16060.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16061.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16062.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16063.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16064.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16065.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16066.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16067.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16068.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16069.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16070.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16071.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16072.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16073.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16074.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16075.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16076.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16077.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16078.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16079.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16080.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16081.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16082.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16083.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16084.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16085.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16086.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16087.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16088.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16089.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16090.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16091.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16092.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16093.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16094.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16095.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16096.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16097.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16098.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16099.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16100.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16101.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16102.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16103.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16104.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16105.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16106.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16107.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16108.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16109.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16110.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16111.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16112.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16113.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16114.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16115.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16116.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16117.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16118.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16119.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16120.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16121.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16122.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16123.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16124.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16125.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16126.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16127.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16128.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16129.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16130.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16131.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16132.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16133.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16134.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16135.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16136.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16138.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16139.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16140.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16142.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16144.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16146.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16148.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16149.000000] [simulator/INFO] on5 is sleeping +[on11:ON:(12) 16425.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 16425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16599.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16601.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16605.000000] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 17204.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 17205.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17206.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17207.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17208.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17209.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17210.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17211.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17212.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17213.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17214.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17215.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17216.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17217.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17218.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17219.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17220.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17221.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17222.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17223.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17224.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17225.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17226.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17227.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17228.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17229.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17230.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17231.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17232.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17233.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17234.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17235.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17236.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17237.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17238.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17239.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17240.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17241.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17242.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17243.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17244.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17245.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17246.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17247.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17248.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17249.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17250.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17251.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17252.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17253.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17254.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17255.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17256.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17257.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17258.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17259.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17260.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17261.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17262.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17263.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17264.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17265.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17266.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17267.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17268.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17269.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17270.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17271.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17272.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17273.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17274.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17275.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17276.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17277.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17278.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17279.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17280.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17281.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17282.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17283.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17284.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17285.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17286.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17287.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17288.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17289.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17290.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17291.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17292.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17293.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17294.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17295.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17296.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17297.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17298.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17299.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17300.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17301.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17302.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17303.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17304.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17305.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17306.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17307.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17308.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17309.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17310.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17311.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17312.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17313.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17314.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17315.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17316.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17317.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17318.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17319.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17320.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17321.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17322.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17323.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17324.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17325.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17326.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17327.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17328.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17329.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17330.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17331.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17332.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17333.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17334.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17335.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17336.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17337.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17338.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17339.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17340.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17341.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17342.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17343.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17344.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17345.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17346.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17347.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17348.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17349.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17350.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17351.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17352.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17353.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17354.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17355.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17356.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17357.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17358.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17359.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17360.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17361.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17362.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17363.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17364.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17365.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17366.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17367.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17368.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17369.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17370.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17371.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17372.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17373.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17374.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17375.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17376.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17377.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17378.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17379.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17380.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17381.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17382.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17383.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17384.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17384.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 17425.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 17425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17426.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17428.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17430.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17432.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17434.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17436.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17438.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17440.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17442.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17444.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17446.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17448.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17450.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17452.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17454.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17456.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17457.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17457.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 17457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17458.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17458.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17459.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17460.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17460.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17461.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17462.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17462.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17463.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17464.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17464.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17465.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17466.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17466.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17467.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17468.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17468.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17469.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17470.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17470.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17471.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17472.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17472.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17473.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17474.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17474.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17475.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17476.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17476.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17477.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17478.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17478.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17479.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17480.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17480.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17481.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17482.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17482.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17483.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17484.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17484.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17485.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17486.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17486.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17487.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17488.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17488.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17489.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17490.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17490.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17491.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17492.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17493.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17494.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17495.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17496.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17497.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17498.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17499.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17500.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17501.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17502.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17503.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17504.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17505.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17506.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17506.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17507.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17508.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17509.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17510.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17511.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17512.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17513.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17514.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17515.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17516.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17517.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17518.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17519.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17520.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17521.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17522.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17523.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17524.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17525.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17526.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17527.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17528.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17529.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17530.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17531.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17532.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17533.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17534.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17535.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17536.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17537.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17538.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17539.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17540.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17541.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17542.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17543.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17544.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17545.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17546.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17547.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17548.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17549.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17550.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17551.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17552.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17553.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17554.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17555.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17556.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17557.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17558.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17559.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17560.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17561.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17562.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17563.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17564.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17565.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17566.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17567.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17568.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17569.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17570.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17571.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17572.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17573.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17574.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17575.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17576.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17577.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17578.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17579.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17580.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17581.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17582.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17583.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17584.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17585.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17586.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17587.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17588.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17589.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17590.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17591.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17592.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17593.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17594.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17595.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17596.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17597.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17598.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17599.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17600.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17601.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17602.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17603.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17604.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17605.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 17605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17637.000000] [simulator/INFO] on3 is sleeping +[on6:ON:(7) 17870.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 17871.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17872.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17873.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17874.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17875.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17876.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17877.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17878.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17879.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17880.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17881.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17882.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17883.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17884.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17885.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17886.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17887.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17888.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17889.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17890.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17891.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17892.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17893.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17894.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17895.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17896.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17897.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17898.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17899.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17900.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17901.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17902.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17903.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17904.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17905.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17906.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17907.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17908.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17909.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17910.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17911.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17912.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17913.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17914.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17915.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17916.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17917.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17918.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17919.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17920.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17921.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17922.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17923.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17924.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17925.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17926.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17927.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17928.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17929.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17930.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17931.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17932.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17933.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17934.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17935.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17936.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17937.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17938.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17939.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17940.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17941.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17942.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17943.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17944.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17945.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17946.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17947.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17948.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17949.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17949.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 17949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 17950.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17950.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17951.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17951.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17952.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17952.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17953.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17953.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17954.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17954.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17955.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17955.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17956.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17956.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17957.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17957.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17958.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17958.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17959.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17959.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17960.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17960.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17961.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17961.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17962.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17962.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17963.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17963.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17964.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17964.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17965.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17965.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17966.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17966.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17967.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17967.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17968.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17968.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17969.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17969.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17970.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17970.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17971.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17971.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17972.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17972.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17973.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17973.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17974.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17974.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17975.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17975.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17976.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17976.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17977.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17977.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17978.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17978.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17979.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17979.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17980.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17980.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17981.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17981.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17982.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17982.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17983.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17983.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17984.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17984.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17985.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17985.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17986.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17986.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17987.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17987.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17988.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17988.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17989.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17989.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17990.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17990.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17991.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17991.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17992.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17992.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17993.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17993.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17994.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17994.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17995.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17995.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17996.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17996.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17997.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17997.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17998.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17998.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17999.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17999.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18000.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18000.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18001.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18001.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18002.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18002.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18003.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18003.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18004.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18004.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18005.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18005.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18006.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18006.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18007.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18007.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18008.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18008.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18009.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18009.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18010.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18010.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18011.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18011.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18012.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18012.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18013.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18013.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18014.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18014.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18015.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18015.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18016.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18016.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18017.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18017.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18018.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18018.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18019.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18019.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18020.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18020.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18021.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18021.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18022.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18022.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18023.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18023.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18024.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18024.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18025.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18025.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18026.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18026.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18027.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18027.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18028.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18028.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18029.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18029.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18030.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18030.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18031.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18031.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18032.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18032.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18033.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18033.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18034.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18034.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18035.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18035.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18036.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18036.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18037.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18037.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18038.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18038.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18039.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18039.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18040.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18040.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18041.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18041.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18042.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18042.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18043.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18043.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18044.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18044.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18045.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18045.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18046.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18046.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18047.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18047.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18048.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18048.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18049.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18049.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18050.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18050.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 18050.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 18051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18129.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 18342.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 18342.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18348.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18351.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18354.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18357.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18360.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18363.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18366.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18369.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18372.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18375.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18378.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18381.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18384.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18396.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18402.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18408.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18414.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18420.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18426.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18432.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18438.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18442.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18444.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18450.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18456.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18462.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18468.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18474.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18480.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18484.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18486.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18488.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18490.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18492.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18494.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18496.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18498.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18500.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18502.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18504.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18506.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18508.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18510.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18512.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18514.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18515.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 18515.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 18515.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 18516.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 18516.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18516.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 18516.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 18516.000000] [simulator/INFO] on10 try to forward a hint +[on5:ON:(6) 18517.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18518.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18519.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18520.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18521.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18522.000000] [simulator/INFO] on3 is sleeping +[on5:ON:(6) 18522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18690.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18690.000000] [simulator/INFO] on1 wakes up +[on5:ON:(6) 18691.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18691.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18692.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18692.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18693.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18693.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18694.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18694.000000] [simulator/INFO] on1 could not receive any data +[on10:ON:(11) 18695.000000] [simulator/INFO] on10 fail to forward a hint +[on5:ON:(6) 18695.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18695.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18696.000000] [simulator/INFO] on5 is sleeping +[on1:ON:(2) 18696.000000] [simulator/INFO] on1 could not receive any data +[on10:ON:(11) 18696.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 18697.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18698.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18699.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18700.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18701.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18702.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18703.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18704.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18705.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18706.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18707.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18708.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18709.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18710.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18711.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18712.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18713.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18714.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18715.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18716.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18717.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18718.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18719.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18720.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18721.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18722.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18723.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18724.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18725.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18726.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18727.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18728.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18729.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18730.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18731.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18732.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18733.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18734.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18735.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18736.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18737.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18738.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18739.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18740.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18741.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18742.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18743.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18744.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18745.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18746.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18747.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18748.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18749.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18750.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18751.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18752.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18753.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18754.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18755.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18756.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18757.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18758.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18759.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18760.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18761.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18762.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18763.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18764.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18765.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18766.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18767.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18768.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18769.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18770.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18771.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18772.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18773.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18774.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18775.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18776.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18777.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18778.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18779.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18780.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18781.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18782.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18783.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18784.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18785.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18786.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18787.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18788.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18789.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18790.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18791.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18792.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18793.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18794.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18795.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18796.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18797.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18798.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18799.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18800.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18801.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18802.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18803.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18804.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18805.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18806.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18807.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18808.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18809.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18810.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18811.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18812.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18813.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18814.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18815.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18816.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18817.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18818.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18819.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18820.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18821.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18822.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18823.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18824.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18825.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18826.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18827.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18828.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18829.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18830.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18831.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18832.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18833.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18834.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18835.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18836.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18837.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18838.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18839.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18840.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18841.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18842.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18843.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18844.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18845.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18846.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18847.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18848.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18849.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18850.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18851.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18852.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18853.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18854.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18855.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18856.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18857.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18858.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18859.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18860.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18861.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18862.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18863.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18864.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18865.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18866.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18867.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18868.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18869.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18870.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18870.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 19220.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 19220.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19221.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19222.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19224.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19226.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19228.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19230.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19232.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19234.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19236.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19238.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19240.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19242.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19244.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19246.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19248.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19250.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19252.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19254.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19256.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19258.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19260.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19262.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19264.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19266.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19268.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19270.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19272.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19274.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19276.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19278.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19280.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19282.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19284.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19286.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19288.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19290.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19292.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19294.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19296.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19298.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19300.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19302.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19304.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19306.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19308.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19310.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19310.000000] [simulator/INFO] on8 wakes up +[on11:ON:(12) 19311.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19311.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19312.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19312.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19313.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19313.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19314.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19314.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19315.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19315.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19316.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19316.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19317.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19317.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19318.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19318.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19319.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19319.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19320.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19320.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19321.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19321.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19322.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19322.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19323.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19323.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19324.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19324.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19325.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19325.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19326.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19326.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19327.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19327.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19328.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19328.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19329.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19329.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19330.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19330.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19331.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19331.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19332.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19332.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19333.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19333.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19334.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19334.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19335.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19335.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19336.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19336.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19337.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19337.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19338.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19338.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19339.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19339.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19340.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19340.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19341.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19341.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19342.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19342.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19343.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19343.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19344.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19344.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19345.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19345.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19345.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 19345.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19346.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19346.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19346.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19347.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19347.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19347.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19348.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19348.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19348.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19349.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19349.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19349.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19350.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19350.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19350.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19351.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19351.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19351.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19352.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19352.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19352.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19353.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19353.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19353.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19354.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19354.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19354.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19355.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19355.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19355.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19356.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19356.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19356.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19357.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19357.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19357.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19358.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19358.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19358.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19359.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19359.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19359.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19360.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19360.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19360.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19361.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19361.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19361.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19362.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19362.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19362.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19363.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19363.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19363.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19364.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19364.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19364.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19365.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19365.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19365.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19366.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19366.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19366.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19367.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19367.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19367.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19368.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19368.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19368.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19369.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19369.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19369.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19370.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19370.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19370.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19371.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19371.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19371.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19372.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19372.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19372.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19373.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19373.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19373.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19374.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19374.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19374.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19375.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19375.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19375.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19376.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19376.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19376.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19377.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19377.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19377.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19378.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19378.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19378.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19379.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19379.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19379.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19380.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19380.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19380.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19381.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19381.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19381.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19382.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19382.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19382.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19383.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19383.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19383.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19384.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19384.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19384.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19385.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19385.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19385.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19386.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19386.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19386.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19387.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19387.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19387.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19388.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19388.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19388.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19389.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19389.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19389.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19390.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19390.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19390.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19391.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19391.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19391.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19392.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19392.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19392.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19393.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19393.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19393.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19394.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19394.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19394.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19395.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19395.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19395.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19396.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19396.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19396.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19397.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19397.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19397.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19398.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19398.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19398.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19399.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19399.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19399.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19400.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19400.000000] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 19400.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19401.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19401.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19402.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19402.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19403.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19403.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19404.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19404.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19405.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19405.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19406.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19406.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19407.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19407.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19408.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19408.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19409.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19409.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19410.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19410.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19411.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19411.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19412.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19412.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19413.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19413.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19414.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19414.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19415.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19415.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19416.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19416.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19417.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19417.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19418.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19418.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19419.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19419.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19420.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19420.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19421.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19421.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19422.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19422.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19423.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19423.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19424.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19424.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19425.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19425.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19426.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19426.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19427.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19427.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19428.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19428.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19429.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19429.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19430.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19430.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19431.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19431.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19432.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19432.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19433.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19433.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19434.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19434.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19435.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19435.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19436.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19436.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19437.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19437.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19438.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19438.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19439.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19439.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19440.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19440.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19441.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19441.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19442.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19442.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19443.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19443.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19444.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19444.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19445.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19445.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19446.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19446.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19447.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19447.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19448.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19448.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19449.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19449.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19450.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19450.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19451.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19451.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19452.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19452.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19453.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19453.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19454.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19454.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19455.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19455.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19456.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19456.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19457.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19457.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19458.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19458.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19459.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19459.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19460.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19460.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19461.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19461.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19462.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19462.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19463.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19463.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19464.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19464.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19465.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19465.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19466.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19466.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19467.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19467.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19468.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19468.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19469.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19469.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19470.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19470.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19471.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19471.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19472.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19472.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19473.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19473.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19474.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19474.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19475.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19475.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19476.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19476.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19477.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19477.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19478.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19478.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19479.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19479.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19480.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19480.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19481.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19481.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19482.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19482.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19483.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19483.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19484.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19484.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19485.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19485.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19486.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19486.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19487.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19487.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19488.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19488.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19489.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19489.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19490.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19490.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 19490.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 19491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19506.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19506.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 19506.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19507.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19508.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19508.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19509.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19510.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19510.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19511.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19512.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19512.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19513.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19514.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19514.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19515.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19516.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19516.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19517.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19518.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19518.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19519.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19520.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19521.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19522.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19523.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19524.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19525.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19525.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 19526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19530.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19531.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19532.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19533.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19534.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19535.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19536.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19537.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19538.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19539.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19540.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19541.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19542.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19543.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19544.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19545.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19546.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19547.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19548.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19549.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19550.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19686.000000] [simulator/INFO] on2 is sleeping +[on9:ON:(10) 20124.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 20125.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20126.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20127.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20128.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20129.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20130.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20131.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20132.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20133.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20134.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20135.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20136.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20137.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20138.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20139.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20140.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20141.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20142.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20143.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20144.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20145.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20146.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20147.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20148.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20149.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20150.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20151.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20152.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20153.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20154.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20155.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20156.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20157.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20158.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20159.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20160.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20161.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20162.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20163.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20164.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20165.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20166.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20167.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20168.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20169.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20170.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20171.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20172.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20173.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20174.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20175.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20176.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20177.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20178.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20179.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20180.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20181.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20182.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20183.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20184.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20185.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20186.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20187.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20188.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20189.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20190.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20191.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20192.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20193.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20194.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20195.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20196.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20197.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20198.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20199.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20200.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20201.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20202.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20203.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20204.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20205.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20206.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20207.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20208.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20209.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20210.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20211.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20212.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20213.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20214.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20215.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20216.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20217.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20218.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20219.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20220.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20221.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20222.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20223.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20224.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20225.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20226.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20227.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20228.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20229.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20230.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20231.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20232.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20233.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20234.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20235.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20236.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20237.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20238.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20239.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20240.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20241.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20242.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20243.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20244.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20245.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20246.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20247.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20248.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20249.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20250.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20251.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20252.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20253.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20254.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20255.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20256.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20257.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20258.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20259.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20260.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20261.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20262.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20263.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20264.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20265.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20266.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20267.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20268.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20269.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20270.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20271.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20272.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20273.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20274.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20275.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20276.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20277.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20278.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20279.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20280.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20281.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20282.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20283.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20284.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20285.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20286.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20287.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20288.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20289.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20290.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20291.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20292.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20293.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20294.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20295.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20296.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20297.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20298.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20299.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20300.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20301.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20302.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20303.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20304.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20304.000000] [simulator/INFO] on9 is sleeping +[on6:ON:(7) 20516.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 20517.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20518.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20519.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20520.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20521.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20522.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20523.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20524.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20525.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20526.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20527.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20528.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20529.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20530.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20531.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20532.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20533.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20534.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20535.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20536.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20537.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20538.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20539.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20540.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20541.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20542.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20543.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20544.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20545.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20546.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20547.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20548.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20549.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20550.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20551.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20552.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20553.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20554.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20555.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20556.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20557.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20558.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20559.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20560.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20561.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20562.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20563.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20564.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20565.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20566.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20567.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20568.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20569.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20570.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20571.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20572.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20573.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20574.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20575.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20576.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20577.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20578.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20579.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20580.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20581.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20582.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20583.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20584.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20585.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20586.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20587.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20588.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20589.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20590.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20591.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20592.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20593.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20594.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20595.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20596.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20597.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20598.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20599.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20600.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20601.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20602.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20603.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20604.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20605.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20606.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20607.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20608.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20609.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20610.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20611.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20612.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20613.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20629.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20630.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20631.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20632.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20633.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20634.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20635.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20636.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20637.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20638.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20639.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20640.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20641.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20692.000000] [simulator/INFO] on6 could not receive any data +[on0:ON:(1) 20692.000000] [simulator/INFO] on0 wakes up +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 received data successfully +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 received a hint along with data successfully +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 is sleeping +[on0:ON:(1) 20732.010320] [simulator/INFO] on0 sent data successfully +[on4:ON:(5) 20794.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 20794.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 received a hint successfully +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 try to forward a hint +[on0:ON:(1) 20795.010320] [simulator/INFO] on0 sent a hint successfully +[on4:ON:(5) 20796.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20797.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20797.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20798.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20799.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20799.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20800.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20801.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20801.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20802.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20803.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20803.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20804.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20805.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20805.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20806.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20807.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20807.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20808.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20809.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20809.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20810.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20811.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20811.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20812.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20813.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20813.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20814.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20815.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20815.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20816.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20817.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20817.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20818.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20819.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20819.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20820.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20821.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20821.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20822.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20823.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20823.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20824.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20825.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20825.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20826.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20827.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20827.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20828.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20829.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20829.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20830.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20831.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20831.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20832.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20833.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20833.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20834.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20835.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20835.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20836.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20837.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20837.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20838.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20839.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20839.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20840.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20841.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20841.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20842.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20843.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20843.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20844.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20845.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20845.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20846.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20847.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20847.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20848.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20849.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20849.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20850.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20851.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20851.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20852.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20853.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20853.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20854.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20855.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20855.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20856.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20857.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20857.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20858.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20859.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20859.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20860.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20861.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20861.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20862.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20863.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20863.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20864.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20865.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20865.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20866.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20867.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20867.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20868.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20869.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20869.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20870.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20871.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20871.010320] [simulator/INFO] on4 try to forward a hint +[on0:ON:(1) 20872.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 20872.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20873.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20873.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20874.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20875.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20875.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20876.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20877.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20877.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20878.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20879.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20879.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20880.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20881.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20881.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20882.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20883.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20883.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20884.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20885.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20885.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20886.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20887.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20887.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20888.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20889.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20889.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20890.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20891.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20891.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20892.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20893.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20893.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20894.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20895.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20895.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20896.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20897.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20897.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20898.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20899.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20899.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20900.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20901.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20901.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20902.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20903.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20903.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20904.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20905.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20905.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20906.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20907.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20907.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20908.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20909.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20909.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20910.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20911.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20911.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20912.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20913.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20913.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20914.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20915.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20915.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20916.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20917.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20917.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20918.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20919.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20919.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20920.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20921.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20921.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20922.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20923.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20923.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20924.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20925.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20925.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20926.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20927.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20927.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20928.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20929.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20929.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20930.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20931.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20931.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20932.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20933.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20933.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20934.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20935.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20935.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20936.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20937.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20937.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20938.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20939.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20939.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20940.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20941.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20941.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20942.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20943.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20943.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20944.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20945.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20945.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20946.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20947.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20947.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20948.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20949.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20949.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20950.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20951.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20951.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20952.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20953.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20953.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20954.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20955.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20955.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20956.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20957.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20957.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20958.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20959.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20959.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20960.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20961.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20961.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20962.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20963.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20963.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20964.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20965.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20965.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20966.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20967.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20967.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20968.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20969.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20969.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20970.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20971.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20971.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20972.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20973.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20973.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20974.000000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20974.989680] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 21139.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 21139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21255.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21257.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21259.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21261.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21263.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21265.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21267.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21269.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21271.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21273.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21275.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21277.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21279.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21281.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21283.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21285.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21287.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21289.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21291.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21293.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21295.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21297.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21299.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21301.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21303.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21305.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21307.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21309.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21311.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21313.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21315.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21317.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21319.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 22105.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 22105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22255.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22257.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22259.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22285.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 22910.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 22910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22992.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22994.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22996.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22998.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23000.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23002.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23004.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23006.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23008.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23009.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23010.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23011.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23012.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23013.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23014.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23015.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23016.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23017.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23018.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23019.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23020.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23021.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23022.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23024.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23026.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23028.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23030.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23032.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23034.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23036.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23038.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23040.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23042.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23044.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23046.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23048.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23050.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23054.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 23054.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 23054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 23055.000000] [simulator/INFO] on4 is observing his environment... +[on11:ON:(12) 23055.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 23055.000000] [simulator/INFO] on4 try to forward a hint +[on11:ON:(12) 23056.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23057.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23058.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23059.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23060.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23061.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23062.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23063.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23064.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23065.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23066.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23067.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23068.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23069.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23070.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23071.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23072.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23073.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23074.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23075.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23076.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23077.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23078.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23079.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23080.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23081.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23082.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23083.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23084.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23085.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23086.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23087.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23088.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23089.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23090.000000] [simulator/INFO] on11 is sleeping +[on9:ON:(10) 23096.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 23097.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23098.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23099.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23100.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23101.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23102.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23103.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23104.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23105.000000] [simulator/INFO] on9 could not receive any data +[on0:ON:(1) 23105.000000] [simulator/INFO] on0 wakes up +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 received data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 received a hint along with data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 23145.010320] [simulator/INFO] on0 sent data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23146.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23147.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23148.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23148.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23149.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23150.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23151.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23151.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23152.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23153.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23154.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23154.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23155.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23156.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23157.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23157.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23158.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23159.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23160.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23160.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23161.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23162.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23163.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23163.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23164.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23165.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23166.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23166.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23167.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23168.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23169.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23169.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23170.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23171.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23172.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23172.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23173.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23174.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23175.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23175.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23176.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23177.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23178.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23178.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23179.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23180.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23181.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23181.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23182.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23183.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23184.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23184.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23185.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23186.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23187.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23187.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23188.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23189.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23190.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23190.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23191.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23192.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23193.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23193.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23194.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23195.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23196.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23196.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23197.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23198.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23199.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23199.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23200.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23201.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23202.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23202.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23203.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23204.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23205.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23205.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23206.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23207.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23208.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23208.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23209.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23210.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23211.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23211.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23212.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23213.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23214.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23214.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23215.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23216.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23217.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23217.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23218.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23219.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23220.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23220.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23221.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23222.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23223.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23223.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23224.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23225.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23226.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23226.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23227.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23228.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23229.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23229.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23230.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23231.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23232.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23232.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23233.010320] [simulator/INFO] on9 fail to forward a hint +[on4:ON:(5) 23234.000000] [simulator/INFO] on4 fail to forward a hint +[on9:ON:(10) 23234.010320] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 23235.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 23235.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23235.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23236.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23237.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23238.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23238.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23239.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23240.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23241.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23241.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23242.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23243.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23244.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23244.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23245.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23246.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23247.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23247.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23248.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23249.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23250.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23250.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23251.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23252.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23253.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23253.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23254.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23255.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23256.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23256.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23257.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23258.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23259.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23259.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23260.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23261.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23262.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23262.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23263.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23264.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23265.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23265.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23266.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23267.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23268.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23268.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23269.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23270.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23271.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23271.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23272.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23273.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23274.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23274.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23275.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23276.010320] [simulator/INFO] on9 is sleeping +[on0:ON:(1) 23285.000000] [simulator/INFO] on0 is sleeping +[on6:ON:(7) 23729.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 23729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23749.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23750.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23751.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23752.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23753.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23754.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23755.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23756.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23757.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23758.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23759.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23760.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23761.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23762.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23763.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23764.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23765.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23766.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23767.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23768.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23769.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23770.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23771.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23772.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23773.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23774.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23775.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23776.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23777.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23778.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23779.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23780.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23781.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23783.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23785.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23787.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23789.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23791.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23793.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23795.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23797.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23799.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23799.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 23799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23800.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23801.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23802.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23803.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23804.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23805.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23806.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23807.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23808.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23809.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23810.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23811.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23812.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23813.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23814.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23815.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23816.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23817.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23818.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23819.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23820.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23821.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23822.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23823.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23824.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23825.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23826.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23827.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23828.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23829.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23830.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23831.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23832.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23833.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23834.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23835.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23836.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23837.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23838.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23839.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23840.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23841.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23842.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23843.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23844.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23844.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23845.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23846.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23846.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23846.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 23846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23847.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23847.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23848.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23848.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23849.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23849.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23850.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23850.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23851.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23851.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23852.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23852.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23853.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23853.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23854.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23854.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23855.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23855.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23856.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23856.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23857.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23857.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23858.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23858.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23859.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23859.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23860.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23860.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23861.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23861.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23862.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23862.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23863.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23863.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23864.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23864.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23865.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23865.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23866.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23866.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23867.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23867.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23868.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23868.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23869.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23869.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23870.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23870.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23871.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23871.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23872.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23872.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23873.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23873.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23874.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23874.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23875.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23875.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23876.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23876.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23877.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23877.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23878.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23878.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23879.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23879.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23880.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23880.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23881.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23881.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23882.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23882.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23883.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23883.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23884.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23884.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23885.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23885.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23885.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23885.000000] [simulator/INFO] on8 wakes up +[on12:ON:(13) 23886.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23886.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23886.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23886.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23887.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23887.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23887.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23887.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23888.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23888.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23888.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23888.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23889.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23889.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23889.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23889.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23890.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23890.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23890.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23890.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23891.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23891.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23891.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23891.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23892.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23892.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23892.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23892.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23893.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23893.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23893.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23893.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23894.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23894.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23894.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23894.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23895.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23895.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23895.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23895.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23896.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23896.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23896.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23896.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23897.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23897.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23897.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23897.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23898.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23898.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23898.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23898.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23899.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23899.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23899.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23899.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23900.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23900.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23900.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23900.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23901.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23901.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23901.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23901.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23902.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23902.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23902.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23902.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23903.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23903.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23903.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23903.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23904.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23904.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23904.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23904.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23905.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23905.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23905.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23905.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23906.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23906.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23906.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23906.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23907.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23907.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23907.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23907.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23908.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23908.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23908.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23908.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23909.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23909.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 23909.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23909.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23910.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23910.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23910.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23911.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23911.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23911.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23912.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23912.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23912.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23913.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23913.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23913.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23914.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23914.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23914.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23915.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23915.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23915.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23916.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23916.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23916.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23917.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23917.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23917.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23918.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23918.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23918.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23919.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23919.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23919.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23920.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23920.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23920.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23921.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23921.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23921.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23922.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23922.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23922.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23923.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23923.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23923.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23924.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23924.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23924.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23925.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23925.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23925.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23926.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23926.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23926.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23927.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23927.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23927.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23928.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23928.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23928.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23929.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23929.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23929.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23930.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23930.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23930.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23931.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23931.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23931.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23932.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23932.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23932.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23933.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23933.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23933.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23934.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23934.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23934.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23935.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23935.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23935.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23936.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23936.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23936.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23937.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23937.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23937.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23938.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23938.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23938.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23939.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23939.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23939.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23940.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23940.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23940.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23941.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23941.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23941.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23942.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23942.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23942.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23943.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23943.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23943.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23944.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23944.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23944.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23945.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23945.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23945.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23946.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23946.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23946.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23947.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23947.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23947.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23948.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23948.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23948.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23949.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23949.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23949.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23950.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23950.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23950.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23951.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23951.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23951.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23952.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23952.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23952.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23953.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23953.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23953.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23954.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23954.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23954.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23955.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23955.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23955.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23956.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23956.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23956.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23957.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23957.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23957.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23958.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23958.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23958.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23959.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23959.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23959.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23960.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23960.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23960.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23961.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23961.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23961.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23962.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23962.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23962.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23963.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23963.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23963.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23964.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23964.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23964.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23965.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23965.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23965.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23966.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23966.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23966.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23967.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23967.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23967.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23968.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23968.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23968.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23969.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23969.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23969.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23970.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23970.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23970.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23971.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23971.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23971.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23972.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23972.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23972.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23973.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23973.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23973.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23974.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23974.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23974.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23975.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23975.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23975.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23976.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23976.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23976.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23977.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23977.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23977.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23978.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23978.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23978.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23979.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23979.000000] [simulator/INFO] on12 is sleeping +[on8:ON:(9) 23979.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23980.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23980.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23981.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23981.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23982.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23982.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23983.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23983.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23984.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23984.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23985.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23985.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23986.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23986.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23987.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23987.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23988.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23988.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23989.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23989.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23990.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23990.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23991.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23991.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23992.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23992.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23993.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23993.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23994.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23994.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23995.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23995.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23996.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23996.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23997.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23997.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23998.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23998.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23999.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23999.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24000.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24000.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24001.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24001.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24002.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24002.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24003.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24003.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24004.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24004.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24005.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24005.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24006.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24006.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24007.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24007.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24008.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24008.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24009.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24009.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24010.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24010.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24011.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24011.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24012.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24012.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24013.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24013.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24014.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24014.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24015.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24015.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24016.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24016.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24017.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24017.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24018.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24018.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24019.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24019.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24020.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24020.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24021.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24021.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24022.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24022.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24023.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24023.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24024.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24024.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24025.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24025.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24026.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 24026.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24027.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24028.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24029.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24030.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24031.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24032.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24033.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24034.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24035.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24036.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24037.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24038.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24039.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24040.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24041.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24042.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24043.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24044.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24045.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24046.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24047.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24048.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24049.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24050.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24051.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24052.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24053.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24054.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24055.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24056.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24057.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24058.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24059.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24060.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24061.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24062.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24063.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24064.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24065.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24065.000000] [simulator/INFO] on8 is sleeping +[on1:ON:(2) 24094.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 24095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24206.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24207.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24208.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24209.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24210.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24211.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24212.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24213.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24214.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24215.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24215.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 24215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24216.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24216.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24217.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24217.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24218.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24218.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24219.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24219.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24220.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24220.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24221.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24221.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24222.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24222.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24223.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24223.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24224.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24224.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24225.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24225.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24226.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24226.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24227.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24227.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24228.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24228.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24229.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24229.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24230.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24230.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24231.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24231.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24232.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24232.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24233.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24233.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24234.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24234.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24235.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24235.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24236.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24236.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24237.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24237.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24238.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24238.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24239.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24239.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24240.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24240.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24241.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24241.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24242.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24242.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24243.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24243.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24244.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24244.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24245.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24245.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24246.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24246.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24247.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24247.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24248.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24248.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24249.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24249.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24250.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24250.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24251.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24251.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24252.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24252.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24253.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24253.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24254.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24254.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24255.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24255.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24256.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24256.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24257.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24257.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24258.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24258.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24259.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24259.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24260.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24260.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24261.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24261.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24262.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24262.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24263.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24263.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24264.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24264.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24265.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24265.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24266.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24266.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24267.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24267.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24268.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24268.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24269.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24269.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24270.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24270.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24271.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24271.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24272.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24272.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24273.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24273.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24274.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24274.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24274.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 24275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24283.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24283.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 24283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24284.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24285.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24285.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24286.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24287.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24287.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24288.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24289.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24289.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24290.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24291.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24291.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24292.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24293.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24293.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24294.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24295.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24295.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24296.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24296.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24297.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24297.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24298.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24298.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24299.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24299.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24300.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24300.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24301.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24301.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24302.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24302.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24303.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24303.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24304.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24304.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24305.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24305.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24306.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24306.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24307.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24307.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24308.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24308.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24309.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24309.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24310.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24310.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24311.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24311.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24312.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24312.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24313.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24313.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24314.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24314.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24315.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24315.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24316.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24316.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24317.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24317.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24318.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24318.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24319.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24319.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24320.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24320.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24321.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24321.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24322.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24322.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24323.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24323.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24324.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24324.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24325.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24325.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24326.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24326.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24327.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24327.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24328.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24328.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24329.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24329.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24330.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24330.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24331.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24331.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24332.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24332.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24333.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24333.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24334.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24334.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24335.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24335.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24336.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24336.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24337.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24337.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24338.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24338.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24339.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24339.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24340.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24340.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24341.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24341.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24342.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24342.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24343.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24343.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24344.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24344.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24345.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24345.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24346.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24346.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24347.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24347.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24348.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24348.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24349.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24349.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24350.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24351.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24351.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24352.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24353.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24353.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24354.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24355.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24355.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24356.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24357.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24357.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24358.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24359.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24359.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24360.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24361.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24361.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24362.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24363.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24363.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24364.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24365.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24365.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24366.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24367.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24367.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24368.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24369.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24369.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24370.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24371.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24371.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24372.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24373.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24373.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24374.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24375.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24375.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24376.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24377.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24377.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24378.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24379.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24379.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24380.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24381.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24381.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24382.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24383.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24383.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24384.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24385.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24385.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24386.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24387.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24387.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24388.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24389.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24389.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24390.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24391.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24391.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24392.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24393.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24393.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24394.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24395.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 24395.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24397.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24399.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24401.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24403.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24463.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 24551.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 24551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24552.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24554.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24556.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24558.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24560.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24562.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24564.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24566.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24568.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24570.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24572.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24574.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24576.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24578.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24580.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24582.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24584.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24586.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24588.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24590.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24592.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24594.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24596.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24598.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24600.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24602.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24604.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24637.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24638.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24639.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24640.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24641.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24642.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24643.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24644.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24645.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24646.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24647.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24648.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24649.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24650.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24651.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24652.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24653.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24654.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24655.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24656.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24657.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24658.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24659.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24660.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24661.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24662.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24663.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24664.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24665.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24666.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24667.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24668.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24669.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24670.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24671.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24672.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24673.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24674.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24675.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24676.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24677.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24731.000000] [simulator/INFO] on3 is sleeping +[on10:ON:(11) 25260.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 25260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25440.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 25878.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 25878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25879.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25880.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25882.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25883.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25885.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25886.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25888.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25889.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25891.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25892.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25894.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25895.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25897.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25898.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25900.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25901.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25903.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25904.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25906.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25907.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25909.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25910.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25912.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25913.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25915.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25916.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25918.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25919.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25921.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25922.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25924.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25925.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25927.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25928.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25930.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25931.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25933.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25934.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25936.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25937.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25939.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25940.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25942.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25942.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25943.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25944.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25945.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25945.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25946.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25947.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25948.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25948.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25949.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25950.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25951.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25951.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25952.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25953.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25954.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25954.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25955.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25956.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25957.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25957.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25958.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25959.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25960.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25960.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25961.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25962.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25963.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25963.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25964.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25965.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25966.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25966.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25967.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25968.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25969.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25969.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25970.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25971.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25972.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25972.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25973.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25974.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25975.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25975.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25976.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25977.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25978.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25978.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25979.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25980.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25981.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25981.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25982.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25983.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25984.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25984.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25985.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25986.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25987.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25987.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25988.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25989.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25990.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25990.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25991.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25992.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25993.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25993.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25994.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25995.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25996.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25996.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25997.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25998.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25999.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25999.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26000.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26001.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26002.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26003.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26005.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26005.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26006.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26007.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26008.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26009.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26011.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26011.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26012.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26013.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26014.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26015.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26017.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26017.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26018.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26019.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26020.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26021.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26023.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26023.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26024.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26025.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26026.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26027.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26029.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26029.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26030.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26031.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26032.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26033.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26035.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26035.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26036.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26037.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26038.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26039.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26041.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26041.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26042.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26043.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26044.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26045.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26047.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26047.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26048.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26049.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26050.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26051.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26053.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26053.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26054.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26055.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26056.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26057.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26058.000000] [simulator/INFO] on9 is sleeping +[on11:ON:(12) 26222.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 26222.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26224.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26226.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26228.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26230.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26232.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26234.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26236.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26238.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26240.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26242.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26244.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26246.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26248.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26250.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26252.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26254.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26256.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26258.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26260.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26262.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26264.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26266.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26268.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26270.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26272.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26274.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26276.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26278.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26280.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26282.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26284.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26286.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26288.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26290.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26292.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26294.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26296.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26298.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26300.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26302.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26304.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26306.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26306.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 26306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26307.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26308.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26309.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26310.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26311.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26311.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26312.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26313.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26313.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26314.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26315.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26315.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26316.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26317.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26317.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26318.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26319.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26319.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26320.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26321.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26321.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26322.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26323.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26323.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26324.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26324.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26325.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26325.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26326.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26326.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26327.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26327.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26328.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26328.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26329.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26329.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26330.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26330.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26331.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26331.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26332.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26332.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26333.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26333.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26334.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26334.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26335.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26335.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26336.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26336.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26337.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26337.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26338.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26338.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26339.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26339.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26340.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26340.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26341.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26341.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26342.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26342.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26343.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26343.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26344.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26344.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26345.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26345.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26346.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26346.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26347.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26347.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26348.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26348.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26349.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26349.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26350.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26350.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26351.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26351.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26352.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26352.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26353.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26353.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26354.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26354.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26355.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26355.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26356.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26356.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26357.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26357.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26358.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26358.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26359.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26359.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26360.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26360.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26361.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26361.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26362.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26362.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26363.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26363.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26364.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26364.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26365.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26365.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26366.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26366.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26367.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26367.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26368.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26368.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26369.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26369.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26370.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26370.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26371.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26371.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26372.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26372.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26373.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26373.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26374.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26374.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26375.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26375.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26376.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26376.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26377.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26377.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26378.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26378.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26379.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26379.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26380.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26380.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26381.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26381.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26382.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26382.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26383.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26383.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26384.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26384.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26385.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26385.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26386.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26386.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26387.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26387.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26388.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26388.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26389.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26389.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26390.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26390.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26391.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26391.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26392.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26392.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26393.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26393.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26394.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26394.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26395.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26395.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26396.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26396.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26397.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26397.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26398.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26398.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26399.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26399.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26400.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26400.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26401.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26401.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26402.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 26402.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26403.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26404.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26405.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26406.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26407.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26408.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26409.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26410.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26411.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26412.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26413.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26414.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26415.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26416.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26417.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26418.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26419.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26420.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26421.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26422.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26423.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26424.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26425.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26426.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26427.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26428.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26429.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26430.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26431.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26432.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26433.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26434.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26435.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26436.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26437.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26438.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26439.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26440.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26441.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26442.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26443.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26444.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26445.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26446.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26447.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26448.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26449.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26450.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26451.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26452.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26453.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26454.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26455.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26456.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26457.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26458.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26459.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26460.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26461.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26462.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26463.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26464.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26465.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26466.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26467.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26469.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26471.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26472.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26473.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26475.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26477.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26478.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26479.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26481.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26483.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26484.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26485.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26486.000000] [simulator/INFO] on12 is sleeping +[on2:ON:(3) 26893.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 26893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27008.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27010.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27012.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27014.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27016.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27018.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27020.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27022.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27024.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27026.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27045.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27047.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27049.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27073.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 27080.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 27081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27206.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27207.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27208.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27209.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27210.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27211.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27212.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27213.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27214.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27215.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27216.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27217.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27218.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27219.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27220.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27221.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27222.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27223.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27224.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27225.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27226.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27227.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27228.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27229.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27230.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27231.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27232.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27233.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27234.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27235.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27236.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27237.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27238.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27239.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27240.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27241.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27242.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27243.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27244.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27245.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27246.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27247.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27248.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27249.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27250.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27251.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27252.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27253.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27254.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27255.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27256.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27257.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27258.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27259.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27260.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27260.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 27274.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 27454.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 27747.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 27747.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27748.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27749.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27750.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27751.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27752.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27753.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27754.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27755.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27756.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27757.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27758.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27759.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27760.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27761.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27762.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27763.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27764.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27766.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27768.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27770.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27772.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27774.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27776.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27778.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27780.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27782.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27784.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27786.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27788.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27790.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27792.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27794.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27796.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27798.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27800.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27802.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27804.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27806.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27808.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27810.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27812.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27814.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27816.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27818.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27820.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27822.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27927.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 28133.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 28134.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28135.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28136.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28137.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28138.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28139.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28140.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28141.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28142.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28143.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28144.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28145.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28146.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28147.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28148.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28149.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28150.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28151.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28152.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28153.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28154.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28155.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28156.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28157.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28158.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28159.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28160.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28161.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28162.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28163.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28164.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28165.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28166.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28167.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28168.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28169.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28170.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28171.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28172.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28173.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28174.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28175.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28176.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28177.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28178.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28179.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28180.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28181.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28182.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28183.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28184.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28185.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28186.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28187.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28188.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28189.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28190.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28191.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28192.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28193.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28194.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28195.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28196.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28197.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28198.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28199.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28200.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28201.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28202.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28203.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28204.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28205.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28206.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28207.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28208.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28209.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28210.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28211.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28212.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28213.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28214.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28215.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28216.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28217.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28218.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28219.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28220.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28221.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28222.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28223.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28224.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28225.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28226.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28227.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28228.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28229.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28230.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28231.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28232.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28233.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28234.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28235.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28236.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28237.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28238.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28239.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28240.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28241.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28242.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28243.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28244.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28245.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28246.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28247.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28248.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28249.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28250.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28251.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28252.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28253.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28254.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28255.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28256.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28257.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28258.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28259.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28260.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28261.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28262.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28263.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28264.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28265.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28266.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28267.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28268.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28269.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28270.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28271.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28272.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28273.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28274.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28275.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28276.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28277.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28278.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28279.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28280.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28281.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28282.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28283.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28284.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28285.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28286.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28287.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28288.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28289.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28290.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28291.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28292.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28293.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28294.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28295.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28296.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28297.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28298.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28299.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28300.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28301.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28302.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28303.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28304.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28305.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28306.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28307.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28308.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28309.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28310.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28311.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28312.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28313.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28313.000000] [simulator/INFO] on8 is sleeping +[on3:ON:(4) 28391.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 28391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28394.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28394.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 28394.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28395.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28396.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28396.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28397.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28398.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28398.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28399.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28400.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28400.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28401.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28402.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28402.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28403.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28404.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28404.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28405.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28406.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28406.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28407.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28408.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28408.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28409.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28410.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28410.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28411.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28412.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28412.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28413.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28414.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28414.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28415.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28416.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28416.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28417.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28418.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28418.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28419.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28420.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28420.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28421.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28422.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28422.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28423.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28424.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28424.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28425.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28426.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28426.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28427.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28428.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28428.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28429.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28430.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28430.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28431.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28432.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28432.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28433.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28434.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28434.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28435.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28436.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28436.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28437.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28438.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28438.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28439.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28440.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28440.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28441.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28442.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28442.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28443.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28444.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28444.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28445.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28446.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28446.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28447.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28448.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28448.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28449.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28450.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28450.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28451.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28452.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28452.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28453.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28454.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28454.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28455.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28456.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28456.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28457.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28458.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28458.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28459.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28460.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28460.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28461.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28462.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28462.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28463.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28464.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28464.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28465.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28466.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28466.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28467.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28468.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28468.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28469.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28470.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28470.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28471.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28472.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28472.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28473.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28474.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28474.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28475.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28476.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28476.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28477.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28478.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28479.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28480.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28481.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28482.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28483.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28484.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28485.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28486.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28487.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28488.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28489.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28490.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28491.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28492.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28493.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28494.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28495.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28496.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28497.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28498.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28499.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28500.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28501.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28502.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28503.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28504.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28505.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28506.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28507.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28508.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28509.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28510.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28511.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28512.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28513.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28514.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28514.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28514.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 28514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28515.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28515.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28516.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28516.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28517.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28517.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28518.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28518.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28519.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28519.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28520.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28520.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28521.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28521.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28522.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28522.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28523.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28523.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28524.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28524.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28525.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28525.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28526.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28526.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28527.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28527.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28528.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28528.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28529.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28529.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28530.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28530.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28531.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28531.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28532.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28532.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28533.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28533.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28534.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28534.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28535.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28535.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28536.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28536.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28537.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28537.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28538.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28538.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28539.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28539.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28540.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28540.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28541.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28541.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28542.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28542.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28543.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28543.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28544.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28544.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28545.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28545.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28546.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28546.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28547.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28547.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28548.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28548.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28549.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28549.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28550.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28550.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28551.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28551.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28552.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28552.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28552.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28553.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28553.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28554.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28554.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28554.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28555.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28555.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28556.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28556.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28556.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28557.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28557.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28558.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28558.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28558.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28559.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28559.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28560.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28560.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28560.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28561.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28561.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28562.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28562.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28562.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28563.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28563.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28564.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28564.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28564.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28565.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28565.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28566.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28566.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28566.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28567.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28567.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28568.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28568.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28568.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28569.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28569.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28570.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28570.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28570.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28571.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28571.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28571.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 28572.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28572.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28573.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28574.000000] [simulator/INFO] on4 is sleeping +[on6:ON:(7) 28574.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28576.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28578.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28580.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28582.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28584.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28586.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28588.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28590.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28592.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28594.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28596.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28598.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28600.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28602.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28604.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28606.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28608.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28610.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28612.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28614.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28616.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28618.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28620.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28622.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28624.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28626.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28628.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28630.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28632.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28634.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28635.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28635.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 28635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28636.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28636.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28637.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28638.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28638.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28639.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28640.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28640.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28641.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28642.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28642.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28643.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28644.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28644.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28645.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28646.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28646.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28647.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28648.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28648.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28649.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28650.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28650.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28651.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28652.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28652.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28653.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28654.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28654.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28655.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28656.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28656.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28657.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28658.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28658.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28659.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28660.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28660.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28661.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28662.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28662.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28663.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28664.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28664.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28665.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28666.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28666.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28667.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28668.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28668.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28669.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28670.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28670.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28671.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28672.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28672.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28673.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28674.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28674.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28675.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28676.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28676.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28677.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28678.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28678.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28679.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28680.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28680.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28681.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28682.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28682.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28683.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28684.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28685.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28686.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28687.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28688.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28689.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28690.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28691.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28692.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28693.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28694.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28694.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 28695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28757.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28759.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28761.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28763.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28765.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28767.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28769.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28771.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28773.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28775.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28777.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28779.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28781.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28783.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28784.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28785.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28786.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28787.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28788.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28789.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28790.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28791.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28792.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28793.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28794.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28795.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28796.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28797.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28798.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28799.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28800.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28801.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28802.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28803.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28804.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28805.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28806.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28807.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28808.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28809.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28810.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28811.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28812.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28813.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28814.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28815.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 28874.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 28874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28998.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 28998.000000] [simulator/INFO] on1 wakes up +[on2:ON:(3) 28999.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 28999.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29000.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29000.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29001.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29001.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29002.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29002.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29003.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29003.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29004.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29004.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29005.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29005.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29006.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29006.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29007.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29007.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29008.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29008.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29009.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29009.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29010.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29010.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29011.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29011.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29012.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29012.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29013.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29013.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29014.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29014.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29015.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29015.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29016.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29016.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29017.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29017.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29018.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29018.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29019.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29019.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29020.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29020.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29021.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29021.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29022.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29022.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29023.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29023.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29024.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29024.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29025.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29025.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29026.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29026.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29027.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29027.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29028.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29028.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29029.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29029.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29030.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29030.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29031.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29031.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29032.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29032.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29033.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29033.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29034.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29034.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29035.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29035.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29036.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29036.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29037.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29037.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29038.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29038.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29039.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29039.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29040.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29040.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29041.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29041.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29042.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29042.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29043.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29043.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29044.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29044.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29045.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29045.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29046.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29046.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29047.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29047.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29048.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29048.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29049.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29049.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29050.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29050.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29051.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29051.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29052.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29052.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29053.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29053.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29054.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 29054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29095.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29095.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 29095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29096.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29096.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29097.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29097.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29098.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29098.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29099.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29099.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29100.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29100.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29101.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29101.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29102.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29102.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29103.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29103.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29104.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29104.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29105.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29105.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29106.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29106.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29107.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29107.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29108.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29108.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29109.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29109.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29110.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29110.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29111.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29111.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29112.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29112.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29113.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29113.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29114.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29114.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29115.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29115.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29116.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29116.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29117.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29117.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29118.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29118.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29119.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29119.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29120.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29120.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29121.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29121.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29122.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29122.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29123.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29123.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29124.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29124.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29125.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29125.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29126.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29126.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29127.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29127.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29128.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29128.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29129.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29129.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29130.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29130.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29131.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29131.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29132.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29132.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29133.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29133.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29134.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29134.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29135.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29135.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29136.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29136.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29137.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29137.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29138.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29138.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29139.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29139.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29140.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29140.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29141.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29141.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29142.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29142.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29143.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29143.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29144.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29144.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29145.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29145.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29146.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29146.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29147.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29147.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29148.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29148.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29149.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29149.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29150.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29150.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29151.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29151.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29152.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29152.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29153.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29153.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29154.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29154.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29155.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29155.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29156.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29156.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29157.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29157.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29158.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29158.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29159.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29159.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29160.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29160.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29161.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29161.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29162.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29162.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29163.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29163.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29164.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29164.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29165.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29165.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29166.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29166.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29167.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29167.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29168.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29168.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29169.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29169.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29170.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29170.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29171.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29171.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29171.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 29171.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29172.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29172.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29172.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29173.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29173.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29173.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29174.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29174.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29174.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29175.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29175.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29175.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29176.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29176.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29176.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29177.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29177.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29177.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29178.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29178.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29178.000000] [simulator/INFO] on1 is sleeping +[on7:ON:(8) 29179.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29179.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29180.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29181.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29181.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29182.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29183.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29183.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29184.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29185.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29185.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29186.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29187.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29187.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29188.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29189.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29189.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29190.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29191.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29191.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29192.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29193.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29193.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29194.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29195.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29195.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29196.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29197.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29198.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29199.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29200.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29201.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29202.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29203.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29204.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29205.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29206.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29207.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29208.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29209.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29210.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29211.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29212.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29213.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29214.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29215.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29216.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29217.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29218.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29219.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29220.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29221.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29222.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29223.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29224.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29225.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29226.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29227.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29228.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29229.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29230.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29230.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29230.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 29230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29231.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29231.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29232.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29232.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29233.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29233.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29234.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29234.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29235.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29235.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29236.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29236.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29237.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29237.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29238.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29238.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29239.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29239.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29240.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29240.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29241.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29241.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29242.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29242.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29243.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29243.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29244.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29244.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29245.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29245.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29246.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29246.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29247.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29247.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29248.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29248.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29249.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29249.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29250.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29250.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29251.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29251.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29252.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29252.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29253.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29253.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29254.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29254.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29255.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29255.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29256.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29256.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29257.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29257.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29258.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29258.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29258.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29258.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 29258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29259.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29259.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29259.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29260.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29260.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29260.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29261.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29261.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29261.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29262.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29262.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29262.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29263.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29263.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29263.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29264.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29264.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29264.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29265.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29265.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29265.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29266.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29266.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29266.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29267.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29267.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29267.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29268.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29268.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29268.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29269.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29269.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29269.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29270.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29270.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29270.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29271.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29271.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29271.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29272.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29272.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29272.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29273.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29273.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29273.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29274.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29274.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29274.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29275.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29275.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29275.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 29275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29276.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29276.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29277.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29277.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29278.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29278.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29279.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29279.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29280.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29280.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29281.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29281.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29282.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29282.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29283.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29283.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29284.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29284.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29285.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29285.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29286.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29286.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29287.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29287.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29288.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29288.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29289.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29289.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29290.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29290.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29291.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29291.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29292.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29292.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29293.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29293.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29294.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29294.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29295.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29295.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29296.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29296.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29297.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29297.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29298.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29298.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29299.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29299.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29300.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29300.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29301.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29301.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29302.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29302.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29303.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29303.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29304.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29304.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29305.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29305.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29306.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29306.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29307.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29307.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29308.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29308.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29309.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29309.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29309.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29310.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29310.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29311.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29311.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29312.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29312.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29313.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29313.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29314.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29314.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29315.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29315.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29315.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29316.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29316.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29317.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29317.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29318.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29318.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29319.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29319.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29320.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29320.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29321.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29321.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29321.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29322.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29322.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29323.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29323.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29324.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29324.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29324.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29325.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29325.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29326.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29326.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29326.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29327.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29327.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29327.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29328.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29328.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29328.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29329.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29329.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29330.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29330.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29330.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29331.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29331.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29332.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29332.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29332.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29333.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29333.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29333.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29334.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29334.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29334.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29335.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29335.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29336.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29336.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29336.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29337.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29337.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29338.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29338.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29338.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29339.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29339.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29339.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29340.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29340.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29340.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29341.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29341.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29342.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29342.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29342.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29343.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29343.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29344.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29344.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29344.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29345.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29345.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29346.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29346.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29346.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29347.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29347.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29348.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29348.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29348.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29349.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29349.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29350.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29350.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29350.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29351.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29351.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29351.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 29352.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29352.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29353.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29353.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29354.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29354.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29355.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29355.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29356.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29356.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29357.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29357.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29358.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29358.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29359.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29359.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29360.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29360.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29361.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29361.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29362.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29362.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29363.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29363.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29364.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29364.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29365.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29365.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29366.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29366.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29367.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29367.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29368.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29368.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29369.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29369.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29370.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29370.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29371.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29371.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29372.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29372.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29373.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29373.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29374.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29374.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29375.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29375.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29376.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29376.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29377.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29377.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29378.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29378.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29379.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29379.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29380.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29380.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29381.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29381.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29382.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29382.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29383.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29383.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29384.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29384.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29385.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29385.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29386.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29386.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29387.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29387.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29388.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29388.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29389.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29389.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29390.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29390.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29391.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29391.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29392.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29392.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29393.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29393.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29394.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29394.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29395.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29395.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29396.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29396.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29397.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29397.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29398.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29398.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29399.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29399.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29400.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29400.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29401.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29401.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29402.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29402.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29403.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29403.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29404.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29404.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29405.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29406.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29406.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29407.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29408.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29408.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29409.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29410.000000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 29410.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29411.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29412.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29413.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29414.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29415.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29416.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29417.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29418.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29419.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29420.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29421.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29422.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29423.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29424.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29425.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29426.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29427.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29428.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29429.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29430.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29431.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29432.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29433.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29434.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29435.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29436.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29437.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29438.000000] [simulator/INFO] on12 is sleeping +[on8:ON:(9) 29610.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 29611.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29612.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29613.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29614.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29615.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29616.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29617.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29618.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29619.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29620.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29621.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29622.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29623.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29624.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29625.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29626.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29627.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29628.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29629.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29630.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29631.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29632.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29633.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29634.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29635.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29636.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29637.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29638.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29639.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29640.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29641.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29642.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29643.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29644.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29645.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29646.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29647.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29648.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29649.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29650.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29651.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29652.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29653.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29654.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29655.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29656.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29657.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29658.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29659.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29660.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29661.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29662.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29663.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29664.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29665.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29666.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29667.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29668.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29669.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29670.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29671.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29672.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29673.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29674.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29675.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29676.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29677.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29678.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29679.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29680.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29681.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29682.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29683.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29684.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29685.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29686.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29687.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29688.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29689.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29690.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29691.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29692.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29693.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29694.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29695.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29696.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29697.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29698.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29699.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29700.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29701.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29702.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29703.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29704.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29705.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29706.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29707.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29708.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29709.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29710.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29711.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29712.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29713.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29714.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29715.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29716.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29717.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29718.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29719.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29720.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29721.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29722.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29723.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29724.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29725.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29726.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29727.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29728.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29729.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29730.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29731.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29732.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29733.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29734.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29735.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29736.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29737.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29738.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29739.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29740.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29741.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29742.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29743.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29744.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29745.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29746.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29747.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29748.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29749.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29750.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29751.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29752.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29753.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29754.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29755.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29756.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29757.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29758.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29759.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29760.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29761.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29762.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29763.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29764.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29765.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29766.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29767.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29768.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29769.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29770.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29771.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29772.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29773.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29774.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29775.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29776.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29777.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29778.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29779.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29780.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29781.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29782.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29783.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29784.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29785.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29786.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29787.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29788.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29789.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29790.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29790.000000] [simulator/INFO] on8 is sleeping +[on0:ON:(1) 29996.000000] [simulator/INFO] on0 wakes up +[on11:ON:(12) 30051.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 30051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 30052.010320] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 30053.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30054.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30054.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30055.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30056.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30056.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30057.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30058.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30058.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30059.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30060.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30060.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30061.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30062.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30062.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30063.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30064.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30064.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30065.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30066.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30066.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30067.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30068.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30068.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30069.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30070.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30070.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30071.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30072.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30072.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30073.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30074.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30074.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30075.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30076.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30076.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30077.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30078.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30078.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30079.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30080.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30080.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30081.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30082.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30082.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30083.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30084.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30084.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30085.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30086.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30086.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30087.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30088.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30088.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30089.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30090.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30090.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30091.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30092.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30092.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30093.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30094.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30094.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30095.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30096.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30096.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30097.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30098.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30098.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30099.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30100.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30100.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30101.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30102.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30102.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30103.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30104.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30104.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30105.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30106.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30106.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30107.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30108.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30108.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30109.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30110.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30110.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30111.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30112.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30112.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30113.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30114.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30114.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30115.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30116.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30116.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30117.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30118.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30118.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30119.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30120.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30120.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30121.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30122.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30122.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30123.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30124.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30124.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30125.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30126.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30126.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30127.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30128.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30128.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30129.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30130.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30130.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30131.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30132.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30132.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30133.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30134.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30134.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30135.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30136.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30136.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30137.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30138.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30138.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30139.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30140.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30140.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30141.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30142.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30142.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30143.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30144.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30144.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30145.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30146.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30146.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30147.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30148.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30148.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30149.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30150.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30150.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30151.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30152.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30152.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30153.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30154.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30154.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30155.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30156.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30156.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30157.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30158.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30158.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30159.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30160.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30160.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30161.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30162.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30162.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30163.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30164.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30164.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30165.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30166.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30166.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30167.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30168.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30168.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30169.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30170.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30170.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30171.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30172.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30172.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30173.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30174.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30174.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30175.010320] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 30176.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 30176.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30176.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30177.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30178.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30178.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30179.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30180.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30180.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30181.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30182.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30182.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30183.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30184.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30184.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30185.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30186.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30186.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30187.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30188.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30188.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30189.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30190.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30190.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30191.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30192.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30192.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30193.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30194.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30194.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30195.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30196.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30196.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30197.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30198.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30198.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30199.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30200.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30200.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30201.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30202.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30202.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30203.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30204.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30204.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30205.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30206.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30206.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30207.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30208.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30208.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30209.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30210.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30210.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30211.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30212.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30212.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30213.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30214.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30214.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30215.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30216.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30216.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30217.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30218.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30218.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30219.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30220.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30220.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30221.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30222.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30222.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30223.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30224.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30224.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30225.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30226.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30226.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30227.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30228.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30228.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30229.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30230.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30230.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30231.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30231.989680] [simulator/INFO] on11 is sleeping +[on5:ON:(6) 30516.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 30516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30569.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30569.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 30569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30570.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30571.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30572.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30573.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30574.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30575.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30576.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30577.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30578.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30579.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30580.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30581.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30582.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30583.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30584.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30585.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30586.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30587.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30588.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30589.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30590.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30591.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30592.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30593.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30594.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30595.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30596.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30597.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30598.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30599.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30600.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30601.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30602.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30603.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30604.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30605.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30606.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30607.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30608.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30609.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30610.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30611.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30612.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30613.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30614.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30615.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30616.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30617.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30618.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30619.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30620.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30621.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30622.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30623.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30624.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30625.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30626.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30627.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30628.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30629.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30630.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30631.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30632.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30633.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30634.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30635.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30636.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30637.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30638.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30639.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30640.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30641.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30642.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30643.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30644.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30645.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30646.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30647.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30648.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30649.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30650.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30651.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30652.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30653.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30654.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30655.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30656.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30657.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30658.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30659.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30660.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30661.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30662.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30663.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30664.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30665.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30666.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30667.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30668.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30669.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30670.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30671.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30672.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30673.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30674.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30675.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30676.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30677.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30678.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30679.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30680.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30681.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30682.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30683.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30683.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30684.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30685.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30686.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30687.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30688.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30689.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30690.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30691.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30692.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30693.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30694.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30695.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30696.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30696.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 30697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30715.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30717.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30719.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30720.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30721.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30722.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30723.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30724.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30725.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30726.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30727.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30728.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30749.000000] [simulator/INFO] on6 is sleeping +[on10:ON:(11) 31065.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 31065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31077.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31079.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31081.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31083.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31085.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31087.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31089.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31091.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31093.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31095.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31097.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31245.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 31644.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 31644.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31645.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31646.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31648.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31650.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31824.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 32408.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 32408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32535.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32535.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 32535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32536.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32537.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32538.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32539.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32540.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32541.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32542.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32543.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32544.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32545.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32546.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32547.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32548.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32549.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32550.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32551.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32552.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32553.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32554.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32555.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32556.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32557.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32558.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32559.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32560.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32561.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32562.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32563.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32564.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32565.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32566.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32567.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32568.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32569.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32570.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32571.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32572.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32573.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32574.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32575.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32576.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32577.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32578.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32579.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32580.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32581.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32582.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32583.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32584.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32585.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32586.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32587.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32588.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32588.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 32589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32590.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32592.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32594.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32596.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32598.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32600.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32602.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32604.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32637.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32638.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32639.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32640.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32641.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32642.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32643.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32644.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32645.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32646.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32647.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32648.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32649.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32650.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32651.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32652.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32653.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32654.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32655.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32656.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32657.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32658.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32659.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32660.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32661.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32662.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32663.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32664.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32665.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32666.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32667.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32668.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32669.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32670.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32671.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32672.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32673.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32674.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32675.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32676.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32677.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32715.000000] [simulator/INFO] on3 is sleeping +[on12:ON:(13) 33040.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 33040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33220.000000] [simulator/INFO] on12 is sleeping +[on6:ON:(7) 33859.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 33859.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33861.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33863.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33865.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33867.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33869.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33871.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33873.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33875.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33877.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33879.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33881.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33883.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33885.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33887.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33889.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33891.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33893.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33895.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33897.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33899.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33901.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33903.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33905.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33907.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33909.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33911.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33913.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33915.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33917.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33919.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33921.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33923.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33925.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33927.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33929.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33931.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33933.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33935.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33937.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33963.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33965.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33967.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33969.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33971.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33973.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33975.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33979.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33981.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34039.000000] [simulator/INFO] on6 is sleeping +[on10:ON:(11) 34264.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 34264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34440.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34441.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34442.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34443.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34444.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 34643.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 34643.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34644.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34645.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34646.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34648.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34650.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34803.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34803.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 34803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34804.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34805.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34806.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34807.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34808.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34809.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34810.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34811.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34812.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34813.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34814.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34815.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34816.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34817.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34818.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34819.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34820.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34821.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34822.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34823.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 34823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34983.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 35152.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 35152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35250.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35250.000000] [simulator/INFO] on1 wakes up +[on2:ON:(3) 35251.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35251.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35252.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35252.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35253.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35253.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35254.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35254.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35255.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35255.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35256.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35256.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35257.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35257.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35258.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35258.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35259.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35259.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35260.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35260.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35261.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35261.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35262.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35262.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35263.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35263.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35264.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35264.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35265.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35265.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35266.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35266.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35267.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35267.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35268.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35268.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35269.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35269.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35270.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35270.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35271.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35271.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35272.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35272.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35273.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35273.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35274.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35274.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35275.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35275.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35276.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35276.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35277.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35277.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35278.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35278.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35279.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35279.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35280.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35280.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35281.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35281.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35282.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35282.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35283.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35283.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35284.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35284.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35285.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35285.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35286.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35286.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35287.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35287.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35288.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35288.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35289.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35289.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35290.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35290.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35291.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35291.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35292.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35292.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35293.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35293.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35294.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35294.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35295.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35295.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35296.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35296.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35297.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35297.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35298.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35298.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35299.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35299.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35300.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35300.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35301.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35301.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35302.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35302.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35303.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35303.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35304.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35304.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35305.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35305.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35306.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35306.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35307.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35307.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35308.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35308.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35309.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35309.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35310.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35310.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35311.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35311.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35312.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35312.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35313.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35313.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35314.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35314.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35315.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35315.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35316.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35316.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35317.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35317.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35318.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35318.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35319.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35319.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35320.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35320.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35321.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35321.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35322.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35322.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35323.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35323.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35324.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35324.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35325.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35325.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35326.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35326.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35327.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35327.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35328.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35328.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35329.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35329.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35330.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35330.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35331.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35331.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35332.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 35332.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35333.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35334.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35335.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35336.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35430.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 35538.000000] [simulator/INFO] on0 wakes up +[on8:ON:(9) 35630.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 received a hint successfully +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 add a new hint at 38215.000000 for a duration of 180.000000 +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 try to forward a hint +[on0:ON:(1) 35630.010320] [simulator/INFO] on0 sent a hint successfully +[on8:ON:(9) 35630.310320] [simulator/INFO] on8 fail to forward a hint +[on11:ON:(12) 35650.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 35650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35670.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 received data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 received a hint along with data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 35670.620640] [simulator/INFO] on0 sent data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 try to forward a hint +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 35670.630960] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 35671.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35672.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35672.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35673.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35674.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35674.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35675.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35676.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35676.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35677.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35678.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35678.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35679.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35680.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35680.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35681.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35682.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35682.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35683.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35684.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35684.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35685.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35686.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35686.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35687.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35688.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35688.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35689.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35690.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35690.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35691.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35692.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35692.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35693.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35694.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35694.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35695.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35696.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35696.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35697.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35698.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35698.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35699.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35700.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35700.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35701.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35702.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35702.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35703.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35704.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35704.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35705.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35706.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35706.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35707.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35708.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35708.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35709.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35710.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35710.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35711.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35712.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35712.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35713.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35714.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35714.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35715.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35716.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35716.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35717.630960] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 35718.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 35718.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35718.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35719.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35720.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35720.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35721.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35722.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35722.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35723.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35724.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35724.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35725.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35726.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35726.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35727.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35728.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35728.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35729.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35730.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35730.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35731.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35732.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35732.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35733.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35734.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35734.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35735.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35736.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35736.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35737.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35738.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35738.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35739.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35740.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35740.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35741.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35742.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35742.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35743.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35744.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35744.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35745.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35746.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35746.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35747.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35748.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35748.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35749.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35750.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35750.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35751.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35752.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35752.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35753.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35754.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35754.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35755.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35756.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35756.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35757.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35758.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35758.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35759.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35760.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35760.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35761.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35762.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35762.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35763.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35764.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35764.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35765.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35766.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35766.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35767.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35768.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35768.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35769.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35770.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35770.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35771.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35772.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35772.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35773.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35774.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35774.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35775.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35776.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35776.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35777.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35778.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35778.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35779.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35780.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35780.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35781.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35782.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35782.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35783.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35784.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35784.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35785.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35786.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35786.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35787.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35788.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35788.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35789.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35790.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35790.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35791.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35792.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35792.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35793.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35794.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35794.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35795.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35796.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35796.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35797.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35798.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35798.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35799.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35800.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35800.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35801.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35802.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35802.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35803.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35804.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35804.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35805.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35806.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35806.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35807.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35808.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35808.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35809.630960] [simulator/INFO] on11 fail to forward a hint +[on8:ON:(9) 35810.000000] [simulator/INFO] on8 fail to forward a hint +[on11:ON:(12) 35810.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35810.630960] [simulator/INFO] on11 try to forward a hint +[on8:ON:(9) 35811.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 35811.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35812.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35812.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35813.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35814.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35814.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35815.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35816.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35816.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35817.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35818.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35818.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35819.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35820.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35820.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35821.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35822.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35822.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35823.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35824.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35824.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35825.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35826.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35826.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35827.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35828.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35828.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35829.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35830.630960] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 35833.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 35833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35834.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35836.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35838.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35840.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35842.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35844.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35846.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35848.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35850.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35852.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35854.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35856.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35858.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35860.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35862.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35864.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35866.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35868.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35870.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35872.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35873.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35874.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35875.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35876.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35877.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35878.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35879.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35880.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35881.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35882.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35883.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35884.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35885.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35886.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35887.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35888.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35890.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35892.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35894.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35896.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35898.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35900.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35902.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35904.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35906.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35908.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35910.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35912.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35914.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35916.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35918.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35920.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35922.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35924.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35926.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35928.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35930.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35932.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35934.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35936.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35937.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35938.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35939.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35940.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35941.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35942.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35943.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35944.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35945.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35946.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35947.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35948.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35949.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35950.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35951.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35952.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35953.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35954.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35955.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35956.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35957.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35958.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35959.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35960.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35961.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35962.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35963.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35964.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35965.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35966.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35967.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35968.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35969.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35970.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35971.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35972.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35973.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35974.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35975.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35976.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35977.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35978.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35979.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35980.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35981.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35982.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35983.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35984.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35985.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35986.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35987.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35988.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35989.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35990.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35991.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35992.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35993.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35994.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35995.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35996.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35997.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35998.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35999.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36000.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36001.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36002.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36003.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36004.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36005.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36006.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36007.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36008.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36009.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36010.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36011.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36012.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36013.000000] [simulator/INFO] on4 is sleeping +[on4:ON:(5) 36097.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 36097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36098.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36100.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36102.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36104.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36106.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36108.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36110.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36112.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36114.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36116.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36118.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36267.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36268.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36269.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36270.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36271.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36272.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36273.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36274.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36275.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36276.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36277.000000] [simulator/INFO] on4 is sleeping +[on3:ON:(4) 36702.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 36702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36732.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36734.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36736.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36738.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36740.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36742.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36744.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36746.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36748.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36750.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36752.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36754.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36756.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36758.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36760.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36762.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36764.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36766.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36768.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36770.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36772.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36774.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36776.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36778.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36780.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36782.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36782.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 36782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36783.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36784.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36785.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36786.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36787.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36788.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36789.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36790.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36791.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36792.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36793.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36794.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36795.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36796.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36797.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36798.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36799.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36800.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36801.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36802.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36803.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36804.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36805.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36806.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36807.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36808.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36809.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36810.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36811.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36812.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36813.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36814.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36815.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36816.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36817.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36818.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36819.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36820.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36821.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36822.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36823.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36824.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36825.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36826.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36827.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36828.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36829.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36830.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36831.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36832.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36833.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36834.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36835.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36836.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36837.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36838.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36839.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36840.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36841.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36842.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36843.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36843.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 36843.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 36843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 36844.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 36844.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36844.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 36844.000000] [simulator/INFO] on11 try to forward a hint +[on6:ON:(7) 36845.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36846.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36847.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36848.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36849.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36850.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36851.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36852.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36853.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36854.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36855.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36856.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36857.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36858.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36859.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36860.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36861.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36862.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36863.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36864.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36865.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36866.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36867.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36868.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36869.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36870.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36871.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36872.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36873.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36874.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36875.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36876.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36877.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36878.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36879.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36880.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36881.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36882.000000] [simulator/INFO] on3 is sleeping +[on6:ON:(7) 36882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36883.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36885.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36887.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36889.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36891.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36893.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36895.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36897.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36899.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36901.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36903.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36905.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36907.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36909.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36911.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36913.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36915.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36917.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36919.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36921.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36923.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36925.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36927.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36929.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36931.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36933.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36935.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36937.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36962.000000] [simulator/INFO] on6 is sleeping +[on11:ON:(12) 37023.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 37024.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 37074.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 37074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37254.000000] [simulator/INFO] on12 is sleeping +[on9:ON:(10) 37292.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 37292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37293.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37295.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37297.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37299.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37301.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37303.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37305.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37383.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37383.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 37383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37384.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37385.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37386.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37387.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37388.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37389.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37390.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37391.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37392.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37393.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37394.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37395.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37396.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37397.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37398.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37399.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37400.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37401.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37402.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37403.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37403.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37404.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37405.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37406.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37407.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37408.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37409.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37409.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37410.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37411.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37412.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37413.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37414.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37415.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37415.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37416.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37417.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37417.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37418.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37419.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37419.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37420.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37421.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37421.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37422.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37423.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37423.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37424.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37425.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37426.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37427.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37428.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37429.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37430.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37431.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37432.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37433.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37434.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37435.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37436.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37437.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37438.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37439.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37440.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37441.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37442.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37443.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37444.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37445.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37446.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37447.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37448.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37449.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37450.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37451.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37452.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37453.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37454.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37455.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37456.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37457.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37457.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37458.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37459.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37459.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37460.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37461.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37461.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37462.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37463.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37463.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37464.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37465.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37465.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37466.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37466.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37467.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37467.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37468.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37468.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37469.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37469.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37470.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37470.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37471.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37471.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37472.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37472.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 37473.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37474.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37475.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37476.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37477.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37478.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37479.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37480.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37482.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37484.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37486.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37488.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37490.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37506.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37563.000000] [simulator/INFO] on7 is sleeping +[on1:ON:(2) 37910.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 37911.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37912.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37913.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37914.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37915.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37916.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37917.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37918.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37919.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37920.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37921.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37922.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37923.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37924.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37925.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37926.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37927.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37928.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37929.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37930.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37931.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37932.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37933.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37934.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37935.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37936.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37937.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37938.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37939.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37940.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37941.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37942.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37943.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37944.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37945.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37946.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37947.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37948.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37949.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37950.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37951.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37952.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37953.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37954.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37955.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37956.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37957.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37958.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37959.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37960.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37961.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37962.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37963.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37964.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37965.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37966.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37967.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37968.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37969.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37970.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37971.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37972.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37973.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37974.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37975.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37976.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37977.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37978.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37979.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37980.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37981.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37982.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37983.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37984.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37985.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37986.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37987.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37988.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37989.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37990.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37991.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37992.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37993.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37994.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37995.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37996.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37997.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37998.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37999.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38000.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38001.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38002.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38003.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38004.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38005.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38006.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38007.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38008.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38009.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38010.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38011.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38012.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38013.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38014.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38015.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38016.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38017.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38018.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38019.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38020.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38021.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38022.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38023.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38024.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38025.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38026.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38027.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38028.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38029.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38030.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38031.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38032.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38033.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38034.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38035.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38036.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38037.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38038.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38039.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38040.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38041.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38042.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38043.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38044.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38045.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38046.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38047.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38048.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38049.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38050.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38051.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38052.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38053.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38090.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 38215.000000] [simulator/INFO] on0 wakes up +[on8:ON:(9) 38215.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 38215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 received a hint successfully +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 try to forward a hint +[on0:ON:(1) 38216.010320] [simulator/INFO] on0 sent a hint successfully +[on8:ON:(9) 38217.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38218.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38218.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38219.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38220.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38220.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38221.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38222.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38222.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38223.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38224.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38224.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38225.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38226.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38226.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38227.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38228.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38228.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38229.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38230.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38230.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38231.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38232.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38232.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38233.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38234.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38234.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38235.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38236.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38236.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38237.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38238.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38238.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38239.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38240.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38240.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38241.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38242.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38242.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38243.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38244.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38244.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38245.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38246.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38246.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38247.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38248.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38248.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38249.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38250.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38250.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38251.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38252.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38252.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38253.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38254.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38254.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38255.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38256.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38256.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38257.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38258.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38258.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38259.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38260.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38260.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38261.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38262.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38262.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38263.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38264.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38264.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38265.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38266.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38266.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38267.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38268.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38268.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38269.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38270.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38270.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38271.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38272.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38272.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38273.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38274.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38274.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38275.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38276.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38276.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38277.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38278.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38278.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38279.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38280.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38280.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38281.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38282.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38282.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38283.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38284.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38284.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38285.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38286.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38286.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38287.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38288.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38288.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38289.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38290.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38290.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38291.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38292.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38292.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38293.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38294.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38294.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38295.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38296.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38296.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38297.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38298.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38298.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38299.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38300.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38300.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38301.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38302.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38302.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38303.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38304.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38304.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38305.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38306.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38306.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38307.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38308.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38308.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38309.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38310.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38310.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38311.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38312.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38312.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38313.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38314.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38314.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38315.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38316.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38316.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38317.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38318.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38318.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38319.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38320.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38320.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38321.010320] [simulator/INFO] on8 fail to forward a hint +[on10:ON:(11) 38322.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 38322.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 38322.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38322.010320] [simulator/INFO] on8 try to forward a hint +[on10:ON:(11) 38323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 38323.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 38324.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38325.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38325.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38326.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38327.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38327.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38328.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38329.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38329.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38330.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38331.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38331.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38332.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38333.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38333.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38334.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38335.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38335.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38336.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38337.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38337.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38338.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38339.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38339.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38340.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38341.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38341.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38342.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38343.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38343.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38344.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38345.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38345.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38346.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38347.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38347.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38348.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38349.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38349.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38350.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38351.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38351.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38352.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38353.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38353.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38354.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38355.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38355.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38356.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38357.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38357.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38358.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38359.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38359.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38360.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38361.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38361.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38362.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38363.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38363.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38364.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38365.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38365.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38366.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38367.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38367.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38368.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38369.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38369.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38370.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38371.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38371.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38372.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38373.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38373.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38374.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38375.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38375.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38376.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38377.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38377.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38378.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38379.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38379.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38380.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38381.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38381.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38382.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38383.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38383.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38384.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38385.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38385.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38386.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38387.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38387.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38388.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38389.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38389.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38390.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38391.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38391.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38392.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38393.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38393.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38394.010320] [simulator/INFO] on10 fail to forward a hint +[on8:ON:(9) 38395.000000] [simulator/INFO] on8 fail to forward a hint +[on0:ON:(1) 38395.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 38395.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38395.010320] [simulator/INFO] on10 try to forward a hint +[on8:ON:(9) 38396.000000] [simulator/INFO] on8 is sleeping +[on10:ON:(11) 38396.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38397.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38397.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38398.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38399.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38399.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38400.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38401.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38401.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38402.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38403.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38403.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38404.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38405.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38405.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38406.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38407.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38407.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38408.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38409.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38409.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38410.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38411.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38411.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38412.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38413.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38413.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38414.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38415.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38415.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38416.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38417.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38417.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38418.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38419.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38419.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38420.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38421.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38421.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38422.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38423.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38423.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38424.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38425.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38425.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38426.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38427.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38427.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38428.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38429.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38429.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38430.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38431.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38431.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38432.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38433.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38433.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38434.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38435.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38435.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38436.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38437.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38437.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38438.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38439.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38439.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38440.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38441.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38441.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38442.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38443.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38443.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38444.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38445.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38445.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38446.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38447.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38447.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38448.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38449.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38449.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38450.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38451.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38451.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38452.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38453.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38453.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38454.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38455.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38455.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38456.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38457.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38457.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38458.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38459.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38459.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38460.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38461.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38461.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38462.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38463.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38463.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38464.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38465.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38465.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38466.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38467.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38467.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38468.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38469.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38469.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38470.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38471.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38471.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38472.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38473.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38473.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38474.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38475.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38475.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38476.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38477.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38477.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38478.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38479.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38479.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38480.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38481.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38481.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38482.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38483.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38483.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38484.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38485.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38485.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38486.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38487.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38487.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38488.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38489.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38489.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38490.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38491.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38491.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38492.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38493.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38493.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38494.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38495.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38495.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38496.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38497.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38497.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38498.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38499.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38499.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38500.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38501.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38501.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38502.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38502.989680] [simulator/INFO] on10 is sleeping +[on5:ON:(6) 38574.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 38574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38754.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 38827.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 38827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39007.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 39574.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 39574.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39575.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39575.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39576.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39577.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39578.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39578.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39579.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39581.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39581.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39582.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39583.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39584.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39584.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39585.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39586.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39587.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39587.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39588.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39589.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39590.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39590.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39591.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39592.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39593.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39593.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39594.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39595.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39596.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39596.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39597.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39598.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39599.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39599.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39600.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39601.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39602.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39602.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39603.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39604.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39605.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39605.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39606.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39607.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39608.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39608.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39609.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39610.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39611.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39611.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39612.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39613.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39614.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39614.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39615.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39616.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39617.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39617.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39618.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39619.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39620.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39620.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39621.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39622.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39623.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39623.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39624.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39625.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39626.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39626.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39627.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39628.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39629.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39629.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39630.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39631.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39632.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39632.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39633.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39634.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39635.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39635.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39636.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39637.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39638.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39638.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39639.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39640.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39641.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39641.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39642.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39643.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39644.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39644.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39645.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39646.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39647.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39647.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39648.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39649.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39650.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39650.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39651.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39652.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39653.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39653.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39654.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39655.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39656.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39656.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39657.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39658.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39659.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39659.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39660.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39661.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39662.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39662.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39663.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39664.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39665.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39665.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39666.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39667.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39668.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39668.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39669.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39670.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39671.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39671.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39672.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39673.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39674.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39674.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39675.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39676.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39677.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39677.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39678.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39679.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39680.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39680.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39681.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39682.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39683.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39683.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39684.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39685.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39686.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39686.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39687.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39688.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39689.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39689.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39690.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39691.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39692.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39692.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39693.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39694.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39695.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39695.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39696.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39697.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39698.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39698.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39699.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39700.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39701.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39701.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39702.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39703.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39704.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39704.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39705.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39706.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39707.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39707.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39708.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39709.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39710.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39710.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39711.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39712.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39713.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39713.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39714.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39715.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39716.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39716.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39717.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39718.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39719.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39719.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39720.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39721.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39722.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39722.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39723.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39724.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39725.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39725.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39726.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39727.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39728.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39728.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39729.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39730.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39731.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39731.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39732.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39733.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39734.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39734.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39735.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39736.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39737.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39737.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39738.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39739.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39740.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39740.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39741.000000] [simulator/INFO] on8 fail to forward a hint +[on10:ON:(11) 39741.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 39741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 39742.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 39742.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 39742.000000] [simulator/INFO] on10 try to forward a hint +[on8:ON:(9) 39743.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39743.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39744.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39746.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39747.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39749.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39750.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39752.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39753.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39754.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 39764.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 39764.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39766.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39768.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39770.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39772.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39774.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39776.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39778.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39780.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39782.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39784.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39786.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39788.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39790.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39792.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39794.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39796.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39798.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39800.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39802.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39804.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39806.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39808.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39810.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39812.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39814.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39816.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39818.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39820.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39822.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39920.000000] [simulator/INFO] on7 is observing his environment... +[on10:ON:(11) 39921.000000] [simulator/INFO] on10 fail to forward a hint +[on7:ON:(8) 39921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39922.000000] [simulator/INFO] on7 is observing his environment... +[on10:ON:(11) 39922.000000] [simulator/INFO] on10 is sleeping +[on7:ON:(8) 39923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39944.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 41051.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 41051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41231.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 41344.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 41344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41345.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41346.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41348.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41349.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41351.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41352.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41354.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41355.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41357.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41358.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41360.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41361.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41363.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41364.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41366.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41367.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41369.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41370.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41372.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41373.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41375.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41376.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41378.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41379.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41381.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41382.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41384.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41385.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41387.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41388.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41390.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41391.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41393.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41394.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41396.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41397.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41399.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41400.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41402.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41403.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41405.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41406.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41408.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41409.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41411.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41412.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41414.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41415.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41417.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41418.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41420.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41421.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41423.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41424.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41426.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41427.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41429.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41430.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41432.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41433.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41435.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41436.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41438.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41439.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41441.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41442.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41444.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41445.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41447.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41448.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41450.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41451.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41453.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41454.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41456.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41457.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41459.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41460.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41462.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41463.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41465.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41465.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41466.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41467.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41468.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41469.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41471.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41471.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41472.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41473.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41474.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41475.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41477.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41477.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41478.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41479.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41480.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41481.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41483.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41483.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41484.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41485.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41486.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41487.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41489.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41489.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41490.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41491.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41492.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41493.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41495.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41495.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41496.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41497.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41498.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41499.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41501.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41501.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41502.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41503.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41504.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41505.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41507.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41507.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41508.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41509.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41510.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41510.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41511.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41512.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41513.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41513.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41514.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41515.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41516.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41516.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41517.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41518.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41519.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41519.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41520.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41521.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41522.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41522.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41523.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41524.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 41612.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 41612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41613.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41615.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41617.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41619.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41621.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41623.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41625.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41627.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41629.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41631.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41633.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41635.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41637.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41647.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41647.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 41647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41648.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41649.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41650.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41651.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41652.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41653.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41654.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41655.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41656.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41657.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41658.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41659.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41660.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41661.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41662.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41663.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41664.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41665.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41666.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41667.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41668.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41669.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41670.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41671.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41672.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41673.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41674.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41675.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41676.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41677.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41678.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41679.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41680.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41681.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41682.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41683.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41684.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41684.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41685.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41686.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41686.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41687.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41688.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41688.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41689.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41690.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41690.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41691.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41692.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41692.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41693.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41694.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41694.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41695.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41696.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41696.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41697.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41698.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41698.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41699.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41700.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41700.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41701.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41702.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41702.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41703.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41704.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41704.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41705.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41706.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41706.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41707.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41708.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41708.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41709.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41710.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41710.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41711.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41712.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41712.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41713.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41714.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41714.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41715.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41716.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41716.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41717.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41718.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41718.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41719.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41720.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41720.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41721.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41722.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41722.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41723.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41724.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41724.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41725.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41726.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41726.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41727.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41728.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41728.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41729.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41730.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41730.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41731.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41732.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41732.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41733.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41734.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41734.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41735.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41736.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41736.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41737.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41738.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41738.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41739.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41740.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41740.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41741.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41742.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41742.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41743.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41744.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41744.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41745.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41746.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41746.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41747.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41748.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41748.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41749.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41750.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41750.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41751.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41752.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41752.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41753.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41754.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41754.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41755.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41756.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41756.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41757.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41758.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41758.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41759.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41760.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41760.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41761.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41762.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41762.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41763.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41764.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41764.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41765.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41766.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41766.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41767.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41768.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41768.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41769.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41770.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41770.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41771.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41772.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41772.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41773.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41774.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41774.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41775.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41776.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41776.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41777.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41778.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41778.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41779.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41780.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41780.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41781.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41782.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41782.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41783.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41784.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41784.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41785.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41786.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41786.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41786.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 41786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41787.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41787.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41788.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41788.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41789.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41789.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41790.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41790.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41791.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41791.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41792.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41792.000000] [simulator/INFO] on11 is sleeping +[on3:ON:(4) 41792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41793.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41794.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41795.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41796.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41797.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41798.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41799.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41800.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41801.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41802.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41803.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41804.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41805.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41806.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41807.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41808.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41809.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41810.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41811.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41812.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41813.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41814.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41815.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41816.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41817.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41818.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41819.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41820.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41821.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41822.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41823.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41824.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41825.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41826.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41827.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41827.000000] [simulator/INFO] on9 is sleeping +[on3:ON:(4) 41828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41874.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41896.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41898.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41900.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41902.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41966.000000] [simulator/INFO] on3 is sleeping +[on12:ON:(13) 42084.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 42084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42103.000000] [simulator/INFO] on12 is observing his environment... +[on0:ON:(1) 42103.000000] [simulator/INFO] on0 wakes up +[on12:ON:(13) 42104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 received a hint successfully +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 try to forward a hint +[on0:ON:(1) 42104.010320] [simulator/INFO] on0 sent a hint successfully +[on12:ON:(13) 42105.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42106.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42106.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42107.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42108.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42108.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42109.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42110.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42110.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42111.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42112.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42112.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42113.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42114.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42114.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42115.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42116.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42116.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42117.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42118.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42118.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42119.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42120.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42120.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42121.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42122.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42122.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42123.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42124.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42124.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42125.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42126.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42126.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42127.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42128.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42128.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42129.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42130.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42130.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42131.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42132.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42132.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42133.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42134.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42134.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42135.010320] [simulator/INFO] on12 fail to forward a hint +[on5:ON:(6) 42136.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 42136.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 42136.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42136.010320] [simulator/INFO] on12 try to forward a hint +[on5:ON:(6) 42137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 received a hint successfully +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 try to forward a hint +[on0:ON:(1) 42137.010320] [simulator/INFO] on0 sent a hint successfully +[on5:ON:(6) 42138.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42139.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42139.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42140.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42141.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42141.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42142.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42143.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42143.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42144.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42145.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42145.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42146.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42147.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42147.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42148.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42149.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42149.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42150.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42151.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42151.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42152.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42153.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42153.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42154.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42155.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42155.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42156.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42157.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42157.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42158.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42159.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42159.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42160.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42161.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42161.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42162.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42163.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42163.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42164.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42165.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42165.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42166.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42167.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42167.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42168.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42169.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42169.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42170.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42171.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42171.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42172.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42173.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42173.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42174.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42175.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42175.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42176.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42177.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42177.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42178.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42179.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42179.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42180.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42181.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42181.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42182.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42183.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42183.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42184.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42185.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42185.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42186.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42187.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42187.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42188.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42189.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42189.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42190.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42191.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42191.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42192.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42193.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42193.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42194.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42195.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42195.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42196.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42197.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42197.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42198.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42199.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42199.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42200.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42201.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42201.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42202.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42203.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42203.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42204.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42205.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42205.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42206.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42207.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42207.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42208.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42209.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42209.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42210.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42211.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42211.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42212.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42213.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42213.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42214.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42215.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42215.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42216.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42217.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42217.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42218.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42219.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42219.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42220.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42221.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42221.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42222.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42223.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42223.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42224.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42225.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42225.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42226.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42227.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42227.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42228.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42229.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42229.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42230.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42231.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42231.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42232.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42233.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42233.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42234.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42235.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42235.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42236.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42237.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42237.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42238.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42239.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42239.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42240.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42241.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42241.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42242.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42243.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42243.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42244.010320] [simulator/INFO] on5 fail to forward a hint +[on1:ON:(2) 42245.000000] [simulator/INFO] on1 wakes up +[on5:ON:(6) 42245.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42245.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42246.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42247.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42247.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42248.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42249.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42249.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42250.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42251.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42251.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42252.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42253.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42253.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42254.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42255.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42255.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42256.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42257.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42257.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42258.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42259.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42259.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42260.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42261.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42261.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42262.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42263.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42263.010320] [simulator/INFO] on5 try to forward a hint +[on12:ON:(13) 42264.000000] [simulator/INFO] on12 fail to forward a hint +[on5:ON:(6) 42264.010320] [simulator/INFO] on5 fail to forward a hint +[on12:ON:(13) 42265.000000] [simulator/INFO] on12 is sleeping +[on5:ON:(6) 42265.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42265.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42266.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42267.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42267.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42268.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42269.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42269.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42270.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42271.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42271.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42272.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42273.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42273.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42274.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42275.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42275.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42276.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42277.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42277.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42278.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42279.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42279.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42280.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42281.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42281.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42282.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42283.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42283.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42284.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42285.010320] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 received data successfully +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 received a hint along with data successfully +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 is observing his environment... +[on0:ON:(1) 42285.010320] [simulator/INFO] on0 sent data successfully +[on5:ON:(6) 42285.010320] [simulator/INFO] on5 try to forward a hint +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 try to forward a hint +[on0:ON:(1) 42285.010320] [simulator/INFO] on0 is sleeping +[on1:ON:(2) 42286.010320] [simulator/INFO] on1 fail to forward a hint +[on5:ON:(6) 42286.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42287.010320] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 42287.010320] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 42287.010320] [simulator/INFO] on5 try to forward a hint +[on1:ON:(2) 42288.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42288.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42289.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42290.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42291.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42291.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42292.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42293.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42294.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42294.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42295.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42296.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42297.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42297.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42298.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42299.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42300.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42300.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42301.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42302.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42303.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42303.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42304.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42305.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42306.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42306.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42307.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42308.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42309.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42309.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42310.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42311.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42312.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42312.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42313.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42314.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42315.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42315.010320] [simulator/INFO] on1 try to forward a hint +[on5:ON:(6) 42316.000000] [simulator/INFO] on5 fail to forward a hint +[on1:ON:(2) 42316.010320] [simulator/INFO] on1 fail to forward a hint +[on5:ON:(6) 42317.000000] [simulator/INFO] on5 is sleeping +[on1:ON:(2) 42317.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42318.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42318.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42319.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42320.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42321.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42321.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42322.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42323.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42324.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42324.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42325.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42326.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42327.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42327.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42328.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42329.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42330.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42330.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42331.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42332.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42333.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42333.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42334.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42335.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42336.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42336.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42337.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42338.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42339.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42339.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42340.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42341.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42342.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42342.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42343.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42344.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42345.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42345.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42346.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42347.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42348.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42348.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42349.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42350.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42351.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42351.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42352.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42353.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42354.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42354.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42355.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42356.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42357.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42357.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42358.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42359.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42360.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42360.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42361.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42362.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42363.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42363.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42364.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42365.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42366.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42366.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42367.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42368.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42369.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42369.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42370.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42371.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42372.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42372.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42373.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42374.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42375.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42375.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42376.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42377.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42378.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42378.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42379.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42380.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42381.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42381.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42382.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42383.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42384.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42384.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42385.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42386.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42387.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42387.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42388.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42389.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42390.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42390.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42391.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42392.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42393.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42393.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42394.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42395.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42396.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42396.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42397.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42398.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42399.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42399.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42400.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42401.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42402.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42402.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42403.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42404.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42405.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42405.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42406.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42407.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42408.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42408.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42409.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42410.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42411.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42411.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42412.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42413.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42414.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42414.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42415.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42416.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42417.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42417.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42418.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42419.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42420.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42420.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42421.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42422.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42423.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42423.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42424.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42425.010320] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 42939.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 42939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42963.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42965.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42967.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42969.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42971.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42973.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42975.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42979.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42981.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43039.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43040.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43041.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43042.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43043.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43044.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43045.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43046.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43047.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43048.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43049.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43050.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43051.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43052.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43053.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43054.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43055.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43056.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43057.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43058.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43059.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43060.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43061.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43062.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43063.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43064.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43065.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43066.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43067.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43068.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43069.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43070.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43071.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43072.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43073.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43074.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43075.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43076.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43077.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43078.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43079.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43080.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43081.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43082.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43083.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43084.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43085.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43086.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43087.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43087.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 43087.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43088.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43088.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43089.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43089.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43090.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43090.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43091.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43091.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43092.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43092.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43093.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43094.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43094.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43095.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43096.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43096.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43097.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43098.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43098.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43099.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43100.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43100.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43101.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43102.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43102.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43103.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43104.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43104.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43105.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43106.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43106.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43107.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43108.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43108.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43109.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43110.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43110.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43111.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43112.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43112.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43113.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43114.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43114.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43115.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43116.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43116.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43117.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43118.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43118.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43119.000000] [simulator/INFO] on6 is sleeping +[on4:ON:(5) 43119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43267.000000] [simulator/INFO] on4 is sleeping +[on4:ON:(5) 43375.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 43375.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43376.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43377.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43378.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43379.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43380.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43381.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43382.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43383.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43384.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43385.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43386.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43387.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43388.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43389.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43390.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43391.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43392.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43393.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43394.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43395.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43396.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43397.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43398.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43399.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43400.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43401.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43402.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43403.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43404.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43406.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43408.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43410.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43411.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43412.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43413.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43414.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43415.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43416.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43417.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43418.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43419.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43420.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43421.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43422.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43423.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43424.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43425.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43426.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43427.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43428.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43429.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43430.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43431.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43432.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43433.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43434.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43435.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43436.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43437.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43438.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43439.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43440.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43441.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43442.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43443.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43444.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43445.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43446.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43447.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43448.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43449.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43450.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43451.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43452.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43453.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43454.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43455.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43456.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43457.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43458.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43459.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43460.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43461.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43462.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43463.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43464.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43465.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43466.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43467.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43468.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43469.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43470.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43471.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43472.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43473.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43474.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43475.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43476.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43477.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43507.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43509.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43511.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43513.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43514.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43515.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43516.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43517.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43518.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43524.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43526.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43528.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43530.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43555.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 43911.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 43911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43912.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43913.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43915.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43916.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43917.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43918.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43919.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43921.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43921.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43922.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43923.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43924.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43925.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43927.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43927.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43928.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43929.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43930.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43931.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43933.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43933.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43934.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43935.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43936.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43937.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43939.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43939.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43940.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43941.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43942.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43943.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43945.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43945.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43946.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43947.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43948.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43949.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43951.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43951.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43952.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43953.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43954.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43955.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43957.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43957.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43958.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43959.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43960.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43961.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43963.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43963.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43964.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43965.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43966.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43967.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43969.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43970.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43971.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43972.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43973.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43975.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43975.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43976.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43977.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43978.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43979.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43981.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43981.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43982.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43983.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43984.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43985.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43987.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43987.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43988.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43989.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43990.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43991.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43993.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43993.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43994.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43995.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43996.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43997.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43999.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43999.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44000.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44001.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44002.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44002.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44003.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44004.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44005.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44005.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44006.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44007.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44008.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44008.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44009.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44010.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44011.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44011.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44012.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44013.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44014.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44014.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44015.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44016.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44017.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44017.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44018.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44019.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44020.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44020.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44021.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44022.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44023.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44023.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44024.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44025.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44026.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44026.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44027.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44028.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44029.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44029.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44030.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44031.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44032.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44032.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44033.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44034.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44035.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44035.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44036.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44037.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44038.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44038.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44039.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44040.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44041.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44041.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44042.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44043.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44044.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44044.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44045.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44046.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44047.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44047.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44048.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44049.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44050.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44050.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44051.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44052.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44053.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44053.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44054.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44055.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44056.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44056.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44057.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44058.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44059.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44059.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44060.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44061.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44062.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44062.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44063.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44064.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44065.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44065.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44066.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44067.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44068.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44068.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44069.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44070.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44071.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44071.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44072.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44073.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44074.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44074.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44075.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44076.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44077.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44077.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44078.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44079.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44080.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44080.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44081.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44082.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44083.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44083.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44084.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44085.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44086.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44086.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44087.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44088.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44089.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44089.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44090.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44091.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 44174.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 44174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44221.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44222.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44223.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44224.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44225.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44226.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44227.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44228.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44229.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44230.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44231.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44232.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44233.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44234.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44235.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44236.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44237.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44238.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44239.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44240.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44241.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44242.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44243.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44244.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44245.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44246.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44247.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44248.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44249.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44250.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44251.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44252.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44253.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44254.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44255.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44256.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44257.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44258.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44259.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44260.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44261.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44262.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44263.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44264.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44265.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44266.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44267.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44268.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44269.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44270.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44271.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44272.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44273.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44274.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44275.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44276.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44277.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44278.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44279.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44280.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44281.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44282.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44283.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44284.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44285.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44286.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44287.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44288.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44289.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44290.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44291.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44292.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44293.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44294.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44295.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44296.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44297.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44298.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44299.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44300.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44301.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44302.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44303.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44304.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44305.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44306.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44307.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44308.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44309.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44310.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44311.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44312.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44313.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44314.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44315.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44316.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44317.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44318.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44319.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44320.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44321.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44322.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44323.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44324.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44325.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44326.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44327.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44328.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44329.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44354.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 44551.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 44551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44693.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44695.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44697.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44701.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44703.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44731.000000] [simulator/INFO] on2 is sleeping +[on3:ON:(4) 44841.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 44841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44874.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44874.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 44874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44875.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44876.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44877.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44878.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44879.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44880.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44881.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44882.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44883.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44884.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44885.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44886.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44887.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44888.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44889.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44890.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44891.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44892.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44893.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44894.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44895.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44896.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44897.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44898.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44899.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44900.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44901.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44902.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44903.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44904.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44905.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44906.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44907.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44908.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44909.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44910.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44911.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44912.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44913.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44914.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44915.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44916.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44917.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44918.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44919.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44920.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44921.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44922.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44923.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44924.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44925.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44926.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44927.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44928.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44929.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44930.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44931.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44932.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44933.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44934.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44935.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44936.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44937.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44938.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44939.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44940.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44941.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44942.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44943.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44944.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44945.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44946.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44947.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44948.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44949.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44950.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44951.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44952.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44953.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44954.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44955.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44956.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44957.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44958.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44959.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44960.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44961.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44962.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44963.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44964.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44965.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44966.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44967.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44968.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44969.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44970.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44971.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44972.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44973.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44974.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44975.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44976.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44977.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44978.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44979.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44980.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44981.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44982.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44983.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44984.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44985.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44986.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44987.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44988.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44989.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44990.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44991.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44992.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44992.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44993.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44994.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44994.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44995.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44996.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44996.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44997.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44998.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44998.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44999.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45000.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45000.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45001.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45002.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45002.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45003.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45004.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45004.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45005.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45006.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45006.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45007.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45008.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45008.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45009.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45010.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45010.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45011.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45012.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45012.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45013.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45014.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45014.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45015.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45016.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45016.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45017.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45018.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45018.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45019.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45020.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45020.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45021.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45021.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 45022.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45024.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45026.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45028.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45030.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45032.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45034.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45036.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45038.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45040.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45042.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45044.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45046.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45048.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45050.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45054.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 45060.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 45060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45061.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45062.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45064.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45065.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45067.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45068.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45070.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45071.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45073.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45074.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45076.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45077.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45079.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45080.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45082.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45083.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45085.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45086.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45088.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45089.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45091.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45092.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45094.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45095.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45097.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 45097.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 45097.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 45097.000000] [simulator/INFO] on12 try to forward a hint +[on10:ON:(11) 45098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45142.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 45142.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 45142.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 45143.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 45143.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 45143.000000] [simulator/INFO] on1 try to forward a hint +[on10:ON:(11) 45144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45175.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45175.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 45175.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45176.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45177.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45177.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45178.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45179.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45179.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45180.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45181.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45181.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45182.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45183.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45183.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45184.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45185.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45185.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45186.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45187.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45187.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45188.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45189.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45189.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45190.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45191.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45191.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45192.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45193.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45193.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45194.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45195.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45195.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45196.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45197.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45197.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45198.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45199.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45199.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45200.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45201.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45201.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45202.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45203.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45203.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45204.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45205.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45205.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45206.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45207.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45207.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45208.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45209.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45209.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45210.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45211.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45211.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45212.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45213.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45213.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45214.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45215.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45215.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45216.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45217.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45217.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45218.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45219.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45219.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45220.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45221.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45221.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45222.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45223.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45223.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45224.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45225.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45225.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45226.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45227.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45227.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45228.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45229.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45229.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45230.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45231.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45231.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45232.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45233.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45233.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45234.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45235.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45235.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45236.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45237.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45237.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45238.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45239.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45239.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 45240.000000] [simulator/INFO] on12 fail to forward a hint +[on6:ON:(7) 45240.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45241.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45241.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 45241.000000] [simulator/INFO] on12 is sleeping +[on6:ON:(7) 45242.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45243.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45243.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45244.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45245.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45245.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45246.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45247.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45247.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45248.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45249.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45249.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45250.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45251.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45251.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45252.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45253.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45253.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45254.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45255.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45255.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45256.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45257.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45257.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45258.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45259.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45259.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45260.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45261.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45261.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45262.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45263.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45263.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45264.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45265.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45265.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45266.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45267.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45267.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45268.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45269.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45269.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45270.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45271.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45271.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45272.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45273.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45273.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45274.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45275.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45275.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45276.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45277.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 45277.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45278.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45279.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45280.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45281.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45282.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45283.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45284.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45285.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45286.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45287.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45288.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45289.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45290.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45291.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45292.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45293.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45294.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45295.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45296.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45297.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45298.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45299.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45300.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45301.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45302.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45303.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45304.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45305.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45306.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45307.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45308.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45309.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45310.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45311.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45312.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45313.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45314.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45315.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45316.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45317.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45318.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45319.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45320.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45321.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 45322.000000] [simulator/INFO] on1 fail to forward a hint +[on6:ON:(7) 45322.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45323.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 45323.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 45324.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45325.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45326.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45327.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45328.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45330.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45332.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45334.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45336.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45338.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45340.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45342.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45344.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45346.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45348.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45350.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45352.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45354.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45355.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 46029.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 46029.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46030.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46031.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46032.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46033.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46034.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46035.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46036.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46037.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46038.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46039.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46040.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46041.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46042.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46043.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46044.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46046.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46048.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46050.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46052.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46054.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46056.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46058.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46060.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46062.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46064.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46066.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46068.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46070.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46072.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46074.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46076.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46078.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46080.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46082.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46084.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46086.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46088.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46090.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46092.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46094.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46096.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46098.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46100.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46145.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46146.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46147.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46148.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46149.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46150.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46151.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46152.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46153.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46154.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46155.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46156.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46157.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46158.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46159.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46160.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46161.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46162.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46163.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46164.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46183.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46183.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 46183.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46184.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46185.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46185.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46186.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46187.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46187.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46188.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46189.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46189.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46190.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46191.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46191.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46192.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46193.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46193.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46194.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46195.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46195.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46196.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46197.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46197.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46198.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46199.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46199.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46200.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46201.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46201.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46202.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46203.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46203.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46204.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46205.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46205.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46206.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46207.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46207.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46208.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46209.000000] [simulator/INFO] on7 is sleeping +[on0:ON:(1) 46209.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46210.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46211.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46212.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46213.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46214.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46215.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46216.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46217.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46218.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46219.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46220.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46221.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46222.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46223.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46224.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46225.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46226.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46227.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46228.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46229.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46230.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46231.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46232.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46233.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46234.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46235.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46236.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46237.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46238.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46239.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46240.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46241.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46242.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46243.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46244.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46245.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46246.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46247.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46248.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46249.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46250.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46251.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46252.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46253.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46254.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46255.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46256.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46257.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46258.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46259.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46260.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46261.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46262.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46263.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46264.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46265.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46266.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46267.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46268.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46269.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46270.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46271.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46272.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46273.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46274.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46275.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46276.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46277.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46278.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46279.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46280.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46281.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46282.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46283.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46284.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46285.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46286.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46287.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46288.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46289.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46290.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46291.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46292.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46293.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46294.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46295.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46296.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46297.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46298.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46299.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46300.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46301.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46302.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46303.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46363.000000] [simulator/INFO] on0 is sleeping +[on9:ON:(10) 46753.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 46753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46837.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46839.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46841.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46843.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46845.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46847.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46849.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46851.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46853.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46855.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46857.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46859.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46861.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46863.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46865.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46867.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46869.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46871.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46873.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46898.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46928.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46928.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 46928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46929.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46930.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46931.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46932.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46933.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46933.000000] [simulator/INFO] on9 is sleeping +[on8:ON:(9) 46934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46955.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46957.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46959.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46960.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46961.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46962.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46963.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46964.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46965.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46966.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46967.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46968.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46969.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46970.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46971.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46972.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46973.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46974.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46975.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46976.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46977.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46978.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46979.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46980.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46981.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46982.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46983.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46984.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46985.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46986.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46987.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46988.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46989.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46990.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46991.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46992.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46993.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46994.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46995.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46996.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46997.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46998.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46999.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47000.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47001.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47002.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47003.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47004.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47005.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47006.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47007.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47008.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47009.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47010.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47011.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47012.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47013.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47014.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47015.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47016.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47017.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47018.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47018.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 47018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47019.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47019.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47020.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47021.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47021.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47022.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47023.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47023.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47024.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47025.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47025.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47026.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47027.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47027.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47028.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47029.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47029.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47030.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47031.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47031.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47032.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47033.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47033.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47034.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47035.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47035.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47036.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47037.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47037.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47038.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47039.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47039.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47040.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47041.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47042.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47043.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47044.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47045.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47046.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47047.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47048.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47049.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47050.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47051.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47052.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47053.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47054.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47055.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47056.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47057.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47058.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47059.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47060.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47061.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47062.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47063.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47064.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47065.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47066.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47067.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47068.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47069.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47070.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47071.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47072.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47073.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47074.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47075.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47076.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47077.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47078.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47079.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47080.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47081.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47082.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47083.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47084.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47085.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47086.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47087.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47088.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47089.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47090.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47091.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47092.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47093.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47093.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47093.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 47093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47094.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47094.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47095.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47095.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47096.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47096.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47097.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47097.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47098.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47098.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47099.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47099.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47100.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47100.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47101.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47101.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47102.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47102.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47103.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47103.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47104.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47104.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47105.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47105.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47106.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47106.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47107.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47107.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47108.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47108.000000] [simulator/INFO] on8 is sleeping +[on10:ON:(11) 47108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47109.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47110.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47111.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47112.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47113.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47114.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47115.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47116.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47117.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47118.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47119.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47120.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47121.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47122.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47123.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47124.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47125.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47126.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47127.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47128.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47129.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47130.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47131.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47132.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47133.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47134.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47135.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47136.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47137.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47138.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47139.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47140.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47141.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47142.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47143.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47144.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47145.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47146.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47147.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47148.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47149.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47150.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47151.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47152.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47153.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47154.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47155.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47156.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47157.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47158.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47159.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47160.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47161.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47162.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47163.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47164.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47165.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47166.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47167.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47168.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47169.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47170.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47171.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47172.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47173.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47174.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47175.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47176.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47177.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47178.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47179.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47180.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47181.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47182.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47183.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47184.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47185.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47186.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47187.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47188.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47189.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47190.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47191.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47192.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47193.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47194.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47195.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47196.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47197.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47198.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47198.000000] [simulator/INFO] on10 is sleeping +[on12:ON:(13) 47199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47255.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47257.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47259.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47261.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47263.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47265.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47267.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47269.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47271.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47273.000000] [simulator/INFO] on12 is sleeping +[on0:ON:(1) 47289.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 47289.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47290.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47291.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47292.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47293.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47294.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47295.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47296.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47297.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47298.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47299.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47300.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47301.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47302.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47303.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47363.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47364.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47365.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47366.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47367.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47368.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47369.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47370.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47371.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47372.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47373.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47374.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47375.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47376.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47377.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47378.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47379.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47380.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47381.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47382.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47383.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47384.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47385.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47386.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47387.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47388.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47389.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47390.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47391.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47392.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47393.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47394.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47395.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47396.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47397.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47398.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47399.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47400.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47401.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47402.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47403.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47404.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47405.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47406.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47407.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47409.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47411.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47413.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47415.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47417.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47419.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47421.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47423.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47425.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47427.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47429.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47431.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47433.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47435.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47437.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47439.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47441.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47443.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47445.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47447.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47449.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47451.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47453.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47455.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47457.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47459.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47461.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47463.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47465.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47467.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47469.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 47757.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 47757.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47758.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47759.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47760.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47761.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47762.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47763.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47764.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47765.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47766.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47767.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47768.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47769.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47770.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47771.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47772.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47773.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47774.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47775.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47776.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47777.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47778.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47779.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47780.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47781.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47782.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47783.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47784.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47785.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47786.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47787.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47788.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47789.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47790.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47791.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47792.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47793.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47794.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47796.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47797.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47798.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47799.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47800.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47801.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47802.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47803.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47804.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47805.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47806.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47807.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47808.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47809.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47810.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47811.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47812.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47813.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47814.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47815.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47816.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47817.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47818.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47819.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47820.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47821.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47822.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47823.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47824.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47825.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47826.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47827.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47828.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47829.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47830.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47831.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47832.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47834.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47836.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47838.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47840.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47842.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47844.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47846.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47848.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47850.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47852.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47854.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47856.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47858.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47860.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47862.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47864.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47866.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47868.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47870.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47872.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47873.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47874.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47875.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47876.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47877.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47878.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47879.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47880.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47881.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47882.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47883.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47884.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47885.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47886.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47887.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47888.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47890.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47892.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47894.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47896.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47898.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47900.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47902.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47904.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47906.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47908.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47910.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47912.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47914.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47916.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47918.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47920.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47922.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47924.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47926.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47928.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47930.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47932.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47934.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47936.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47937.000000] [simulator/INFO] on4 is sleeping +[on11:ON:(12) 48148.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 48148.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48149.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48150.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48151.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48152.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48153.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48154.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48155.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48156.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48157.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48158.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48159.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48160.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48161.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48162.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48163.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48164.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48165.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48166.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48167.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48168.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48169.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48170.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48171.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48172.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48173.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48174.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48174.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 48174.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48175.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48175.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48176.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48176.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48177.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48177.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48178.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48178.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48179.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48179.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48180.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48180.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48181.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48181.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48182.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48182.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48183.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48183.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48184.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48184.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48185.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48185.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48186.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48186.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48187.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48187.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48188.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48188.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48189.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48189.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48190.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48190.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48191.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48191.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48192.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48192.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48193.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48193.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48194.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48194.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48195.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48195.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48196.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48196.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48197.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48197.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48198.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48198.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48199.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48199.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48200.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48200.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48201.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48201.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48202.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48202.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48203.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48203.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48204.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48204.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48205.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48205.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48206.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48206.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48207.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48207.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48208.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48208.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48209.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48209.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48210.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48210.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48211.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48211.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48212.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48212.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48213.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48213.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48214.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48214.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48215.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48215.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48216.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48216.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48217.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48217.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48218.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48218.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48219.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48219.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48220.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48220.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48221.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48221.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48222.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48222.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48222.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 48222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48223.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48223.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48224.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48224.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48225.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48225.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48226.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48226.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48227.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48227.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48228.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48228.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48229.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48229.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48230.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48230.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48230.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48231.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48231.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48232.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48232.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48232.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48233.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48233.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48234.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48234.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48234.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48235.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48235.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48236.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48236.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48236.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48237.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48237.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48238.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48238.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48238.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48239.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48239.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48240.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48240.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48241.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48241.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48242.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48242.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48243.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48243.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48244.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48244.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48244.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48245.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48245.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48246.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48246.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48247.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48247.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48248.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48248.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48249.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48249.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48250.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48250.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48250.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48251.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48251.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48252.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48252.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48253.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48253.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48254.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48254.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48255.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48255.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48256.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48256.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48256.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48257.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48257.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48258.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48258.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48259.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48259.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48260.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48260.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48261.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48261.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48262.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48262.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48262.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48263.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48263.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48264.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48264.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48265.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48265.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48266.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48266.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48267.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48267.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48268.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48268.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48268.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48269.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48269.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48270.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48270.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48271.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48271.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48272.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48272.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48273.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48273.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48274.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48274.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48274.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48275.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48275.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48276.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48276.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48277.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48277.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48278.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48278.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48279.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48279.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48280.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48280.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48280.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48281.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48281.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48282.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48282.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48283.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48283.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48284.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48284.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48285.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48285.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48286.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48286.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48286.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48286.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 48286.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48287.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48287.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48287.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48288.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48288.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48288.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48288.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48289.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48289.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48289.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48290.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48290.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48290.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48290.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48291.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48291.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48291.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48292.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48292.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48292.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48293.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48293.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48293.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48294.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48294.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48294.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48295.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48295.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48295.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48296.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48296.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48296.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48297.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48297.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48297.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48298.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48298.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48298.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48299.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48299.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48299.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48300.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48300.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48300.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48301.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48301.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48301.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48302.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48302.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48302.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48303.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48303.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48303.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48304.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48304.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48304.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48305.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48305.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48305.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48306.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48306.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48306.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48307.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48307.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48307.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48308.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48308.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48308.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48309.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48309.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48309.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48310.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48310.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48310.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48311.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48311.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48311.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48311.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48312.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48312.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48312.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48313.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48313.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48313.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48313.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48314.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48314.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48314.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48315.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48315.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48315.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48315.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48316.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48316.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48316.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48317.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48317.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48317.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48317.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48318.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48318.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48318.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48319.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48319.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48319.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48319.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48320.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48320.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48320.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48321.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48321.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48321.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48321.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48322.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48322.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48322.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48323.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48323.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48323.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48323.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48324.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48324.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48324.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48325.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48325.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48325.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48325.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48326.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48326.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48326.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48327.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48327.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48327.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48327.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48328.000000] [simulator/INFO] on11 is sleeping +[on6:ON:(7) 48328.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48328.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48329.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48329.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48330.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48330.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48331.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48331.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48332.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48332.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48333.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48333.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48334.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48334.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48335.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48335.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48336.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48336.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48337.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48337.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48338.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48338.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48339.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48339.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48340.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48340.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48341.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48341.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48342.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48342.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48343.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48343.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48344.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48344.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48345.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48345.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48346.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48346.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48347.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48347.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48348.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48348.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48349.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48349.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48350.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48350.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48351.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48351.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48352.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48352.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48353.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48353.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48354.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 48354.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48355.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48355.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48356.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48357.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48357.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48358.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48359.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48359.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48360.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48361.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48361.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48362.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48363.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48363.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48364.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48365.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48365.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48366.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48367.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48367.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48368.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48369.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48370.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48371.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48372.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48373.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48373.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48374.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48375.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48376.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48377.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48378.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48379.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48379.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48380.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48381.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48382.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48383.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48384.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48385.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48386.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48387.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48388.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48389.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48390.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48391.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48392.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48393.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48394.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48395.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48396.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48397.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48398.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48399.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48400.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48401.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48402.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 48402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48466.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 48520.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 48520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48521.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48523.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48525.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48530.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48531.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48532.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48533.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48534.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48535.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48536.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48537.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48538.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48539.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48540.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48541.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48542.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48543.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48544.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48545.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48546.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48547.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48548.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48549.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48550.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48693.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48695.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48697.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48700.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 48737.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 48737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48757.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48759.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48761.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48763.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48765.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48767.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48769.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48771.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48773.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48775.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48777.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48779.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48781.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48783.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48784.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48785.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48786.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48787.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48788.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48789.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48790.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48791.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48792.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48793.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48794.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48795.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48796.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48797.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48798.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48799.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48800.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48801.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48802.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48803.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48804.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48805.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48806.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48807.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48808.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48809.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48810.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48811.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48812.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48813.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48814.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48815.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48816.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48817.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48818.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48819.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48820.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48821.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48822.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48823.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48824.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48825.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48826.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48827.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48828.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48829.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48830.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48831.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48832.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48833.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48834.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48835.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48836.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48837.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48838.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48839.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48840.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48841.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48842.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48843.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48844.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48845.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48846.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48847.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48848.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48849.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48850.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48851.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48852.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48853.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48854.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48889.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48891.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48893.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48895.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48897.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48899.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48901.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48903.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48905.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48907.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48909.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48913.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48917.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 50117.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 50117.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50118.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50119.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50120.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50121.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50122.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50123.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50124.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50125.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50126.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50127.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50128.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50129.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50130.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50131.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50132.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50133.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50134.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50135.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50136.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50137.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50138.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50139.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50140.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50141.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50142.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50143.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50144.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50145.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50146.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50147.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50148.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50149.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50150.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50151.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50153.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50155.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50157.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50158.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50159.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50160.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50161.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50162.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50163.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50164.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50165.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50166.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50167.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50168.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50169.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50170.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50171.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50172.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50173.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50174.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50175.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50176.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50177.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50178.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50179.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50180.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50181.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50182.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50183.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50184.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50185.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50186.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50187.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50188.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50189.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50190.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50191.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50192.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50193.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50194.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50195.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50196.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50198.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50200.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50202.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50204.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50206.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50208.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50210.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50212.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50214.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50215.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50215.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 50215.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50216.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50217.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50217.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50218.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50219.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50219.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50220.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50221.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50221.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50222.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50223.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50223.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50224.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50225.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50225.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50226.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50227.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50227.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50228.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50229.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50229.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50230.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50231.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50231.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50232.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50233.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50233.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50234.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50235.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50235.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50236.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50237.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50237.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50238.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50239.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50239.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50240.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50241.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50241.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50242.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50243.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50243.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50244.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50245.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50245.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50246.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50247.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50247.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50248.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50249.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50249.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50250.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50251.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50251.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50252.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50253.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50253.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50254.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50255.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50255.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50256.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50257.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50257.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50258.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50259.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50259.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50260.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50261.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50262.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50263.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50264.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50265.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50266.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50267.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50268.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50269.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50270.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50271.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50272.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50273.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50274.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50275.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50276.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50277.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50278.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50279.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50280.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50281.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50282.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50283.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50284.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50285.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50286.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50287.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50288.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50289.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50290.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50291.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50292.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50293.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50294.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50295.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50296.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50297.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 50297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50344.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50345.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50346.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50347.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50348.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50349.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50350.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50351.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50352.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50353.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50354.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50355.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50356.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50357.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50358.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50359.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50360.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50361.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50362.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50363.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50364.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50365.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50366.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50367.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50368.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50369.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50370.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50371.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50372.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50373.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50374.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50375.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50376.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50377.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50378.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50379.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50380.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50381.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50382.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50383.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50384.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50385.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50386.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50387.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50388.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50389.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50390.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50391.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50392.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50393.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50394.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50395.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 50438.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 50438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50618.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 50678.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 50678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50732.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50734.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50736.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50738.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50740.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50742.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50744.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50746.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50748.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50750.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50752.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50754.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50756.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50758.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50759.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50759.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 50759.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50760.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50760.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50761.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50761.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50762.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50762.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50763.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50763.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50764.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50764.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50765.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50765.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50766.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50766.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50767.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50767.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50768.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50768.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50769.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50769.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50770.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50770.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50771.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50771.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50772.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50772.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50773.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50773.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50774.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50774.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50775.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50775.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50776.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50776.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50777.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50777.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50778.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50778.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50779.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50779.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50780.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50780.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50781.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50781.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50782.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50782.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50783.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50783.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50784.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50784.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50785.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50785.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50786.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50787.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50787.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50788.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50789.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50789.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50790.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50791.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50791.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50792.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50793.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50793.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50794.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50795.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50795.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50796.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50797.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50797.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50798.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50799.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50799.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50800.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50801.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50801.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50802.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50803.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50803.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50804.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50805.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50805.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50806.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50807.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50807.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50808.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50809.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50809.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50810.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50811.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50811.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50812.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50813.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50813.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50814.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50815.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50815.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50816.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50817.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50817.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50818.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50819.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50819.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50820.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50821.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50821.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50822.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50823.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50823.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50824.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50825.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50825.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50826.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50827.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50827.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50828.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50829.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50829.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50830.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50831.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50831.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50832.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50833.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50833.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50834.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50835.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50835.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50836.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50837.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50837.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50838.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50839.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50839.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50840.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50841.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50841.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50842.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50843.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50843.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50844.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50845.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50845.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50846.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50847.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50847.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50848.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50849.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50849.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50850.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50851.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50851.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50852.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50853.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50853.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50854.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50855.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50855.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50856.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50857.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50857.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50858.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50858.000000] [simulator/INFO] on3 is sleeping +[on0:ON:(1) 50859.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50861.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50863.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50865.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50867.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50869.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50871.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50873.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50875.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50877.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50879.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50881.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50883.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50885.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50887.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50889.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50891.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50893.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50895.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50901.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50903.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50939.000000] [simulator/INFO] on0 is sleeping +[on8:ON:(9) 51090.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 51090.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51092.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51094.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51096.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51098.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51100.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51102.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51104.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51106.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51108.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51110.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51112.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51114.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51116.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51118.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51120.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51122.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51124.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51126.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51128.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51130.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51132.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51134.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51136.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51138.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51140.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51142.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51144.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51146.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51148.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51150.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51152.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51154.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51156.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51158.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51160.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51162.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51164.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51166.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51168.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51170.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51172.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51173.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51221.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51222.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51223.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51224.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51225.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51226.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51227.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51228.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51229.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51230.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51231.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51232.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51233.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51234.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51235.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51236.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51237.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51238.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51239.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51240.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51241.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51242.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51243.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51244.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51245.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51246.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51247.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51248.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51249.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51250.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51251.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51252.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51253.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51254.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51255.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51256.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51257.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51258.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51259.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51260.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51261.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51262.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51263.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51264.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51265.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51266.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51267.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51268.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51269.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51270.000000] [simulator/INFO] on8 is sleeping +[on6:ON:(7) 51482.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 51482.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51483.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51484.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51485.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51486.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51487.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51488.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51489.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51490.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51491.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51493.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51495.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51497.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51499.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51501.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51518.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51518.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 51518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51519.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51520.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51521.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51522.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51523.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51524.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51525.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51526.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51527.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51528.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51529.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51530.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51531.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51532.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51533.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51534.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51535.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51536.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51537.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51538.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51539.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51540.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51541.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51542.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51543.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51544.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51545.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51546.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51547.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51548.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51549.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51550.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51551.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51552.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51553.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51554.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51555.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51556.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51557.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51558.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51559.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51560.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51561.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51562.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51563.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51564.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51565.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51566.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51567.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51568.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51569.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51570.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51571.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51572.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51573.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51574.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51575.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51576.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51577.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51578.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51579.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51580.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51581.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51582.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51583.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51584.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51585.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51586.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51587.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51588.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51589.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51590.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51591.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51592.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51593.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51594.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51595.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51596.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51597.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51598.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51599.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51600.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51601.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51602.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51603.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51604.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51605.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51606.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51607.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51608.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51609.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51610.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51611.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51612.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51613.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51614.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51615.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51616.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51617.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51618.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51619.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51620.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51621.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51622.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51622.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51623.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51624.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51624.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51625.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51626.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51626.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51627.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51628.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51628.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51629.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51630.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51630.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51631.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51632.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51632.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51633.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51634.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51634.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51635.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51636.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51636.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51637.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51638.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51638.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51639.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51640.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51640.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51640.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 51640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51641.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51641.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51642.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51642.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51643.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51643.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51644.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51644.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51645.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51645.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51646.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51646.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51647.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51647.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51648.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51648.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51649.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51649.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51650.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51650.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51651.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51651.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51652.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51652.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51653.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51653.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51654.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51654.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51655.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51655.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51656.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51656.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51657.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51657.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51658.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51658.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51659.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51659.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51660.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51660.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51661.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51661.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51662.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 51662.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51663.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51663.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51664.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51665.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51665.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51666.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51667.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51667.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51668.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51669.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51669.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51670.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51671.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51671.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51672.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51673.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51674.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51675.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51676.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51677.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51678.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51679.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51680.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51681.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51682.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51683.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51684.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51685.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51686.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51687.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51688.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51689.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51690.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51691.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51692.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51693.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51694.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51695.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51696.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51697.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51698.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 51698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51701.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51703.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51731.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51732.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51733.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51734.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51735.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51736.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51737.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51738.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51739.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51740.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51741.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51742.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51743.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51744.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51745.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51746.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51747.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51748.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51749.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51750.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51751.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51752.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51753.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51754.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51755.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51756.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51757.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51758.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51759.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51760.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51761.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51762.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51763.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51764.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51765.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51766.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51767.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51768.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51769.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51770.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51771.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51772.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51773.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51774.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51775.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51776.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51777.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51778.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51779.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51780.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51781.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51782.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51783.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51784.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51785.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51786.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51787.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51788.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51789.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51790.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51791.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51792.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51793.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51794.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51795.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51796.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51797.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51798.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51799.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51800.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51801.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51802.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51803.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51804.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51805.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51806.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51807.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51808.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51809.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51810.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51811.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51812.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51813.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51814.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51815.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51815.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 51815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51816.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51816.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51817.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51818.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51818.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51819.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51820.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51820.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 51821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51846.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51852.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51858.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51864.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51870.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51876.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51878.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51880.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51882.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51884.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51885.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51886.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51888.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51890.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51891.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51892.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51894.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51896.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51897.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51898.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51900.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51902.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51903.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51904.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51906.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51908.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51909.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51910.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51912.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51914.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51915.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51916.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51918.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51920.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51921.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51922.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51923.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51924.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51925.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51927.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51930.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51933.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51936.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51939.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51942.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51945.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51948.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51951.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51954.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51957.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51960.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51963.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51966.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51969.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51972.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51975.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51978.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51981.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51984.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51987.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51990.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51993.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51995.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 52730.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 52730.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52731.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52732.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52734.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52736.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52737.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52738.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52740.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52742.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52743.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52744.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52746.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52748.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52749.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52750.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52752.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52754.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52755.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52756.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52758.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52760.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52761.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52762.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52764.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52766.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52767.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52768.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52770.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52772.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52773.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52774.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52776.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52778.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52779.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52780.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52782.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52784.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52785.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52786.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52788.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52790.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52791.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52792.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52794.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52800.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52806.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52812.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52818.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52824.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52830.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52836.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52842.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52848.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52854.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52856.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52858.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52860.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52862.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52864.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52866.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52868.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52870.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52872.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52874.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52876.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52878.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52880.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52882.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52884.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52886.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52888.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52890.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52892.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52894.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52896.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52898.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52900.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52902.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52903.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52904.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52905.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52906.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52907.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52908.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52909.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52910.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 53290.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 53290.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53291.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53293.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53295.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53297.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53299.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53301.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53303.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53305.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53383.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53385.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53387.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53389.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53391.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53393.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53395.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53397.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53399.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53401.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53466.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53467.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53468.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53469.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53470.000000] [simulator/INFO] on9 is sleeping +[on4:ON:(5) 53478.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 53478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53507.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53509.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53511.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53513.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53514.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53515.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53516.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53517.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53518.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53524.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53526.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53528.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53530.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53658.000000] [simulator/INFO] on4 is sleeping +[on7:ON:(8) 53878.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 53878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53983.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53983.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 53983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53984.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53984.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53985.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53986.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53986.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53987.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53988.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53988.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53989.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53990.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53990.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53991.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53992.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53992.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53993.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53994.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53994.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53995.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53996.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53996.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53997.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53998.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53998.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53999.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54000.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54000.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54001.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54002.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54002.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54003.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54004.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54004.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54005.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54006.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54006.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54007.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54008.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54008.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54009.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54009.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54010.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54010.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54011.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54011.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54012.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54012.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54013.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54013.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54014.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54014.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54015.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54015.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54016.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54016.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54017.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54017.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54018.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54018.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54019.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54019.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54020.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54020.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54021.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54021.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54022.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54022.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54023.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54024.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54024.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54025.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54026.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54026.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54027.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54028.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54028.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54029.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54030.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54030.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54031.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54032.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54032.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54033.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54034.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54034.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54035.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54036.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54036.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54037.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54038.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54038.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54039.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54040.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54040.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54041.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54042.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54042.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54043.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54044.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54044.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54045.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54046.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54046.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54047.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54048.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54048.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54049.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54050.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54050.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54051.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54052.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54052.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54053.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54054.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54054.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54055.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54055.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54056.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54056.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54057.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54057.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54058.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54058.000000] [simulator/INFO] on7 is sleeping +[on11:ON:(12) 54059.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54060.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54061.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54062.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54063.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54064.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54065.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54066.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54067.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54068.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54069.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54070.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54071.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54072.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54073.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54074.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54075.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54076.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54077.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54078.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54079.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54080.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54081.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54082.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54083.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54084.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54085.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54086.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54087.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54088.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54089.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54090.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54091.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54092.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54093.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54094.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54095.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54096.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54097.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54098.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54099.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54100.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54101.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54102.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54103.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54104.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54105.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54106.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54107.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54108.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54109.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54110.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54111.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54112.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54113.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54114.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54115.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54116.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54117.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54118.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54119.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54120.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54121.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54122.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54123.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54124.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54125.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54126.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54127.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54128.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54129.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54130.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54131.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54132.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54133.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54134.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54135.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54136.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54137.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54138.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54139.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54140.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54141.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54142.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54143.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54144.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54145.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54146.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54147.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54148.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54149.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54150.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54151.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54152.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54153.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54154.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54155.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54156.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54157.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54158.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54159.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54160.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54161.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54162.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54163.000000] [simulator/INFO] on11 is sleeping +[on11:ON:(12) 54339.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 54339.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54340.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54341.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54342.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54343.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54344.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54345.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54346.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54347.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54348.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54349.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54350.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54351.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54352.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54353.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54354.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54355.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54356.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54357.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54358.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54359.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54360.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54361.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54362.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54363.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54364.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54365.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54366.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54367.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54368.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54369.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54370.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54371.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54372.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54373.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54374.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54375.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54376.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54377.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54378.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54379.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54380.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54381.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54382.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54383.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54384.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54385.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54386.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54387.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54388.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54389.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54390.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54391.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54392.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54393.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54394.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54395.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54396.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54397.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54398.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54399.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54400.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54401.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54402.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54403.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54404.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54405.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54406.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54407.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54408.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54409.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54410.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54411.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54412.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54413.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54414.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54415.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54416.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54417.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54418.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54419.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54420.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54421.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54422.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54423.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54424.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54519.000000] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 54546.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 54546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54712.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54714.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54716.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54718.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54720.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54722.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54724.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54726.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 54762.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 54762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54837.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54839.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54841.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54843.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54845.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54847.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54849.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54851.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54853.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54855.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54857.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54859.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54861.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54863.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54865.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54867.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54869.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54871.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54873.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54898.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54928.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54934.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54937.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54940.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54942.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 55020.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 55020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55047.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55047.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 55047.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55048.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55049.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55049.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55050.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55051.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55051.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55052.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55053.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55053.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55054.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55055.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55055.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55056.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55057.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55057.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55058.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55059.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55059.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55060.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55061.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55061.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55062.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55063.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55063.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55064.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55065.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55065.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55066.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55067.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55067.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55068.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55069.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55069.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55070.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55071.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55071.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55072.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55073.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55073.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55074.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55075.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55075.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55076.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55077.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55077.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55078.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55079.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55079.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55080.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55081.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55081.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55082.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55083.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55083.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55084.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55085.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55085.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55086.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55087.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55087.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55088.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55089.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55089.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55090.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55091.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55091.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55092.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55093.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55093.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55094.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55095.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55095.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55096.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55097.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55097.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55098.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55099.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55099.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55100.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55101.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55101.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55102.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55103.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55103.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55104.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55105.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55105.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55106.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55107.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55107.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55108.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55109.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55109.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55110.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55111.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55111.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55112.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55113.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55113.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55114.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55115.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55115.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55116.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55117.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55117.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55118.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55119.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55119.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55120.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55121.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55121.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55122.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55123.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55123.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55124.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55125.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55125.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55126.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55127.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55127.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55128.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55129.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55129.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55130.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55131.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55131.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55132.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55133.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55133.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55134.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55135.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55135.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55136.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55137.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55137.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55138.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55139.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55139.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55140.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55140.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55140.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 55140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55141.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55141.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55141.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55141.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 55141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55142.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55142.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55142.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55143.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55143.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55143.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55144.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55144.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55144.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55145.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55145.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55145.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55146.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55146.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55146.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55147.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55147.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55147.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55148.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55148.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55148.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55149.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55149.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55149.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55149.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55150.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55150.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55150.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55151.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55151.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55151.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55151.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55152.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55152.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55152.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55153.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55153.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55153.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55153.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55154.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55154.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55154.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55155.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55155.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55155.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55155.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55156.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55156.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55156.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55157.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55157.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55157.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55157.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55158.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55158.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55158.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55159.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55159.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55159.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55159.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55160.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55160.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55160.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55161.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55161.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55161.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55161.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55162.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55162.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55162.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55163.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55163.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55163.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55163.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55164.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55164.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55164.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55165.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55165.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55165.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55165.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55166.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55166.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55166.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55167.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55167.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55167.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55167.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55168.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55168.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55168.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55169.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55169.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55169.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55169.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55170.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55170.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55170.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55171.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55171.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55171.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55171.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55172.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55172.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55172.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55173.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55173.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55173.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55173.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55174.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55174.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55174.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55175.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55175.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55175.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55175.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55176.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55176.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55176.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55177.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55177.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55177.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55177.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55178.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55178.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55178.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55179.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55179.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55179.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55179.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55180.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55180.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55180.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55181.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55181.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55181.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55181.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55182.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55182.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55182.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55183.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55183.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55183.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55183.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55184.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55184.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55184.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55185.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55185.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55185.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55185.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55186.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55186.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55186.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55187.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55187.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55187.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55187.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55188.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55188.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55188.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55189.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55189.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55189.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55189.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55190.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55190.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55190.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55191.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55191.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55191.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55191.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55192.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55192.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55192.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55193.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55193.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55193.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55193.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55194.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55194.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55194.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55195.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55195.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55195.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55195.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55196.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55196.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55196.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55197.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55197.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55197.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55197.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55198.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55198.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55198.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55199.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55199.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55199.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55199.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55200.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55200.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55200.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 55200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55201.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55201.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55201.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55202.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55202.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55203.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55203.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55203.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55204.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55204.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55205.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55205.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55205.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55206.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55206.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55207.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55207.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55207.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55208.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55208.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55209.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55209.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55209.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55210.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55210.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55211.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55211.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55211.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55212.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55212.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55213.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55213.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55213.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55214.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55214.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55215.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55215.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55215.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55216.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55216.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55217.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55217.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55217.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55218.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55218.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55219.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55219.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55219.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55220.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55220.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55221.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55221.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55221.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55222.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55222.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55223.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55223.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55223.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55224.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55224.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55225.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55225.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55225.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55226.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55226.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55227.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55227.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 55227.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55228.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55229.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55229.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55230.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55231.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55231.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55232.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55233.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55233.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55234.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55235.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55235.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55236.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55237.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55237.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55238.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55239.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55239.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55240.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55241.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55241.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55242.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55243.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55243.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55244.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55245.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55245.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55246.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55247.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55247.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55248.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55249.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55249.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55250.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55251.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55251.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55252.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55253.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55253.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55254.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55255.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55255.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55256.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55257.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55257.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55258.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55259.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55259.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55260.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55261.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55261.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55262.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55263.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55263.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55264.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55265.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55265.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55266.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55267.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55267.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55268.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55269.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55269.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55270.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55271.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55271.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55272.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55273.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55273.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55274.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55275.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55275.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55276.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55277.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55277.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55278.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55279.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55279.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55280.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55281.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55281.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55282.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55283.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55284.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55285.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55285.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55286.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55287.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55287.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55288.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55289.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55289.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55290.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55291.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55291.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55292.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55293.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55293.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55294.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55295.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55295.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55296.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55297.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55297.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55298.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55299.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55299.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55300.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55301.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55301.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55302.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55303.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55303.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55304.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55305.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55305.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55306.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55307.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55307.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55308.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55309.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55309.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55310.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55311.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55311.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55312.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55313.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55313.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55314.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55315.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55315.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55316.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55317.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55317.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55318.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55319.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55319.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55320.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55320.000000] [simulator/INFO] on10 is sleeping +[on5:ON:(6) 55321.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 55600.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 55600.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55602.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55604.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55606.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55608.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55610.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55612.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55614.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55616.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55618.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55620.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55622.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55624.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55626.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55628.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55630.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55632.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55634.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55636.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55638.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55640.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55642.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55644.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55646.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55648.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55650.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55652.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55654.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55656.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55658.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55660.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55662.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55664.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55666.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55668.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55670.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55672.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55674.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55676.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55678.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55680.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55682.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55683.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55694.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55696.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55715.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55715.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 55715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55716.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55717.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55718.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55719.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55720.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55720.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55720.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 55720.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55721.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55721.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55722.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55722.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55722.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55723.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55723.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55724.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55724.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55724.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55725.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55725.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55726.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55726.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55726.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55727.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55727.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55728.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55728.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55728.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55729.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55729.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55730.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55730.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55730.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55731.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55731.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55732.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55732.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55732.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55733.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55733.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55734.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55734.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55734.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55735.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55735.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55736.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55736.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55736.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55737.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55737.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55738.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55738.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55738.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55739.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55739.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55740.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55740.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55740.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55741.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55741.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55742.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55742.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55742.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55743.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55743.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55744.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55744.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55744.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55745.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55745.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55746.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55746.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55746.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55747.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55747.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55748.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55748.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55748.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55749.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55749.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55750.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55750.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55750.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55751.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55751.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55752.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55752.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55752.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55753.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55753.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55754.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55754.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55754.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55755.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55755.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55756.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55756.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55756.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55757.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55757.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55758.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55758.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55758.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55759.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55759.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55760.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55760.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55760.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55761.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55761.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55762.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55762.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55762.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55763.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55763.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55764.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55764.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55764.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55765.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55765.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55766.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55766.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55766.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55767.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55767.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55768.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55768.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55768.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55769.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55769.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55770.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55770.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55770.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55771.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55771.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55772.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55772.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55772.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55773.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55773.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55774.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55774.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55774.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55775.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55775.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55776.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55776.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55776.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55777.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55777.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55778.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55778.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55778.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55779.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55779.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55780.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55780.000000] [simulator/INFO] on6 is sleeping +[on0:ON:(1) 55780.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55781.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55782.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55782.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55783.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55784.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55784.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55785.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55786.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55786.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55787.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55788.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55788.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55789.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55790.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55790.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55791.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55792.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55792.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55793.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55794.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55794.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55795.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55796.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55796.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55797.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55798.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55798.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55799.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55800.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55800.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55801.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55802.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55802.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55803.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55804.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55804.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55805.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55806.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55806.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55807.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55808.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55808.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55809.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55810.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55810.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55811.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55812.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55812.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55813.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55814.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55814.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55815.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55816.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55816.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55817.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55818.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55818.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55819.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55820.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55820.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55821.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55822.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55822.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55823.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55824.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55824.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55825.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55826.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55826.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55827.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55828.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55829.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55830.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55831.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55832.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55833.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55834.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55835.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55836.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55837.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55838.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55839.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55840.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55841.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55842.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55843.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55844.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55845.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55846.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55847.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55848.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55849.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55850.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55851.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55852.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55853.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55854.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55855.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55856.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55857.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55858.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55859.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55860.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55861.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55862.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55863.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55864.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55865.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55866.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55867.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55868.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55869.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55870.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55871.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55872.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55873.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55874.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55875.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55876.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55877.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55878.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55879.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55880.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55881.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55882.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55883.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55884.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55885.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55886.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55887.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55888.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55889.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55890.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55891.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55892.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55893.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55894.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55895.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55895.000000] [simulator/INFO] on3 is sleeping +[on0:ON:(1) 55896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55900.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 56507.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 56507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56563.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56565.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56567.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56569.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56571.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56573.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56575.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56577.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56579.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56581.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56583.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56585.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56587.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56589.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56591.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56593.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56595.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56597.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56599.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56601.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56603.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56605.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56606.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56607.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56608.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56609.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56610.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56611.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56612.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56613.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56614.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56615.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56616.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56617.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56618.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56619.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56620.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56621.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56622.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56623.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56624.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56625.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56626.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56627.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56628.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56629.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56630.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56631.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56632.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56633.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56634.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56652.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56654.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56656.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56658.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56660.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56661.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56662.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56663.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56664.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56665.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56666.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56667.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56668.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56669.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56670.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56671.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56672.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56673.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56674.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56675.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56676.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56677.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56678.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56679.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56680.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56681.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56682.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56683.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56684.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56686.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56687.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 56779.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 56779.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56780.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56781.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56782.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56924.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56925.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56926.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56927.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56929.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56931.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56933.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56955.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56957.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56959.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 57059.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 57059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57239.000000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 57970.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 57970.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57971.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57972.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57973.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57974.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57975.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57976.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57977.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57977.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 57977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57978.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57978.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57979.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57980.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57980.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57981.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57982.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57982.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57983.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57984.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57984.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57985.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57986.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57986.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57987.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57988.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57988.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57989.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57990.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57990.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57991.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57992.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57992.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57993.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57994.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57994.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57995.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57996.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57996.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57997.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57998.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57998.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57999.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58000.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58000.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58001.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58002.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58002.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58003.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58004.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58004.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58005.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58006.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58006.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58007.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58008.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58008.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58009.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58010.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58010.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58011.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58012.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58012.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58013.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58014.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58014.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58015.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58016.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58016.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58017.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58018.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58019.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58020.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58021.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58022.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58023.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58024.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58025.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58026.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58027.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58028.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58029.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58030.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58031.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58032.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58033.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58034.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58035.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58036.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58037.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58038.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58039.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58040.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58041.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58041.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58041.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 58041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58042.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58042.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58043.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58043.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58044.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58044.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58045.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58045.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58046.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58046.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58047.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58047.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58048.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58048.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58049.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58049.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58050.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58050.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58051.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58051.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58052.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58052.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58053.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58053.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58054.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58054.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58055.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58055.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58056.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58056.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58057.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58057.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58058.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58058.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58059.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58059.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58060.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58060.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58061.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58061.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58062.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58062.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58063.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58063.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58064.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58064.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58065.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58065.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58066.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58066.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58067.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58067.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58068.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58068.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58069.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58069.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58070.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58070.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58071.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58071.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58072.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58072.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58073.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58073.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58074.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58074.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58075.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58075.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58076.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58076.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58077.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58077.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58078.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58078.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58079.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58079.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58080.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58080.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58081.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58081.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58082.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58082.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58083.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58083.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58084.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58084.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58085.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58085.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58086.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58086.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58087.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58087.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58088.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58088.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58089.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58089.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58090.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58090.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58091.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58091.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58092.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58092.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58093.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58093.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58094.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58094.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58095.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58095.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58096.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58096.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58097.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58097.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58098.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58098.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58099.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58099.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58100.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58100.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58101.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58101.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58102.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58102.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58103.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58103.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58104.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58104.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58105.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58105.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58106.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58106.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58107.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58107.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58108.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58108.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58109.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58109.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58110.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58110.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58111.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58111.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58112.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58112.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58113.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58113.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58114.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58114.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58115.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58115.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58116.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58116.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58117.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58117.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58118.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58118.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58119.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58119.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58120.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58120.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58121.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58121.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58122.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58122.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58123.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58123.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58124.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58124.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58125.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58125.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58126.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58126.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58127.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58127.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58128.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58128.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58129.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58129.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58130.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58130.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58131.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58131.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58132.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58132.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58133.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58133.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58134.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58134.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58135.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58135.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58136.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58136.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58137.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58137.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58138.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58138.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58139.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58139.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58140.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58140.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58141.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58141.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58142.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58142.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58143.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58143.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58144.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58144.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58145.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58145.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58146.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58146.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58147.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58147.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58148.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58148.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58149.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58149.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58150.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58150.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58150.000000] [simulator/INFO] on10 is sleeping +[on3:ON:(4) 58151.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58152.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58153.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58154.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58155.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58156.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58157.000000] [simulator/INFO] on3 is sleeping +[on8:ON:(9) 58157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58158.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58160.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58162.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58164.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58166.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58168.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58170.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58172.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58173.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58221.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 58570.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 58570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58693.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58693.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 58693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58694.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58695.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58696.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58697.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58698.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58699.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58700.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58701.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58702.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58703.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58704.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58705.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58706.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58707.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58708.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58709.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58710.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58711.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58712.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58713.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58714.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58715.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58716.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58716.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58716.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 58716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58717.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58717.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58718.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58718.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58719.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58719.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58720.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58720.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58721.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58721.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58722.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58722.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58723.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58723.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58724.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58724.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58725.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58725.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58726.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58726.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58727.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58727.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58727.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58728.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58728.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58729.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58729.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58729.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58730.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58730.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58731.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58731.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58731.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58732.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58732.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58733.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58733.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58733.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58734.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58734.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58735.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58735.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58735.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58736.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58736.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58737.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58737.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58737.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58738.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58738.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58739.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58739.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58739.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58740.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58740.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58741.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58741.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58741.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58742.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58742.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58743.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58743.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58743.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58744.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58744.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58745.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58745.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58745.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58746.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58746.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58747.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58747.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58747.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58748.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58748.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58749.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58749.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58749.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58750.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58750.000000] [simulator/INFO] on2 is sleeping +[on9:ON:(10) 58750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58751.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58751.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58752.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58753.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58753.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58754.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58755.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58755.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58756.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58757.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58757.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58758.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58759.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58759.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58760.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58761.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58761.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58762.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58763.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58763.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58764.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58765.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58765.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58766.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58767.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58767.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58768.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58769.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58769.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58770.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58771.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58771.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58772.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58773.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58773.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58774.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58775.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58775.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58776.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58777.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58777.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58778.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58779.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58779.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58780.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58781.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58781.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58782.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58783.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58783.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58784.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58785.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58785.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58786.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58787.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58787.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58788.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58789.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58789.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58790.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58791.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58791.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58792.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58793.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58793.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58794.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58795.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58796.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58797.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58797.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58798.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58799.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58799.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58800.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58801.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58801.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58802.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58803.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58803.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58804.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58805.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58805.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58806.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58807.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58807.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58808.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58809.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58809.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58810.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58811.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58811.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58812.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58813.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58813.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58814.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58815.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58815.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58816.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58817.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58817.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58818.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58819.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58819.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58820.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58821.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58821.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58822.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58823.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58823.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58824.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58825.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58825.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58826.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58827.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58827.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58828.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58829.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58829.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58830.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58831.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58831.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58832.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58833.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58834.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58835.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58836.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58837.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58838.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58839.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58840.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58841.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58842.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58843.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58844.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58845.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58846.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58847.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58848.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58849.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58850.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58851.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58852.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58853.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58854.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58855.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58856.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58857.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58858.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58859.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58860.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58861.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58862.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58863.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58864.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58865.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58866.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58867.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58868.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58869.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58870.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58871.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58872.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58873.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58873.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 58874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58896.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 59370.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 59370.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59371.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59372.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59373.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59374.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59375.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59376.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59377.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59378.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59379.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59380.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59381.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59382.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59383.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59384.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59385.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59386.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59387.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59388.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59389.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59390.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59391.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59392.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59393.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59394.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59395.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59397.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59399.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59401.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59403.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59550.000000] [simulator/INFO] on5 is sleeping +[on0:ON:(1) 60407.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 60407.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60409.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60411.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60413.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60415.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60417.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60419.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60421.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60423.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60425.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60427.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60429.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60431.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60433.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60435.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60437.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60439.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60441.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60443.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60445.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60447.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60449.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60451.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60453.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60455.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60457.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60459.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60461.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60463.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60465.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60467.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60469.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60470.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60471.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60472.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60473.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60474.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60475.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60476.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60477.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60478.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60479.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60480.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60481.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60481.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 60481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60482.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60482.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60483.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60484.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60484.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60485.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60486.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60486.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60487.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60488.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60488.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60489.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60490.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60490.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60491.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60492.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60492.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60492.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 60492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60493.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60493.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60494.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60494.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60495.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60495.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60496.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60496.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60497.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60497.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60498.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60498.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60499.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60499.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60500.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60500.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60501.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60501.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60502.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60502.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60503.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60503.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60504.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60504.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60505.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60505.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60506.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60506.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60507.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60507.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60508.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60508.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60509.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60509.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60510.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60510.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60511.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60511.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60512.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60512.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60513.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60513.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60514.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60514.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60515.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60515.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60516.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60516.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60517.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60517.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60518.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60518.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60519.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60519.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60520.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60520.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60521.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60521.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60522.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60522.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60523.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60523.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60524.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60524.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60525.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60525.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60526.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60526.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60527.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60527.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60528.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60528.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60529.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60529.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60530.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60530.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60531.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60531.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60532.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60532.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60533.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60533.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60534.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60534.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60535.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60535.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60536.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60536.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60537.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60537.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60538.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60538.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60539.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60539.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60540.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60540.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60541.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60541.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60542.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60542.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60543.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60543.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60544.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60544.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60545.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60545.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60546.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60546.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60547.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60547.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60548.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60548.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60549.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60549.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60550.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60550.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60551.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60551.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60552.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60552.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60552.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60552.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 60552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60553.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60553.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60553.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60554.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60554.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60554.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60555.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60555.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60555.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60556.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60556.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60556.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60557.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60557.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60557.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60558.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60558.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60558.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60559.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60559.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60559.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60560.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60560.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60560.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60561.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60561.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60561.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60562.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60562.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60562.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60563.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60563.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60563.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60563.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60564.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60564.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60564.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60565.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60565.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60565.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60565.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60566.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60566.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60566.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60567.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60567.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60567.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60567.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60568.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60568.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60568.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60569.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60569.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60569.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60569.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60570.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60570.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60570.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60571.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60571.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60571.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60571.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60572.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60572.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60572.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60573.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60573.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60573.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60573.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60574.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60574.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60574.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60575.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60575.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60575.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60575.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60576.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60576.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60576.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60577.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60577.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60577.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60577.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60578.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60578.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60578.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60579.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60579.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60579.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60579.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60580.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60580.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60580.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60581.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60581.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60581.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60581.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60582.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60582.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60582.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60583.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60583.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60583.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60583.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60584.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60584.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60584.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60585.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60585.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60585.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60585.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60586.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60586.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60586.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60587.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60587.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60587.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 60587.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60588.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60588.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60589.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60589.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60589.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60590.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60590.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60591.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60591.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60591.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60592.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60592.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60593.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60593.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60593.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60594.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60594.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60595.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60595.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60595.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60596.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60596.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60597.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60597.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60597.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60598.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60598.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60599.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60599.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60599.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60600.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60600.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60601.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60601.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60601.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60602.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60602.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60603.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60603.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60603.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60604.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60604.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60605.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60605.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60605.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60606.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60606.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60607.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60607.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60607.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60608.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60608.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60609.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60609.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60609.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60610.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60610.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60611.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60611.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60611.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60612.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60612.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60613.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60613.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60613.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60614.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60614.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60615.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60615.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60615.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60616.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60616.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60617.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60617.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60617.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60618.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60618.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60619.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60619.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60619.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60620.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60620.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60621.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60621.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60621.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60622.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60622.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60622.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60623.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60623.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60623.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60624.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60624.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60624.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60625.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60625.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60625.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60626.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60626.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60626.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60627.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60627.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60627.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60628.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60628.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60628.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60629.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60629.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60629.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60630.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60630.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60630.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60631.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60631.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60631.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60632.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60632.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60632.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60633.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60633.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60633.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60634.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60634.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60634.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60635.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60635.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60636.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60636.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60636.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60637.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60637.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60638.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60638.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60638.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60639.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60639.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60640.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60640.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60640.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60641.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60641.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60642.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60642.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60642.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60643.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60643.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60644.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60644.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60644.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60645.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60645.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60646.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60646.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60646.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60647.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60647.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60648.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60648.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60648.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60649.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60649.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60650.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60650.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60650.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60651.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60651.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60652.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60652.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60652.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60653.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60653.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60654.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60654.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60654.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60655.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60655.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60656.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60656.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60656.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60657.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60657.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60658.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60658.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60658.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60659.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60659.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60660.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60660.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60660.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60661.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60661.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60661.000000] [simulator/INFO] on7 is sleeping +[on6:ON:(7) 60662.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60662.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60663.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60664.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60664.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60665.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60666.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60666.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60667.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60668.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60668.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60669.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60670.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60670.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60671.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60672.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 60672.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60674.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60676.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60678.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60680.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60682.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60684.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60686.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60688.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60690.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60692.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60694.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60696.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60698.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60699.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60700.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60701.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60702.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60703.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60704.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60705.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60706.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60707.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60708.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60709.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60710.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60711.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60712.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60713.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60714.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60715.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60716.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60717.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60718.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60719.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60720.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60721.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60722.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60723.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60724.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60725.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60726.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60727.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60728.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60729.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60730.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60731.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60732.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 60812.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 60812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60846.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60848.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60850.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60852.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60854.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60856.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60858.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60864.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60992.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 61143.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 61143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61221.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61221.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 61221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61222.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61223.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61224.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61225.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61226.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61227.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61228.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61229.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61230.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61231.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61232.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61233.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61234.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61235.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61236.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61237.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61238.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61239.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61240.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61241.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61242.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61243.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61244.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61245.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61246.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61247.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61248.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61249.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61250.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61251.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61252.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61253.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61254.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61255.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61255.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61255.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 61255.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61256.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61256.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61257.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61257.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61257.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61258.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61258.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61259.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61259.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61259.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61260.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61260.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61261.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61261.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61261.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61262.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61262.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61263.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61263.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61263.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61264.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61264.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61265.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61265.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61265.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61266.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61266.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61267.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61267.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61267.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61268.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61268.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61269.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61269.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61269.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61270.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61270.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61271.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61271.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61271.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61272.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61272.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61273.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61273.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61273.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61274.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61274.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61275.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61275.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61275.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61276.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61276.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61277.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61277.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61277.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61278.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61278.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61279.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61279.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61279.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61280.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61280.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61281.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61281.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61281.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61282.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61282.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61283.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61283.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61283.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61284.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61284.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61285.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61285.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61285.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61286.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61286.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61287.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61287.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61287.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61288.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61288.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61289.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61289.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61289.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61290.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61290.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61291.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61291.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61291.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61292.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61292.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61293.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61293.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61293.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61294.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61294.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61295.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61295.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61295.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61296.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61296.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61297.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61297.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61297.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61298.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61298.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61299.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61299.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61299.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61300.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61300.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61301.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61301.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61301.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61302.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61302.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61303.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61303.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61303.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61304.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61304.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61305.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61305.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61305.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61306.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61306.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61307.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61307.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61307.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61308.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61308.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61309.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61309.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61309.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61310.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61310.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61311.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61311.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61311.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61312.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61312.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61313.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61313.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61313.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61314.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61314.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61315.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61315.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61315.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61316.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61316.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61317.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61317.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61317.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61318.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61318.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61319.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61319.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61319.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61320.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61320.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61321.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61321.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61321.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61322.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61322.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61323.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 61323.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61323.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61324.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61325.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61325.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61326.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61327.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61327.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61328.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61329.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61330.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61331.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61332.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61333.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61334.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61335.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61336.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61337.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61338.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61339.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61340.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61341.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61342.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61343.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61344.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61345.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61346.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61347.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61348.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61349.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61350.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61351.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61352.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61353.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61354.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61355.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61355.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61356.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61357.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61357.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61358.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61359.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61359.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61360.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61361.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61361.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61362.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61363.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61363.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61364.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61365.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61365.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61366.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61367.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61367.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61368.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61369.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61369.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61370.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61371.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61371.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61372.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61373.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61373.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61374.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61375.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61375.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61376.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61377.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61377.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61378.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61379.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61379.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61380.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61381.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61381.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61382.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61383.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61383.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61384.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61385.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61385.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61386.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61387.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61387.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61388.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61389.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61389.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61390.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61391.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61391.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61392.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61393.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61393.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61394.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61395.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61395.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61396.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61397.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61397.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61398.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61399.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61399.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61400.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61401.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 61401.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61402.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61403.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61404.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61405.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61406.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61407.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61408.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61409.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61410.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61411.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61412.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61413.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61414.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61415.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61416.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61417.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61418.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61419.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61420.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61421.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61422.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61423.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61424.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61425.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61426.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61427.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61428.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61429.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61430.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61431.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61432.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61433.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61434.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61435.000000] [simulator/INFO] on6 is sleeping +[on3:ON:(4) 62215.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 62215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62298.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62300.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62302.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62306.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62308.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62309.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62310.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62312.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62314.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62315.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62316.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62318.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62320.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62321.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62322.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62324.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62326.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62327.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62328.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62330.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62332.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62333.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62334.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62336.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62338.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62339.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62340.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62342.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62348.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62351.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62354.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62357.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62360.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62363.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62366.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62369.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62372.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62375.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62378.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62381.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62384.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62395.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 62442.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 62442.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62443.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62444.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62445.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62446.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62447.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62448.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62449.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62450.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62451.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62452.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62453.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62454.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62455.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62456.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62457.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62458.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62459.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62460.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62461.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62462.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62463.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62464.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62465.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62466.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62467.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62468.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62469.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62470.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62471.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62472.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62473.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62474.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62475.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62476.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62477.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62478.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62479.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62480.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62481.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62482.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62483.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62484.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62485.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62486.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62487.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62488.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62489.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62490.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62491.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62492.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62493.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62494.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62495.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62496.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62497.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62498.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62499.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62500.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62501.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62502.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62503.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62504.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62505.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62506.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62507.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62508.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62509.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62510.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62511.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62512.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62513.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62514.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62515.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62516.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62517.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62519.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62521.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62523.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62525.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62527.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62529.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62531.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62533.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62535.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62537.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62539.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62541.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62543.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62545.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62547.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62549.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62551.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62553.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62555.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62557.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62559.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62561.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62563.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62565.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62567.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62569.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62571.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62573.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62575.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62577.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62579.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62581.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62583.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62585.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62587.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62589.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62591.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62593.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62595.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62597.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62599.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62601.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62603.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62605.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62607.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62609.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62611.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62613.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62615.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62617.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62619.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62621.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62622.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 62845.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 62845.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62846.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62847.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62848.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62849.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62850.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62851.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62852.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62853.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62854.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62889.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62889.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 62889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62890.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62891.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62892.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62893.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62894.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62895.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62896.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62897.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62898.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62899.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62900.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62901.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62902.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62903.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62904.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62905.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62906.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62907.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62908.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62909.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62910.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62911.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62912.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62913.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62914.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62915.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62916.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62917.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62918.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62919.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62920.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62921.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62922.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62922.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62923.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62924.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62925.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62926.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62927.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62928.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62928.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62929.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62930.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62931.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62932.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62933.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62934.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62934.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62935.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62936.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62937.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62937.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62938.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62939.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62939.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62940.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62940.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62941.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62941.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62942.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62943.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62943.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62944.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62945.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62945.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62946.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62946.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62947.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62947.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62948.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62949.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62949.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62950.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62951.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62951.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62952.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62952.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62953.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62953.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62954.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62955.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62955.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62956.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62957.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62957.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62958.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62958.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62959.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62959.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62960.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62961.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62961.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62962.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62963.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62963.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62964.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62964.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62965.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62965.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62966.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62967.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62967.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62968.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62969.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62969.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62970.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62970.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62971.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62971.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62972.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62973.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62973.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62974.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62975.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62975.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62976.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62976.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62977.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62977.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62978.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62979.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62979.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62980.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62981.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62981.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62982.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62982.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62983.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62983.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62984.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62985.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62985.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62986.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62987.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62987.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62988.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62988.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62989.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62989.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62990.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62991.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62991.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62992.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62993.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62993.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62994.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62994.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62995.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62995.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62996.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62997.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62997.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62998.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62999.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62999.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63000.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63000.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63001.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63001.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63002.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63002.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63003.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63003.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63004.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63004.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63005.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63005.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63006.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63006.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63007.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63007.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63008.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63008.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63009.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63009.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63010.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63010.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63011.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63011.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63012.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63012.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63013.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63013.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63014.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63014.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63015.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63015.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63016.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63016.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63017.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63017.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63018.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63018.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63019.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63019.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63020.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63020.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63021.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63021.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63022.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63022.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63023.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63023.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63024.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63024.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63025.000000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 63025.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63026.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63027.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63028.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63029.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63030.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63031.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63032.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63033.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63034.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63035.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63036.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63037.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63038.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63039.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63040.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63041.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63042.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63043.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63044.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63045.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63046.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63047.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63048.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63049.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63050.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63051.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63052.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63053.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63055.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63056.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63057.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63058.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63059.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63060.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63061.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63062.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63063.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63064.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63065.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63066.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63067.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63068.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63069.000000] [simulator/INFO] on4 is sleeping +[on7:ON:(8) 63369.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 63369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63370.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63372.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63373.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63374.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63376.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63378.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63379.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63380.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63382.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63384.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63386.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63388.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63390.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63392.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63394.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63396.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63398.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63400.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63402.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63403.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63404.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63406.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63408.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63409.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63410.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63412.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63414.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63415.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63416.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63417.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63418.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63419.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63420.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63421.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63422.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63423.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63424.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63426.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63428.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63430.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63432.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63434.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63436.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63438.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63440.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63442.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63444.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63446.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63448.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63450.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63452.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63454.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63456.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63457.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63458.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63458.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 63458.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63459.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63459.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63460.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63460.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63461.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63461.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63462.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63462.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63463.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63463.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63464.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63464.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63465.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63465.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63466.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63466.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63467.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63467.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63468.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63469.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63469.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63470.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63471.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63471.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63472.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63472.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63473.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63473.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63474.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63475.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63475.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63476.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63477.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63477.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63478.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63478.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63479.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63479.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63480.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63481.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63482.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63483.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63484.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63484.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63485.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63486.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63486.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63487.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63488.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63488.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63489.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63490.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63490.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63491.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63492.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63492.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63493.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63494.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63494.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63495.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63496.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63496.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63497.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63498.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63498.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63499.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63500.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63500.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63501.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63502.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63502.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63503.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63504.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63504.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63504.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 63504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63505.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63505.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63506.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63506.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63507.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63507.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63508.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63508.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63509.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63509.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63510.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63510.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63511.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63511.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63512.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63512.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63513.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63513.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63514.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63514.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63515.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63515.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63516.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63516.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63517.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63517.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63518.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63518.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63519.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63519.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63520.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63520.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63521.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63521.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63522.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63522.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63523.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63523.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63524.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63524.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63525.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63525.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63526.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63526.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63527.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63527.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63528.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63528.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63529.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63529.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63530.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63530.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63531.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63531.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63532.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63532.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63533.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63533.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63534.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63534.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63535.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63535.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63536.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63536.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63537.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63537.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63538.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63538.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63539.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63539.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63540.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63540.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63541.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63541.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63542.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63542.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63543.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63543.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63544.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63544.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63545.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63545.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63546.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63546.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63547.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63547.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63548.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63548.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63549.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63549.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63549.000000] [simulator/INFO] on7 is sleeping +[on12:ON:(13) 63550.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63551.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63551.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63552.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63553.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63553.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63554.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63555.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63555.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63556.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63557.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63557.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63558.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63559.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63559.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63560.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63561.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63561.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63562.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63563.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63563.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63564.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63565.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63565.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63566.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63567.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63567.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63568.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63569.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63569.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63570.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63571.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63571.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63572.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63573.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63573.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63574.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63575.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63575.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63576.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63577.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63577.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63578.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63579.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63579.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63580.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63581.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63581.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63582.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63583.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63583.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63584.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63585.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63585.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63586.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63587.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63587.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63588.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63589.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63589.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63590.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63591.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63591.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63592.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63593.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63593.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63594.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63595.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63595.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63596.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63597.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63597.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63598.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63599.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63599.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63600.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63601.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63601.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63602.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63603.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63603.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63604.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63605.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63605.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63606.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63607.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63607.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63608.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63609.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63609.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63610.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63611.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63611.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63612.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63613.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63613.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63614.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63615.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63615.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63616.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63617.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63617.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63618.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63619.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63619.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63620.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63621.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63621.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63622.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63623.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63623.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63624.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63625.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63625.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63626.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63627.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63627.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63628.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63629.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63629.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63630.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63631.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63631.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63632.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63633.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63633.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63634.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63635.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63635.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63636.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63637.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63637.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63638.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 63638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63647.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63649.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63671.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63673.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63675.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63677.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63679.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63681.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63683.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63684.000000] [simulator/INFO] on11 is sleeping +[on0:ON:(1) 63697.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 63697.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63698.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63699.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63700.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63701.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63702.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63703.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63704.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63705.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63706.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63707.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63708.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63709.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63710.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63711.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63712.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63713.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63714.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63715.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63716.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63717.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63718.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63719.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63720.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63721.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63722.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63723.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63724.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63725.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63726.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63727.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63728.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63729.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63730.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63731.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63732.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63733.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63734.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63735.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63736.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63737.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63738.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63739.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63740.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63741.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63742.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63743.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63744.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63745.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63746.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63747.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63748.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63749.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63750.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63751.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63752.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63753.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63754.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63755.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63756.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63757.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63758.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63759.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63760.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63761.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63762.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63763.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63764.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63765.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63766.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63767.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63768.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63769.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63770.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63771.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63772.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63773.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63774.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63775.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63776.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63777.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63778.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63779.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63780.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63781.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63782.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63783.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63784.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63785.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63786.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63787.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63788.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63789.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63790.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63791.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63792.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63793.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63794.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63795.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63796.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63797.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63798.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63799.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63800.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63801.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63802.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63803.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63804.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63805.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63806.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63807.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63808.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63809.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63810.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63811.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63812.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63813.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63814.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63815.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63816.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63817.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63818.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63819.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63820.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63821.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63822.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63823.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63824.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63825.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63826.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63827.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63829.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63831.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63833.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63835.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63837.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63839.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63841.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63843.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63845.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63847.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63849.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63851.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63853.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63855.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63857.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63859.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63861.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63863.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63865.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63867.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63869.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63871.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63873.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63875.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63877.000000] [simulator/INFO] on0 is sleeping +[on9:ON:(10) 64063.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 64063.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64065.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64067.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64069.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64071.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64073.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64075.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64077.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64079.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64081.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64083.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64085.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64087.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64089.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64091.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64093.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64095.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64097.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64099.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64101.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64103.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64105.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64107.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64109.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64111.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64113.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64115.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64117.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64119.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64121.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64123.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64125.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64127.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64129.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64131.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64133.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64135.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64137.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64139.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64141.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64143.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64145.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64147.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64149.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64151.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64153.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64155.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64157.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64159.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64160.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64161.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64162.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64163.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64164.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64165.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64166.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64167.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64168.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64169.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64170.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64171.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64172.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64173.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64174.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64175.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64176.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64177.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64178.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64179.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64180.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64181.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64182.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64183.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64184.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64185.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64186.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64187.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64188.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64189.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64190.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64191.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64192.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64193.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64194.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64195.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64196.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64197.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64198.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64199.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64200.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64201.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64202.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64203.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64204.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64205.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64206.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64207.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64208.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64209.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64210.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64211.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64212.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64213.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64214.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64215.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64216.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64217.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64218.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64219.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64220.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64221.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64222.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64223.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64224.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64225.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64226.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64227.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64228.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64229.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64230.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64231.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64232.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64233.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64234.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64235.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64236.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64237.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64238.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64239.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64240.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64241.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64242.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64243.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 64350.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 64350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64351.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64353.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64355.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64357.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64359.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64361.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64363.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64365.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64367.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64369.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64371.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64373.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64375.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64377.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64379.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64381.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64383.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64385.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64387.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64389.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64391.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64393.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64395.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64396.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64397.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64398.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64399.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64400.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64401.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64402.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64403.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64404.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64405.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64406.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64407.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64408.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64409.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64410.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64411.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64412.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64413.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64414.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64415.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64416.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64417.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64418.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64419.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64420.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64421.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64422.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64423.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64424.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64425.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64426.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64427.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64428.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64429.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64430.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64431.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64432.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64433.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64434.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64435.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64436.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64437.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64438.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64439.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64440.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64441.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64442.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64443.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64444.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64445.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64446.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64447.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64448.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64449.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64450.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64451.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64452.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64453.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64454.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64455.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64456.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64457.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64458.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64459.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64460.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64461.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64462.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64463.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64464.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64465.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64466.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64467.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64468.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64469.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64470.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64471.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64472.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64473.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64474.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64475.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64476.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64477.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64478.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64479.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64480.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64481.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64482.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64483.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64484.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64485.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64486.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64487.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64488.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64489.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64490.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64491.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64492.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64493.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64494.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64495.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64496.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64497.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64498.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64499.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64500.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64501.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64502.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64503.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64504.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64505.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64506.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64507.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64508.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64509.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64510.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64511.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64512.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64513.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64514.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64515.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64516.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64517.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64518.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64519.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64521.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64523.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64525.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64530.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 64783.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 64783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64924.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64925.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64926.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64927.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64929.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64931.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64933.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64955.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64955.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 64955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64956.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64957.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64958.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64959.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64960.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64960.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64961.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64962.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64962.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64963.000000] [simulator/INFO] on8 is sleeping +[on0:ON:(1) 64963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65009.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65011.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65013.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65015.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65017.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65019.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65021.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65023.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65025.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65027.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65029.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65031.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65033.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65035.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65037.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65039.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65041.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65043.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65045.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65047.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65049.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65051.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65053.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65055.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65056.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65057.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65058.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65059.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65060.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65061.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65062.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65063.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65064.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65065.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65066.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65067.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65068.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65069.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65070.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65071.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65072.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65073.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65074.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65075.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65076.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65077.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65078.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65079.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65080.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65081.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65083.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65085.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65087.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65089.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65091.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65093.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65095.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65097.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65099.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65101.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65102.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65103.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65104.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65105.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65106.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65107.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65108.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65109.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65110.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65111.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65112.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65113.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65114.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65115.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65116.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65117.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65118.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65119.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65120.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65121.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65122.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65123.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65124.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65125.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65126.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65127.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65128.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65129.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65130.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65131.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65132.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65133.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65134.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65135.000000] [simulator/INFO] on0 is sleeping +[on12:ON:(13) 65742.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 65742.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65743.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65744.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65745.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65746.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65747.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65748.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65749.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65750.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65751.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65752.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65753.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65754.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65755.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65756.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65757.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65758.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65759.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65760.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65761.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65762.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65763.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65764.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65765.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65766.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65767.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65768.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65769.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65770.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65771.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65772.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65773.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65774.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65775.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65776.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65777.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65778.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65779.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65780.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65781.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65782.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65783.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65784.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65785.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65786.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65787.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65788.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65789.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65790.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65791.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65792.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65793.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65794.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65795.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65796.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65797.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65798.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65800.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65802.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65804.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65806.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65808.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65810.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65812.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65814.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65816.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65818.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65820.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65846.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65852.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65858.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65864.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65870.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65876.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65876.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 65876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65877.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65878.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65879.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65880.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65881.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65882.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65883.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65884.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65885.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65885.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65886.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65887.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65888.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65889.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65890.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65891.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65891.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65892.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65893.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65894.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65895.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65896.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65896.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65896.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 65896.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65897.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65897.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65897.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65898.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65898.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65898.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65899.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65899.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65900.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65900.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65900.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65901.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65901.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65902.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65902.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65902.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65903.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65903.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65903.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65904.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65904.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65904.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65905.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65905.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65906.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65906.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65906.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65907.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65907.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65908.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65908.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65908.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65909.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65909.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65909.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65910.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65910.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65910.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65911.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65911.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65912.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65912.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65912.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65913.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65913.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65914.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65914.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65914.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65915.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65915.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65915.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65916.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65916.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65916.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65917.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65917.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65918.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65918.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65918.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65919.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65919.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65920.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65920.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65920.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65921.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65921.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65921.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65922.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 65922.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65922.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65923.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65924.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65924.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65925.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65926.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65926.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65927.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65928.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65928.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65929.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65930.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65930.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65931.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65932.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65932.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65933.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65934.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65934.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65935.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65936.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65936.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65937.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65938.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65938.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65939.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65940.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65940.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65941.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65942.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65942.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65943.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65944.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65944.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65945.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65946.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65946.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65947.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65948.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65948.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65949.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65950.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65950.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65951.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65952.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65952.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65953.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65954.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65954.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65955.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65956.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65956.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65957.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65958.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65958.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65959.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65960.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65960.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65961.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65962.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65962.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65963.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65964.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65964.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65965.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65966.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65966.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65967.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65968.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65968.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65969.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65970.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65970.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65971.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65972.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65972.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65973.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65974.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65974.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65975.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65976.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65976.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65977.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65978.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65978.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65979.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65980.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65980.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65981.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65982.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65982.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65983.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65984.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65984.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65985.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65986.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65986.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65987.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65988.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65988.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65989.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65990.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65990.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65991.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65992.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65992.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65993.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65994.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65994.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65995.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65996.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65996.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65997.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65998.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65998.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65999.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66000.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66000.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66001.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66002.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66002.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66003.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66004.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66004.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66005.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66006.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66006.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66007.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66008.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66008.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66009.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66010.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66010.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66011.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66012.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66012.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66013.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66014.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66014.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66015.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66016.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66016.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66017.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66018.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66019.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66020.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66021.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66022.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66023.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66024.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66025.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66026.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66027.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66028.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66029.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66030.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66031.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66032.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66033.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66034.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66035.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66036.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66037.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66038.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66039.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66040.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66041.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66042.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66043.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66044.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66045.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66046.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66047.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66048.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66049.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66050.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66051.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66052.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66053.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66054.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66055.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66056.000000] [simulator/INFO] on3 is sleeping +[on10:ON:(11) 66056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66057.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66059.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66061.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66063.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66076.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 66260.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 66260.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66262.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66264.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66266.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66268.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66270.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66272.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66274.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66276.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66278.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66280.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66282.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66284.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66286.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66288.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66290.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66292.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66294.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66296.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66344.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66345.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66346.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66347.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66348.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66349.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66350.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66351.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66352.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66353.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66354.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66355.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66356.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66357.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66358.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66359.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66360.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66361.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66362.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66363.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66364.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66365.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66366.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66367.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66368.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66369.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66370.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66371.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66372.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66373.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66374.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66375.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66376.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66377.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66378.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66379.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66380.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66381.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66382.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66383.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66384.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66385.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66386.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66387.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66388.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66389.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66390.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66391.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66392.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66393.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66394.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66395.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66396.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66397.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66398.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66399.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66400.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66401.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66402.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66403.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66404.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66405.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66406.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66407.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66408.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66409.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66410.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66411.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66412.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66413.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66414.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66415.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66416.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66417.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66418.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66419.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66420.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66421.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66422.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66423.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66424.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66425.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66426.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66427.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66428.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66429.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66430.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66431.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66432.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66433.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66434.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66435.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66436.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66437.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66438.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66439.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66440.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 66790.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 66790.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66791.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66792.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66793.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66794.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66795.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66796.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66797.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66798.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66799.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66800.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66801.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66802.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66803.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66804.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66805.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66806.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66807.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66808.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66809.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66810.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66811.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66846.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66846.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 66846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66847.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66848.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66849.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66850.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66851.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66852.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66853.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66854.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66855.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66856.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66857.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66858.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66859.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66860.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66861.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66862.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66863.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66864.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66865.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66866.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66867.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66868.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66869.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66870.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66871.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66872.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66873.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66874.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66875.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66876.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66877.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66878.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66879.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66880.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66881.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66882.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66883.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66884.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66885.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66886.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66887.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66888.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66889.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66890.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66891.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66892.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66893.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66894.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66895.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66896.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66897.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66898.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66899.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66900.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66901.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66902.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66903.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66903.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66903.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 66903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66904.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66904.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66905.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66905.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66906.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66906.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66907.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66907.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66908.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66908.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66909.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66909.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66910.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66910.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66911.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66911.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66912.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66912.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66913.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66913.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66914.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66914.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66915.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66915.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66916.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66916.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66917.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66917.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66918.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66918.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66919.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66919.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66920.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66920.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66921.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66921.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66922.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66922.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66923.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66923.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66924.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66924.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66925.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66925.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66926.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66926.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66927.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66927.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66928.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66928.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66929.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66929.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66930.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66930.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66931.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66931.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66932.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66932.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66933.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66933.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66934.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66934.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66935.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66935.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66936.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66936.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66937.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66937.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66938.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66938.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66939.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66939.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66940.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66940.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66941.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66941.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66942.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66942.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66943.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66943.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66944.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66944.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66945.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66945.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66946.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66946.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66947.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66947.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66948.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66948.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66949.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66949.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66950.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66950.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66951.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66951.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66952.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66952.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66953.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66953.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66954.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66954.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66955.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66955.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66956.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66956.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66957.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66957.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66958.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66958.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66959.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66959.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66960.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66960.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66961.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66961.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66962.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66962.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66963.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66963.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66964.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66964.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66965.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66965.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66966.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66966.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66967.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66967.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66968.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66968.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66969.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66969.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66970.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66970.000000] [simulator/INFO] on11 is sleeping +[on6:ON:(7) 66970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66971.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66972.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66973.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66974.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66975.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66976.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66977.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66978.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66979.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66980.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66981.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66982.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66983.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66984.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66985.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66986.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66987.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66988.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66989.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66990.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66991.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66992.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66993.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66994.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66995.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66996.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66997.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66998.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66999.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67000.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67001.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67002.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67003.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67004.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67005.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67006.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67007.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67008.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67009.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67010.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67011.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67012.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67013.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67014.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67015.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67016.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67017.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67018.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67019.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67020.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67021.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67022.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67023.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67024.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67025.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67026.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67026.000000] [simulator/INFO] on6 is sleeping +[on2:ON:(3) 67027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67045.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67045.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 67045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67046.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67047.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67048.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67049.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67050.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67051.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67052.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67053.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67054.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67055.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67056.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67057.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67058.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67059.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67060.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67061.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67062.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67063.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67064.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67065.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67066.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67067.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67068.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67069.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67070.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67071.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67072.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67073.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67074.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67075.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67076.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67077.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67078.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67079.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67080.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67081.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67082.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67083.000000] [simulator/INFO] on2 is sleeping +[on7:ON:(8) 67083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67084.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67086.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67088.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67090.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67092.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67094.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67096.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67098.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67100.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67145.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67146.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67147.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67148.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67149.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67150.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67151.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67152.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67153.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67154.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67155.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67156.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67157.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67158.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67159.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67160.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67161.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67162.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67163.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67164.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67183.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67185.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67187.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67189.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67191.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67193.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67195.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67197.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67199.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67201.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67203.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67205.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67207.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67209.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67211.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67213.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67215.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67217.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67219.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67221.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67223.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67225.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 67306.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 67306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67338.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67338.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 67338.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67339.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67340.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67340.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67341.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67342.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67342.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67343.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67344.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67344.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67345.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67346.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67346.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67347.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67348.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67348.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67349.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67350.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67350.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67351.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67352.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67352.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67353.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67354.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67354.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67355.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67356.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67356.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67357.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67358.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67358.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67359.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67360.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67360.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67361.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67362.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67362.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67363.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67364.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67364.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67365.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67366.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67366.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67367.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67368.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67368.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67369.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67370.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67370.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67371.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67372.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67372.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67373.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67374.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67374.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67375.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67376.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67376.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67377.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67378.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67378.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67379.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67380.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67380.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67381.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67382.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67382.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67383.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67383.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67384.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67384.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67385.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67385.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67386.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67386.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67387.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67387.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67388.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67388.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67389.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67389.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67390.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67390.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67391.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67391.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67392.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67392.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67393.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67393.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67394.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67394.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67395.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67395.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67396.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67397.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67397.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67398.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67399.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67399.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67400.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67401.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67401.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67402.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67403.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67404.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67405.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67406.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67407.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67408.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67409.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67410.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67411.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67412.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67413.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67414.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67415.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67416.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67417.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67418.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67419.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67420.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67421.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67422.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67423.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67424.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67425.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67426.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67427.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67428.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67429.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67430.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67431.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67432.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67433.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67434.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67435.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67436.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67437.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67438.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67439.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67440.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67441.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67442.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67443.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67444.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67445.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67446.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67447.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67448.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67449.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67450.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67451.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67452.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67453.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67454.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67455.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67456.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67457.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67458.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67459.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67460.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67461.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67462.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67463.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67464.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67465.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67466.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67467.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67467.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67468.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67469.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67469.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67470.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67471.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67471.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67472.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67473.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67473.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67474.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67475.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67475.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67476.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67477.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67477.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67478.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67479.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67479.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67480.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67481.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67481.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67482.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67483.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67483.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67484.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67485.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67485.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67486.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 67486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67518.000000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 67532.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 67532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67712.000000] [simulator/INFO] on4 is sleeping +[on8:ON:(9) 67744.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 67744.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67747.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67750.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67753.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67754.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67755.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67756.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67757.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67758.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67759.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67760.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67761.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67762.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67763.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67764.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67765.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67766.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67767.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67768.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67769.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67770.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67771.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67772.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67773.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67774.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67775.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67776.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67777.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67778.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67779.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67780.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67781.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67782.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67924.000000] [simulator/INFO] on8 is sleeping +[on6:ON:(7) 68402.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 68402.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68403.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68404.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68405.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68406.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68407.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68408.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68409.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68410.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68411.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68412.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68413.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68414.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68415.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68416.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68417.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68418.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68419.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68420.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68421.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68422.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68423.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68424.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68425.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68426.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68427.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68428.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68429.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68430.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68431.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68432.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68433.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68434.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68435.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68436.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68437.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68438.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68439.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68440.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68441.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68442.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68443.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68444.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68445.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68446.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68447.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68448.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68449.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68450.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68451.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68452.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68453.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68454.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68455.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68456.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68457.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68458.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68459.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68460.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68461.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68462.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68463.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68464.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68465.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68466.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68467.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68468.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68469.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68470.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68471.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68472.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68473.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68474.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68475.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68476.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68477.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68478.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68479.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68480.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68481.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68482.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68483.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68484.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68485.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68486.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68487.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68488.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68489.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68490.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68491.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68493.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68495.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68497.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68499.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68501.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68552.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68554.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68556.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68558.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68560.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68562.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68564.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68566.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68568.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68570.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68572.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68574.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68576.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68578.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68580.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68582.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 68644.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 68644.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68645.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68646.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68647.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68648.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68649.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68650.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68651.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68652.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68653.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68654.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68655.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68656.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68657.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68658.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68659.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68660.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68661.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68662.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68663.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68664.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68665.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68666.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68667.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68668.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68669.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68670.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68671.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68672.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68674.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68676.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68678.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68680.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68682.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68684.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68686.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68688.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68690.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68692.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68694.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68696.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68698.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68699.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68700.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68701.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68702.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68703.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68704.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68705.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68706.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68707.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68708.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68709.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68710.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68711.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68712.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68713.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68714.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68715.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68716.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68717.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68718.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68719.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68720.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68721.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68722.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68723.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68723.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 68723.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68724.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68724.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68725.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68725.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68726.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68726.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68727.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68727.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68728.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68728.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68729.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68729.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68730.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68730.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68731.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68731.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68732.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68732.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68733.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68734.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68734.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68735.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68736.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68736.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68737.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68737.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68738.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68738.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68739.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68740.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68740.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68741.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68742.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68742.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68743.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68743.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68744.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68744.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68745.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68746.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68746.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68747.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68748.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68748.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68749.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68749.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68750.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68750.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68751.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68752.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68752.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68753.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68754.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68754.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68755.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68755.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68756.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68756.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68757.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68758.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68758.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68759.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68760.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68760.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68761.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68761.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68762.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68762.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68763.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68764.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68764.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68765.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68766.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68766.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68767.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68767.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68768.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68768.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68769.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68770.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68770.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68771.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68772.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68772.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68773.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68773.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68774.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68774.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68775.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68776.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68776.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68777.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68778.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68778.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68779.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68779.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68780.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68780.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68781.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68782.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68782.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68783.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68784.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68785.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68785.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68786.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68787.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68788.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68789.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68790.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68791.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68791.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68792.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68793.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68794.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68795.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68796.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68797.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68798.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68799.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68800.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68801.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68802.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68803.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68804.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68805.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68806.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68807.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68808.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68809.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68810.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68811.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68812.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68813.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68814.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68815.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68816.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68817.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68818.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68819.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68820.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68821.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68822.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68823.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68824.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68824.000000] [simulator/INFO] on1 is sleeping +[on10:ON:(11) 68825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68828.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68828.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 68828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68829.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68830.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68831.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68832.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68833.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68834.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68835.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68836.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68837.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68838.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68839.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68840.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68841.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68842.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68843.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68844.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68845.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68846.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68847.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68848.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68849.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68850.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68851.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68852.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68853.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68854.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68855.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68856.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68857.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68858.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68859.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68860.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68861.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68862.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68863.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68864.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68865.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68866.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68867.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68868.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68869.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68870.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68871.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68872.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68873.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68874.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68875.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68876.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68877.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68878.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68879.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68880.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68881.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68882.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68883.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68884.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68885.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68886.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68887.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68888.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68889.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68890.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68891.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68892.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68893.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68894.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68895.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68896.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68897.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68898.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68899.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68900.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68901.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68902.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68903.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68903.000000] [simulator/INFO] on10 is sleeping +[on0:ON:(1) 68904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69008.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 69043.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 69043.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69044.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69045.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69046.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69047.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69048.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69049.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69050.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69051.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69052.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69053.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69055.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69056.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69057.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69058.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69059.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69060.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69061.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69062.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69063.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69064.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69065.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69066.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69067.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69068.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69069.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69070.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69071.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69072.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69073.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69074.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69075.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69076.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69077.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69078.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69079.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69080.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69081.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69082.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69083.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69084.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69085.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69086.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69087.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69088.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69089.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69090.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69091.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69092.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69094.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69096.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69098.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69100.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69102.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69104.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69106.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69108.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69110.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69112.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69114.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69116.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69118.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69221.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 69221.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 69221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69222.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 69222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69223.000000] [simulator/INFO] on4 is sleeping +[on2:ON:(3) 69223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69250.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69251.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69252.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69253.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69254.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69255.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69256.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69257.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69258.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69259.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69260.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69261.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69262.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69263.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69264.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69265.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69266.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69267.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69268.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69269.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69270.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69271.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69272.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69273.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69274.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69283.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69285.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69287.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69289.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69291.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69293.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69295.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69296.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69297.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69298.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69299.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69300.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69301.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69302.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69303.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69304.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69305.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69306.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69307.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69308.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69309.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69310.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69311.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69312.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69313.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69314.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69315.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69316.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69317.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69318.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69319.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69320.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69321.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69322.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69323.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69324.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69325.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69326.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69327.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69328.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69329.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69330.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69331.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69332.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69333.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69334.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69335.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69336.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69337.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69338.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69339.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69340.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69341.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69342.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69343.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69344.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69345.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69346.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69347.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69348.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69349.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69351.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69353.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69355.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69357.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69359.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69361.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69363.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69365.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69367.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69369.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69371.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69373.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69375.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69377.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69379.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69381.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69383.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69385.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69387.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69389.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69391.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69393.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69395.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69396.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69397.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69398.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69399.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69400.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69401.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 69579.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 69579.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69581.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69582.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69583.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69584.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69585.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69586.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69587.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69588.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69589.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69590.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69591.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69592.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69593.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69594.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69595.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69596.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69597.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69598.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69599.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69600.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69601.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69602.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69603.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69604.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69605.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69606.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69607.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69608.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69609.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69610.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69611.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69612.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69613.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69614.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69615.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69616.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69617.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69618.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69619.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69620.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69621.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69622.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69623.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69624.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69625.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69626.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69627.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69628.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69629.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69630.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69631.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69632.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69633.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69634.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69635.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69636.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69637.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69638.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69639.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69640.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69641.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69642.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69643.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69644.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69645.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69646.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69647.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69648.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69649.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69650.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69651.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69652.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69653.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69654.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69655.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69656.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69657.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69658.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69659.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69660.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69661.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69662.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69663.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69664.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69665.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69666.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69667.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69668.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69669.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69670.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69671.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69672.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69673.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69674.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69675.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69676.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69677.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69678.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69679.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69680.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69681.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69682.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69683.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69684.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69685.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69686.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69687.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69688.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69689.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69690.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69691.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69692.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69693.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69694.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69695.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69696.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69697.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69698.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69699.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69700.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69701.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69702.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69703.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69704.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69705.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69706.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69707.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69708.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69709.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69710.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69711.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69712.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69713.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69714.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69715.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69716.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69717.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69718.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69719.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69720.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69721.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69722.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69723.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69724.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69725.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69726.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69727.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69728.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69729.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69730.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69731.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69732.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69733.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69734.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69735.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69736.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69737.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69738.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69739.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69740.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69741.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69742.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69743.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69744.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69747.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69750.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69753.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69754.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69755.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69756.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69757.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69758.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69759.000000] [simulator/INFO] on8 is sleeping +[on12:ON:(13) 70016.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 70016.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70018.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70128.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70128.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 70128.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70129.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70130.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70130.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70131.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70132.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70132.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70133.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70134.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70134.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70135.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70136.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70136.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70137.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70138.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70138.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70139.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70140.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70140.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70141.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70142.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70142.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70143.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70144.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70144.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70145.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70146.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70146.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70147.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70148.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70148.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70149.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70150.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70150.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70151.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70152.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70153.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70154.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70155.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70156.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70157.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70158.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70158.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70159.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70160.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70160.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70161.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70162.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70162.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70163.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70164.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70164.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70165.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70166.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70166.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70167.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70168.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70168.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70169.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70170.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70170.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70171.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70172.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70172.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70173.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70174.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70174.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70175.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70176.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70176.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70177.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70178.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70178.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70179.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70180.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70180.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70181.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70182.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70182.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70183.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70184.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70184.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70185.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70186.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70186.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70187.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70188.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70188.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70189.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70190.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70190.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70191.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70192.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70192.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70193.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70194.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70194.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70195.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70196.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 70196.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70198.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70200.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70202.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70204.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70206.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70208.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70210.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70212.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70214.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70298.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70300.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70302.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70306.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70308.000000] [simulator/INFO] on3 is sleeping +[on7:ON:(8) 71165.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 71165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71183.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71185.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71187.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71189.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71191.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71193.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71195.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71197.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71199.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71201.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71203.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71205.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71207.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71209.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71211.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71213.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71215.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71217.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71219.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71221.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71223.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71225.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71227.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71229.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71230.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71231.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71232.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71233.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71234.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71235.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71236.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71237.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71238.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71239.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71241.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71243.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71244.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71245.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71247.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71249.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71250.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71251.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71253.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71255.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71256.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71257.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71259.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71261.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71262.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71263.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71265.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71267.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71268.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71269.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71271.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71273.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71274.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71275.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71277.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71279.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71280.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71281.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71283.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71285.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71286.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71287.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71288.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71289.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71290.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71291.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71292.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71293.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71294.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71295.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71296.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71297.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71298.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71299.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71300.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71301.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71302.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71303.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71304.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71305.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71306.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71307.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71308.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71309.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71310.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71311.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71312.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71313.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71314.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71315.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71316.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71317.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71318.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71319.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71320.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71321.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71322.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71323.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71324.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71325.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71326.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71327.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71328.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71329.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71330.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71331.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71332.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71333.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71334.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71335.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71336.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71337.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71338.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71339.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71340.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71341.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71342.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71343.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71344.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71345.000000] [simulator/INFO] on7 is sleeping +[on11:ON:(12) 71418.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 71418.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71419.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71420.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71421.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71422.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71423.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71424.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71598.000000] [simulator/INFO] on11 is sleeping +[on5:ON:(6) 71855.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 71855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71889.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71891.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71893.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71895.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71897.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71899.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71901.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71903.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71905.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71907.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71909.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71913.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71917.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71919.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71921.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71922.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71923.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71925.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71927.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71928.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71929.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71931.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71933.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71934.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71935.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71937.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71939.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71940.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71941.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71943.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71945.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71946.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71947.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71949.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71951.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71952.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71953.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71955.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71957.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71958.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71959.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71961.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71963.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71964.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71965.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71967.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71970.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71971.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71973.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71975.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71976.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71977.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71979.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71981.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71982.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71983.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71985.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71987.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71988.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71989.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71991.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71993.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71994.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71995.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71997.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71999.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72000.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72000.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 72000.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72001.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72001.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72002.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72003.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72003.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72004.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72005.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72005.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72005.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 72005.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72006.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72006.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72006.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72007.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72007.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72008.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72008.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72009.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72009.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72010.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72010.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72011.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72011.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72011.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72012.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72012.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72012.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72013.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72013.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72014.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72014.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72015.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72015.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72015.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72016.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72016.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72017.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72017.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72018.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72018.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72018.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72019.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72019.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72020.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72020.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72021.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72021.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72022.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72022.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72023.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72023.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72024.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72024.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72024.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72025.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72025.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72026.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72026.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72027.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72027.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72028.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72028.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72029.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72029.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72030.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72030.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72030.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72031.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72031.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72032.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72032.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72033.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72033.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72034.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72034.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72035.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72035.000000] [simulator/INFO] on5 is sleeping +[on12:ON:(13) 72035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72036.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72037.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72038.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72039.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72040.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72041.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72042.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72043.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72044.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72045.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72046.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72047.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72048.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72049.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72050.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72051.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72052.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72053.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72054.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72055.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72056.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72057.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72058.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72059.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72060.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72061.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72062.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72063.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72064.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72065.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72066.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72067.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72068.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72069.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72070.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72071.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72072.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72073.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72074.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72075.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72076.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72077.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72078.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72079.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72080.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72081.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72082.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72083.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72084.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72085.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72086.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72087.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72088.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72089.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72090.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72091.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72092.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72093.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72094.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72095.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72096.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72097.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72098.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72099.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72100.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72101.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72102.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72103.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72104.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72105.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72106.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72107.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72108.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72109.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72110.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72111.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72112.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72113.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72114.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72115.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72116.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72117.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72118.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72119.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72120.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72121.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72122.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72123.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72124.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72125.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72126.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72127.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72128.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72129.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72130.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72131.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72132.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72133.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72134.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72135.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72136.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72137.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72138.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72139.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72140.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72141.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72142.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72143.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72144.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72145.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72146.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72147.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72148.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72149.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72150.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72151.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72152.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72153.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72154.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72155.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72156.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72157.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72158.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72159.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72160.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72160.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72161.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72162.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72162.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72163.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72164.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72164.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72165.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72166.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72166.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72167.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72168.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72168.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72169.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72170.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72170.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72171.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72172.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72172.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72173.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72174.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72174.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72175.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72176.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72176.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72177.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72178.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72178.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72179.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72180.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72180.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 72181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72185.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 72431.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 72431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72599.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72601.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72605.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72607.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72609.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72611.000000] [simulator/INFO] on11 is sleeping +[on9:ON:(10) 72901.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 72901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72928.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72934.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72937.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72940.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72942.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72943.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72944.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72945.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72946.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72947.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72948.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72949.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72950.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72951.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72952.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72953.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72954.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72955.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72956.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72957.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72958.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72959.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72960.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72961.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72962.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72963.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72964.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72965.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72966.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72967.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72968.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72969.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72970.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72971.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72972.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72973.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72974.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72975.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72976.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72977.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72977.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 72977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72978.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72978.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72979.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72980.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72980.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72981.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72982.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72982.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72983.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72984.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72984.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72985.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72986.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72986.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72987.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72988.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72988.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72989.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72990.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72990.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72991.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72992.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72992.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72993.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72994.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72994.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72995.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72996.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72996.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72997.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72998.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72998.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72999.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73000.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73000.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73001.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73002.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73003.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73004.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73005.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73006.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73006.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73007.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73008.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73009.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73009.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73010.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73011.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73011.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73012.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73012.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73013.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73013.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73014.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73015.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73015.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73016.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73017.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73017.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73018.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73018.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73019.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73019.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73020.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73021.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73021.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73022.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73023.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73023.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73024.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73024.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73025.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73025.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73026.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73027.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73027.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73028.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73029.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73029.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73030.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73030.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73031.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73031.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73032.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73033.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73033.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73034.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73035.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73035.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73036.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73037.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73037.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73038.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73039.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73039.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73040.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73041.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73041.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73042.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73043.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73043.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73044.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73045.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73045.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73046.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73047.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73047.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73048.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73049.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73049.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73050.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73051.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73051.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73052.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73053.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73053.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73054.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73055.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73055.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73056.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73057.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73057.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73058.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73059.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73059.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73060.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73061.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73061.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73062.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73063.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73063.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73064.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73065.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73065.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73066.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73067.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73067.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73068.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73069.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73069.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73070.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73071.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73071.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73072.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73073.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73073.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73074.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73075.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73075.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73076.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73077.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73077.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73078.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73079.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73079.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73080.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73081.000000] [simulator/INFO] on9 is sleeping +[on0:ON:(1) 73081.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73083.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73085.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73087.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73089.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73091.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73093.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73095.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73097.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73099.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73101.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73102.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73103.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73104.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73105.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73106.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73107.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73108.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73109.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73110.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73111.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73112.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73113.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73114.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73115.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73116.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73117.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73118.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73119.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73120.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73121.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73122.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73123.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73124.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73125.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73126.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73127.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73128.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73129.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73130.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73131.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73132.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73133.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73134.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73135.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73136.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73137.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73138.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73139.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73140.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73141.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73142.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73143.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73144.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73145.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73146.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73147.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73148.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73149.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73150.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73151.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73152.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73153.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73154.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73155.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73156.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73157.000000] [simulator/INFO] on0 is sleeping +[on8:ON:(9) 73404.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 73404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73405.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73405.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 73405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73406.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73407.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73408.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73409.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73410.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73411.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73411.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73412.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73413.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73413.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73414.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73415.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73415.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73416.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73417.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73417.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73418.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73419.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73419.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73420.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73421.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73421.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73422.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73423.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73423.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73424.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73425.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73425.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73426.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73427.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73427.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73428.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73429.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73429.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73430.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73431.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73431.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73432.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73433.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73433.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73434.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73435.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73435.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73436.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73437.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73437.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73438.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73439.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73439.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73440.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73441.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73441.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73442.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73443.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73443.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73444.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73445.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73445.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73446.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73447.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73447.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73448.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73449.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73449.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73450.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73451.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73451.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73452.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73453.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73453.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73454.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73455.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73455.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73456.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73457.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73457.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73458.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73459.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73459.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73460.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73461.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73461.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73462.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73463.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73463.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73464.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73465.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73465.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73466.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73466.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73467.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73467.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73468.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73469.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73469.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73470.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73471.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73471.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73472.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73472.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73473.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73473.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73474.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73475.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73475.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73476.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73477.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73477.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73478.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73478.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73479.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73480.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73481.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73482.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73483.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73484.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73484.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73485.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73486.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73487.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73488.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73489.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73490.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73490.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73491.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73492.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73493.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73494.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73495.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73496.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73496.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73497.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73498.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73499.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73500.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73501.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73502.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73502.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73503.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73504.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73505.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73506.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73507.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73507.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73507.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 73507.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73508.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73508.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73508.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73509.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73509.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73509.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73510.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73510.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73510.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73511.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73511.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73511.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73512.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73512.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73512.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73513.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73513.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73513.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73514.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73514.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73514.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73515.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73515.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73515.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73516.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73516.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73516.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73517.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73517.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73517.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73518.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73518.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73518.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73519.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73519.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73519.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73520.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73520.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73520.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73521.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73521.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73521.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73522.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73522.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73522.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73523.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73523.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73523.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73524.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73524.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73524.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73525.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73525.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73525.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73526.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73526.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73526.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73527.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73527.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73527.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73528.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73528.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73528.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73529.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73529.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73529.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73530.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73530.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73530.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73531.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73531.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73531.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73532.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73532.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73532.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73533.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73533.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73533.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73534.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73534.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73534.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73535.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73535.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73535.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73536.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73536.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73536.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73537.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73537.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73537.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73538.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73538.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73538.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73539.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73539.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73539.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73540.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73540.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73540.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73541.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73541.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73541.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73542.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73542.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73542.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73543.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73543.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73543.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73544.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73544.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73544.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73545.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73545.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73545.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73546.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73546.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73546.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73547.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73547.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73547.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73548.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73548.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73548.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73549.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73549.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73549.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73550.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73550.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73550.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73551.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73551.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73551.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73552.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73552.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73552.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73553.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73553.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73553.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73554.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73554.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73554.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73555.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73555.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73555.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73556.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73556.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73556.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73557.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73557.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73557.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73558.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73558.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73558.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73559.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73559.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73559.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73560.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73560.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73560.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73561.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73561.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73561.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73562.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73562.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73562.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73563.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73563.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73563.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73564.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73564.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73564.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73565.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73565.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73565.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73566.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73566.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73566.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73567.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73567.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73567.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73568.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73568.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73568.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73569.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73569.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73569.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73570.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73570.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73570.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73571.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73571.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73571.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73572.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73572.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73572.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73573.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73573.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73573.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73574.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73574.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73574.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73575.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73575.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73575.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73576.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73576.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73576.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73577.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73577.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73577.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73578.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73578.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73578.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73579.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73579.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73579.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73580.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73580.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73581.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73581.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73581.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73582.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73582.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73582.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73583.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73583.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73583.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73584.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73584.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73584.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 73585.000000] [simulator/INFO] on4 is sleeping +[on10:ON:(11) 73585.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73586.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73587.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73588.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73589.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73590.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73591.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73592.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73593.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73594.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73595.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73596.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73597.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73598.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73599.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73600.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73601.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73602.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73603.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73604.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73605.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73606.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73607.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73608.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73609.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73610.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73611.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73612.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73613.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73614.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73615.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73616.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73617.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73618.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73619.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73620.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73621.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73622.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73623.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73624.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73625.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73626.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73627.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73628.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73629.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73630.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73632.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73633.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73634.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73635.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73636.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73637.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73638.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73639.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73640.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73641.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73642.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73643.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73644.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73645.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73646.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73647.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73648.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73649.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73650.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73651.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73652.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73653.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73654.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73655.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73656.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73657.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73658.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73659.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73660.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73661.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73662.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73663.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73664.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73665.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73666.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73667.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73668.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73669.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73670.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73671.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73672.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73673.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73674.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73675.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73676.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73677.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73678.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73679.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73680.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73681.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73682.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73683.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73684.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73685.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73686.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73687.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 73731.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 73731.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73732.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73733.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73734.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73735.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73736.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73737.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73738.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73739.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73740.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73741.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73742.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73743.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73744.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73745.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73746.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73747.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73748.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73749.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73750.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73751.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73752.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73753.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73754.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73755.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73756.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73757.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73758.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73759.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73760.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73761.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73762.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73763.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73764.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73765.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73766.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73767.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73768.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73769.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73770.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73771.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73772.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73773.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73774.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73775.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73776.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73777.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73778.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73779.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73780.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73781.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73782.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73783.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73785.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73787.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73789.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73791.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73793.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73795.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73797.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73799.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73801.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73803.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73805.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73807.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73809.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73811.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73813.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73815.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73817.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73819.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73821.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73823.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73824.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73825.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73826.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73827.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73828.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73829.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73830.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73831.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73832.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73833.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73834.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73835.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73836.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73837.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73838.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73839.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73840.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73841.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73842.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73843.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73844.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73845.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73846.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73847.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73848.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73849.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73850.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73851.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73852.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73853.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73854.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73855.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73856.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73857.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73858.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73859.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73860.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73861.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73862.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73863.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73864.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73865.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73866.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73867.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73868.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73869.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73870.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73871.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73872.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73873.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73874.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73875.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73876.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73877.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73878.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73879.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73880.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73881.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73882.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73883.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73884.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73885.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73886.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73887.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73888.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73889.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73890.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73891.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73892.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73893.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73894.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73895.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73896.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73897.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73898.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73899.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73900.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73901.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73902.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73903.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73904.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73905.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73906.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73907.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73908.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73909.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73910.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73911.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 74603.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 74603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74735.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74735.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 74735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74736.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74737.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74738.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74739.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74740.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74741.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74742.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74743.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74744.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74745.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74746.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74747.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74748.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74749.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74750.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74751.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74752.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74753.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74754.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74755.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74756.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74757.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74758.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74759.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74760.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74761.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74762.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74763.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74764.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74765.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74766.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74767.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74768.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74769.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74770.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74771.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74772.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74773.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74774.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74775.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74776.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74777.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74778.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74779.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74780.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74781.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74782.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74783.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 74783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74784.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74874.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74896.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74898.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74900.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74902.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74915.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 74964.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 74964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75008.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75010.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75012.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75014.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75016.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75018.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75020.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75022.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75024.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75026.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75045.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75047.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75049.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75144.000000] [simulator/INFO] on2 is sleeping +[on6:ON:(7) 75503.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 75503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75544.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75544.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 75544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75545.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75546.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75547.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75548.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75549.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75550.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75551.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75552.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75553.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75554.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75555.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75556.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75557.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75558.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75559.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75560.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75561.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75562.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75563.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75564.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75565.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75566.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75567.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75568.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75569.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75570.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75571.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75572.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75573.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75574.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75575.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75576.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75577.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75578.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75579.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75580.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75581.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75582.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75583.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75584.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75585.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75586.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75587.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75588.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75589.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75590.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75591.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75592.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75593.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75594.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75595.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75596.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75597.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75598.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75599.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75600.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75601.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75602.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75603.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75604.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75605.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75606.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75606.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75607.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75608.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75608.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75609.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75610.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75610.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75611.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75612.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75612.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75613.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75614.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75614.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75615.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75616.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75616.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75617.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75618.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75618.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75619.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75620.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75620.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75621.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75622.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75622.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75623.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75624.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75624.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75625.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75626.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75626.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75627.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75628.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75628.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75629.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75630.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75630.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75631.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75632.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75632.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75633.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75634.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75634.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75635.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75636.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75637.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75638.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75639.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75640.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75641.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75642.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75643.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75644.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75645.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75646.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75647.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75648.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75649.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75650.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75651.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75652.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75652.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75653.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75654.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75654.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75655.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75656.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75656.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75657.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75658.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75658.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75659.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75660.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75660.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75661.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75662.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75662.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75663.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75664.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75664.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75665.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75666.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75666.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75667.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75668.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75668.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75669.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75670.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75670.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75671.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75672.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75672.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75673.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75674.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75674.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75675.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75676.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75676.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75677.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75678.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75678.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75679.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75680.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75680.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75681.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75682.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75682.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75683.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75683.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 75684.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75686.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75687.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75688.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75689.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75690.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75691.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75692.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75693.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75694.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75695.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75696.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75697.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75698.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75699.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75700.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75701.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75702.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75703.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75704.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75705.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75706.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75707.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75708.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75709.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75710.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75711.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75712.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75713.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75714.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75715.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75716.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75717.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75718.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75719.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75720.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75721.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75722.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75723.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75724.000000] [simulator/INFO] on7 is sleeping +[on0:ON:(1) 75876.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 75876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75877.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75879.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75881.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75883.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75885.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75887.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75889.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75891.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75893.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75895.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75901.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75903.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75985.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75985.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 75985.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75986.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75987.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75987.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75988.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75989.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75989.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75990.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75991.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75991.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75992.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75993.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75993.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75994.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75995.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75995.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75996.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75997.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75997.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75998.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75999.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75999.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76000.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76001.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76001.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76002.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76003.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76003.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76004.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76005.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76005.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76006.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76007.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76007.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76008.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76009.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76009.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76010.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76011.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76011.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76012.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76013.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76013.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76014.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76015.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76015.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76016.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76017.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76017.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76018.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76019.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76019.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76020.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76021.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76021.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76022.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76023.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76023.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76024.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76025.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76025.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76026.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76027.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76027.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76028.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76029.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76029.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76030.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76031.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76031.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76032.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76033.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76033.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76034.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76035.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76035.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76036.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76037.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76037.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76038.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76039.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76039.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76040.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76041.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76041.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76042.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76043.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76043.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76044.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76045.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76045.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76046.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76047.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76047.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76048.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76049.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76049.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76050.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76051.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76051.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76052.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76053.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76053.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76054.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76055.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76055.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76056.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76056.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 76057.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76059.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76061.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76063.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76077.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76079.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76081.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76083.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76085.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76087.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76089.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76091.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76093.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76095.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76097.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76165.000000] [simulator/INFO] on10 is sleeping +[on8:ON:(9) 76330.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 76330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76355.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76358.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76361.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76364.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76367.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76370.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76373.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76376.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76379.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76382.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76385.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76388.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76391.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76394.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76397.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76400.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76403.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76409.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76415.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76421.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76427.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76433.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76439.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76445.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76451.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76457.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76463.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76465.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76466.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76467.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76469.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76471.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76472.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76473.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76475.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76477.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76478.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76479.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76481.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76483.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76484.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76485.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76487.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76489.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76490.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76491.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76493.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76495.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76496.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76497.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76499.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76501.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76502.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76503.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76505.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76507.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76508.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76509.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76510.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 76519.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 76519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76524.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76524.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 76524.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76525.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76526.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76526.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76527.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76528.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76528.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76529.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76530.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76530.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76531.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76532.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76532.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76533.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76534.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76534.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76535.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76536.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76536.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76537.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76538.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76538.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76539.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76540.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76540.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76541.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76542.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76542.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76543.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76544.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76544.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76545.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76546.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76546.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76547.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76548.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76548.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76549.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76550.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76550.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76551.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76552.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76552.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76553.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76554.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76554.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76555.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76556.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76556.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76557.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76558.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76558.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76559.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76560.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76560.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76561.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76562.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76562.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76563.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76564.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76564.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76565.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76566.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76566.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76567.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76568.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76568.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76569.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76570.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76570.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76571.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76572.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76572.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76573.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76574.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76574.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76575.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76576.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76576.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76577.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76578.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76578.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76579.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76580.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76580.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76581.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76582.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76582.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76583.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76584.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76584.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76585.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76586.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76586.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76587.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76588.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76588.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76589.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76590.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76590.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76591.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76592.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76592.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76593.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76594.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76594.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76595.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76596.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76596.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76597.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76598.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76598.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76599.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76600.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76600.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76601.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76602.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76602.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76603.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76604.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76604.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76605.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76606.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76606.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76607.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76608.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76608.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76609.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76610.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76610.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76611.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76612.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76612.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76613.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76614.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76614.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76615.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76616.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76616.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76617.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76618.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76618.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76619.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76620.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76620.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76621.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76622.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76622.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76623.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76624.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76624.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76625.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76626.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76626.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76627.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76628.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76628.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76629.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76630.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76630.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76631.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76632.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76632.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76633.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76634.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76634.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76635.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76636.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76636.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76637.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76638.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76638.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76639.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76640.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76640.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76641.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76642.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76642.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76643.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76644.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76644.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76645.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76646.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76646.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76647.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76648.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76648.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76649.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76650.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76650.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76651.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76652.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76652.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76653.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76654.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76654.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76655.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76656.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76656.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76657.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76658.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76658.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76659.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76660.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76660.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76661.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76662.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76662.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76663.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76664.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76664.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76665.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76666.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76666.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76667.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76668.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76668.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76669.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76670.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76670.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76671.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76672.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76672.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76673.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76674.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76674.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76675.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76676.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76676.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76677.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76678.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76678.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76679.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76680.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76680.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76681.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76682.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76682.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76683.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76684.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76684.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76685.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76686.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76686.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76687.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76688.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76688.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76689.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76690.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76690.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76691.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76692.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76692.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76693.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76694.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76694.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76695.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76696.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76696.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76697.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76698.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76698.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76699.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76699.000000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 76700.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76701.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76702.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76703.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76704.000000] [simulator/INFO] on12 is sleeping +[on9:ON:(10) 76705.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 76705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76837.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76837.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 76837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76838.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76839.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76840.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76841.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76842.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76843.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76844.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76845.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76846.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76847.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76848.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76849.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76850.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76851.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76852.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76853.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76854.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76855.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76856.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76857.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76858.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76859.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76860.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76861.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76862.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76863.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76864.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76865.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76866.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76867.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76868.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76869.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76870.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76871.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76872.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76873.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76874.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76875.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76876.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76877.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76878.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76879.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76880.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76881.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76882.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76883.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76884.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76885.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 76885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76983.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76984.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76985.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76986.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76987.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76988.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76989.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76990.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76991.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76992.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76993.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76994.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76995.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76996.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76997.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76998.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76999.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77000.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77001.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77002.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77003.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77004.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77005.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77006.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77007.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77008.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77009.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77010.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77011.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77012.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77013.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77014.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77015.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77016.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77017.000000] [simulator/INFO] on7 is sleeping +[on1:ON:(2) 77419.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 77419.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77420.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77421.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77422.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77423.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77424.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77425.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77426.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77427.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77428.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77429.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77430.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77431.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77432.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77433.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77434.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77435.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77436.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77437.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77438.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77439.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77440.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77441.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77442.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77443.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77444.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77445.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77446.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77447.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77448.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77449.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77450.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77451.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77452.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77453.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77454.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77455.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77456.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77457.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77458.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77459.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77460.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77461.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77462.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77463.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77464.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77465.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77466.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77467.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77468.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77469.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77470.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77471.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77472.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77473.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77474.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77475.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77476.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77477.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77478.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77479.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77480.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77481.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77482.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77483.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77484.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77485.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77486.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77487.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77488.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77489.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77490.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77491.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77492.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77493.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77494.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77495.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77496.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77497.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77498.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77499.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77500.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77501.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77502.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77503.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77504.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77505.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77506.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77507.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77508.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77509.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77510.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77511.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77512.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77513.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77514.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77515.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77516.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77517.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77519.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77521.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77523.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77525.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77527.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77529.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77531.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77533.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77535.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77537.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77539.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77541.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77543.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77545.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77547.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77549.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77551.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77553.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77555.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77557.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77559.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77561.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77563.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77565.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77567.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77569.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77571.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77573.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77575.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77577.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77579.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77581.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77583.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77585.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77587.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77589.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77591.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77593.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77595.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77597.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77599.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 77684.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 77684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77694.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77696.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77715.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77717.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77719.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77720.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77721.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77722.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77723.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77724.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77725.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77726.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77727.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77728.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77749.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77750.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77751.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77752.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77753.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77754.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77755.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77756.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77757.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77758.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77759.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77760.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77761.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77762.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77763.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77764.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77765.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77766.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77767.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77768.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77769.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77770.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77771.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77772.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77773.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77774.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77775.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77776.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77777.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77778.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77779.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77780.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77781.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77783.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77785.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77787.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77789.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77791.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77793.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77795.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77797.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77799.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77801.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77803.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77805.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77807.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77809.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77811.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77813.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77815.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77817.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77819.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77821.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77823.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77825.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77827.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77829.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77829.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 77829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77830.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77831.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77832.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77833.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77834.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77835.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77836.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77837.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77838.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77839.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77840.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77841.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77842.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77843.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77844.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77844.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77845.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77846.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77847.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77848.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77849.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77850.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77851.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77852.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77853.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77854.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77855.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77856.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77857.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77858.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77859.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77860.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77861.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77862.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77863.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77864.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77864.000000] [simulator/INFO] on6 is sleeping +[on11:ON:(12) 77865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77916.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77916.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 77916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77917.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77918.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77919.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77920.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77921.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77922.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77923.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77924.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77925.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77926.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77927.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77928.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77929.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77930.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77931.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77932.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77933.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77934.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77935.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77936.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77937.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77938.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77939.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77940.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77941.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77942.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77943.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77944.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77945.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77946.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77947.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77948.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77949.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77950.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77951.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77952.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77953.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77954.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77955.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77956.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77957.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77958.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77959.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77960.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77961.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77962.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77963.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77964.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77965.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77966.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77966.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77967.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77968.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77968.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77969.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77970.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77970.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77971.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77972.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77972.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77973.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77974.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77974.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77975.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77976.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77976.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77977.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77978.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77978.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77979.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77980.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77980.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77981.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77982.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77982.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77983.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77984.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77984.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77985.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77986.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77986.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77987.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77988.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77988.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77989.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77990.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77990.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77991.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77992.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77992.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77993.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77994.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77994.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77995.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77996.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77996.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77997.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77998.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77998.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77999.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78000.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78000.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78001.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78002.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78002.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78003.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78004.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78004.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78005.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78006.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78006.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78007.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78008.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78008.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78009.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78009.000000] [simulator/INFO] on11 is sleeping +[on3:ON:(4) 78010.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78012.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78014.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78016.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78018.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78020.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78022.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78024.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78026.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78028.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78030.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78032.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78034.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78036.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78038.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78040.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78042.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78044.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78046.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78048.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78050.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78052.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78054.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78056.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78057.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78058.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78059.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78060.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78061.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78062.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78063.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78064.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78065.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78066.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78067.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78068.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78069.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78070.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78071.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78072.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78073.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78074.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78075.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78076.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78077.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78078.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78079.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78080.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78081.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78082.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78083.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78084.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78085.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78086.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78087.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78088.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78089.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78090.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78091.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78092.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78093.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78094.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78095.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78096.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 78822.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 78822.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78823.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78824.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78825.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78826.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79002.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 79125.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 79125.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79126.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79127.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79128.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79129.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79130.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79131.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79132.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79133.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79134.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79135.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79136.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79138.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79139.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79140.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79142.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79144.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79146.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79148.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79149.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79150.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79151.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79152.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79153.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79154.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79155.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79156.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79157.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79158.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79159.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79160.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79161.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79162.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79163.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79164.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79165.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79166.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79167.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79168.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79169.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79170.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79171.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79172.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79173.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79174.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79175.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79176.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79177.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79178.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79179.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79180.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79181.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79182.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79183.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79184.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79185.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79186.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79187.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79188.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79189.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79190.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79191.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79192.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79193.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79194.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79195.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79196.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79197.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79198.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79199.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79200.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79201.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79202.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79203.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79204.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79205.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79206.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79207.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79208.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79209.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79210.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79211.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79212.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79213.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79214.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79215.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79216.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79217.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79218.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79219.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79220.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79221.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79222.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79223.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79224.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79225.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79226.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79227.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79228.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79229.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79230.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79231.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79232.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79233.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79234.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79235.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79236.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79237.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79238.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79239.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79240.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79241.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79242.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79243.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79244.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79245.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79246.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79247.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79248.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79249.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79250.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79251.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79252.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79253.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79254.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79255.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79256.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79257.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79258.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79259.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79260.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79261.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79262.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79263.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79264.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79265.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79266.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79267.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79268.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79269.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79270.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79271.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79272.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79273.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79274.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79275.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79276.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79277.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79278.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79279.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79280.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79281.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79282.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79284.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79285.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79285.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 79285.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79286.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79286.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79287.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79287.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79288.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79288.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79289.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79289.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79290.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79290.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79291.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79291.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79292.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79292.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79293.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79293.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79294.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79294.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79295.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79295.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79296.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79296.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79297.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79297.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79298.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79298.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79299.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79299.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79300.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79300.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79301.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79301.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79302.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79302.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79303.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79303.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79304.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79304.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79305.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 79305.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79306.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79307.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79308.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79309.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79310.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79311.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79312.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79313.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79314.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79315.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79316.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79317.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79318.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79319.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79320.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79321.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79322.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79323.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79324.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79325.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79326.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79327.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79328.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79329.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79355.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79358.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79361.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79364.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79367.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79370.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79373.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79376.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79379.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79382.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79385.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79388.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79391.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79394.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79397.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79400.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79403.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79409.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79415.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79421.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79427.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79433.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79439.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79445.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79451.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79457.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79463.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79465.000000] [simulator/INFO] on8 is sleeping +[on5:ON:(6) 79600.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 79600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79757.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79757.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 79757.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79758.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79759.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79759.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79760.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79761.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79761.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79762.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79763.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79763.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79764.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79765.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79765.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79766.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79767.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79767.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79768.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79769.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79769.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79770.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79771.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79771.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79772.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79773.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79773.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79774.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79775.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79775.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79776.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79777.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79777.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79778.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79779.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79779.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79780.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79780.000000] [simulator/INFO] on5 is sleeping +[on11:ON:(12) 79781.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79782.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79783.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79784.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79785.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79786.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79787.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79788.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79789.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79790.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79791.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79792.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79793.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79794.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79795.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79796.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79797.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79798.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79799.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79800.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79801.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79802.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79803.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79804.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79805.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79806.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79807.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79808.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79809.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79810.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79811.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79846.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79848.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79850.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79852.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79854.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79856.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79858.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79864.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79921.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79921.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 79921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79922.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79923.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79924.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79925.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79926.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79927.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79928.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79929.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79930.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79931.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79932.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79933.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79934.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79935.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79936.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79937.000000] [simulator/INFO] on11 is sleeping +[on0:ON:(1) 79937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79965.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79965.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 79965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79966.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79967.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79968.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79969.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79970.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79971.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79972.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79973.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79974.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79975.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79976.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79977.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79978.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79979.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79980.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79981.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79982.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79983.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79983.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79984.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79985.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79985.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79986.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79987.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79987.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79988.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79989.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79989.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79990.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79991.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79991.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79992.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79993.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79993.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79994.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79995.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79995.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79996.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79997.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79997.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79998.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79999.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79999.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80000.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80001.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80001.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80002.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80003.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80003.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80004.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80005.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80005.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80006.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80007.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80007.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80008.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80009.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80009.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80010.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80011.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80011.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80012.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80013.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80013.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80014.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80015.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80015.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80016.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80017.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80017.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80018.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80019.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80019.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80020.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80021.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80021.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80022.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80023.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80023.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80024.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80025.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80025.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80026.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80027.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80027.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80028.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80029.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80029.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80030.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80031.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80031.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80032.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80033.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80033.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80034.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80035.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80035.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80036.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80037.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80037.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80038.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80039.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80039.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80040.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80041.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80041.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80042.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80043.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80043.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80044.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80045.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80046.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80047.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80048.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80049.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80050.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80051.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80052.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80053.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80054.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80055.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80056.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80056.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80057.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80058.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80058.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80059.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80060.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80060.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80061.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80062.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80062.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80063.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80064.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80064.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80065.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80066.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80066.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80067.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80068.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80068.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80069.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80070.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80070.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80071.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80072.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80072.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80073.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80074.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80074.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80075.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80076.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80076.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80077.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80078.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80078.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80079.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80080.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80080.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80081.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80082.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80083.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80084.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80085.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80086.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80087.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80088.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80089.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80090.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80091.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80092.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80093.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80094.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80095.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80096.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80097.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80098.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80099.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80100.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80101.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 80101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80145.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 80387.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 80387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80396.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80402.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80408.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80414.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80420.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80426.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80432.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80438.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80442.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80444.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80450.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80456.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80462.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80468.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80474.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80480.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80484.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80486.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80488.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80490.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80492.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80494.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80496.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80498.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80500.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80502.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80504.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80506.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80508.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80510.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80512.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80514.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80516.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80518.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80520.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80522.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80524.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80526.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80528.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80530.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80532.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80534.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80536.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80538.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80540.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80542.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80544.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80546.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80548.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80550.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80552.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80554.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80556.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80558.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80560.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80562.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80564.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80566.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80567.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 81068.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 81068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81164.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81164.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 81164.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81165.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81166.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81166.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81167.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81168.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81168.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81169.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81170.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81170.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81171.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81172.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81172.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81173.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81174.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81174.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81175.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81176.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81176.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81177.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81178.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81178.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81179.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81180.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81180.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81181.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81182.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81182.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81183.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81184.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81184.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81185.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81186.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81186.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81187.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81188.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81188.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81189.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81190.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81190.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81191.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81192.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81192.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81193.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81194.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81194.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81195.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81196.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81196.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81197.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81198.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81198.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81199.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81200.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81200.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81201.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81202.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81202.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81203.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81204.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81204.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81205.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81206.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81206.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81207.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81208.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81208.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81209.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81210.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81210.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81211.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81212.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81212.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81213.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81214.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81214.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81215.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81216.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81216.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81217.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81218.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81218.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81219.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81220.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81220.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81221.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81222.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81222.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81223.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81224.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81224.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81225.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81226.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81226.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81227.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81228.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81228.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81229.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81230.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81230.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81231.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81232.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81232.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81233.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81234.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81234.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81235.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81236.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81236.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81237.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81238.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81238.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81239.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81240.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81240.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81241.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81242.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81242.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81243.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81244.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81244.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81245.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81246.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81246.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81247.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81248.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 81248.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81249.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81250.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81251.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81252.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81253.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81254.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81255.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81256.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81257.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81258.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81259.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81260.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81262.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81264.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81266.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81268.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81270.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81272.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81274.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81276.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81278.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81280.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81282.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81284.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81286.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81288.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81290.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81292.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81294.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81296.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81344.000000] [simulator/INFO] on1 is sleeping +[on4:ON:(5) 81559.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 81559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81712.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81714.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81716.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81718.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81720.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81722.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81724.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81726.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81727.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81728.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81729.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81730.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81731.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81732.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81733.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81734.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81735.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81736.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81737.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81738.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81739.000000] [simulator/INFO] on4 is sleeping +[on10:ON:(11) 81795.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 81795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81800.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81806.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81812.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81818.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81824.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81830.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81836.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81842.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81848.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81854.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81854.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 81854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81855.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81856.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81857.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81858.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81859.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81860.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81861.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81862.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81863.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81864.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81865.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81866.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81867.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81868.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81869.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81870.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81871.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81872.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81873.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81874.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81875.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81876.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81877.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81878.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81879.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81880.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81881.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81882.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81883.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81884.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81885.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81886.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81887.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81888.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81889.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81890.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81891.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81892.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81893.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81894.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81895.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81896.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81897.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81898.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81899.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81900.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81901.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81902.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81903.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81903.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81904.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81905.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81905.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81906.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81907.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81907.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81908.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81909.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81909.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81910.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81911.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81911.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81912.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81913.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81913.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81914.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81915.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81915.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81916.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81917.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81917.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81918.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81919.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81919.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81920.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81921.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81921.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81922.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81923.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81923.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81924.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81925.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81925.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81926.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81927.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81927.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81928.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81929.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81929.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81930.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81931.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81931.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81932.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81933.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81933.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81934.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81935.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81935.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81936.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81937.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81937.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81938.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81939.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81939.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81940.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81941.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81941.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81942.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81943.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81943.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81944.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81945.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81945.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81946.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81947.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81947.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81948.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81949.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81949.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81950.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81951.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81951.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81952.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81953.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81953.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81954.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81955.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81955.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81956.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81957.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81957.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81958.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81959.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81959.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81960.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81961.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81961.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81962.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81963.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81963.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81964.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81965.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81965.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81966.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81967.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81967.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81968.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81969.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81969.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81970.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81971.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81971.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81972.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81973.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81973.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81974.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81975.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81975.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 81976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81979.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81979.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 81979.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81980.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81981.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81981.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81982.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81983.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81983.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81984.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81985.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81985.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81986.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81987.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81987.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81988.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81989.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81989.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81990.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81991.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81991.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81992.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81993.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81993.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81994.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81995.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81995.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81996.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81997.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81997.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81998.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81999.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81999.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82000.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82001.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82001.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82002.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82003.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82003.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82004.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82005.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82005.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82006.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82007.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82007.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82008.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82009.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82009.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82010.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82011.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82011.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82012.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82013.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82013.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82014.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82015.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82015.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82016.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82017.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82017.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82018.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82019.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82019.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82020.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82021.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82021.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82022.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82023.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82023.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82024.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82025.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82025.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82026.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82027.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82027.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82028.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82029.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82029.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82030.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82031.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82031.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82032.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82033.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82033.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82034.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82034.000000] [simulator/INFO] on6 is sleeping +[on9:ON:(10) 82035.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82037.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82039.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82041.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82043.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82045.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82047.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82049.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82051.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82053.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82055.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82057.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82059.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82061.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82063.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82065.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82067.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82069.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82071.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82073.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82075.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82077.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82079.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82081.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82083.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82085.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82087.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82089.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82091.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82093.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82095.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82097.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82099.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82101.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82103.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82105.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82107.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82109.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82111.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82113.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82115.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82117.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82119.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82121.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82123.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82125.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82127.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82129.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82131.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82133.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82135.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82137.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82139.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82141.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82143.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82145.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82147.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82149.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82151.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82153.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82155.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82157.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82159.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 82665.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 82665.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82666.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82667.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82668.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82669.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82670.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82671.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82672.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82673.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82674.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82675.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82676.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82677.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82678.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82679.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82680.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82681.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82682.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82683.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82684.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82685.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82686.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82687.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82688.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82689.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82690.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82691.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82692.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82693.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82694.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82695.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82696.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82697.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82698.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82699.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82700.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82701.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82702.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82703.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82704.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82705.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82706.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82707.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82708.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82709.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82710.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82711.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82712.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82713.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82714.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82715.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82716.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82717.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82718.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82719.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82720.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82721.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82722.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82723.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82724.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82725.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82726.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82727.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82728.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82729.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82730.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82731.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82732.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82733.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82734.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82735.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82736.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82737.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82738.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82739.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82740.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82741.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82742.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82743.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82744.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82745.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82746.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82747.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82748.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82749.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82750.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82751.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82752.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82753.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82754.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82755.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82756.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82757.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82758.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82759.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82760.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82761.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82762.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82763.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82764.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82765.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82766.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82767.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82768.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82769.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82770.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82771.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82772.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82773.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82774.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82775.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82776.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82777.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82778.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82779.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82780.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82781.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82782.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82783.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82784.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82785.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82786.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82787.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82788.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82789.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82790.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82791.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82792.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82793.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82794.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82795.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82796.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82797.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82798.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82800.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82802.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82804.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82806.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82808.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82810.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82812.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82814.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82816.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82818.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82820.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82845.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 82904.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 82904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82966.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82968.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82970.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82972.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82974.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82976.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82978.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82980.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82982.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82984.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82986.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82988.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82990.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82992.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82994.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82996.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82998.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83000.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83002.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83004.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83006.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83008.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83010.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83012.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83014.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83016.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83018.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83020.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83022.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83024.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83026.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83028.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83030.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83032.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83034.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83036.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83038.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83040.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83042.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83044.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83046.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83048.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83050.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83052.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83054.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83056.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83057.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83058.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83059.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83060.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83061.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83062.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83063.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83064.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83065.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83066.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83067.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83068.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83069.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83070.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83071.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83072.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83073.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83074.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83075.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83076.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83077.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83078.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83079.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83080.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83081.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83082.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83083.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83084.000000] [simulator/INFO] Observation node on3 finished [LOG2PARSE](node:on3|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:360|totalUptime:4321.000000|seed:200|hint_added:0|timeDataRcv:7709.010320) +[on10:ON:(11) 83332.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 83332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83440.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83441.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83442.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83443.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83444.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83445.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83446.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83447.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83448.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83449.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83450.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83451.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83452.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83453.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83454.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83455.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83456.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83457.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83458.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83459.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83460.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83461.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83462.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83463.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83464.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83465.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83466.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83467.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83468.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83469.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83470.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83471.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83472.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83473.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83474.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83475.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83476.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83477.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83478.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83479.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83480.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83481.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83482.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83483.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83484.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83485.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83486.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83487.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83488.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83489.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83490.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83491.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83492.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83493.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83494.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83495.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83496.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83497.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83498.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83499.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83500.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83501.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83502.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83503.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83504.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83505.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83506.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83507.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83508.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83509.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83510.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83511.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83512.000000] [simulator/INFO] Observation node on10 finished [LOG2PARSE](node:on10|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:0|totalUptime:4507.620640|seed:200|hint_added:1|timeDataRcv:2638.620640) +[on11:ON:(12) 83602.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 83602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83605.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83607.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83609.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83611.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83613.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83615.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83617.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83619.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83621.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83623.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83625.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83627.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83629.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83631.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83633.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83635.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83637.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83647.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83649.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83671.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83673.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83675.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83677.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83679.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83681.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83683.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83684.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83685.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83686.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83687.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83688.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83689.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83690.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83691.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83692.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83693.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83694.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83695.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83696.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83697.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83698.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83699.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83700.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83701.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83702.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83703.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83704.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83705.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83706.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83707.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83708.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83709.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83710.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83711.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83712.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83713.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83714.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83715.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83716.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83717.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83718.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83719.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83720.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83721.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83722.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83723.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83724.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83725.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83726.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83727.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83728.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83729.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83730.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83731.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83732.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83733.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83734.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83735.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83736.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83737.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83737.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 83737.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83738.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83738.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83739.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83739.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83740.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83740.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83741.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83741.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83742.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83742.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83743.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83743.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83744.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83744.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83745.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83745.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83746.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83746.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83747.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83747.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83748.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83748.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83749.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83749.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83750.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83750.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83751.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83751.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83752.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83752.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83753.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83753.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83754.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83754.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83755.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83755.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83756.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83756.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83757.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83757.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83758.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83758.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83759.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83759.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83760.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83760.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83761.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83761.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83762.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83762.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83763.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83763.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83764.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83764.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83765.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83765.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83766.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83766.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83767.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83767.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83768.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83768.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83769.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83769.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83770.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83770.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83771.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83771.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83772.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83772.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83773.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83773.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83774.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83774.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83775.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83775.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83776.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83776.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83777.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83777.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83778.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83778.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83779.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83779.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83780.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83780.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83781.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83781.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83782.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83782.000000] [simulator/INFO] Observation node on11 finished [LOG2PARSE](node:on11|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:278|totalUptime:4324.641280|seed:200|hint_added:0|timeDataRcv:6749.010320) +[on1:ON:(2) 83783.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83785.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83787.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83789.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83791.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83793.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83795.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83797.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83799.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83801.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83803.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83805.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83807.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83809.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83811.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83813.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83815.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83817.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83819.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83821.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83823.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83824.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83825.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83826.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83827.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83828.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83829.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83830.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83831.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83832.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83833.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83834.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83835.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83836.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83837.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83838.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83839.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83840.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83841.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83842.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83843.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83844.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83845.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83846.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83847.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83848.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83849.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83850.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83851.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83852.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83853.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83854.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83855.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83856.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83857.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83858.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83859.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83860.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83861.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83862.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83863.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83864.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83865.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83866.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83867.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83868.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83869.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83870.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83871.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83872.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83873.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83874.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83875.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83876.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83877.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83878.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83879.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83880.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83881.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83882.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83883.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83884.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83885.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83886.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83887.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83888.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83889.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83890.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83891.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83892.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83893.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83894.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83895.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83896.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83897.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83898.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83899.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83900.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83901.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83902.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83903.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83904.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83905.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83906.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83907.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83908.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83909.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83910.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83911.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83912.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83913.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83914.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83915.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83916.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83917.000000] [simulator/INFO] Observation node on1 finished [LOG2PARSE](node:on1|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1980|totalUptime:4321.010320|seed:200|hint_added:0|timeDataRcv:42285.010320) +[on12:ON:(13) 83926.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 83926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83927.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83930.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83933.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83936.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83939.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83942.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83945.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83948.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83951.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83954.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83957.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83960.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83963.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83966.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83969.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83972.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83975.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83978.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83981.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83984.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83987.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83990.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83993.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83995.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83996.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83997.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83998.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83999.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84000.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84001.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84002.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84003.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84004.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84005.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84006.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84008.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84010.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84011.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84012.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84014.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84015.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84016.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84018.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84106.000000] [simulator/INFO] Observation node on12 finished [LOG2PARSE](node:on12|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:206|totalUptime:4504.000000|seed:200|hint_added:1|timeDataRcv:6829.051600) +[on0:ON:(1) 84304.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 84304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84363.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84364.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84365.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84366.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84367.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84368.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84369.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84370.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84371.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84372.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84373.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84374.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84375.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84376.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84377.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84378.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84379.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84380.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84381.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84382.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84383.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84384.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84385.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84386.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84387.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84388.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84389.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84390.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84391.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84392.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84393.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84394.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84395.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84396.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84397.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84398.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84399.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84400.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84401.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84402.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84403.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84404.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84405.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84405.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 84405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84406.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84406.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84407.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84408.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84409.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84410.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84411.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84412.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84413.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84414.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84415.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84416.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84417.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84418.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84419.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84420.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84421.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84422.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84423.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84424.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84425.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84426.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84427.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84428.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84429.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84430.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84431.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84432.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84433.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84434.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84435.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84436.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84437.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84438.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84439.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84440.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84441.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84442.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84443.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84444.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84445.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84446.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84447.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84448.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84449.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84450.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84451.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84452.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84453.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84454.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84455.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84456.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84457.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84458.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84459.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84460.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84461.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84462.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84463.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84464.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84465.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84466.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84467.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84468.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84469.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84470.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84470.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84471.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84472.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84472.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84473.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84474.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84474.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84475.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84476.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84476.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84477.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84478.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84478.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84479.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84480.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84480.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84481.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84482.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84482.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84483.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84484.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84484.000000] [simulator/INFO] Observation node on0 finished [LOG2PARSE](node:on0|isSender:1|nSend:12|nWakeUp:24|nDataRcv:0|nSendFail:0|nRcvFail:0|totalUptime:4322.010320|seed:200|hint_added:0|timeDataRcv:-1.000000) +[on5:ON:(6) 84485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84585.000000] [simulator/INFO] Observation node on5 finished [LOG2PARSE](node:on5|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:657|totalUptime:4502.300000|seed:200|hint_added:1|timeDataRcv:12961.010320) +[on8:ON:(9) 84994.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 84994.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84995.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84996.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84997.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84998.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84999.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85000.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85001.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85002.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85003.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85004.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85005.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85006.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85007.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85008.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85009.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85010.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85011.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85012.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85013.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85014.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85015.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85016.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85017.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85018.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85019.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85020.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85021.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85022.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85023.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85024.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85025.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85026.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85027.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85028.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85029.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85030.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85031.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85032.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85033.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85034.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85035.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85036.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85037.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85038.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85039.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85040.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85042.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85044.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85046.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85048.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85050.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85052.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85054.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85056.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85058.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85060.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85062.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85064.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85066.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85068.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85070.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85072.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85074.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85076.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85078.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85080.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85082.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85084.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85086.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85088.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85090.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85092.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85094.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85096.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85098.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85100.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85102.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85104.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85106.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85108.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85110.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85112.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85114.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85116.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85116.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 85116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85117.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85118.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85119.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85120.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85121.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85122.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85123.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85124.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85125.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85126.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85127.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85128.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85129.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85130.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85131.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85132.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85133.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85134.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85135.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85136.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85137.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85138.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85139.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85140.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85141.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85142.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85143.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85144.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85145.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85146.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85147.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85148.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85149.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85150.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85151.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85152.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85153.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85154.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85155.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85156.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85157.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85158.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85159.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85160.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85161.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85162.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85163.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85164.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85165.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85166.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85167.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85168.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85169.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85170.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85171.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85172.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85173.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85173.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85174.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85174.000000] [simulator/INFO] Observation node on8 finished [LOG2PARSE](node:on8|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:1620|totalUptime:4502.000000|seed:200|hint_added:1|timeDataRcv:35670.620640) +[on2:ON:(3) 85175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85250.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85251.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85252.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85253.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85254.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85255.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85256.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85257.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85258.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85259.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85260.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85261.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85262.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85263.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85264.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85265.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85266.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85267.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85268.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85269.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85270.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85271.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85272.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85273.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85274.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85283.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85285.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85287.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85289.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85291.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85293.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85295.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85296.000000] [simulator/INFO] Observation node on2 finished [LOG2PARSE](node:on2|isSender:0|nSend:0|nWakeUp:26|nDataRcv:1|nSendFail:0|nRcvFail:359|totalUptime:4683.682240|seed:200|hint_added:3|timeDataRcv:6869.672240) +[on7:ON:(8) 85635.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 85635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85652.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85652.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 85652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85653.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85654.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85655.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85656.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85657.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85658.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85659.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85660.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85661.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85661.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85662.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85663.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85663.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85664.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85665.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85665.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85666.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85667.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85667.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85668.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85669.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85669.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85670.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85671.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85671.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85672.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85673.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85673.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85674.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85675.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85675.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85676.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85677.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85677.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85678.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85679.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85679.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85680.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85681.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85681.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85682.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85683.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85683.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85684.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85685.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85686.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85687.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85687.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85688.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85689.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85689.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85690.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85691.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85691.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85692.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85693.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85693.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85694.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85695.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85695.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85696.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85697.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85697.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85698.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85699.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85699.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85700.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85701.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85701.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85702.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85703.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85703.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85704.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85705.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85705.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85706.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85707.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85707.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85708.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85709.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85709.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85710.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85711.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85711.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85712.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85713.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85713.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85714.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85715.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85715.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85716.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85717.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85717.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85718.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85719.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85719.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85720.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85721.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85721.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85722.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85723.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85723.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85724.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85725.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85725.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85726.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85727.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85727.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85728.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85729.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85729.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85730.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85731.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85731.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85732.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85733.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85733.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85734.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85735.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85735.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85736.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85737.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85737.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85738.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85739.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85739.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85740.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85741.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85741.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85742.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85743.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85743.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85744.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85745.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85745.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85746.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85747.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85747.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85748.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85749.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85749.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85750.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85751.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85751.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85752.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85753.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85753.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85754.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85755.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85755.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85756.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85757.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85757.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85758.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85759.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85759.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85760.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85761.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85761.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85762.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85763.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85763.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85764.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85765.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85766.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85767.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85768.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85769.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85770.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85771.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85772.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85773.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85774.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85775.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85776.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85777.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85778.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85779.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85780.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85781.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85782.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85783.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85784.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85785.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85786.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85787.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85788.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85789.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85790.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85791.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85792.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85793.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85794.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85795.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85796.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85797.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85798.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85799.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85800.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85801.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85802.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85803.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85804.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85805.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85806.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85807.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85808.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85809.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85810.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85811.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85812.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85813.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85814.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85815.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85815.000000] [simulator/INFO] Observation node on7 finished [LOG2PARSE](node:on7|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:228|totalUptime:4503.000000|seed:200|hint_added:1|timeDataRcv:6789.030960) +[on9:ON:(10) 85816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85832.000000] [simulator/INFO] Observation node on9 finished [LOG2PARSE](node:on9|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1089|totalUptime:4320.010320|seed:200|hint_added:0|timeDataRcv:23145.010320) +[on6:ON:(7) 85982.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 85982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86039.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86040.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86041.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86042.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86043.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86044.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86045.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86046.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86047.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86048.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86049.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86050.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86051.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86052.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86053.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86054.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86055.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86056.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86057.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86058.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86059.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86060.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86061.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86062.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86063.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86064.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86065.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86066.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86067.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86068.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86069.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86070.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86071.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86072.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86073.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86074.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86075.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86076.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86077.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86078.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86079.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86080.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86081.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86082.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86083.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86084.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86085.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86086.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86087.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86088.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86089.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86090.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86091.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86092.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86093.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86093.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 86093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86094.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86094.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86095.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86096.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86096.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86097.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86098.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86098.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86099.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86100.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86100.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86101.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86102.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86102.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86103.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86104.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86104.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86105.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86106.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86106.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86107.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86108.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86108.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86109.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86110.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86110.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86111.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86112.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86112.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86113.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86114.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86114.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86115.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86116.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86116.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86117.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86118.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86118.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86119.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86120.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86120.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86121.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86122.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86122.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86123.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86124.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86124.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86125.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86126.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86126.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86127.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86128.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86128.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86129.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86130.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86130.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86131.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86132.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86132.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86133.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86134.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86134.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86135.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86136.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86136.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86137.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86138.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86138.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86139.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86140.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86140.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86141.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86142.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86142.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86143.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86144.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86144.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86145.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86146.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86146.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86147.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86148.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86148.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86149.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86150.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86150.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86151.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86152.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86152.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86153.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86154.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86154.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86155.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86156.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86156.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86157.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86158.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86158.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86159.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86160.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86160.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86161.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86162.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86162.000000] [simulator/INFO] Observation node on6 finished [LOG2PARSE](node:on6|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1076|totalUptime:4356.010320|seed:200|hint_added:0|timeDataRcv:20732.010320) +[on4:ON:(5) 86163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86267.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86268.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86269.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86270.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86271.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86272.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86273.000000] [simulator/INFO] Observation node on4 finished [LOG2PARSE](node:on4|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:693|totalUptime:4618.999680|seed:200|hint_added:2|timeDataRcv:13002.630960) +[86273.000000] [surf_energy/INFO] Total energy consumption: 26056.981784 Joules (used hosts: 0.000000 Joules; unused/idle hosts: 26056.981784) +[86273.000000] [simulator/INFO] Simulation took 86273.000000s +[86273.000000] [simulator/INFO] The simulated platform file is available in "platform.xml" +[86273.000000] [surf_energy/INFO] Energy consumption of host on0: 2041.018784 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on1: 1870.760836 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on10: 2313.766672 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on11: 1949.569928 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on12: 2193.529876 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on2: 2169.516228 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on3: 1829.806708 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on4: 2181.719788 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on5: 1948.209792 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on6: 1768.410836 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on7: 2072.249792 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on8: 1964.411708 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on9: 1754.010836 Joules diff --git a/results/scheduler/log.txt b/results/scheduler/log.txt new file mode 100644 index 0000000..42b3bce --- /dev/null +++ b/results/scheduler/log.txt @@ -0,0 +1,54348 @@ +export LD_LIBRARY_PATH=:./libs/simgrid/build/lib && ./simulator 10 --cfg=network/bandwidth-factor:1.05 --cfg=network/model:CM02 -–cfg=network/crosstraffic:0 +[0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/bandwidth-factor' to '1.05' +[0.000000] [xbt_cfg/INFO] Configuration change: Set 'network/model' to 'CM02' +[0.000000] [simulator/INFO] ------------------------------------------------- +[0.000000] [simulator/INFO] Sarting loosely coupled data dissemination experiments +[0.000000] [simulator/INFO] ------------------------------------------------- +[on0:ON:(1) 0.000000] [simulator/INFO] Deploying observation node on0 +[on0:ON:(1) 0.000000] [simulator/INFO] on0 is sleeping +[on1:ON:(2) 0.000000] [simulator/INFO] Deploying observation node on1 +[on1:ON:(2) 0.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 0.000000] [simulator/INFO] Deploying observation node on2 +[on2:ON:(3) 0.000000] [simulator/INFO] on2 is sleeping +[on3:ON:(4) 0.000000] [simulator/INFO] Deploying observation node on3 +[on3:ON:(4) 0.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 0.000000] [simulator/INFO] Deploying observation node on4 +[on4:ON:(5) 0.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 0.000000] [simulator/INFO] Deploying observation node on5 +[on5:ON:(6) 0.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 0.000000] [simulator/INFO] Deploying observation node on6 +[on6:ON:(7) 0.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 0.000000] [simulator/INFO] Deploying observation node on7 +[on7:ON:(8) 0.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 0.000000] [simulator/INFO] Deploying observation node on8 +[on8:ON:(9) 0.000000] [simulator/INFO] on8 is sleeping +[on9:ON:(10) 0.000000] [simulator/INFO] Deploying observation node on9 +[on9:ON:(10) 0.000000] [simulator/INFO] on9 is sleeping +[on10:ON:(11) 0.000000] [simulator/INFO] Deploying observation node on10 +[on10:ON:(11) 0.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 0.000000] [simulator/INFO] Deploying observation node on11 +[on11:ON:(12) 0.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 0.000000] [simulator/INFO] Deploying observation node on12 +[on12:ON:(13) 0.000000] [simulator/INFO] on12 is sleeping +[on7:ON:(8) 129.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 130.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 131.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 132.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 133.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 134.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 135.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 136.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 137.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 138.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 139.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 140.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 141.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 142.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 143.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 144.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 145.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 146.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 147.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 148.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 149.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 150.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 151.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 152.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 153.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 154.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 155.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 156.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 157.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 158.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 159.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 160.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 161.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 162.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 163.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 164.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 165.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 166.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 167.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 168.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 169.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 170.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 171.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 172.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 173.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 174.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 175.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 176.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 177.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 178.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 179.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 180.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 181.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 182.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 183.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 184.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 185.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 186.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 187.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 188.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 189.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 190.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 191.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 192.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 193.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 194.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 195.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 196.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 197.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 198.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 199.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 200.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 201.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 202.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 203.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 204.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 205.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 206.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 207.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 208.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 209.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 210.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 211.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 212.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 213.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 214.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 215.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 216.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 217.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 218.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 219.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 220.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 221.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 222.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 223.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 224.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 225.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 226.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 227.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 228.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 229.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 230.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 231.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 232.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 233.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 234.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 235.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 236.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 237.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 238.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 239.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 240.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 241.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 242.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 243.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 244.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 245.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 246.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 247.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 248.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 249.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 250.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 251.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 252.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 253.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 254.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 255.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 256.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 257.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 258.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 259.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 260.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 261.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 262.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 263.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 264.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 265.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 266.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 267.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 268.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 269.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 270.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 271.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 272.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 273.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 274.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 275.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 276.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 277.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 278.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 279.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 280.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 281.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 282.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 283.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 284.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 285.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 286.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 287.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 288.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 289.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 290.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 291.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 292.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 293.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 294.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 295.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 296.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 297.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 298.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 299.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 300.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 301.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 302.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 303.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 304.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 305.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 306.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 307.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 308.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 309.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 309.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 863.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 864.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 865.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 866.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 867.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 868.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 869.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 870.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 871.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 872.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 873.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 874.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 875.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 876.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 877.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 878.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 879.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 880.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 881.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 882.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 883.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 884.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 885.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 886.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 887.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 888.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 889.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 890.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 891.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 892.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 893.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 894.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 895.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 896.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 897.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 898.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 899.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 900.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 901.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 902.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 903.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 904.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 905.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 906.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 907.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 908.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 909.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 910.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 911.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 912.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 913.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 914.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 915.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 916.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 917.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 918.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 919.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 920.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 921.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 922.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 923.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 924.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 925.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 926.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 927.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 928.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 929.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 930.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 931.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 932.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 933.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 934.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 935.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 936.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 937.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 938.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 939.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 940.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 941.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 942.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 943.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 944.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 945.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 946.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 947.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 948.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 949.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 950.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 951.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 952.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 953.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 954.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 955.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 956.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 957.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 958.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 959.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 960.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 961.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 962.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 963.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 964.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 965.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 966.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 967.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 968.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 969.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 970.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 971.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 972.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 973.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 974.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 975.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 976.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 977.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 978.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 979.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 980.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 981.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 982.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 983.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 984.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 985.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 986.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 987.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 988.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 989.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 990.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 991.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 992.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 993.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 994.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 995.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 996.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 997.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 998.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 999.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1000.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1001.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1002.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1003.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1004.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1005.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1006.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1007.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1008.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1009.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1010.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1011.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1012.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1013.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1014.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1015.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1016.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1017.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1018.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1019.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1020.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1021.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1022.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1023.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1024.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1025.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1026.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1027.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1028.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1029.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1030.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1031.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1032.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1033.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1034.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1035.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1036.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1037.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1038.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1039.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1040.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1041.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1042.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1043.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 1043.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 1158.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 1159.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1160.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1161.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1162.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1163.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1164.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1165.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1166.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1167.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1168.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1169.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1170.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1171.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1172.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1173.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1174.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1175.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1176.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1177.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1178.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1179.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1180.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1181.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1182.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1183.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1184.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1185.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1186.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1187.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1188.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1189.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1190.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1191.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1192.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1193.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1194.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1195.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1196.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1197.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1198.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1199.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1200.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1201.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1202.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1203.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1204.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1205.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1206.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1207.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1208.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1209.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1210.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1211.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1212.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1213.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1214.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1215.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1216.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1217.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1218.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1219.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1220.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1221.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1222.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1223.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1224.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1225.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1226.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1227.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1228.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1229.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1230.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1231.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1232.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1233.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1234.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1235.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1236.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1237.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1238.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1239.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1240.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1241.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1242.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1243.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1244.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1245.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1246.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1247.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1248.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1249.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1250.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1251.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1252.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1253.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1254.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1255.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1256.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1257.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1258.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1259.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1260.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1261.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1262.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1263.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1264.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1265.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1266.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1267.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1268.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1269.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1270.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1271.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1272.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1273.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1274.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1275.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1276.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1277.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1278.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1279.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1280.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1281.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1282.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1283.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1284.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1285.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1286.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1287.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1288.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1289.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1290.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1291.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1292.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1293.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1294.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1295.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1296.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1297.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1298.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1299.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1300.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1301.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1302.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1303.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1304.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1305.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1306.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1307.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1308.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1309.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1310.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1311.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1312.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1313.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1314.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1315.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1316.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1317.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1318.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1319.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1320.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1321.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1322.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1323.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1324.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1325.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1326.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1327.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1328.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1329.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1330.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1331.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1332.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1333.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1334.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1335.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1336.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1337.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1338.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 1338.000000] [simulator/INFO] on11 is sleeping +[on1:ON:(2) 1388.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 1389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1440.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1441.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1442.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1443.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1444.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1445.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1446.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1447.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1448.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1449.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1450.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1451.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1452.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1453.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1454.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1455.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1456.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1457.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1458.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1459.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1460.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1461.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1462.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1463.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1464.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1465.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1466.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1467.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1468.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1469.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1470.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1471.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1472.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1473.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1474.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1475.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1476.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1477.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1478.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1479.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1480.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1481.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1482.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1483.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1484.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1485.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1486.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1487.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1488.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1489.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1490.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1491.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1492.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1493.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1494.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1495.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1496.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1497.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1498.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1499.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1500.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1501.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1502.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1503.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1504.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1505.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1506.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1507.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1508.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1509.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1510.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1511.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1512.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1513.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1514.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1515.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1516.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1517.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1518.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1519.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1520.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1521.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1522.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1523.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1524.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1525.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1526.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1527.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1528.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1529.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1530.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1531.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1532.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1533.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1534.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1535.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1536.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1537.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1538.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1539.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1540.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1541.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1542.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1543.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1544.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1545.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1546.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1547.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1548.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1549.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1550.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1551.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1552.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1553.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1554.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1555.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1556.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1557.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1558.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1559.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1560.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1561.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1562.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1563.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1564.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1565.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1566.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1567.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1568.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 1568.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 1613.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 1614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1629.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1630.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1631.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1632.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1633.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1634.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1635.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1636.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1637.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1638.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1639.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1640.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1641.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1692.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1693.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1694.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1695.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1696.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1697.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1698.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1699.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1700.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1701.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1702.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1703.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1704.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1705.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1706.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1707.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1708.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1709.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1710.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1711.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1712.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1713.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1714.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1715.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1716.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1717.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1718.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1719.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1720.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1721.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1722.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1723.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1724.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1725.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1726.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1727.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1728.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1730.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1732.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 1793.000000] [simulator/INFO] on6 is sleeping +[on4:ON:(5) 1866.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 1867.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1868.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1869.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1870.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1871.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1872.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1873.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1874.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1875.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1876.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1877.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1878.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1879.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1880.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1881.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1882.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1883.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1884.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1885.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1886.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1887.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1888.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1889.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1890.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1891.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1892.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1893.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1894.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1895.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1896.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1897.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1898.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1899.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1900.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1901.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1902.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1903.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1904.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1905.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1906.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1907.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1908.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1909.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1910.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1911.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1912.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1913.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1914.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1915.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1916.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1917.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1918.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1919.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1920.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1921.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1922.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1923.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1924.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1925.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1926.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1927.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1928.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1929.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1930.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1931.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1932.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1933.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1934.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1934.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 1935.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1935.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1936.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1936.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1937.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1937.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1938.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1938.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1939.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1939.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1940.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1940.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1941.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1941.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1942.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1942.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1943.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1943.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1944.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1944.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1945.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1945.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1946.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1946.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1947.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1947.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1948.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1948.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1949.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1949.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1950.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1950.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1951.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1951.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1952.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1952.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1953.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1953.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1954.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1954.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1955.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1955.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1956.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1956.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1957.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1957.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1958.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1958.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1959.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1959.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1960.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1960.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1961.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1961.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1962.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1962.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1963.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1963.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1964.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1964.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1965.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1965.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1966.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1966.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1967.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1967.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1968.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1968.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1969.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1969.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1970.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1970.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1971.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1971.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1972.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1972.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1973.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1973.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1974.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1974.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1975.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1975.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1976.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1976.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1977.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1977.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1978.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1978.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1979.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1979.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1980.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1980.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1981.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1981.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1982.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1982.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1983.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1983.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1984.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1984.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1985.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1985.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1986.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1986.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1987.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1987.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1988.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1988.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1989.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1989.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1990.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1990.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1991.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1991.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1992.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1992.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1993.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1993.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1994.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1994.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1995.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1995.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1996.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1996.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1997.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1997.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 1998.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 1998.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 1999.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 1999.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2000.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2000.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2001.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2001.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2002.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2002.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2003.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2003.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2004.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2004.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2005.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2005.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2006.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2006.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2007.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2007.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2008.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2008.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2009.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2009.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2010.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2010.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2011.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2011.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2012.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2012.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2013.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2013.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2014.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2014.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2015.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2015.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2016.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2016.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2017.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2017.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2018.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2018.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2019.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2019.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2020.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2020.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2021.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2021.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2022.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2022.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2023.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2023.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2024.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2024.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2025.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2025.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2026.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2026.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2027.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2027.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2028.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2028.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2029.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2029.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2030.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2030.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2031.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2031.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2032.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2032.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2033.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2033.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2034.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2034.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2035.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2035.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2036.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2036.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2037.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2037.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2038.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2038.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2039.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2039.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2040.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2040.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2041.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2041.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2042.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2042.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2043.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2043.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2044.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 2044.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2045.000000] [simulator/INFO] on5 could not receive any data +[on4:ON:(5) 2045.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2046.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 2046.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 2046.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2047.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2048.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2049.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2050.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2051.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2052.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2053.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2054.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2055.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2056.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2057.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2058.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2059.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2060.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2061.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2062.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2063.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2064.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2065.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2066.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2067.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2068.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2069.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2070.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2071.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2072.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2073.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2074.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2075.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2076.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2077.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2078.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2079.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2080.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2081.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2082.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2083.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2084.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2085.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2086.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2087.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2088.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2089.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2090.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2091.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2092.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2093.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2094.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2095.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2096.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2097.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2098.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2099.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2100.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2101.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2102.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2103.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2104.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2105.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2106.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2107.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2108.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2109.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2110.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2111.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2112.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2113.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2114.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 2114.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 2225.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 2226.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2227.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2228.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2229.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2230.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2231.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2232.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2233.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2234.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2235.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2236.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2237.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2238.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2239.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2240.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2241.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2242.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2243.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2244.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2245.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2246.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2247.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2248.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2249.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2250.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2250.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 2251.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2251.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2252.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2252.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2253.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2253.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2254.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2254.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2255.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2255.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2256.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2256.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2257.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2257.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2258.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2258.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2259.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2259.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2260.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2260.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2261.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2261.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2262.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2262.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2263.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2263.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2264.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2264.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2265.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2265.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2266.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2266.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2267.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2267.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2268.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2268.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2269.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2269.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2270.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2270.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2271.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2271.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2272.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2272.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2273.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2273.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2274.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2274.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2275.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2275.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2276.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2276.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2277.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2277.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2278.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2278.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2279.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2279.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2280.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2280.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2281.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2281.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2282.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2282.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2283.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2283.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2284.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2284.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2285.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2285.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2286.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2286.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2287.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2287.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2288.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2288.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2289.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2289.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2290.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2290.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2291.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2291.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2292.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2292.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2293.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2293.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2294.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2294.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2295.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2295.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2296.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2296.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2297.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2297.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2298.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2298.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2299.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2299.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2300.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2300.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2301.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2301.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2302.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2302.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2303.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2303.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2304.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2304.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2305.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2305.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2306.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2306.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2307.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2307.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2308.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2308.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2309.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2309.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2310.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2310.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2311.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2311.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2312.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2312.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2313.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2313.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2314.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2314.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2315.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2315.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2316.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2316.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2317.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2317.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2318.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2318.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2319.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2319.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2320.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2320.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2321.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2321.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2322.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2322.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2323.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2323.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2324.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2324.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2325.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2325.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2326.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2326.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2327.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2327.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2328.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2328.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2329.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2329.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2330.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2330.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2331.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2331.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2332.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2332.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2333.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2333.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2334.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2334.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2335.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2335.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2336.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2336.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2337.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2337.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2338.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2338.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2339.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2339.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2340.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2340.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2341.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2341.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2342.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2342.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2343.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2343.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2344.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2344.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2345.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2345.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2346.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2346.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2347.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2347.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2348.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2348.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2349.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2349.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2350.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2350.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2351.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2351.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2352.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2352.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2353.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2353.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2354.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2354.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2355.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2355.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2356.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2356.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2357.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2357.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2358.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2358.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2359.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2359.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2360.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2360.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2361.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2361.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2362.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2362.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2363.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2363.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2364.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2364.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2365.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2365.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2366.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2366.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2367.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2367.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2368.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2368.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2369.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2369.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2370.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2370.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2371.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2371.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2372.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2372.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2373.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2373.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2374.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2374.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2375.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2375.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2376.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2376.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2377.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2377.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2378.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2378.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2379.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2379.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2380.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2380.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2381.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2381.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2382.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2382.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2383.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2383.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2384.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2384.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2385.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2385.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2386.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2386.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2387.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2387.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2388.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2388.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2389.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2389.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2390.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2390.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2391.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2391.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2392.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2392.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2393.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2393.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2394.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2394.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2395.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2395.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2396.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2396.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2397.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2397.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2398.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2398.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2399.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2399.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2400.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2400.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2401.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2401.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2402.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2402.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2403.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2403.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2404.000000] [simulator/INFO] on2 could not receive any data +[on12:ON:(13) 2404.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2405.000000] [simulator/INFO] on12 could not receive any data +[on2:ON:(3) 2405.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 2405.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 2406.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2407.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2408.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2409.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2410.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2411.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2412.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2413.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2414.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2415.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2416.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2417.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2418.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2419.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2420.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2421.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2422.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2423.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2424.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2425.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2426.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2427.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2428.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2429.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2430.000000] [simulator/INFO] on12 could not receive any data +[on12:ON:(13) 2430.000000] [simulator/INFO] on12 is sleeping +[on0:ON:(1) 2593.000000] [simulator/INFO] on0 wakes up +[on10:ON:(11) 2598.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 2598.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 2598.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 2598.310320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 received data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 received a hint along with data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 2638.620640] [simulator/INFO] on0 sent data successfully +[on10:ON:(11) 2638.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2639.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2640.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2641.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2641.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2642.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2643.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2644.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2644.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2645.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2646.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2647.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2647.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2648.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2649.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2650.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2650.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2651.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2652.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2653.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2653.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2654.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2655.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2656.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2656.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2657.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2658.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2659.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2659.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2660.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2661.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2662.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2662.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2663.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2664.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2665.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2665.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2666.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2667.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2668.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2668.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2669.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2670.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2671.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2671.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2672.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2673.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2674.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2674.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2675.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2676.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2677.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2677.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2678.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2679.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2680.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2680.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2681.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2682.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2683.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2683.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2684.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2685.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2686.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2686.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2687.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2688.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2689.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2689.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2690.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2691.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2692.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2692.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2693.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2694.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2695.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2695.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2696.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2697.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2698.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2698.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2699.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2700.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2701.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2701.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2702.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2703.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2704.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2704.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2705.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2706.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2707.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2707.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2708.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2709.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2710.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2710.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2711.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2712.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2713.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2713.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2714.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2715.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2716.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2716.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2717.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2718.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2719.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2719.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2720.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2721.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2722.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2722.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2723.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2724.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2725.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2725.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2726.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2727.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2728.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2728.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2729.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2730.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2731.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2731.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2732.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2733.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2734.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2734.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2735.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2736.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2737.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2737.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2738.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2739.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2740.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2740.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2741.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2742.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2743.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2743.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2744.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2745.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2746.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2746.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2747.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2748.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2749.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2749.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2750.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2751.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2752.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2752.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2753.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2754.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2755.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2755.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2756.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2757.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2758.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2758.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2759.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2760.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2761.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2761.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2762.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2763.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2764.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2764.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2765.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2766.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2767.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2767.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2768.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2769.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2770.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2770.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2771.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2772.620640] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 2773.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 2773.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2773.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2774.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2775.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2776.620640] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 2776.620640] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 2777.620640] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 2778.620640] [simulator/INFO] on10 is sleeping +[on8:ON:(9) 2802.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 2803.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2804.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2805.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2806.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2807.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2808.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2809.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2810.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2811.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2812.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2813.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2814.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2815.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2816.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2817.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2818.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2819.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2820.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2821.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2822.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2823.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2824.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2825.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2826.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2827.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2828.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2829.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2830.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2831.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2832.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2833.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2834.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2835.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2836.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2837.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2838.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2839.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2840.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2841.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2842.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2843.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2844.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2845.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2846.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2847.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2848.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2849.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2850.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2851.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2852.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2853.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2854.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2855.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2856.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2857.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2858.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2859.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2860.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2861.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2862.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2863.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2864.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2865.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2866.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2867.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2868.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2869.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2870.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2871.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2872.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2873.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2874.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2875.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2876.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2877.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2878.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2879.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2880.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2881.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2882.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2883.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2884.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2885.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2886.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2887.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2888.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2889.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2890.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2891.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2892.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2893.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2894.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2895.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2896.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2897.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2898.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2899.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2900.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2900.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 2901.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2901.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2902.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2902.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2903.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2903.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2904.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2904.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2905.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2905.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2906.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2906.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2907.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2907.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2908.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2908.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2909.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2909.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2910.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2910.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2911.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2911.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2912.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2912.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2913.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2913.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2914.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2914.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2915.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2915.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2916.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2916.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2917.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2917.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2918.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2918.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2919.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2919.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2920.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2920.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2921.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2921.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2922.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2922.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2923.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2923.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2924.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2924.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2925.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2925.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2926.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2926.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2927.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2927.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2928.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2928.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2929.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2929.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2930.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2930.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2931.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2931.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2932.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2932.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2933.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2933.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2934.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2934.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2935.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2935.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2936.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2936.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2937.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2937.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2938.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2938.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2939.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2939.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2940.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2940.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2941.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2941.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2942.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2942.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2943.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2943.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2944.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2944.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2945.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2945.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2946.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2946.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2947.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2947.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2948.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2948.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2949.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2949.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2950.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2950.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2951.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2951.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2952.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2952.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2953.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2953.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2954.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2954.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2955.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2955.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2956.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2956.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2957.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2957.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2958.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2959.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2959.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2960.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2961.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2961.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2962.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2963.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2963.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2964.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2965.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2965.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2966.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2967.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2967.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2968.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2969.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2969.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2970.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2970.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2971.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2971.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2972.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2972.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2973.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2973.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2974.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2974.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2975.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2975.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2976.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2976.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2977.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2977.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2978.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2978.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2979.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2979.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2980.000000] [simulator/INFO] on8 could not receive any data +[on9:ON:(10) 2980.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2981.000000] [simulator/INFO] on9 could not receive any data +[on8:ON:(9) 2981.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2982.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 2982.000000] [simulator/INFO] on8 is sleeping +[on9:ON:(10) 2982.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2983.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2984.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2985.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2986.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2987.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2988.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2989.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2990.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2991.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2992.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2993.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2994.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2995.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2996.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2997.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2998.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 2999.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3000.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3001.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3002.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3003.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3004.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3005.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3006.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3007.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3008.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3009.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3010.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3011.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3012.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3013.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3014.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3015.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3016.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3017.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3018.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3019.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3020.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3021.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3022.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3023.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3024.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3025.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3026.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3027.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3028.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3029.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3030.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3031.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3032.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3033.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3034.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3035.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3036.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3037.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3038.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3039.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3040.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3041.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3042.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3043.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3044.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3045.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3046.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3047.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3048.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3049.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3050.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3051.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3052.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3053.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3054.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3055.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3056.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3057.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3058.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3059.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3060.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3061.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3062.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3063.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3064.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3065.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3066.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3067.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3068.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3069.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3070.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3071.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3072.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3073.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3074.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3075.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3076.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3077.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3078.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3079.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3080.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3080.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 3628.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 3629.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3630.000000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3631.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 3631.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 3631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 3632.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3632.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 3632.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 3632.010000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3632.010000] [simulator/INFO] on2 received a forwarded hint successfully +[on10:ON:(11) 3633.010000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 3633.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3633.010000] [simulator/INFO] on2 try to forward a hint +[on10:ON:(11) 3633.010000] [simulator/INFO] on10 try to forward a hint +[on2:ON:(3) 3633.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3634.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3634.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3634.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3636.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3636.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3636.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3637.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3637.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3638.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3639.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3639.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3639.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3641.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3641.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3641.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3642.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3642.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3642.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3644.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3644.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3644.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3645.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3645.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3646.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3647.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3647.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3647.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3649.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3649.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3649.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3650.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3650.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3650.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3652.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3652.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3652.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3653.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3653.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3654.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3655.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3655.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3655.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3657.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3657.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3657.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3658.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3658.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3658.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3660.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3660.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3660.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3661.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3661.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3662.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3663.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3663.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3663.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3665.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3665.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3665.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3666.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3666.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3666.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3668.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3668.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3668.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3669.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3669.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3670.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3671.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3671.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3671.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3673.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3673.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3673.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3674.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3674.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3674.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3676.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3676.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3676.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3677.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3677.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3678.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3679.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3679.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3679.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3681.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3681.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3681.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3682.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3682.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3682.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3684.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3684.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3684.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3685.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3685.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3686.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3687.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3687.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3687.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3689.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3689.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3689.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3690.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3690.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3690.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3692.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3692.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3692.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3693.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3693.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3694.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3695.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3695.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3695.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3697.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3697.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3697.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3698.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3698.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3698.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3700.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3700.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3700.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3701.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3701.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3702.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3703.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3703.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3703.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3705.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3705.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3705.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3706.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3706.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3706.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3708.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3708.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3708.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3709.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3709.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3710.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3711.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3711.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3711.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3713.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3713.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3713.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3714.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3714.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3714.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3716.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3716.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3716.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3717.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3717.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3718.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3719.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3719.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3719.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3721.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3721.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3721.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3722.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3722.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3722.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3724.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3724.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3724.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3725.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3725.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3726.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3727.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3727.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3727.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3729.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3729.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3729.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3730.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3730.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3730.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3732.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3732.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3732.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3733.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3733.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3734.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3735.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3735.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3735.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3737.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3737.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3737.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3738.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3738.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3738.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3740.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3740.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3740.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3741.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3741.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3742.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3743.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3743.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3743.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3745.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3745.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3745.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3746.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3746.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3746.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3748.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3748.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3748.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3749.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3749.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3750.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3751.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3751.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3751.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3753.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3753.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3753.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3754.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3754.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3754.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3756.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3756.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3756.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3757.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3757.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3758.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3759.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3759.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3759.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3761.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3761.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3761.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3762.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3762.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3762.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3764.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3764.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3764.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3765.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3765.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3766.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3767.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3767.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3767.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3769.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3769.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3769.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3770.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3770.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3770.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3772.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3772.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3772.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3773.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3773.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3774.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3775.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3775.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3775.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3777.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3777.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3777.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3778.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3778.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3778.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3780.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3780.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3780.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3781.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3781.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3782.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3783.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3783.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3783.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3785.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3785.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3785.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3786.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3786.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3786.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3788.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3788.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3788.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3789.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3789.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3790.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3791.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3791.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3791.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3793.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3793.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3793.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3794.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3794.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3794.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3796.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3796.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3796.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3797.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3797.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3798.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3799.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3799.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3799.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3801.010000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3801.010000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3801.310000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3802.610000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3802.610000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3802.910000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3804.210000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3804.210000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3804.510000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3805.810000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3805.810000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3806.110000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3807.410000] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 3807.410000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 3807.710000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 3808.010000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 3811.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 3812.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 3840.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 3841.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3842.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3843.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3844.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3845.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3846.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3847.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3848.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3849.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3850.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3851.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3852.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3853.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3854.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3855.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3856.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3857.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3858.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3859.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3860.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3861.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3862.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3863.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3864.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3865.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3866.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3867.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3868.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3869.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3870.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3871.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3872.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3873.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3874.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3875.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3876.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3877.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3878.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3879.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3880.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3881.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3882.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3883.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3884.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3885.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3886.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3887.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3888.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3889.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3890.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3891.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3892.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3893.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3894.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3895.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3896.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3897.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3898.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3899.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3900.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3901.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3902.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3903.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3904.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3905.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3906.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3907.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3908.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3909.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3910.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3911.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3912.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3913.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3914.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3915.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3916.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3917.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3918.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3919.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3920.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3921.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3922.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3923.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3924.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3925.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3926.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3927.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3928.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3929.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3930.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3931.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3932.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3933.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3934.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3935.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3936.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3937.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3938.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3939.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3940.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3941.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3942.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3943.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3944.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3945.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3946.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3947.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3948.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3949.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3950.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3951.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3952.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3953.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3954.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3955.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3956.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3957.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3959.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3961.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3963.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3965.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3967.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3969.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3970.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3971.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3972.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3973.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3974.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3975.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3976.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3977.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3978.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3979.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3980.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3981.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3982.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3983.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3984.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3985.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3986.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3987.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3988.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3989.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3990.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3991.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3992.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3993.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3994.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3995.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3996.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3997.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3998.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 3999.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4000.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4001.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4002.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4003.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4004.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4005.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4006.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4007.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4008.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4009.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4010.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4011.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4012.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4013.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4014.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4015.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4016.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4017.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4018.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4019.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4020.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 4020.000000] [simulator/INFO] on9 is sleeping +[on1:ON:(2) 4259.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 4260.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4261.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4262.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4263.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4264.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4265.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4266.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4267.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4268.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4269.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4270.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4271.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4272.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4273.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4274.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4275.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4276.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4277.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4278.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4279.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4280.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4281.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4282.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4283.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4284.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4285.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4286.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4287.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4288.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4289.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4290.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4291.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4292.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4293.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4294.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4295.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4296.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4297.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4298.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4299.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4300.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4301.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4302.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4303.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4304.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4305.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4306.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4307.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4308.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4309.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4310.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4311.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4312.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4313.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4314.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4315.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4316.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4317.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4318.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4319.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4320.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4321.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4322.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4323.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4324.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4325.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4326.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4327.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4328.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4329.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4330.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4331.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4332.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4333.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4334.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4335.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4336.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 4439.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 4641.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 4642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4692.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4693.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4694.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4695.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4696.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4697.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4698.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4699.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4700.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4701.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4702.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4703.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4704.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4705.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4706.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4707.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4708.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4709.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4710.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4711.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4712.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4713.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4714.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4715.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4716.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4717.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4718.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4719.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4720.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4721.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4722.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4723.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4724.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4725.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4726.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4727.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4728.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4730.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4732.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4794.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4795.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4796.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4797.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4798.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4799.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4800.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4801.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4802.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4803.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4804.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4805.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4806.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4807.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4808.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4809.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4810.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4811.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4812.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4813.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4814.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4815.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4816.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4817.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4818.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4819.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4820.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4821.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 4821.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 4944.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 4945.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4946.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4947.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4948.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4949.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4950.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4951.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4952.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4953.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4954.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4955.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4956.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4957.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4958.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4959.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4960.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4961.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4962.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4963.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4964.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4965.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4966.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4967.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4968.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4969.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4970.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4971.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4972.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4973.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4974.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4975.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4976.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4977.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4978.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4979.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4980.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4981.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4982.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4983.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4984.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4985.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4986.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4987.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4988.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4989.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4990.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4991.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4992.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4993.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4994.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4995.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4996.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4997.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4998.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 4999.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5000.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5001.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5002.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5003.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5004.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5005.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5006.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5007.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5008.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5009.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5010.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5011.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5012.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5013.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5014.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5015.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5016.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5017.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5018.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5019.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5020.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5021.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5022.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5023.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5024.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5025.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5026.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5027.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5028.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5029.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5030.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5031.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5032.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5033.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5034.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5035.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5036.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5037.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5038.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5039.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5040.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5041.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5042.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5043.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5044.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5045.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5046.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5047.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5048.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5049.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5050.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5051.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5052.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5053.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5054.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5055.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5056.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5057.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5058.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5059.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5060.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5061.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5062.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5063.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5064.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5065.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5066.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5067.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5068.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5069.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5070.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5071.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5072.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5073.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5074.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5075.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5076.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5077.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5078.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5079.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5080.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5081.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5082.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5083.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5084.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5085.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5086.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5087.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5088.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5089.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5090.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5091.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5092.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5093.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5094.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5095.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5096.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5097.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5098.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5099.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5100.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5101.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5102.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5103.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5104.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5105.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5106.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5107.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5108.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5109.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5110.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5111.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5112.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5113.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5114.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5115.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5116.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5117.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5118.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5119.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5120.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5121.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5122.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5123.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5124.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 5124.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 6411.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 6412.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6413.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6414.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6415.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6416.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6417.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6418.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6419.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6420.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6421.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6422.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6423.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6424.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6425.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6426.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6427.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6428.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6429.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6430.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6431.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6432.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6433.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6434.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6435.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6436.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6437.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6438.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6439.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6440.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6441.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6442.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6443.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6444.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6445.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6446.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6447.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6448.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6449.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6450.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6451.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6452.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6453.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6454.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6455.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6456.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6457.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6458.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6459.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6460.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6461.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6462.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6463.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6464.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6465.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6466.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6467.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6468.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6469.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6470.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6471.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6472.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6473.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6474.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6475.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6476.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6477.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6478.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6479.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6480.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6481.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6482.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6483.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6484.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6485.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6486.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6487.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6488.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6489.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6490.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6491.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6492.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6493.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6494.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6495.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6496.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6497.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6498.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6499.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6500.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6501.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6502.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6503.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6504.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6505.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6506.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6507.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6508.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6509.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6510.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6511.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6512.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6513.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6514.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6515.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6516.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6517.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6518.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6519.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6520.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6521.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6522.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6523.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6524.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6525.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6526.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6527.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6528.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6529.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6530.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6531.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6532.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6533.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6534.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6535.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6536.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6537.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6538.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6539.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6540.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6541.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6542.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6543.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6544.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6545.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6546.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6547.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6548.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6549.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6550.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6551.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6552.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6553.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6554.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6555.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6556.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6557.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6558.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6559.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6560.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6561.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6562.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6563.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6564.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6565.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6566.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6567.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6568.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6569.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6570.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6571.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6572.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6573.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6574.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6575.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6576.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6577.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6578.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6579.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6580.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6581.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6582.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6583.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6584.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6585.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6586.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6587.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6588.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6589.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6590.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6591.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 6591.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 6611.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 6612.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6613.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6614.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6615.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6616.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6617.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6618.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6619.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6620.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6621.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6622.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6623.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6624.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6625.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6626.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6627.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6628.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6629.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6630.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6631.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6632.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6633.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6634.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6635.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6636.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6637.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6638.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6639.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6640.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6641.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6642.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6643.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6644.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6645.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6646.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6647.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6648.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6649.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6650.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6651.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6652.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6653.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6654.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6655.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6656.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6657.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6658.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6659.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6660.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6661.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6662.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6663.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6664.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6665.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6666.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6667.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6668.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6669.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6670.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6671.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6672.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6673.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6674.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6675.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6676.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6677.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6678.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6679.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6680.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6681.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6682.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6683.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6684.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6685.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6686.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6687.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6688.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6689.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6690.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6691.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6692.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6693.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6694.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6695.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6696.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6697.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6698.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6699.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6700.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6701.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6701.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 6702.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6702.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6703.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6703.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6704.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6704.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6705.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6705.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6706.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6706.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6707.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6707.000000] [simulator/INFO] on7 could not receive any data +[on7:ON:(8) 6708.000000] [simulator/INFO] on7 could not receive any data +[on11:ON:(12) 6708.000000] [simulator/INFO] on11 could not receive any data +[on11:ON:(12) 6709.000000] [simulator/INFO] on11 could not receive any data +[on7:ON:(8) 6709.000000] [simulator/INFO] on7 could not receive any data +[on0:ON:(1) 6709.000000] [simulator/INFO] on0 wakes up +[on2:ON:(3) 6709.000000] [simulator/INFO] on2 wakes up +[on10:ON:(11) 6709.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 6709.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6710.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6710.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6710.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6711.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6711.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6711.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6712.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6712.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6712.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6713.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6713.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6713.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6714.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6714.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6714.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6715.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6715.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6715.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6716.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6716.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6716.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6717.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6717.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6717.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6718.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6718.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6718.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6719.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6719.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6719.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6720.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6720.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6720.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6721.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6721.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6721.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6722.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6722.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6722.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6723.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6723.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6723.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6724.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6724.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6724.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6725.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6725.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6725.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6726.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6726.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6726.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6727.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6727.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6727.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6728.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6728.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6728.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6729.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6729.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6729.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6730.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6730.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6730.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6731.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6731.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6731.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6732.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6732.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6732.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6733.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6733.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6733.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6734.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6734.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6734.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6735.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6735.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6735.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6736.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6736.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6736.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6737.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6737.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6737.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6738.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6738.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6738.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6739.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6739.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6739.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6740.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6740.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6740.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6741.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6741.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6741.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6742.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6742.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6742.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6743.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6743.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6743.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6744.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6744.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6744.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6745.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6745.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6745.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6746.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6746.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6746.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6747.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6747.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6747.000000] [simulator/INFO] on2 could not receive any data +[on10:ON:(11) 6748.000000] [simulator/INFO] on10 is observing his environment... +[on2:ON:(3) 6748.000000] [simulator/INFO] on2 could not receive any data +[on7:ON:(8) 6748.000000] [simulator/INFO] on7 could not receive any data +[on10:ON:(11) 6749.000000] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6749.000000] [simulator/INFO] on7 could not receive any data +[on2:ON:(3) 6749.000000] [simulator/INFO] on2 could not receive any data +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 received data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 received a hint along with data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 6749.010320] [simulator/INFO] on0 sent data successfully +[on11:ON:(12) 6749.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 6749.020320] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 6749.020320] [simulator/INFO] on7 received a forwarded hint successfully +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 6749.020640] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 6749.020640] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 6750.020320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 6750.020320] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 6751.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6752.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6753.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6754.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6755.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6756.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6757.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6758.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6759.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6760.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6761.020320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6762.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6763.000000] [simulator/INFO] on12 wakes up +[on10:ON:(11) 6763.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6764.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6764.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6765.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6765.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6766.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6766.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6767.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6767.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6768.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6768.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6769.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6769.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6770.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6770.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6771.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6771.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6772.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6772.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6773.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6773.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6774.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6774.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6775.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6775.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6776.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6776.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6777.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6777.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6778.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6778.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6779.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6779.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6780.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6780.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6781.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6781.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6782.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6782.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6783.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6783.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6784.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6784.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6785.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6785.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6786.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6786.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6787.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6787.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6788.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6788.020320] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 6789.000000] [simulator/INFO] on12 could not receive any data +[on10:ON:(11) 6789.020320] [simulator/INFO] on10 is observing his environment... +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 received data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 received a hint along with data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 6789.030960] [simulator/INFO] on0 sent data successfully +[on7:ON:(8) 6789.030960] [simulator/INFO] on7 try to forward a hint +[on12:ON:(13) 6789.030960] [simulator/INFO] on12 received a forwarded hint successfully +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 6789.041280] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 6789.041280] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 6790.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6790.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6790.341280] [simulator/INFO] on2 fail to forward a hint +[on11:ON:(12) 6791.000000] [simulator/INFO] on11 fail to forward a hint +[on2:ON:(3) 6791.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6791.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6791.941280] [simulator/INFO] on2 fail to forward a hint +[on11:ON:(12) 6792.000000] [simulator/INFO] on11 is sleeping +[on2:ON:(3) 6793.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6793.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6793.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6794.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6794.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6795.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6796.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6796.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6796.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6798.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6798.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6798.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6799.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6799.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6799.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6801.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6801.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6801.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6802.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6802.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6803.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6804.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6804.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6804.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6806.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6806.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6806.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6807.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6807.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6807.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6809.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6809.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6809.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6810.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6810.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6811.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6812.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6812.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6812.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6814.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6814.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6814.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6815.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6815.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6815.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6817.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6817.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6817.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6818.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6818.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6819.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6820.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6820.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6820.741280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6822.041280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6822.041280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6822.341280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6823.641280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6823.641280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6823.941280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6825.241280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6825.241280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6825.541280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6826.841280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6826.841280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6827.141280] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6828.441280] [simulator/INFO] on2 could not receive any data +[on2:ON:(3) 6828.441280] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6828.741280] [simulator/INFO] on2 fail to forward a hint +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 received data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 received a hint along with data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 is observing his environment... +[on0:ON:(1) 6829.051600] [simulator/INFO] on0 sent data successfully +[on12:ON:(13) 6829.051600] [simulator/INFO] on12 try to forward a hint +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 6829.061920] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 6829.061920] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 6829.361920] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 received data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 received a hint along with data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 is observing his environment... +[on0:ON:(1) 6869.672240] [simulator/INFO] on0 sent data successfully +[on2:ON:(3) 6869.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6870.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6871.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6872.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6872.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6873.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6874.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6875.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6875.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6876.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6877.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6878.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6878.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6879.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6880.672240] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 6881.000000] [simulator/INFO] on7 fail to forward a hint +[on2:ON:(3) 6881.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6881.672240] [simulator/INFO] on2 try to forward a hint +[on7:ON:(8) 6882.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 6882.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6883.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6884.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6884.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6885.672240] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 6886.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6887.672240] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 6887.672240] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 6888.672240] [simulator/INFO] on2 fail to forward a hint +[on10:ON:(11) 6889.000000] [simulator/INFO] on10 fail to forward a hint +[on0:ON:(1) 6889.000000] [simulator/INFO] on0 is sleeping +[on2:ON:(3) 6889.672240] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 6890.000000] [simulator/INFO] on10 is sleeping +[on4:ON:(5) 6890.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 6891.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6892.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6893.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6894.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6895.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6896.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6897.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6898.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6899.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6900.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6901.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6902.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6903.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6904.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6905.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6906.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6907.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6908.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6909.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6910.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6911.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6912.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6913.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6914.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6915.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6916.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6917.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6918.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6919.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6920.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6921.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6922.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6923.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6924.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6925.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6926.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6927.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6928.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6928.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 6929.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6929.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6930.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6930.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6931.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6931.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6932.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6932.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6933.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6933.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6934.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6934.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6935.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6935.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6936.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6936.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6937.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6937.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6938.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6938.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6939.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6939.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6940.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6940.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6941.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6941.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6942.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6942.000000] [simulator/INFO] on3 could not receive any data +[on12:ON:(13) 6943.000000] [simulator/INFO] on12 fail to forward a hint +[on3:ON:(4) 6943.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6943.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6944.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6944.000000] [simulator/INFO] on3 could not receive any data +[on12:ON:(13) 6944.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 6945.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6945.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6946.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6946.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6947.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6947.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6948.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6948.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6949.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6949.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6950.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6950.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6951.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6951.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6952.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6952.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6953.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6953.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6954.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6954.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6955.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6955.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6956.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6956.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6957.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6957.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6958.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6958.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6959.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6959.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6960.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6960.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6961.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6961.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6962.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6962.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6963.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6963.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6964.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6964.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6965.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6965.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6966.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6966.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6967.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6967.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6968.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6968.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6969.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6969.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6970.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6970.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6971.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6971.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6972.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6972.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6973.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6973.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6974.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6974.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6975.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6975.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6976.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6976.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6977.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6977.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6978.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6978.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6979.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6979.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6980.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6980.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6981.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6981.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6982.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6982.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6983.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6983.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6984.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6984.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6985.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6985.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6986.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6986.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6987.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6987.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6988.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6988.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6989.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6989.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6990.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6990.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6991.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6991.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6992.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6992.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6993.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6993.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6994.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6994.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6995.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6995.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6996.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6996.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6997.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6997.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 6998.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 6998.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 6999.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 6999.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7000.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7000.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7001.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7001.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7002.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7002.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7003.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7003.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7004.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7004.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7005.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7005.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7006.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7006.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7007.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7007.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7008.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7008.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7009.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7009.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7010.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7010.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7011.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7011.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7012.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7012.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7013.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7013.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7014.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7014.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7015.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7015.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7016.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7016.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7017.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7017.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7018.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7018.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7019.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7019.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7020.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7020.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7021.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7021.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7022.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7022.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7023.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7023.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7024.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7024.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7025.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7025.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7026.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7026.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7027.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7027.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7028.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7028.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7029.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7029.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7030.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7030.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7031.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7031.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7032.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7032.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7033.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7033.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7034.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7034.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7035.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7035.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7036.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7036.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7037.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7037.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7038.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7038.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7039.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7039.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7040.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7040.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7041.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7041.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7042.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7042.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7043.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7043.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7044.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7044.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7045.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7045.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7046.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7046.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7047.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7047.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7048.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7048.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7049.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7049.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7050.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7050.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7051.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7051.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7052.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7052.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7053.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7053.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7054.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7054.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7055.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7055.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7056.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7056.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7057.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7057.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7058.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7058.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7059.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7059.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7060.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7060.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7061.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7061.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7062.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7062.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7063.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7063.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7064.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7064.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7065.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7065.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7066.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7066.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7067.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7067.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7068.000000] [simulator/INFO] on4 could not receive any data +[on3:ON:(4) 7068.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7069.000000] [simulator/INFO] on3 could not receive any data +[on4:ON:(5) 7069.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7070.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 7070.000000] [simulator/INFO] on4 is sleeping +[on3:ON:(4) 7070.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7071.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7072.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7073.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7074.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7075.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7076.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7077.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7078.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7079.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7080.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7081.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7082.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7083.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7084.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7085.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7086.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7087.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7088.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7089.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7090.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7091.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7092.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7093.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7094.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7095.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7096.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7097.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7098.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7099.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7100.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7101.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7102.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7103.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7104.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7105.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7106.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7107.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7108.000000] [simulator/INFO] on3 could not receive any data +[on3:ON:(4) 7108.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 7336.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 7337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7431.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7432.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7433.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7434.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7435.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7436.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7437.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7438.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7439.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7440.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7441.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7442.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7443.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7444.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7445.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7446.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7447.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7448.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7449.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7450.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7451.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7452.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7453.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7454.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7455.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7456.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7457.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7458.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7459.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7460.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7461.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7462.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7463.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7464.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7465.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7466.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7467.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7468.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7469.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7470.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7471.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7472.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7473.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7474.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7475.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7476.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7477.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7478.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7479.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7480.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7481.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7482.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7483.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7484.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7485.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7486.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7487.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7488.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7489.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7490.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7491.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7492.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7493.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7494.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7495.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7496.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7497.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7498.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7499.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7500.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7501.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7502.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7503.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7504.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7505.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7506.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7507.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7508.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7509.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7510.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7511.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7512.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7513.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7514.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7515.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7516.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 7516.000000] [simulator/INFO] on1 is sleeping +[on7:ON:(8) 7556.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 7556.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 7556.000000] [simulator/INFO] on0 wakes up +[on2:ON:(3) 7556.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 7556.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 7556.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 7556.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 7557.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 7557.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 7557.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 received a hint successfully +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 7557.010320] [simulator/INFO] on12 try to forward a hint +[on0:ON:(1) 7557.010320] [simulator/INFO] on0 sent a hint successfully +[on2:ON:(3) 7558.010320] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 7558.010320] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 received a hint successfully +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 7558.020640] [simulator/INFO] on2 try to forward a hint +[on0:ON:(1) 7558.020640] [simulator/INFO] on0 sent a hint successfully +[on7:ON:(8) 7559.020640] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 received a hint successfully +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7559.030960] [simulator/INFO] on7 try to forward a hint +[on0:ON:(1) 7559.030960] [simulator/INFO] on0 sent a hint successfully +[on7:ON:(8) 7560.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7561.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7561.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7562.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7563.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7563.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7564.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7565.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7565.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7566.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7567.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7567.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7568.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7569.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7569.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7570.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7571.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7571.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7572.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7573.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7573.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7574.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7575.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7575.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7576.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7577.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7577.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7578.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7579.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7579.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7580.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7581.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7581.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7582.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7583.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7583.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7584.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7585.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7585.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7586.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7587.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7587.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7588.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7589.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7589.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7590.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7591.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7591.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7592.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7593.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7593.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7594.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7595.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7595.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7596.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7597.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7597.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7598.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7599.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7599.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7600.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7601.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7601.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7602.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7603.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7603.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7604.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7605.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7605.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7606.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7607.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7607.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7608.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7609.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7609.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7610.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7611.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7611.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7612.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7613.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7613.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7614.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7615.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7615.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7616.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7617.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7617.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7618.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7619.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7619.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7620.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7621.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7621.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7622.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7623.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7623.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7624.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7625.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7625.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7626.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7627.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7627.030960] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 7628.030960] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 7629.030960] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 7629.030960] [simulator/INFO] on7 try to forward a hint +[on10:ON:(11) 7630.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 7630.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7631.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 7631.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 7632.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7633.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7633.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7634.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7635.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7635.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7636.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7637.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7637.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7638.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7639.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7639.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7640.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7641.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7641.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7642.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7643.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7643.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7644.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7645.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7645.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7646.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7647.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7647.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7648.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7649.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7649.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7650.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7651.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7651.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7652.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7653.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7653.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7654.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7655.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7655.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7656.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7657.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7657.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7658.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7659.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7659.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7660.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7661.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7661.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7662.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7663.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7663.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7664.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7665.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7665.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7666.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7667.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7667.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7668.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7669.000000] [simulator/INFO] on3 wakes up +[on10:ON:(11) 7669.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7669.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7670.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7671.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7671.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7672.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7673.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7673.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7674.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7675.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7675.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7676.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7677.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7677.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7678.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7679.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7679.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7680.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7681.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7681.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7682.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7683.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7683.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7684.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7685.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7685.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7686.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7687.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7687.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7688.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7689.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7689.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7690.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7691.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7691.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7692.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7693.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7693.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7694.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7695.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7695.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7696.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7697.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7697.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7698.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7699.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7699.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7700.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7701.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7701.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7702.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7703.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7703.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7704.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7705.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7705.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7706.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7707.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7707.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7708.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7709.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 received data successfully +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 received a hint along with data successfully +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 7709.010320] [simulator/INFO] on0 sent data successfully +[on10:ON:(11) 7709.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7709.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7710.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7710.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7711.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7711.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7711.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7712.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7712.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7712.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7713.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7713.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7713.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7714.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7714.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7715.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7715.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7715.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7715.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7716.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7716.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7717.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7717.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7717.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7718.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7718.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7718.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7719.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7719.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7719.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7720.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7720.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7721.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7721.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7721.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7721.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7722.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7722.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7723.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7723.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7723.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7724.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7724.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7724.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7725.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7725.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7725.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7726.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7726.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7727.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7727.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7727.010320] [simulator/INFO] on10 try to forward a hint +[on3:ON:(4) 7727.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7728.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7728.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 7729.010320] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 7729.010320] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 7729.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 7730.010320] [simulator/INFO] on10 fail to forward a hint +[on3:ON:(4) 7730.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7730.010320] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 7731.010320] [simulator/INFO] on3 fail to forward a hint +[on10:ON:(11) 7731.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 7731.010320] [simulator/INFO] on10 try to forward a hint +[on11:ON:(12) 7732.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 7732.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 7732.010320] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 7733.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 received a hint successfully +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 7733.010320] [simulator/INFO] on3 try to forward a hint +[on0:ON:(1) 7733.010320] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 7734.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7734.020640] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 7734.020640] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 7735.020640] [simulator/INFO] on11 fail to forward a hint +[on12:ON:(13) 7736.000000] [simulator/INFO] on12 fail to forward a hint +[on2:ON:(3) 7736.000000] [simulator/INFO] on2 fail to forward a hint +[on7:ON:(8) 7736.000000] [simulator/INFO] on7 fail to forward a hint +[on0:ON:(1) 7736.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 7736.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7736.020640] [simulator/INFO] on11 try to forward a hint +[on7:ON:(8) 7737.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 7737.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 7737.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 7737.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7738.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7738.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7739.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7740.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7740.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7741.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7742.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7742.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7743.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7744.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7744.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7745.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7746.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7746.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7747.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7748.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7748.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7749.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7750.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7750.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7751.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7752.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7752.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7753.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7754.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7754.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7755.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7756.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7756.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7757.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7758.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7758.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7759.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7760.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7760.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7761.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7762.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7762.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7763.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7764.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7764.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7765.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7766.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7766.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7767.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7768.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7768.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7769.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7770.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7770.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7771.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7772.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7772.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7773.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7774.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7774.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7775.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7776.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7776.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7777.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7778.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7778.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7779.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7780.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7780.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7781.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7782.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7782.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7783.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7784.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7784.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7785.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7786.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7786.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7787.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7788.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7788.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7789.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7790.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7790.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7791.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7792.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7792.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7793.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7794.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7794.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7795.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7796.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7796.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7797.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7798.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7798.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7799.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7800.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7800.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7801.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7802.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7802.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7803.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7804.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7804.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7805.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7806.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7806.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7807.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7808.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7808.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7809.020640] [simulator/INFO] on11 fail to forward a hint +[on10:ON:(11) 7810.000000] [simulator/INFO] on10 fail to forward a hint +[on11:ON:(12) 7810.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7810.020640] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 7811.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 7811.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7812.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7812.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7813.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7814.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7814.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7815.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7816.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7816.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7817.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7818.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7818.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7819.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7820.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7820.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7821.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7822.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7822.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7823.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7824.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7824.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7825.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7826.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7826.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7827.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7828.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7828.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7829.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7830.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7830.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7831.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7832.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7832.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7833.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7834.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7834.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7835.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7836.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7836.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7837.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7838.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7838.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7839.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7840.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7840.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7841.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7842.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7842.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7843.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7844.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7844.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7845.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7846.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7846.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7847.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7848.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7848.020640] [simulator/INFO] on11 try to forward a hint +[on3:ON:(4) 7849.000000] [simulator/INFO] on3 fail to forward a hint +[on11:ON:(12) 7849.020640] [simulator/INFO] on11 fail to forward a hint +[on3:ON:(4) 7850.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 7850.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7850.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7851.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7852.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7852.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7853.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7854.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7854.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7855.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7856.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7856.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7857.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7858.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7858.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7859.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7860.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7860.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7861.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7862.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7862.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7863.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7864.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7864.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7865.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7866.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7866.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7867.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7868.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7868.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7869.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7870.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7870.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7871.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7872.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7872.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7873.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7874.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7874.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7875.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7876.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7876.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7877.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7878.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7878.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7879.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7880.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7880.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7881.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7882.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7882.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7883.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7884.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7884.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7885.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7886.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7886.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7887.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7888.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7888.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7889.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7890.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7890.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7891.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7892.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7892.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7893.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7894.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7894.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7895.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7896.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7896.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7897.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7898.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7898.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7899.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7900.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7900.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7901.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7902.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7902.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7903.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7904.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7904.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7905.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7906.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7906.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7907.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7908.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7908.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7909.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7910.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 7910.020640] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 7911.020640] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 7912.020640] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 7947.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 7948.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7949.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7950.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7951.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7952.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7953.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7954.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7955.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7956.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7957.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7958.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7959.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7960.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7961.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7962.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7963.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7964.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7965.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7966.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7967.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7968.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7969.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7970.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7971.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7972.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7973.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7974.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7975.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7976.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7977.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7978.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7979.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7980.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7981.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7982.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7983.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7984.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7985.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7986.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7987.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7988.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7989.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7990.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7991.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7992.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7993.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7994.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7995.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7996.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7997.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7998.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 7999.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8000.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8001.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8002.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8003.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8004.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8005.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8006.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8007.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8008.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8009.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8010.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8011.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8012.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8013.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8014.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8015.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8016.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8017.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8018.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8019.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8020.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8021.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8022.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8023.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8024.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8025.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8026.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8027.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8028.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8029.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8030.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8031.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8032.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8033.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8034.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8035.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8036.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8037.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8038.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8039.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8040.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8041.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8042.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8043.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8044.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8045.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8046.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8047.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8048.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8049.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8050.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8051.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8052.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8053.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8054.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8055.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8056.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8057.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8058.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8059.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8060.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8061.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8062.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8063.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8064.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8065.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8066.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8067.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8068.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8069.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8070.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8071.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8072.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8073.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8074.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8075.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8076.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8077.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8078.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8079.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8080.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8081.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8082.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8083.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8084.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8085.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8086.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8087.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8088.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8089.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8090.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8091.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8092.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8093.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8094.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8095.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8096.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8097.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8098.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8099.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8100.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8101.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8102.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8103.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8104.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8105.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8106.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8107.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8108.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8109.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8110.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8111.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8112.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8113.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8114.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8115.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8116.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8117.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8118.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8119.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8120.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8121.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8122.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8123.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8124.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8125.000000] [simulator/INFO] on8 could not receive any data +[on4:ON:(5) 8125.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 8126.000000] [simulator/INFO] on4 could not receive any data +[on8:ON:(9) 8126.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8127.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 8127.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 8127.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8128.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8129.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8130.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8131.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8132.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8133.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8134.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8135.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8136.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8137.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8138.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8139.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8140.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8141.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8142.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8143.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8144.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8145.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8146.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8147.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8148.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8149.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8150.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8151.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8152.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8153.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8154.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8155.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8156.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8157.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8158.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8159.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8160.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8161.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8162.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8163.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8164.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8165.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8166.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8167.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8168.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8169.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8170.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8171.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8172.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8173.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8174.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8175.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8176.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8177.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8178.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8179.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8180.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8181.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8182.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8183.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8184.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8185.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8186.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8187.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8188.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8189.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8190.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8191.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8192.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8193.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8194.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8195.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8196.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8197.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8198.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8199.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8200.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8201.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8202.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8203.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8204.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8205.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8206.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8207.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8208.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8209.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8210.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8211.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8212.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8213.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8214.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8215.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8216.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8217.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8218.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8219.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8220.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8221.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8222.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8223.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8224.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8225.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8226.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8227.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8228.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8229.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8230.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8231.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8232.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8233.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8234.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8235.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8236.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8237.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8238.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8239.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8240.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8241.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8242.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8243.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8244.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8245.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8246.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8247.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8248.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8249.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8250.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8251.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8252.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8253.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8254.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8255.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8256.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8257.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8258.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8259.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8260.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8261.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8262.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8263.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8264.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8265.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8266.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8267.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8268.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8269.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8270.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8271.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8272.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8273.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8274.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8275.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8276.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8277.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8278.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8279.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8280.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8281.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8282.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8283.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8284.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8285.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8286.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8287.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8288.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8289.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8290.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8291.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8292.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8293.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8294.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8295.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8296.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8297.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8298.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8299.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8300.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8301.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8302.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8303.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8304.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8305.000000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 8305.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 8559.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 8560.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8561.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8562.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8563.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8564.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8565.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8566.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8567.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8568.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8569.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8570.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8571.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8572.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8573.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8574.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8575.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8576.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8577.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8578.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8579.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8580.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8581.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8582.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8583.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8584.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8585.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8586.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8587.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8588.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8589.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8590.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8591.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8592.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8593.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8594.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8595.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8596.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8597.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8598.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8599.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8600.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8601.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8602.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8603.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8604.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8605.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8606.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8607.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8608.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8609.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8610.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8611.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8612.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8613.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8614.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8615.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8616.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8617.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8618.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8619.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8620.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8620.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 8621.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8621.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8622.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8622.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8623.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8623.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8624.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8624.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8625.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8625.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8626.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8626.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8627.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8627.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8628.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8628.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8629.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8629.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8630.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8630.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8631.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8631.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8632.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8632.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8633.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8633.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8634.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8634.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8635.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8635.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8636.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8636.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8637.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8637.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8638.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8638.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8639.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8639.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8640.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8640.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8641.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8641.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8642.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8642.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8643.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8643.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8644.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8644.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8645.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8645.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8646.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8646.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8647.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8647.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8648.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8648.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8649.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8649.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8650.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8650.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8651.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8651.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8652.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8652.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8653.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8653.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8654.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8654.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8655.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8655.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8656.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8656.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8657.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8657.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8658.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8658.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8659.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8659.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8660.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8660.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8661.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8661.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8662.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8662.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8663.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8663.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8664.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8664.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8665.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8665.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8666.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8666.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8667.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8667.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8668.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8668.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8669.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8669.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8670.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8670.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8671.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8671.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8672.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8672.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8673.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8673.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8674.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8674.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8675.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8675.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8676.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8676.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8677.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8677.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8678.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8678.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8679.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8679.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8680.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8680.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8681.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8681.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8682.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8682.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8683.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8683.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8684.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8684.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8685.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8685.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8686.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8686.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8687.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8687.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8688.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8688.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8689.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8689.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8690.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8690.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8691.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8691.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8692.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8692.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8693.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8693.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8694.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8694.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8695.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8695.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8696.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8696.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8697.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8697.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8698.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8698.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8699.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8699.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8700.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8700.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8701.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8701.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8702.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8702.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8703.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8703.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8704.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8704.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8705.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8705.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8706.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8706.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8707.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8707.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8708.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8708.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8709.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8709.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8710.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8710.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8711.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8711.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8712.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8712.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8713.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8713.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8714.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8714.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8715.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8715.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8716.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8716.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8717.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8717.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8718.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8718.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8719.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8719.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8720.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8720.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8721.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8721.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8722.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8722.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8723.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8723.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8724.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8724.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8725.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8725.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8726.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8726.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8727.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8727.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8728.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8728.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8729.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8729.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8730.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8730.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8731.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8731.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8732.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8732.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8733.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8733.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8734.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8734.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8735.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8735.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8736.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8736.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8737.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8737.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8738.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 8738.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8739.000000] [simulator/INFO] on5 could not receive any data +[on9:ON:(10) 8739.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 8739.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 8740.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8741.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8742.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8743.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8744.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8745.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8746.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8747.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8748.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8749.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8750.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8751.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8752.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8753.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8754.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8755.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8756.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8757.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8758.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8759.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8760.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8761.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8762.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8763.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8764.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8765.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8766.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8767.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8768.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8769.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8770.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8771.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8772.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8773.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8774.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8775.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8776.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8777.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8778.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8779.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8780.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8781.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8782.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8783.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8784.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8785.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8786.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8787.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8788.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8789.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8790.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8791.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8792.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8793.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8794.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8795.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8796.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8797.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8798.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8799.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8800.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 8800.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 9448.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 9449.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9450.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9451.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9452.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9453.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9454.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9455.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9456.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9457.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9458.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9459.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9460.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9461.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9462.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9463.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9464.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9465.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9466.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9467.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9468.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9469.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9470.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9471.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9472.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9473.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9474.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9475.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9476.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9477.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9478.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9479.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9480.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9481.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9482.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9483.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9484.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9485.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9486.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9487.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9488.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9489.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9490.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9491.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9492.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9493.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9494.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9495.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9496.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9497.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9498.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9499.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9500.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9501.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9502.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9503.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9504.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9505.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9506.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9507.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9508.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9509.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9510.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9511.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9512.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9513.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9514.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9515.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9516.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9517.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9518.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9519.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9520.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9521.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9522.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9523.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9524.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9525.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9526.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9527.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9528.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9529.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9530.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9531.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9532.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9533.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9534.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9535.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9536.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9537.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9538.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9539.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9540.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9541.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9542.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9543.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9544.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9545.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9546.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9547.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9548.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9549.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9550.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9551.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9552.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9553.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9554.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9555.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9556.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9557.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9558.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9559.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9560.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9561.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9562.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9563.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9564.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9565.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9566.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9567.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9568.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9569.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9570.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9571.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9572.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9573.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9574.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9575.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9576.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9577.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9578.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9579.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9580.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9581.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9582.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9583.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9584.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9585.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9586.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9587.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9588.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9589.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9590.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9591.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9592.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9593.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9594.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9595.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9596.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9597.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9598.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9599.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9600.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9601.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9602.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9603.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9604.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9605.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9606.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9607.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9608.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9609.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9610.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9611.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9612.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9613.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 9628.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 9835.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 9835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9836.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9837.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9839.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9840.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9842.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9843.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9845.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9846.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9848.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9849.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9851.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9852.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9854.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9855.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9857.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9858.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9860.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9861.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9863.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9864.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9866.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9867.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9869.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9870.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9872.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9873.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9875.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9876.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9878.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9878.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9879.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9880.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9881.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9882.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9884.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9884.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9885.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9886.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9887.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9888.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9890.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9890.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9891.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9892.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9893.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9894.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9896.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9896.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9897.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9898.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9899.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9900.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9902.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9902.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9903.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9904.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9905.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9906.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9908.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9908.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9909.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9910.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9911.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9912.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9914.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9914.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9915.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9916.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9917.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9918.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9920.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9920.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9921.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9922.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9923.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9923.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9924.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9925.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9926.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9927.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9929.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9930.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9932.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9933.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9935.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9936.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9938.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9939.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9941.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9942.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9944.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9945.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9947.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9948.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9950.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9951.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9953.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9954.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9956.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9957.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9959.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9960.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9962.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9963.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9965.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9966.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9968.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9969.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9971.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9972.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9974.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9975.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9977.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9978.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9980.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9981.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9983.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9984.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9986.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9987.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9989.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9990.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9992.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9993.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9995.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9995.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9996.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 9997.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9998.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 9998.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 9999.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10000.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10001.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10001.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10002.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10003.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10004.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10004.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10005.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10006.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10007.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10008.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10010.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10010.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10011.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10012.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 10013.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 10014.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 10015.000000] [simulator/INFO] on12 is sleeping +[on2:ON:(3) 10076.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 10076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10077.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10078.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10080.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10081.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10083.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10084.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10086.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10087.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10089.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10090.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10092.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10093.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10095.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10096.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10098.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10099.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10101.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10102.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10104.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10105.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10107.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10108.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10110.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10111.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10113.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10114.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10116.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10117.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10119.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10120.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10122.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10123.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10125.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10126.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10128.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10129.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10131.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10132.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10134.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10135.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10137.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10138.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10140.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10141.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10143.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10144.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10146.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10147.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10149.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10150.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10152.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10153.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10155.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10156.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10158.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10159.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10161.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10162.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10164.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10165.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10167.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10168.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10170.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10171.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10173.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10174.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10176.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10177.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10179.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10180.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10182.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10183.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10185.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10186.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10188.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10189.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10191.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10192.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10194.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10195.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10197.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10198.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10200.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10201.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10203.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10204.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10206.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10207.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10209.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10210.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10212.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10213.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10215.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10216.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10218.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10219.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10221.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10222.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10224.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10225.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10227.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10228.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10230.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10231.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10233.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 10234.000000] [simulator/INFO] on2 fail to forward a hint +[on2:ON:(3) 10235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 10236.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 10236.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 10236.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 10236.000000] [simulator/INFO] on2 try to forward a hint +[on7:ON:(8) 10237.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10237.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10238.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10239.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10240.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10241.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10243.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10243.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10244.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10245.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10246.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10247.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10249.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10249.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10250.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10251.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10252.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10253.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10255.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10255.000000] [simulator/INFO] on7 try to forward a hint +[on2:ON:(3) 10256.000000] [simulator/INFO] on2 fail to forward a hint +[on7:ON:(8) 10256.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10257.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 10257.000000] [simulator/INFO] on2 is sleeping +[on7:ON:(8) 10258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10258.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10259.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10261.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10261.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10262.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10263.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10264.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10265.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10267.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10267.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10268.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10269.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10270.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10271.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10273.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10273.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10274.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10275.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10276.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10277.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10279.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10279.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10280.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10281.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10282.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10283.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10285.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10285.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10286.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10287.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10288.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10288.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10289.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10290.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10291.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10291.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10292.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10293.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10294.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10294.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10295.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10296.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10297.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10297.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10298.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10299.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10300.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10300.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10301.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10302.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10303.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10303.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10304.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10305.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10306.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10306.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10307.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10308.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10309.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10309.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10310.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10311.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10312.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10312.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10313.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10314.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10315.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10315.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10316.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10317.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10318.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10318.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10319.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10320.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10321.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10321.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10322.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10323.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10324.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10324.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10325.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10326.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10327.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10327.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10328.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10329.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10330.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10330.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10331.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10332.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10333.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10333.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10334.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10335.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10336.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10336.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10337.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10338.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10339.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10339.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10340.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10341.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10342.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10342.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10343.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10344.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10345.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10345.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10346.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10347.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10348.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10348.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10349.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10350.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10351.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10351.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10352.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10353.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10354.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10354.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10355.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10356.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10357.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10357.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10358.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10359.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10360.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10360.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10361.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10362.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10363.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10363.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10364.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10365.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10366.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10366.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10367.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10368.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10369.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10370.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10372.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10372.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10373.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10374.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10375.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10376.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10378.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10378.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10379.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10380.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10381.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10382.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10384.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10384.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10385.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10386.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10387.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10388.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10390.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10390.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10391.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10392.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10393.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10394.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10396.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10396.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10397.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10398.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10399.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10400.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10402.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10402.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10403.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10404.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10405.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10406.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10408.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10408.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10409.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10410.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10411.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10412.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10414.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 10414.000000] [simulator/INFO] on7 try to forward a hint +[on7:ON:(8) 10415.000000] [simulator/INFO] on7 fail to forward a hint +[on7:ON:(8) 10416.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 11304.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 11304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11305.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11306.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11308.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11308.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11309.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11310.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11311.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11312.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11314.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11314.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11315.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11316.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11317.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11318.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11320.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11320.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11321.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11322.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11323.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11324.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11326.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11326.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11327.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11328.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11329.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11330.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11332.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11332.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11333.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11334.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11335.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11336.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11338.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11338.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11339.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11340.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11341.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11342.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11344.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11345.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11347.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11348.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11350.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11351.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11353.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11354.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11356.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11357.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11359.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11360.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11362.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11363.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11365.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11366.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11368.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11369.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11371.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11372.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11374.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11375.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11377.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11378.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11380.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11381.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11383.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11384.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11386.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11387.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11389.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11390.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11392.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11393.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11395.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11396.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11398.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11399.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11401.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11402.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11404.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11405.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11407.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11408.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11410.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11411.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11413.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11414.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11416.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11417.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11419.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11420.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11422.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11423.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11425.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11426.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11428.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11429.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11431.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11432.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11434.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11435.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11437.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11438.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11440.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11441.000000] [simulator/INFO] on3 fail to forward a hint +[on7:ON:(8) 11441.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 11441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 11442.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 11442.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 11442.000000] [simulator/INFO] on7 try to forward a hint +[on3:ON:(4) 11443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11443.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11444.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11446.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11447.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11449.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11450.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11452.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11453.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11455.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11456.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11458.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11459.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11461.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11462.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11464.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11465.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11467.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11468.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11470.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11471.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11473.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11474.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11476.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11477.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11479.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11480.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 11482.000000] [simulator/INFO] on3 try to forward a hint +[on3:ON:(4) 11483.000000] [simulator/INFO] on3 fail to forward a hint +[on3:ON:(4) 11484.000000] [simulator/INFO] on3 is sleeping +[on9:ON:(10) 11552.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 11553.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11554.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11555.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11556.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11557.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11558.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11559.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11560.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11561.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11562.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11563.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11564.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11565.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11566.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11567.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11568.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11569.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11570.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11571.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11572.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11573.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11574.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11575.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11576.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11577.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11578.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11579.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11580.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11581.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11582.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11583.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11584.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11585.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11586.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11587.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11588.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11589.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11590.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11591.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11592.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11593.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11594.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11595.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11596.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11597.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11598.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11599.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11600.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11601.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11602.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11603.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11604.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11605.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11606.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11607.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11608.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11609.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11610.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11611.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11612.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11613.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11614.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11615.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11616.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11617.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11618.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11619.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11620.000000] [simulator/INFO] on9 could not receive any data +[on7:ON:(8) 11621.000000] [simulator/INFO] on7 fail to forward a hint +[on9:ON:(10) 11621.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11622.000000] [simulator/INFO] on9 could not receive any data +[on7:ON:(8) 11622.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 11623.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11624.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11625.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11626.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11627.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11628.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11629.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11630.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11631.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11632.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11633.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11634.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11635.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11636.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11637.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11638.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11639.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11640.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11641.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11642.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11643.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11644.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11645.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11646.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11647.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11648.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11649.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11650.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11651.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11652.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11653.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11654.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11655.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11656.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11657.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11658.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11659.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11660.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11661.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11662.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11663.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11664.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11665.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11666.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11667.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11668.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11669.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11670.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11671.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11672.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11673.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11674.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11675.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11676.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11677.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11678.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11679.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11680.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11681.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11682.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11683.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11684.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11685.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11686.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11687.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11688.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11689.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11690.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11691.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11692.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11693.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11694.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11695.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11696.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11697.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11698.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11699.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11700.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11701.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11702.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11703.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11704.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11705.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11706.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11707.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11708.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11709.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11710.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11711.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11712.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11713.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11714.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11715.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11716.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11717.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11718.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11719.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11720.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11721.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11722.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11723.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11724.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11725.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11726.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11727.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11727.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 11728.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11728.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11729.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11729.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11730.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11730.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11731.000000] [simulator/INFO] on9 could not receive any data +[on6:ON:(7) 11731.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11732.000000] [simulator/INFO] on6 could not receive any data +[on9:ON:(10) 11732.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 11732.000000] [simulator/INFO] on9 is sleeping +[on6:ON:(7) 11733.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11734.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11735.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11736.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11737.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11738.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11739.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11740.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11741.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11742.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11743.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11744.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11745.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11746.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11747.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11748.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11749.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11750.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11751.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11752.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11753.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11754.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11755.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11756.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11757.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11758.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11759.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11760.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11761.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11762.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11763.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11764.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11765.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11766.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11767.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11768.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11769.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11770.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11771.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11772.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11773.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11774.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11775.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11776.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11777.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11778.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11779.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11780.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11781.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11782.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11783.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11784.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11785.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11786.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11787.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11788.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11789.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11790.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11791.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11792.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11793.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11794.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11795.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11796.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11797.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11798.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11799.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11800.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11801.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11802.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11803.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11804.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11805.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11806.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11807.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11808.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11809.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11810.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11811.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11812.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11813.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11814.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11815.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11816.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11817.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11818.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11819.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11820.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11821.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11822.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11823.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11824.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11825.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11826.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11827.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11828.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11829.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11830.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11831.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11832.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11833.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11834.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11835.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11836.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11837.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11838.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11839.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11840.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11841.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11842.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11843.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11844.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11845.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11846.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11847.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11848.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11849.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11850.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11851.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11852.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11853.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11854.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11855.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11856.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11857.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11858.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11859.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11860.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11861.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11862.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11863.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11864.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11865.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11866.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11867.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11868.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11869.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11869.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 11870.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11870.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11871.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11871.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11872.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11872.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11873.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11873.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11874.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11874.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11875.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11875.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11876.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11876.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11877.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11877.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11878.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11878.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11879.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11879.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11880.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11880.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11881.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11881.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11882.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11882.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11883.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11883.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11884.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11884.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11885.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11885.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11886.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11886.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11887.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11887.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11888.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11888.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11889.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11889.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11890.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11890.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11891.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11891.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11892.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11892.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11893.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11893.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11894.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11894.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11895.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11895.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11896.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11896.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11897.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11897.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11898.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11898.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11899.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11899.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11900.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11900.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11901.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11901.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11902.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11902.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11903.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11903.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11904.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11904.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11905.000000] [simulator/INFO] on6 could not receive any data +[on5:ON:(6) 11905.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11906.000000] [simulator/INFO] on5 could not receive any data +[on6:ON:(7) 11906.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11907.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 11907.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 11907.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11908.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11909.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11910.000000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11911.000000] [simulator/INFO] on5 could not receive any data +[on2:ON:(3) 11911.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 11911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 11912.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11912.000000] [simulator/INFO] on5 could not receive any data +[on2:ON:(3) 11912.000000] [simulator/INFO] on2 try to forward a hint +[on2:ON:(3) 11912.010000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11912.010000] [simulator/INFO] on5 received a forwarded hint successfully +[on2:ON:(3) 11913.010000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 11913.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11913.010000] [simulator/INFO] on5 try to forward a hint +[on2:ON:(3) 11913.010000] [simulator/INFO] on2 try to forward a hint +[on5:ON:(6) 11913.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11914.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11914.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11914.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11916.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11916.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11916.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11917.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11917.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11918.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11919.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11919.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11919.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11921.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11921.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11921.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11922.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11922.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11922.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11924.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11924.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11924.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11925.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11925.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11926.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11927.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11927.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11927.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11929.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11929.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11929.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11930.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11930.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11930.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11932.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11932.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11932.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11933.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11933.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11934.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11935.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11935.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11935.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11937.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11937.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11937.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11938.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11938.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11938.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11940.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11940.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11940.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11941.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11941.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11942.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11943.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11943.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11943.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11945.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11945.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11945.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11946.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11946.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11946.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11948.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11948.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11948.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11949.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11949.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11950.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11951.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11951.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11951.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11953.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11953.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11953.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11954.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11954.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11954.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11956.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11956.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11956.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11957.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11957.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11958.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11959.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11959.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11959.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11961.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11961.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11961.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11962.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11962.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11962.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11964.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11964.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11964.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11965.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11965.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11966.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11967.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11967.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11967.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11969.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11969.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11969.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11970.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11970.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11970.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11972.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11972.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11972.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11973.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11973.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11974.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11975.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11975.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11975.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11977.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11977.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11977.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11978.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11978.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11978.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11980.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11980.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11980.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11981.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11981.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11982.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11983.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11983.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11983.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11985.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11985.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11985.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11986.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11986.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11986.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11988.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11988.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11988.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11989.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11989.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11990.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11991.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11991.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11991.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11993.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11993.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11993.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11994.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11994.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11994.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11996.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11996.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11996.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11997.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11997.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11998.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 11999.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 11999.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 11999.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12001.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12001.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12001.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12002.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12002.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12002.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12004.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12004.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12004.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12005.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12005.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12006.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12007.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12007.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12007.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12009.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12009.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12009.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12010.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12010.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12010.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12012.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12012.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12012.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12013.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12013.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12014.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12015.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12015.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12015.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12017.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12017.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12017.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12018.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12018.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12018.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12020.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12020.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12020.510000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12021.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12021.810000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12022.110000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12023.410000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12023.410000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12023.710000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12025.010000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12025.010000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12025.310000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12026.610000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12026.610000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12026.910000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12028.210000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12028.210000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12028.510000] [simulator/INFO] on5 fail to forward a hint +[on4:ON:(5) 12029.000000] [simulator/INFO] on4 wakes up +[on5:ON:(6) 12029.810000] [simulator/INFO] on5 could not receive any data +[on5:ON:(6) 12029.810000] [simulator/INFO] on5 try to forward a hint +[on2:ON:(3) 12029.810000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 12029.810000] [simulator/INFO] on4 received a forwarded hint successfully +[on4:ON:(5) 12030.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12030.810000] [simulator/INFO] on4 try to forward a hint +[on2:ON:(3) 12030.810000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 12030.810000] [simulator/INFO] on2 try to forward a hint +[on4:ON:(5) 12031.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12032.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12032.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12032.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12034.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12034.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12034.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12035.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12035.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12035.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12037.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12037.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12037.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12038.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12038.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12039.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12040.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12040.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12040.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12042.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12042.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12042.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12043.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12043.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12043.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12045.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12045.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12045.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12046.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12046.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12047.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12048.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12048.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12048.710000] [simulator/INFO] on4 fail to forward a hint +[on5:ON:(6) 12049.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 12049.300000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 12050.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12050.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12050.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12051.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12051.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12051.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12053.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12053.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12053.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12054.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12054.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12055.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12056.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12056.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12056.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12058.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12058.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12058.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12059.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12059.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12059.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12061.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12061.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12061.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12062.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12062.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12063.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12064.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12064.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12064.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12066.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12066.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12066.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12067.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12067.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12067.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12069.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12069.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12069.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12070.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12070.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12071.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12072.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12072.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12072.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12074.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12074.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12074.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12075.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12075.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12075.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12077.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12077.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12077.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12078.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12078.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12079.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12080.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12080.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12080.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12082.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12082.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12082.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12083.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12083.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12083.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12085.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12085.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12085.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12086.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12086.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12087.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12088.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12088.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12088.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12090.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12090.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12090.310000] [simulator/INFO] on4 fail to forward a hint +[on2:ON:(3) 12091.000000] [simulator/INFO] on2 fail to forward a hint +[on4:ON:(5) 12091.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12091.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12091.910000] [simulator/INFO] on4 fail to forward a hint +[on2:ON:(3) 12092.000000] [simulator/INFO] on2 is sleeping +[on4:ON:(5) 12093.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12093.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12093.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12094.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12094.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12095.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12096.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12096.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12096.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12098.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12098.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12098.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12099.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12099.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12099.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12101.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12101.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12101.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12102.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12102.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12103.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12104.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12104.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12104.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12106.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12106.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12106.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12107.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12107.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12107.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12109.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12109.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12109.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12110.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12110.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12111.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12112.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12112.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12112.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12114.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12114.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12114.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12115.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12115.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12115.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12117.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12117.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12117.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12118.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12118.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12119.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12120.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12120.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12120.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12122.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12122.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12122.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12123.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12123.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12123.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12125.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12125.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12125.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12126.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12126.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12127.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12128.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12128.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12128.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12130.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12130.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12130.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12131.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12131.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12131.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12133.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12133.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12133.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12134.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12134.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12135.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12136.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12136.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12136.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12138.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12138.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12138.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12139.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12139.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12139.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12141.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12141.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12141.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12142.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12142.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12143.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12144.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12144.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12144.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12146.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12146.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12146.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12147.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12147.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12147.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12149.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12149.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12149.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12150.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12150.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12151.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12152.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12152.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12152.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12154.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12154.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12154.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12155.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12155.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12155.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12157.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12157.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12157.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12158.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12158.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12159.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12160.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12160.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12160.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12162.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12162.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12162.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12163.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12163.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12163.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12165.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12165.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12165.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12166.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12166.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12167.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12168.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12168.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12168.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12170.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12170.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12170.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12171.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12171.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12171.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12173.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12173.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12173.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12174.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12174.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12175.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12176.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12176.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12176.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12178.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12178.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12178.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12179.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12179.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12179.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12181.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12181.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12181.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12182.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12182.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12183.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12184.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12184.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12184.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12186.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12186.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12186.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12187.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12187.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12187.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12189.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12189.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12189.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12190.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12190.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12191.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12192.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12192.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12192.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12194.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12194.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12194.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12195.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12195.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12195.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12197.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12197.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12197.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12198.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12198.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12199.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12200.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12200.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12200.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12202.010000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12202.010000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12202.310000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12203.610000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12203.610000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12203.910000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12205.210000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12205.210000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12205.510000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12206.810000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12206.810000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12207.110000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12208.410000] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12208.410000] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 12208.710000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 12209.010000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 12467.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 12467.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12468.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12469.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12471.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12471.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12472.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12473.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12474.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12475.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12477.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12477.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12478.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12479.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12480.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12481.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12483.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12483.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12484.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12485.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12486.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12486.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12487.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12488.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12489.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12489.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12490.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12491.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12492.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12492.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12493.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12494.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12495.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12495.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12496.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12497.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12498.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12498.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12499.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12500.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12501.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12501.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12502.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12503.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12504.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12504.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12505.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12506.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12507.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12507.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12508.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12509.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12510.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12510.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12511.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12512.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12513.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12513.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12514.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12515.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12516.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12516.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12517.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12518.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12519.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12519.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12520.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12521.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12522.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12522.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12523.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12524.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12525.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12525.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12526.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12527.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12528.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12528.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12529.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12530.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12531.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12531.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12532.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12533.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12534.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12534.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12535.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12536.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12537.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12537.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12538.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12539.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12540.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12540.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12541.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12542.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12543.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12543.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12544.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12545.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12546.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12546.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12547.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12548.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12549.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12549.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12550.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12551.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12552.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12552.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12553.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12554.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12555.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12555.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12556.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12557.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12558.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12558.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12559.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12560.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12561.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12561.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12562.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12563.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12564.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12564.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12565.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12566.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12567.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12567.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12568.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12569.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12570.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12570.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12571.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12572.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12573.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12573.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12574.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12575.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12576.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12576.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12577.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12578.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12579.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12579.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12580.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12581.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12582.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12582.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12583.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12584.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12585.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12585.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12586.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12587.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12588.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12588.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12589.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12590.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12591.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12591.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12592.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12593.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12594.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12594.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12595.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12596.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12597.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12597.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12598.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12599.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12600.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12600.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12601.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12602.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12603.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12603.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12604.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12605.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12606.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12606.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12607.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12608.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12609.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12609.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12610.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12611.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12612.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12612.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12613.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12614.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12615.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12615.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12616.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12617.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12618.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12618.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12619.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12620.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12621.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12621.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12622.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12623.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12624.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12624.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12625.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12626.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12627.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12627.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12628.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12629.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12630.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12630.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12631.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12632.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12633.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12633.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12634.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12635.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12636.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12636.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12637.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12638.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12639.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12639.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12640.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12641.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12642.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12642.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12643.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12644.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12645.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 12645.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 12646.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 12647.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 12711.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 12711.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12712.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12712.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12713.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12714.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12715.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12715.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12716.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12717.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12718.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12718.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12719.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12720.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12721.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12721.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12722.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12723.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12724.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12724.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12725.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12726.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12727.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12727.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12728.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12729.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12730.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12730.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12731.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12732.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12733.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12734.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12736.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12736.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12737.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12738.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12739.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12740.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12742.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12742.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12743.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12744.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12745.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12746.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12748.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12748.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12749.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12750.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12751.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12752.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12754.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12754.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12755.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12756.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12757.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12758.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12760.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12760.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12761.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12762.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12763.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12764.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12766.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12766.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12767.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12768.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12769.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12770.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12772.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12772.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12773.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12774.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12775.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12776.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12778.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12778.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12779.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12780.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12781.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12782.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12784.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12784.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12785.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12786.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12787.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12788.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12790.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12790.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12791.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12792.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12793.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12794.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12796.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12797.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12799.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12800.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12802.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12803.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12805.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12806.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12808.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12809.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12811.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12812.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12814.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12815.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12817.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12818.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12820.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12821.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12823.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12824.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12826.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12827.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12829.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12830.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12832.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12833.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12835.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12836.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12838.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12839.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12841.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12842.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12844.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12845.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12847.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12848.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12850.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12851.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12853.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12854.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12856.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12856.000000] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 12857.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 12858.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 12859.000000] [simulator/INFO] on10 is observing his environment... +[on11:ON:(12) 12859.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 12859.000000] [simulator/INFO] on11 is observing his environment... +[on10:ON:(11) 12859.000000] [simulator/INFO] on10 try to forward a hint +[on11:ON:(12) 12860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12860.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12861.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12863.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12864.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12866.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12867.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12869.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12870.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12872.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12873.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12875.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12876.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12878.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12879.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12881.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12882.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12884.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12885.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12887.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12888.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12890.000000] [simulator/INFO] on11 try to forward a hint +[on10:ON:(11) 12891.000000] [simulator/INFO] on10 fail to forward a hint +[on11:ON:(12) 12891.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12892.000000] [simulator/INFO] on11 is observing his environment... +[on10:ON:(11) 12892.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 12893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12893.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12894.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12896.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12897.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12899.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12900.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12902.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12903.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12905.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12906.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12908.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12909.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12911.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12912.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12914.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12915.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12917.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12918.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 12919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12920.000000] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 12921.000000] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 12921.000000] [simulator/INFO] on0 wakes up +[on5:ON:(6) 12921.000000] [simulator/INFO] on5 wakes up +[on4:ON:(5) 12921.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 12922.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12923.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12923.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12924.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12924.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12925.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12925.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12926.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12926.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12927.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12927.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12928.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12928.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12929.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12929.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12930.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12930.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12931.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12931.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12932.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12932.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12933.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12933.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12934.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12934.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12935.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12935.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12936.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12936.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12937.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12937.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12938.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12938.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12939.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12939.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12940.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12940.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12941.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12941.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12942.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12942.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12943.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12943.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12944.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12944.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12945.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12945.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12946.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12946.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12947.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12947.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12948.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12948.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12949.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12949.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12950.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12950.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12951.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12951.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12952.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12952.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12953.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12953.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12954.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12954.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12955.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12955.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12956.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12956.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12957.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12957.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12958.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12958.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12959.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12959.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12960.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12960.000000] [simulator/INFO] on4 could not receive any data +[on11:ON:(12) 12961.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 12961.000000] [simulator/INFO] on4 could not receive any data +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 received data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 received a hint along with data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 12961.010320] [simulator/INFO] on0 sent data successfully +[on5:ON:(6) 12961.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 12961.020320] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 12961.020320] [simulator/INFO] on4 received a forwarded hint successfully +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 12961.020640] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 12961.020640] [simulator/INFO] on0 sent a hint successfully +[on4:ON:(5) 12962.020640] [simulator/INFO] on4 could not receive any data +[on4:ON:(5) 12962.020640] [simulator/INFO] on4 try to forward a hint +[on5:ON:(6) 12962.020640] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 12962.020640] [simulator/INFO] on5 try to forward a hint +[on4:ON:(5) 12962.320640] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 received data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 received a hint along with data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 is observing his environment... +[on0:ON:(1) 13002.630960] [simulator/INFO] on0 sent data successfully +[on4:ON:(5) 13002.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13003.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13004.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13005.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13005.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13006.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13007.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13008.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13008.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13009.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13010.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13011.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13011.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13012.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13013.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13014.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13014.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13015.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13016.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13017.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13017.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13018.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13019.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13020.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13020.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13021.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13022.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13023.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13023.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13024.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13025.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13026.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13026.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13027.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13028.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13029.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13029.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13030.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13031.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13032.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13032.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13033.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13034.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13035.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13035.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13036.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13037.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13038.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13038.630960] [simulator/INFO] on4 try to forward a hint +[on11:ON:(12) 13039.000000] [simulator/INFO] on11 fail to forward a hint +[on4:ON:(5) 13039.630960] [simulator/INFO] on4 fail to forward a hint +[on11:ON:(12) 13040.000000] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 13040.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13041.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13041.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13042.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13043.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13044.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13044.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13045.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13046.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13047.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13047.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13048.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13049.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13050.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13050.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13051.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13052.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13053.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13053.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13054.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13055.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13056.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13056.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13057.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13058.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13059.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13059.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13060.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13061.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13062.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13062.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13063.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13064.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13065.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13065.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13066.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13067.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13068.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13068.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13069.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13070.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13071.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13071.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13072.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13073.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13074.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13074.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13075.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13076.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13077.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13077.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13078.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13079.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13080.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13080.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13081.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13082.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13083.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13083.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13084.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13085.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13086.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13086.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13087.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13088.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13089.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13089.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13090.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13091.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13092.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13092.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13093.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13094.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13095.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13095.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13096.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13097.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13098.630960] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 13098.630960] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 13099.630960] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 13100.630960] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 13101.000000] [simulator/INFO] on5 fail to forward a hint +[on4:ON:(5) 13101.000000] [simulator/INFO] on4 is sleeping +[on0:ON:(1) 13101.000000] [simulator/INFO] on0 is sleeping +[on5:ON:(6) 13102.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 13504.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 13505.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13506.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13507.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13508.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13509.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13510.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13511.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13512.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13513.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13514.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13515.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13516.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13517.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13518.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13519.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13520.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13521.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13522.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13523.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13524.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13525.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13526.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13527.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13528.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13529.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13530.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13531.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13532.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13533.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13534.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13535.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13536.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13537.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13538.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13539.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13540.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13541.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13542.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13543.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13544.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13545.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13546.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13547.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13548.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13549.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13550.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13551.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13552.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13553.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13554.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13555.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13556.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13557.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13558.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13559.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13560.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13561.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13562.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13563.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13564.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13565.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13566.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13567.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13568.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13569.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13570.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13571.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13572.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13573.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13574.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13575.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13576.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13577.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13578.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13579.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13580.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13581.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13582.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13583.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13584.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13585.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13586.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13587.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13588.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13589.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13590.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13591.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13592.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13593.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13594.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13595.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13596.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13597.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13598.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13599.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13600.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13601.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13602.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13603.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13604.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13605.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13606.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13607.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13608.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13609.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13610.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13611.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13612.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13613.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13614.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13615.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13616.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13617.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13618.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13619.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13620.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13621.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13622.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13623.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13624.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13625.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13626.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13627.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13628.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13629.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13630.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13631.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13632.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13633.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13634.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13635.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13636.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13637.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13638.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13639.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13640.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13641.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13642.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13643.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13644.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13645.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13646.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13647.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13648.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13649.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13650.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13651.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13652.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13653.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13654.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13655.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13656.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13657.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13658.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13659.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13660.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13661.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13662.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13663.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13664.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13665.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13666.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13667.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13668.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13669.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13670.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13671.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13672.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13673.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13674.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13675.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13676.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13677.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13678.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13679.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13680.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13681.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13682.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13683.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13684.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 13684.000000] [simulator/INFO] on8 is sleeping +[on1:ON:(2) 14025.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 14026.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14027.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14028.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14029.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14030.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14031.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14032.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14033.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14034.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14035.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14036.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14037.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14038.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14039.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14040.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14041.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14042.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14043.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14044.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14045.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14046.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14047.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14048.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14049.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14050.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14051.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14052.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14053.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 14205.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 14705.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 14705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14731.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14732.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14733.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14734.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14735.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14736.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14737.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14738.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14739.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14740.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14741.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14742.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14743.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14744.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14745.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14746.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14747.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14748.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14749.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14750.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14751.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14752.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14753.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14754.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14755.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14756.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14757.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14758.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14759.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14760.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14761.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14762.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14763.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14764.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14765.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14766.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14767.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14768.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14769.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14770.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14771.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14772.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14773.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14774.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14775.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14776.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14777.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14778.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14779.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14780.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14781.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14782.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14783.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14784.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14785.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14786.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14787.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14788.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14789.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14790.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14791.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14792.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14793.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14794.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14795.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14796.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14797.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14798.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14799.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14800.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14801.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14802.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14803.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14804.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14805.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14806.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14807.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14808.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14809.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14810.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14811.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14812.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14813.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14814.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14815.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14816.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14817.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14818.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14819.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14820.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14821.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14822.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14823.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14824.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14825.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14826.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 14885.000000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 15161.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 15161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15220.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 15220.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 15220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 15221.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 15221.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 15221.000000] [simulator/INFO] on4 try to forward a hint +[on10:ON:(11) 15222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15255.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15257.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15259.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15336.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 15336.000000] [simulator/INFO] on0 wakes up +[on10:ON:(11) 15337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15337.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 15337.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 15338.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 15339.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 15339.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 15340.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 15341.010320] [simulator/INFO] on10 is sleeping +[on4:ON:(5) 15516.000000] [simulator/INFO] on4 fail to forward a hint +[on0:ON:(1) 15516.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 15517.000000] [simulator/INFO] on4 is sleeping +[on1:ON:(2) 15777.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 15778.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15779.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15780.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15781.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15782.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15783.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15784.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15785.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15786.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15787.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15788.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15789.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15790.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15791.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15792.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15793.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15794.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15795.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15796.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15797.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15798.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15799.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15800.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15801.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15802.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15803.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15804.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15805.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15806.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15807.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15808.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15809.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15810.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15811.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15812.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15813.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15814.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15815.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15816.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15817.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15818.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15819.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15820.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15821.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15822.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15823.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15824.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15825.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15826.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15827.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15828.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15829.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15830.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15831.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15832.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15833.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15834.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15835.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15836.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15837.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15838.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15839.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15840.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15841.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15842.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15843.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15844.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15845.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15846.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15847.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15848.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15849.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15850.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15851.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15852.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15853.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15854.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15855.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15856.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15857.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15858.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15859.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15860.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15861.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15862.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15863.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15864.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15865.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15866.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15867.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15868.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15869.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15870.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15871.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15872.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15873.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15874.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15875.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15876.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15877.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15877.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 15878.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15878.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15879.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15879.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15880.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15880.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15881.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15881.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15882.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15882.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15883.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15883.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15884.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15884.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15885.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15885.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15886.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15886.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15887.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15887.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15888.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15888.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15889.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15889.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15890.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15890.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15891.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15891.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15892.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15892.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15893.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15893.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15894.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15894.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15895.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15895.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15896.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15896.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15897.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15897.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15898.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15898.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15899.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15899.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15900.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15900.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15901.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15901.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15902.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15902.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15903.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15903.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15904.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15904.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15905.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15905.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15906.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15906.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15907.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15907.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15908.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15908.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15909.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15909.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15910.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15910.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15911.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15911.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15912.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15912.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15913.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15913.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15914.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15914.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15915.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15915.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15916.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15916.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15917.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15917.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15918.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15918.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15919.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15919.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15920.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15920.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15921.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15921.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15922.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15922.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15923.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15923.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15924.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15924.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15925.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15925.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15926.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15926.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15927.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15927.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15928.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15928.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15929.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15929.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15930.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15930.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15931.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15931.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15932.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15932.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15933.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15933.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15934.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15934.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15935.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15935.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15936.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15936.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15937.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15937.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15938.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15938.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15939.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15939.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15940.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15940.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15941.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15941.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15942.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15942.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15943.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15943.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15944.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15944.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15945.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15945.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15946.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15946.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15947.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15947.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15948.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15948.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15949.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15949.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15950.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15950.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15951.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15951.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15952.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15952.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15953.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15953.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15954.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15954.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15955.000000] [simulator/INFO] on1 could not receive any data +[on9:ON:(10) 15955.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15956.000000] [simulator/INFO] on9 could not receive any data +[on1:ON:(2) 15956.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15957.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 15957.000000] [simulator/INFO] on1 is sleeping +[on9:ON:(10) 15957.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15958.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15959.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15960.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15961.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15962.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15963.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15964.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15965.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15966.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15967.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15968.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 15969.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15969.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 15969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 15970.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15970.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15971.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15971.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15972.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15972.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15973.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15973.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15974.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15974.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15975.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15975.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15976.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15976.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15977.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15977.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15978.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15978.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15979.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15979.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15980.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15980.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15981.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15981.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15982.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15982.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15983.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15983.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15984.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15984.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15985.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15985.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15986.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15986.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15987.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15987.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15988.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15988.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15989.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15989.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15990.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15990.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15991.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15991.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15992.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15992.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15993.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15993.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15994.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15994.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15995.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15995.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15996.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15996.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15997.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15997.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15998.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15998.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 15999.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 15999.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16000.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16000.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16001.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16001.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16002.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16002.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16003.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16003.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16004.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16004.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16005.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16005.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16006.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16006.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16007.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16007.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16008.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16008.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16009.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16009.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16010.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16010.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16011.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16011.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16012.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16012.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16013.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16013.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16014.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16014.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16015.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16015.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16016.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16016.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16017.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16017.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16018.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16018.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16019.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16019.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16020.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16020.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16021.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16021.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16022.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16022.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16023.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16023.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16024.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16024.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16025.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16025.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16026.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16026.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16027.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16027.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16028.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16028.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16029.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16029.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16030.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16030.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16031.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16031.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16032.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16032.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16033.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16033.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16034.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16034.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16035.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16035.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16036.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16036.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16037.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16037.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16038.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16038.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16039.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16039.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16040.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16040.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16041.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16041.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16042.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16042.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16043.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16043.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16044.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16044.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16045.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16045.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16046.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16046.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16047.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16047.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16048.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16048.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16049.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16049.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16050.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16050.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16051.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16051.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16052.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16052.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16053.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16053.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16054.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16054.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16055.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16055.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16056.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16056.000000] [simulator/INFO] on9 could not receive any data +[on5:ON:(6) 16057.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 16057.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 16057.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 16058.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16059.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16060.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16061.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16062.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16063.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16064.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16065.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16066.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16067.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16068.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16069.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16070.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16071.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16072.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16073.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16074.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16075.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16076.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16077.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16078.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16079.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16080.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16081.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16082.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16083.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16084.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16085.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16086.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16087.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16088.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16089.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16090.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16091.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16092.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16093.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16094.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16095.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16096.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16097.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16098.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16099.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16100.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16101.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16102.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16103.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16104.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16105.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16106.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16107.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16108.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16109.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16110.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16111.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16112.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16113.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16114.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16115.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16116.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16117.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16118.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16119.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16120.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16121.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16122.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16123.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16124.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16125.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16126.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16127.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16128.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16129.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16130.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16131.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16132.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16133.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16134.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16135.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16136.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16138.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16139.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16140.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16142.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16144.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16146.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16148.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 16149.000000] [simulator/INFO] on5 is sleeping +[on11:ON:(12) 16425.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 16425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16599.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16601.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 16605.000000] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 17204.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 17205.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17206.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17207.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17208.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17209.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17210.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17211.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17212.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17213.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17214.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17215.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17216.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17217.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17218.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17219.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17220.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17221.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17222.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17223.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17224.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17225.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17226.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17227.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17228.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17229.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17230.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17231.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17232.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17233.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17234.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17235.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17236.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17237.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17238.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17239.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17240.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17241.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17242.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17243.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17244.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17245.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17246.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17247.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17248.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17249.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17250.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17251.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17252.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17253.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17254.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17255.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17256.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17257.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17258.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17259.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17260.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17261.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17262.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17263.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17264.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17265.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17266.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17267.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17268.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17269.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17270.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17271.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17272.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17273.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17274.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17275.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17276.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17277.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17278.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17279.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17280.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17281.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17282.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17283.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17284.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17285.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17286.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17287.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17288.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17289.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17290.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17291.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17292.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17293.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17294.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17295.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17296.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17297.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17298.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17299.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17300.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17301.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17302.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17303.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17304.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17305.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17306.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17307.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17308.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17309.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17310.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17311.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17312.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17313.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17314.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17315.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17316.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17317.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17318.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17319.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17320.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17321.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17322.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17323.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17324.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17325.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17326.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17327.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17328.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17329.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17330.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17331.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17332.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17333.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17334.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17335.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17336.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17337.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17338.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17339.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17340.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17341.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17342.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17343.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17344.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17345.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17346.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17347.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17348.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17349.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17350.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17351.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17352.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17353.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17354.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17355.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17356.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17357.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17358.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17359.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17360.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17361.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17362.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17363.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17364.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17365.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17366.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17367.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17368.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17369.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17370.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17371.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17372.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17373.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17374.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17375.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17376.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17377.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17378.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17379.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17380.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17381.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17382.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17383.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17384.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 17384.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 17425.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 17425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17426.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17428.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17430.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17432.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17434.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17436.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17438.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17440.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17442.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17444.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17446.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17448.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17450.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17452.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17454.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17456.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17457.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17457.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 17457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17458.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17458.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17459.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17460.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17460.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17461.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17462.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17462.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17463.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17464.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17464.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17465.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17466.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17466.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17467.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17468.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17468.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17469.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17470.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17470.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17471.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17472.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17472.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17473.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17474.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17474.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17475.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17476.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17476.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17477.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17478.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17478.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17479.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17480.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17480.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17481.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17482.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17482.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17483.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17484.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17484.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17485.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17486.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17486.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17487.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17488.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17488.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17489.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17490.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17490.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17491.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17492.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17493.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17494.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17495.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17496.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17497.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17498.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17499.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17500.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17501.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17502.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17503.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17504.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17505.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17506.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17506.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17507.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17508.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17509.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17510.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17511.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17512.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17513.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17514.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17515.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17516.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17517.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17518.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17519.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17520.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17521.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17522.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17523.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17524.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17525.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17526.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17527.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17528.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17529.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17530.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17531.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17532.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17533.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17534.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17535.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17536.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17537.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17538.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17539.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17540.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17541.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17542.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17543.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17544.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17545.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17546.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17547.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17548.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17549.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17550.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17551.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17552.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17553.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17554.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17555.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17556.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17557.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17558.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17559.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17560.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17561.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17562.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17563.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17564.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17565.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17566.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17567.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17568.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17569.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17570.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17571.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17572.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17573.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17574.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17575.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17576.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17577.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17578.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17579.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17580.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17581.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17582.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17583.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17584.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17585.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17586.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17587.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17588.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17589.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17590.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17591.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17592.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17593.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17594.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17595.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17596.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17597.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17598.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17599.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17600.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17601.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17602.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17603.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 17603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17604.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 17604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 17605.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 17605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 17637.000000] [simulator/INFO] on3 is sleeping +[on6:ON:(7) 17870.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 17871.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17872.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17873.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17874.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17875.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17876.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17877.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17878.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17879.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17880.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17881.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17882.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17883.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17884.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17885.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17886.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17887.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17888.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17889.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17890.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17891.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17892.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17893.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17894.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17895.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17896.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17897.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17898.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17899.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17900.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17901.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17902.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17903.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17904.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17905.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17906.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17907.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17908.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17909.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17910.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17911.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17912.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17913.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17914.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17915.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17916.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17917.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17918.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17919.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17920.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17921.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17922.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17923.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17924.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17925.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17926.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17927.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17928.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17929.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17930.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17931.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17932.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17933.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17934.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17935.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17936.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17937.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17938.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17939.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17940.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17941.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17942.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17943.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17944.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17945.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17946.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17947.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17948.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 17949.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17949.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 17949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 17950.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17950.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17951.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17951.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17952.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17952.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17953.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17953.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17954.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17954.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17955.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17955.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17956.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17956.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17957.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17957.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17958.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17958.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17959.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17959.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17960.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17960.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17961.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17961.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17962.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17962.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17963.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17963.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17964.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17964.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17965.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17965.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17966.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17966.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17967.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17967.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17968.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17968.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17969.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17969.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17970.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17970.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17971.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17971.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17972.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17972.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17973.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17973.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17974.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17974.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17975.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17975.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17976.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17976.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17977.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17977.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17978.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17978.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17979.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17979.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17980.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17980.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17981.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17981.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17982.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17982.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17983.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17983.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17984.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17984.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17985.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17985.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17986.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17986.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17987.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17987.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17988.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17988.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17989.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17989.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17990.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17990.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17991.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17991.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17992.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17992.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17993.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17993.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17994.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17994.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17995.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17995.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17996.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17996.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17997.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17997.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17998.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17998.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 17999.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 17999.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18000.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18000.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18001.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18001.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18002.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18002.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18003.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18003.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18004.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18004.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18005.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18005.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18006.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18006.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18007.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18007.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18008.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18008.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18009.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18009.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18010.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18010.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18011.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18011.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18012.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18012.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18013.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18013.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18014.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18014.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18015.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18015.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18016.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18016.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18017.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18017.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18018.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18018.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18019.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18019.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18020.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18020.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18021.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18021.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18022.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18022.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18023.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18023.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18024.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18024.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18025.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18025.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18026.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18026.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18027.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18027.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18028.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18028.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18029.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18029.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18030.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18030.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18031.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18031.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18032.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18032.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18033.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18033.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18034.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18034.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18035.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18035.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18036.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18036.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18037.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18037.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18038.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18038.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18039.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18039.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18040.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18040.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18041.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18041.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18042.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18042.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18043.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18043.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18044.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18044.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18045.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18045.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18046.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18046.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18047.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18047.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18048.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18048.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18049.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18049.000000] [simulator/INFO] on6 could not receive any data +[on12:ON:(13) 18050.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 18050.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 18050.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 18051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 18129.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 18342.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 18342.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18348.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18351.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18354.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18357.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18360.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18363.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18366.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18369.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18372.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18375.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18378.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18381.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18384.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18396.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18402.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18408.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18414.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18420.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18426.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18432.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18438.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18442.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18444.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18450.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18456.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18462.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18468.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18474.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18480.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18484.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18486.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18488.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18490.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18492.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18494.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18496.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18498.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18500.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18502.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18504.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18506.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18508.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18510.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18512.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18514.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18515.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 18515.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 18515.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 18516.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 18516.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18516.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 18516.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 18516.000000] [simulator/INFO] on10 try to forward a hint +[on5:ON:(6) 18517.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18518.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18519.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18520.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 18520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18521.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 18521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 18522.000000] [simulator/INFO] on3 is sleeping +[on5:ON:(6) 18522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 18690.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18690.000000] [simulator/INFO] on1 wakes up +[on5:ON:(6) 18691.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18691.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18692.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18692.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18693.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18693.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18694.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18694.000000] [simulator/INFO] on1 could not receive any data +[on10:ON:(11) 18695.000000] [simulator/INFO] on10 fail to forward a hint +[on5:ON:(6) 18695.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 18695.000000] [simulator/INFO] on1 could not receive any data +[on5:ON:(6) 18696.000000] [simulator/INFO] on5 is sleeping +[on1:ON:(2) 18696.000000] [simulator/INFO] on1 could not receive any data +[on10:ON:(11) 18696.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 18697.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18698.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18699.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18700.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18701.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18702.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18703.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18704.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18705.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18706.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18707.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18708.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18709.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18710.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18711.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18712.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18713.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18714.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18715.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18716.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18717.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18718.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18719.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18720.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18721.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18722.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18723.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18724.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18725.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18726.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18727.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18728.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18729.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18730.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18731.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18732.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18733.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18734.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18735.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18736.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18737.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18738.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18739.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18740.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18741.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18742.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18743.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18744.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18745.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18746.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18747.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18748.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18749.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18750.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18751.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18752.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18753.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18754.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18755.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18756.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18757.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18758.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18759.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18760.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18761.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18762.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18763.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18764.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18765.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18766.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18767.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18768.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18769.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18770.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18771.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18772.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18773.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18774.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18775.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18776.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18777.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18778.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18779.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18780.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18781.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18782.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18783.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18784.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18785.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18786.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18787.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18788.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18789.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18790.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18791.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18792.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18793.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18794.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18795.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18796.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18797.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18798.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18799.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18800.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18801.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18802.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18803.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18804.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18805.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18806.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18807.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18808.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18809.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18810.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18811.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18812.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18813.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18814.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18815.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18816.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18817.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18818.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18819.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18820.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18821.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18822.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18823.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18824.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18825.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18826.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18827.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18828.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18829.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18830.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18831.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18832.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18833.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18834.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18835.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18836.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18837.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18838.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18839.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18840.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18841.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18842.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18843.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18844.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18845.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18846.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18847.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18848.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18849.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18850.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18851.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18852.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18853.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18854.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18855.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18856.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18857.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18858.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18859.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18860.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18861.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18862.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18863.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18864.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18865.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18866.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18867.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18868.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18869.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18870.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 18870.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 19220.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 19220.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19221.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19222.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19224.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19226.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19228.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19230.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19232.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19234.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19236.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19238.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19240.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19242.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19244.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19246.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19248.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19250.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19252.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19254.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19256.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19258.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19260.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19262.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19264.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19266.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19268.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19270.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19272.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19274.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19276.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19278.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19280.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19282.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19284.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19286.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19288.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19290.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19292.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19294.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19296.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19298.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19300.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19302.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19304.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19306.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19308.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 19310.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19310.000000] [simulator/INFO] on8 wakes up +[on11:ON:(12) 19311.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19311.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19312.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19312.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19313.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19313.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19314.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19314.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19315.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19315.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19316.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19316.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19317.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19317.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19318.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19318.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19319.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19319.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19320.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19320.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19321.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19321.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19322.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19322.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19323.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19323.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19324.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19324.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19325.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19325.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19326.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19326.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19327.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19327.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19328.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19328.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19329.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19329.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19330.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19330.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19331.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19331.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19332.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19332.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19333.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19333.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19334.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19334.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19335.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19335.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19336.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19336.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19337.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19337.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19338.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19338.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19339.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19339.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19340.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19340.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19341.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19341.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19342.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19342.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19343.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19343.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19344.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19344.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19345.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19345.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19345.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 19345.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19346.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19346.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19346.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19347.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19347.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19347.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19348.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19348.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19348.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19349.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19349.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19349.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19350.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19350.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19350.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19351.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19351.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19351.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19352.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19352.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19352.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19353.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19353.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19353.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19354.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19354.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19354.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19355.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19355.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19355.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19356.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19356.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19356.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19357.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19357.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19357.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19358.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19358.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19358.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19359.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19359.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19359.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19360.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19360.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19360.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19361.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19361.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19361.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19362.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19362.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19362.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19363.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19363.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19363.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19364.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19364.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19364.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19365.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19365.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19365.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19366.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19366.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19366.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19367.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19367.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19367.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19368.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19368.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19368.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19369.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19369.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19369.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19370.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19370.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19370.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19371.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19371.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19371.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19372.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19372.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19372.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19373.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19373.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19373.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19374.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19374.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19374.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19375.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19375.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19375.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19376.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19376.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19376.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19377.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19377.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19377.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19378.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19378.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19378.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19379.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19379.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19379.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19380.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19380.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19380.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19381.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19381.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19381.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19382.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19382.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19382.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19383.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19383.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19383.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19384.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19384.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19384.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19385.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19385.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19385.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19386.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19386.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19386.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19387.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19387.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19387.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19388.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19388.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19388.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19389.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19389.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19389.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19390.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19390.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19390.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19391.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19391.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19391.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19392.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19392.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19392.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19393.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19393.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19393.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19394.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19394.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19394.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19395.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19395.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19395.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19396.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19396.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19396.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19397.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19397.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19397.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19398.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19398.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 19398.000000] [simulator/INFO] on8 could not receive any data +[on11:ON:(12) 19399.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 19399.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19399.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19400.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 19400.000000] [simulator/INFO] on11 is sleeping +[on8:ON:(9) 19400.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19401.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19401.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19402.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19402.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19403.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19403.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19404.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19404.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19405.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19405.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19406.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19406.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19407.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19407.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19408.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19408.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19409.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19409.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19410.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19410.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19411.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19411.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19412.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19412.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19413.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19413.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19414.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19414.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19415.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19415.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19416.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19416.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19417.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19417.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19418.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19418.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19419.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19419.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19420.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19420.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19421.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19421.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19422.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19422.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19423.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19423.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19424.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19424.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19425.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19425.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19426.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19426.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19427.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19427.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19428.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19428.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19429.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19429.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19430.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19430.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19431.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19431.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19432.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19432.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19433.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19433.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19434.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19434.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19435.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19435.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19436.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19436.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19437.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19437.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19438.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19438.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19439.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19439.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19440.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19440.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19441.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19441.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19442.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19442.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19443.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19443.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19444.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19444.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19445.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19445.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19446.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19446.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19447.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19447.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19448.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19448.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19449.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19449.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19450.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19450.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19451.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19451.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19452.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19452.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19453.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19453.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19454.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19454.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19455.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19455.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19456.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19456.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19457.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19457.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19458.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19458.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19459.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19459.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19460.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19460.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19461.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19461.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19462.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19462.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19463.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19463.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19464.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19464.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19465.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19465.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19466.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19466.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19467.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19467.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19468.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19468.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19469.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19469.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19470.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19470.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19471.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19471.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19472.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19472.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19473.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19473.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19474.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19474.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19475.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19475.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19476.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19476.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19477.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19477.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19478.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19478.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19479.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19479.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19480.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19480.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19481.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19481.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19482.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19482.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19483.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19483.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19484.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19484.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19485.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19485.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19486.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19486.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19487.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19487.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19488.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19488.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19489.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19489.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 19490.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 19490.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 19490.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 19491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19506.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19506.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 19506.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19507.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19508.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19508.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19509.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19510.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19510.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19511.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19512.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19512.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19513.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19514.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19514.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19515.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19516.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19516.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19517.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19518.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19518.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19519.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19520.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19521.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19522.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19523.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 19524.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 19524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19525.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 19525.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 19526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19530.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19531.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19532.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19533.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19534.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19535.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19536.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19537.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19538.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19539.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19540.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19541.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19542.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19543.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19544.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19545.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19546.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19547.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19548.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19549.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19550.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 19686.000000] [simulator/INFO] on2 is sleeping +[on9:ON:(10) 20124.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 20125.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20126.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20127.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20128.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20129.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20130.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20131.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20132.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20133.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20134.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20135.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20136.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20137.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20138.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20139.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20140.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20141.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20142.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20143.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20144.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20145.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20146.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20147.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20148.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20149.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20150.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20151.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20152.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20153.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20154.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20155.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20156.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20157.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20158.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20159.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20160.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20161.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20162.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20163.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20164.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20165.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20166.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20167.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20168.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20169.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20170.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20171.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20172.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20173.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20174.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20175.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20176.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20177.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20178.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20179.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20180.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20181.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20182.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20183.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20184.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20185.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20186.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20187.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20188.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20189.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20190.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20191.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20192.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20193.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20194.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20195.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20196.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20197.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20198.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20199.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20200.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20201.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20202.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20203.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20204.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20205.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20206.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20207.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20208.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20209.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20210.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20211.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20212.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20213.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20214.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20215.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20216.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20217.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20218.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20219.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20220.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20221.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20222.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20223.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20224.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20225.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20226.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20227.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20228.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20229.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20230.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20231.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20232.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20233.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20234.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20235.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20236.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20237.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20238.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20239.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20240.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20241.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20242.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20243.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20244.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20245.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20246.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20247.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20248.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20249.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20250.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20251.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20252.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20253.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20254.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20255.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20256.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20257.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20258.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20259.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20260.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20261.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20262.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20263.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20264.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20265.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20266.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20267.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20268.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20269.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20270.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20271.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20272.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20273.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20274.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20275.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20276.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20277.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20278.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20279.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20280.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20281.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20282.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20283.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20284.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20285.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20286.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20287.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20288.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20289.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20290.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20291.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20292.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20293.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20294.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20295.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20296.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20297.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20298.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20299.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20300.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20301.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20302.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20303.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20304.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 20304.000000] [simulator/INFO] on9 is sleeping +[on6:ON:(7) 20516.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 20517.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20518.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20519.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20520.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20521.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20522.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20523.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20524.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20525.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20526.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20527.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20528.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20529.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20530.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20531.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20532.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20533.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20534.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20535.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20536.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20537.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20538.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20539.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20540.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20541.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20542.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20543.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20544.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20545.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20546.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20547.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20548.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20549.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20550.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20551.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20552.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20553.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20554.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20555.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20556.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20557.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20558.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20559.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20560.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20561.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20562.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20563.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20564.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20565.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20566.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20567.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20568.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20569.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20570.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20571.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20572.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20573.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20574.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20575.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20576.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20577.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20578.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20579.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20580.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20581.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20582.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20583.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20584.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20585.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20586.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20587.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20588.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20589.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20590.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20591.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20592.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20593.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20594.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20595.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20596.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20597.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20598.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20599.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20600.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20601.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20602.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20603.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20604.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20605.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20606.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20607.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20608.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20609.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20610.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20611.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20612.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20613.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20614.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20615.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20616.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20617.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20618.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20619.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20620.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20621.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20622.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20623.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20624.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20625.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20626.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20627.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20628.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20629.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20630.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20631.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20632.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20633.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20634.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20635.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20636.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20637.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20638.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20639.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20640.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20641.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20642.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20643.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20644.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20645.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20646.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20647.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20648.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20649.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20650.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20651.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20652.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20653.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20654.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20655.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20656.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20657.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20658.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20659.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20660.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20661.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20662.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20663.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20664.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20665.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20666.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20667.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20668.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20669.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20670.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20671.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20672.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20673.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20674.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20675.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20676.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20677.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20678.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20679.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20680.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20681.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20682.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20683.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20684.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20685.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20686.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20687.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20688.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20689.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20690.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20691.000000] [simulator/INFO] on6 could not receive any data +[on6:ON:(7) 20692.000000] [simulator/INFO] on6 could not receive any data +[on0:ON:(1) 20692.000000] [simulator/INFO] on0 wakes up +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 received data successfully +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 received a hint along with data successfully +[on6:ON:(7) 20732.010320] [simulator/INFO] on6 is sleeping +[on0:ON:(1) 20732.010320] [simulator/INFO] on0 sent data successfully +[on4:ON:(5) 20794.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 20794.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 received a hint successfully +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20795.010320] [simulator/INFO] on4 try to forward a hint +[on0:ON:(1) 20795.010320] [simulator/INFO] on0 sent a hint successfully +[on4:ON:(5) 20796.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20797.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20797.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20798.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20799.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20799.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20800.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20801.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20801.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20802.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20803.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20803.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20804.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20805.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20805.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20806.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20807.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20807.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20808.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20809.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20809.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20810.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20811.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20811.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20812.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20813.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20813.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20814.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20815.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20815.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20816.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20817.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20817.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20818.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20819.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20819.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20820.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20821.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20821.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20822.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20823.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20823.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20824.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20825.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20825.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20826.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20827.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20827.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20828.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20829.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20829.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20830.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20831.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20831.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20832.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20833.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20833.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20834.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20835.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20835.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20836.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20837.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20837.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20838.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20839.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20839.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20840.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20841.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20841.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20842.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20843.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20843.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20844.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20845.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20845.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20846.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20847.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20847.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20848.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20849.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20849.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20850.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20851.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20851.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20852.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20853.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20853.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20854.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20855.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20855.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20856.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20857.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20857.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20858.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20859.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20859.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20860.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20861.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20861.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20862.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20863.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20863.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20864.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20865.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20865.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20866.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20867.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20867.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20868.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20869.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20869.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20870.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20871.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20871.010320] [simulator/INFO] on4 try to forward a hint +[on0:ON:(1) 20872.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 20872.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20873.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20873.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20874.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20875.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20875.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20876.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20877.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20877.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20878.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20879.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20879.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20880.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20881.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20881.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20882.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20883.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20883.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20884.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20885.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20885.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20886.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20887.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20887.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20888.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20889.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20889.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20890.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20891.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20891.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20892.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20893.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20893.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20894.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20895.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20895.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20896.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20897.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20897.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20898.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20899.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20899.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20900.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20901.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20901.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20902.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20903.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20903.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20904.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20905.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20905.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20906.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20907.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20907.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20908.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20909.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20909.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20910.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20911.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20911.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20912.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20913.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20913.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20914.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20915.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20915.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20916.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20917.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20917.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20918.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20919.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20919.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20920.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20921.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20921.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20922.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20923.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20923.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20924.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20925.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20925.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20926.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20927.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20927.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20928.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20929.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20929.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20930.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20931.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20931.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20932.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20933.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20933.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20934.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20935.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20935.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20936.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20937.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20937.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20938.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20939.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20939.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20940.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20941.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20941.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20942.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20943.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20943.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20944.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20945.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20945.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20946.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20947.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20947.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20948.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20949.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20949.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20950.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20951.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20951.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20952.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20953.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20953.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20954.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20955.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20955.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20956.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20957.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20957.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20958.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20959.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20959.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20960.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20961.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20961.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20962.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20963.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20963.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20964.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20965.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20965.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20966.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20967.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20967.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20968.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20969.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20969.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20970.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20971.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20971.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20972.010320] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20973.010320] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 20973.010320] [simulator/INFO] on4 try to forward a hint +[on4:ON:(5) 20974.000000] [simulator/INFO] on4 fail to forward a hint +[on4:ON:(5) 20974.989680] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 21139.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 21139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21255.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21257.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21259.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21261.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21263.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21265.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21267.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21269.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21271.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21273.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21275.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21277.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21279.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21281.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21283.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21285.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21287.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21289.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21291.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21293.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21295.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21297.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21299.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21301.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21303.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21305.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21307.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21309.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21311.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21313.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21315.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21317.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 21319.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 22105.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 22105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22255.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22257.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22259.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 22285.000000] [simulator/INFO] on10 is sleeping +[on11:ON:(12) 22910.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 22910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22992.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22994.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22996.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22998.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 22999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23000.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23002.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23004.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23006.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23008.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23009.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23010.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23011.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23012.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23013.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23014.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23015.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23016.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23017.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23018.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23019.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23020.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23021.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23022.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23024.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23026.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23028.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23030.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23032.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23034.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23036.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23038.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23040.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23042.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23044.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23046.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23048.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23050.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23054.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 23054.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 23054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 23055.000000] [simulator/INFO] on4 is observing his environment... +[on11:ON:(12) 23055.000000] [simulator/INFO] on11 is observing his environment... +[on4:ON:(5) 23055.000000] [simulator/INFO] on4 try to forward a hint +[on11:ON:(12) 23056.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23057.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23058.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23059.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23060.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23061.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23062.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23063.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23064.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23065.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23066.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23067.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23068.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23069.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23070.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23071.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23072.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23073.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23074.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23075.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23076.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23077.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23078.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23079.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23080.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23081.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23082.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23083.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23084.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23085.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23086.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23087.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23088.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23089.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 23090.000000] [simulator/INFO] on11 is sleeping +[on9:ON:(10) 23096.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 23097.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23098.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23099.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23100.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23101.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23102.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23103.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23104.000000] [simulator/INFO] on9 could not receive any data +[on9:ON:(10) 23105.000000] [simulator/INFO] on9 could not receive any data +[on0:ON:(1) 23105.000000] [simulator/INFO] on0 wakes up +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 received data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 received a hint along with data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 23145.010320] [simulator/INFO] on0 sent data successfully +[on9:ON:(10) 23145.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23146.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23147.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23148.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23148.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23149.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23150.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23151.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23151.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23152.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23153.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23154.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23154.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23155.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23156.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23157.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23157.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23158.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23159.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23160.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23160.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23161.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23162.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23163.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23163.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23164.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23165.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23166.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23166.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23167.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23168.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23169.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23169.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23170.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23171.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23172.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23172.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23173.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23174.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23175.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23175.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23176.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23177.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23178.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23178.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23179.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23180.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23181.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23181.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23182.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23183.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23184.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23184.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23185.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23186.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23187.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23187.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23188.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23189.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23190.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23190.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23191.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23192.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23193.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23193.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23194.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23195.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23196.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23196.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23197.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23198.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23199.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23199.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23200.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23201.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23202.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23202.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23203.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23204.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23205.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23205.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23206.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23207.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23208.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23208.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23209.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23210.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23211.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23211.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23212.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23213.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23214.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23214.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23215.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23216.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23217.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23217.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23218.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23219.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23220.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23220.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23221.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23222.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23223.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23223.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23224.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23225.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23226.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23226.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23227.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23228.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23229.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23229.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23230.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23231.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23232.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23232.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23233.010320] [simulator/INFO] on9 fail to forward a hint +[on4:ON:(5) 23234.000000] [simulator/INFO] on4 fail to forward a hint +[on9:ON:(10) 23234.010320] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 23235.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 23235.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23235.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23236.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23237.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23238.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23238.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23239.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23240.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23241.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23241.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23242.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23243.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23244.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23244.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23245.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23246.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23247.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23247.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23248.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23249.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23250.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23250.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23251.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23252.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23253.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23253.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23254.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23255.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23256.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23256.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23257.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23258.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23259.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23259.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23260.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23261.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23262.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23262.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23263.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23264.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23265.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23265.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23266.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23267.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23268.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23268.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23269.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23270.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23271.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23271.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23272.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23273.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23274.010320] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 23274.010320] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 23275.010320] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 23276.010320] [simulator/INFO] on9 is sleeping +[on0:ON:(1) 23285.000000] [simulator/INFO] on0 is sleeping +[on6:ON:(7) 23729.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 23729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23749.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23750.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23751.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23752.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23753.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23754.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23755.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23756.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23757.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23758.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23759.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23760.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23761.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23762.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23763.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23764.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23765.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23766.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23767.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23768.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23769.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23770.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23771.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23772.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23773.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23774.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23775.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23776.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23777.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23778.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23779.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23780.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23781.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23783.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23785.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23787.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23789.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23791.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23793.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23795.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23797.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23799.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23799.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 23799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23800.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23801.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23802.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23803.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23804.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23805.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23806.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23807.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23808.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23809.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23810.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23811.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23812.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23813.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23814.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23815.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23816.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23817.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23818.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23819.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23820.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23821.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23822.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23823.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23824.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23825.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23826.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23827.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23828.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23829.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23830.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23831.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23832.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23833.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23834.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23835.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23836.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23837.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23838.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23839.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23840.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23841.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23842.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23843.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23844.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23844.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 23845.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23846.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23846.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23846.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 23846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23847.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23847.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23848.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23848.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23849.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23849.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23850.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23850.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23851.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23851.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23852.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23852.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23853.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23853.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23854.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23854.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23855.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23855.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23856.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23856.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23857.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23857.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23858.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23858.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23859.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23859.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23860.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23860.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23861.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23861.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23862.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23862.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23863.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23863.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23864.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23864.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23865.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23865.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23866.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23866.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23867.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23867.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23868.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23868.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23869.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23869.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23870.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23870.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23871.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23871.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23872.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23872.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23873.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23873.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23874.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23874.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23875.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23875.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23876.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23876.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23877.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23877.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23878.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23878.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23879.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23879.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23880.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23880.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23881.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23881.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23882.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23882.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23883.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23883.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 23884.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23884.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 23885.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23885.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23885.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23885.000000] [simulator/INFO] on8 wakes up +[on12:ON:(13) 23886.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23886.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23886.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23886.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23887.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23887.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23887.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23887.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23888.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23888.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23888.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23888.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23889.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23889.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23889.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23889.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23890.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23890.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23890.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23890.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23891.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23891.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23891.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23891.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23892.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23892.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23892.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23892.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23893.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23893.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23893.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23893.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23894.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23894.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23894.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23894.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23895.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23895.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23895.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23895.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23896.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23896.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23896.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23896.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23897.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23897.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23897.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23897.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23898.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23898.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23898.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23898.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23899.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23899.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23899.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23899.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23900.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23900.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23900.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23900.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23901.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23901.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23901.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23901.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23902.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23902.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23902.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23902.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23903.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23903.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23903.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23903.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23904.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23904.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23904.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23904.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23905.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23905.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23905.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23905.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23906.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23906.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23906.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23906.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23907.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23907.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 23907.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23907.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23908.000000] [simulator/INFO] on12 is observing his environment... +[on6:ON:(7) 23908.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 23908.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23908.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23909.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 23909.000000] [simulator/INFO] on6 is sleeping +[on12:ON:(13) 23909.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23909.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23910.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23910.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23910.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23911.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23911.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23911.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23912.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23912.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23912.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23913.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23913.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23913.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23914.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23914.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23914.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23915.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23915.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23915.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23916.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23916.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23916.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23917.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23917.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23917.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23918.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23918.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23918.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23919.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23919.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23919.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23920.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23920.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23920.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23921.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23921.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23921.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23922.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23922.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23922.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23923.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23923.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23923.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23924.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23924.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23924.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23925.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23925.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23925.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23926.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23926.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23926.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23927.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23927.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23927.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23928.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23928.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23928.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23929.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23929.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23929.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23930.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23930.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23930.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23931.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23931.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23931.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23932.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23932.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23932.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23933.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23933.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23933.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23934.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23934.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23934.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23935.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23935.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23935.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23936.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23936.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23936.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23937.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23937.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23937.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23938.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23938.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23938.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23939.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23939.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23939.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23940.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23940.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23940.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23941.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23941.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23941.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23942.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23942.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23942.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23943.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23943.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23943.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23944.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23944.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23944.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23945.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23945.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23945.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23946.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23946.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23946.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23947.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23947.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23947.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23948.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23948.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23948.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23949.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23949.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23949.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23950.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23950.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23950.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23951.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23951.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23951.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23952.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23952.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23952.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23953.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23953.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23953.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23954.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23954.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23954.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23955.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23955.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23955.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23956.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23956.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23956.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23957.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23957.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23957.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23958.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23958.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23958.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23959.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23959.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23959.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23960.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23960.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23960.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23961.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23961.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23961.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23962.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23962.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23962.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23963.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23963.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23963.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23964.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23964.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23964.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23965.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23965.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23965.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23966.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23966.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23966.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23967.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23967.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23967.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23968.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23968.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23968.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23969.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23969.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23969.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23970.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23970.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23970.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23971.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23971.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23971.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23972.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23972.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23972.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23973.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23973.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23973.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23974.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23974.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23974.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23975.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23975.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23975.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23976.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23976.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23976.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23977.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23977.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 23977.000000] [simulator/INFO] on8 could not receive any data +[on12:ON:(13) 23978.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 23978.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23978.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23979.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 23979.000000] [simulator/INFO] on12 is sleeping +[on8:ON:(9) 23979.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23980.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23980.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23981.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23981.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23982.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23982.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23983.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23983.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23984.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23984.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23985.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23985.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23986.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23986.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23987.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23987.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23988.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23988.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23989.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23989.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23990.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23990.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23991.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23991.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23992.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23992.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23993.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23993.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23994.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23994.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23995.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23995.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23996.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23996.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23997.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23997.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23998.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23998.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 23999.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 23999.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24000.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24000.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24001.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24001.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24002.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24002.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24003.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24003.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24004.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24004.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24005.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24005.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24006.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24006.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24007.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24007.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24008.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24008.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24009.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24009.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24010.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24010.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24011.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24011.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24012.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24012.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24013.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24013.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24014.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24014.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24015.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24015.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24016.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24016.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24017.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24017.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24018.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24018.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24019.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24019.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24020.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24020.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24021.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24021.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24022.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24022.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24023.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24023.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24024.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24024.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24025.000000] [simulator/INFO] on7 is observing his environment... +[on8:ON:(9) 24025.000000] [simulator/INFO] on8 could not receive any data +[on7:ON:(8) 24026.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 24026.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24027.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24028.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24029.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24030.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24031.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24032.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24033.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24034.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24035.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24036.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24037.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24038.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24039.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24040.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24041.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24042.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24043.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24044.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24045.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24046.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24047.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24048.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24049.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24050.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24051.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24052.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24053.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24054.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24055.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24056.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24057.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24058.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24059.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24060.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24061.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24062.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24063.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24064.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24065.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 24065.000000] [simulator/INFO] on8 is sleeping +[on1:ON:(2) 24094.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 24095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24206.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24207.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24208.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24209.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24210.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24211.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24212.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24213.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24214.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24215.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24215.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 24215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24216.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24216.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24217.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24217.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24218.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24218.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24219.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24219.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24220.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24220.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24221.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24221.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24222.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24222.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24223.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24223.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24224.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24224.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24225.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24225.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24226.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24226.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24227.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24227.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24228.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24228.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24229.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24229.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24230.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24230.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24231.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24231.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24232.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24232.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24233.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24233.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24234.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24234.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24235.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24235.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24236.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24236.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24237.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24237.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24238.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24238.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24239.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24239.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24240.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24240.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24241.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24241.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24242.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24242.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24243.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24243.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24244.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24244.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24245.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24245.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24246.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24246.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24247.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24247.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24248.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24248.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24249.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24249.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24250.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24250.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24251.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24251.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24252.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24252.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24253.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24253.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24254.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24254.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24255.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24255.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24256.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24256.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24257.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24257.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24258.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24258.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24259.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24259.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24260.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24260.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24261.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24261.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24262.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24262.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24263.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24263.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24264.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24264.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24265.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24265.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24266.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24266.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24267.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24267.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24268.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24268.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24269.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24269.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24270.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24270.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24271.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24271.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24272.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24272.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24273.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24273.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 24274.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 24274.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 24274.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 24275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24283.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24283.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 24283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24284.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24285.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24285.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24286.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24287.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24287.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24288.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24289.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24289.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24290.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24291.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24291.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24292.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24293.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24293.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24294.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24295.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24295.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24296.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24296.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24297.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24297.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24298.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24298.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24299.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24299.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24300.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24300.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24301.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24301.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24302.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24302.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24303.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24303.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24304.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24304.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24305.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24305.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24306.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24306.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24307.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24307.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24308.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24308.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24309.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24309.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24310.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24310.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24311.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24311.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24312.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24312.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24313.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24313.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24314.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24314.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24315.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24315.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24316.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24316.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24317.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24317.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24318.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24318.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24319.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24319.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24320.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24320.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24321.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24321.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24322.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24322.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24323.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24323.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24324.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24324.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24325.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24325.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24326.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24326.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24327.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24327.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24328.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24328.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24329.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24329.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24330.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24330.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24331.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24331.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24332.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24332.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24333.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24333.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24334.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24334.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24335.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24335.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24336.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24336.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24337.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24337.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24338.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24338.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24339.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24339.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24340.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24340.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24341.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24341.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24342.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24342.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24343.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24343.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24344.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24344.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24345.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24345.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24346.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24346.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24347.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24347.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24348.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24348.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24349.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24349.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24350.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24351.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24351.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24352.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24353.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24353.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24354.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24355.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24355.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24356.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24357.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24357.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24358.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24359.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24359.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24360.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24361.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24361.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24362.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24363.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24363.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24364.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24365.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24365.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24366.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24367.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24367.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24368.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24369.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24369.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24370.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24371.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24371.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24372.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24373.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24373.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24374.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24375.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24375.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24376.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24377.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24377.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24378.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24379.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24379.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24380.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24381.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24381.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24382.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24383.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24383.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24384.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24385.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24385.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24386.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24387.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24387.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24388.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24389.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24389.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24390.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24391.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24391.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24392.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24393.000000] [simulator/INFO] on2 is observing his environment... +[on5:ON:(6) 24393.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24394.000000] [simulator/INFO] on5 is observing his environment... +[on2:ON:(3) 24394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 24395.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 24395.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24397.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24399.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24401.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24403.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 24463.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 24551.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 24551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24552.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24554.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24556.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24558.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24560.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24562.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24564.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24566.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24568.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24570.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24572.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24574.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24576.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24578.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24580.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24582.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24584.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24586.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24588.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24590.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24592.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24594.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24596.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24598.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24600.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24602.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24604.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24637.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24638.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24639.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24640.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24641.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24642.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24643.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24644.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24645.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24646.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24647.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24648.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24649.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24650.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24651.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24652.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24653.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24654.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24655.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24656.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24657.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24658.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24659.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24660.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24661.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24662.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24663.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24664.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24665.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24666.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24667.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24668.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24669.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24670.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24671.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24672.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24673.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24674.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24675.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24676.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24677.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 24731.000000] [simulator/INFO] on3 is sleeping +[on10:ON:(11) 25260.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 25260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25261.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25263.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 25440.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 25878.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 25878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25879.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25880.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25882.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25883.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25885.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25886.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25888.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25889.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25891.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25892.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25894.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25895.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25897.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25898.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25900.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25901.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25903.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25904.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25906.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25907.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25909.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25910.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25912.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25913.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25915.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25916.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25918.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25919.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25921.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25922.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25924.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25925.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25927.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25928.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25930.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25931.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25933.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25934.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25936.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25937.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25939.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25940.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25942.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25942.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25943.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25944.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25945.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25945.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25946.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25947.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25948.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25948.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25949.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25950.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25951.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25951.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25952.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25953.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25954.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25954.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25955.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25956.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25957.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25957.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25958.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25959.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25960.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25960.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25961.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25962.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25963.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25963.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25964.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25965.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25966.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25966.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25967.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25968.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25969.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25969.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25970.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25971.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25972.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25972.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25973.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25974.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25975.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25975.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25976.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25977.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25978.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25978.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25979.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25980.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25981.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25981.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25982.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25983.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25984.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25984.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25985.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25986.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25987.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25987.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25988.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25989.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25990.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25990.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25991.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25992.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25993.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25993.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25994.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25995.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25996.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25996.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 25997.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 25998.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25999.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 25999.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26000.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26001.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26002.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26003.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26005.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26005.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26006.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26007.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26008.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26009.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26011.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26011.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26012.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26013.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26014.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26015.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26017.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26017.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26018.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26019.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26020.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26021.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26023.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26023.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26024.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26025.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26026.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26027.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26029.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26029.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26030.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26031.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26032.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26033.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26035.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26035.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26036.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26037.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26038.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26039.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26041.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26041.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26042.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26043.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26044.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26045.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26047.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26047.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26048.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26049.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26050.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26051.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26053.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26053.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26054.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26055.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 26056.000000] [simulator/INFO] on9 try to forward a hint +[on9:ON:(10) 26057.000000] [simulator/INFO] on9 fail to forward a hint +[on9:ON:(10) 26058.000000] [simulator/INFO] on9 is sleeping +[on11:ON:(12) 26222.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 26222.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26224.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26226.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26228.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26230.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26232.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26234.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26236.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26238.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26240.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26242.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26244.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26246.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26248.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26250.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26252.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26254.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26256.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26258.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26260.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26262.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26264.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26266.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26268.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26270.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26272.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26274.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26276.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26278.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26280.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26282.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26284.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26286.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26288.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26290.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26292.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26294.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26296.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26298.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26300.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26302.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26304.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26306.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26306.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 26306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26307.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26308.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26309.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26310.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26311.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26311.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26312.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26313.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26313.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26314.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26315.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26315.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26316.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26317.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26317.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26318.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26319.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26319.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26320.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26321.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26321.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26322.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26323.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26323.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26324.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26324.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26325.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26325.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26326.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26326.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26327.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26327.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26328.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26328.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26329.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26329.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26330.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26330.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26331.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26331.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26332.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26332.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26333.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26333.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26334.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26334.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26335.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26335.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26336.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26336.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26337.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26337.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26338.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26338.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26339.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26339.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26340.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26340.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26341.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26341.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26342.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26342.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26343.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26343.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26344.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26344.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26345.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26345.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26346.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26346.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26347.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26347.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26348.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26348.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26349.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26349.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26350.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26350.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26351.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26351.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26352.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26352.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26353.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26353.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26354.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26354.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26355.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26355.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26356.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26356.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26357.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26357.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26358.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26358.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26359.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26359.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26360.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26360.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26361.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26361.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26362.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26362.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26363.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26363.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26364.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26364.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26365.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26365.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26366.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26366.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26367.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26367.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26368.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26368.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26369.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26369.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26370.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26370.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26371.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26371.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26372.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26372.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26373.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26373.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26374.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26374.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26375.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26375.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26376.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26376.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26377.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26377.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26378.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26378.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26379.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26379.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26380.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26380.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26381.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26381.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26382.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26382.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26383.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26383.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26384.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26384.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26385.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26385.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26386.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26386.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26387.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26387.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26388.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26388.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26389.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26389.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26390.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26390.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26391.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26391.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26392.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26392.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26393.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26393.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26394.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26394.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26395.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26395.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26396.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26396.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26397.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26397.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26398.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26398.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26399.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26399.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26400.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 26400.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26401.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 26401.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 26402.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 26402.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26403.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26404.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26405.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26406.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26407.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26408.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26409.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26410.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26411.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26412.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26413.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26414.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26415.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26416.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26417.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26418.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26419.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26420.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26421.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26422.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26423.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26424.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26425.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26426.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26427.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26428.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26429.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26430.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26431.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26432.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26433.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26434.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26435.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26436.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26437.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26438.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26439.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26440.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26441.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26442.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26443.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26444.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26445.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26446.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26447.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26448.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26449.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26450.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26451.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26452.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26453.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26454.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26455.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26456.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26457.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26458.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26459.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26460.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26461.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26462.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26463.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26464.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26465.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26466.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26467.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26469.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26471.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26472.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26473.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26475.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26477.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26478.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26479.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26481.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26483.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26484.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26485.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 26486.000000] [simulator/INFO] on12 is sleeping +[on2:ON:(3) 26893.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 26893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 26999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27008.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27010.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27012.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27014.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27016.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27018.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27020.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27022.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27024.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27026.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27045.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27047.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27049.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 27073.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 27080.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 27081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27095.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27096.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27097.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27098.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27099.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27100.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27101.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27102.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27103.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27104.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27105.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27106.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27107.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27108.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27109.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27110.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27111.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27112.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27113.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27114.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27115.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27116.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27117.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27118.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27119.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27120.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27121.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27122.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27123.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27124.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27125.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27126.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27127.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27128.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27129.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27130.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27131.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27132.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27133.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27134.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27135.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27136.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27137.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27138.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27139.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27140.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27141.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27142.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27143.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27144.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27145.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27146.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27147.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27148.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27149.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27150.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27151.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27152.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27153.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27154.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27155.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27156.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27157.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27158.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27159.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27160.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27161.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27162.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27163.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27164.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27165.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27166.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27167.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27168.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27169.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27170.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27171.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27172.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27173.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27174.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27175.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27176.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27177.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27179.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27180.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27181.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27182.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27183.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27184.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27185.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27186.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27187.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27188.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27189.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27190.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27191.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27192.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27193.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27194.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27195.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27196.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27197.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27198.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27199.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27200.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27201.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27202.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27203.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27204.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27205.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27206.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27207.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27208.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27209.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27210.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27211.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27212.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27213.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27214.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27215.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27216.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27217.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27218.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27219.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27220.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27221.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27222.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27223.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27224.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27225.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27226.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27227.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27228.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27229.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27230.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27231.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27232.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27233.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27234.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27235.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27236.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27237.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27238.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27239.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27240.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27241.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27242.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27243.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27244.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27245.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27246.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27247.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27248.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27249.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27250.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27251.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27252.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27253.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27254.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27255.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27256.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27257.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27258.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27259.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27260.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 27260.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 27274.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 27454.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 27747.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 27747.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27748.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27749.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27750.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27751.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27752.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27753.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27754.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27755.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27756.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27757.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27758.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27759.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27760.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27761.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27762.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27763.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27764.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27766.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27768.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27770.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27772.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27774.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27776.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27778.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27780.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27782.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27784.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27786.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27788.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27790.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27792.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27794.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27796.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27798.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27800.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27802.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27804.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27806.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27808.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27810.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27812.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27814.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27816.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27818.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27820.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27822.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 27927.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 28133.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 28134.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28135.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28136.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28137.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28138.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28139.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28140.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28141.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28142.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28143.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28144.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28145.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28146.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28147.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28148.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28149.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28150.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28151.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28152.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28153.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28154.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28155.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28156.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28157.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28158.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28159.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28160.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28161.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28162.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28163.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28164.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28165.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28166.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28167.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28168.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28169.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28170.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28171.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28172.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28173.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28174.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28175.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28176.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28177.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28178.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28179.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28180.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28181.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28182.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28183.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28184.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28185.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28186.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28187.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28188.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28189.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28190.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28191.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28192.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28193.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28194.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28195.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28196.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28197.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28198.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28199.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28200.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28201.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28202.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28203.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28204.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28205.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28206.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28207.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28208.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28209.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28210.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28211.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28212.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28213.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28214.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28215.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28216.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28217.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28218.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28219.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28220.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28221.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28222.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28223.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28224.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28225.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28226.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28227.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28228.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28229.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28230.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28231.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28232.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28233.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28234.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28235.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28236.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28237.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28238.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28239.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28240.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28241.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28242.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28243.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28244.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28245.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28246.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28247.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28248.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28249.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28250.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28251.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28252.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28253.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28254.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28255.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28256.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28257.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28258.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28259.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28260.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28261.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28262.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28263.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28264.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28265.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28266.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28267.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28268.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28269.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28270.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28271.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28272.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28273.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28274.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28275.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28276.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28277.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28278.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28279.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28280.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28281.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28282.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28283.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28284.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28285.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28286.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28287.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28288.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28289.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28290.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28291.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28292.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28293.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28294.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28295.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28296.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28297.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28298.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28299.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28300.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28301.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28302.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28303.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28304.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28305.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28306.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28307.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28308.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28309.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28310.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28311.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28312.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28313.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 28313.000000] [simulator/INFO] on8 is sleeping +[on3:ON:(4) 28391.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 28391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28394.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28394.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 28394.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28395.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28396.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28396.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28397.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28398.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28398.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28399.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28400.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28400.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28401.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28402.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28402.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28403.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28404.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28404.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28405.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28406.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28406.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28407.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28408.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28408.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28409.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28410.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28410.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28411.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28412.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28412.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28413.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28414.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28414.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28415.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28416.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28416.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28417.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28418.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28418.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28419.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28420.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28420.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28421.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28422.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28422.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28423.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28424.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28424.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28425.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28426.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28426.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28427.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28428.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28428.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28429.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28430.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28430.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28431.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28432.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28432.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28433.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28434.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28434.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28435.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28436.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28436.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28437.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28438.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28438.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28439.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28440.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28440.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28441.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28442.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28442.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28443.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28444.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28444.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28445.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28446.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28446.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28447.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28448.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28448.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28449.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28450.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28450.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28451.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28452.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28452.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28453.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28454.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28454.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28455.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28456.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28456.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28457.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28458.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28458.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28459.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28460.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28460.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28461.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28462.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28462.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28463.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28464.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28464.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28465.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28466.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28466.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28467.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28468.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28468.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28469.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28470.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28470.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28471.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28472.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28472.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28473.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28474.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28474.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28475.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28476.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28476.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28477.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28478.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28479.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28480.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28481.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28482.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28483.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28484.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28485.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28486.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28487.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28488.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28489.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28490.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28491.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28492.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28493.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28494.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28495.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28496.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28497.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28498.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28499.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28500.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28501.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28502.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28503.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28504.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28505.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28506.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28507.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28508.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28509.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28510.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28511.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28512.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28513.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28514.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28514.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28514.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 28514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28515.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28515.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28516.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28516.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28517.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28517.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28518.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28518.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28519.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28519.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28520.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28520.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28521.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28521.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28522.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28522.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28523.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28523.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28524.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28524.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28525.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28525.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28526.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28526.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28527.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28527.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28528.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28528.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28529.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28529.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28530.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28530.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28531.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28531.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28532.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28532.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28533.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28533.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28534.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28534.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28535.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28535.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28536.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28536.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28537.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28537.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28538.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28538.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28539.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28539.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28540.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28540.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28541.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28541.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28542.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28542.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28543.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28543.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28544.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28544.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28545.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28545.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28546.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28546.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28547.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28547.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28548.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28548.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28549.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28549.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28550.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28550.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28551.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28551.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28552.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28552.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28552.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28553.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28553.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28554.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28554.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28554.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28555.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28555.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28556.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28556.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28556.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28557.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28557.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28558.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28558.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28558.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28559.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28559.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28560.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28560.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28560.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28561.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28561.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28562.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28562.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28562.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28563.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28563.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28564.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28564.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28564.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28565.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28565.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28566.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28566.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28566.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28567.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28567.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28568.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28568.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28568.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28569.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28569.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 28570.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 28570.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28570.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28571.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28571.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 28571.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 28572.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 28572.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28573.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 28573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 28574.000000] [simulator/INFO] on4 is sleeping +[on6:ON:(7) 28574.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28576.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28578.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28580.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28582.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28584.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28586.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28588.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28590.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28592.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28594.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28596.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28598.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28600.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28602.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28604.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28606.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28608.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28610.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28612.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28614.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28616.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28618.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28620.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28622.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28624.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28626.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28628.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28630.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28632.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28634.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28635.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28635.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 28635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28636.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28636.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28637.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28638.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28638.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28639.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28640.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28640.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28641.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28642.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28642.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28643.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28644.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28644.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28645.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28646.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28646.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28647.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28648.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28648.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28649.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28650.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28650.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28651.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28652.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28652.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28653.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28654.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28654.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28655.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28656.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28656.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28657.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28658.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28658.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28659.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28660.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28660.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28661.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28662.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28662.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28663.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28664.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28664.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28665.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28666.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28666.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28667.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28668.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28668.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28669.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28670.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28670.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28671.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28672.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28672.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28673.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28674.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28674.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28675.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28676.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28676.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28677.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28678.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28678.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28679.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28680.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28680.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28681.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28682.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28682.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28683.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28684.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28685.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28686.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28687.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28688.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28689.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28690.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28691.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28692.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 28693.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 28693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28694.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 28694.000000] [simulator/INFO] on6 is sleeping +[on5:ON:(6) 28695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28757.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28759.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28761.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28763.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28765.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28767.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28769.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28771.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28773.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28775.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28777.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28779.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28781.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28783.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28784.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28785.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28786.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28787.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28788.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28789.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28790.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28791.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28792.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28793.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28794.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28795.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28796.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28797.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28798.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28799.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28800.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28801.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28802.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28803.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28804.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28805.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28806.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28807.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28808.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28809.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28810.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28811.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28812.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28813.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28814.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 28815.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 28874.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 28874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 28998.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 28998.000000] [simulator/INFO] on1 wakes up +[on2:ON:(3) 28999.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 28999.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29000.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29000.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29001.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29001.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29002.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29002.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29003.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29003.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29004.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29004.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29005.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29005.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29006.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29006.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29007.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29007.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29008.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29008.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29009.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29009.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29010.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29010.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29011.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29011.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29012.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29012.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29013.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29013.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29014.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29014.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29015.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29015.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29016.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29016.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29017.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29017.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29018.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29018.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29019.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29019.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29020.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29020.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29021.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29021.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29022.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29022.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29023.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29023.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29024.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29024.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29025.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29025.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29026.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29026.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29027.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29027.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29028.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29028.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29029.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29029.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29030.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29030.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29031.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29031.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29032.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29032.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29033.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29033.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29034.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29034.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29035.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29035.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29036.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29036.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29037.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29037.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29038.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29038.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29039.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29039.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29040.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29040.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29041.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29041.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29042.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29042.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29043.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29043.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29044.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29044.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29045.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29045.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29046.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29046.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29047.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29047.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29048.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29048.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29049.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29049.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29050.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29050.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29051.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29051.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29052.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29052.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29053.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 29053.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 29054.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 29054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29091.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29092.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29093.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29094.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29095.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29095.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 29095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29096.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29096.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29097.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29097.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29098.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29098.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29099.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29099.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29100.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29100.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29101.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29101.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29102.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29102.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29103.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29103.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29104.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29104.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29105.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29105.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29106.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29106.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29107.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29107.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29108.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29108.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29109.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29109.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29110.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29110.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29111.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29111.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29112.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29112.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29113.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29113.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29114.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29114.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29115.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29115.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29116.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29116.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29117.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29117.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29118.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29118.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29119.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29119.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29120.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29120.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29121.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29121.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29122.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29122.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29123.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29123.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29124.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29124.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29125.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29125.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29126.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29126.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29127.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29127.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29128.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29128.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29129.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29129.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29130.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29130.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29131.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29131.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29132.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29132.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29133.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29133.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29134.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29134.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29135.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29135.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29136.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29136.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29137.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29137.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29138.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29138.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29139.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29139.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29140.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29140.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29141.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29141.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29142.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29142.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29143.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29143.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29144.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29144.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29145.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29145.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29146.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29146.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29147.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29147.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29148.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29148.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29149.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29149.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29150.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29150.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29151.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29151.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29152.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29152.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29153.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29153.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29154.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29154.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29155.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29155.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29156.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29156.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29157.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29157.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29158.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29158.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29159.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29159.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29160.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29160.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29161.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29161.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29162.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29162.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29163.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29163.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29164.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29164.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29165.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29165.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29166.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29166.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29167.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29167.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29168.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29168.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29169.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29169.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29170.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29170.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29171.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29171.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29171.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 29171.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29172.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29172.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29172.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29173.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29173.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29173.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29174.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29174.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29174.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29175.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29175.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29175.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29176.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29176.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29176.000000] [simulator/INFO] on1 could not receive any data +[on7:ON:(8) 29177.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29177.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 29177.000000] [simulator/INFO] on1 could not receive any data +[on3:ON:(4) 29178.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29178.000000] [simulator/INFO] on7 is observing his environment... +[on1:ON:(2) 29178.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 29178.000000] [simulator/INFO] on1 is sleeping +[on7:ON:(8) 29179.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29179.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29180.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29181.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29181.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29182.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29183.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29183.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29184.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29185.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29185.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29186.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29187.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29187.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29188.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29189.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29189.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29190.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29191.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29191.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29192.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29193.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29193.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29194.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29195.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29195.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29196.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29197.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29198.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29199.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29200.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29201.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29202.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29203.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29204.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29205.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29206.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29207.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29208.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29209.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29210.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29211.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29212.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29213.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29214.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29215.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29216.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29217.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29218.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29219.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29220.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29221.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29222.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29223.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29224.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29225.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29226.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29227.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29228.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 29229.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29230.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29230.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29230.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 29230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29231.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29231.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29232.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29232.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29233.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29233.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29234.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29234.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29235.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29235.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29236.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29236.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29237.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29237.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29238.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29238.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29239.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29239.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29240.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29240.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29241.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29241.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29242.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29242.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29243.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29243.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29244.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29244.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29245.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29245.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29246.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29246.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29247.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29247.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29248.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29248.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29249.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29249.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29250.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29250.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29251.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29251.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29252.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29252.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29253.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29253.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29254.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29254.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29255.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29255.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29256.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29256.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29257.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29257.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29258.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29258.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29258.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29258.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 29258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29259.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29259.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29259.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29260.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29260.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29260.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29261.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29261.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29261.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29262.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29262.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29262.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29263.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29263.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29263.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29264.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29264.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29264.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29265.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29265.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29265.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29266.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29266.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29266.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29267.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29267.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29267.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29268.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29268.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29268.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29269.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29269.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29269.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29270.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29270.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29270.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29271.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29271.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29271.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29272.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29272.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29272.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29273.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29273.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29273.000000] [simulator/INFO] on7 is observing his environment... +[on3:ON:(4) 29273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29274.000000] [simulator/INFO] on3 is observing his environment... +[on7:ON:(8) 29274.000000] [simulator/INFO] on7 is observing his environment... +[on4:ON:(5) 29274.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29275.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29275.000000] [simulator/INFO] on4 is observing his environment... +[on7:ON:(8) 29275.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 29275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29276.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29276.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29277.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29277.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29278.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29278.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29279.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29279.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29280.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29280.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29281.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29281.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29282.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29282.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29283.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29283.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29284.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29284.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29285.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29285.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29286.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29286.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29287.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29287.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29288.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29288.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29289.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29289.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29290.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29290.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29291.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29291.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29292.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29292.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29293.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29293.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29294.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29294.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29295.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29295.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29296.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29296.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29297.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29297.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29298.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29298.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29299.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29299.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29300.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29300.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29301.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29301.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29302.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29302.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29303.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29303.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29304.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29304.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29305.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29305.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29306.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29306.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29307.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29307.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29308.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29308.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29309.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29309.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29309.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29310.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29310.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29311.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29311.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29312.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29312.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29313.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29313.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29314.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29314.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29315.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29315.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29315.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29316.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29316.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29317.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29317.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29318.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29318.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29319.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29319.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29320.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29320.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29321.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29321.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29321.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29322.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29322.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29323.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29323.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29324.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29324.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29324.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29325.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29325.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29326.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29326.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29326.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29327.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29327.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29327.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29328.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29328.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29328.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29329.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29329.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29330.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29330.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29330.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29331.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29331.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29332.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29332.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29332.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29333.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29333.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29333.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29334.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29334.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29334.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29335.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29335.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29336.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29336.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29336.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29337.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29337.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29338.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29338.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29338.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29339.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29339.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29339.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29340.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29340.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29340.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29341.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29341.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29342.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29342.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29342.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29343.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29343.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29344.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29344.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29344.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29345.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29345.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29346.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29346.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29346.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29347.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29347.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29348.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29348.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29348.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29349.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29349.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 29350.000000] [simulator/INFO] on3 is observing his environment... +[on4:ON:(5) 29350.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29350.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29351.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29351.000000] [simulator/INFO] on4 is observing his environment... +[on3:ON:(4) 29351.000000] [simulator/INFO] on3 is sleeping +[on4:ON:(5) 29352.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29352.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29353.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29353.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29354.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29354.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29355.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29355.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29356.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29356.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29357.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29357.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29358.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29358.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29359.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29359.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29360.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29360.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29361.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29361.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29362.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29362.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29363.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29363.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29364.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29364.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29365.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29365.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29366.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29366.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29367.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29367.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29368.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29368.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29369.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29369.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29370.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29370.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29371.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29371.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29372.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29372.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29373.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29373.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29374.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29374.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29375.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29375.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29376.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29376.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29377.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29377.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29378.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29378.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29379.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29379.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29380.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29380.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29381.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29381.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29382.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29382.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29383.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29383.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29384.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29384.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29385.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29385.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29386.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29386.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29387.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29387.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29388.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29388.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29389.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29389.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29390.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29390.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29391.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29391.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29392.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29392.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29393.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29393.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29394.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29394.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29395.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29395.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29396.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29396.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29397.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29397.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29398.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29398.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29399.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29399.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29400.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29400.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29401.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29401.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29402.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29402.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29403.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29403.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29404.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29404.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29405.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29406.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29406.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29407.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29408.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 29408.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29409.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 29409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 29410.000000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 29410.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29411.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29412.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29413.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29414.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29415.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29416.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29417.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29418.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29419.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29420.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29421.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29422.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29423.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29424.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29425.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29426.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29427.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29428.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29429.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29430.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29431.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29432.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29433.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29434.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29435.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29436.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29437.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 29438.000000] [simulator/INFO] on12 is sleeping +[on8:ON:(9) 29610.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 29611.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29612.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29613.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29614.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29615.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29616.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29617.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29618.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29619.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29620.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29621.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29622.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29623.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29624.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29625.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29626.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29627.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29628.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29629.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29630.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29631.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29632.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29633.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29634.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29635.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29636.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29637.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29638.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29639.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29640.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29641.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29642.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29643.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29644.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29645.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29646.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29647.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29648.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29649.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29650.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29651.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29652.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29653.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29654.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29655.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29656.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29657.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29658.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29659.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29660.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29661.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29662.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29663.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29664.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29665.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29666.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29667.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29668.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29669.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29670.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29671.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29672.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29673.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29674.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29675.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29676.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29677.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29678.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29679.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29680.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29681.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29682.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29683.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29684.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29685.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29686.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29687.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29688.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29689.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29690.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29691.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29692.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29693.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29694.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29695.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29696.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29697.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29698.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29699.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29700.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29701.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29702.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29703.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29704.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29705.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29706.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29707.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29708.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29709.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29710.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29711.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29712.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29713.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29714.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29715.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29716.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29717.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29718.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29719.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29720.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29721.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29722.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29723.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29724.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29725.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29726.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29727.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29728.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29729.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29730.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29731.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29732.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29733.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29734.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29735.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29736.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29737.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29738.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29739.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29740.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29741.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29742.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29743.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29744.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29745.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29746.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29747.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29748.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29749.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29750.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29751.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29752.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29753.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29754.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29755.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29756.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29757.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29758.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29759.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29760.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29761.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29762.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29763.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29764.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29765.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29766.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29767.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29768.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29769.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29770.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29771.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29772.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29773.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29774.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29775.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29776.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29777.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29778.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29779.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29780.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29781.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29782.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29783.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29784.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29785.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29786.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29787.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29788.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29789.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29790.000000] [simulator/INFO] on8 could not receive any data +[on8:ON:(9) 29790.000000] [simulator/INFO] on8 is sleeping +[on0:ON:(1) 29996.000000] [simulator/INFO] on0 wakes up +[on11:ON:(12) 30051.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 30051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30052.010320] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 30052.010320] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 30053.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30054.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30054.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30055.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30056.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30056.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30057.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30058.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30058.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30059.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30060.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30060.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30061.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30062.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30062.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30063.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30064.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30064.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30065.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30066.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30066.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30067.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30068.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30068.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30069.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30070.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30070.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30071.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30072.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30072.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30073.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30074.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30074.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30075.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30076.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30076.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30077.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30078.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30078.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30079.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30080.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30080.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30081.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30082.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30082.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30083.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30084.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30084.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30085.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30086.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30086.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30087.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30088.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30088.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30089.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30090.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30090.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30091.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30092.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30092.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30093.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30094.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30094.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30095.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30096.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30096.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30097.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30098.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30098.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30099.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30100.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30100.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30101.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30102.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30102.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30103.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30104.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30104.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30105.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30106.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30106.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30107.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30108.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30108.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30109.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30110.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30110.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30111.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30112.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30112.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30113.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30114.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30114.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30115.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30116.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30116.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30117.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30118.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30118.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30119.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30120.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30120.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30121.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30122.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30122.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30123.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30124.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30124.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30125.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30126.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30126.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30127.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30128.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30128.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30129.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30130.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30130.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30131.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30132.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30132.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30133.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30134.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30134.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30135.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30136.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30136.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30137.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30138.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30138.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30139.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30140.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30140.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30141.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30142.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30142.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30143.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30144.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30144.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30145.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30146.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30146.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30147.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30148.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30148.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30149.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30150.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30150.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30151.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30152.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30152.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30153.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30154.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30154.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30155.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30156.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30156.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30157.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30158.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30158.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30159.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30160.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30160.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30161.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30162.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30162.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30163.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30164.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30164.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30165.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30166.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30166.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30167.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30168.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30168.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30169.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30170.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30170.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30171.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30172.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30172.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30173.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30174.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30174.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30175.010320] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 30176.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 30176.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30176.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30177.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30178.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30178.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30179.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30180.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30180.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30181.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30182.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30182.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30183.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30184.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30184.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30185.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30186.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30186.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30187.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30188.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30188.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30189.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30190.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30190.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30191.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30192.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30192.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30193.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30194.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30194.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30195.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30196.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30196.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30197.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30198.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30198.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30199.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30200.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30200.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30201.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30202.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30202.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30203.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30204.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30204.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30205.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30206.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30206.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30207.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30208.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30208.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30209.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30210.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30210.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30211.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30212.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30212.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30213.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30214.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30214.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30215.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30216.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30216.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30217.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30218.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30218.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30219.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30220.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30220.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30221.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30222.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30222.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30223.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30224.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30224.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30225.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30226.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30226.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30227.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30228.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30228.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30229.010320] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30230.010320] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 30230.010320] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 30231.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 30231.989680] [simulator/INFO] on11 is sleeping +[on5:ON:(6) 30516.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 30516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30569.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30569.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 30569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30570.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30571.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30572.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30573.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30574.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30575.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30576.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30577.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30578.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30579.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30580.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30581.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30582.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30583.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30584.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30585.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30586.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30587.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30588.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30589.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30590.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30591.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30592.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30593.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30594.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30595.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30596.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30597.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30598.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30599.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30600.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30601.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30602.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30603.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30604.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30605.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30606.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30607.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30608.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30609.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30610.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30611.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30612.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30613.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30614.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30615.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30616.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30617.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30618.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30619.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30620.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30621.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30622.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30623.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30624.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30625.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30626.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30627.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30628.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30629.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30630.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30631.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30632.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30633.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30634.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30635.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30636.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30637.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30638.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30639.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30640.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30641.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30642.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30643.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30644.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30645.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30646.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30647.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30648.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30649.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30650.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30651.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30652.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30653.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30654.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30655.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30656.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30657.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30658.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30659.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30660.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30661.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30662.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30663.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30664.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30665.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30666.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30667.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30668.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30669.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30670.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30671.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30672.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30673.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30674.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30675.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30676.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30677.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30678.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30679.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30680.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30681.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30682.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30683.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30683.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30684.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30685.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30686.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30687.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30688.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30689.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30690.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30691.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30692.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30693.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30694.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 30695.000000] [simulator/INFO] on5 is observing his environment... +[on6:ON:(7) 30695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30696.000000] [simulator/INFO] on6 is observing his environment... +[on5:ON:(6) 30696.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 30697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30715.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30717.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30719.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30720.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30721.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30722.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30723.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30724.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30725.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30726.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30727.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30728.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 30749.000000] [simulator/INFO] on6 is sleeping +[on10:ON:(11) 31065.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 31065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31077.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31079.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31081.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31083.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31085.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31087.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31089.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31091.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31093.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31095.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31097.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31175.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31177.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31179.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31181.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31183.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31185.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31187.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31189.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31191.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31193.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31195.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31197.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31199.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31201.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31203.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31205.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31207.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31209.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31211.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31213.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31215.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31217.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31219.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 31245.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 31644.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 31644.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31645.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31646.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31648.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31650.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 31824.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 32408.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 32408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32535.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32535.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 32535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32536.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32537.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32538.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32539.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32540.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32541.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32542.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32543.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32544.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32545.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32546.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32547.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32548.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32549.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32550.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32551.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32552.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32553.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32554.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32555.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32556.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32557.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32558.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32559.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32560.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32561.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32562.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32563.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32564.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32565.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32566.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32567.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32567.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32568.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32569.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32569.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32570.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32571.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32571.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32572.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32573.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32573.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32574.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32575.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32575.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32576.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32577.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32577.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32578.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32579.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32579.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32580.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32581.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32581.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32582.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32583.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32583.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32584.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32585.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32585.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32586.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 32587.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 32587.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32588.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 32588.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 32589.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32590.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32591.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32592.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32593.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32594.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32595.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32596.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32597.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32598.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32599.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32600.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32601.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32602.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32603.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32604.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32605.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32606.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32607.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32608.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32609.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32610.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32611.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32612.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32613.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32614.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32615.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32616.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32617.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32618.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32619.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32620.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32621.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32622.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32623.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32624.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32625.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32626.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32627.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32628.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32629.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32630.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32631.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32632.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32633.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32634.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32635.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32636.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32637.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32638.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32639.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32640.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32641.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32642.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32643.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32644.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32645.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32646.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32647.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32648.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32649.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32650.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32651.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32652.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32653.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32654.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32655.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32656.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32657.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32658.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32659.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32660.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32661.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32662.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32663.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32664.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32665.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32666.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32667.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32668.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32669.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32670.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32671.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32672.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32673.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32674.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32675.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32676.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32677.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 32715.000000] [simulator/INFO] on3 is sleeping +[on12:ON:(13) 33040.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 33040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 33220.000000] [simulator/INFO] on12 is sleeping +[on6:ON:(7) 33859.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 33859.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33861.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33863.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33865.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33867.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33869.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33871.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33873.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33875.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33877.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33879.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33881.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33883.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33885.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33887.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33889.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33891.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33893.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33895.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33897.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33899.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33901.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33903.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33905.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33907.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33909.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33911.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33913.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33915.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33917.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33919.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33921.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33923.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33925.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33927.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33929.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33931.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33933.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33935.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33937.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33963.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33965.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33967.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33969.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33971.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33973.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33975.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33979.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33981.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 33999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 34039.000000] [simulator/INFO] on6 is sleeping +[on10:ON:(11) 34264.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 34264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34265.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34267.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34269.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34271.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34273.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34275.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34277.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34279.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34281.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34283.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34285.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34287.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34289.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34291.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34293.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34295.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34297.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34299.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34301.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34303.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34305.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34307.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34309.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34311.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34313.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34315.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34317.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34319.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34320.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34321.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34322.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34325.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34327.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34329.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34331.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34440.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34441.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34442.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34443.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 34444.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 34643.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 34643.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34644.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34645.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34646.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34648.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34650.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34803.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34803.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 34803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34804.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34805.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34806.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34807.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34808.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34809.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34810.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34811.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34812.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34813.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34814.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34815.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34816.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34817.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34818.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34819.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34820.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34821.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 34821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34822.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 34822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 34823.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 34823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 34983.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 35152.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 35152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 35250.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35250.000000] [simulator/INFO] on1 wakes up +[on2:ON:(3) 35251.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35251.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35252.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35252.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35253.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35253.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35254.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35254.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35255.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35255.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35256.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35256.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35257.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35257.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35258.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35258.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35259.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35259.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35260.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35260.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35261.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35261.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35262.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35262.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35263.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35263.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35264.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35264.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35265.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35265.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35266.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35266.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35267.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35267.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35268.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35268.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35269.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35269.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35270.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35270.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35271.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35271.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35272.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35272.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35273.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35273.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35274.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35274.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35275.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35275.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35276.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35276.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35277.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35277.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35278.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35278.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35279.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35279.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35280.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35280.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35281.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35281.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35282.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35282.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35283.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35283.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35284.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35284.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35285.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35285.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35286.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35286.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35287.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35287.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35288.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35288.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35289.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35289.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35290.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35290.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35291.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35291.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35292.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35292.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35293.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35293.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35294.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35294.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35295.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35295.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35296.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35296.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35297.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35297.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35298.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35298.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35299.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35299.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35300.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35300.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35301.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35301.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35302.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35302.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35303.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35303.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35304.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35304.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35305.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35305.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35306.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35306.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35307.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35307.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35308.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35308.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35309.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35309.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35310.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35310.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35311.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35311.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35312.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35312.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35313.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35313.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35314.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35314.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35315.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35315.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35316.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35316.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35317.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35317.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35318.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35318.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35319.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35319.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35320.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35320.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35321.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35321.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35322.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35322.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35323.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35323.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35324.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35324.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35325.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35325.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35326.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35326.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35327.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35327.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35328.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35328.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35329.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35329.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35330.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35330.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35331.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 35331.000000] [simulator/INFO] on1 could not receive any data +[on2:ON:(3) 35332.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 35332.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35333.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35334.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35335.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35336.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35337.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35338.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35339.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35340.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35341.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35342.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35343.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35344.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35345.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35346.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35347.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35348.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35349.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35350.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35351.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35352.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35353.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35354.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35355.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35356.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35357.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35358.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35359.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35360.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35361.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35362.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35363.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35364.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35365.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35366.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35367.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35368.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35369.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35370.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35371.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35372.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35373.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35374.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35375.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35376.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35377.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35378.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35379.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35380.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35381.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35382.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35383.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35384.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35385.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35386.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35387.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35388.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35389.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35390.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35391.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35392.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35393.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35394.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35395.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35396.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35397.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35398.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35399.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35400.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35401.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35402.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35403.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35404.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35405.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35406.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35407.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35408.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35409.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35410.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35411.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35412.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35413.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35414.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35415.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35416.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35417.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35418.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35419.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35420.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35421.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35422.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35423.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35424.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35425.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35426.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35427.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35428.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35429.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35430.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 35430.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 35538.000000] [simulator/INFO] on0 wakes up +[on8:ON:(9) 35630.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 received a hint successfully +[on8:ON:(9) 35630.010320] [simulator/INFO] on8 try to forward a hint +[on0:ON:(1) 35630.010320] [simulator/INFO] on0 sent a hint successfully +[on8:ON:(9) 35630.310320] [simulator/INFO] on8 fail to forward a hint +[on11:ON:(12) 35650.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 35650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35670.000000] [simulator/INFO] on11 is observing his environment... +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 received data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 received a hint along with data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 35670.620640] [simulator/INFO] on0 sent data successfully +[on8:ON:(9) 35670.620640] [simulator/INFO] on8 try to forward a hint +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 received a hint successfully +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35670.630960] [simulator/INFO] on11 try to forward a hint +[on0:ON:(1) 35670.630960] [simulator/INFO] on0 sent a hint successfully +[on11:ON:(12) 35671.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35672.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35672.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35673.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35674.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35674.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35675.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35676.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35676.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35677.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35678.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35678.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35679.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35680.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35680.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35681.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35682.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35682.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35683.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35684.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35684.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35685.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35686.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35686.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35687.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35688.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35688.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35689.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35690.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35690.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35691.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35692.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35692.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35693.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35694.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35694.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35695.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35696.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35696.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35697.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35698.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35698.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35699.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35700.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35700.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35701.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35702.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35702.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35703.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35704.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35704.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35705.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35706.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35706.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35707.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35708.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35708.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35709.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35710.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35710.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35711.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35712.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35712.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35713.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35714.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35714.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35715.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35716.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35716.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35717.630960] [simulator/INFO] on11 fail to forward a hint +[on0:ON:(1) 35718.000000] [simulator/INFO] on0 is sleeping +[on11:ON:(12) 35718.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35718.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35719.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35720.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35720.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35721.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35722.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35722.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35723.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35724.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35724.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35725.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35726.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35726.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35727.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35728.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35728.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35729.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35730.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35730.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35731.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35732.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35732.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35733.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35734.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35734.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35735.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35736.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35736.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35737.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35738.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35738.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35739.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35740.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35740.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35741.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35742.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35742.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35743.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35744.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35744.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35745.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35746.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35746.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35747.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35748.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35748.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35749.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35750.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35750.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35751.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35752.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35752.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35753.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35754.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35754.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35755.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35756.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35756.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35757.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35758.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35758.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35759.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35760.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35760.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35761.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35762.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35762.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35763.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35764.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35764.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35765.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35766.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35766.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35767.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35768.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35768.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35769.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35770.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35770.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35771.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35772.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35772.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35773.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35774.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35774.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35775.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35776.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35776.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35777.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35778.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35778.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35779.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35780.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35780.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35781.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35782.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35782.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35783.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35784.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35784.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35785.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35786.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35786.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35787.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35788.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35788.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35789.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35790.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35790.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35791.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35792.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35792.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35793.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35794.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35794.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35795.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35796.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35796.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35797.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35798.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35798.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35799.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35800.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35800.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35801.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35802.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35802.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35803.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35804.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35804.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35805.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35806.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35806.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35807.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35808.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35808.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35809.630960] [simulator/INFO] on11 fail to forward a hint +[on8:ON:(9) 35810.000000] [simulator/INFO] on8 fail to forward a hint +[on11:ON:(12) 35810.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35810.630960] [simulator/INFO] on11 try to forward a hint +[on8:ON:(9) 35811.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 35811.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35812.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35812.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35813.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35814.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35814.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35815.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35816.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35816.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35817.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35818.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35818.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35819.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35820.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35820.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35821.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35822.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35822.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35823.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35824.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35824.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35825.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35826.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35826.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35827.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35828.630960] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 35828.630960] [simulator/INFO] on11 try to forward a hint +[on11:ON:(12) 35829.630960] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 35830.630960] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 35833.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 35833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35834.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35836.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35838.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35840.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35842.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35844.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35846.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35848.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35850.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35852.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35854.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35856.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35858.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35860.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35862.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35864.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35866.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35868.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35870.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35872.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35873.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35874.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35875.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35876.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35877.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35878.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35879.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35880.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35881.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35882.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35883.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35884.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35885.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35886.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35887.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35888.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35890.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35892.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35894.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35896.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35898.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35900.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35902.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35904.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35906.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35908.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35910.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35912.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35914.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35916.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35918.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35920.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35922.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35924.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35926.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35928.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35930.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35932.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35934.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35936.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35937.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35938.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35939.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35940.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35941.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35942.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35943.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35944.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35945.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35946.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35947.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35948.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35949.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35950.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35951.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35952.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35953.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35954.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35955.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35956.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35957.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35958.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35959.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35960.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35961.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35962.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35963.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35964.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35965.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35966.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35967.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35968.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35969.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35970.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35971.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35972.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35973.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35974.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35975.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35976.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35977.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35978.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35979.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35980.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35981.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35982.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35983.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35984.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35985.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35986.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35987.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35988.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35989.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35990.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35991.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35992.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35993.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35994.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35995.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35996.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35997.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35998.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 35999.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36000.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36001.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36002.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36003.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36004.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36005.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36006.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36007.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36008.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36009.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36010.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36011.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36012.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36013.000000] [simulator/INFO] on4 is sleeping +[on4:ON:(5) 36097.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 36097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36098.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36100.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36102.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36104.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36106.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36108.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36110.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36112.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36114.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36116.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36118.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36267.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36268.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36269.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36270.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36271.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36272.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36273.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36274.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36275.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36276.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 36277.000000] [simulator/INFO] on4 is sleeping +[on3:ON:(4) 36702.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 36702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36732.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36734.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36736.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36738.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36740.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36742.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36744.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36746.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36748.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36750.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36752.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36754.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36756.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36758.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36760.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36762.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36764.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36766.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36768.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36770.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36772.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36774.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36776.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36778.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36780.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36782.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36782.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 36782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36783.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36784.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36785.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36786.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36787.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36788.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36789.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36790.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36791.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36792.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36793.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36794.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36795.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36796.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36797.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36798.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36799.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36800.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36801.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36802.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36803.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36804.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36805.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36806.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36807.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36808.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36809.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36810.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36811.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36812.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36813.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36814.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36815.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36816.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36817.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36818.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36819.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36820.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36821.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36822.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36823.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36824.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36825.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36826.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36827.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36828.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36829.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36830.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36831.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36832.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36833.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36834.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36835.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36836.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36837.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36838.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36839.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36840.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36841.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36842.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36843.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36843.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 36843.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 36843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 36844.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 36844.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36844.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 36844.000000] [simulator/INFO] on11 try to forward a hint +[on6:ON:(7) 36845.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36846.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36847.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36848.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36849.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36850.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36851.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36852.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36853.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36854.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36855.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36856.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36857.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36858.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36859.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36860.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36861.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36862.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36863.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36864.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36865.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36866.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36867.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36868.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36869.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36870.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36871.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36872.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36873.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36874.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36875.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36876.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36877.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36878.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36879.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36880.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 36880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36881.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 36881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 36882.000000] [simulator/INFO] on3 is sleeping +[on6:ON:(7) 36882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36883.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36885.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36887.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36889.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36891.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36893.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36895.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36897.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36899.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36901.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36903.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36905.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36907.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36909.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36911.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36913.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36915.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36917.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36919.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36921.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36923.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36925.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36927.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36929.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36931.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36933.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36935.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36937.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 36962.000000] [simulator/INFO] on6 is sleeping +[on11:ON:(12) 37023.000000] [simulator/INFO] on11 fail to forward a hint +[on11:ON:(12) 37024.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 37074.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 37074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37140.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37142.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 37254.000000] [simulator/INFO] on12 is sleeping +[on9:ON:(10) 37292.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 37292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37293.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37295.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37297.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37299.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37301.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37303.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37305.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37383.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37383.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 37383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37384.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37385.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37386.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37387.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37388.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37389.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37390.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37391.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37392.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37393.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37394.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37395.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37396.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37397.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37398.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37399.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37400.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37401.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37402.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37403.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37403.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37404.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37405.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37406.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37407.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37408.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37409.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37409.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37410.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37411.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37412.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37413.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37414.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37415.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37415.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37416.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37417.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37417.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37418.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37419.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37419.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37420.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37421.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37421.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37422.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37423.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37423.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37424.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37425.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37426.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37427.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37428.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37429.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37430.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37431.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37432.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37433.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37434.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37435.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37436.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37437.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37438.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37439.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37440.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37441.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37442.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37443.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37444.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37445.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37446.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37447.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37448.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37449.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37450.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37451.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37452.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37453.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37454.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37455.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37456.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37457.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37457.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37458.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37459.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37459.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37460.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37461.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37461.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37462.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37463.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37463.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37464.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37465.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37465.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37466.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37466.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37467.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37467.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37468.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37468.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37469.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37469.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37470.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37470.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 37471.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 37471.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37472.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 37472.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 37473.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37474.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37475.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37476.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37477.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37478.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37479.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37480.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37482.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37484.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37486.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37488.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37490.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37492.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37494.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37496.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37498.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37500.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37502.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37504.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37506.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 37563.000000] [simulator/INFO] on7 is sleeping +[on1:ON:(2) 37910.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 37911.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37912.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37913.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37914.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37915.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37916.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37917.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37918.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37919.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37920.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37921.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37922.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37923.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37924.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37925.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37926.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37927.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37928.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37929.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37930.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37931.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37932.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37933.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37934.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37935.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37936.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37937.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37938.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37939.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37940.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37941.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37942.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37943.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37944.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37945.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37946.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37947.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37948.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37949.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37950.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37951.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37952.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37953.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37954.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37955.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37956.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37957.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37958.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37959.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37960.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37961.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37962.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37963.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37964.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37965.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37966.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37967.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37968.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37969.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37970.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37971.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37972.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37973.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37974.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37975.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37976.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37977.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37978.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37979.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37980.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37981.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37982.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37983.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37984.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37985.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37986.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37987.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37988.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37989.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37990.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37991.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37992.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37993.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37994.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37995.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37996.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37997.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37998.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 37999.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38000.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38001.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38002.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38003.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38004.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38005.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38006.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38007.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38008.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38009.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38010.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38011.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38012.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38013.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38014.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38015.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38016.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38017.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38018.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38019.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38020.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38021.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38022.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38023.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38024.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38025.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38026.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38027.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38028.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38029.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38030.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38031.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38032.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38033.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38034.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38035.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38036.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38037.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38038.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38039.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38040.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38041.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38042.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38043.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38044.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38045.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38046.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38047.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38048.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38049.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38050.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38051.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38052.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38053.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38054.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38055.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38056.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38057.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38058.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38059.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38060.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38061.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38062.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38063.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38064.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38065.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38066.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38067.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38068.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38069.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38070.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38071.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38072.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38073.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38074.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38075.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38076.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38077.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38078.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38079.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38080.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38081.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38082.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38083.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38084.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38085.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38086.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38087.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38088.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38089.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38090.000000] [simulator/INFO] on1 could not receive any data +[on1:ON:(2) 38090.000000] [simulator/INFO] on1 is sleeping +[on0:ON:(1) 38215.000000] [simulator/INFO] on0 wakes up +[on8:ON:(9) 38215.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 38215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 received a hint successfully +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38216.010320] [simulator/INFO] on8 try to forward a hint +[on0:ON:(1) 38216.010320] [simulator/INFO] on0 sent a hint successfully +[on8:ON:(9) 38217.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38218.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38218.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38219.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38220.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38220.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38221.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38222.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38222.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38223.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38224.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38224.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38225.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38226.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38226.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38227.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38228.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38228.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38229.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38230.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38230.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38231.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38232.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38232.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38233.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38234.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38234.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38235.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38236.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38236.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38237.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38238.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38238.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38239.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38240.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38240.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38241.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38242.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38242.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38243.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38244.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38244.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38245.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38246.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38246.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38247.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38248.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38248.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38249.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38250.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38250.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38251.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38252.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38252.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38253.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38254.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38254.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38255.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38256.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38256.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38257.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38258.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38258.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38259.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38260.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38260.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38261.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38262.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38262.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38263.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38264.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38264.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38265.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38266.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38266.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38267.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38268.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38268.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38269.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38270.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38270.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38271.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38272.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38272.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38273.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38274.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38274.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38275.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38276.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38276.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38277.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38278.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38278.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38279.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38280.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38280.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38281.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38282.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38282.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38283.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38284.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38284.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38285.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38286.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38286.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38287.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38288.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38288.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38289.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38290.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38290.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38291.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38292.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38292.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38293.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38294.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38294.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38295.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38296.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38296.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38297.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38298.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38298.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38299.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38300.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38300.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38301.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38302.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38302.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38303.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38304.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38304.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38305.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38306.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38306.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38307.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38308.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38308.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38309.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38310.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38310.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38311.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38312.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38312.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38313.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38314.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38314.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38315.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38316.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38316.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38317.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38318.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38318.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38319.010320] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 38320.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38320.010320] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 38321.010320] [simulator/INFO] on8 fail to forward a hint +[on10:ON:(11) 38322.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 38322.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 38322.010320] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 38322.010320] [simulator/INFO] on8 try to forward a hint +[on10:ON:(11) 38323.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 received a hint successfully +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38323.010320] [simulator/INFO] on10 try to forward a hint +[on0:ON:(1) 38323.010320] [simulator/INFO] on0 sent a hint successfully +[on10:ON:(11) 38324.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38325.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38325.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38326.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38327.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38327.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38328.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38329.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38329.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38330.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38331.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38331.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38332.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38333.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38333.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38334.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38335.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38335.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38336.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38337.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38337.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38338.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38339.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38339.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38340.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38341.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38341.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38342.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38343.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38343.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38344.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38345.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38345.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38346.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38347.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38347.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38348.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38349.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38349.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38350.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38351.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38351.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38352.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38353.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38353.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38354.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38355.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38355.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38356.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38357.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38357.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38358.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38359.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38359.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38360.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38361.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38361.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38362.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38363.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38363.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38364.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38365.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38365.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38366.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38367.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38367.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38368.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38369.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38369.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38370.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38371.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38371.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38372.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38373.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38373.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38374.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38375.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38375.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38376.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38377.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38377.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38378.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38379.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38379.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38380.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38381.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38381.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38382.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38383.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38383.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38384.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38385.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38385.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38386.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38387.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38387.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38388.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38389.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38389.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38390.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38391.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38391.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38392.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38393.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38393.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38394.010320] [simulator/INFO] on10 fail to forward a hint +[on8:ON:(9) 38395.000000] [simulator/INFO] on8 fail to forward a hint +[on0:ON:(1) 38395.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 38395.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38395.010320] [simulator/INFO] on10 try to forward a hint +[on8:ON:(9) 38396.000000] [simulator/INFO] on8 is sleeping +[on10:ON:(11) 38396.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38397.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38397.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38398.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38399.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38399.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38400.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38401.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38401.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38402.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38403.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38403.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38404.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38405.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38405.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38406.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38407.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38407.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38408.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38409.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38409.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38410.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38411.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38411.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38412.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38413.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38413.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38414.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38415.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38415.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38416.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38417.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38417.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38418.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38419.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38419.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38420.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38421.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38421.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38422.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38423.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38423.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38424.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38425.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38425.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38426.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38427.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38427.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38428.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38429.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38429.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38430.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38431.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38431.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38432.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38433.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38433.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38434.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38435.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38435.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38436.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38437.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38437.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38438.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38439.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38439.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38440.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38441.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38441.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38442.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38443.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38443.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38444.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38445.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38445.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38446.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38447.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38447.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38448.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38449.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38449.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38450.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38451.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38451.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38452.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38453.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38453.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38454.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38455.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38455.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38456.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38457.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38457.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38458.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38459.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38459.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38460.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38461.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38461.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38462.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38463.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38463.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38464.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38465.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38465.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38466.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38467.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38467.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38468.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38469.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38469.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38470.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38471.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38471.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38472.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38473.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38473.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38474.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38475.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38475.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38476.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38477.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38477.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38478.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38479.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38479.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38480.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38481.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38481.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38482.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38483.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38483.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38484.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38485.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38485.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38486.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38487.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38487.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38488.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38489.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38489.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38490.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38491.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38491.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38492.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38493.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38493.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38494.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38495.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38495.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38496.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38497.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38497.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38498.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38499.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38499.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38500.010320] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38501.010320] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 38501.010320] [simulator/INFO] on10 try to forward a hint +[on10:ON:(11) 38502.000000] [simulator/INFO] on10 fail to forward a hint +[on10:ON:(11) 38502.989680] [simulator/INFO] on10 is sleeping +[on5:ON:(6) 38574.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 38574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 38754.000000] [simulator/INFO] on5 is sleeping +[on2:ON:(3) 38827.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 38827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 38999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 39007.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 39574.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 39574.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39575.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39575.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39576.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39577.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39578.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39578.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39579.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39581.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39581.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39582.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39583.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39584.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39584.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39585.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39586.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39587.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39587.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39588.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39589.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39590.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39590.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39591.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39592.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39593.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39593.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39594.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39595.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39596.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39596.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39597.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39598.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39599.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39599.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39600.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39601.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39602.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39602.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39603.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39604.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39605.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39605.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39606.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39607.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39608.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39608.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39609.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39610.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39611.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39611.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39612.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39613.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39614.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39614.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39615.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39616.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39617.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39617.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39618.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39619.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39620.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39620.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39621.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39622.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39623.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39623.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39624.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39625.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39626.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39626.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39627.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39628.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39629.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39629.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39630.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39631.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39632.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39632.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39633.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39634.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39635.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39635.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39636.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39637.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39638.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39638.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39639.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39640.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39641.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39641.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39642.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39643.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39644.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39644.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39645.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39646.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39647.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39647.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39648.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39649.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39650.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39650.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39651.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39652.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39653.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39653.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39654.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39655.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39656.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39656.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39657.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39658.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39659.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39659.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39660.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39661.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39662.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39662.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39663.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39664.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39665.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39665.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39666.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39667.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39668.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39668.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39669.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39670.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39671.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39671.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39672.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39673.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39674.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39674.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39675.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39676.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39677.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39677.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39678.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39679.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39680.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39680.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39681.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39682.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39683.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39683.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39684.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39685.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39686.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39686.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39687.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39688.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39689.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39689.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39690.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39691.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39692.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39692.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39693.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39694.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39695.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39695.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39696.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39697.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39698.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39698.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39699.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39700.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39701.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39701.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39702.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39703.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39704.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39704.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39705.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39706.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39707.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39707.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39708.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39709.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39710.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39710.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39711.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39712.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39713.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39713.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39714.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39715.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39716.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39716.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39717.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39718.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39719.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39719.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39720.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39721.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39722.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39722.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39723.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39724.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39725.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39725.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39726.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39727.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39728.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39728.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39729.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39730.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39731.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39731.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39732.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39733.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39734.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39734.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39735.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39736.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39737.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39737.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39738.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39739.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39740.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39740.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39741.000000] [simulator/INFO] on8 fail to forward a hint +[on10:ON:(11) 39741.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 39741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 39742.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 39742.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 39742.000000] [simulator/INFO] on10 try to forward a hint +[on8:ON:(9) 39743.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39743.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39744.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39746.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39747.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39749.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39750.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 39752.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 39753.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 39754.000000] [simulator/INFO] on8 is sleeping +[on7:ON:(8) 39764.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 39764.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39766.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39768.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39770.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39772.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39774.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39776.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39778.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39780.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39782.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39784.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39786.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39788.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39790.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39792.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39794.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39796.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39798.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39800.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39802.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39804.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39806.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39808.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39810.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39812.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39814.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39815.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39816.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39817.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39818.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39819.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39820.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39821.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39822.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39823.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39824.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39825.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39826.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39827.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39828.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39829.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39830.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39831.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39832.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39833.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39834.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39835.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39836.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39838.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39840.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39842.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39844.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39846.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39848.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39850.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39852.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39854.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39856.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39858.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39860.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39862.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39864.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39866.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39868.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39870.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39872.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39874.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39876.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39920.000000] [simulator/INFO] on7 is observing his environment... +[on10:ON:(11) 39921.000000] [simulator/INFO] on10 fail to forward a hint +[on7:ON:(8) 39921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39922.000000] [simulator/INFO] on7 is observing his environment... +[on10:ON:(11) 39922.000000] [simulator/INFO] on10 is sleeping +[on7:ON:(8) 39923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 39944.000000] [simulator/INFO] on7 is sleeping +[on2:ON:(3) 41051.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 41051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 41231.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 41344.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 41344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41345.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41346.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41348.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41349.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41351.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41352.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41354.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41355.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41357.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41358.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41360.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41361.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41363.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41364.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41366.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41367.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41369.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41370.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41372.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41373.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41375.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41376.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41378.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41379.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41381.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41382.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41384.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41385.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41387.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41388.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41390.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41391.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41393.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41394.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41396.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41397.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41399.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41400.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41402.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41403.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41405.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41406.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41408.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41409.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41411.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41412.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41414.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41415.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41417.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41418.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41420.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41421.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41423.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41424.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41426.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41427.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41429.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41430.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41432.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41433.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41435.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41436.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41438.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41439.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41441.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41442.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41444.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41445.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41447.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41448.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41450.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41451.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41453.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41454.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41456.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41457.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41459.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41460.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41462.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41463.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41465.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41465.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41466.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41467.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41468.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41469.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41471.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41471.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41472.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41473.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41474.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41475.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41477.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41477.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41478.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41479.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41480.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41481.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41483.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41483.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41484.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41485.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41486.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41487.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41489.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41489.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41490.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41491.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41492.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41493.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41495.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41495.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41496.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41497.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41498.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41499.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41501.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41501.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41502.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41503.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41504.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41505.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41507.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41507.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41508.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41509.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41510.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41510.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41511.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41512.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41513.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41513.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41514.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41515.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41516.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41516.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41517.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41518.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41519.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41519.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41520.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41521.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41522.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 41522.000000] [simulator/INFO] on8 try to forward a hint +[on8:ON:(9) 41523.000000] [simulator/INFO] on8 fail to forward a hint +[on8:ON:(9) 41524.000000] [simulator/INFO] on8 is sleeping +[on11:ON:(12) 41612.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 41612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41613.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41615.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41617.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41619.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41621.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41623.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41625.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41627.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41629.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41631.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41633.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41635.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41637.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41647.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41647.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 41647.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41648.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41649.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41649.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41650.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41651.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41651.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41652.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41653.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41653.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41654.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41655.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41655.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41656.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41657.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41657.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41658.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41659.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41659.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41660.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41661.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41661.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41662.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41663.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41663.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41664.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41665.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41665.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41666.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41667.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41667.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41668.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41669.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41669.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41670.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41671.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41671.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41672.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41673.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41673.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41674.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41675.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41675.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41676.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41677.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41677.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41678.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41679.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41679.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41680.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41681.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41681.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41682.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41683.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41683.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41684.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41684.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41685.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41685.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41686.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41686.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41687.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41687.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41688.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41688.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41689.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41689.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41690.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41690.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41691.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41691.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41692.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41692.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41693.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41693.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41694.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41694.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41695.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41695.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41696.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41696.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41697.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41697.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41698.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41698.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41699.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41699.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41700.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41700.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41701.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41701.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41702.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41702.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41703.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41703.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41704.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41704.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41705.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41706.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41706.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41707.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41708.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41708.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41709.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41710.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41710.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41711.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41712.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41712.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41713.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41714.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41714.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41715.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41716.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41716.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41717.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41718.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41718.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41719.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41720.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41720.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41721.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41722.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41722.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41723.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41724.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41724.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41725.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41726.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41726.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41727.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41728.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41728.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41729.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41730.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41730.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41731.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41732.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41732.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41733.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41734.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41734.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41735.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41736.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41736.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41737.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41738.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41738.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41739.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41740.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41740.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41741.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41742.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41742.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41743.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41744.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41744.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41745.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41746.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41746.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41747.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41748.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41748.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41749.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41750.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41750.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41751.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41752.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41752.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41753.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41754.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41754.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41755.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41756.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41756.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41757.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41758.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41758.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41759.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41760.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41760.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41761.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41762.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41762.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41763.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41764.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41764.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41765.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41766.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41766.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41767.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41768.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41768.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41769.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41770.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41770.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41771.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41772.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41772.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41773.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41774.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41774.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41775.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41776.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41776.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41777.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41778.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41778.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41779.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41780.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41780.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41781.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41782.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41782.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41783.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41784.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41784.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 41785.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41786.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41786.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41786.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 41786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41787.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41787.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41788.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41788.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41789.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41789.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41790.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41790.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 41790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41791.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 41791.000000] [simulator/INFO] on11 is observing his environment... +[on9:ON:(10) 41791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41792.000000] [simulator/INFO] on9 is observing his environment... +[on11:ON:(12) 41792.000000] [simulator/INFO] on11 is sleeping +[on3:ON:(4) 41792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41793.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41794.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41795.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41796.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41797.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41798.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41799.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41800.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41801.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41802.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41803.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41804.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41805.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41806.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41807.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41808.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41809.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41810.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41811.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41812.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41813.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41814.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41815.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41816.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41817.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41818.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41819.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41820.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41821.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41822.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41823.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41824.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41825.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 41826.000000] [simulator/INFO] on9 is observing his environment... +[on3:ON:(4) 41826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41827.000000] [simulator/INFO] on3 is observing his environment... +[on9:ON:(10) 41827.000000] [simulator/INFO] on9 is sleeping +[on3:ON:(4) 41828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41874.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41896.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41898.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41900.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41902.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 41966.000000] [simulator/INFO] on3 is sleeping +[on12:ON:(13) 42084.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 42084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42103.000000] [simulator/INFO] on12 is observing his environment... +[on0:ON:(1) 42103.000000] [simulator/INFO] on0 wakes up +[on12:ON:(13) 42104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 received a hint successfully +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42104.010320] [simulator/INFO] on12 try to forward a hint +[on0:ON:(1) 42104.010320] [simulator/INFO] on0 sent a hint successfully +[on12:ON:(13) 42105.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42106.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42106.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42107.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42108.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42108.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42109.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42110.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42110.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42111.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42112.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42112.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42113.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42114.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42114.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42115.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42116.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42116.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42117.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42118.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42118.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42119.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42120.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42120.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42121.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42122.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42122.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42123.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42124.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42124.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42125.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42126.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42126.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42127.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42128.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42128.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42129.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42130.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42130.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42131.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42132.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42132.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42133.010320] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 42134.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42134.010320] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 42135.010320] [simulator/INFO] on12 fail to forward a hint +[on5:ON:(6) 42136.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 42136.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 42136.010320] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 42136.010320] [simulator/INFO] on12 try to forward a hint +[on5:ON:(6) 42137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 received a hint successfully +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42137.010320] [simulator/INFO] on5 try to forward a hint +[on0:ON:(1) 42137.010320] [simulator/INFO] on0 sent a hint successfully +[on5:ON:(6) 42138.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42139.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42139.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42140.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42141.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42141.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42142.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42143.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42143.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42144.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42145.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42145.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42146.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42147.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42147.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42148.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42149.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42149.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42150.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42151.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42151.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42152.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42153.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42153.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42154.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42155.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42155.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42156.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42157.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42157.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42158.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42159.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42159.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42160.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42161.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42161.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42162.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42163.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42163.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42164.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42165.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42165.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42166.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42167.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42167.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42168.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42169.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42169.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42170.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42171.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42171.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42172.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42173.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42173.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42174.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42175.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42175.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42176.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42177.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42177.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42178.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42179.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42179.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42180.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42181.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42181.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42182.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42183.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42183.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42184.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42185.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42185.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42186.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42187.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42187.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42188.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42189.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42189.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42190.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42191.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42191.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42192.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42193.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42193.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42194.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42195.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42195.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42196.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42197.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42197.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42198.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42199.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42199.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42200.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42201.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42201.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42202.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42203.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42203.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42204.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42205.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42205.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42206.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42207.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42207.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42208.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42209.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42209.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42210.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42211.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42211.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42212.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42213.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42213.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42214.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42215.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42215.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42216.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42217.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42217.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42218.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42219.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42219.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42220.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42221.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42221.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42222.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42223.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42223.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42224.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42225.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42225.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42226.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42227.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42227.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42228.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42229.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42229.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42230.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42231.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42231.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42232.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42233.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42233.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42234.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42235.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42235.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42236.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42237.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42237.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42238.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42239.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42239.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42240.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42241.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42241.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42242.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42243.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42243.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42244.010320] [simulator/INFO] on5 fail to forward a hint +[on1:ON:(2) 42245.000000] [simulator/INFO] on1 wakes up +[on5:ON:(6) 42245.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42245.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42246.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42247.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42247.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42248.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42249.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42249.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42250.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42251.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42251.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42252.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42253.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42253.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42254.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42255.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42255.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42256.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42257.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42257.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42258.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42259.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42259.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42260.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42261.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42261.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42262.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42263.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42263.010320] [simulator/INFO] on5 try to forward a hint +[on12:ON:(13) 42264.000000] [simulator/INFO] on12 fail to forward a hint +[on5:ON:(6) 42264.010320] [simulator/INFO] on5 fail to forward a hint +[on12:ON:(13) 42265.000000] [simulator/INFO] on12 is sleeping +[on5:ON:(6) 42265.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42265.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42266.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42267.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42267.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42268.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42269.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42269.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42270.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42271.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42271.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42272.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42273.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42273.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42274.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42275.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42275.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42276.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42277.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42277.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42278.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42279.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42279.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42280.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42281.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42281.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42282.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42283.010320] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 42283.010320] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 42284.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42285.010320] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 received data successfully +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 received a hint along with data successfully +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 is observing his environment... +[on0:ON:(1) 42285.010320] [simulator/INFO] on0 sent data successfully +[on5:ON:(6) 42285.010320] [simulator/INFO] on5 try to forward a hint +[on1:ON:(2) 42285.010320] [simulator/INFO] on1 try to forward a hint +[on0:ON:(1) 42285.010320] [simulator/INFO] on0 is sleeping +[on1:ON:(2) 42286.010320] [simulator/INFO] on1 fail to forward a hint +[on5:ON:(6) 42286.010320] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 42287.010320] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 42287.010320] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 42287.010320] [simulator/INFO] on5 try to forward a hint +[on1:ON:(2) 42288.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42288.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42289.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42290.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42291.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42291.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42292.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42293.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42294.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42294.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42295.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42296.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42297.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42297.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42298.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42299.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42300.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42300.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42301.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42302.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42303.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42303.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42304.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42305.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42306.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42306.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42307.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42308.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42309.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42309.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42310.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42311.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42312.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42312.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42313.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42314.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42315.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42315.010320] [simulator/INFO] on1 try to forward a hint +[on5:ON:(6) 42316.000000] [simulator/INFO] on5 fail to forward a hint +[on1:ON:(2) 42316.010320] [simulator/INFO] on1 fail to forward a hint +[on5:ON:(6) 42317.000000] [simulator/INFO] on5 is sleeping +[on1:ON:(2) 42317.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42318.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42318.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42319.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42320.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42321.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42321.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42322.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42323.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42324.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42324.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42325.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42326.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42327.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42327.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42328.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42329.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42330.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42330.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42331.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42332.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42333.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42333.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42334.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42335.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42336.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42336.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42337.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42338.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42339.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42339.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42340.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42341.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42342.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42342.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42343.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42344.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42345.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42345.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42346.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42347.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42348.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42348.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42349.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42350.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42351.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42351.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42352.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42353.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42354.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42354.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42355.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42356.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42357.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42357.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42358.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42359.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42360.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42360.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42361.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42362.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42363.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42363.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42364.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42365.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42366.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42366.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42367.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42368.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42369.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42369.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42370.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42371.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42372.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42372.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42373.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42374.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42375.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42375.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42376.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42377.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42378.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42378.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42379.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42380.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42381.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42381.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42382.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42383.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42384.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42384.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42385.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42386.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42387.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42387.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42388.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42389.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42390.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42390.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42391.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42392.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42393.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42393.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42394.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42395.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42396.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42396.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42397.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42398.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42399.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42399.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42400.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42401.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42402.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42402.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42403.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42404.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42405.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42405.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42406.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42407.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42408.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42408.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42409.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42410.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42411.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42411.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42412.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42413.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42414.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42414.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42415.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42416.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42417.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42417.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42418.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42419.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42420.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42420.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42421.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42422.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42423.010320] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 42423.010320] [simulator/INFO] on1 try to forward a hint +[on1:ON:(2) 42424.010320] [simulator/INFO] on1 fail to forward a hint +[on1:ON:(2) 42425.010320] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 42939.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 42939.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42941.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42943.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42945.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42947.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42949.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42951.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42953.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42955.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42957.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42959.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42961.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42963.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42965.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42967.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42969.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42971.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42973.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42975.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42979.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42981.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 42999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43039.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43040.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43041.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43042.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43043.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43044.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43045.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43046.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43047.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43048.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43049.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43050.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43051.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43052.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43053.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43054.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43055.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43056.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43057.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43058.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43059.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43060.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43061.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43062.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43063.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43064.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43065.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43066.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43067.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43068.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43069.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43070.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43071.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43072.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43073.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43074.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43075.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43076.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43077.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43078.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43079.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43080.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43081.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43082.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43083.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43084.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43085.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43086.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43087.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43087.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 43087.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43088.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43088.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43089.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43089.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43090.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43090.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43091.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43091.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43092.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43092.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43093.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43094.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43094.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43095.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43096.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43096.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43097.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43098.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43098.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43099.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43100.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43100.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43101.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43102.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43102.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43103.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43104.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43104.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43105.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43106.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43106.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43107.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43108.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43108.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43109.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43110.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43110.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43111.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43112.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43112.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43113.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43114.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43114.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43115.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43116.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43116.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43117.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 43117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43118.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 43118.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 43119.000000] [simulator/INFO] on6 is sleeping +[on4:ON:(5) 43119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43267.000000] [simulator/INFO] on4 is sleeping +[on4:ON:(5) 43375.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 43375.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43376.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43377.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43378.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43379.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43380.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43381.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43382.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43383.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43384.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43385.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43386.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43387.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43388.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43389.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43390.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43391.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43392.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43393.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43394.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43395.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43396.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43397.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43398.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43399.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43400.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43401.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43402.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43403.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43404.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43406.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43408.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43410.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43411.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43412.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43413.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43414.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43415.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43416.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43417.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43418.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43419.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43420.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43421.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43422.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43423.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43424.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43425.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43426.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43427.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43428.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43429.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43430.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43431.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43432.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43433.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43434.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43435.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43436.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43437.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43438.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43439.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43440.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43441.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43442.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43443.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43444.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43445.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43446.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43447.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43448.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43449.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43450.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43451.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43452.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43453.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43454.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43455.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43456.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43457.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43458.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43459.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43460.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43461.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43462.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43463.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43464.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43465.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43466.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43467.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43468.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43469.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43470.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43471.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43472.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43473.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43474.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43475.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43476.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43477.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43507.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43509.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43511.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43513.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43514.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43515.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43516.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43517.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43518.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43524.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43526.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43528.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43530.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 43555.000000] [simulator/INFO] on4 is sleeping +[on5:ON:(6) 43911.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 43911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43912.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43913.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43915.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43916.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43917.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43918.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43919.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43921.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43921.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43922.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43923.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43924.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43925.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43927.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43927.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43928.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43929.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43930.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43931.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43933.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43933.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43934.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43935.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43936.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43937.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43939.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43939.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43940.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43941.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43942.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43943.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43945.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43945.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43946.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43947.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43948.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43949.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43951.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43951.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43952.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43953.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43954.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43955.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43957.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43957.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43958.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43959.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43960.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43961.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43963.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43963.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43964.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43965.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43966.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43967.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43969.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43970.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43971.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43972.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43973.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43975.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43975.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43976.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43977.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43978.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43979.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43981.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43981.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43982.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43983.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43984.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43985.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43987.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43987.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43988.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43989.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43990.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43991.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43993.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43993.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43994.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43995.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43996.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 43997.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 43998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43999.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 43999.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44000.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44001.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44002.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44002.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44003.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44004.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44005.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44005.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44006.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44007.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44008.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44008.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44009.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44010.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44011.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44011.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44012.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44013.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44014.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44014.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44015.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44016.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44017.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44017.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44018.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44019.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44020.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44020.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44021.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44022.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44023.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44023.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44024.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44025.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44026.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44026.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44027.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44028.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44029.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44029.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44030.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44031.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44032.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44032.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44033.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44034.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44035.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44035.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44036.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44037.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44038.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44038.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44039.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44040.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44041.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44041.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44042.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44043.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44044.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44044.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44045.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44046.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44047.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44047.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44048.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44049.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44050.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44050.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44051.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44052.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44053.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44053.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44054.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44055.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44056.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44056.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44057.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44058.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44059.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44059.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44060.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44061.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44062.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44062.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44063.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44064.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44065.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44065.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44066.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44067.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44068.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44068.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44069.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44070.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44071.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44071.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44072.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44073.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44074.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44074.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44075.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44076.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44077.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44077.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44078.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44079.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44080.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44080.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44081.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44082.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44083.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44083.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44084.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44085.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44086.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44086.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44087.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44088.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44089.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 44089.000000] [simulator/INFO] on5 try to forward a hint +[on5:ON:(6) 44090.000000] [simulator/INFO] on5 fail to forward a hint +[on5:ON:(6) 44091.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 44174.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 44174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44221.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44222.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44223.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44224.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44225.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44226.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44227.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44228.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44229.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44230.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44231.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44232.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44233.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44234.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44235.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44236.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44237.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44238.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44239.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44240.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44241.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44242.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44243.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44244.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44245.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44246.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44247.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44248.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44249.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44250.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44251.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44252.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44253.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44254.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44255.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44256.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44257.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44258.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44259.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44260.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44261.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44262.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44263.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44264.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44265.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44266.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44267.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44268.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44269.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44270.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44271.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44272.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44273.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44274.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44275.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44276.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44277.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44278.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44279.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44280.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44281.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44282.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44283.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44284.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44285.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44286.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44287.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44288.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44289.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44290.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44291.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44292.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44293.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44294.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44295.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44296.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44297.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44298.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44299.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44300.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44301.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44302.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44303.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44304.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44305.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44306.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44307.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44308.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44309.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44310.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44311.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44312.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44313.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44314.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44315.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44316.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44317.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44318.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44319.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44320.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44321.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44322.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44323.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44324.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44325.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44326.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44327.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44328.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44329.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 44354.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 44551.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 44551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44693.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44695.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44697.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44701.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44703.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 44731.000000] [simulator/INFO] on2 is sleeping +[on3:ON:(4) 44841.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 44841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44874.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44874.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 44874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44875.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44876.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44877.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44878.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44879.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44880.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44881.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44882.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44883.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44884.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44885.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44886.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44887.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44888.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44889.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44890.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44891.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44892.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44893.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44894.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44895.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44896.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44897.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44898.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44899.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44900.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44901.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44902.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44903.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44904.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44905.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44906.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44907.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44908.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44909.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44910.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44911.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44912.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44913.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44914.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44915.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44916.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44917.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44918.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44919.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44920.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44921.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44922.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44923.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44924.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44925.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44926.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44927.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44928.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44929.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44930.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44931.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44932.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44933.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44934.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44935.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44936.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44937.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44938.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44939.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44940.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44941.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44942.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44943.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44944.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44945.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44946.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44947.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44948.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44949.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44950.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44951.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44952.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44953.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44954.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44955.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44956.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44957.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44958.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44959.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44960.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44961.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44962.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44963.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44964.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44965.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44966.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44967.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44968.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44969.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44970.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44971.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44972.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44973.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44974.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44975.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44976.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44977.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44978.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44979.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44980.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44981.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44982.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44983.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44984.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44985.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44986.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44987.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44988.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44989.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44990.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44991.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44992.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44992.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44993.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44994.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44994.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44995.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44996.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44996.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44997.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 44998.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 44998.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 44999.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 44999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45000.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45000.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45001.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45002.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45002.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45003.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45004.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45004.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45005.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45006.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45006.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45007.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45008.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45008.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45009.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45010.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45010.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45011.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45012.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45012.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45013.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45014.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45014.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45015.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45016.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45016.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45017.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45018.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45018.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45019.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 45020.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 45020.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45021.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 45021.000000] [simulator/INFO] on3 is sleeping +[on11:ON:(12) 45022.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45024.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45026.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45028.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45030.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45032.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45034.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45036.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45038.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45040.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45042.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45044.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45046.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45048.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45050.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45052.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 45054.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 45060.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 45060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45061.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45062.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45064.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45065.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45067.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45068.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45070.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45071.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45073.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45074.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45076.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45077.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45079.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45080.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45082.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45083.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45085.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45086.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45088.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45089.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45091.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45092.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45094.000000] [simulator/INFO] on12 try to forward a hint +[on12:ON:(13) 45095.000000] [simulator/INFO] on12 fail to forward a hint +[on12:ON:(13) 45096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 45097.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 45097.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 45097.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 45097.000000] [simulator/INFO] on12 try to forward a hint +[on10:ON:(11) 45098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45142.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 45142.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 45142.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 45143.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 45143.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 45143.000000] [simulator/INFO] on1 try to forward a hint +[on10:ON:(11) 45144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45165.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45167.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45169.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45171.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45173.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45175.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45175.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 45175.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45176.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45177.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45177.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45178.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45179.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45179.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45180.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45181.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45181.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45182.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45183.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45183.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45184.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45185.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45185.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45186.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45187.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45187.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45188.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45189.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45189.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45190.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45191.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45191.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45192.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45193.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45193.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45194.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45195.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45195.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45196.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45197.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45197.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45198.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45199.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45199.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45200.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45201.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45201.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45202.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45203.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45203.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45204.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45205.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45205.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45206.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45207.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45207.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45208.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45209.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45209.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45210.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45211.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45211.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45212.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45213.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45213.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45214.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45215.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45215.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45216.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45217.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45217.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45218.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45219.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45219.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45220.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45221.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45221.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45222.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45223.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45223.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45224.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45225.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45225.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45226.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45227.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45227.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45228.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45229.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45229.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45230.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45231.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45231.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45232.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45233.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45233.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45234.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45235.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45235.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45236.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45237.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45237.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45238.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45239.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45239.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 45240.000000] [simulator/INFO] on12 fail to forward a hint +[on6:ON:(7) 45240.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45241.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45241.000000] [simulator/INFO] on6 is observing his environment... +[on12:ON:(13) 45241.000000] [simulator/INFO] on12 is sleeping +[on6:ON:(7) 45242.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45243.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45243.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45244.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45245.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45245.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45246.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45247.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45247.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45248.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45249.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45249.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45250.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45251.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45251.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45252.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45253.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45253.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45254.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45255.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45255.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45256.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45257.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45257.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45258.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45259.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45259.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45260.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45261.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45261.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45262.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45263.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45263.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45264.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45265.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45265.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45266.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45267.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45267.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45268.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45269.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45269.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45270.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45271.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45271.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45272.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45273.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45273.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45274.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45275.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 45275.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45276.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 45276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 45277.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 45277.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45278.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45279.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45280.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45281.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45282.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45283.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45284.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45285.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45286.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45287.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45288.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45289.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45290.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45291.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45292.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45293.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45294.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45295.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45296.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45297.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45298.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45299.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45300.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45301.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45302.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45303.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45304.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45305.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45306.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45307.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45308.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45309.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45310.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45311.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45312.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45313.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45314.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45315.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45316.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45317.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45318.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45319.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45320.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45321.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 45322.000000] [simulator/INFO] on1 fail to forward a hint +[on6:ON:(7) 45322.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45323.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 45323.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 45324.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45325.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45326.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45327.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45328.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45330.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45332.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45334.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45336.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45338.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45340.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45342.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45344.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45346.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45348.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45350.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45352.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45354.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 45355.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 46029.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 46029.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46030.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46031.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46032.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46033.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46034.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46035.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46036.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46037.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46038.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46039.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46040.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46041.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46042.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46043.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46044.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46046.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46048.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46050.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46052.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46054.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46056.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46058.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46060.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46062.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46064.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46066.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46068.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46070.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46072.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46074.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46076.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46078.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46080.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46082.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46084.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46086.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46088.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46090.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46092.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46094.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46096.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46098.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46100.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46145.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46146.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46147.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46148.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46149.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46150.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46151.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46152.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46153.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46154.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46155.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46156.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46157.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46158.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46159.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46160.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46161.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46162.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46163.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46164.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46183.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46183.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 46183.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46184.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46185.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46185.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46186.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46187.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46187.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46188.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46189.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46189.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46190.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46191.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46191.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46192.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46193.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46193.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46194.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46195.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46195.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46196.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46197.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46197.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46198.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46199.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46199.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46200.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46201.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46201.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46202.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46203.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46203.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46204.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46205.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46205.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46206.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46207.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 46207.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46208.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 46208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 46209.000000] [simulator/INFO] on7 is sleeping +[on0:ON:(1) 46209.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46210.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46211.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46212.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46213.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46214.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46215.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46216.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46217.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46218.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46219.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46220.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46221.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46222.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46223.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46224.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46225.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46226.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46227.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46228.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46229.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46230.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46231.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46232.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46233.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46234.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46235.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46236.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46237.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46238.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46239.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46240.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46241.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46242.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46243.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46244.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46245.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46246.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46247.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46248.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46249.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46250.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46251.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46252.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46253.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46254.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46255.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46256.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46257.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46258.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46259.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46260.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46261.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46262.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46263.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46264.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46265.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46266.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46267.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46268.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46269.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46270.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46271.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46272.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46273.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46274.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46275.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46276.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46277.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46278.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46279.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46280.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46281.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46282.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46283.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46284.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46285.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46286.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46287.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46288.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46289.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46290.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46291.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46292.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46293.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46294.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46295.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46296.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46297.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46298.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46299.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46300.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46301.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46302.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46303.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 46363.000000] [simulator/INFO] on0 is sleeping +[on9:ON:(10) 46753.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 46753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46837.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46839.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46841.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46843.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46845.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46847.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46849.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46851.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46853.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46855.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46857.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46859.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46861.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46863.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46865.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46867.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46869.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46871.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46873.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46898.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46928.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46928.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 46928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46929.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46930.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46931.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 46932.000000] [simulator/INFO] on9 is observing his environment... +[on8:ON:(9) 46932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46933.000000] [simulator/INFO] on8 is observing his environment... +[on9:ON:(10) 46933.000000] [simulator/INFO] on9 is sleeping +[on8:ON:(9) 46934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46955.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46957.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46959.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46960.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46961.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46962.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46963.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46964.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46965.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46966.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46967.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46968.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46969.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46970.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46971.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46972.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46973.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46974.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46975.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46976.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46977.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46978.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46979.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46980.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46981.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46982.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46983.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46984.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46985.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46986.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46987.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46988.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46989.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46990.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46991.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46992.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46993.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46994.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46995.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46996.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46997.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46998.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 46999.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47000.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47001.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47002.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47003.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47004.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47005.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47006.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47007.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47008.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47009.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47010.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47011.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47012.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47013.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47014.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47015.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47016.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47017.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47018.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47018.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 47018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47019.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47019.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47020.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47021.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47021.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47022.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47023.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47023.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47024.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47025.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47025.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47026.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47027.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47027.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47028.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47029.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47029.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47030.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47031.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47031.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47032.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47033.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47033.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47034.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47035.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47035.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47036.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47037.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47037.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47038.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47039.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47039.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47040.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47041.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47042.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47043.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47044.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47045.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47046.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47047.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47048.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47049.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47050.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47051.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47052.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47053.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47054.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47055.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47056.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47057.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47058.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47059.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47060.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47061.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47062.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47063.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47064.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47065.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47066.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47067.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47068.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47069.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47070.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47071.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47072.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47073.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47074.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47075.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47076.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47077.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47078.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47079.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47080.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47081.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47082.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47083.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47084.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47085.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47086.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47087.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47088.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47089.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47090.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47091.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 47092.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47093.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47093.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47093.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 47093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47094.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47094.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47095.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47095.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47096.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47096.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47097.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47097.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47098.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47098.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47099.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47099.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47100.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47100.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47101.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47101.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47102.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47102.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47103.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47103.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47104.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47104.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47105.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47105.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47106.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47106.000000] [simulator/INFO] on8 is observing his environment... +[on10:ON:(11) 47106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47107.000000] [simulator/INFO] on10 is observing his environment... +[on8:ON:(9) 47107.000000] [simulator/INFO] on8 is observing his environment... +[on12:ON:(13) 47107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47108.000000] [simulator/INFO] on12 is observing his environment... +[on8:ON:(9) 47108.000000] [simulator/INFO] on8 is sleeping +[on10:ON:(11) 47108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47109.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47110.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47111.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47112.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47113.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47114.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47115.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47116.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47117.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47118.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47119.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47120.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47121.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47122.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47123.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47124.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47125.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47126.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47127.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47128.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47129.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47130.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47131.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47132.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47133.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47134.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47135.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47136.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47137.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47138.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47139.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47140.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47141.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47142.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47143.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47144.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47145.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47146.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47147.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47148.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47149.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47150.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47151.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47152.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47153.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47154.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47155.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47156.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47157.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47158.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47159.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47160.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47161.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47162.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47163.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47164.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47165.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47166.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47167.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47168.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47169.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47170.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47171.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47172.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47173.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47174.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47175.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47176.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47177.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47178.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47179.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47180.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47181.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47182.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47183.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47184.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47185.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47186.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47187.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47188.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47189.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47190.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47191.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47192.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47193.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47194.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47195.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47196.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 47197.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 47197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47198.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 47198.000000] [simulator/INFO] on10 is sleeping +[on12:ON:(13) 47199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47221.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47223.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47225.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47227.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47229.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47231.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47233.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47235.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47237.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47239.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47241.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47243.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47245.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47247.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47249.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47251.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47253.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47255.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47257.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47259.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47261.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47263.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47265.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47267.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47269.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47271.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 47273.000000] [simulator/INFO] on12 is sleeping +[on0:ON:(1) 47289.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 47289.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47290.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47291.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47292.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47293.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47294.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47295.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47296.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47297.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47298.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47299.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47300.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47301.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47302.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47303.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47363.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47364.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47365.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47366.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47367.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47368.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47369.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47370.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47371.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47372.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47373.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47374.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47375.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47376.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47377.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47378.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47379.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47380.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47381.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47382.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47383.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47384.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47385.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47386.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47387.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47388.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47389.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47390.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47391.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47392.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47393.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47394.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47395.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47396.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47397.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47398.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47399.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47400.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47401.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47402.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47403.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47404.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47405.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47406.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47407.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47409.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47411.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47413.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47415.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47417.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47419.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47421.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47423.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47425.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47427.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47429.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47431.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47433.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47435.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47437.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47439.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47441.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47443.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47445.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47447.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47449.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47451.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47453.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47455.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47457.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47459.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47461.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47463.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47465.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47467.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 47469.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 47757.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 47757.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47758.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47759.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47760.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47761.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47762.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47763.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47764.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47765.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47766.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47767.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47768.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47769.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47770.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47771.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47772.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47773.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47774.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47775.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47776.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47777.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47778.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47779.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47780.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47781.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47782.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47783.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47784.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47785.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47786.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47787.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47788.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47789.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47790.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47791.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47792.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47793.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47794.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47796.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47797.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47798.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47799.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47800.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47801.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47802.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47803.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47804.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47805.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47806.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47807.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47808.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47809.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47810.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47811.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47812.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47813.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47814.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47815.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47816.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47817.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47818.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47819.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47820.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47821.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47822.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47823.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47824.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47825.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47826.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47827.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47828.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47829.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47830.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47831.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47832.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47834.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47836.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47838.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47840.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47842.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47844.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47846.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47848.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47850.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47852.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47854.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47856.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47858.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47860.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47862.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47864.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47866.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47868.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47870.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47872.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47873.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47874.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47875.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47876.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47877.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47878.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47879.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47880.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47881.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47882.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47883.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47884.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47885.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47886.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47887.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47888.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47890.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47892.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47894.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47896.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47898.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47900.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47902.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47904.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47906.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47908.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47910.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47912.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47914.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47916.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47918.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47920.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47922.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47924.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47926.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47928.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47930.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47932.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47934.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47936.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 47937.000000] [simulator/INFO] on4 is sleeping +[on11:ON:(12) 48148.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 48148.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48149.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48150.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48151.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48152.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48153.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48154.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48155.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48156.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48157.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48158.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48159.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48160.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48161.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48162.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48163.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48164.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48165.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48166.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48167.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48168.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48169.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48170.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48171.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48172.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48173.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48174.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48174.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 48174.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48175.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48175.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48176.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48176.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48177.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48177.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48178.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48178.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48179.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48179.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48180.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48180.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48181.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48181.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48182.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48182.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48183.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48183.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48184.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48184.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48185.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48185.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48186.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48186.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48187.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48187.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48188.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48188.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48189.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48189.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48190.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48190.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48191.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48191.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48192.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48192.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48193.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48193.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48194.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48194.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48195.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48195.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48196.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48196.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48197.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48197.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48198.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48198.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48199.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48199.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48200.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48200.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48201.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48201.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48202.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48202.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48203.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48203.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48204.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48204.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48205.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48205.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48206.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48206.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48207.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48207.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48208.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48208.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48209.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48209.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48210.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48210.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48211.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48211.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48212.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48212.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48213.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48213.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48214.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48214.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48215.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48215.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48216.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48216.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48217.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48217.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48218.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48218.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48219.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48219.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48220.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48220.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48221.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48221.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48222.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48222.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48222.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 48222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48223.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48223.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48223.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48224.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48224.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48225.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48225.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48225.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48226.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48226.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48227.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48227.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48227.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48228.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48228.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48229.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48229.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48229.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48230.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48230.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48230.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48231.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48231.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48231.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48232.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48232.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48232.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48233.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48233.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48233.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48234.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48234.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48234.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48235.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48235.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48235.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48236.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48236.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48236.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48237.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48237.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48237.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48238.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48238.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48238.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48239.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48239.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48239.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48240.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48240.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48241.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48241.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48241.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48242.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48242.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48243.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48243.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48243.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48244.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48244.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48244.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48245.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48245.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48245.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48246.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48246.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48247.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48247.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48247.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48248.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48248.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48249.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48249.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48249.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48250.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48250.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48250.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48251.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48251.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48251.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48252.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48252.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48253.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48253.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48253.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48254.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48254.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48255.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48255.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48255.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48256.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48256.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48256.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48257.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48257.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48257.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48258.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48258.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48259.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48259.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48259.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48260.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48260.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48261.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48261.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48261.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48262.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48262.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48262.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48263.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48263.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48263.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48264.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48264.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48265.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48265.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48265.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48266.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48266.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48267.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48267.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48267.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48268.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48268.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48268.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48269.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48269.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48269.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48270.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48270.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48271.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48271.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48271.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48272.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48272.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48273.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48273.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48273.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48274.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48274.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48274.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48275.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48275.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48275.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48276.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48276.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48277.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48277.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48277.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48278.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48278.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48279.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48279.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48279.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48280.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48280.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48280.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48281.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48281.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48281.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48282.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48282.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48283.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48283.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48283.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48284.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48284.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48285.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48285.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48285.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48286.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48286.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48286.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48286.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 48286.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48287.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48287.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48287.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48287.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48288.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48288.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48288.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48288.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48289.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48289.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48289.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48289.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48290.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48290.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48290.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48290.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48291.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48291.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48291.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48291.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48292.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48292.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48292.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48293.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48293.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48293.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48293.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48294.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48294.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48294.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48295.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48295.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48295.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48295.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48296.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48296.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48296.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48297.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48297.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48297.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48297.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48298.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48298.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48298.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48299.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48299.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48299.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48299.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48300.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48300.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48300.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48301.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48301.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48301.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48301.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48302.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48302.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48302.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48303.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48303.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48303.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48303.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48304.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48304.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48304.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48305.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48305.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48305.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48305.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48306.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48306.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48306.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48307.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48307.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48307.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48307.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48308.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48308.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48308.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48309.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48309.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48309.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48309.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48310.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48310.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48310.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48311.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48311.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48311.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48311.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48312.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48312.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48312.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48313.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48313.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48313.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48313.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48314.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48314.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48314.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48315.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48315.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48315.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48315.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48316.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48316.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48316.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48317.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48317.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48317.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48317.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48318.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48318.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48318.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48319.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48319.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48319.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48319.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48320.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48320.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48320.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48321.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48321.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48321.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48321.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48322.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48322.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48322.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48323.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48323.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48323.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48323.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48324.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48324.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48324.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48325.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48325.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48325.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48325.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48326.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 48326.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48326.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48327.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48327.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48327.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 48327.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 48328.000000] [simulator/INFO] on11 is sleeping +[on6:ON:(7) 48328.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48328.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48329.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48329.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48330.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48330.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48331.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48331.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48332.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48332.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48333.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48333.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48334.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48334.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48335.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48335.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48336.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48336.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48337.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48337.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48338.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48338.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48339.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48339.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48340.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48340.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48341.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48341.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48342.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48342.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48343.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48343.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48344.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48344.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48345.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48345.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48346.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48346.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48347.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48347.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48348.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48348.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48349.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48349.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48350.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48350.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48351.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48351.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48352.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 48352.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48353.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48353.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 48353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 48354.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 48354.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48355.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48355.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48356.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48357.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48357.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48358.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48359.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48359.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48360.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48361.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48361.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48362.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48363.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48363.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48364.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48365.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48365.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48366.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48367.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48367.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48368.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48369.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48370.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48371.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48372.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48373.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48373.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48374.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48375.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48376.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48377.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48378.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48379.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48379.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48380.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48381.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48382.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48383.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48384.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48385.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48386.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48387.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48388.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48389.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48390.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48391.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48392.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48393.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48394.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48395.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48396.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48397.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48398.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48399.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48400.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 48400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48401.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 48401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 48402.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 48402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 48466.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 48520.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 48520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48521.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48523.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48525.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48530.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48531.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48532.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48533.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48534.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48535.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48536.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48537.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48538.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48539.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48540.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48541.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48542.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48543.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48544.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48545.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48546.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48547.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48548.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48549.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48550.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48551.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48552.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48553.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48554.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48555.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48556.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48557.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48558.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48559.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48560.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48561.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48562.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48563.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48564.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48565.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48566.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48567.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48568.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48569.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48693.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48695.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48697.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 48700.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 48737.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 48737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48757.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48759.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48761.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48763.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48765.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48767.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48769.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48771.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48773.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48775.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48777.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48779.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48781.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48783.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48784.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48785.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48786.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48787.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48788.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48789.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48790.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48791.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48792.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48793.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48794.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48795.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48796.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48797.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48798.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48799.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48800.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48801.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48802.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48803.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48804.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48805.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48806.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48807.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48808.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48809.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48810.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48811.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48812.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48813.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48814.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48815.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48816.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48817.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48818.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48819.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48820.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48821.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48822.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48823.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48824.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48825.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48826.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48827.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48828.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48829.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48830.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48831.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48832.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48833.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48834.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48835.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48836.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48837.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48838.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48839.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48840.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48841.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48842.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48843.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48844.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48845.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48846.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48847.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48848.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48849.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48850.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48851.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48852.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48853.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48854.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48889.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48891.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48893.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48895.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48897.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48899.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48901.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48903.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48905.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48907.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48909.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48913.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 48917.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 50117.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 50117.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50118.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50119.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50120.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50121.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50122.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50123.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50124.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50125.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50126.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50127.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50128.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50129.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50130.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50131.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50132.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50133.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50134.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50135.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50136.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50137.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50138.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50139.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50140.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50141.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50142.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50143.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50144.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50145.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50146.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50147.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50148.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50149.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50150.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50151.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50153.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50155.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50157.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50158.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50159.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50160.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50161.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50162.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50163.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50164.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50165.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50166.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50167.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50168.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50169.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50170.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50171.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50172.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50173.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50174.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50175.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50176.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50177.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50178.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50179.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50180.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50181.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50182.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50183.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50184.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50185.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50186.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50187.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50188.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50189.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50190.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50191.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50192.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50193.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50194.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50195.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50196.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50198.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50200.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50202.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50204.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50206.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50208.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50210.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50212.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50214.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50215.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50215.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 50215.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50216.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50217.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50217.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50218.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50219.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50219.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50220.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50221.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50221.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50222.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50223.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50223.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50224.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50225.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50225.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50226.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50227.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50227.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50228.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50229.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50229.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50230.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50231.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50231.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50232.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50233.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50233.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50234.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50235.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50235.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50236.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50237.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50237.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50238.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50239.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50239.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50240.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50241.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50241.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50242.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50243.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50243.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50244.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50245.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50245.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50246.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50247.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50247.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50248.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50249.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50249.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50250.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50251.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50251.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50252.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50253.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50253.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50254.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50255.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50255.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50256.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50257.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50257.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50258.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50259.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50259.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50260.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50261.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50262.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50263.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50264.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50265.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50266.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50267.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50268.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50269.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50270.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50271.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50272.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50273.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50274.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50275.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50276.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50277.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50278.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50279.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50280.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50281.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50282.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50283.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50284.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50285.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50286.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50287.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50288.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50289.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50290.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50291.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50292.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50293.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50294.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50295.000000] [simulator/INFO] on3 is observing his environment... +[on1:ON:(2) 50295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50296.000000] [simulator/INFO] on1 is observing his environment... +[on3:ON:(4) 50296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50297.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 50297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50344.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50345.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50346.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50347.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50348.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50349.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50350.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50351.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50352.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50353.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50354.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50355.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50356.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50357.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50358.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50359.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50360.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50361.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50362.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50363.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50364.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50365.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50366.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50367.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50368.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50369.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50370.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50371.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50372.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50373.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50374.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50375.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50376.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50377.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50378.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50379.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50380.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50381.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50382.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50383.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50384.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50385.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50386.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50387.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50388.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50389.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50390.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50391.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50392.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50393.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50394.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 50395.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 50438.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 50438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50585.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50586.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50587.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50588.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50589.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50590.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50591.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50592.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50593.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50594.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50595.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50596.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50597.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50598.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50599.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 50618.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 50678.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 50678.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50679.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50680.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50681.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50682.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50683.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50684.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50685.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50686.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50687.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50688.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50689.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50690.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50691.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50692.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50693.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50694.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50695.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50696.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50697.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50698.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50699.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50700.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50701.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50702.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50703.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50704.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50705.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50706.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50707.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50708.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50709.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50710.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50711.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50712.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50713.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50714.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50716.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50718.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50720.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50722.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50724.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50726.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50728.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50730.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50732.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50734.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50736.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50738.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50740.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50742.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50744.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50746.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50748.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50750.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50752.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50754.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50756.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50758.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50759.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50759.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 50759.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50760.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50760.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50761.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50761.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50762.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50762.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50763.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50763.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50764.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50764.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50765.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50765.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50766.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50766.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50767.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50767.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50768.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50768.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50769.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50769.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50770.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50770.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50771.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50771.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50772.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50772.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50773.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50773.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50774.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50774.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50775.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50775.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50776.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50776.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50777.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50777.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50778.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50778.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50779.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50779.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50780.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50780.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50781.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50781.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50782.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50782.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50783.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50783.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50784.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50784.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50785.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50785.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50786.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50787.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50787.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50788.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50789.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50789.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50790.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50791.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50791.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50792.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50793.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50793.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50794.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50795.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50795.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50796.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50797.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50797.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50798.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50799.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50799.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50800.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50801.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50801.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50802.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50803.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50803.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50804.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50805.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50805.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50806.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50807.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50807.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50808.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50809.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50809.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50810.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50811.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50811.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50812.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50813.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50813.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50814.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50815.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50815.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50816.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50817.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50817.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50818.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50819.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50819.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50820.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50821.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50821.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50822.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50823.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50823.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50824.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50825.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50825.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50826.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50827.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50827.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50828.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50829.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50829.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50830.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50831.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50831.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50832.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50833.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50833.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50834.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50835.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50835.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50836.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50837.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50837.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50838.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50839.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50839.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50840.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50841.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50841.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50842.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50843.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50843.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50844.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50845.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50845.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50846.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50847.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50847.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50848.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50849.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50849.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50850.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50851.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50851.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50852.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50853.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50853.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50854.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50855.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50855.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50856.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 50857.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 50857.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50858.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 50858.000000] [simulator/INFO] on3 is sleeping +[on0:ON:(1) 50859.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50861.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50863.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50865.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50867.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50869.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50871.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50873.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50875.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50877.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50879.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50881.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50883.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50885.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50887.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50889.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50891.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50893.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50895.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50901.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50903.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 50939.000000] [simulator/INFO] on0 is sleeping +[on8:ON:(9) 51090.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 51090.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51092.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51094.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51096.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51098.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51100.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51102.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51104.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51106.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51108.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51110.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51112.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51114.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51116.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51118.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51120.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51122.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51124.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51126.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51128.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51130.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51132.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51134.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51136.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51138.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51140.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51142.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51144.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51146.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51148.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51150.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51152.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51154.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51156.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51158.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51160.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51162.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51164.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51166.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51168.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51170.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51172.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51173.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51221.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51222.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51223.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51224.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51225.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51226.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51227.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51228.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51229.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51230.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51231.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51232.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51233.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51234.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51235.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51236.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51237.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51238.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51239.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51240.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51241.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51242.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51243.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51244.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51245.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51246.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51247.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51248.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51249.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51250.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51251.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51252.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51253.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51254.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51255.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51256.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51257.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51258.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51259.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51260.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51261.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51262.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51263.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51264.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51265.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51266.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51267.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51268.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51269.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 51270.000000] [simulator/INFO] on8 is sleeping +[on6:ON:(7) 51482.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 51482.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51483.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51484.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51485.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51486.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51487.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51488.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51489.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51490.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51491.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51493.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51495.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51497.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51499.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51501.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51518.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51518.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 51518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51519.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51520.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51521.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51522.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51523.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51524.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51525.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51526.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51527.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51528.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51529.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51530.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51531.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51532.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51533.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51534.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51535.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51536.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51537.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51538.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51539.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51540.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51541.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51542.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51543.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51544.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51545.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51546.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51547.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51548.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51549.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51550.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51551.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51552.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51553.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51554.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51555.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51556.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51557.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51558.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51559.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51560.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51561.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51562.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51563.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51564.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51565.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51566.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51567.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51568.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51569.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51570.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51571.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51572.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51573.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51574.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51575.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51576.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51577.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51578.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51579.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51580.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51581.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51582.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51583.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51584.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51585.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51586.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51587.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51588.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51589.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51590.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51591.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51592.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51593.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51594.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51595.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51596.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51597.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51598.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51599.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51600.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51601.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51602.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51603.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51604.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51605.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51606.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51607.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51608.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51609.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51610.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51611.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51612.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51613.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51614.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51615.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51616.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51617.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51618.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51619.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51620.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51621.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51622.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51622.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51623.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51624.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51624.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51625.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51626.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51626.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51627.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51628.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51628.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51629.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51630.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51630.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51631.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51632.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51632.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51633.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51634.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51634.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51635.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51636.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51636.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51637.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51638.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51638.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51639.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51640.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51640.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51640.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 51640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51641.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51641.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51642.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51642.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51643.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51643.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51644.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51644.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51645.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51645.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51646.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51646.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51647.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51647.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51648.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51648.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51649.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51649.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51650.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51650.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51651.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51651.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51652.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51652.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51653.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51653.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51654.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51654.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51655.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51655.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51656.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51656.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51657.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51657.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51658.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51658.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51659.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51659.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51660.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 51660.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51661.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51661.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 51661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 51662.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 51662.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51663.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51663.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51664.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51665.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51665.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51666.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51667.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51667.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51668.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51669.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51669.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51670.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51671.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51671.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51672.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51673.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51674.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51675.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51676.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51677.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51678.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51679.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51680.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51681.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51682.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51683.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51684.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51685.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51686.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51687.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51688.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51689.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51690.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51691.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51692.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51693.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51694.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51695.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51696.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 51696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51697.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 51697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 51698.000000] [simulator/INFO] on1 is sleeping +[on2:ON:(3) 51698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51699.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51701.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51703.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51705.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51707.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51709.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51711.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51713.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51715.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51716.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51717.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51718.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51719.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51720.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51721.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51722.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51723.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51724.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51725.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51726.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51727.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51728.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51729.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51730.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51731.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51732.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51733.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51734.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51735.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51736.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51737.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51738.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51739.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51740.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51741.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51742.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51743.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51744.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51745.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51746.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51747.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51748.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51749.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51750.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51751.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51752.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51753.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51754.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51755.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51756.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51757.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51758.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51759.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51760.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51761.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51762.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51763.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51764.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51765.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51766.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51767.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51768.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51769.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51770.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51771.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51772.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51773.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51774.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51775.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51776.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51777.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51778.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51779.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51780.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51781.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51782.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51783.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51784.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51785.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51786.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51787.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51788.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51789.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51790.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51791.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51792.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51793.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51794.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51795.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51796.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51797.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51798.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51799.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51800.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51801.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51802.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51803.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51804.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51805.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51806.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51807.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51808.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51809.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51810.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51811.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51812.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51813.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51814.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51815.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51815.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 51815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51816.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51816.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51817.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51818.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51818.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 51819.000000] [simulator/INFO] on2 is observing his environment... +[on12:ON:(13) 51819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51820.000000] [simulator/INFO] on12 is observing his environment... +[on2:ON:(3) 51820.000000] [simulator/INFO] on2 is sleeping +[on12:ON:(13) 51821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51846.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51852.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51858.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51864.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51870.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51876.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51878.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51880.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51882.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51884.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51885.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51886.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51888.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51890.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51891.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51892.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51894.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51896.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51897.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51898.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51900.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51902.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51903.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51904.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51906.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51908.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51909.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51910.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51912.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51914.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51915.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51916.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51918.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51920.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51921.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51922.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51923.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51924.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51925.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51927.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51930.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51933.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51936.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51939.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51942.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51945.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51948.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51951.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51954.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51957.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51960.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51963.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51966.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51969.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51972.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51975.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51978.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51981.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51984.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51987.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51990.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51993.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 51995.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 52730.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 52730.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52731.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52732.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52734.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52736.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52737.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52738.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52740.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52742.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52743.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52744.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52746.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52748.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52749.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52750.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52752.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52754.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52755.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52756.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52758.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52760.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52761.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52762.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52764.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52766.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52767.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52768.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52770.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52772.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52773.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52774.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52776.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52778.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52779.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52780.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52782.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52784.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52785.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52786.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52788.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52790.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52791.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52792.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52794.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52800.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52806.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52812.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52818.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52824.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52830.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52836.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52842.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52848.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52854.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52856.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52858.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52860.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52862.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52864.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52866.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52868.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52870.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52872.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52874.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52876.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52878.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52880.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52882.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52884.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52886.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52888.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52890.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52892.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52894.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52896.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52898.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52900.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52902.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52903.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52904.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52905.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52906.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52907.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52908.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52909.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 52910.000000] [simulator/INFO] on10 is sleeping +[on9:ON:(10) 53290.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 53290.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53291.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53292.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53293.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53294.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53295.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53296.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53297.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53298.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53299.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53300.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53301.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53302.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53303.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53304.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53305.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53338.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53340.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53342.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53344.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53346.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53348.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53350.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53352.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53354.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53356.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53358.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53360.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53362.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53364.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53366.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53368.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53370.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53372.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53374.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53376.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53378.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53380.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53382.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53383.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53384.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53385.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53386.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53387.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53388.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53389.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53390.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53391.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53392.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53393.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53394.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53395.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53396.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53397.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53398.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53399.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53400.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53401.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53402.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53404.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53406.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53408.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53410.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53412.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53414.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53416.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53418.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53420.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53422.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53424.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53426.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53428.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53430.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53432.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53434.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53436.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53438.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53440.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53442.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53444.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53446.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53448.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53450.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53452.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53454.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53456.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53458.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53460.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53462.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53464.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53466.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53467.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53468.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53469.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 53470.000000] [simulator/INFO] on9 is sleeping +[on4:ON:(5) 53478.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 53478.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53480.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53482.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53484.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53486.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53488.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53490.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53492.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53494.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53496.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53498.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53500.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53502.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53504.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53506.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53507.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53508.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53509.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53510.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53511.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53512.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53513.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53514.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53515.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53516.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53517.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53518.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53524.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53526.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53528.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53530.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 53658.000000] [simulator/INFO] on4 is sleeping +[on7:ON:(8) 53878.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 53878.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53880.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53882.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53884.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53983.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53983.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 53983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53984.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53984.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53985.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53986.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53986.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53987.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53988.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53988.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53989.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53990.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53990.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53991.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53992.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53992.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53993.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53994.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53994.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53995.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53996.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53996.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53997.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 53998.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 53998.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 53999.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 53999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54000.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54000.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54001.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54002.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54002.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54003.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54004.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54004.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54005.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54006.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54006.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54007.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54008.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54008.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54009.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54009.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54010.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54010.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54011.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54011.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54012.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54012.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54013.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54013.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54014.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54014.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54015.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54015.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54016.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54016.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54017.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54017.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54018.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54018.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54019.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54019.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54020.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54020.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54021.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54021.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54022.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54022.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54023.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54023.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54024.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54024.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54025.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54025.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54026.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54026.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54027.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54027.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54028.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54028.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54029.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54029.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54030.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54030.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54031.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54031.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54032.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54032.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54033.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54033.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54034.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54034.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54035.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54035.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54036.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54036.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54037.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54037.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54038.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54038.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54039.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54039.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54040.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54040.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54041.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54041.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54042.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54042.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54043.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54043.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54044.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54044.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54045.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54045.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54046.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54046.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54047.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54047.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54048.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54048.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54049.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54049.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54050.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54050.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54051.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54051.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54052.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54052.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54053.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54053.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54054.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54054.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54055.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54055.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54056.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54056.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 54057.000000] [simulator/INFO] on7 is observing his environment... +[on11:ON:(12) 54057.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54058.000000] [simulator/INFO] on11 is observing his environment... +[on7:ON:(8) 54058.000000] [simulator/INFO] on7 is sleeping +[on11:ON:(12) 54059.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54060.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54061.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54062.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54063.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54064.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54065.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54066.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54067.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54068.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54069.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54070.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54071.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54072.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54073.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54074.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54075.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54076.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54077.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54078.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54079.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54080.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54081.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54082.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54083.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54084.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54085.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54086.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54087.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54088.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54089.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54090.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54091.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54092.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54093.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54094.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54095.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54096.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54097.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54098.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54099.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54100.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54101.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54102.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54103.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54104.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54105.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54106.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54107.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54108.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54109.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54110.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54111.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54112.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54113.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54114.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54115.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54116.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54117.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54118.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54119.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54120.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54121.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54122.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54123.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54124.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54125.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54126.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54127.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54128.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54129.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54130.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54131.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54132.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54133.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54134.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54135.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54136.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54137.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54138.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54139.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54140.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54141.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54142.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54143.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54144.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54145.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54146.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54147.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54148.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54149.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54150.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54151.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54152.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54153.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54154.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54155.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54156.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54157.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54158.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54159.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54160.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54161.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54162.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54163.000000] [simulator/INFO] on11 is sleeping +[on11:ON:(12) 54339.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 54339.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54340.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54341.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54342.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54343.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54344.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54345.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54346.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54347.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54348.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54349.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54350.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54351.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54352.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54353.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54354.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54355.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54356.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54357.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54358.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54359.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54360.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54361.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54362.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54363.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54364.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54365.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54366.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54367.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54368.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54369.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54370.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54371.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54372.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54373.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54374.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54375.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54376.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54377.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54378.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54379.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54380.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54381.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54382.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54383.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54384.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54385.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54386.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54387.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54388.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54389.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54390.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54391.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54392.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54393.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54394.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54395.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54396.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54397.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54398.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54399.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54400.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54401.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54402.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54403.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54404.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54405.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54406.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54407.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54408.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54409.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54410.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54411.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54412.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54413.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54414.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54415.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54416.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54417.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54418.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54419.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54420.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54421.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54422.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54423.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54424.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 54519.000000] [simulator/INFO] on11 is sleeping +[on4:ON:(5) 54546.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 54546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54712.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54714.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54716.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54718.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54720.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54722.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54724.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 54726.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 54762.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 54762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54837.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54839.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54841.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54843.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54845.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54847.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54849.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54851.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54853.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54855.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54857.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54859.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54861.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54863.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54865.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54867.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54869.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54871.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54873.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54896.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54897.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54898.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54899.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54900.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54928.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54934.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54937.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54940.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 54942.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 55020.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 55020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55047.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55047.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 55047.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55048.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55049.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55049.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55050.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55051.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55051.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55052.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55053.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55053.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55054.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55055.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55055.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55056.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55057.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55057.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55058.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55059.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55059.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55060.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55061.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55061.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55062.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55063.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55063.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55064.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55065.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55065.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55066.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55067.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55067.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55068.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55069.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55069.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55070.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55071.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55071.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55072.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55073.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55073.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55074.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55075.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55075.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55076.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55077.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55077.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55078.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55079.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55079.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55080.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55081.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55081.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55082.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55083.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55083.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55084.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55085.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55085.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55086.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55087.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55087.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55088.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55089.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55089.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55090.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55091.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55091.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55092.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55093.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55093.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55094.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55095.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55095.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55096.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55097.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55097.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55098.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55099.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55099.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55100.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55101.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55101.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55102.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55103.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55103.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55104.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55105.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55105.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55106.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55107.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55107.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55108.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55109.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55109.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55110.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55111.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55111.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55112.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55113.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55113.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55114.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55115.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55115.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55116.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55117.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55117.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55118.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55119.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55119.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55120.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55121.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55121.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55122.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55123.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55123.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55124.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55125.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55125.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55126.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55127.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55127.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55128.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55128.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55129.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55129.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55130.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55130.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55131.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55131.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55132.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55132.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55133.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55133.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55134.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55134.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55135.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55135.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55136.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55136.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55137.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55137.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55138.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55138.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 55139.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55139.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 55140.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55140.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55140.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 55140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55141.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55141.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55141.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55141.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 55141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55142.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55142.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55142.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55143.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55143.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55143.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55144.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55144.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55144.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55145.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55145.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55145.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55146.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55146.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55146.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55147.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55147.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55147.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55148.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55148.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55148.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55149.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55149.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55149.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55149.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55150.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55150.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55150.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55151.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55151.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55151.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55151.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55152.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55152.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55152.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55153.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55153.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55153.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55153.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55154.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55154.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55154.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55155.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55155.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55155.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55155.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55156.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55156.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55156.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55157.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55157.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55157.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55157.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55158.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55158.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55158.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55159.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55159.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55159.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55159.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55160.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55160.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55160.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55161.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55161.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55161.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55161.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55162.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55162.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55162.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55163.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55163.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55163.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55163.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55164.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55164.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55164.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55165.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55165.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55165.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55165.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55166.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55166.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55166.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55166.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55167.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55167.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55167.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55167.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55168.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55168.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55168.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55168.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55169.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55169.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55169.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55169.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55170.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55170.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55170.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55170.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55171.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55171.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55171.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55171.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55172.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55172.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55172.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55172.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55173.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55173.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55173.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55173.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55174.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55174.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55174.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55174.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55175.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55175.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55175.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55175.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55176.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55176.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55176.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55176.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55177.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55177.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55177.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55177.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55178.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55178.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55178.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55178.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55179.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55179.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55179.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55179.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55180.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55180.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55180.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55180.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55181.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55181.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55181.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55181.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55182.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55182.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55182.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55182.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55183.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55183.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55183.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55183.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55184.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55184.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55184.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55184.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55185.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55185.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55185.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55185.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55186.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55186.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55186.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55186.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55187.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55187.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55187.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55187.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55188.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55188.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55188.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55188.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55189.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55189.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55189.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55189.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55190.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55190.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55190.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55190.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55191.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55191.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55191.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55191.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55192.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55192.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55192.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55192.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55193.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55193.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55193.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55193.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55194.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55194.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55194.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55194.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55195.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55195.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55195.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55195.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55196.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55196.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55196.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55196.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55197.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55197.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55197.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55197.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55198.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55198.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55198.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 55198.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55199.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 55199.000000] [simulator/INFO] on12 is observing his environment... +[on1:ON:(2) 55199.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55199.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55200.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55200.000000] [simulator/INFO] on1 is observing his environment... +[on12:ON:(13) 55200.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 55200.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55201.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55201.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55201.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55202.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55202.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55202.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55203.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55203.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55203.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55204.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55204.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55204.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55205.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55205.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55205.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55206.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55206.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55206.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55207.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55207.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55207.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55208.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55208.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55208.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55209.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55209.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55209.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55210.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55210.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55210.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55211.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55211.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55211.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55212.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55212.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55212.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55213.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55213.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55213.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55214.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55214.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55214.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55215.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55215.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55215.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55216.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55216.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55216.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55217.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55217.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55217.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55218.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55218.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55218.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55219.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55219.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55219.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55220.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55220.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55220.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55221.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55221.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55221.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55222.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55222.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55222.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55223.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55223.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55223.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55224.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55224.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55224.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55225.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55225.000000] [simulator/INFO] on1 is observing his environment... +[on5:ON:(6) 55225.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55226.000000] [simulator/INFO] on5 is observing his environment... +[on1:ON:(2) 55226.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 55226.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55227.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 55227.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 55227.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55228.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55228.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55229.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55229.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55230.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55230.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55231.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55231.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55232.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55232.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55233.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55233.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55234.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55234.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55235.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55235.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55236.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55236.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55237.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55237.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55238.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55238.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55239.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55239.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55240.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55240.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55241.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55241.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55242.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55242.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55243.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55243.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55244.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55244.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55245.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55245.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55246.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55246.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55247.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55247.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55248.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55248.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55249.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55249.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55250.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55250.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55251.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55251.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55252.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55252.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55253.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55253.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55254.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55254.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55255.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55255.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55256.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55256.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55257.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55257.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55258.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55258.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55259.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55259.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55260.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55260.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55261.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55261.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55262.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55262.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55263.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55263.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55264.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55264.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55265.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55265.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55266.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55266.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55267.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55267.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55268.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55268.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55269.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55269.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55270.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55270.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55271.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55271.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55272.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55272.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55273.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55273.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55274.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55274.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55275.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55275.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55276.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55276.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55277.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55277.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55278.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55278.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55279.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55279.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55280.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55280.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55281.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55281.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55282.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55282.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55283.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55284.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55284.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55285.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55285.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55286.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55286.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55287.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55287.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55288.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55288.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55289.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55289.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55290.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55290.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55291.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55291.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55292.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55292.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55293.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55293.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55294.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55294.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55295.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55295.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55296.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55296.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55297.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55297.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55298.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55298.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55299.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55299.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55300.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55300.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55301.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55301.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55302.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55302.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55303.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55303.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55304.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55304.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55305.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55305.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55306.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55306.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55307.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55307.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55308.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55308.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55309.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55309.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55310.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55310.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55311.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55311.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55312.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55312.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55313.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55313.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55314.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55314.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55315.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55315.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55316.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55316.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55317.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55317.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55318.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55318.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 55319.000000] [simulator/INFO] on10 is observing his environment... +[on5:ON:(6) 55319.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 55320.000000] [simulator/INFO] on5 is observing his environment... +[on10:ON:(11) 55320.000000] [simulator/INFO] on10 is sleeping +[on5:ON:(6) 55321.000000] [simulator/INFO] on5 is sleeping +[on6:ON:(7) 55600.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 55600.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55602.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55604.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55606.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55608.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55610.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55612.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55614.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55616.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55618.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55620.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55622.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55624.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55626.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55628.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55630.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55632.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55634.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55636.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55638.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55640.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55642.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55644.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55646.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55648.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55650.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55652.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55654.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55656.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55658.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55660.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55662.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55664.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55666.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55668.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55670.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55672.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55674.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55676.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55678.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55680.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55682.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55683.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55694.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55696.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55715.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55715.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 55715.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55716.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55717.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55717.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55718.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 55719.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55719.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55720.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55720.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55720.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 55720.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55721.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55721.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55721.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55722.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55722.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55722.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55723.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55723.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55723.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55724.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55724.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55724.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55725.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55725.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55725.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55726.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55726.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55726.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55727.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55727.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55727.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55728.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55728.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55728.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55729.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55729.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55729.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55730.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55730.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55730.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55731.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55731.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55731.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55732.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55732.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55732.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55733.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55733.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55733.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55734.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55734.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55734.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55735.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55735.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55736.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55736.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55736.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55737.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55737.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55738.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55738.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55738.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55739.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55739.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55740.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55740.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55740.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55741.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55741.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55742.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55742.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55742.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55743.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55743.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55744.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55744.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55744.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55745.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55745.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55746.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55746.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55746.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55747.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55747.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55748.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55748.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55748.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55749.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55749.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55750.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55750.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55750.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55751.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55751.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55752.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55752.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55752.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55753.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55753.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55754.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55754.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55754.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55755.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55755.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55756.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55756.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55756.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55757.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55757.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55758.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55758.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55758.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55759.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55759.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55760.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55760.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55760.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55761.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55761.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55762.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55762.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55762.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55763.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55763.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55764.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55764.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55764.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55765.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55765.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55766.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55766.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55766.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55767.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55767.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55768.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55768.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55768.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55769.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55769.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55770.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55770.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55770.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55771.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55771.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55772.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55772.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55772.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55773.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55773.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55774.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55774.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55774.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55775.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55775.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55776.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55776.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55776.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55777.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55777.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55778.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55778.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 55778.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55779.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 55779.000000] [simulator/INFO] on6 is observing his environment... +[on3:ON:(4) 55779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55780.000000] [simulator/INFO] on3 is observing his environment... +[on6:ON:(7) 55780.000000] [simulator/INFO] on6 is sleeping +[on0:ON:(1) 55780.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55781.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55782.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55782.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55783.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55784.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55784.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55785.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55786.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55786.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55787.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55788.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55788.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55789.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55790.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55790.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55791.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55792.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55792.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55793.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55794.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55794.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55795.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55796.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55796.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55797.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55798.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55798.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55799.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55800.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55800.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55801.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55802.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55802.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55803.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55804.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55804.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55805.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55806.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55806.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55807.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55808.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55808.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55809.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55810.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55810.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55811.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55812.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55812.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55813.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55814.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55814.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55815.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55816.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55816.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55817.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55818.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55818.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55819.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55820.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55820.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55821.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55822.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55822.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55823.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55824.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55824.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55825.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55826.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55826.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55827.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55828.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55829.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55830.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55831.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55832.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55833.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55834.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55835.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55836.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55837.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55838.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55839.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55840.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55841.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55842.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55843.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55844.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55845.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55846.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55847.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55848.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55849.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55850.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55851.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55852.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55853.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55854.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55855.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55856.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55857.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55858.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55859.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55860.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55861.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55862.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55863.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55864.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55865.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55866.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55867.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55868.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55869.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55870.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55871.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55872.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55873.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55874.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55875.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55876.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55877.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55878.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55879.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55880.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55881.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55882.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55883.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55884.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55885.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55886.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55887.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55888.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55889.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55890.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55891.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55892.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55893.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 55894.000000] [simulator/INFO] on3 is observing his environment... +[on0:ON:(1) 55894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55895.000000] [simulator/INFO] on0 is observing his environment... +[on3:ON:(4) 55895.000000] [simulator/INFO] on3 is sleeping +[on0:ON:(1) 55896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 55900.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 56507.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 56507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56508.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56510.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56512.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56514.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56516.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56518.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56520.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56522.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56524.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56526.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56528.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56530.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56532.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56534.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56536.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56538.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56540.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56542.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56563.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56565.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56567.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56569.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56571.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56573.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56575.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56577.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56579.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56581.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56583.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56585.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56587.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56589.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56591.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56593.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56595.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56597.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56599.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56601.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56603.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56605.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56606.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56607.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56608.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56609.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56610.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56611.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56612.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56613.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56614.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56615.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56616.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56617.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56618.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56619.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56620.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56621.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56622.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56623.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56624.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56625.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56626.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56627.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56628.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56629.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56630.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56631.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56632.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56633.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56634.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56652.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56654.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56656.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56658.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56660.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56661.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56662.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56663.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56664.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56665.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56666.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56667.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56668.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56669.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56670.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56671.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56672.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56673.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56674.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56675.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56676.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56677.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56678.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56679.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56680.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56681.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56682.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56683.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56684.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56686.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 56687.000000] [simulator/INFO] on7 is sleeping +[on8:ON:(9) 56779.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 56779.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56780.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56781.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56782.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56924.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56925.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56926.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56927.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56929.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56931.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56933.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56955.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56957.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 56959.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 57059.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 57059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57174.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 57239.000000] [simulator/INFO] on2 is sleeping +[on10:ON:(11) 57970.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 57970.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57971.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57972.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57973.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57974.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57975.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57976.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57977.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57977.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 57977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57978.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57978.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57979.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57980.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57980.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57981.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57982.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57982.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57983.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57984.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57984.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57985.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57986.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57986.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57987.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57988.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57988.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57989.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57990.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57990.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57991.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57992.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57992.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57993.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57994.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57994.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57995.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57996.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57996.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57997.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 57998.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 57998.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 57999.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 57999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58000.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58000.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58001.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58002.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58002.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58003.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58004.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58004.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58005.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58006.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58006.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58007.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58008.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58008.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58009.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58010.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58010.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58011.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58012.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58012.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58013.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58014.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58014.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58015.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58016.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58016.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58017.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58018.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58019.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58020.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58021.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58022.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58023.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58024.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58025.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58026.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58027.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58028.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58029.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58030.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58031.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58032.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58033.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58034.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58035.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58036.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58037.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58038.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58039.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58040.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58041.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58041.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58041.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 58041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58042.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58042.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58043.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58043.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58044.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58044.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58045.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58045.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58046.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58046.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58047.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58047.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58048.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58048.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58049.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58049.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58050.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58050.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58051.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58051.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58052.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58052.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58053.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58053.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58054.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58054.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58055.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58055.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58056.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58056.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58057.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58057.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58058.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58058.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58059.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58059.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58060.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58060.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58061.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58061.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58062.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58062.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58063.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58063.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58064.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58064.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58065.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58065.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58066.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58066.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58067.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58067.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58068.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58068.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58069.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58069.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58070.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58070.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58071.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58071.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58072.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58072.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58073.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58073.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58074.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58074.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58075.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58075.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58076.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58076.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58077.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58077.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58078.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58078.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58079.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58079.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58080.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58080.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58081.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58081.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58082.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58082.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58083.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58083.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58084.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58084.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58085.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58085.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58086.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58086.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58087.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58087.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58088.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58088.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58089.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58089.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58090.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58090.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58091.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58091.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58092.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58092.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58093.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58093.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58094.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58094.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58095.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58095.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58096.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58096.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58097.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58097.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58098.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58098.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58099.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58099.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58100.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58100.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58101.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58101.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58102.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58102.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58103.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58103.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58104.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58104.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58105.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58105.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58106.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58106.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58107.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58107.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58108.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58108.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58109.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58109.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58110.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58110.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58111.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58111.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58112.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58112.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58113.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58113.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58114.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58114.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58115.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58115.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58116.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58116.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58117.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58117.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58118.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58118.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58119.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58119.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58120.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58120.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58121.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58121.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58122.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58122.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58123.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58123.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58124.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58124.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58125.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58125.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58126.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58126.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58127.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58127.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58128.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58128.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58129.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58129.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58130.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58130.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58131.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58131.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58132.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58132.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58133.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58133.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58134.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58134.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58135.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58135.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58136.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58136.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58137.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58137.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58138.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58138.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58139.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58139.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58140.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58140.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58141.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58141.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58142.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58142.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58143.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58143.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58144.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58144.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58145.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58145.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58146.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58146.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58147.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58147.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58148.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58148.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 58149.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 58149.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58150.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58150.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 58150.000000] [simulator/INFO] on10 is sleeping +[on3:ON:(4) 58151.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58152.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58153.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58154.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58155.000000] [simulator/INFO] on3 is observing his environment... +[on8:ON:(9) 58155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58156.000000] [simulator/INFO] on8 is observing his environment... +[on3:ON:(4) 58156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 58157.000000] [simulator/INFO] on3 is sleeping +[on8:ON:(9) 58157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58158.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58160.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58162.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58164.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58166.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58168.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58170.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58172.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58173.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58174.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58175.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58176.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58177.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58178.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58179.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58180.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58181.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58182.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58183.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58184.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58185.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58186.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58187.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58188.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58189.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58190.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58191.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58192.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58193.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58194.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58195.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58196.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58197.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58198.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58199.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58200.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58201.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58202.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58203.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58204.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58205.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58206.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58207.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58208.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58209.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58210.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58211.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58212.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58213.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58214.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58215.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58216.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58217.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58218.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58219.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58220.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 58221.000000] [simulator/INFO] on8 is sleeping +[on2:ON:(3) 58570.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 58570.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58571.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58572.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58573.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58574.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58575.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58576.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58577.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58578.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58579.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58580.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58581.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58582.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58583.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58584.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58585.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58586.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58587.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58588.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58589.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58590.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58591.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58592.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58593.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58594.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58595.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58596.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58597.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58598.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58599.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58600.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58601.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58602.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58603.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58604.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58605.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58606.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58607.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58608.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58609.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58610.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58611.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58612.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58613.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58614.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58615.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58616.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58617.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58618.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58619.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58620.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58621.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58622.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58623.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58624.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58625.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58626.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58627.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58628.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58629.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58630.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58631.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58632.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58633.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58634.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58635.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58636.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58637.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58638.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58639.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58640.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58641.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58642.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58643.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58644.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58645.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58646.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58647.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58648.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58649.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58650.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58651.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58652.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58653.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58654.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58655.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58656.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58657.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58658.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58659.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58660.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58661.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58662.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58663.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58664.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58665.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58666.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58667.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58668.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58669.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58670.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58671.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58672.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58673.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58674.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58675.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58676.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58677.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58678.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58679.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58680.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58681.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58682.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58683.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58684.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58685.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58686.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58687.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58688.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58689.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58690.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58691.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58692.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58693.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58693.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 58693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58694.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58694.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58695.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58696.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58696.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58697.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58698.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58698.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58699.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58700.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58700.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58701.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58702.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58702.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58703.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58704.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58704.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58705.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58706.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58706.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58707.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58708.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58708.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58709.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58710.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58710.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58711.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58712.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58712.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58713.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58714.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58714.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 58715.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58716.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58716.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58716.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 58716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58717.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58717.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58718.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58718.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58719.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58719.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58720.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58720.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58721.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58721.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58722.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58722.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58723.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58723.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58724.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58724.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58725.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58725.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58726.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58726.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58727.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58727.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58727.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58728.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58728.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58729.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58729.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58729.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58730.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58730.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58731.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58731.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58731.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58732.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58732.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58733.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58733.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58733.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58734.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58734.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58735.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58735.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58735.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58736.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58736.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58737.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58737.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58737.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58738.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58738.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58739.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58739.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58739.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58740.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58740.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58741.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58741.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58741.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58742.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58742.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58743.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58743.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58743.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58744.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58744.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58745.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58745.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58745.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58746.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58746.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58747.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58747.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58747.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58748.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58748.000000] [simulator/INFO] on2 is observing his environment... +[on9:ON:(10) 58748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58749.000000] [simulator/INFO] on9 is observing his environment... +[on2:ON:(3) 58749.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 58749.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58750.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 58750.000000] [simulator/INFO] on2 is sleeping +[on9:ON:(10) 58750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58751.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58751.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58752.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58753.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58753.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58754.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58755.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58755.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58756.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58757.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58757.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58758.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58759.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58759.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58760.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58761.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58761.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58762.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58763.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58763.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58764.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58765.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58765.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58766.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58767.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58767.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58768.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58769.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58769.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58770.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58771.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58771.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58772.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58773.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58773.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58774.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58775.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58775.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58776.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58777.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58777.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58778.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58779.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58779.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58780.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58781.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58781.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58782.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58783.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58783.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58784.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58785.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58785.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58786.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58787.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58787.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58788.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58789.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58789.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58790.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58791.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58791.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58792.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58793.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58793.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58794.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58795.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58795.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58796.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58797.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58797.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58798.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58799.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58799.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58800.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58801.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58801.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58802.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58803.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58803.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58804.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58805.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58805.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58806.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58807.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58807.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58808.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58809.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58809.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58810.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58811.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58811.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58812.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58813.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58813.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58814.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58815.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58815.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58816.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58817.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58817.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58818.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58819.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58819.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58820.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58821.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58821.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58822.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58823.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58823.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58824.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58825.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58825.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58826.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58827.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58827.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58828.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58829.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58829.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58830.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58831.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58831.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58832.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58833.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58833.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58834.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58835.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58835.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58836.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58837.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58837.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58838.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58839.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58839.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58840.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58841.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58841.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58842.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58843.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58843.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58844.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58845.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58845.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58846.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58847.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58847.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58848.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58849.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58849.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58850.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58851.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58851.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58852.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58853.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58853.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58854.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58855.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58855.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58856.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58857.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58857.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58858.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58859.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58859.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58860.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58861.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58861.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58862.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58863.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58863.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58864.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58865.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58865.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58866.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58867.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58867.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58868.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58869.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58869.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58870.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58871.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58871.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 58872.000000] [simulator/INFO] on4 is observing his environment... +[on9:ON:(10) 58872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58873.000000] [simulator/INFO] on9 is observing his environment... +[on4:ON:(5) 58873.000000] [simulator/INFO] on4 is sleeping +[on9:ON:(10) 58874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58875.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58877.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58879.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58881.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58883.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58885.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58886.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58887.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58888.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58889.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58890.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58891.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58892.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58893.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58894.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58895.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 58896.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 59370.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 59370.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59371.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59372.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59373.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59374.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59375.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59376.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59377.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59378.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59379.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59380.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59381.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59382.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59383.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59384.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59385.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59386.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59387.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59388.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59389.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59390.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59391.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59392.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59393.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59394.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59395.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59397.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59399.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59401.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59403.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 59550.000000] [simulator/INFO] on5 is sleeping +[on0:ON:(1) 60407.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 60407.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60409.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60411.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60413.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60415.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60417.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60419.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60421.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60423.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60425.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60427.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60429.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60431.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60433.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60435.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60437.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60439.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60441.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60443.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60445.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60447.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60449.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60451.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60453.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60455.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60457.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60459.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60461.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60463.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60465.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60467.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60469.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60470.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60471.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60472.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60473.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60474.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60475.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60476.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60477.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60478.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60479.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60480.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60481.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60481.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 60481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60482.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60482.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60483.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60484.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60484.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60485.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60486.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60486.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60487.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60488.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60488.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60489.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60490.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60490.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 60491.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60492.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60492.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60492.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 60492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60493.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60493.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60494.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60494.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60495.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60495.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60496.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60496.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60497.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60497.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60498.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60498.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60499.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60499.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60500.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60500.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60501.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60501.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60502.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60502.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60503.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60503.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60504.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60504.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60505.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60505.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60506.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60506.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60507.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60507.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60508.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60508.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60509.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60509.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60510.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60510.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60511.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60511.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60512.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60512.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60513.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60513.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60514.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60514.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60515.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60515.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60516.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60516.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60517.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60517.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60518.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60518.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60519.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60519.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60520.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60520.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60521.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60521.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60522.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60522.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60523.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60523.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60524.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60524.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60525.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60525.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60526.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60526.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60527.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60527.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60528.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60528.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60529.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60529.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60530.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60530.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60531.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60531.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60532.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60532.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60533.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60533.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60534.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60534.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60535.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60535.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60536.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60536.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60537.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60537.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60538.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60538.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60539.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60539.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60540.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60540.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60541.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60541.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60542.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60542.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60543.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60543.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60544.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60544.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60545.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60545.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60546.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60546.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60547.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60547.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60548.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60548.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60549.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60549.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60549.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60550.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60550.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60551.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60551.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60551.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60552.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60552.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60552.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60552.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 60552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60553.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60553.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60553.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60553.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60554.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60554.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60554.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60555.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60555.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60555.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60555.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60556.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60556.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60556.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60557.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60557.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60557.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60557.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60558.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60558.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60558.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60559.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60559.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60559.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60559.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60560.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60560.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60560.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60561.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60561.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60561.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60561.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60562.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60562.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60562.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60563.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60563.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60563.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60563.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60564.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60564.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60564.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60565.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60565.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60565.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60565.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60566.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60566.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60566.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60567.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60567.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60567.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60567.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60568.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60568.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60568.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60569.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60569.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60569.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60569.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60570.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60570.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60570.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60571.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60571.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60571.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60571.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60572.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60572.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60572.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60573.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60573.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60573.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60573.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60574.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60574.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60574.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60575.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60575.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60575.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60575.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60576.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60576.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60576.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60577.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60577.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60577.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60577.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60578.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60578.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60578.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60579.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60579.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60579.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60579.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60580.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60580.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60580.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60581.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60581.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60581.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60581.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60582.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60582.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60582.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60583.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60583.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60583.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60583.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60584.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60584.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60584.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60585.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60585.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60585.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 60585.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60586.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 60586.000000] [simulator/INFO] on0 is observing his environment... +[on6:ON:(7) 60586.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60587.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60587.000000] [simulator/INFO] on6 is observing his environment... +[on0:ON:(1) 60587.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 60587.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60588.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60588.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60589.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60589.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60589.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60590.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60590.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60591.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60591.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60591.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60592.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60592.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60593.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60593.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60593.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60594.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60594.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60595.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60595.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60595.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60596.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60596.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60597.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60597.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60597.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60598.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60598.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60599.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60599.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60599.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60600.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60600.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60601.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60601.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60601.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60602.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60602.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60603.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60603.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60603.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60604.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60604.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60605.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60605.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60605.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60606.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60606.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60607.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60607.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60607.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60608.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60608.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60609.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60609.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60609.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60610.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60610.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60611.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60611.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60611.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60612.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60612.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60613.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60613.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60613.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60614.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60614.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60615.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60615.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60615.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60616.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60616.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60617.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60617.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60617.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60618.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60618.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60619.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60619.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60619.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60620.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60620.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60621.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60621.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60621.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60622.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60622.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60622.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60623.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60623.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60623.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60624.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60624.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60624.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60625.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60625.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60625.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60626.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60626.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60626.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60627.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60627.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60627.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60628.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60628.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60628.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60629.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60629.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60629.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60630.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60630.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60630.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60631.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60631.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60631.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60632.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60632.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60632.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60633.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60633.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60633.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60634.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60634.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60634.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60635.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60635.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60636.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60636.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60636.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60637.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60637.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60638.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60638.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60638.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60639.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60639.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60640.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60640.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60640.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60641.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60641.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60642.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60642.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60642.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60643.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60643.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60644.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60644.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60644.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60645.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60645.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60646.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60646.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60646.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60647.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60647.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60648.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60648.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60648.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60649.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60649.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60650.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60650.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60650.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60651.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60651.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60652.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60652.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60652.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60653.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60653.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60654.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60654.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60654.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60655.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60655.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60656.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60656.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60656.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60657.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60657.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60658.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60658.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60658.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60659.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60659.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 60660.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 60660.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60660.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60661.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60661.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 60661.000000] [simulator/INFO] on7 is sleeping +[on6:ON:(7) 60662.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60662.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60663.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60664.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60664.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60665.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60666.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60666.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60667.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60668.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60668.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60669.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60670.000000] [simulator/INFO] on6 is observing his environment... +[on1:ON:(2) 60670.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60671.000000] [simulator/INFO] on1 is observing his environment... +[on6:ON:(7) 60671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 60672.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 60672.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60674.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60676.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60678.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60680.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60682.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60684.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60686.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60688.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60690.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60692.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60694.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60696.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60698.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60699.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60700.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60701.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60702.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60703.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60704.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60705.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60706.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60707.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60708.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60709.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60710.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60711.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60712.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60713.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60714.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60715.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60716.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60717.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60718.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60719.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60720.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60721.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60722.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60723.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60724.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60725.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60726.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60727.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60728.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60729.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60730.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60731.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 60732.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 60812.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 60812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60846.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60848.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60850.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60852.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60854.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60856.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60858.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60864.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60938.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60940.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60942.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60944.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60946.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60948.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60950.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60952.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60954.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60956.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60958.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60960.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60962.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60964.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60966.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60968.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60970.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60972.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60974.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60976.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60978.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60980.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60982.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60984.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60986.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60988.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60990.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 60992.000000] [simulator/INFO] on11 is sleeping +[on12:ON:(13) 61143.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 61143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61144.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61146.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61148.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61150.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61152.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61154.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61156.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61158.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61160.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61162.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61164.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61166.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61168.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61170.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61172.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61174.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61176.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61178.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61180.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61186.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61188.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61190.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61192.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61194.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61196.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61197.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61198.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61199.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61200.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61201.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61202.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61203.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61204.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61205.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61206.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61207.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61208.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61209.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61210.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61211.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61212.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61213.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61214.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61215.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61216.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61217.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61218.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61219.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61220.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61221.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61221.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 61221.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61222.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61222.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61223.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61223.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61224.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61224.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61225.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61225.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61226.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61226.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61227.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61227.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61228.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61228.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61229.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61229.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61230.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61230.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61231.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61231.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61232.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61232.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61233.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61233.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61234.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61234.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61235.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61235.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61236.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61236.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61237.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61237.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61238.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61238.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61239.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61239.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61240.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61240.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61241.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61241.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61242.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61242.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61243.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61243.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61244.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61244.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61245.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61245.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61246.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61246.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61247.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61247.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61248.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61248.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61249.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61249.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61250.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61250.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61251.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61251.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61252.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61252.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61253.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61253.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61254.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61254.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61255.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61255.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61255.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 61255.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61256.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61256.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61256.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61257.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61257.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61257.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61258.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61258.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61258.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61259.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61259.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61259.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61260.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61260.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61260.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61261.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61261.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61261.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61262.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61262.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61262.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61263.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61263.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61263.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61264.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61264.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61264.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61265.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61265.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61265.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61266.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61266.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61266.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61267.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61267.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61267.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61268.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61268.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61268.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61269.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61269.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61269.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61270.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61270.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61270.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61271.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61271.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61271.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61272.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61272.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61272.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61273.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61273.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61273.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61274.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61274.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61274.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61275.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61275.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61275.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61276.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61276.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61276.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61277.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61277.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61277.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61278.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61278.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61278.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61279.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61279.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61279.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61280.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61280.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61280.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61281.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61281.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61281.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61282.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61282.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61282.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61283.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61283.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61283.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61284.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61284.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61284.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61285.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61285.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61285.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61286.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61286.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61286.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61287.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61287.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61287.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61288.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61288.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61288.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61289.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61289.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61289.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61290.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61290.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61290.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61291.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61291.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61291.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61292.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61292.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61292.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61293.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61293.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61293.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61294.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61294.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61294.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61295.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61295.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61295.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61296.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61296.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61296.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61297.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61297.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61297.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61298.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61298.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61298.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61299.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61299.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61299.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61300.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61300.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61300.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61301.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61301.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61301.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61302.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61302.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61302.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61303.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61303.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61303.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61304.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61304.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61304.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61305.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61305.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61305.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61306.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61306.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61306.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61307.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61307.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61307.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61308.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61308.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61308.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61309.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61309.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61309.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61310.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61310.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61310.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61311.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61311.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61311.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61312.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61312.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61312.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61313.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61313.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61313.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61314.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61314.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61314.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61315.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61315.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61315.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61316.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61316.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61316.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61317.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61317.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61317.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61318.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61318.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61318.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61319.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61319.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61319.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61320.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61320.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61320.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61321.000000] [simulator/INFO] on12 is observing his environment... +[on10:ON:(11) 61321.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61321.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61322.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61322.000000] [simulator/INFO] on10 is observing his environment... +[on12:ON:(13) 61322.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 61323.000000] [simulator/INFO] on12 is sleeping +[on10:ON:(11) 61323.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61323.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61324.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61324.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61325.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61325.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61326.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61326.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61327.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61327.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61328.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61328.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61329.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61329.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61330.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61330.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61331.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61331.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61332.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61333.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61333.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61334.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61335.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61335.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61336.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61337.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61337.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61338.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61339.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61339.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61340.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61341.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61341.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61342.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61343.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61343.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61344.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61345.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61345.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61346.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61347.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61347.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61348.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61349.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61349.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61350.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61351.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61351.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61352.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61353.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61353.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61354.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61355.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61355.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61356.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61357.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61357.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61358.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61359.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61359.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61360.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61361.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61361.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61362.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61363.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61363.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61364.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61365.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61365.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61366.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61367.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61367.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61368.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61369.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61369.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61370.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61371.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61371.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61372.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61373.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61373.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61374.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61375.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61375.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61376.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61377.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61377.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61378.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61379.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61379.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61380.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61381.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61381.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61382.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61383.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61383.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61384.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61385.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61385.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61386.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61387.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61387.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61388.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61389.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61389.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61390.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61391.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61391.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61392.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61393.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61393.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61394.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61395.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61395.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61396.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61397.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61397.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61398.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61399.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 61399.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61400.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 61400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 61401.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 61401.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61402.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61403.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61404.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61405.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61406.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61407.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61408.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61409.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61410.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61411.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61412.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61413.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61414.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61415.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61416.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61417.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61418.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61419.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61420.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61421.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61422.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61423.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61424.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61425.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61426.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61427.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61428.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61429.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61430.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61431.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61432.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61433.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61434.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 61435.000000] [simulator/INFO] on6 is sleeping +[on3:ON:(4) 62215.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 62215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62298.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62300.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62302.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62306.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62308.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62309.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62310.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62311.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62312.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62313.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62314.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62315.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62316.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62317.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62318.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62319.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62320.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62321.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62322.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62323.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62324.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62325.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62326.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62327.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62328.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62329.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62330.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62331.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62332.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62333.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62334.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62335.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62336.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62337.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62338.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62339.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62340.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62341.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62342.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62343.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62344.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62345.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62346.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62347.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62348.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62349.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62350.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62351.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62352.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62353.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62354.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62355.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62356.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62357.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62358.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62359.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62360.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62361.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62362.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62363.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62364.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62365.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62366.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62367.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62368.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62369.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62370.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62371.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62372.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62373.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62374.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62375.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62376.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62377.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62378.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62379.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62380.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62381.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62382.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62383.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62384.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62385.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62386.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 62395.000000] [simulator/INFO] on3 is sleeping +[on1:ON:(2) 62442.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 62442.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62443.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62444.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62445.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62446.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62447.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62448.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62449.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62450.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62451.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62452.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62453.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62454.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62455.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62456.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62457.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62458.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62459.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62460.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62461.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62462.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62463.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62464.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62465.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62466.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62467.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62468.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62469.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62470.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62471.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62472.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62473.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62474.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62475.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62476.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62477.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62478.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62479.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62480.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62481.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62482.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62483.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62484.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62485.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62486.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62487.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62488.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62489.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62490.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62491.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62492.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62493.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62494.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62495.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62496.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62497.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62498.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62499.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62500.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62501.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62502.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62503.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62504.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62505.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62506.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62507.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62508.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62509.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62510.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62511.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62512.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62513.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62514.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62515.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62516.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62517.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62519.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62521.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62523.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62525.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62527.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62529.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62531.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62533.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62535.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62537.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62539.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62541.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62543.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62545.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62547.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62549.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62551.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62553.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62555.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62557.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62559.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62561.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62563.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62565.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62567.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62569.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62571.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62573.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62575.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62577.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62579.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62581.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62583.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62585.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62587.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62589.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62591.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62593.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62595.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62597.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62599.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62600.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62601.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62602.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62603.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62604.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62605.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62606.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62607.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62608.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62609.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62610.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62611.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62612.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62613.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62614.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62615.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62616.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62617.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62618.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62619.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62620.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62621.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 62622.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 62845.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 62845.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62846.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62847.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62848.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62849.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62850.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62851.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62852.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62853.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62854.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62889.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62889.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 62889.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62890.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62891.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62891.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62892.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62893.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62893.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62894.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62895.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62895.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62896.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62897.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62897.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62898.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62899.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62899.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62900.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62901.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62901.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62902.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62903.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62903.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62904.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62905.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62905.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62906.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62907.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62907.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62908.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62909.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62909.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62910.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62911.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62911.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62912.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62913.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62913.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62914.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62915.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62915.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62916.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62917.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62917.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62918.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62919.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62919.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62920.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62921.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62921.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62922.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62922.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62923.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62923.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62924.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62925.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62925.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62926.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62927.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62927.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62928.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62928.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62929.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62929.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62930.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62931.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62931.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62932.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62933.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62933.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62934.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62934.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62935.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62935.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62936.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62937.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62937.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62938.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62939.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62939.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62940.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62940.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62941.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62941.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62942.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62943.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62943.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62944.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62945.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62945.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62946.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62946.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62947.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62947.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62948.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62949.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62949.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62950.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62951.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62951.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62952.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62952.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62953.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62953.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62954.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62955.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62955.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62956.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62957.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62957.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62958.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62958.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62959.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62959.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62960.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62961.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62961.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62962.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62963.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62963.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62964.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62964.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62965.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62965.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62966.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62967.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62967.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62968.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62969.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62969.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62970.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62970.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62971.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62971.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62972.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62973.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62973.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62974.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62975.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62975.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62976.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62976.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62977.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62977.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62978.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62979.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62979.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62980.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62981.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62981.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62982.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62982.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62983.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62983.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62984.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62985.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62985.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62986.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62987.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62987.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62988.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62988.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62989.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62989.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62990.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62991.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62991.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62992.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62993.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62993.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62994.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62994.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62995.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62995.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62996.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62997.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62997.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 62998.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 62998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 62999.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 62999.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63000.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63000.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63001.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63001.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63002.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63002.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63003.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63003.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63004.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63004.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63005.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63005.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63006.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63006.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63007.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63007.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63008.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63008.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63009.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63009.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63010.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63010.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63011.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63011.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63012.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63012.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63013.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63013.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63014.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63014.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63015.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63015.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63016.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63016.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63017.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63017.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63018.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63018.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63019.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63019.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63020.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63020.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63021.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63021.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63022.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63022.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63023.000000] [simulator/INFO] on5 is observing his environment... +[on4:ON:(5) 63023.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63024.000000] [simulator/INFO] on4 is observing his environment... +[on5:ON:(6) 63024.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 63025.000000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 63025.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63026.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63027.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63028.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63029.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63030.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63031.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63032.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63033.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63034.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63035.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63036.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63037.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63038.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63039.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63040.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63041.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63042.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63043.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63044.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63045.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63046.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63047.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63048.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63049.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63050.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63051.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63052.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63053.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63055.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63056.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63057.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63058.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63059.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63060.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63061.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63062.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63063.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63064.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63065.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63066.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63067.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63068.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 63069.000000] [simulator/INFO] on4 is sleeping +[on7:ON:(8) 63369.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 63369.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63370.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63371.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63372.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63373.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63374.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63375.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63376.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63377.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63378.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63379.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63380.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63381.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63382.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63383.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63384.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63385.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63386.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63387.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63388.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63389.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63390.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63391.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63392.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63393.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63394.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63395.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63396.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63397.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63398.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63399.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63400.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63401.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63402.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63403.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63404.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63405.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63406.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63407.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63408.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63409.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63410.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63411.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63412.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63413.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63414.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63415.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63416.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63417.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63418.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63419.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63420.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63421.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63422.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63423.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63424.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63425.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63426.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63427.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63428.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63429.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63430.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63431.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63432.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63433.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63434.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63435.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63436.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63437.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63438.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63439.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63440.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63441.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63442.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63443.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63444.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63445.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63446.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63447.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63448.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63449.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63450.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63451.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63452.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63453.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63454.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63455.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63456.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63457.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63458.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63458.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 63458.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63459.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63459.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63460.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63460.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63461.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63461.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63462.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63462.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63463.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63463.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63464.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63464.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63465.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63465.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63466.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63466.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63467.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63467.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63468.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63468.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63469.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63469.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63470.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63470.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63471.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63471.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63472.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63472.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63473.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63473.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63474.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63474.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63475.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63475.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63476.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63476.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63477.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63477.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63478.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63478.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63479.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63479.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63480.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63480.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63481.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63481.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63482.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63482.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63483.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63483.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63484.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63484.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63485.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63485.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63486.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63486.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63487.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63487.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63488.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63488.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63489.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63489.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63490.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63490.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63491.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63491.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63492.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63492.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63493.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63493.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63494.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63494.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63495.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63495.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63496.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63496.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63497.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63497.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63498.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63498.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63499.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63499.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63500.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63500.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63501.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63501.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63502.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63502.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63503.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63503.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63504.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63504.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63504.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 63504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63505.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63505.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63505.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63506.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63506.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63507.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63507.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63507.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63508.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63508.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63509.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63509.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63509.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63510.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63510.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63511.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63511.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63511.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63512.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63512.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63513.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63513.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63513.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63514.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63514.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63515.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63515.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63515.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63516.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63516.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63517.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63517.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63517.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63518.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63518.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63519.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63519.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63519.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63520.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63520.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63521.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63521.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63521.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63522.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63522.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63523.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63523.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63523.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63524.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63524.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63525.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63525.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63525.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63526.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63526.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63527.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63527.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63527.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63528.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63528.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63529.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63529.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63529.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63530.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63530.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63531.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63531.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63531.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63532.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63532.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63533.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63533.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63533.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63534.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63534.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63535.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63535.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63535.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63536.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63536.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63537.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63537.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63537.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63538.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63538.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63539.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63539.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63539.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63540.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63540.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63541.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63541.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63541.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63542.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63542.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63543.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63543.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63543.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63544.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63544.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63545.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63545.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63545.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63546.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63546.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63547.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63547.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63547.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 63548.000000] [simulator/INFO] on7 is observing his environment... +[on12:ON:(13) 63548.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63549.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63549.000000] [simulator/INFO] on12 is observing his environment... +[on7:ON:(8) 63549.000000] [simulator/INFO] on7 is sleeping +[on12:ON:(13) 63550.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63551.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63551.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63552.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63553.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63553.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63554.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63555.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63555.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63556.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63557.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63557.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63558.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63559.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63559.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63560.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63561.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63561.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63562.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63563.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63563.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63564.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63565.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63565.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63566.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63567.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63567.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63568.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63569.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63569.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63570.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63571.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63571.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63572.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63573.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63573.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63574.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63575.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63575.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63576.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63577.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63577.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63578.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63579.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63579.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63580.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63581.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63581.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63582.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63583.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63583.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63584.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63585.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63585.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63586.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63587.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63587.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63588.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63589.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63589.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63590.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63591.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63591.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63592.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63593.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63593.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63594.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63595.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63595.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63596.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63597.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63597.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63598.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63599.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63599.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63600.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63601.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63601.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63602.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63603.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63603.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63604.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63605.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63605.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63606.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63607.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63607.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63608.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63609.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63609.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63610.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63611.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63611.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63612.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63613.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63613.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63614.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63615.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63615.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63616.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63617.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63617.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63618.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63619.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63619.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63620.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63621.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63621.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63622.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63623.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63623.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63624.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63625.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63625.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63626.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63627.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63627.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63628.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63629.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63629.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63630.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63631.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63631.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63632.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63633.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63633.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63634.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63635.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63635.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63636.000000] [simulator/INFO] on12 is observing his environment... +[on11:ON:(12) 63636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63637.000000] [simulator/INFO] on11 is observing his environment... +[on12:ON:(13) 63637.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 63638.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 63638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63647.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63649.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63671.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63673.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63675.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63677.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63679.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63681.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63683.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 63684.000000] [simulator/INFO] on11 is sleeping +[on0:ON:(1) 63697.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 63697.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63698.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63699.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63700.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63701.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63702.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63703.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63704.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63705.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63706.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63707.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63708.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63709.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63710.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63711.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63712.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63713.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63714.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63715.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63716.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63717.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63718.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63719.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63720.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63721.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63722.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63723.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63724.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63725.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63726.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63727.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63728.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63729.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63730.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63731.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63732.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63733.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63734.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63735.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63736.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63737.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63738.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63739.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63740.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63741.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63742.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63743.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63744.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63745.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63746.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63747.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63748.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63749.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63750.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63751.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63752.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63753.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63754.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63755.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63756.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63757.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63758.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63759.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63760.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63761.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63762.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63763.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63764.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63765.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63766.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63767.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63768.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63769.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63770.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63771.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63772.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63773.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63774.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63775.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63776.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63777.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63778.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63779.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63780.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63781.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63782.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63783.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63784.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63785.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63786.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63787.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63788.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63789.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63790.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63791.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63792.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63793.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63794.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63795.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63796.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63797.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63798.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63799.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63800.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63801.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63802.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63803.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63804.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63805.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63806.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63807.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63808.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63809.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63810.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63811.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63812.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63813.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63814.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63815.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63816.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63817.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63818.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63819.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63820.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63821.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63822.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63823.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63824.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63825.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63826.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63827.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63829.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63831.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63833.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63835.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63837.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63839.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63841.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63843.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63845.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63847.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63849.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63851.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63853.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63855.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63857.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63859.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63861.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63863.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63865.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63867.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63869.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63871.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63873.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63875.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 63877.000000] [simulator/INFO] on0 is sleeping +[on9:ON:(10) 64063.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 64063.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64065.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64067.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64069.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64071.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64073.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64075.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64077.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64079.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64081.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64083.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64085.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64087.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64089.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64091.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64093.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64095.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64097.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64099.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64101.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64103.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64105.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64107.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64109.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64111.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64113.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64115.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64117.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64119.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64121.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64123.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64125.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64127.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64129.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64131.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64133.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64135.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64137.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64139.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64141.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64143.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64145.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64147.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64149.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64151.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64153.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64155.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64157.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64159.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64160.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64161.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64162.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64163.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64164.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64165.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64166.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64167.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64168.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64169.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64170.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64171.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64172.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64173.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64174.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64175.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64176.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64177.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64178.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64179.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64180.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64181.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64182.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64183.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64184.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64185.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64186.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64187.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64188.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64189.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64190.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64191.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64192.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64193.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64194.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64195.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64196.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64197.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64198.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64199.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64200.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64201.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64202.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64203.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64204.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64205.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64206.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64207.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64208.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64209.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64210.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64211.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64212.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64213.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64214.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64215.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64216.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64217.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64218.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64219.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64220.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64221.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64222.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64223.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64224.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64225.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64226.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64227.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64228.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64229.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64230.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64231.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64232.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64233.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64234.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64235.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64236.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64237.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64238.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64239.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64240.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64241.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64242.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 64243.000000] [simulator/INFO] on9 is sleeping +[on2:ON:(3) 64350.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 64350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64351.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64353.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64355.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64357.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64359.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64361.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64363.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64365.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64367.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64369.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64371.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64373.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64375.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64377.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64379.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64381.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64383.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64385.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64387.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64389.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64391.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64393.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64395.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64396.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64397.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64398.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64399.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64400.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64401.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64402.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64403.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64404.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64405.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64406.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64407.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64408.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64409.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64410.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64411.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64412.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64413.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64414.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64415.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64416.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64417.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64418.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64419.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64420.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64421.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64422.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64423.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64424.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64425.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64426.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64427.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64428.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64429.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64430.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64431.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64432.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64433.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64434.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64435.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64436.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64437.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64438.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64439.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64440.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64441.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64442.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64443.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64444.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64445.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64446.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64447.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64448.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64449.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64450.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64451.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64452.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64453.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64454.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64455.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64456.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64457.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64458.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64459.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64460.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64461.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64462.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64463.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64464.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64465.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64466.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64467.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64468.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64469.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64470.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64471.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64472.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64473.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64474.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64475.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64476.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64477.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64478.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64479.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64480.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64481.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64482.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64483.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64484.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64485.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64486.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64487.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64488.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64489.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64490.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64491.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64492.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64493.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64494.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64495.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64496.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64497.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64498.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64499.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64500.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64501.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64502.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64503.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64504.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64505.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64506.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64507.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64508.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64509.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64510.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64511.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64512.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64513.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64514.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64515.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64516.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64517.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64518.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64519.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64520.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64521.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64522.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64523.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64524.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64525.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64526.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64527.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64528.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64529.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 64530.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 64783.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 64783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64924.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64925.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64926.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64927.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64928.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64929.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64930.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64931.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64932.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64933.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64934.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64935.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64936.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64937.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64938.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64939.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64940.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64941.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64942.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64943.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64944.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64945.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64946.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64947.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64948.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64949.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64950.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64951.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64952.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64953.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64954.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64955.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64955.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 64955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64956.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64956.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64957.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64958.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64958.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64959.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64960.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64960.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64961.000000] [simulator/INFO] on8 is observing his environment... +[on0:ON:(1) 64961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64962.000000] [simulator/INFO] on0 is observing his environment... +[on8:ON:(9) 64962.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 64963.000000] [simulator/INFO] on8 is sleeping +[on0:ON:(1) 64963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 64999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65009.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65011.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65013.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65015.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65017.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65019.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65021.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65023.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65025.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65027.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65029.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65031.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65033.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65035.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65037.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65039.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65041.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65043.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65045.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65047.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65049.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65051.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65053.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65055.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65056.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65057.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65058.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65059.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65060.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65061.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65062.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65063.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65064.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65065.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65066.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65067.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65068.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65069.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65070.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65071.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65072.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65073.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65074.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65075.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65076.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65077.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65078.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65079.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65080.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65081.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65083.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65085.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65087.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65089.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65091.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65093.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65095.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65097.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65099.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65101.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65102.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65103.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65104.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65105.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65106.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65107.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65108.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65109.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65110.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65111.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65112.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65113.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65114.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65115.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65116.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65117.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65118.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65119.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65120.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65121.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65122.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65123.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65124.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65125.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65126.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65127.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65128.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65129.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65130.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65131.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65132.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65133.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65134.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 65135.000000] [simulator/INFO] on0 is sleeping +[on12:ON:(13) 65742.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 65742.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65743.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65744.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65745.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65746.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65747.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65748.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65749.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65750.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65751.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65752.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65753.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65754.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65755.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65756.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65757.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65758.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65759.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65760.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65761.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65762.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65763.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65764.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65765.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65766.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65767.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65768.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65769.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65770.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65771.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65772.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65773.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65774.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65775.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65776.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65777.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65778.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65779.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65780.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65781.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65782.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65783.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65784.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65785.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65786.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65787.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65788.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65789.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65790.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65791.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65792.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65793.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65794.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65795.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65796.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65797.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65798.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65800.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65802.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65804.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65806.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65808.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65810.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65812.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65814.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65816.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65818.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65820.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65845.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65846.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65847.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65848.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65849.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65850.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65851.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65852.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65853.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65854.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65855.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65856.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65857.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65858.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65859.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65860.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65861.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65862.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65863.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65864.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65865.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65866.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65867.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65868.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65869.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65870.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65871.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65872.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65873.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65874.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65875.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65876.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65876.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 65876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65877.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65877.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65878.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65879.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65879.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65880.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65881.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65881.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65882.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65883.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65883.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65884.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65885.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65885.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65886.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65887.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65887.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65888.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65889.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65889.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65890.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65891.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65891.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65892.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65893.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65893.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65894.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65895.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65895.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65896.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65896.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65896.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 65896.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65897.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65897.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65897.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65898.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65898.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65898.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65899.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65899.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65899.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65900.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65900.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65900.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65901.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65901.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65901.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65902.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65902.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65902.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65903.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65903.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65903.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65904.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65904.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65904.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65905.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65905.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65905.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65906.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65906.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65906.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65907.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65907.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65907.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65908.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65908.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65908.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65909.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65909.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65909.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65910.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65910.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65910.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65911.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65911.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65911.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65912.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65912.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65912.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65913.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65913.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65913.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65914.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65914.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65914.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65915.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65915.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65915.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65916.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65916.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65916.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65917.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65917.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65917.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65918.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65918.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65918.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65919.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65919.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65919.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65920.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 65920.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65920.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65921.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65921.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 65921.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 65922.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 65922.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65922.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65923.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65924.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65924.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65925.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65926.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65926.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65927.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65928.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65928.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65929.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65930.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65930.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65931.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65932.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65932.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65933.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65934.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65934.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65935.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65936.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65936.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65937.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65938.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65938.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65939.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65940.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65940.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65941.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65942.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65942.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65943.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65944.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65944.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65945.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65946.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65946.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65947.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65948.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65948.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65949.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65950.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65950.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65951.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65952.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65952.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65953.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65954.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65954.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65955.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65956.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65956.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65957.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65958.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65958.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65959.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65960.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65960.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65961.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65962.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65962.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65963.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65964.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65964.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65965.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65966.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65966.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65967.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65968.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65968.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65969.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65970.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65970.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65971.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65972.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65972.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65973.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65974.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65974.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65975.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65976.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65976.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65977.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65978.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65978.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65979.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65980.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65980.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65981.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65982.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65982.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65983.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65984.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65984.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65985.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65986.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65986.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65987.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65988.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65988.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65989.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65990.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65990.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65991.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65992.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65992.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65993.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65994.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65994.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65995.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65996.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65996.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65997.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 65998.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 65998.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 65999.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 65999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66000.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66000.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66001.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66002.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66002.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66003.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66004.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66004.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66005.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66006.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66006.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66007.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66008.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66008.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66009.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66010.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66010.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66011.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66012.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66012.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66013.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66014.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66014.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66015.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66016.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66016.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66017.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66018.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66018.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66019.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66020.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66020.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66021.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66022.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66022.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66023.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66024.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66024.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66025.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66026.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66026.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66027.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66028.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66028.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66029.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66030.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66030.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66031.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66032.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66032.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66033.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66034.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66034.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66035.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66036.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66036.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66037.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66038.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66038.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66039.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66040.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66040.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66041.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66042.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66042.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66043.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66044.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66044.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66045.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66046.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66046.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66047.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66048.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66048.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66049.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66050.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66050.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66051.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66052.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66052.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66053.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66054.000000] [simulator/INFO] on3 is observing his environment... +[on10:ON:(11) 66054.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66055.000000] [simulator/INFO] on10 is observing his environment... +[on3:ON:(4) 66055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 66056.000000] [simulator/INFO] on3 is sleeping +[on10:ON:(11) 66056.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66057.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66059.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66061.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66063.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 66076.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 66260.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 66260.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66262.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66264.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66266.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66268.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66270.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66272.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66274.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66276.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66278.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66280.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66282.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66284.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66286.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66288.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66290.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66292.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66294.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66296.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66344.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66345.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66346.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66347.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66348.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66349.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66350.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66351.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66352.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66353.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66354.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66355.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66356.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66357.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66358.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66359.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66360.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66361.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66362.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66363.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66364.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66365.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66366.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66367.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66368.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66369.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66370.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66371.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66372.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66373.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66374.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66375.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66376.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66377.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66378.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66379.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66380.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66381.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66382.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66383.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66384.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66385.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66386.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66387.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66388.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66389.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66390.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66391.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66392.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66393.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66394.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66395.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66396.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66397.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66398.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66399.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66400.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66401.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66402.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66403.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66404.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66405.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66406.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66407.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66408.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66409.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66410.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66411.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66412.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66413.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66414.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66415.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66416.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66417.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66418.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66419.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66420.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66421.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66422.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66423.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66424.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66425.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66426.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66427.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66428.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66429.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66430.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66431.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66432.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66433.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66434.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66435.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66436.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66437.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66438.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66439.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 66440.000000] [simulator/INFO] on1 is sleeping +[on11:ON:(12) 66790.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 66790.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66791.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66792.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66793.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66794.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66795.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66796.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66797.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66798.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66799.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66800.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66801.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66802.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66803.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66804.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66805.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66806.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66807.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66808.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66809.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66810.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66811.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66846.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66846.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 66846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66847.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66848.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66849.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66850.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66851.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66852.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66853.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66854.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66855.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66856.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66857.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66858.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66859.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66860.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66861.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66862.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66863.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66864.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66865.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66866.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66867.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66868.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66869.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66870.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66871.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66872.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66873.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66874.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66875.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66876.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66877.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66878.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66879.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66880.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66881.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66882.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66883.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66884.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66885.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66886.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66887.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66888.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66889.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66890.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66891.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66892.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66893.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66894.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66895.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66896.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66897.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66898.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66899.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66900.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66901.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 66902.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66903.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66903.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66903.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 66903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66904.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66904.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66905.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66905.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66906.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66906.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66907.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66907.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66908.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66908.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66909.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66909.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66910.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66910.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66911.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66911.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66912.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66912.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66913.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66913.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66914.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66914.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66915.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66915.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66916.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66916.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66917.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66917.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66918.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66918.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66919.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66919.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66920.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66920.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66921.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66921.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66922.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66922.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66923.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66923.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66924.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66924.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66925.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66925.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66926.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66926.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66927.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66927.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66928.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66928.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66929.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66929.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66930.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66930.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66931.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66931.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66932.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66932.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66933.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66933.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66934.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66934.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66935.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66935.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66936.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66936.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66937.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66937.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66938.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66938.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66939.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66939.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66940.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66940.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66941.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66941.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66942.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66942.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66943.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66943.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66944.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66944.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66945.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66945.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66946.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66946.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66947.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66947.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66948.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66948.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66949.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66949.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66950.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66950.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66951.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66951.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66952.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66952.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66953.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66953.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66954.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66954.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66955.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66955.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66956.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66956.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66957.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66957.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66958.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66958.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66959.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66959.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66960.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66960.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66961.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66961.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66962.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66962.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66963.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66963.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66964.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66964.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66965.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66965.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66966.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66966.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66967.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66967.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66968.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66968.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 66968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66969.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 66969.000000] [simulator/INFO] on11 is observing his environment... +[on2:ON:(3) 66969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66970.000000] [simulator/INFO] on2 is observing his environment... +[on11:ON:(12) 66970.000000] [simulator/INFO] on11 is sleeping +[on6:ON:(7) 66970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66971.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66972.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66973.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66974.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66975.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66976.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66977.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66978.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66979.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66980.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66981.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66982.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66983.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66984.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66985.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66986.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66987.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66988.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66989.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66990.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66991.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66992.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66993.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66994.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66995.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66996.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66997.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 66998.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 66998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 66999.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 66999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67000.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67001.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67002.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67003.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67004.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67005.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67006.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67007.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67008.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67009.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67010.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67011.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67012.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67013.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67014.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67015.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67016.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67017.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67018.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67019.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67020.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67021.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67022.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67023.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67024.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 67025.000000] [simulator/INFO] on6 is observing his environment... +[on2:ON:(3) 67025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67026.000000] [simulator/INFO] on2 is observing his environment... +[on6:ON:(7) 67026.000000] [simulator/INFO] on6 is sleeping +[on2:ON:(3) 67027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67045.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67045.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 67045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67046.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67047.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67048.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67049.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67050.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67051.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67052.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67053.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67054.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67055.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67056.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67057.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67058.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67059.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67060.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67061.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67062.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67063.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67064.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67065.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67066.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67067.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67068.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67069.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67070.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67071.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67072.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67073.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67074.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67075.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67076.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67077.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67078.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67079.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67080.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67081.000000] [simulator/INFO] on2 is observing his environment... +[on7:ON:(8) 67081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67082.000000] [simulator/INFO] on7 is observing his environment... +[on2:ON:(3) 67082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 67083.000000] [simulator/INFO] on2 is sleeping +[on7:ON:(8) 67083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67084.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67086.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67088.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67090.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67092.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67094.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67096.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67098.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67100.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67145.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67146.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67147.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67148.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67149.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67150.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67151.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67152.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67153.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67154.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67155.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67156.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67157.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67158.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67159.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67160.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67161.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67162.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67163.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67164.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67183.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67185.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67187.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67189.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67191.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67193.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67195.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67197.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67199.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67201.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67203.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67205.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67207.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67209.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67211.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67213.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67215.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67217.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67219.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67221.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67223.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 67225.000000] [simulator/INFO] on7 is sleeping +[on9:ON:(10) 67306.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 67306.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67307.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67308.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67309.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67310.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67311.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67312.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67313.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67314.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67315.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67316.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67317.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67318.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67319.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67320.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67321.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67322.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67323.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67324.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67325.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67326.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67327.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67328.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67329.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67330.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67331.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67332.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67333.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67334.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67335.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67336.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67337.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67338.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67338.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 67338.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67339.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67339.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67340.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67340.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67341.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67341.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67342.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67342.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67343.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67343.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67344.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67344.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67345.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67345.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67346.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67346.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67347.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67347.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67348.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67348.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67349.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67349.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67350.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67350.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67351.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67351.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67352.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67352.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67353.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67353.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67354.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67354.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67355.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67355.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67356.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67356.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67357.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67357.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67358.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67358.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67359.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67359.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67360.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67360.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67361.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67361.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67362.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67362.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67363.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67363.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67364.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67364.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67365.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67365.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67366.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67366.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67367.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67367.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67368.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67368.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67369.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67369.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67370.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67370.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67371.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67371.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67372.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67372.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67373.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67373.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67374.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67374.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67375.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67375.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67376.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67376.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67377.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67377.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67378.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67378.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67379.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67379.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67380.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67380.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67381.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67381.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67382.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67382.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67383.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67383.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67384.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67384.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67385.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67385.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67386.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67386.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67387.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67387.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67388.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67388.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67389.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67389.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67390.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67390.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67391.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67391.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67392.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67392.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67393.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67393.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67394.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67394.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67395.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67395.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67396.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67396.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67397.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67397.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67398.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67398.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67399.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67399.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67400.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67400.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67401.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67401.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67402.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67402.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67403.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67403.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67404.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67404.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67405.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67405.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67406.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67406.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67407.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67407.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67408.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67408.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67409.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67409.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67410.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67410.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67411.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67411.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67412.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67412.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67413.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67413.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67414.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67414.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67415.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67415.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67416.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67416.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67417.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67417.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67418.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67418.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67419.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67419.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67420.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67420.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67421.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67421.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67422.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67422.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67423.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67423.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67424.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67424.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67425.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67425.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67426.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67426.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67427.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67427.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67428.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67428.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67429.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67429.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67430.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67430.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67431.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67431.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67432.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67432.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67433.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67433.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67434.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67434.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67435.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67435.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67436.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67436.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67437.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67437.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67438.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67438.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67439.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67439.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67440.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67440.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67441.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67441.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67442.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67442.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67443.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67443.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67444.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67444.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67445.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67445.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67446.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67446.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67447.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67447.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67448.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67448.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67449.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67449.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67450.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67450.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67451.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67451.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67452.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67452.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67453.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67453.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67454.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67454.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67455.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67455.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67456.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67456.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67457.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67457.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67458.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67458.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67459.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67459.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67460.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67460.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67461.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67461.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67462.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67462.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67463.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67463.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67464.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67464.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67465.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67465.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67466.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67466.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67467.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67467.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67468.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67468.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67469.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67469.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67470.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67470.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67471.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67471.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67472.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67472.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67473.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67473.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67474.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67474.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67475.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67475.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67476.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67476.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67477.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67477.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67478.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67478.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67479.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67479.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67480.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67480.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67481.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67481.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67482.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67482.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67483.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67483.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67484.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 67484.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67485.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 67485.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 67486.000000] [simulator/INFO] on9 is sleeping +[on5:ON:(6) 67486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 67518.000000] [simulator/INFO] on5 is sleeping +[on4:ON:(5) 67532.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 67532.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67534.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67536.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67538.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67540.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67542.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67544.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67546.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67548.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67550.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67552.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67554.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67556.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67558.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 67712.000000] [simulator/INFO] on4 is sleeping +[on8:ON:(9) 67744.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 67744.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67747.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67750.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67753.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67754.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67755.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67756.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67757.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67758.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67759.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67760.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67761.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67762.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67763.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67764.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67765.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67766.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67767.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67768.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67769.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67770.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67771.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67772.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67773.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67774.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67775.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67776.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67777.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67778.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67779.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67780.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67781.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67782.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67783.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67784.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67785.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67786.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67787.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67788.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67789.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67790.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67791.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67792.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67793.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67794.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67795.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67796.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67797.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67798.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67799.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67800.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67801.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67802.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67803.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67804.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67805.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67806.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67807.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67808.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67809.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67810.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67811.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67812.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67813.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67814.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67815.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67816.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67817.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67818.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67819.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67820.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67821.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67822.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67823.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67824.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67825.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67826.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67827.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67828.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67829.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67830.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67831.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67832.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67833.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67834.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67835.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67836.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67837.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67838.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67839.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67840.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67841.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67842.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67843.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67844.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67845.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67846.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67847.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67848.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67849.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67850.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67851.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67852.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67853.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67854.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67855.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67856.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67857.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67858.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67859.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67860.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67861.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67862.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67863.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67864.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67865.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67866.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67867.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67868.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67869.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67870.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67871.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67872.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67873.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67874.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67875.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67876.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67877.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67878.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67879.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67880.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67881.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67882.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67883.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67884.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67885.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67886.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67887.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67888.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67889.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67890.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67891.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67892.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67893.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67894.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67895.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67896.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67897.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67898.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67899.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67900.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67901.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67902.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67903.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67904.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67905.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67906.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67907.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67908.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67909.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67910.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67911.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67912.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67913.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67914.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67915.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67916.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67917.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67918.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67919.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67920.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67921.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67922.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67923.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 67924.000000] [simulator/INFO] on8 is sleeping +[on6:ON:(7) 68402.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 68402.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68403.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68404.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68405.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68406.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68407.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68408.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68409.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68410.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68411.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68412.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68413.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68414.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68415.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68416.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68417.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68418.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68419.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68420.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68421.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68422.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68423.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68424.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68425.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68426.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68427.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68428.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68429.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68430.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68431.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68432.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68433.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68434.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68435.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68436.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68437.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68438.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68439.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68440.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68441.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68442.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68443.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68444.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68445.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68446.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68447.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68448.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68449.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68450.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68451.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68452.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68453.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68454.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68455.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68456.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68457.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68458.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68459.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68460.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68461.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68462.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68463.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68464.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68465.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68466.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68467.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68468.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68469.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68470.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68471.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68472.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68473.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68474.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68475.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68476.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68477.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68478.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68479.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68480.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68481.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68482.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68483.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68484.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68485.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68486.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68487.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68488.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68489.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68490.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68491.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68492.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68493.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68494.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68495.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68496.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68497.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68498.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68499.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68500.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68501.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68502.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68544.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68546.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68548.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68550.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68552.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68554.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68556.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68558.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68560.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68562.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68564.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68566.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68568.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68570.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68572.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68574.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68576.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68578.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68580.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 68582.000000] [simulator/INFO] on6 is sleeping +[on1:ON:(2) 68644.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 68644.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68645.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68646.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68647.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68648.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68649.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68650.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68651.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68652.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68653.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68654.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68655.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68656.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68657.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68658.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68659.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68660.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68661.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68662.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68663.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68664.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68665.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68666.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68667.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68668.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68669.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68670.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68671.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68672.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68673.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68674.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68675.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68676.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68677.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68678.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68679.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68680.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68681.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68682.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68683.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68684.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68685.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68686.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68687.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68688.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68689.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68690.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68691.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68692.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68693.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68694.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68695.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68696.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68697.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68698.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68699.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68700.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68701.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68702.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68703.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68704.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68705.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68706.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68707.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68708.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68709.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68710.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68711.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68712.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68713.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68714.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68715.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68716.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68717.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68718.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68719.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68720.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68721.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68722.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68723.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68723.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 68723.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68724.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68724.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68725.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68725.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68726.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68726.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68727.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68727.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68728.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68728.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68729.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68729.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68730.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68730.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68731.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68731.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68732.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68732.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68733.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68733.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68734.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68734.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68735.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68735.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68736.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68736.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68737.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68737.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68738.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68738.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68739.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68739.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68740.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68740.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68741.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68741.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68742.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68742.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68743.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68743.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68744.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68744.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68745.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68745.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68746.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68746.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68747.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68747.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68748.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68748.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68749.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68749.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68750.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68750.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68751.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68751.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68752.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68752.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68753.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68753.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68754.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68754.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68755.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68755.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68756.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68756.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68757.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68757.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68758.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68758.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68759.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68759.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68760.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68760.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68761.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68761.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68762.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68762.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68763.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68763.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68764.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68764.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68765.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68765.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68766.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68766.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68767.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68767.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68768.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68768.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68769.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68769.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68770.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68770.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68771.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68771.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68772.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68772.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68773.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68773.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68774.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68774.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68775.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68775.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68776.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68776.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68777.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68777.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68778.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68778.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68779.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68779.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68780.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68780.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68781.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68781.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68782.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68782.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68783.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68783.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68784.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68785.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68785.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68786.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68787.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68787.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68788.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68789.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68789.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68790.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68791.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68791.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68792.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68793.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68793.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68794.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68795.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68796.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68797.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68798.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68799.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68800.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68801.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68802.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68803.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68804.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68805.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68806.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68807.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68808.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68809.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68810.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68811.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68812.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68813.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68814.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68815.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68816.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68817.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68818.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68819.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68820.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68821.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68822.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 68823.000000] [simulator/INFO] on1 is observing his environment... +[on10:ON:(11) 68823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68824.000000] [simulator/INFO] on10 is observing his environment... +[on1:ON:(2) 68824.000000] [simulator/INFO] on1 is sleeping +[on10:ON:(11) 68825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68828.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68828.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 68828.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68829.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68830.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68830.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68831.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68832.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68832.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68833.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68834.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68834.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68835.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68836.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68836.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68837.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68838.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68838.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68839.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68840.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68840.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68841.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68842.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68842.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68843.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68844.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68844.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68845.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68846.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68846.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68847.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68848.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68848.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68849.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68850.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68850.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68851.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68852.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68852.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68853.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68854.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68854.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68855.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68856.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68856.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68857.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68858.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68858.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68859.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68860.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68860.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68861.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68862.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68862.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68863.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68864.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68864.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68865.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68866.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68866.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68867.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68868.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68868.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68869.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68870.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68870.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68871.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68872.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68872.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68873.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68874.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68874.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68875.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68876.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68877.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68878.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68879.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68880.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68881.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68882.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68883.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68884.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68885.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68886.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68887.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68888.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68889.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68890.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68891.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68892.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68893.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68894.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68895.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68896.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68897.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68898.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68899.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68900.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68901.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 68902.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 68902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68903.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 68903.000000] [simulator/INFO] on10 is sleeping +[on0:ON:(1) 68904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 68999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 69008.000000] [simulator/INFO] on0 is sleeping +[on4:ON:(5) 69043.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 69043.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69044.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69045.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69046.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69047.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69048.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69049.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69050.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69051.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69052.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69053.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69054.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69055.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69056.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69057.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69058.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69059.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69060.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69061.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69062.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69063.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69064.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69065.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69066.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69067.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69068.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69069.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69070.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69071.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69072.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69073.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69074.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69075.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69076.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69077.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69078.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69079.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69080.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69081.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69082.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69083.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69084.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69085.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69086.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69087.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69088.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69089.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69090.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69091.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69092.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69094.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69096.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69098.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69100.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69102.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69104.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69106.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69108.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69110.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69112.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69114.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69116.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69118.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69120.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69122.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69124.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69126.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69128.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69130.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69132.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69134.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69136.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69138.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69140.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69142.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69144.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69146.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69148.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69150.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69152.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69154.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69156.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69158.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69160.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69162.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69221.000000] [simulator/INFO] on4 is observing his environment... +[on2:ON:(3) 69221.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 69221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69222.000000] [simulator/INFO] on2 is observing his environment... +[on4:ON:(5) 69222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 69223.000000] [simulator/INFO] on4 is sleeping +[on2:ON:(3) 69223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69250.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69251.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69252.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69253.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69254.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69255.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69256.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69257.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69258.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69259.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69260.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69261.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69262.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69263.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69264.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69265.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69266.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69267.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69268.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69269.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69270.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69271.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69272.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69273.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69274.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69283.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69285.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69287.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69289.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69291.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69293.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69295.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69296.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69297.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69298.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69299.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69300.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69301.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69302.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69303.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69304.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69305.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69306.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69307.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69308.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69309.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69310.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69311.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69312.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69313.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69314.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69315.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69316.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69317.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69318.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69319.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69320.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69321.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69322.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69323.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69324.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69325.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69326.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69327.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69328.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69329.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69330.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69331.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69332.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69333.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69334.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69335.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69336.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69337.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69338.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69339.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69340.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69341.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69342.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69343.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69344.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69345.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69346.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69347.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69348.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69349.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69350.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69351.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69352.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69353.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69354.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69355.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69356.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69357.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69358.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69359.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69360.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69361.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69362.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69363.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69364.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69365.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69366.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69367.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69368.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69369.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69370.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69371.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69372.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69373.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69374.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69375.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69376.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69377.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69378.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69379.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69380.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69381.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69382.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69383.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69384.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69385.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69386.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69387.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69388.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69389.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69390.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69391.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69392.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69393.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69394.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69395.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69396.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69397.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69398.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69399.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69400.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 69401.000000] [simulator/INFO] on2 is sleeping +[on8:ON:(9) 69579.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 69579.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69581.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69582.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69583.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69584.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69585.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69586.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69587.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69588.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69589.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69590.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69591.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69592.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69593.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69594.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69595.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69596.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69597.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69598.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69599.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69600.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69601.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69602.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69603.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69604.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69605.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69606.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69607.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69608.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69609.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69610.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69611.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69612.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69613.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69614.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69615.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69616.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69617.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69618.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69619.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69620.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69621.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69622.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69623.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69624.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69625.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69626.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69627.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69628.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69629.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69630.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69631.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69632.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69633.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69634.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69635.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69636.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69637.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69638.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69639.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69640.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69641.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69642.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69643.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69644.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69645.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69646.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69647.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69648.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69649.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69650.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69651.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69652.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69653.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69654.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69655.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69656.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69657.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69658.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69659.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69660.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69661.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69662.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69663.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69664.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69665.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69666.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69667.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69668.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69669.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69670.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69671.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69672.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69673.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69674.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69675.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69676.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69677.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69678.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69679.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69680.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69681.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69682.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69683.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69684.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69685.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69686.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69687.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69688.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69689.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69690.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69691.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69692.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69693.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69694.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69695.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69696.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69697.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69698.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69699.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69700.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69701.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69702.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69703.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69704.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69705.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69706.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69707.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69708.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69709.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69710.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69711.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69712.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69713.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69714.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69715.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69716.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69717.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69718.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69719.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69720.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69721.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69722.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69723.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69724.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69725.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69726.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69727.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69728.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69729.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69730.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69731.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69732.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69733.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69734.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69735.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69736.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69737.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69738.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69739.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69740.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69741.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69742.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69743.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69744.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69745.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69746.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69747.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69748.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69749.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69750.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69751.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69752.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69753.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69754.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69755.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69756.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69757.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69758.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 69759.000000] [simulator/INFO] on8 is sleeping +[on12:ON:(13) 70016.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 70016.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70018.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70106.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70108.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70110.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70112.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70114.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70116.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70118.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70120.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70122.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70124.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70126.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70128.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70128.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 70128.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70129.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70130.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70130.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70131.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70132.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70132.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70133.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70134.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70134.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70135.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70136.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70136.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70137.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70138.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70138.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70139.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70140.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70140.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70141.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70142.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70142.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70143.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70144.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70144.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70145.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70146.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70146.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70147.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70148.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70148.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70149.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70150.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70150.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70151.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70152.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70152.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70153.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70154.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70154.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70155.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70156.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70156.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70157.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70158.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70158.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70159.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70160.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70160.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70161.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70162.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70162.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70163.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70164.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70164.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70165.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70166.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70166.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70167.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70168.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70168.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70169.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70170.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70170.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70171.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70172.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70172.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70173.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70174.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70174.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70175.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70176.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70176.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70177.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70178.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70178.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70179.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70180.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70180.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70181.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70182.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70182.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70183.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70184.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70184.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70185.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70185.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70186.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70186.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70187.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70187.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70188.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70188.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70189.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70189.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70190.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70190.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70191.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70191.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70192.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70192.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70193.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70193.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70194.000000] [simulator/INFO] on12 is observing his environment... +[on3:ON:(4) 70194.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70195.000000] [simulator/INFO] on3 is observing his environment... +[on12:ON:(13) 70195.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 70196.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 70196.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70197.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70198.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70199.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70200.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70201.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70202.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70203.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70204.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70205.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70206.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70207.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70208.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70209.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70210.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70211.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70212.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70213.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70214.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70215.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70216.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70217.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70218.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70219.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70220.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70221.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70222.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70223.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70224.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70225.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70226.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70227.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70228.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70229.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70230.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70231.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70232.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70233.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70234.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70235.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70236.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70237.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70238.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70239.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70240.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70241.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70242.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70243.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70244.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70245.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70246.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70247.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70248.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70249.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70250.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70251.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70252.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70253.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70254.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70255.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70256.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70257.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70258.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70259.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70260.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70261.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70262.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70263.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70264.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70265.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70266.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70267.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70268.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70269.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70270.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70271.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70272.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70273.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70274.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70275.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70276.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70277.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70278.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70279.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70280.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70281.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70282.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70283.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70284.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70285.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70286.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70287.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70288.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70289.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70290.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70291.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70292.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70293.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70294.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70295.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70296.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70297.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70298.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70299.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70300.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70301.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70302.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70303.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70304.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70305.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70306.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70307.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 70308.000000] [simulator/INFO] on3 is sleeping +[on7:ON:(8) 71165.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 71165.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71166.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71167.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71168.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71169.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71170.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71171.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71172.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71173.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71174.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71175.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71176.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71177.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71178.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71179.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71180.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71181.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71182.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71183.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71184.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71185.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71186.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71187.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71188.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71189.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71190.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71191.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71192.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71193.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71194.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71195.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71196.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71197.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71198.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71199.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71200.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71201.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71202.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71203.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71204.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71205.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71206.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71207.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71208.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71209.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71210.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71211.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71212.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71213.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71214.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71215.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71216.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71217.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71218.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71219.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71220.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71221.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71222.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71223.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71224.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71225.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71226.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71227.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71228.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71229.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71230.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71231.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71232.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71233.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71234.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71235.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71236.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71237.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71238.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71239.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71240.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71241.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71242.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71243.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71244.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71245.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71246.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71247.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71248.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71249.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71250.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71251.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71252.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71253.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71254.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71255.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71256.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71257.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71258.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71259.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71260.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71261.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71262.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71263.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71264.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71265.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71266.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71267.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71268.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71269.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71270.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71271.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71272.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71273.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71274.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71275.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71276.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71277.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71278.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71279.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71280.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71281.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71282.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71283.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71284.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71285.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71286.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71287.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71288.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71289.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71290.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71291.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71292.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71293.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71294.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71295.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71296.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71297.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71298.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71299.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71300.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71301.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71302.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71303.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71304.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71305.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71306.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71307.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71308.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71309.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71310.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71311.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71312.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71313.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71314.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71315.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71316.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71317.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71318.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71319.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71320.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71321.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71322.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71323.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71324.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71325.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71326.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71327.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71328.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71329.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71330.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71331.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71332.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71333.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71334.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71335.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71336.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71337.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71338.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71339.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71340.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71341.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71342.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71343.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71344.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 71345.000000] [simulator/INFO] on7 is sleeping +[on11:ON:(12) 71418.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 71418.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71419.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71420.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71421.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71422.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71423.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71424.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71425.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71426.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71427.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71428.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71429.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71430.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 71598.000000] [simulator/INFO] on11 is sleeping +[on5:ON:(6) 71855.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 71855.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71856.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71857.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71858.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71859.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71860.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71861.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71862.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71863.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71864.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71865.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71866.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71867.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71868.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71869.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71870.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71871.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71872.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71873.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71874.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71875.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71876.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71877.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71878.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71879.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71880.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71881.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71882.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71883.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71884.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71885.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71886.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71887.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71888.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71889.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71890.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71891.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71892.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71893.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71894.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71895.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71896.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71897.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71898.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71899.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71900.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71901.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71902.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71903.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71904.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71905.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71906.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71907.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71908.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71909.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71910.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71911.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71912.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71913.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71914.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71915.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71916.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71917.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71918.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71919.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71920.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71921.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71922.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71923.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71924.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71925.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71926.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71927.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71928.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71929.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71930.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71931.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71932.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71933.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71934.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71935.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71936.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71937.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71938.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71939.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71940.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71941.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71942.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71943.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71944.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71945.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71946.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71947.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71948.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71949.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71950.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71951.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71952.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71953.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71954.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71955.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71956.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71957.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71958.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71959.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71960.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71961.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71962.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71963.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71964.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71965.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71966.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71967.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71968.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71969.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71970.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71971.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71972.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71973.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71974.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71975.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71976.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71977.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71978.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71979.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71980.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71981.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71982.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71983.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71984.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71985.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71986.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71987.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71988.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71989.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71990.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71991.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71992.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71993.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71994.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71995.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71996.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71997.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71998.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 71999.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72000.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72000.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 72000.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72001.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72001.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72002.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72003.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72003.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 72004.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72005.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72005.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72005.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 72005.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72006.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72006.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72006.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72007.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72007.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72008.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72008.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72009.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72009.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72010.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72010.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72011.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72011.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72011.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72012.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72012.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72012.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72013.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72013.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72014.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72014.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72015.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72015.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72015.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72016.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72016.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72017.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72017.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72018.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72018.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72018.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72019.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72019.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72020.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72020.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72021.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72021.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72022.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72022.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72023.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72023.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72024.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72024.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72024.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72025.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72025.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72026.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72026.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72027.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72027.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72028.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72028.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72029.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72029.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72030.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72030.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72030.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72031.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72031.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72032.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72032.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72033.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72033.000000] [simulator/INFO] on5 is observing his environment... +[on12:ON:(13) 72033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72034.000000] [simulator/INFO] on12 is observing his environment... +[on5:ON:(6) 72034.000000] [simulator/INFO] on5 is observing his environment... +[on9:ON:(10) 72034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72035.000000] [simulator/INFO] on9 is observing his environment... +[on5:ON:(6) 72035.000000] [simulator/INFO] on5 is sleeping +[on12:ON:(13) 72035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72036.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72037.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72038.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72039.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72040.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72041.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72042.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72043.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72044.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72045.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72046.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72047.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72048.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72049.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72050.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72051.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72052.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72053.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72054.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72055.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72056.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72057.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72058.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72059.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72060.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72061.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72062.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72063.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72064.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72065.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72066.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72067.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72068.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72069.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72070.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72071.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72072.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72073.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72074.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72075.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72076.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72077.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72078.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72079.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72080.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72081.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72082.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72083.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72084.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72085.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72086.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72087.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72088.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72089.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72090.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72091.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72092.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72093.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72094.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72095.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72096.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72097.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72098.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72099.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72100.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72101.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72102.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72103.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72104.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72105.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72106.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72107.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72107.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72108.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72109.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72109.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72110.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72111.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72111.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72112.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72113.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72113.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72114.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72115.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72115.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72116.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72117.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72117.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72118.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72119.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72119.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72120.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72121.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72121.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72122.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72123.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72123.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72124.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72125.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72125.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72126.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72127.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72127.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72128.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72129.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72129.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72130.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72131.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72131.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72132.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72133.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72133.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72134.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72135.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72135.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72136.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72137.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72137.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72138.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72139.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72139.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72140.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72141.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72141.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72142.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72143.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72143.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72144.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72145.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72145.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72146.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72147.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72147.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72148.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72149.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72149.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72150.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72151.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72151.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72152.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72153.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72153.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72154.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72155.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72155.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72156.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72157.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72157.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72158.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72159.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72159.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72160.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72160.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72161.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72161.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72162.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72162.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72163.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72163.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72164.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72164.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72165.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72165.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72166.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72166.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72167.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72167.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72168.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72168.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72169.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72169.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72170.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72170.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72171.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72171.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72172.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72172.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72173.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72173.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72174.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72174.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72175.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72175.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72176.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72176.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72177.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72177.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72178.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72178.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72179.000000] [simulator/INFO] on9 is observing his environment... +[on12:ON:(13) 72179.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72180.000000] [simulator/INFO] on12 is observing his environment... +[on9:ON:(10) 72180.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 72181.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72182.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72183.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72184.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 72185.000000] [simulator/INFO] on12 is sleeping +[on11:ON:(12) 72431.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 72431.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72432.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72433.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72434.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72435.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72436.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72437.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72438.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72439.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72440.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72441.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72442.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72443.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72444.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72445.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72446.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72447.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72448.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72449.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72450.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72451.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72452.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72453.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72454.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72455.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72456.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72457.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72458.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72459.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72460.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72461.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72462.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72463.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72464.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72465.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72466.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72467.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72468.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72469.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72470.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72471.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72472.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72473.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72474.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72475.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72476.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72477.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72478.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72479.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72480.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72481.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72482.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72483.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72484.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72485.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72486.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72487.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72488.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72489.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72490.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72491.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72492.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72493.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72494.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72495.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72496.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72497.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72498.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72499.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72500.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72501.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72502.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72503.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72504.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72505.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72506.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72507.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72508.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72509.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72510.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72511.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72512.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72513.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72514.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72515.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72516.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72517.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72518.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72519.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72520.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72521.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72522.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72523.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72524.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72525.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72526.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72527.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72528.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72529.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72530.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72531.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72532.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72533.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72534.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72535.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72536.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72537.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72538.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72539.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72540.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72541.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72542.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72543.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72544.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72545.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72546.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72547.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72548.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72549.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72550.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72551.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72552.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72553.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72554.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72555.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72556.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72557.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72558.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72559.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72560.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72561.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72562.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72563.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72564.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72565.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72566.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72567.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72568.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72569.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72570.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72571.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72572.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72573.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72574.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72575.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72576.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72577.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72578.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72579.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72580.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72581.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72582.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72583.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72584.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72585.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72586.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72587.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72588.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72589.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72590.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72591.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72592.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72593.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72594.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72595.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72596.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72597.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72598.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72599.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72600.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72601.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72605.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72607.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72609.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 72611.000000] [simulator/INFO] on11 is sleeping +[on9:ON:(10) 72901.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 72901.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72902.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72903.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72904.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72905.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72906.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72907.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72908.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72909.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72910.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72911.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72912.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72913.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72914.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72915.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72916.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72917.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72918.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72919.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72920.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72921.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72922.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72923.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72924.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72925.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72926.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72927.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72928.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72929.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72930.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72931.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72932.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72933.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72934.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72935.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72936.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72937.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72938.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72939.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72940.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72941.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72942.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72943.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72944.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72945.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72946.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72947.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72948.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72949.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72950.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72951.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72952.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72953.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72954.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72955.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72956.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72957.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72958.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72959.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72960.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72961.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72962.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72963.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72964.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72965.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72966.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72967.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72968.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72969.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72970.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72971.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72972.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72973.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72974.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72975.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72976.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72977.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72977.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 72977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72978.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72978.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72979.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72980.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72980.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72981.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72982.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72982.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72983.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72984.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72984.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72985.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72985.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72986.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72986.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72987.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72987.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72988.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72988.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72989.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72989.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72990.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72990.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72991.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72991.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72992.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72992.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72993.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72993.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72994.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72994.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72995.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72995.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72996.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72996.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72997.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72997.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 72998.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 72998.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 72999.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 72999.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73000.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73000.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73001.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73001.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73002.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73002.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73003.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73003.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73004.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73004.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73005.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73005.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73006.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73006.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73007.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73007.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73008.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73008.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73009.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73009.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73010.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73010.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73011.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73011.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73012.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73012.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73013.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73013.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73014.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73014.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73015.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73015.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73016.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73016.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73017.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73017.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73018.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73018.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73019.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73019.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73020.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73020.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73021.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73021.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73022.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73022.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73023.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73023.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73024.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73024.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73025.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73025.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73026.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73026.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73027.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73027.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73028.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73028.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73029.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73029.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73030.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73030.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73031.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73031.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73032.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73032.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73033.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73033.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73034.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73034.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73035.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73035.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73036.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73037.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73037.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73038.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73039.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73039.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73040.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73041.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73041.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73042.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73043.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73043.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73044.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73045.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73045.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73046.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73047.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73047.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73048.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73049.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73049.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73050.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73051.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73051.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73052.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73053.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73053.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73054.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73055.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73055.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73056.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73057.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73057.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73058.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73059.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73059.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73060.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73061.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73061.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73062.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73063.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73063.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73064.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73065.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73065.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73066.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73067.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73067.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73068.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73069.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73069.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73070.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73071.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73071.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73072.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73073.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73073.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73074.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73075.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73075.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73076.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73077.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73077.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73078.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73079.000000] [simulator/INFO] on9 is observing his environment... +[on0:ON:(1) 73079.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73080.000000] [simulator/INFO] on0 is observing his environment... +[on9:ON:(10) 73080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 73081.000000] [simulator/INFO] on9 is sleeping +[on0:ON:(1) 73081.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73083.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73085.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73087.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73089.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73091.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73093.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73095.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73097.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73099.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73101.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73102.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73103.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73104.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73105.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73106.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73107.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73108.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73109.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73110.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73111.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73112.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73113.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73114.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73115.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73116.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73117.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73118.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73119.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73120.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73121.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73122.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73123.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73124.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73125.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73126.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73127.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73128.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73129.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73130.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73131.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73132.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73133.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73134.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73135.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73136.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73137.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73138.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73139.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73140.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73141.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73142.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73143.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73144.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73145.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73146.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73147.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73148.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73149.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73150.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73151.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73152.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73153.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73154.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73155.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73156.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 73157.000000] [simulator/INFO] on0 is sleeping +[on8:ON:(9) 73404.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 73404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73405.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73405.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 73405.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73406.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73407.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73407.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73408.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73409.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73409.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73410.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73411.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73411.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73412.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73413.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73413.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73414.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73415.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73415.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73416.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73417.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73417.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73418.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73419.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73419.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73420.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73421.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73421.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73422.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73423.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73423.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73424.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73425.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73425.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73426.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73427.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73427.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73428.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73429.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73429.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73430.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73431.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73431.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73432.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73433.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73433.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73434.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73435.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73435.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73436.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73437.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73437.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73438.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73439.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73439.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73440.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73441.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73441.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73442.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73443.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73443.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73444.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73445.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73445.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73446.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73447.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73447.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73448.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73449.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73449.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73450.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73451.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73451.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73452.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73453.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73453.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73454.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73455.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73455.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73456.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73457.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73457.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73458.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73459.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73459.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73460.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73461.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73461.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73462.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73463.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73463.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73464.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73465.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73465.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73466.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73466.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73467.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73467.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73468.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73469.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73469.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73470.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73471.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73471.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73472.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73472.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73473.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73473.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73474.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73475.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73475.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73476.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73477.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73477.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73478.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73478.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73479.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73479.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73480.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73481.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73481.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73482.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73483.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73483.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73484.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73484.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73485.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73485.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73486.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73487.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73487.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73488.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73489.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73489.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73490.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73490.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73491.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73491.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73492.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73493.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73493.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73494.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73495.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73495.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73496.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73496.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73497.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73497.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73498.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73499.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73499.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73500.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73501.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73501.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73502.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73502.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73503.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73503.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73504.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73505.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73505.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 73506.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73507.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73507.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73507.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 73507.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73508.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73508.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73508.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73509.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73509.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73509.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73510.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73510.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73510.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73511.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73511.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73511.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73512.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73512.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73512.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73513.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73513.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73513.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73514.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73514.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73514.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73515.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73515.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73515.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73516.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73516.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73516.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73517.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73517.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73517.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73518.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73518.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73518.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73519.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73519.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73519.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73520.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73520.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73520.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73521.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73521.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73521.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73522.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73522.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73522.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73523.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73523.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73523.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73524.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73524.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73524.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73525.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73525.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73525.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73526.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73526.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73526.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73527.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73527.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73527.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73528.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73528.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73528.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73529.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73529.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73529.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73530.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73530.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73530.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73531.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73531.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73531.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73532.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73532.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73532.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73533.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73533.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73533.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73534.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73534.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73534.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73535.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73535.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73535.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73536.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73536.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73536.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73537.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73537.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73537.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73538.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73538.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73538.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73539.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73539.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73539.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73540.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73540.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73540.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73541.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73541.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73541.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73542.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73542.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73542.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73543.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73543.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73543.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73544.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73544.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73544.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73545.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73545.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73545.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73546.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73546.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73546.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73547.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73547.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73547.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73548.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73548.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73548.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73549.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73549.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73549.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73550.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73550.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73550.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73551.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73551.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73551.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73552.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73552.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73552.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73553.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73553.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73553.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73554.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73554.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73554.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73555.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73555.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73555.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73556.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73556.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73556.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73557.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73557.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73557.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73558.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73558.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73558.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73559.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73559.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73559.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73560.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73560.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73560.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73561.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73561.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73561.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73562.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73562.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73562.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73563.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73563.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73563.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73564.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73564.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73564.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73565.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73565.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73565.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73566.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73566.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73566.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73567.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73567.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73567.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73568.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73568.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73568.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73569.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73569.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73569.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73570.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73570.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73570.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73571.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73571.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73571.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73572.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73572.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73572.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73573.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73573.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73573.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73574.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73574.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73574.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73575.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73575.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73575.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73576.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73576.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73576.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73577.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73577.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73577.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73578.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73578.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73578.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73579.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73579.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73579.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73580.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73580.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73580.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73581.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73581.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73581.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73582.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73582.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73582.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 73583.000000] [simulator/INFO] on8 is observing his environment... +[on4:ON:(5) 73583.000000] [simulator/INFO] on4 is observing his environment... +[on10:ON:(11) 73583.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73584.000000] [simulator/INFO] on10 is observing his environment... +[on4:ON:(5) 73584.000000] [simulator/INFO] on4 is observing his environment... +[on8:ON:(9) 73584.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 73585.000000] [simulator/INFO] on4 is sleeping +[on10:ON:(11) 73585.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73586.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73587.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73588.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73589.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73590.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73591.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73592.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73593.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73594.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73595.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73596.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73597.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73598.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73599.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73600.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73601.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73602.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73603.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73604.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73605.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73606.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73607.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73608.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73609.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73610.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73611.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73612.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73613.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73614.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73615.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73616.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73617.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73618.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73619.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73620.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73621.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73622.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73623.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73624.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73625.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73626.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73627.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73628.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73629.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73630.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73631.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73632.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73633.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73634.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73635.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73636.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73637.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73638.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73639.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73640.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73641.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73642.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73643.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73644.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73645.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73646.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73647.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73648.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73649.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73650.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73651.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73652.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73653.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73654.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73655.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73656.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73657.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73658.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73659.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73660.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73661.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73662.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73663.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73664.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73665.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73666.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73667.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73668.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73669.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73670.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73671.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73672.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73673.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73674.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73675.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73676.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73677.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73678.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73679.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73680.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73681.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73682.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73683.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73684.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73685.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73686.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 73687.000000] [simulator/INFO] on10 is sleeping +[on1:ON:(2) 73731.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 73731.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73732.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73733.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73734.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73735.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73736.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73737.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73738.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73739.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73740.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73741.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73742.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73743.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73744.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73745.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73746.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73747.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73748.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73749.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73750.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73751.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73752.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73753.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73754.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73755.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73756.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73757.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73758.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73759.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73760.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73761.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73762.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73763.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73764.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73765.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73766.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73767.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73768.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73769.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73770.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73771.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73772.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73773.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73774.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73775.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73776.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73777.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73778.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73779.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73780.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73781.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73782.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73783.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73785.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73787.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73789.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73791.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73793.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73795.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73797.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73799.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73801.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73803.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73805.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73807.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73809.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73811.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73813.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73815.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73817.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73819.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73821.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73823.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73824.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73825.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73826.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73827.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73828.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73829.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73830.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73831.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73832.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73833.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73834.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73835.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73836.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73837.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73838.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73839.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73840.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73841.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73842.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73843.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73844.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73845.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73846.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73847.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73848.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73849.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73850.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73851.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73852.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73853.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73854.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73855.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73856.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73857.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73858.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73859.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73860.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73861.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73862.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73863.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73864.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73865.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73866.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73867.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73868.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73869.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73870.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73871.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73872.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73873.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73874.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73875.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73876.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73877.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73878.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73879.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73880.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73881.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73882.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73883.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73884.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73885.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73886.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73887.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73888.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73889.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73890.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73891.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73892.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73893.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73894.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73895.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73896.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73897.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73898.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73899.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73900.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73901.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73902.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73903.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73904.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73905.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73906.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73907.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73908.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73909.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73910.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 73911.000000] [simulator/INFO] on1 is sleeping +[on5:ON:(6) 74603.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 74603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74735.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74735.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 74735.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74736.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74737.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74737.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74738.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74739.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74739.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74740.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74741.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74741.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74742.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74743.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74743.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74744.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74745.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74745.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74746.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74747.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74747.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74748.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74749.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74749.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74750.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74751.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74751.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74752.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74753.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74753.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74754.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74755.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74755.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74756.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74757.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74757.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74758.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74759.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74759.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74760.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74761.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74761.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74762.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74763.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74763.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74764.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74765.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74765.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74766.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74767.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74767.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74768.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74769.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74769.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74770.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74771.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74771.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74772.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74773.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74773.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74774.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74775.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74775.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74776.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74777.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74777.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74778.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74779.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74779.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74780.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74780.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74781.000000] [simulator/INFO] on5 is observing his environment... +[on3:ON:(4) 74781.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74782.000000] [simulator/INFO] on3 is observing his environment... +[on5:ON:(6) 74782.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 74783.000000] [simulator/INFO] on5 is sleeping +[on3:ON:(4) 74783.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74784.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74785.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74786.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74787.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74788.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74789.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74790.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74791.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74792.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74793.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74794.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74795.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74796.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74797.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74798.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74799.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74800.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74801.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74802.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74803.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74804.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74805.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74806.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74807.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74808.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74809.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74810.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74811.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74812.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74813.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74814.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74815.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74816.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74817.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74818.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74819.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74820.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74821.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74822.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74823.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74824.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74825.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74826.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74827.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74828.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74829.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74830.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74831.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74832.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74833.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74834.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74835.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74836.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74837.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74838.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74839.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74840.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74841.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74842.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74843.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74844.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74845.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74846.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74847.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74848.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74849.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74850.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74851.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74852.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74853.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74854.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74855.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74856.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74857.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74858.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74859.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74860.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74861.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74862.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74863.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74864.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74865.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74866.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74867.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74868.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74869.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74870.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74871.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74872.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74873.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74874.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74875.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74876.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74877.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74878.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74879.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74880.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74881.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74882.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74883.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74884.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74885.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74886.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74887.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74888.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74889.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74890.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74891.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74892.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74893.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74894.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74895.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74896.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74897.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74898.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74899.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74900.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74901.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74902.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74903.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 74915.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 74964.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 74964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 74999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75002.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75003.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75004.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75005.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75006.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75007.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75008.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75009.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75010.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75011.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75012.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75013.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75014.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75015.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75016.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75017.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75018.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75019.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75020.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75021.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75022.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75023.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75024.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75025.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75026.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75027.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75028.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75029.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75030.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75031.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75032.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75033.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75034.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75035.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75036.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75037.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75038.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75039.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75040.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75041.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75042.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75043.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75044.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75045.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75046.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75047.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75048.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75049.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75050.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75051.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75052.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75053.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75054.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75055.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75056.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75057.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75058.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75059.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75060.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75061.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75062.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75063.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75064.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75065.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75066.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75067.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 75144.000000] [simulator/INFO] on2 is sleeping +[on6:ON:(7) 75503.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 75503.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75504.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75505.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75506.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75507.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75508.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75509.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75510.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75511.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75512.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75513.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75514.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75515.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75516.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75517.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75518.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75519.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75520.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75521.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75522.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75523.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75524.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75525.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75526.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75527.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75528.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75529.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75530.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75531.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75532.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75533.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75534.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75535.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75536.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75537.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75538.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75539.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75540.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75541.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75542.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75543.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75544.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75544.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 75544.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75545.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75545.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75546.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75546.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75547.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75547.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75548.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75548.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75549.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75549.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75550.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75550.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75551.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75551.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75552.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75552.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75553.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75553.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75554.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75554.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75555.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75555.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75556.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75556.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75557.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75557.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75558.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75558.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75559.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75559.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75560.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75560.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75561.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75561.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75562.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75562.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75563.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75563.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75564.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75564.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75565.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75565.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75566.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75566.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75567.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75567.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75568.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75568.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75569.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75569.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75570.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75570.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75571.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75571.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75572.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75572.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75573.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75573.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75574.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75574.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75575.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75575.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75576.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75576.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75577.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75577.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75578.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75578.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75579.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75579.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75580.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75580.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75581.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75581.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75582.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75582.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75583.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75583.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75584.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75584.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75585.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75585.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75586.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75586.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75587.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75587.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75588.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75588.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75589.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75589.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75590.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75590.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75591.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75591.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75592.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75592.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75593.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75593.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75594.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75594.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75595.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75595.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75596.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75596.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75597.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75597.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75598.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75598.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75599.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75599.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75600.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75600.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75601.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75601.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75602.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75602.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75603.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75603.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75604.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75604.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75605.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75605.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75606.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75606.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75607.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75607.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75608.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75608.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75609.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75609.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75610.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75610.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75611.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75611.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75612.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75612.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75613.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75613.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75614.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75614.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75615.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75615.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75616.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75616.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75617.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75617.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75618.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75618.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75619.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75619.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75620.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75620.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75621.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75621.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75622.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75622.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75623.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75623.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75624.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75624.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75625.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75625.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75626.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75626.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75627.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75627.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75628.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75628.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75629.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75629.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75630.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75630.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75631.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75631.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75632.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75632.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75633.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75633.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75634.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75634.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75635.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75635.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75636.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75637.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75637.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75638.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75639.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75639.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75640.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75641.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75641.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75642.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75643.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75643.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75644.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75645.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75645.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75646.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75647.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75647.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75648.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75649.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75649.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75650.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75651.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75651.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75652.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75652.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75653.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75653.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75654.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75654.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75655.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75655.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75656.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75656.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75657.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75657.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75658.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75658.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75659.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75659.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75660.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75660.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75661.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75661.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75662.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75662.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75663.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75663.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75664.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75664.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75665.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75665.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75666.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75666.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75667.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75667.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75668.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75668.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75669.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75669.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75670.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75670.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75671.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75671.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75672.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75672.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75673.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75673.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75674.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75674.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75675.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75675.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75676.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75676.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75677.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75677.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75678.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75678.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75679.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75679.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75680.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75680.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75681.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75681.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 75682.000000] [simulator/INFO] on6 is observing his environment... +[on7:ON:(8) 75682.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75683.000000] [simulator/INFO] on7 is observing his environment... +[on6:ON:(7) 75683.000000] [simulator/INFO] on6 is sleeping +[on7:ON:(8) 75684.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75686.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75687.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75688.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75689.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75690.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75691.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75692.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75693.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75694.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75695.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75696.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75697.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75698.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75699.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75700.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75701.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75702.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75703.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75704.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75705.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75706.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75707.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75708.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75709.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75710.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75711.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75712.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75713.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75714.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75715.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75716.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75717.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75718.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75719.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75720.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75721.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75722.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75723.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 75724.000000] [simulator/INFO] on7 is sleeping +[on0:ON:(1) 75876.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 75876.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75877.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75878.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75879.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75880.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75881.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75882.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75883.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75884.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75885.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75886.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75887.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75888.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75889.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75890.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75891.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75892.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75893.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75894.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75895.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75896.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75897.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75898.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75899.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75900.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75901.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75902.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75903.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75904.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75905.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75906.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75907.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75908.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75909.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75910.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75911.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75912.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75913.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75914.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75915.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75916.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75917.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75918.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75919.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75920.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75922.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75924.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75926.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75928.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75930.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75932.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75934.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75936.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75965.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75967.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75969.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75971.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75973.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75975.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75977.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75979.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75981.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75983.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75985.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75985.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 75985.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75986.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75987.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75987.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75988.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75989.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75989.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75990.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75991.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75991.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75992.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75993.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75993.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75994.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75995.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75995.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75996.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75997.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75997.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 75998.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 75998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 75999.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 75999.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76000.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76001.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76001.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76002.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76003.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76003.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76004.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76005.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76005.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76006.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76007.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76007.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76008.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76009.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76009.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76010.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76011.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76011.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76012.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76013.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76013.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76014.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76015.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76015.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76016.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76017.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76017.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76018.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76019.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76019.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76020.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76021.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76021.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76022.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76023.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76023.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76024.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76025.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76025.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76026.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76027.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76027.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76028.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76029.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76029.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76030.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76031.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76031.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76032.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76033.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76033.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76034.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76035.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76035.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76036.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76037.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76037.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76038.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76039.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76039.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76040.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76041.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76041.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76042.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76043.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76043.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76044.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76045.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76045.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76046.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76047.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76047.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76048.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76049.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76049.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76050.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76051.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76051.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76052.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76053.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76053.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76054.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 76055.000000] [simulator/INFO] on0 is observing his environment... +[on10:ON:(11) 76055.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76056.000000] [simulator/INFO] on10 is observing his environment... +[on0:ON:(1) 76056.000000] [simulator/INFO] on0 is sleeping +[on10:ON:(11) 76057.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76058.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76059.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76060.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76061.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76062.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76063.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76064.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76065.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76066.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76067.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76068.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76069.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76070.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76071.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76072.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76073.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76074.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76075.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76076.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76077.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76078.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76079.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76080.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76081.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76082.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76083.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76084.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76085.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76086.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76087.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76088.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76089.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76090.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76091.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76092.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76093.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76094.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76095.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76096.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76097.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76098.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76099.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76100.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76101.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76102.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76103.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76104.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76105.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76106.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76107.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76108.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76109.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76110.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76111.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76112.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76113.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76114.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76115.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76116.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76117.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76118.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76119.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76120.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76121.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76122.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76123.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76124.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76125.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76126.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76127.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76128.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76129.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76130.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76131.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76132.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76133.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76134.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76135.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76136.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76137.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76138.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76139.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76140.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76141.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76142.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76143.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76144.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76145.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76146.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76147.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76148.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76149.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76150.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76151.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76152.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76153.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76154.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76155.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76156.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76157.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76158.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76159.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76160.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76161.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76162.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76163.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76164.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 76165.000000] [simulator/INFO] on10 is sleeping +[on8:ON:(9) 76330.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 76330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76355.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76358.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76361.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76364.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76367.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76370.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76373.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76376.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76379.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76382.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76385.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76388.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76391.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76394.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76397.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76400.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76403.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76409.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76415.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76421.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76427.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76433.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76439.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76445.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76451.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76457.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76463.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76465.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76466.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76467.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76468.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76469.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76470.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76471.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76472.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76473.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76474.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76475.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76476.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76477.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76478.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76479.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76480.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76481.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76482.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76483.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76484.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76485.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76486.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76487.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76488.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76489.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76490.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76491.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76492.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76493.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76494.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76495.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76496.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76497.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76498.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76499.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76500.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76501.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76502.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76503.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76504.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76505.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76506.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76507.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76508.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76509.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 76510.000000] [simulator/INFO] on8 is sleeping +[on4:ON:(5) 76519.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 76519.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76520.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76521.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76522.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76523.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76524.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76524.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 76524.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76525.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76525.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76526.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76526.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76527.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76527.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76528.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76528.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76529.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76529.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76530.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76530.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76531.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76531.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76532.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76532.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76533.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76533.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76534.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76534.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76535.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76535.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76536.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76536.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76537.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76537.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76538.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76538.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76539.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76539.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76540.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76540.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76541.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76541.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76542.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76542.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76543.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76543.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76544.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76544.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76545.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76545.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76546.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76546.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76547.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76547.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76548.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76548.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76549.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76549.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76550.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76550.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76551.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76551.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76552.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76552.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76553.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76553.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76554.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76554.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76555.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76555.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76556.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76556.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76557.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76557.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76558.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76558.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76559.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76560.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76560.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76561.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76562.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76562.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76563.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76564.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76564.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76565.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76566.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76566.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76567.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76568.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76568.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76569.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76570.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76570.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76571.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76572.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76572.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76573.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76574.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76574.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76575.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76576.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76576.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76577.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76578.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76578.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76579.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76580.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76580.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76581.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76582.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76582.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76583.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76584.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76584.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76585.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76586.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76586.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76587.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76588.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76588.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76589.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76590.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76590.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76591.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76592.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76592.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76593.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76594.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76594.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76595.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76596.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76596.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76597.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76598.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76598.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76599.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76600.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76600.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76601.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76602.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76602.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76603.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76604.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76604.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76605.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76606.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76606.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76607.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76608.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76608.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76609.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76610.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76610.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76611.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76612.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76612.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76613.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76614.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76614.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76615.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76616.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76616.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76617.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76618.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76618.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76619.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76620.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76620.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76621.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76622.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76622.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76623.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76624.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76624.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76625.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76626.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76626.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76627.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76628.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76628.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76629.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76630.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76630.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76631.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76632.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76632.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76633.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76634.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76634.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76635.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76636.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76636.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76637.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76638.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76638.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76639.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76640.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76640.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76641.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76642.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76642.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76643.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76644.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76644.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76645.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76646.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76646.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76647.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76648.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76648.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76649.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76650.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76650.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76651.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76652.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76652.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76653.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76654.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76654.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76655.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76656.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76656.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76657.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76658.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76658.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76659.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76660.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76660.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76661.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76662.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76662.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76663.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76664.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76664.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76665.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76666.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76666.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76667.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76668.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76668.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76669.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76670.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76670.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76671.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76672.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76672.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76673.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76674.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76674.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76675.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76676.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76676.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76677.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76678.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76678.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76679.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76680.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76680.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76681.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76682.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76682.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76683.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76684.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76684.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76685.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76686.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76686.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76687.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76688.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76688.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76689.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76690.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76690.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76691.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76692.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76692.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76693.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76694.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76694.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76695.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76696.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76696.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76697.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 76698.000000] [simulator/INFO] on4 is observing his environment... +[on12:ON:(13) 76698.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76699.000000] [simulator/INFO] on12 is observing his environment... +[on4:ON:(5) 76699.000000] [simulator/INFO] on4 is sleeping +[on12:ON:(13) 76700.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76701.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76702.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76703.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 76704.000000] [simulator/INFO] on12 is sleeping +[on9:ON:(10) 76705.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 76705.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76707.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76709.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76711.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76713.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76715.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76717.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76719.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76721.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76723.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76725.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76727.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76729.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76731.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76733.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76735.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76737.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76739.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76741.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76743.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76745.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76747.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76749.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76751.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76753.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76755.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76757.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76759.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76761.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76763.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76765.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76767.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76769.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76771.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76773.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76775.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76777.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76779.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76781.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76783.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76785.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76787.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76789.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76791.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76793.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76795.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76797.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76799.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76801.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76803.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76805.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76807.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76809.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76811.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76813.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76815.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76832.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76833.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76834.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76835.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76836.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76837.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76837.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 76837.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76838.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76838.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76839.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76839.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76840.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76840.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76841.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76841.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76842.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76842.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76843.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76843.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76844.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76844.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76845.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76845.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76846.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76846.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76847.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76847.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76848.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76848.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76849.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76849.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76850.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76850.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76851.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76851.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76852.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76852.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76853.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76853.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76854.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76854.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76855.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76855.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76856.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76856.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76857.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76857.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76858.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76858.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76859.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76859.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76860.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76860.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76861.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76861.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76862.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76862.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76863.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76863.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76864.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76864.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76865.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76865.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76866.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76866.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76867.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76867.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76868.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76868.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76869.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76869.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76870.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76870.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76871.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76871.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76872.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76872.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76873.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76873.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76874.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76874.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76875.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76875.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76876.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76876.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76877.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76877.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76878.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76878.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76879.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76879.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76880.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76880.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76881.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76881.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76882.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76882.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76883.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 76883.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76884.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 76884.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 76885.000000] [simulator/INFO] on9 is sleeping +[on7:ON:(8) 76885.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76886.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76887.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76888.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76889.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76890.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76891.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76892.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76893.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76894.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76895.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76896.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76897.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76898.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76899.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76900.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76901.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76902.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76903.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76904.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76905.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76906.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76907.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76908.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76909.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76910.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76911.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76912.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76913.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76914.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76915.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76916.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76917.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76918.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76919.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76920.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76921.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76922.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76923.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76924.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76925.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76926.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76927.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76928.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76929.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76930.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76931.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76932.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76933.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76934.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76935.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76936.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76937.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76938.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76939.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76940.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76941.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76942.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76943.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76944.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76945.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76946.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76947.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76948.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76949.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76950.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76951.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76952.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76953.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76954.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76955.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76956.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76957.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76958.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76959.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76960.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76961.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76962.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76963.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76964.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76966.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76968.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76970.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76972.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76974.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76976.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76978.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76980.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76982.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76983.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76984.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76985.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76986.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76987.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76988.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76989.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76990.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76991.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76992.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76993.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76994.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76995.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76996.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76997.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76998.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 76999.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77000.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77001.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77002.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77003.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77004.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77005.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77006.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77007.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77008.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77009.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77010.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77011.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77012.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77013.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77014.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77015.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77016.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 77017.000000] [simulator/INFO] on7 is sleeping +[on1:ON:(2) 77419.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 77419.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77420.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77421.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77422.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77423.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77424.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77425.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77426.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77427.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77428.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77429.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77430.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77431.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77432.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77433.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77434.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77435.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77436.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77437.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77438.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77439.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77440.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77441.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77442.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77443.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77444.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77445.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77446.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77447.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77448.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77449.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77450.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77451.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77452.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77453.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77454.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77455.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77456.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77457.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77458.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77459.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77460.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77461.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77462.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77463.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77464.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77465.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77466.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77467.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77468.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77469.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77470.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77471.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77472.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77473.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77474.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77475.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77476.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77477.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77478.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77479.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77480.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77481.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77482.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77483.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77484.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77485.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77486.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77487.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77488.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77489.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77490.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77491.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77492.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77493.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77494.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77495.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77496.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77497.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77498.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77499.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77500.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77501.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77502.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77503.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77504.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77505.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77506.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77507.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77508.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77509.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77510.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77511.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77512.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77513.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77514.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77515.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77516.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77517.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77518.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77519.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77520.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77521.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77522.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77523.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77524.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77525.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77526.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77527.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77528.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77529.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77530.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77531.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77532.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77533.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77534.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77535.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77536.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77537.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77538.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77539.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77540.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77541.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77542.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77543.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77544.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77545.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77546.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77547.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77548.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77549.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77550.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77551.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77552.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77553.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77554.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77555.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77556.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77557.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77558.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77559.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77560.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77561.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77562.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77563.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77564.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77565.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77566.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77567.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77568.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77569.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77570.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77571.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77572.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77573.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77574.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77575.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77576.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77577.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77578.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77579.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77580.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77581.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77582.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77583.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77584.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77585.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77586.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77587.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77588.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77589.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77590.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77591.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77592.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77593.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77594.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77595.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77596.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77597.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77598.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 77599.000000] [simulator/INFO] on1 is sleeping +[on6:ON:(7) 77684.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 77684.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77685.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77686.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77687.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77688.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77689.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77690.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77691.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77692.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77693.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77694.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77695.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77696.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77697.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77698.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77699.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77700.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77701.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77702.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77703.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77704.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77705.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77706.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77707.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77708.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77709.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77710.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77711.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77712.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77713.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77714.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77715.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77716.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77717.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77718.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77719.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77720.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77721.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77722.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77723.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77724.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77725.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77726.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77727.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77728.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77729.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77730.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77731.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77732.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77733.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77734.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77735.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77736.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77737.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77738.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77739.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77740.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77741.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77742.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77743.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77744.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77745.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77746.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77747.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77748.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77749.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77750.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77751.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77752.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77753.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77754.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77755.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77756.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77757.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77758.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77759.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77760.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77761.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77762.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77763.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77764.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77765.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77766.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77767.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77768.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77769.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77770.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77771.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77772.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77773.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77774.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77775.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77776.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77777.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77778.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77779.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77780.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77781.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77782.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77783.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77784.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77785.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77786.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77787.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77788.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77789.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77790.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77791.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77792.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77793.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77794.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77795.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77796.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77797.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77798.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77799.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77800.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77801.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77802.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77803.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77804.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77805.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77806.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77807.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77808.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77809.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77810.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77811.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77812.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77813.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77814.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77815.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77816.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77817.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77818.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77819.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77820.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77821.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77822.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77823.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77824.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77825.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77826.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77827.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77828.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77829.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77829.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 77829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77830.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77830.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77831.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77832.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77832.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77833.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77834.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77834.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77835.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77836.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77836.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77837.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77838.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77838.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77839.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77840.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77840.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77841.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77842.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77842.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77843.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77844.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77844.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77845.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77846.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77846.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77847.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77848.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77848.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77849.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77850.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77850.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77851.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77852.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77852.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77853.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77854.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77855.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77856.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77857.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77858.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77859.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77860.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77861.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77862.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 77863.000000] [simulator/INFO] on6 is observing his environment... +[on11:ON:(12) 77863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77864.000000] [simulator/INFO] on11 is observing his environment... +[on6:ON:(7) 77864.000000] [simulator/INFO] on6 is sleeping +[on11:ON:(12) 77865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77916.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77916.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 77916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77917.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77918.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77919.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77920.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77921.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77921.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77922.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77923.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77923.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77924.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77925.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77925.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77926.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77927.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77927.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77928.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77929.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77929.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77930.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77931.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77931.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77932.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77933.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77933.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77934.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77935.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77935.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77936.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77937.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77937.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77938.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77939.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77939.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77940.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77941.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77941.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77942.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77943.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77943.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77944.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77945.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77945.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77946.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77947.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77947.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77948.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77949.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77949.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77950.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77951.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77951.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77952.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77953.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77953.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77954.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77955.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77955.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77956.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77957.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77957.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77958.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77959.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77959.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77960.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77961.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77961.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77962.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77963.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77963.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77964.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77965.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77965.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77966.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77966.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77967.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77967.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77968.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77968.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77969.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77969.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77970.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77970.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77971.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77971.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77972.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77972.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77973.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77973.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77974.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77974.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77975.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77975.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77976.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77976.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77977.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77977.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77978.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77978.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77979.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77979.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77980.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77980.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77981.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77981.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77982.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77982.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77983.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77983.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77984.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77984.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77985.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77985.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77986.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77986.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77987.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77987.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77988.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77988.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77989.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77989.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77990.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77990.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77991.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77991.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77992.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77992.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77993.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77993.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77994.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77994.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77995.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77995.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77996.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77996.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77997.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77997.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 77998.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 77998.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 77999.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 77999.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78000.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78000.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78001.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78001.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78002.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78002.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78003.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78003.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78004.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78004.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78005.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78005.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78006.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78006.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78007.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78007.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 78008.000000] [simulator/INFO] on11 is observing his environment... +[on3:ON:(4) 78008.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78009.000000] [simulator/INFO] on3 is observing his environment... +[on11:ON:(12) 78009.000000] [simulator/INFO] on11 is sleeping +[on3:ON:(4) 78010.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78012.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78014.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78016.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78018.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78020.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78022.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78024.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78026.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78028.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78030.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78032.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78034.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78036.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78038.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78040.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78042.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78044.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78046.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78048.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78050.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78052.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78054.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78056.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78057.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78058.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78059.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78060.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78061.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78062.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78063.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78064.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78065.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78066.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78067.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78068.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78069.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78070.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78071.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78072.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78073.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78074.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78075.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78076.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78077.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78078.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78079.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78080.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78081.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78082.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78083.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78084.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78085.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78086.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78087.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78088.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78089.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78090.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78091.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78092.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78093.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78094.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78095.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 78096.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 78822.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 78822.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78823.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78824.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78825.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78826.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78827.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78828.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78829.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78830.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78831.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78832.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78833.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78834.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78835.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78836.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78837.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78838.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78839.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78840.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78841.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78842.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78843.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78844.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78845.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78846.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78847.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78848.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78849.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78850.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78851.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78852.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78853.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78854.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78855.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78856.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78857.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78858.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78859.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78860.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78861.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78862.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78863.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78864.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78865.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78866.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78867.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78868.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78869.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78870.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78871.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78872.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78873.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78874.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78875.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78876.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78877.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78878.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78879.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78880.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78881.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78882.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78883.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78884.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78885.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78886.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78887.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78888.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78889.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78890.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78891.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78892.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78893.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78894.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78895.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78896.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78897.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78898.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78899.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78900.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78901.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78902.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78903.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78904.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78905.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78906.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78907.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78908.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78909.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78910.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78911.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78912.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78913.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78914.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78915.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78916.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78917.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78918.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78919.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78920.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78921.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78922.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78923.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78924.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78925.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78926.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78927.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78928.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78929.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78930.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78931.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78932.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78933.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78934.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78935.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78936.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78937.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78938.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78939.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78940.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78941.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78942.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78943.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78944.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78945.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78946.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78947.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78948.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78949.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78950.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78951.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78952.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78953.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78954.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78955.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78956.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78957.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78958.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78959.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78960.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78961.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78962.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78963.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78964.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78965.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78966.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78967.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78968.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78969.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78970.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78971.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78972.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78973.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78974.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78975.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78976.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78977.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78978.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78979.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78980.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78981.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78982.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78983.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78984.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78985.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78986.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78987.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78988.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78989.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78990.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78991.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78992.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78993.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78994.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78995.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78996.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78997.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78998.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 78999.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79000.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79001.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 79002.000000] [simulator/INFO] on2 is sleeping +[on5:ON:(6) 79125.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 79125.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79126.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79127.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79128.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79129.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79130.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79131.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79132.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79133.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79134.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79135.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79136.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79137.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79138.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79139.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79140.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79141.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79142.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79143.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79144.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79145.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79146.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79147.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79148.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79149.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79150.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79151.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79152.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79153.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79154.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79155.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79156.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79157.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79158.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79159.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79160.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79161.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79162.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79163.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79164.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79165.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79166.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79167.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79168.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79169.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79170.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79171.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79172.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79173.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79174.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79175.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79176.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79177.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79178.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79179.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79180.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79181.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79182.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79183.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79184.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79185.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79186.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79187.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79188.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79189.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79190.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79191.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79192.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79193.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79194.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79195.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79196.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79197.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79198.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79199.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79200.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79201.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79202.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79203.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79204.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79205.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79206.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79207.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79208.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79209.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79210.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79211.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79212.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79213.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79214.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79215.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79216.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79217.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79218.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79219.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79220.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79221.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79222.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79223.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79224.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79225.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79226.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79227.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79228.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79229.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79230.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79231.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79232.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79233.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79234.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79235.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79236.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79237.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79238.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79239.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79240.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79241.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79242.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79243.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79244.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79245.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79246.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79247.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79248.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79249.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79250.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79251.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79252.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79253.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79254.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79255.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79256.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79257.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79258.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79259.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79260.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79261.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79262.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79263.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79264.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79265.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79266.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79267.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79268.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79269.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79270.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79271.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79272.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79273.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79274.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79275.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79276.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79277.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79278.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79279.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79280.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79281.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79282.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79283.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79284.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79285.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79285.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 79285.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79286.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79286.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79287.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79287.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79288.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79288.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79289.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79289.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79290.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79290.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79291.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79291.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79292.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79292.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79293.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79293.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79294.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79294.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79295.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79295.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79296.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79296.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79297.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79297.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79298.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79298.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79299.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79299.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79300.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79300.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79301.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79301.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79302.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79302.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79303.000000] [simulator/INFO] on5 is observing his environment... +[on8:ON:(9) 79303.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79304.000000] [simulator/INFO] on8 is observing his environment... +[on5:ON:(6) 79304.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79305.000000] [simulator/INFO] on5 is sleeping +[on8:ON:(9) 79305.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79306.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79307.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79308.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79309.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79310.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79311.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79312.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79313.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79314.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79315.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79316.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79317.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79318.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79319.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79320.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79321.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79322.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79323.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79324.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79325.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79326.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79327.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79328.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79329.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79330.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79331.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79332.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79333.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79334.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79335.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79336.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79337.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79338.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79339.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79340.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79341.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79342.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79343.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79344.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79345.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79346.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79347.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79348.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79349.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79350.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79351.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79352.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79353.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79354.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79355.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79356.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79357.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79358.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79359.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79360.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79361.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79362.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79363.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79364.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79365.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79366.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79367.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79368.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79369.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79370.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79371.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79372.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79373.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79374.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79375.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79376.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79377.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79378.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79379.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79380.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79381.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79382.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79383.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79384.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79385.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79386.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79387.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79388.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79389.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79390.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79391.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79392.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79393.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79394.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79395.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79396.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79397.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79398.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79399.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79400.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79401.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79402.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79403.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79404.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79405.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79406.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79407.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79408.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79409.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79410.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79411.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79412.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79413.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79414.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79415.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79416.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79417.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79418.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79419.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79420.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79421.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79422.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79423.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79424.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79425.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79426.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79427.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79428.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79429.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79430.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79431.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79432.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79433.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79434.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79435.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79436.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79437.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79438.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79439.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79440.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79441.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79442.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79443.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79444.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79445.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79446.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79447.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79448.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79449.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79450.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79451.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79452.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79453.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79454.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79455.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79456.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79457.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79458.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79459.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79460.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79461.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79462.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79463.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79464.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 79465.000000] [simulator/INFO] on8 is sleeping +[on5:ON:(6) 79600.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 79600.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79601.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79602.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79603.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79604.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79605.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79606.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79607.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79608.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79609.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79610.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79611.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79612.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79613.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79614.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79615.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79616.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79617.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79618.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79619.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79620.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79621.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79622.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79623.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79624.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79625.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79626.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79627.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79628.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79629.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79630.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79631.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79632.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79633.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79634.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79635.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79636.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79637.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79638.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79639.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79640.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79641.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79642.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79643.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79644.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79645.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79646.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79647.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79648.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79649.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79650.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79651.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79652.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79653.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79654.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79655.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79656.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79657.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79658.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79659.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79660.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79661.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79662.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79663.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79664.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79665.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79666.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79667.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79668.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79669.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79670.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79671.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79672.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79673.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79674.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79675.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79676.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79677.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79678.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79679.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79680.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79681.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79682.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79683.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79684.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79685.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79686.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79687.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79688.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79689.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79690.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79691.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79692.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79693.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79694.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79695.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79696.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79697.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79698.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79699.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79700.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79701.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79702.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79703.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79704.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79705.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79706.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79707.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79708.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79709.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79710.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79711.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79712.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79713.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79714.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79715.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79716.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79717.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79718.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79719.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79720.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79721.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79722.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79723.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79724.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79725.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79726.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79727.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79728.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79729.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79730.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79731.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79732.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79733.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79734.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79735.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79736.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79737.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79738.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79739.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79740.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79741.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79742.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79743.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79744.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79745.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79746.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79747.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79748.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79749.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79750.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79751.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79752.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79753.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79754.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79755.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79756.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79757.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79757.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 79757.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79758.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79758.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79759.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79759.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79760.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79760.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79761.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79761.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79762.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79762.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79763.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79763.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79764.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79764.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79765.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79765.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79766.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79766.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79767.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79767.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79768.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79768.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79769.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79769.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79770.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79770.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79771.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79771.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79772.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79772.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79773.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79773.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79774.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79774.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79775.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79775.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79776.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79776.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79777.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79777.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79778.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79778.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 79779.000000] [simulator/INFO] on5 is observing his environment... +[on11:ON:(12) 79779.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79780.000000] [simulator/INFO] on11 is observing his environment... +[on5:ON:(6) 79780.000000] [simulator/INFO] on5 is sleeping +[on11:ON:(12) 79781.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79782.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79783.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79784.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79785.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79786.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79787.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79788.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79789.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79790.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79791.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79792.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79793.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79794.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79795.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79796.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79797.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79798.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79799.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79800.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79801.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79802.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79803.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79804.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79805.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79806.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79807.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79808.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79809.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79810.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79811.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79812.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79813.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79814.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79815.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79816.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79817.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79818.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79819.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79820.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79821.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79822.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79823.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79824.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79825.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79826.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79827.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79828.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79829.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79830.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79831.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79832.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79833.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79834.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79835.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79836.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79837.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79838.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79839.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79840.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79841.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79842.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79843.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79844.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79845.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79846.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79847.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79848.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79849.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79850.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79851.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79852.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79853.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79854.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79855.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79856.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79857.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79858.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79859.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79860.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79861.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79862.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79863.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79864.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79865.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79866.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79867.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79868.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79869.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79870.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79871.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79872.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79873.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79874.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79875.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79876.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79877.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79878.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79879.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79880.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79881.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79882.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79883.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79884.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79885.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79886.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79887.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79888.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79889.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79890.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79891.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79892.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79893.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79894.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79895.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79896.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79897.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79898.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79899.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79900.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79901.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79902.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79903.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79904.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79905.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79906.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79907.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79908.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79909.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79910.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79911.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79912.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79913.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79914.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79915.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79916.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79917.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79918.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79919.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79920.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79921.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79921.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 79921.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79922.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79922.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79923.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79923.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79924.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79924.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79925.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79925.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79926.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79926.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79927.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79927.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79928.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79928.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79929.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79929.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79930.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79930.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79931.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79931.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79932.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79932.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79933.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79933.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79934.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79934.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79935.000000] [simulator/INFO] on11 is observing his environment... +[on0:ON:(1) 79935.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79936.000000] [simulator/INFO] on0 is observing his environment... +[on11:ON:(12) 79936.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 79937.000000] [simulator/INFO] on11 is sleeping +[on0:ON:(1) 79937.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79938.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79939.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79940.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79941.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79942.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79943.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79944.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79945.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79946.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79947.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79948.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79949.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79950.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79951.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79952.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79953.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79954.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79955.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79956.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79957.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79958.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79959.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79960.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79961.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79962.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79963.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79964.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79965.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79965.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 79965.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79966.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79966.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79967.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79967.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79968.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79968.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79969.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79969.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79970.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79970.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79971.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79971.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79972.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79972.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79973.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79973.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79974.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79974.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79975.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79975.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79976.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79976.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79977.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79977.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79978.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79978.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79979.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79979.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79980.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79980.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79981.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79981.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79982.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79982.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79983.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79983.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79984.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79984.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79985.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79985.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79986.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79986.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79987.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79987.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79988.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79988.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79989.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79989.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79990.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79990.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79991.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79991.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79992.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79992.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79993.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79993.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79994.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79994.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79995.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79995.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79996.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79996.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79997.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79997.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 79998.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 79998.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 79999.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 79999.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80000.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80000.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80001.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80001.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80002.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80002.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80003.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80003.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80004.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80004.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80005.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80005.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80006.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80006.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80007.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80007.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80008.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80008.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80009.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80009.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80010.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80010.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80011.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80011.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80012.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80012.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80013.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80013.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80014.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80014.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80015.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80015.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80016.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80016.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80017.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80017.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80018.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80018.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80019.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80019.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80020.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80020.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80021.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80021.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80022.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80022.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80023.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80023.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80024.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80024.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80025.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80025.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80026.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80026.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80027.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80027.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80028.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80028.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80029.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80029.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80030.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80030.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80031.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80031.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80032.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80032.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80033.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80033.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80034.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80034.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80035.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80035.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80036.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80036.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80037.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80037.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80038.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80038.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80039.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80039.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80040.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80040.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80041.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80041.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80042.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80042.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80043.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80043.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80044.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80044.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80045.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80045.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80046.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80046.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80047.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80047.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80048.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80048.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80049.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80049.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80050.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80050.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80051.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80051.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80052.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80052.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80053.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80053.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80054.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80054.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80055.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80055.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80056.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80056.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80057.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80057.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80058.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80058.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80059.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80059.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80060.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80060.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80061.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80061.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80062.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80062.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80063.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80063.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80064.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80064.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80065.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80065.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80066.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80066.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80067.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80067.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80068.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80068.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80069.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80069.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80070.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80070.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80071.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80071.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80072.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80072.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80073.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80073.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80074.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80074.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80075.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80075.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80076.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80076.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80077.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80077.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80078.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80078.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80079.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80079.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80080.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80080.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80081.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80081.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80082.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80082.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80083.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80083.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80084.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80084.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80085.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80085.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80086.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80086.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80087.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80087.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80088.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80088.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80089.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80089.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80090.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80090.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80091.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80091.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80092.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80092.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80093.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80093.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80094.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80094.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80095.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80095.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80096.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80096.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80097.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80097.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80098.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80098.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80099.000000] [simulator/INFO] on0 is observing his environment... +[on7:ON:(8) 80099.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80100.000000] [simulator/INFO] on7 is observing his environment... +[on0:ON:(1) 80100.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 80101.000000] [simulator/INFO] on0 is sleeping +[on7:ON:(8) 80101.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80102.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80103.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80104.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80105.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80106.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80107.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80108.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80109.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80110.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80111.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80112.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80113.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80114.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80115.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80116.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80117.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80118.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80119.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80120.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80121.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80122.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80123.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80124.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80125.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80126.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80127.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80128.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80129.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80130.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80131.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80132.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80133.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80134.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80135.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80136.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80137.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80138.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80139.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80140.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80141.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80142.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80143.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80144.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 80145.000000] [simulator/INFO] on7 is sleeping +[on3:ON:(4) 80387.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 80387.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80388.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80389.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80390.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80391.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80392.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80393.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80394.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80395.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80396.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80397.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80398.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80399.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80400.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80401.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80402.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80403.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80404.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80405.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80406.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80407.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80408.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80409.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80410.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80411.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80412.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80413.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80414.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80415.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80416.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80417.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80418.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80419.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80420.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80421.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80422.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80423.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80424.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80425.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80426.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80427.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80428.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80429.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80430.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80431.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80432.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80433.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80434.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80435.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80436.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80437.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80438.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80439.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80440.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80441.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80442.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80443.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80444.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80445.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80446.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80447.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80448.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80449.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80450.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80451.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80452.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80453.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80454.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80455.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80456.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80457.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80458.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80459.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80460.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80461.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80462.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80463.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80464.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80465.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80466.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80467.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80468.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80469.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80470.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80471.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80472.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80473.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80474.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80475.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80476.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80477.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80478.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80479.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80480.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80481.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80482.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80483.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80484.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80485.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80486.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80487.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80488.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80489.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80490.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80491.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80492.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80493.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80494.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80495.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80496.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80497.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80498.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80499.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80500.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80501.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80502.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80503.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80504.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80505.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80506.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80507.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80508.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80509.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80510.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80511.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80512.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80513.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80514.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80515.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80516.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80517.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80518.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80519.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80520.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80521.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80522.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80523.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80524.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80525.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80526.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80527.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80528.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80529.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80530.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80531.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80532.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80533.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80534.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80535.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80536.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80537.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80538.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80539.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80540.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80541.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80542.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80543.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80544.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80545.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80546.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80547.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80548.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80549.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80550.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80551.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80552.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80553.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80554.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80555.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80556.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80557.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80558.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80559.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80560.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80561.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80562.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80563.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80564.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80565.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80566.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 80567.000000] [simulator/INFO] on3 is sleeping +[on2:ON:(3) 81068.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 81068.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81069.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81070.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81071.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81072.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81073.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81074.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81075.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81076.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81077.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81078.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81079.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81080.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81081.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81082.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81083.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81084.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81085.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81086.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81087.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81088.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81089.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81090.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81091.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81092.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81093.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81094.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81095.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81096.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81097.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81098.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81099.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81100.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81101.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81102.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81103.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81104.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81105.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81106.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81107.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81108.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81109.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81110.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81111.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81112.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81113.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81114.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81115.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81117.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81119.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81121.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81123.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81125.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81127.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81129.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81131.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81133.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81135.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81137.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81139.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81141.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81143.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81145.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81147.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81149.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81151.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81153.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81155.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81157.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81159.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81161.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81163.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81164.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81164.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 81164.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81165.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81165.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81166.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81166.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81167.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81167.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81168.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81168.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81169.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81169.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81170.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81170.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81171.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81171.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81172.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81172.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81173.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81173.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81174.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81174.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81175.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81176.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81176.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81177.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81178.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81178.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81179.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81180.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81180.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81181.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81182.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81182.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81183.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81184.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81184.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81185.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81186.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81186.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81187.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81188.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81188.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81189.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81190.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81190.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81191.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81192.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81192.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81193.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81194.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81194.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81195.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81196.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81196.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81197.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81198.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81198.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81199.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81200.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81200.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81201.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81202.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81202.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81203.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81204.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81204.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81205.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81206.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81206.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81207.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81208.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81208.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81209.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81210.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81210.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81211.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81212.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81212.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81213.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81214.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81214.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81215.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81216.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81216.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81217.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81218.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81218.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81219.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81220.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81220.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81221.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81222.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81222.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81223.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81224.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81224.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81225.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81226.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81226.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81227.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81228.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81228.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81229.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81230.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81230.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81231.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81232.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81232.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81233.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81234.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81234.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81235.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81236.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81236.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81237.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81238.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81238.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81239.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81240.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81240.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81241.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81242.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81242.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81243.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81244.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81244.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81245.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81246.000000] [simulator/INFO] on2 is observing his environment... +[on1:ON:(2) 81246.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81247.000000] [simulator/INFO] on1 is observing his environment... +[on2:ON:(3) 81247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 81248.000000] [simulator/INFO] on2 is sleeping +[on1:ON:(2) 81248.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81249.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81250.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81251.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81252.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81253.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81254.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81255.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81256.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81257.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81258.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81259.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81260.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81261.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81262.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81263.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81264.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81265.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81266.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81267.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81268.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81269.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81270.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81271.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81272.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81273.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81274.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81275.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81276.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81277.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81278.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81279.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81280.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81281.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81282.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81283.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81284.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81285.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81286.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81287.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81288.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81289.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81290.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81291.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81292.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81293.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81294.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81295.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81296.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81297.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81298.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81299.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81300.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81301.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81302.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81303.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81304.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81305.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81306.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81307.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81308.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81309.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81310.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81311.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81312.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81313.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81314.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81315.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81316.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81317.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81318.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81319.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81320.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81321.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81322.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81323.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81324.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81325.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81326.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81327.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81328.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81329.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81330.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81331.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81332.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81333.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81334.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81335.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81336.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81337.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81338.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81339.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81340.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81341.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81342.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81343.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 81344.000000] [simulator/INFO] on1 is sleeping +[on4:ON:(5) 81559.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 81559.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81560.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81561.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81562.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81563.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81564.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81565.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81566.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81567.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81568.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81569.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81570.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81571.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81572.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81573.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81574.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81575.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81576.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81577.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81578.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81579.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81580.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81581.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81582.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81583.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81584.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81585.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81586.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81587.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81588.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81589.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81590.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81591.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81592.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81593.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81594.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81595.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81596.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81597.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81598.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81599.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81600.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81601.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81602.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81603.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81604.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81605.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81606.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81607.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81608.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81609.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81610.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81611.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81612.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81613.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81614.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81615.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81616.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81617.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81618.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81619.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81620.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81621.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81622.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81623.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81624.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81625.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81626.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81627.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81628.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81629.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81630.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81631.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81632.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81633.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81634.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81635.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81636.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81637.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81638.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81639.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81640.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81641.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81642.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81643.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81644.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81645.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81646.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81647.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81648.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81649.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81650.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81651.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81652.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81653.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81654.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81655.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81656.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81657.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81658.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81659.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81660.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81661.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81662.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81663.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81664.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81665.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81666.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81667.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81668.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81669.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81670.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81671.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81672.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81673.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81674.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81675.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81676.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81677.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81678.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81679.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81680.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81681.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81682.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81683.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81684.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81685.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81686.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81687.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81688.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81689.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81690.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81691.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81692.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81693.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81694.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81695.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81696.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81697.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81698.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81699.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81700.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81701.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81702.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81703.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81704.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81705.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81706.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81707.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81708.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81709.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81710.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81711.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81712.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81713.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81714.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81715.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81716.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81717.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81718.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81719.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81720.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81721.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81722.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81723.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81724.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81725.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81726.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81727.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81728.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81729.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81730.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81731.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81732.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81733.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81734.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81735.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81736.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81737.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81738.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 81739.000000] [simulator/INFO] on4 is sleeping +[on10:ON:(11) 81795.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 81795.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81796.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81797.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81798.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81799.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81800.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81801.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81802.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81803.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81804.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81805.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81806.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81807.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81808.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81809.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81810.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81811.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81812.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81813.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81814.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81815.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81816.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81817.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81818.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81819.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81820.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81821.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81822.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81823.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81824.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81825.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81826.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81827.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81828.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81829.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81830.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81831.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81832.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81833.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81834.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81835.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81836.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81837.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81838.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81839.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81840.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81841.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81842.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81843.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81844.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81845.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81846.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81847.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81848.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81849.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81850.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81851.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81852.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81853.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81854.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81854.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 81854.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81855.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81855.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81856.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81856.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81857.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81857.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81858.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81858.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81859.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81859.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81860.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81860.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81861.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81861.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81862.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81862.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81863.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81863.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81864.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81864.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81865.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81865.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81866.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81866.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81867.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81867.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81868.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81868.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81869.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81869.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81870.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81870.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81871.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81871.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81872.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81872.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81873.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81873.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81874.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81874.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81875.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81875.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81876.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81876.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81877.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81877.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81878.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81878.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81879.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81879.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81880.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81880.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81881.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81881.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81882.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81882.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81883.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81883.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81884.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81884.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81885.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81885.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81886.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81886.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81887.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81887.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81888.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81888.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81889.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81889.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81890.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81890.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81891.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81891.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81892.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81892.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81893.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81893.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81894.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81894.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81895.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81895.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81896.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81896.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81897.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81897.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81898.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81898.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81899.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81899.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81900.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81900.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81901.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81901.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81902.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81902.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81903.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81903.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81904.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81904.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81905.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81905.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81906.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81906.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81907.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81907.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81908.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81908.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81909.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81909.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81910.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81910.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81911.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81911.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81912.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81912.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81913.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81913.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81914.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81914.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81915.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81915.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81916.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81916.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81917.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81917.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81918.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81918.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81919.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81919.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81920.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81920.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81921.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81921.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81922.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81922.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81923.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81923.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81924.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81924.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81925.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81925.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81926.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81926.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81927.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81927.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81928.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81928.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81929.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81929.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81930.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81930.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81931.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81931.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81932.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81932.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81933.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81933.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81934.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81934.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81935.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81935.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81936.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81936.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81937.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81937.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81938.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81938.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81939.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81939.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81940.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81940.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81941.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81941.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81942.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81942.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81943.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81943.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81944.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81944.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81945.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81945.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81946.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81946.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81947.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81947.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81948.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81948.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81949.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81949.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81950.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81950.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81951.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81951.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81952.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81952.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81953.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81953.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81954.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81954.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81955.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81955.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81956.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81956.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81957.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81957.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81958.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81958.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81959.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81959.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81960.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81960.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81961.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81961.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81962.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81962.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81963.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81963.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81964.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81964.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81965.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81965.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81966.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81966.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81967.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81967.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81968.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81968.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81969.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81969.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81970.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81970.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81971.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81971.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81972.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81972.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81973.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81973.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 81974.000000] [simulator/INFO] on10 is observing his environment... +[on6:ON:(7) 81974.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81975.000000] [simulator/INFO] on6 is observing his environment... +[on10:ON:(11) 81975.000000] [simulator/INFO] on10 is sleeping +[on6:ON:(7) 81976.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81977.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81978.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81979.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81979.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 81979.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81980.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81980.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81981.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81981.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81982.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81983.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81983.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81984.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81985.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81985.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81986.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81987.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81987.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81988.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81989.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81989.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81990.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81991.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81991.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81992.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81993.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81993.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81994.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81995.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81995.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81996.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81997.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81997.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 81998.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 81998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 81999.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 81999.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82000.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82001.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82001.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82002.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82003.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82003.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82004.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82005.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82005.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82006.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82007.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82007.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82008.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82009.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82009.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82010.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82011.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82011.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82012.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82013.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82013.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82014.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82015.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82015.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82016.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82017.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82017.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82018.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82019.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82019.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82020.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82021.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82021.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82022.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82023.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82023.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82024.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82025.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82025.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82026.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82027.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82027.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82028.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82029.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82029.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82030.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82031.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82031.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82032.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 82033.000000] [simulator/INFO] on6 is observing his environment... +[on9:ON:(10) 82033.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82034.000000] [simulator/INFO] on9 is observing his environment... +[on6:ON:(7) 82034.000000] [simulator/INFO] on6 is sleeping +[on9:ON:(10) 82035.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82036.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82037.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82038.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82039.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82040.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82041.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82042.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82043.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82044.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82045.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82046.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82047.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82048.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82049.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82050.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82051.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82052.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82053.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82054.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82055.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82056.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82057.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82058.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82059.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82060.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82061.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82062.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82063.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82064.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82065.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82066.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82067.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82068.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82069.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82070.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82071.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82072.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82073.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82074.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82075.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82076.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82077.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82078.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82079.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82080.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82081.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82082.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82083.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82084.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82085.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82086.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82087.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82088.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82089.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82090.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82091.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82092.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82093.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82094.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82095.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82096.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82097.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82098.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82099.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82100.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82101.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82102.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82103.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82104.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82105.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82106.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82107.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82108.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82109.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82110.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82111.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82112.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82113.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82114.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82115.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82116.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82117.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82118.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82119.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82120.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82121.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82122.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82123.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82124.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82125.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82126.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82127.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82128.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82129.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82130.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82131.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82132.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82133.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82134.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82135.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82136.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82137.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82138.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82139.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82140.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82141.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82142.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82143.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82144.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82145.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82146.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82147.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82148.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82149.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82150.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82151.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82152.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82153.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82154.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82155.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82156.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82157.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82158.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 82159.000000] [simulator/INFO] on9 is sleeping +[on12:ON:(13) 82665.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 82665.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82666.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82667.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82668.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82669.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82670.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82671.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82672.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82673.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82674.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82675.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82676.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82677.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82678.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82679.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82680.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82681.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82682.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82683.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82684.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82685.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82686.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82687.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82688.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82689.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82690.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82691.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82692.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82693.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82694.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82695.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82696.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82697.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82698.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82699.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82700.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82701.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82702.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82703.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82704.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82705.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82706.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82707.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82708.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82709.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82710.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82711.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82712.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82713.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82714.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82715.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82716.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82717.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82718.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82719.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82720.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82721.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82722.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82723.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82724.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82725.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82726.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82727.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82728.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82729.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82730.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82731.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82732.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82733.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82734.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82735.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82736.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82737.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82738.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82739.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82740.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82741.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82742.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82743.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82744.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82745.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82746.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82747.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82748.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82749.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82750.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82751.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82752.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82753.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82754.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82755.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82756.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82757.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82758.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82759.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82760.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82761.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82762.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82763.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82764.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82765.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82766.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82767.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82768.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82769.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82770.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82771.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82772.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82773.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82774.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82775.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82776.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82777.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82778.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82779.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82780.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82781.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82782.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82783.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82784.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82785.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82786.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82787.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82788.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82789.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82790.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82791.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82792.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82793.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82794.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82795.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82796.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82797.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82798.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82799.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82800.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82801.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82802.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82803.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82804.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82805.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82806.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82807.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82808.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82809.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82810.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82811.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82812.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82813.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82814.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82815.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82816.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82817.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82818.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82819.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82820.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82821.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82822.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82823.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82824.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82825.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82826.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82827.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82828.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82829.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82830.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82831.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82832.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82833.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82834.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82835.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82836.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82837.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82838.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82839.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82840.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82841.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82842.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82843.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82844.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 82845.000000] [simulator/INFO] on12 is sleeping +[on3:ON:(4) 82904.000000] [simulator/INFO] on3 wakes up +[on3:ON:(4) 82904.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82905.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82906.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82907.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82908.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82909.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82910.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82911.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82912.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82913.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82914.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82915.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82916.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82917.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82918.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82919.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82920.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82921.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82922.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82923.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82924.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82925.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82926.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82927.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82928.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82929.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82930.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82931.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82932.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82933.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82934.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82935.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82936.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82937.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82938.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82939.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82940.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82941.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82942.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82943.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82944.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82945.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82946.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82947.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82948.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82949.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82950.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82951.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82952.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82953.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82954.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82955.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82956.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82957.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82958.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82959.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82960.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82961.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82962.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82963.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82964.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82965.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82966.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82967.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82968.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82969.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82970.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82971.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82972.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82973.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82974.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82975.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82976.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82977.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82978.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82979.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82980.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82981.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82982.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82983.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82984.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82985.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82986.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82987.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82988.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82989.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82990.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82991.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82992.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82993.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82994.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82995.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82996.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82997.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82998.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 82999.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83000.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83001.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83002.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83003.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83004.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83005.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83006.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83007.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83008.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83009.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83010.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83011.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83012.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83013.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83014.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83015.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83016.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83017.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83018.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83019.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83020.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83021.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83022.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83023.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83024.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83025.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83026.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83027.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83028.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83029.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83030.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83031.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83032.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83033.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83034.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83035.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83036.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83037.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83038.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83039.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83040.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83041.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83042.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83043.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83044.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83045.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83046.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83047.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83048.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83049.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83050.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83051.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83052.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83053.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83054.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83055.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83056.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83057.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83058.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83059.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83060.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83061.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83062.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83063.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83064.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83065.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83066.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83067.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83068.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83069.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83070.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83071.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83072.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83073.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83074.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83075.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83076.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83077.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83078.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83079.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83080.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83081.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83082.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83083.000000] [simulator/INFO] on3 is observing his environment... +[on3:ON:(4) 83084.000000] [simulator/INFO] Observation node on3 finished [LOG2PARSE](node:on3|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:360|totalUptime:4321.000000|seed:200|hint_added:0|timeDataRcv:7709.010320) +[on10:ON:(11) 83332.000000] [simulator/INFO] on10 wakes up +[on10:ON:(11) 83332.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83333.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83334.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83335.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83336.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83337.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83338.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83339.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83340.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83341.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83342.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83343.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83344.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83345.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83346.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83347.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83348.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83349.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83350.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83351.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83352.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83353.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83354.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83355.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83356.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83357.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83358.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83359.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83360.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83361.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83362.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83363.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83364.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83365.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83366.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83367.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83368.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83369.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83370.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83371.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83372.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83373.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83374.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83375.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83376.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83377.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83378.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83379.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83380.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83381.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83382.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83383.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83384.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83385.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83386.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83387.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83388.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83389.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83390.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83391.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83392.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83393.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83394.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83395.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83396.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83397.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83398.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83399.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83400.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83401.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83402.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83403.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83404.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83405.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83406.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83407.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83408.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83409.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83410.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83411.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83412.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83413.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83414.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83415.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83416.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83417.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83418.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83419.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83420.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83421.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83422.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83423.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83424.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83425.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83426.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83427.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83428.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83429.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83430.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83431.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83432.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83433.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83434.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83435.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83436.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83437.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83438.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83439.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83440.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83441.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83442.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83443.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83444.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83445.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83446.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83447.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83448.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83449.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83450.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83451.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83452.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83453.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83454.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83455.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83456.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83457.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83458.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83459.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83460.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83461.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83462.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83463.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83464.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83465.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83466.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83467.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83468.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83469.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83470.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83471.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83472.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83473.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83474.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83475.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83476.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83477.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83478.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83479.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83480.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83481.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83482.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83483.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83484.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83485.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83486.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83487.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83488.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83489.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83490.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83491.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83492.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83493.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83494.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83495.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83496.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83497.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83498.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83499.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83500.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83501.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83502.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83503.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83504.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83505.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83506.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83507.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83508.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83509.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83510.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83511.000000] [simulator/INFO] on10 is observing his environment... +[on10:ON:(11) 83512.000000] [simulator/INFO] Observation node on10 finished [LOG2PARSE](node:on10|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:0|totalUptime:4507.620640|seed:200|hint_added:1|timeDataRcv:2638.620640) +[on11:ON:(12) 83602.000000] [simulator/INFO] on11 wakes up +[on11:ON:(12) 83602.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83603.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83604.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83605.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83606.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83607.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83608.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83609.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83610.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83611.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83612.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83613.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83614.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83615.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83616.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83617.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83618.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83619.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83620.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83621.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83622.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83623.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83624.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83625.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83626.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83627.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83628.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83629.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83630.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83631.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83632.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83633.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83634.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83635.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83636.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83637.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83638.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83639.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83640.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83641.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83642.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83643.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83644.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83645.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83646.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83647.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83648.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83649.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83650.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83651.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83652.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83653.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83654.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83655.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83656.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83657.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83658.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83659.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83660.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83661.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83662.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83663.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83664.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83665.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83666.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83667.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83668.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83669.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83670.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83671.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83672.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83673.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83674.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83675.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83676.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83677.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83678.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83679.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83680.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83681.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83682.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83683.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83684.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83685.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83686.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83687.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83688.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83689.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83690.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83691.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83692.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83693.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83694.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83695.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83696.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83697.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83698.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83699.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83700.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83701.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83702.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83703.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83704.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83705.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83706.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83707.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83708.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83709.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83710.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83711.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83712.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83713.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83714.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83715.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83716.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83717.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83718.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83719.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83720.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83721.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83722.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83723.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83724.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83725.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83726.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83727.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83728.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83729.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83730.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83731.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83732.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83733.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83734.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83735.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83736.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83737.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83737.000000] [simulator/INFO] on1 wakes up +[on1:ON:(2) 83737.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83738.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83738.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83739.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83739.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83740.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83740.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83741.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83741.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83742.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83742.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83743.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83743.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83744.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83744.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83745.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83745.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83746.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83746.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83747.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83747.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83748.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83748.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83749.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83749.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83750.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83750.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83751.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83751.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83752.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83752.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83753.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83753.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83754.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83754.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83755.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83755.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83756.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83756.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83757.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83757.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83758.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83758.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83759.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83759.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83760.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83760.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83761.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83761.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83762.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83762.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83763.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83763.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83764.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83764.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83765.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83765.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83766.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83766.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83767.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83767.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83768.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83768.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83769.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83769.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83770.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83770.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83771.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83771.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83772.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83772.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83773.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83773.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83774.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83774.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83775.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83775.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83776.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83776.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83777.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83777.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83778.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83778.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83779.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83779.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83780.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83780.000000] [simulator/INFO] on11 is observing his environment... +[on11:ON:(12) 83781.000000] [simulator/INFO] on11 is observing his environment... +[on1:ON:(2) 83781.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83782.000000] [simulator/INFO] on1 is observing his environment... +[on11:ON:(12) 83782.000000] [simulator/INFO] Observation node on11 finished [LOG2PARSE](node:on11|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:278|totalUptime:4324.641280|seed:200|hint_added:0|timeDataRcv:6749.010320) +[on1:ON:(2) 83783.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83784.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83785.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83786.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83787.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83788.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83789.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83790.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83791.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83792.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83793.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83794.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83795.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83796.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83797.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83798.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83799.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83800.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83801.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83802.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83803.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83804.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83805.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83806.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83807.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83808.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83809.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83810.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83811.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83812.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83813.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83814.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83815.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83816.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83817.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83818.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83819.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83820.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83821.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83822.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83823.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83824.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83825.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83826.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83827.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83828.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83829.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83830.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83831.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83832.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83833.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83834.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83835.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83836.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83837.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83838.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83839.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83840.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83841.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83842.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83843.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83844.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83845.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83846.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83847.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83848.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83849.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83850.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83851.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83852.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83853.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83854.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83855.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83856.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83857.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83858.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83859.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83860.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83861.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83862.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83863.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83864.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83865.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83866.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83867.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83868.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83869.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83870.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83871.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83872.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83873.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83874.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83875.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83876.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83877.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83878.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83879.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83880.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83881.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83882.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83883.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83884.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83885.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83886.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83887.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83888.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83889.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83890.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83891.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83892.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83893.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83894.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83895.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83896.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83897.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83898.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83899.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83900.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83901.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83902.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83903.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83904.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83905.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83906.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83907.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83908.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83909.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83910.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83911.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83912.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83913.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83914.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83915.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83916.000000] [simulator/INFO] on1 is observing his environment... +[on1:ON:(2) 83917.000000] [simulator/INFO] Observation node on1 finished [LOG2PARSE](node:on1|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1980|totalUptime:4321.010320|seed:200|hint_added:0|timeDataRcv:42285.010320) +[on12:ON:(13) 83926.000000] [simulator/INFO] on12 wakes up +[on12:ON:(13) 83926.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83927.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83928.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83929.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83930.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83931.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83932.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83933.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83934.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83935.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83936.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83937.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83938.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83939.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83940.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83941.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83942.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83943.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83944.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83945.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83946.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83947.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83948.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83949.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83950.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83951.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83952.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83953.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83954.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83955.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83956.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83957.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83958.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83959.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83960.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83961.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83962.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83963.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83964.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83965.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83966.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83967.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83968.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83969.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83970.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83971.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83972.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83973.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83974.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83975.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83976.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83977.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83978.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83979.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83980.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83981.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83982.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83983.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83984.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83985.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83986.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83987.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83988.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83989.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83990.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83991.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83992.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83993.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83994.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83995.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83996.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83997.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83998.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 83999.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84000.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84001.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84002.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84003.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84004.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84005.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84006.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84007.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84008.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84009.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84010.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84011.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84012.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84013.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84014.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84015.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84016.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84017.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84018.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84019.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84020.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84021.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84022.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84023.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84024.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84025.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84026.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84027.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84028.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84029.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84030.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84031.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84032.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84033.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84034.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84035.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84036.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84037.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84038.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84039.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84040.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84041.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84042.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84043.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84044.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84045.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84046.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84047.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84048.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84049.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84050.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84051.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84052.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84053.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84054.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84055.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84056.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84057.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84058.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84059.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84060.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84061.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84062.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84063.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84064.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84065.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84066.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84067.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84068.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84069.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84070.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84071.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84072.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84073.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84074.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84075.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84076.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84077.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84078.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84079.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84080.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84081.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84082.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84083.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84084.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84085.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84086.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84087.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84088.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84089.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84090.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84091.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84092.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84093.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84094.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84095.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84096.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84097.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84098.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84099.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84100.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84101.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84102.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84103.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84104.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84105.000000] [simulator/INFO] on12 is observing his environment... +[on12:ON:(13) 84106.000000] [simulator/INFO] Observation node on12 finished [LOG2PARSE](node:on12|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:206|totalUptime:4504.000000|seed:200|hint_added:1|timeDataRcv:6829.051600) +[on0:ON:(1) 84304.000000] [simulator/INFO] on0 wakes up +[on0:ON:(1) 84304.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84305.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84306.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84307.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84308.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84309.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84310.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84311.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84312.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84313.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84314.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84315.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84316.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84317.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84318.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84319.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84320.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84321.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84322.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84323.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84324.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84325.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84326.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84327.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84328.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84329.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84330.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84331.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84332.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84333.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84334.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84335.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84336.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84337.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84338.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84339.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84340.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84341.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84342.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84343.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84344.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84345.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84346.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84347.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84348.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84349.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84350.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84351.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84352.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84353.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84354.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84355.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84356.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84357.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84358.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84359.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84360.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84361.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84362.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84363.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84364.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84365.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84366.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84367.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84368.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84369.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84370.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84371.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84372.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84373.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84374.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84375.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84376.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84377.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84378.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84379.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84380.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84381.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84382.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84383.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84384.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84385.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84386.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84387.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84388.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84389.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84390.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84391.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84392.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84393.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84394.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84395.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84396.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84397.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84398.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84399.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84400.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84401.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84402.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84403.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84404.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84405.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84405.000000] [simulator/INFO] on5 wakes up +[on5:ON:(6) 84405.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84406.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84406.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84407.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84407.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84408.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84408.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84409.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84409.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84410.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84410.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84411.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84411.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84412.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84412.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84413.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84413.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84414.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84414.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84415.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84415.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84416.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84416.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84417.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84417.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84418.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84418.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84419.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84419.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84420.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84420.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84421.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84421.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84422.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84422.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84423.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84423.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84424.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84424.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84425.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84425.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84426.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84426.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84427.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84427.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84428.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84428.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84429.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84429.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84430.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84430.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84431.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84431.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84432.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84432.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84433.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84433.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84434.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84434.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84435.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84435.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84436.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84436.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84437.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84437.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84438.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84438.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84439.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84439.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84440.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84440.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84441.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84441.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84442.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84442.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84443.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84443.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84444.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84444.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84445.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84445.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84446.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84446.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84447.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84447.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84448.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84448.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84449.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84449.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84450.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84450.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84451.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84451.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84452.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84452.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84453.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84453.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84454.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84454.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84455.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84455.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84456.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84456.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84457.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84457.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84458.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84458.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84459.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84459.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84460.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84460.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84461.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84461.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84462.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84462.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84463.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84463.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84464.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84464.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84465.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84465.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84466.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84466.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84467.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84467.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84468.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84468.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84469.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84469.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84470.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84470.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84471.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84471.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84472.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84472.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84473.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84473.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84474.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84474.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84475.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84475.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84476.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84476.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84477.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84477.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84478.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84478.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84479.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84479.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84480.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84480.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84481.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84481.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84482.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84482.000000] [simulator/INFO] on0 is observing his environment... +[on0:ON:(1) 84483.000000] [simulator/INFO] on0 is observing his environment... +[on5:ON:(6) 84483.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84484.000000] [simulator/INFO] on5 is observing his environment... +[on0:ON:(1) 84484.000000] [simulator/INFO] Observation node on0 finished [LOG2PARSE](node:on0|isSender:1|nSend:12|nWakeUp:24|nDataRcv:0|nSendFail:0|nRcvFail:0|totalUptime:4322.010320|seed:200|hint_added:0|timeDataRcv:-1.000000) +[on5:ON:(6) 84485.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84486.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84487.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84488.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84489.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84490.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84491.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84492.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84493.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84494.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84495.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84496.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84497.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84498.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84499.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84500.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84501.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84502.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84503.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84504.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84505.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84506.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84507.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84508.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84509.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84510.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84511.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84512.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84513.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84514.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84515.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84516.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84517.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84518.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84519.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84520.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84521.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84522.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84523.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84524.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84525.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84526.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84527.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84528.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84529.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84530.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84531.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84532.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84533.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84534.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84535.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84536.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84537.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84538.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84539.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84540.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84541.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84542.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84543.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84544.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84545.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84546.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84547.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84548.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84549.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84550.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84551.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84552.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84553.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84554.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84555.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84556.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84557.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84558.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84559.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84560.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84561.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84562.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84563.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84564.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84565.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84566.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84567.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84568.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84569.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84570.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84571.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84572.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84573.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84574.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84575.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84576.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84577.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84578.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84579.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84580.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84581.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84582.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84583.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84584.000000] [simulator/INFO] on5 is observing his environment... +[on5:ON:(6) 84585.000000] [simulator/INFO] Observation node on5 finished [LOG2PARSE](node:on5|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:657|totalUptime:4502.300000|seed:200|hint_added:1|timeDataRcv:12961.010320) +[on8:ON:(9) 84994.000000] [simulator/INFO] on8 wakes up +[on8:ON:(9) 84994.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84995.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84996.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84997.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84998.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 84999.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85000.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85001.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85002.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85003.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85004.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85005.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85006.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85007.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85008.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85009.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85010.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85011.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85012.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85013.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85014.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85015.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85016.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85017.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85018.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85019.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85020.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85021.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85022.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85023.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85024.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85025.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85026.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85027.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85028.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85029.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85030.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85031.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85032.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85033.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85034.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85035.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85036.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85037.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85038.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85039.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85040.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85041.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85042.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85043.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85044.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85045.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85046.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85047.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85048.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85049.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85050.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85051.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85052.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85053.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85054.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85055.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85056.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85057.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85058.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85059.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85060.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85061.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85062.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85063.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85064.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85065.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85066.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85067.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85068.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85069.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85070.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85071.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85072.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85073.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85074.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85075.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85076.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85077.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85078.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85079.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85080.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85081.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85082.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85083.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85084.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85085.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85086.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85087.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85088.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85089.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85090.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85091.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85092.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85093.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85094.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85095.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85096.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85097.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85098.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85099.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85100.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85101.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85102.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85103.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85104.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85105.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85106.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85107.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85108.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85109.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85110.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85111.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85112.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85113.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85114.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85115.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85116.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85116.000000] [simulator/INFO] on2 wakes up +[on2:ON:(3) 85116.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85117.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85117.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85118.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85118.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85119.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85119.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85120.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85120.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85121.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85121.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85122.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85122.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85123.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85123.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85124.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85124.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85125.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85125.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85126.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85126.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85127.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85127.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85128.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85128.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85129.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85129.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85130.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85130.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85131.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85131.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85132.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85132.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85133.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85133.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85134.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85134.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85135.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85135.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85136.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85136.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85137.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85137.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85138.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85138.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85139.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85139.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85140.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85140.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85141.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85141.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85142.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85142.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85143.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85143.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85144.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85144.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85145.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85145.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85146.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85146.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85147.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85147.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85148.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85148.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85149.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85149.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85150.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85150.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85151.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85151.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85152.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85152.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85153.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85153.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85154.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85154.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85155.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85155.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85156.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85156.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85157.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85157.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85158.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85158.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85159.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85159.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85160.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85160.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85161.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85161.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85162.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85162.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85163.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85163.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85164.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85164.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85165.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85165.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85166.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85166.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85167.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85167.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85168.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85168.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85169.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85169.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85170.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85170.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85171.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85171.000000] [simulator/INFO] on8 is observing his environment... +[on8:ON:(9) 85172.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85172.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85173.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85173.000000] [simulator/INFO] on8 is observing his environment... +[on2:ON:(3) 85174.000000] [simulator/INFO] on2 is observing his environment... +[on8:ON:(9) 85174.000000] [simulator/INFO] Observation node on8 finished [LOG2PARSE](node:on8|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:1620|totalUptime:4502.000000|seed:200|hint_added:1|timeDataRcv:35670.620640) +[on2:ON:(3) 85175.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85176.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85177.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85178.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85179.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85180.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85181.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85182.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85183.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85184.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85185.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85186.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85187.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85188.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85189.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85190.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85191.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85192.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85193.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85194.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85195.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85196.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85197.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85198.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85199.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85200.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85201.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85202.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85203.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85204.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85205.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85206.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85207.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85208.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85209.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85210.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85211.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85212.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85213.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85214.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85215.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85216.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85217.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85218.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85219.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85220.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85221.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85222.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85223.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85224.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85225.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85226.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85227.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85228.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85229.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85230.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85231.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85232.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85233.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85234.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85235.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85236.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85237.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85238.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85239.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85240.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85241.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85242.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85243.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85244.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85245.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85246.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85247.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85248.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85249.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85250.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85251.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85252.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85253.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85254.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85255.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85256.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85257.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85258.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85259.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85260.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85261.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85262.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85263.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85264.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85265.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85266.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85267.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85268.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85269.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85270.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85271.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85272.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85273.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85274.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85275.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85276.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85277.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85278.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85279.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85280.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85281.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85282.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85283.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85284.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85285.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85286.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85287.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85288.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85289.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85290.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85291.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85292.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85293.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85294.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85295.000000] [simulator/INFO] on2 is observing his environment... +[on2:ON:(3) 85296.000000] [simulator/INFO] Observation node on2 finished [LOG2PARSE](node:on2|isSender:0|nSend:0|nWakeUp:26|nDataRcv:1|nSendFail:0|nRcvFail:359|totalUptime:4683.682240|seed:200|hint_added:3|timeDataRcv:6869.672240) +[on7:ON:(8) 85635.000000] [simulator/INFO] on7 wakes up +[on7:ON:(8) 85635.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85636.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85637.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85638.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85639.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85640.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85641.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85642.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85643.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85644.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85645.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85646.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85647.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85648.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85649.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85650.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85651.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85652.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85652.000000] [simulator/INFO] on9 wakes up +[on9:ON:(10) 85652.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85653.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85653.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85654.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85654.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85655.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85655.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85656.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85656.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85657.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85657.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85658.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85658.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85659.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85659.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85660.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85660.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85661.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85661.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85662.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85662.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85663.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85663.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85664.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85664.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85665.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85665.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85666.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85666.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85667.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85667.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85668.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85668.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85669.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85669.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85670.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85670.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85671.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85671.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85672.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85672.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85673.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85673.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85674.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85674.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85675.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85675.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85676.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85676.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85677.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85677.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85678.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85678.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85679.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85679.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85680.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85680.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85681.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85681.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85682.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85682.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85683.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85683.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85684.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85684.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85685.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85685.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85686.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85686.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85687.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85687.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85688.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85688.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85689.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85689.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85690.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85690.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85691.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85691.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85692.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85692.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85693.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85693.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85694.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85694.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85695.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85695.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85696.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85696.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85697.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85697.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85698.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85698.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85699.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85699.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85700.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85700.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85701.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85701.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85702.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85702.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85703.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85703.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85704.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85704.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85705.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85705.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85706.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85706.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85707.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85707.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85708.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85708.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85709.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85709.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85710.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85710.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85711.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85711.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85712.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85712.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85713.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85713.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85714.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85714.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85715.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85715.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85716.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85716.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85717.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85717.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85718.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85718.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85719.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85719.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85720.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85720.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85721.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85721.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85722.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85722.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85723.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85723.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85724.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85724.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85725.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85725.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85726.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85726.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85727.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85727.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85728.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85728.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85729.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85729.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85730.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85730.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85731.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85731.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85732.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85732.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85733.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85733.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85734.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85734.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85735.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85735.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85736.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85736.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85737.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85737.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85738.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85738.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85739.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85739.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85740.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85740.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85741.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85741.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85742.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85742.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85743.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85743.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85744.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85744.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85745.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85745.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85746.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85746.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85747.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85747.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85748.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85748.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85749.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85749.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85750.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85750.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85751.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85751.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85752.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85752.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85753.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85753.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85754.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85754.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85755.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85755.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85756.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85756.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85757.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85757.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85758.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85758.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85759.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85759.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85760.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85760.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85761.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85761.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85762.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85762.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85763.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85763.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85764.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85764.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85765.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85765.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85766.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85766.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85767.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85767.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85768.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85768.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85769.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85769.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85770.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85770.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85771.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85771.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85772.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85772.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85773.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85773.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85774.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85774.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85775.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85775.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85776.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85776.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85777.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85777.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85778.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85778.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85779.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85779.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85780.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85780.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85781.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85781.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85782.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85782.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85783.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85783.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85784.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85784.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85785.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85785.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85786.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85786.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85787.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85787.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85788.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85788.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85789.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85789.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85790.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85790.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85791.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85791.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85792.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85792.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85793.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85793.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85794.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85794.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85795.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85795.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85796.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85796.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85797.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85797.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85798.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85798.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85799.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85799.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85800.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85800.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85801.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85801.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85802.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85802.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85803.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85803.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85804.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85804.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85805.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85805.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85806.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85806.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85807.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85807.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85808.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85808.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85809.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85809.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85810.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85810.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85811.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85811.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85812.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85812.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85813.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85813.000000] [simulator/INFO] on7 is observing his environment... +[on7:ON:(8) 85814.000000] [simulator/INFO] on7 is observing his environment... +[on9:ON:(10) 85814.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85815.000000] [simulator/INFO] on9 is observing his environment... +[on7:ON:(8) 85815.000000] [simulator/INFO] Observation node on7 finished [LOG2PARSE](node:on7|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:228|totalUptime:4503.000000|seed:200|hint_added:1|timeDataRcv:6789.030960) +[on9:ON:(10) 85816.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85817.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85818.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85819.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85820.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85821.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85822.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85823.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85824.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85825.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85826.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85827.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85828.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85829.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85830.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85831.000000] [simulator/INFO] on9 is observing his environment... +[on9:ON:(10) 85832.000000] [simulator/INFO] Observation node on9 finished [LOG2PARSE](node:on9|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1089|totalUptime:4320.010320|seed:200|hint_added:0|timeDataRcv:23145.010320) +[on6:ON:(7) 85982.000000] [simulator/INFO] on6 wakes up +[on6:ON:(7) 85982.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85983.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85984.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85985.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85986.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85987.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85988.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85989.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85990.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85991.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85992.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85993.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85994.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85995.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85996.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85997.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85998.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 85999.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86000.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86001.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86002.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86003.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86004.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86005.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86006.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86007.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86008.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86009.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86010.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86011.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86012.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86013.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86014.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86015.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86016.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86017.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86018.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86019.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86020.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86021.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86022.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86023.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86024.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86025.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86026.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86027.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86028.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86029.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86030.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86031.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86032.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86033.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86034.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86035.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86036.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86037.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86038.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86039.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86040.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86041.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86042.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86043.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86044.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86045.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86046.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86047.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86048.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86049.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86050.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86051.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86052.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86053.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86054.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86055.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86056.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86057.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86058.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86059.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86060.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86061.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86062.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86063.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86064.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86065.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86066.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86067.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86068.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86069.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86070.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86071.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86072.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86073.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86074.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86075.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86076.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86077.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86078.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86079.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86080.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86081.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86082.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86083.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86084.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86085.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86086.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86087.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86088.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86089.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86090.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86091.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86092.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86093.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86093.000000] [simulator/INFO] on4 wakes up +[on4:ON:(5) 86093.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86094.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86094.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86095.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86095.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86096.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86096.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86097.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86097.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86098.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86098.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86099.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86099.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86100.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86100.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86101.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86101.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86102.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86102.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86103.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86103.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86104.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86104.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86105.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86105.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86106.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86106.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86107.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86107.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86108.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86108.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86109.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86109.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86110.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86110.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86111.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86111.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86112.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86112.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86113.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86113.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86114.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86114.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86115.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86115.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86116.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86116.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86117.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86117.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86118.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86118.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86119.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86119.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86120.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86120.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86121.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86121.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86122.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86122.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86123.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86123.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86124.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86124.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86125.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86125.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86126.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86126.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86127.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86127.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86128.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86128.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86129.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86129.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86130.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86130.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86131.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86131.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86132.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86132.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86133.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86133.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86134.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86134.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86135.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86135.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86136.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86136.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86137.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86137.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86138.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86138.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86139.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86139.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86140.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86140.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86141.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86141.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86142.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86142.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86143.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86143.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86144.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86144.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86145.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86145.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86146.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86146.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86147.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86147.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86148.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86148.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86149.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86149.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86150.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86150.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86151.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86151.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86152.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86152.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86153.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86153.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86154.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86154.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86155.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86155.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86156.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86156.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86157.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86157.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86158.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86158.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86159.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86159.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86160.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86160.000000] [simulator/INFO] on6 is observing his environment... +[on6:ON:(7) 86161.000000] [simulator/INFO] on6 is observing his environment... +[on4:ON:(5) 86161.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86162.000000] [simulator/INFO] on4 is observing his environment... +[on6:ON:(7) 86162.000000] [simulator/INFO] Observation node on6 finished [LOG2PARSE](node:on6|isSender:0|nSend:0|nWakeUp:24|nDataRcv:1|nSendFail:0|nRcvFail:1076|totalUptime:4356.010320|seed:200|hint_added:0|timeDataRcv:20732.010320) +[on4:ON:(5) 86163.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86164.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86165.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86166.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86167.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86168.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86169.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86170.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86171.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86172.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86173.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86174.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86175.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86176.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86177.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86178.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86179.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86180.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86181.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86182.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86183.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86184.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86185.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86186.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86187.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86188.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86189.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86190.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86191.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86192.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86193.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86194.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86195.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86196.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86197.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86198.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86199.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86200.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86201.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86202.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86203.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86204.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86205.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86206.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86207.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86208.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86209.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86210.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86211.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86212.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86213.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86214.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86215.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86216.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86217.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86218.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86219.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86220.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86221.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86222.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86223.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86224.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86225.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86226.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86227.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86228.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86229.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86230.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86231.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86232.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86233.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86234.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86235.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86236.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86237.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86238.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86239.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86240.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86241.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86242.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86243.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86244.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86245.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86246.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86247.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86248.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86249.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86250.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86251.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86252.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86253.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86254.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86255.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86256.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86257.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86258.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86259.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86260.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86261.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86262.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86263.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86264.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86265.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86266.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86267.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86268.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86269.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86270.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86271.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86272.000000] [simulator/INFO] on4 is observing his environment... +[on4:ON:(5) 86273.000000] [simulator/INFO] Observation node on4 finished [LOG2PARSE](node:on4|isSender:0|nSend:0|nWakeUp:25|nDataRcv:1|nSendFail:0|nRcvFail:693|totalUptime:4618.999680|seed:200|hint_added:2|timeDataRcv:13002.630960) +[86273.000000] [surf_energy/INFO] Total energy consumption: 26056.981784 Joules (used hosts: 0.000000 Joules; unused/idle hosts: 26056.981784) +[86273.000000] [simulator/INFO] Simulation took 86273.000000s +[86273.000000] [simulator/INFO] The simulated platform file is available in "platform.xml" +[86273.000000] [surf_energy/INFO] Energy consumption of host on0: 2041.018784 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on1: 1870.760836 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on10: 2313.766672 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on11: 1949.569928 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on12: 2193.529876 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on2: 2169.516228 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on3: 1829.806708 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on4: 2181.719788 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on5: 1948.209792 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on6: 1768.410836 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on7: 2072.249792 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on8: 1964.411708 Joules +[86273.000000] [surf_energy/INFO] Energy consumption of host on9: 1754.010836 Joules diff --git a/results/scheduler/wakeup.R b/results/scheduler/wakeup.R new file mode 100644 index 0000000..cf80743 --- /dev/null +++ b/results/scheduler/wakeup.R @@ -0,0 +1,45 @@ +library("tidyverse") +library("gridExtra") + +pdf(NULL) + +# Load data +data=read_csv("wakeup.csv") +yorder=str_sort(unique(data$node),numeric=TRUE) +data=data%>%mutate(node=factor(node,levels=yorder)) + +# Load hint +hint=read_csv("hint.csv") + +# Load hint forward +hint_fw=read_csv("hint_fw.csv") + +# Load data +data_rcv=read_csv("data.csv") + + +# Configure axis +ts_range=seq(0, 24)*3600 +ts_labels=ts_range/3600 + +# Plot +p1=ggplot(data,aes(x=wakets,y=node))+ + geom_hline(aes(yintercept=node),color="grey",size=3)+ + geom_vline(data=hint,aes(xintercept=wakets,color="Hint slots"),show.legend = FALSE,linetype="longdash",size=0.3)+ + geom_linerange(aes(xmin=wakets,xmax=sleepts),size=10)+ + geom_linerange(data=hint,aes(xmin=wakets,xmax=wakets+duration,color="Hint slots"),size=10)+ + geom_point(data=data_rcv,aes(x=ts,color="Data received"),shape=18,size=4)+ + geom_point(data=hint,aes(x=rcvat,color="Hint received"),shape=18,size=3)+ + geom_point(data=hint_fw,aes(x=ts,color="Hint Forwarded"),shape=18,size=2)+ + xlab("Time (hours)")+ylab("Node")+ + scale_x_continuous(breaks = ts_range, labels=ts_labels)+ + scale_colour_manual(name="Legend",values=c("Hint slots"="blue","Data received"="red","Hint received"="green","Hint Forwarded"="purple"))+ + theme(panel.grid.major.x = element_line(size = 1.2),panel.grid.major.y = element_blank(),panel.grid.minor = element_blank()) + +stats=data%>%group_by(node)%>%summarise(n=n())%>%mutate(n=n-24) + +p2=ggplot(stats,aes(x=node,y=n))+ + geom_bar(stat="identity")+xlab("Node")+ylab("Extra wake up count") + +p=grid.arrange(p1,p2,heights=c(10,5)) +ggsave(plot=p,"schedule.png",dpi=300,width = 10,height=10) diff --git a/results/scheduler/wakeup.awk b/results/scheduler/wakeup.awk new file mode 100755 index 0000000..1bc8934 --- /dev/null +++ b/results/scheduler/wakeup.awk @@ -0,0 +1,43 @@ +#!/usr/bin/awk -f + +BEGIN { + RS="\n" + FS=" " + CSV_HEADER="node,wakets,sleepts,duration" + CSV_DATA="" + skip=1 +} + +/wakes up/{ + gsub("]","",$0) + wakets[$4][length(wakets[$4])+1]=$2 + skip=0 +} + +/is sleeping/{ + gsub("]","",$0) + if(!skip){ + sleepts[$4][length(sleepts[$4])+1]=$2 + } +} + +/LOG2PARSE/{ + gsub("]","",$0) + endts[$6][length(endts[$6])+1]=$2 +} + +END { + print(CSV_HEADER); + for(node in wakets){ + for(j=1;j<=length(wakets[node]);j++){ + start=wakets[node][j] + end=endts[node][1] + # Pay attention, the last sleep report for the last wake up is not printed + # so use the printed sleep only if available (otherwise we use the en of the simulation) + if(j<=length(sleepts[node])){ + end=sleepts[node][j] + } + print(node","start","end","end-start) + } + } +} diff --git a/results/scheduler/wakeup.csv b/results/scheduler/wakeup.csv new file mode 100644 index 0000000..1d41f5c --- /dev/null +++ b/results/scheduler/wakeup.csv @@ -0,0 +1,321 @@ +node,wakets,sleepts,duration +on10,2598.000000,2778.620640,180.621 +on10,3631.000000,3812.000000,181 +on10,6709.000000,6890.000000,181 +on10,7630.000000,7811.000000,181 +on10,12711.000000,12892.000000,181 +on10,15161.000000,15341.010320,180.01 +on10,18515.000000,18696.000000,181 +on10,22105.000000,22285.000000,180 +on10,25260.000000,25440.000000,180 +on10,31065.000000,31245.000000,180 +on10,34264.000000,34444.000000,180 +on10,38322.000000,38502.989680,180.99 +on10,39741.000000,39922.000000,181 +on10,45097.000000,45277.000000,180 +on10,47018.000000,47198.000000,180 +on10,52730.000000,52910.000000,180 +on10,55140.000000,55320.000000,180 +on10,57970.000000,58150.000000,180 +on10,61221.000000,61401.000000,180 +on10,65896.000000,66076.000000,180 +on10,68723.000000,68903.000000,180 +on10,73507.000000,73687.000000,180 +on10,75985.000000,76165.000000,180 +on10,81795.000000,81975.000000,180 +on10,83332.000000,83512.000000,180 +on2,2225.000000,2405.000000,180 +on2,3628.000000,3808.010000,180.01 +on2,6709.000000,6889.672240,180.672 +on2,7556.000000,7737.000000,181 +on2,10076.000000,10257.000000,181 +on2,11911.000000,12092.000000,181 +on2,14705.000000,14885.000000,180 +on2,19506.000000,19686.000000,180 +on2,24215.000000,24395.000000,180 +on2,26893.000000,27073.000000,180 +on2,28874.000000,29054.000000,180 +on2,35152.000000,35332.000000,180 +on2,38827.000000,39007.000000,180 +on2,41051.000000,41231.000000,180 +on2,44551.000000,44731.000000,180 +on2,48520.000000,48700.000000,180 +on2,51640.000000,51820.000000,180 +on2,57059.000000,57239.000000,180 +on2,58570.000000,58750.000000,180 +on2,64350.000000,64530.000000,180 +on2,66903.000000,67083.000000,180 +on2,69221.000000,69401.000000,180 +on2,74964.000000,75144.000000,180 +on2,78822.000000,79002.000000,180 +on2,81068.000000,81248.000000,180 +on2,85116.000000,85296.000000,180 +on11,1158.000000,1338.000000,180 +on11,6611.000000,6792.000000,181 +on11,7732.000000,7912.020640,180.021 +on11,12859.000000,13040.000000,181 +on11,16425.000000,16605.000000,180 +on11,19220.000000,19400.000000,180 +on11,22910.000000,23090.000000,180 +on11,26222.000000,26402.000000,180 +on11,30051.000000,30231.989680,180.99 +on11,35650.000000,35830.630960,180.631 +on11,36843.000000,37024.000000,181 +on11,41612.000000,41792.000000,180 +on11,44874.000000,45054.000000,180 +on11,48148.000000,48328.000000,180 +on11,53983.000000,54163.000000,180 +on11,54339.000000,54519.000000,180 +on11,60812.000000,60992.000000,180 +on11,63504.000000,63684.000000,180 +on11,66790.000000,66970.000000,180 +on11,71418.000000,71598.000000,180 +on11,72431.000000,72611.000000,180 +on11,77829.000000,78009.000000,180 +on11,79757.000000,79937.000000,180 +on11,83602.000000,83782.000000,180 +on3,863.000000,1043.000000,180 +on3,6928.000000,7108.000000,180 +on3,7669.000000,7850.000000,181 +on3,11304.000000,11484.000000,180 +on3,17457.000000,17637.000000,180 +on3,18342.000000,18522.000000,180 +on3,24551.000000,24731.000000,180 +on3,28391.000000,28571.000000,180 +on3,29171.000000,29351.000000,180 +on3,32535.000000,32715.000000,180 +on3,36702.000000,36882.000000,180 +on3,41786.000000,41966.000000,180 +on3,44841.000000,45021.000000,180 +on3,50117.000000,50297.000000,180 +on3,50678.000000,50858.000000,180 +on3,55715.000000,55895.000000,180 +on3,57977.000000,58157.000000,180 +on3,62215.000000,62395.000000,180 +on3,65876.000000,66056.000000,180 +on3,70128.000000,70308.000000,180 +on3,74735.000000,74915.000000,180 +on3,77916.000000,78096.000000,180 +on3,80387.000000,80567.000000,180 +on3,82904.000000,83084.000000,180 +on12,2250.000000,2430.000000,180 +on12,6763.000000,6944.000000,181 +on12,7556.000000,7737.000000,181 +on12,9835.000000,10015.000000,180 +on12,12467.000000,12647.000000,180 +on12,17949.000000,18129.000000,180 +on12,21139.000000,21319.000000,180 +on12,23799.000000,23979.000000,180 +on12,26306.000000,26486.000000,180 +on12,29258.000000,29438.000000,180 +on12,33040.000000,33220.000000,180 +on12,37074.000000,37254.000000,180 +on12,42084.000000,42265.000000,181 +on12,45060.000000,45241.000000,181 +on12,47093.000000,47273.000000,180 +on12,51815.000000,51995.000000,180 +on12,55020.000000,55200.000000,180 +on12,61143.000000,61323.000000,180 +on12,63458.000000,63638.000000,180 +on12,65742.000000,65922.000000,180 +on12,70016.000000,70196.000000,180 +on12,72005.000000,72185.000000,180 +on12,76524.000000,76704.000000,180 +on12,82665.000000,82845.000000,180 +on12,83926.000000,84106.000000,180 +on4,1866.000000,2046.000000,180 +on4,6890.000000,7070.000000,180 +on4,8125.000000,8305.000000,180 +on4,12029.000000,12209.010000,180.01 +on4,12921.000000,13101.000000,180 +on4,15220.000000,15517.000000,297 +on4,20794.000000,20974.989680,180.99 +on4,23054.000000,23235.000000,181 +on4,28394.000000,28574.000000,180 +on4,29230.000000,29410.000000,180 +on4,35833.000000,36013.000000,180 +on4,36097.000000,36277.000000,180 +on4,43087.000000,43267.000000,180 +on4,43375.000000,43555.000000,180 +on4,47757.000000,47937.000000,180 +on4,53478.000000,53658.000000,180 +on4,54546.000000,54726.000000,180 +on4,58693.000000,58873.000000,180 +on4,62889.000000,63069.000000,180 +on4,67532.000000,67712.000000,180 +on4,69043.000000,69223.000000,180 +on4,73405.000000,73585.000000,180 +on4,76519.000000,76699.000000,180 +on4,81559.000000,81739.000000,180 +on4,86093.000000,86273.000000,180 +on5,1934.000000,2114.000000,180 +on5,4944.000000,5124.000000,180 +on5,8620.000000,8800.000000,180 +on5,11869.000000,12049.300000,180.3 +on5,12921.000000,13102.000000,181 +on5,15969.000000,16149.000000,180 +on5,18516.000000,18696.000000,180 +on5,24283.000000,24463.000000,180 +on5,28635.000000,28815.000000,180 +on5,30516.000000,30696.000000,180 +on5,32408.000000,32588.000000,180 +on5,38574.000000,38754.000000,180 +on5,42136.000000,42317.000000,181 +on5,43911.000000,44091.000000,180 +on5,48737.000000,48917.000000,180 +on5,50438.000000,50618.000000,180 +on5,55141.000000,55321.000000,180 +on5,59370.000000,59550.000000,180 +on5,62845.000000,63025.000000,180 +on5,67338.000000,67518.000000,180 +on5,71855.000000,72035.000000,180 +on5,74603.000000,74783.000000,180 +on5,79125.000000,79305.000000,180 +on5,79600.000000,79780.000000,180 +on5,84405.000000,84585.000000,180 +on6,1613.000000,1793.000000,180 +on6,4641.000000,4821.000000,180 +on6,9448.000000,9628.000000,180 +on6,11727.000000,11907.000000,180 +on6,17870.000000,18050.000000,180 +on6,20516.000000,20732.010320,216.01 +on6,23729.000000,23909.000000,180 +on6,28514.000000,28694.000000,180 +on6,30569.000000,30749.000000,180 +on6,33859.000000,34039.000000,180 +on6,36782.000000,36962.000000,180 +on6,42939.000000,43119.000000,180 +on6,45175.000000,45355.000000,180 +on6,48174.000000,48354.000000,180 +on6,51482.000000,51662.000000,180 +on6,55600.000000,55780.000000,180 +on6,60492.000000,60672.000000,180 +on6,61255.000000,61435.000000,180 +on6,66846.000000,67026.000000,180 +on6,68402.000000,68582.000000,180 +on6,75503.000000,75683.000000,180 +on6,77684.000000,77864.000000,180 +on6,81854.000000,82034.000000,180 +on6,85982.000000,86162.000000,180 +on7,129.000000,309.000000,180 +on7,6701.000000,6882.000000,181 +on7,7556.000000,7737.000000,181 +on7,10236.000000,10416.000000,180 +on7,11441.000000,11622.000000,181 +on7,17425.000000,17605.000000,180 +on7,19345.000000,19525.000000,180 +on7,23846.000000,24026.000000,180 +on7,27747.000000,27927.000000,180 +on7,29095.000000,29275.000000,180 +on7,34803.000000,34983.000000,180 +on7,37383.000000,37563.000000,180 +on7,39764.000000,39944.000000,180 +on7,46029.000000,46209.000000,180 +on7,48222.000000,48402.000000,180 +on7,53878.000000,54058.000000,180 +on7,56507.000000,56687.000000,180 +on7,60481.000000,60661.000000,180 +on7,63369.000000,63549.000000,180 +on7,67045.000000,67225.000000,180 +on7,71165.000000,71345.000000,180 +on7,75544.000000,75724.000000,180 +on7,76837.000000,77017.000000,180 +on7,79965.000000,80145.000000,180 +on7,85635.000000,85815.000000,180 +on8,2802.000000,2982.000000,180 +on8,6411.000000,6591.000000,180 +on8,7947.000000,8127.000000,180 +on8,13504.000000,13684.000000,180 +on8,17204.000000,17384.000000,180 +on8,19310.000000,19490.000000,180 +on8,23885.000000,24065.000000,180 +on8,28133.000000,28313.000000,180 +on8,29610.000000,29790.000000,180 +on8,35630.000000,35811.000000,181 +on8,38215.000000,38396.000000,181 +on8,39574.000000,39754.000000,180 +on8,41344.000000,41524.000000,180 +on8,44174.000000,44354.000000,180 +on8,46928.000000,47108.000000,180 +on8,51090.000000,51270.000000,180 +on8,56779.000000,56959.000000,180 +on8,58041.000000,58221.000000,180 +on8,64783.000000,64963.000000,180 +on8,67744.000000,67924.000000,180 +on8,69579.000000,69759.000000,180 +on8,73404.000000,73584.000000,180 +on8,76330.000000,76510.000000,180 +on8,79285.000000,79465.000000,180 +on8,84994.000000,85174.000000,180 +on9,2900.000000,3080.000000,180 +on9,3840.000000,4020.000000,180 +on9,8559.000000,8739.000000,180 +on9,11552.000000,11732.000000,180 +on9,15877.000000,16057.000000,180 +on9,20124.000000,20304.000000,180 +on9,23096.000000,23276.010320,180.01 +on9,25878.000000,26058.000000,180 +on9,31644.000000,31824.000000,180 +on9,34643.000000,34823.000000,180 +on9,37292.000000,37472.000000,180 +on9,41647.000000,41827.000000,180 +on9,46753.000000,46933.000000,180 +on9,48286.000000,48466.000000,180 +on9,53290.000000,53470.000000,180 +on9,54762.000000,54942.000000,180 +on9,58716.000000,58896.000000,180 +on9,64063.000000,64243.000000,180 +on9,67306.000000,67486.000000,180 +on9,72000.000000,72180.000000,180 +on9,72901.000000,73081.000000,180 +on9,76705.000000,76885.000000,180 +on9,81979.000000,82159.000000,180 +on9,85652.000000,85832.000000,180 +on0,2593.000000,2773.000000,180 +on0,6709.000000,6889.000000,180 +on0,7556.000000,7736.000000,180 +on0,12921.000000,13101.000000,180 +on0,15336.000000,15516.000000,180 +on0,20692.000000,20872.000000,180 +on0,23105.000000,23285.000000,180 +on0,27274.000000,27454.000000,180 +on0,29996.000000,30176.000000,180 +on0,35538.000000,35718.000000,180 +on0,38215.000000,38395.000000,180 +on0,42103.000000,42285.010320,182.01 +on0,46183.000000,46363.000000,180 +on0,47289.000000,47469.000000,180 +on0,50759.000000,50939.000000,180 +on0,55720.000000,55900.000000,180 +on0,60407.000000,60587.000000,180 +on0,63697.000000,63877.000000,180 +on0,64955.000000,65135.000000,180 +on0,68828.000000,69008.000000,180 +on0,72977.000000,73157.000000,180 +on0,75876.000000,76056.000000,180 +on0,79921.000000,80101.000000,180 +on0,84304.000000,84484.000000,180 +on1,1388.000000,1568.000000,180 +on1,4259.000000,4439.000000,180 +on1,7336.000000,7516.000000,180 +on1,14025.000000,14205.000000,180 +on1,15777.000000,15957.000000,180 +on1,18690.000000,18870.000000,180 +on1,24094.000000,24274.000000,180 +on1,27080.000000,27260.000000,180 +on1,28998.000000,29178.000000,180 +on1,35250.000000,35430.000000,180 +on1,37910.000000,38090.000000,180 +on1,42245.000000,42425.010320,180.01 +on1,45142.000000,45323.000000,181 +on1,50215.000000,50395.000000,180 +on1,51518.000000,51698.000000,180 +on1,55047.000000,55227.000000,180 +on1,60552.000000,60732.000000,180 +on1,62442.000000,62622.000000,180 +on1,66260.000000,66440.000000,180 +on1,68644.000000,68824.000000,180 +on1,73731.000000,73911.000000,180 +on1,77419.000000,77599.000000,180 +on1,81164.000000,81344.000000,180 +on1,83737.000000,83917.000000,180 diff --git a/results/success.png b/results/success.png index 376b70a..626b858 100644 Binary files a/results/success.png and b/results/success.png differ diff --git a/results/tables-energy.org b/results/tables-energy.org index 51ee594..7cfb948 100644 --- a/results/tables-energy.org +++ b/results/tables-energy.org @@ -1,33 +1,33 @@ |simkey |wireless | wakeupfor| sd| energy| |:---------------|:--------|---------:|---------:|--------:| -|baseline |lora | 60| 16.33402| 585.4111| -|extended |lora | 60| 112.39053| 644.3322| -|hint |lora | 60| 22.56875| 590.1444| -|hintandextended |lora | 60| 123.70498| 654.4311| +|baseline |lora | 60| 12.08547| 583.8016| +|extended |lora | 60| 115.69712| 643.3609| +|hint |lora | 60| 19.98529| 588.8910| +|hintandextended |lora | 60| 122.76077| 652.4087| |simkey |wireless | wakeupfor| sd| energy| |:---------------|:--------|---------:|--------:|--------:| -|baseline |nbiot | 60| 60.62894| 609.8450| -|extended |nbiot | 60| 58.92077| 608.2217| -|hint |nbiot | 60| 91.72314| 633.2152| -|hintandextended |nbiot | 60| 92.83686| 631.2778| +|baseline |nbiot | 60| 40.35285| 602.7284| +|extended |nbiot | 60| 49.89496| 604.8062| +|hint |nbiot | 60| 62.56728| 622.7394| +|hintandextended |nbiot | 60| 60.60395| 622.9200| |simkey |wireless | wakeupfor| sd| energy| |:---------------|:--------|---------:|---------:|--------:| -|baseline |lora | 180| 98.67312| 1792.831| -|extended |lora | 180| 116.10499| 1798.595| -|hint |lora | 180| 195.63195| 2030.565| -|hintandextended |lora | 180| 158.38142| 1907.159| +|baseline |lora | 180| 76.10034| 1784.001| +|extended |lora | 180| 120.81175| 1798.744| +|hint |lora | 180| 221.13014| 2071.106| +|hintandextended |lora | 180| 144.56696| 1912.820| -|simkey |wireless | wakeupfor| sd| energy| -|:---------------|:--------|---------:|--------:|--------:| -|baseline |nbiot | 180| 233.8910| 1834.046| -|extended |nbiot | 180| 198.1495| 1810.336| -|hint |nbiot | 180| 346.7823| 2078.100| -|hintandextended |nbiot | 180| 343.5100| 2056.359| +|simkey |wireless | wakeupfor| sd| energy| +|:---------------|:--------|---------:|---------:|--------:| +|baseline |nbiot | 180| 82.67308| 1786.374| +|extended |nbiot | 180| 73.09319| 1772.271| +|hint |nbiot | 180| 210.98239| 2045.656| +|hintandextended |nbiot | 180| 203.59603| 2018.582| diff --git a/results/tables-stats.org b/results/tables-stats.org index f0368db..372c3ea 100644 --- a/results/tables-stats.org +++ b/results/tables-stats.org @@ -1,33 +1,33 @@ -|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| receiverEnergy| senderUptime| receiverUptime| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| -|:---------------|:--------|---------:|----------:|-------:|------------:|--------------:|------------:|--------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:| -|baseline |lora | 60| 0.000000| 0.000| 632.3280| 581.1460| 1440.000| 1439.923| 0.0| 0.0| 619.73| 579.84| 1440.00| 1440.00| 2| 0| 0| 0| 0| -|extended |lora | 60| 1.505359| 5.735| 982.8520| 613.5576| 2090.090| 1500.527| 2.0| 7.7| 1207.61| 627.35| 2564.53| 1523.52| -23| -2| -23| -2| 0| -|hint |lora | 60| 0.000000| 0.000| 641.9022| 585.4391| 1440.000| 1449.476| 0.0| 0.0| 753.42| 957.64| 1440.00| 2354.94| -17| -64| 0| -62| 0| -|hintandextended |lora | 60| 1.635282| 6.185| 1027.2315| 620.5401| 2129.752| 1513.171| 2.2| 9.8| 1397.98| 663.58| 2904.50| 1602.39| -36| -7| -36| -6| 0| +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderUptime| receiverUptime| avgTimeDataRcv| senderUptime_baseline| receiverUptime_baseline| id| senderUptimeOverhead| receiverUptimeOverhead| senderEnergy_baseline| receiverEnergy_baseline| id_baseline| senderEnergyOverheadPercent| receiverEnergyOverheadPercent| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| nWakeUpRcv| nWakeUpSender| +|:---------------|:--------|---------:|----------:|-------:|------------:|---------------:|--------------:|-----------------:|------------:|--------------:|--------------:|---------------------:|-----------------------:|--:|--------------------:|----------------------:|---------------------:|-----------------------:|-----------:|---------------------------:|-----------------------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:|----------:|-------------:| +|baseline |lora | 60| 0.000000| 0.000| 617.1992| 13.92286| 581.0185| 6.43567| 1440.000| 1439.928| NA| 1440| 1439.928| 1| 0.0000| 0.00000| 617.1992| 581.0185| 1| 0.00| 0.00| 0.0| 0.0| 619.73| 579.84| 1440.00| 1440.00| 0| 0| 0| 0| 0| 23.99625| 24| +|extended |lora | 60| 1.539880| 6.125| 1009.7080| 112.14261| 612.8320| 36.56959| 2132.270| 1499.413| 39764.48| 1440| 1439.928| 2| 692.2700| 59.48542| 617.1992| 581.0185| 2| 38.87| 5.19| 2.0| 7.7| 1207.61| 627.35| 2564.53| 1523.52| 20| 2| 20| 2| 0| 23.99625| 24| +|hint |lora | 60| 0.000000| 0.000| 628.2949| 19.46385| 585.6074| 16.15719| 1440.000| 1450.278| NA| 1440| 1439.928| 3| 0.0000| 10.34992| 617.1992| 581.0185| 3| 1.77| 0.78| 0.0| 0.0| 753.42| 957.64| 1440.00| 2354.94| 20| 64| 0| 62| 0| 24.16542| 24| +|hintandextended |lora | 60| 1.639455| 6.625| 1040.5143| 116.74540| 620.0665| 39.90174| 2177.281| 1512.382| 39160.28| 1440| 1439.928| 4| 737.2809| 72.45389| 617.1992| 581.0185| 4| 40.68| 6.30| 2.2| 9.8| 1397.98| 663.58| 2904.50| 1602.39| 34| 7| 33| 6| 0| 24.14500| 24| -|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| receiverEnergy| senderUptime| receiverUptime| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| -|:---------------|:--------|---------:|----------:|-------:|------------:|--------------:|------------:|--------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:| -|baseline |nbiot | 60| 1.291633| 2.255| 787.9910| 593.6499| 1440.000| 1439.923| 1.12| 1.27| 749.69| 591.07| 1440.00| 1440.00| 5| 0| 0| 0| 0| -|extended |nbiot | 60| 1.585075| 6.010| 789.8257| 591.7123| 1482.840| 1443.758| 1.80| 7.16| 946.39| 599.13| 1788.32| 1447.54| -20| -1| -21| 0| 0| -|hint |nbiot | 60| 2.356878| 4.230| 881.7522| 610.6209| 1440.000| 1462.637| 3.45| 9.72| 1007.06| 702.59| 1440.00| 1666.51| -14| -15| 0| -14| 0| -|hintandextended |nbiot | 60| 1.824016| 6.860| 907.3576| 606.1796| 1484.538| 1459.460| 2.36| 9.41| 1066.66| 623.30| 1901.47| 1492.53| -18| -3| -28| -2| 0| +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderUptime| receiverUptime| avgTimeDataRcv| senderUptime_baseline| receiverUptime_baseline| id| senderUptimeOverhead| receiverUptimeOverhead| senderEnergy_baseline| receiverEnergy_baseline| id_baseline| senderEnergyOverheadPercent| receiverEnergyOverheadPercent| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| nWakeUpRcv| nWakeUpSender| +|:---------------|:--------|---------:|----------:|-------:|------------:|---------------:|--------------:|-----------------:|------------:|--------------:|--------------:|---------------------:|-----------------------:|--:|--------------------:|----------------------:|---------------------:|-----------------------:|-----------:|---------------------------:|-----------------------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:|----------:|-------------:| +|baseline |nbiot | 60| 1.326565| 2.405| 716.2964| 43.43334| 593.2644| 21.04193| 1440.000| 1439.928| 41794.55| 1440| 1439.928| 1| 0.00000| 0.000000| 716.2964| 593.2644| 1| 0.00| 0.00| 1.12| 1.27| 749.69| 591.07| 1440.00| 1440.00| 5| 0| 0| 0| 0| 23.99625| 24| +|extended |nbiot | 60| 1.635013| 6.490| 763.3750| 49.83593| 591.5921| 14.83692| 1486.482| 1443.817| 38750.19| 1440| 1439.928| 2| 46.48215| 3.889388| 716.2964| 593.2644| 2| 6.17| -0.28| 1.80| 7.16| 946.39| 599.13| 1788.32| 1447.54| 24| 1| 20| 0| 0| 23.99625| 24| +|hint |nbiot | 60| 2.428676| 4.605| 766.0904| 72.31226| 610.7935| 44.17384| 1440.000| 1463.261| 41424.25| 1440| 1439.928| 3| 0.00000| 23.333204| 716.2964| 593.2644| 3| 6.50| 2.87| 3.45| 9.72| 1007.06| 702.59| 1440.00| 1666.51| 31| 15| 0| 14| 0| 24.37250| 24| +|hintandextended |nbiot | 60| 1.879164| 7.580| 790.4368| 54.84866| 608.9603| 34.56977| 1483.177| 1462.101| 37225.93| 1440| 1439.928| 4| 43.17667| 22.172950| 716.2964| 593.2644| 4| 9.38| 2.58| 2.36| 9.41| 1066.66| 623.30| 1901.47| 1492.53| 35| 2| 28| 2| 0| 24.29042| 24| -|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| receiverEnergy| senderUptime| receiverUptime| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| -|:---------------|:--------|---------:|----------:|-------:|------------:|--------------:|------------:|--------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:| -|baseline |lora | 180| 1.255250| 1.835| 2101.411| 1764.778| 4319.945| 4317.934| 1.40| 1.91| 2026.23| 1755.92| 4320.00| 4320.00| 4| 1| 0| 0| 0| -|extended |lora | 180| 1.104752| 9.825| 2168.013| 1765.011| 4761.910| 4355.365| 0.70| 11.45| 2692.46| 1772.35| 6038.78| 4364.27| -24| 0| -27| 0| 0| -|hint |lora | 180| 1.522858| 10.050| 2195.374| 2015.582| 4319.945| 4832.081| 0.00| 12.00| 2094.09| 2169.50| 4320.00| 5344.86| 5| -8| 0| -11| 0| -|hintandextended |lora | 180| 0.562456| 10.735| 2318.551| 1869.760| 4791.917| 4543.989| 0.24| 11.94| 2757.79| 1867.34| 6155.50| 4600.09| -19| 0| -28| -1| 0| +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderUptime| receiverUptime| avgTimeDataRcv| senderUptime_baseline| receiverUptime_baseline| id| senderUptimeOverhead| receiverUptimeOverhead| senderEnergy_baseline| receiverEnergy_baseline| id_baseline| senderEnergyOverheadPercent| receiverEnergyOverheadPercent| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| nWakeUpRcv| nWakeUpSender| +|:---------------|:--------|---------:|----------:|-------:|------------:|---------------:|--------------:|-----------------:|------------:|--------------:|--------------:|---------------------:|-----------------------:|--:|--------------------:|----------------------:|---------------------:|-----------------------:|-----------:|---------------------------:|-----------------------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:|----------:|-------------:| +|baseline |lora | 180| 1.2632315| 1.915| 2024.816| 51.29690| 1763.933| 28.60502| 4319.945| 4317.908| 42122.74| 4319.945| 4317.908| 1| 0.0000| 0.00000| 2024.816| 1763.933| 1| 0.00| 0.00| 1.40| 1.91| 2026.23| 1755.92| 4320.00| 4320.00| 0| 0| 0| 0| 0| 23.96708| 23.99| +|extended |lora | 180| 1.1395031| 10.695| 2200.902| 86.90754| 1765.231| 24.06196| 4817.775| 4356.038| 29727.01| 4319.945| 4317.908| 2| 497.8300| 38.13042| 2024.816| 1763.933| 2| 8.00| 0.07| 0.70| 11.45| 2692.46| 1772.35| 6038.78| 4364.27| 22| 0| 25| 0| 0| 23.96708| 23.99| +|hint |lora | 180| 1.3531928| 11.055| 2133.820| 50.32577| 2065.879| 228.93189| 4319.945| 4932.097| 38450.82| 4319.945| 4317.908| 3| 0.0000| 614.18917| 2024.816| 1763.933| 3| 5.11| 14.62| 0.00| 12.00| 2094.09| 2169.50| 4320.00| 5344.86| 2| 5| 0| 8| 0| 27.20625| 23.99| +|hintandextended |lora | 180| 0.5207021| 11.765| 2251.250| 70.23605| 1884.618| 109.03452| 4875.151| 4569.616| 21068.30| 4319.945| 4317.908| 4| 555.2062| 251.70799| 2024.816| 1763.933| 4| 10.06| 6.40| 0.24| 11.94| 2757.79| 1867.34| 6155.50| 4600.09| 23| 1| 26| 1| 0| 25.06333| 23.99| -|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| receiverEnergy| senderUptime| receiverUptime| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| -|:---------------|:--------|---------:|----------:|-------:|------------:|--------------:|------------:|--------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:| -|baseline |nbiot | 180| 1.2720418| 9.200| 2582.264| 1766.027| 4319.945| 4317.934| 1.33| 9.90| 2117.65| 1761.78| 4320.00| 4320.00| 18| 0| 0| 0| 0| -|extended |nbiot | 180| 1.0582887| 9.975| 2456.997| 1751.549| 4343.803| 4319.913| 0.87| 11.23| 2311.52| 1760.92| 4868.78| 4323.71| 6| -1| -12| 0| 0| -|hint |nbiot | 180| 0.6046512| 10.715| 2971.540| 1996.878| 4319.945| 4501.213| 0.37| 11.92| 2180.07| 1868.54| 4320.00| 4576.83| 27| 6| 0| -2| 0| -|hintandextended |nbiot | 180| 0.5713204| 10.735| 2949.652| 1975.150| 4334.482| 4482.790| 0.41| 11.88| 2151.14| 1822.44| 4906.10| 4473.32| 27| 8| -13| 0| 0| +|simkey |wireless | wakeupfor| sd_success| success| senderEnergy| senderEnergy_sd| receiverEnergy| receiverEnergy_sd| senderUptime| receiverUptime| avgTimeDataRcv| senderUptime_baseline| receiverUptime_baseline| id| senderUptimeOverhead| receiverUptimeOverhead| senderEnergy_baseline| receiverEnergy_baseline| id_baseline| senderEnergyOverheadPercent| receiverEnergyOverheadPercent| sd_success_ccgrid| success_ccgrid| senderEnergy_ccgrid| receiverEnergy_ccgrid| senderUptime_ccgrid| receiverUptime_ccgrid| senderEnergy_err| receiverEnergy_err| senderUptime_err| receiverUptime_err| nSendFail| nWakeUpRcv| nWakeUpSender| +|:---------------|:--------|---------:|----------:|-------:|------------:|---------------:|--------------:|-----------------:|------------:|--------------:|--------------:|---------------------:|-----------------------:|--:|--------------------:|----------------------:|---------------------:|-----------------------:|-----------:|---------------------------:|-----------------------------:|-----------------:|--------------:|-------------------:|---------------------:|-------------------:|---------------------:|----------------:|------------------:|----------------:|------------------:|---------:|----------:|-------------:| +|baseline |nbiot | 180| 1.3010915| 10.025| 2029.482| 39.95947| 1766.115| 43.982210| 4319.945| 4317.908| 30213.49| 4319.945| 4317.908| 1| 0.00000| 0.0000| 2029.482| 1766.115| 1| 0.00| 0.00| 1.33| 9.90| 2117.65| 1761.78| 4320.00| 4320.00| 4| 0| 0| 0| 0| 23.96708| 23.99| +|extended |nbiot | 180| 1.1007535| 10.880| 2021.314| 32.59292| 1751.517| 9.914506| 4345.909| 4319.845| 27126.21| 4319.945| 4317.908| 2| 25.96430| 1.9374| 2029.482| 1766.115| 2| -0.40| -0.83| 0.87| 11.23| 2311.52| 1760.92| 4868.78| 4323.71| 14| 1| 12| 0| 0| 23.96708| 23.99| +|hint |nbiot | 180| 0.4927617| 11.780| 2053.867| 21.19100| 2044.972| 219.502254| 4319.945| 4527.499| 20936.63| 4319.945| 4317.908| 3| 0.00000| 209.5909| 2029.482| 1766.115| 3| 1.19| 13.64| 0.37| 11.92| 2180.07| 1868.54| 4320.00| 4576.83| 6| 9| 0| 1| 0| 25.07833| 23.99| +|hintandextended |nbiot | 180| 0.4580656| 11.785| 2040.722| 14.09534| 2016.737| 211.769483| 4335.303| 4504.253| 19100.67| 4319.945| 4317.908| 4| 15.35839| 186.3448| 2029.482| 1766.115| 4| 0.55| 12.43| 0.41| 11.88| 2151.14| 1822.44| 4906.10| 4473.32| 5| 10| 13| 1| 0| 24.94875| 23.99| diff --git a/src/simulator.cc b/src/simulator.cc index 78d83d0..d6c8882 100644 --- a/src/simulator.cc +++ b/src/simulator.cc @@ -18,6 +18,11 @@ #define CLOCK (simgrid::s4u::Engine::get_clock()) #define CNAME (selfName.c_str()) #define FOR(t) (thint,HINT->duration); \ + i.AddEvent(HINT->hint, HINT->duration); \ + } #define TRACK_UPTIME(instruction) \ { \ double uptimeTrack=CLOCK; \ @@ -44,6 +49,7 @@ simgrid::s4u::Mailbox *m_ded= simgrid::s4u::Mailbox::by_name(hint_forward->DedicatedMailbox); \ MODE_TX(); \ SEND(m_ded->put(hint_forward,0,uptime)); \ + XBT_INFO("%s forward a hint successfully",CNAME); \ } \ catch(...){ \ XBT_INFO("%s fail to forward a hint",CNAME); \ @@ -134,6 +140,7 @@ static void obs_node(std::vector args) { Payload *hint_forward=NULL; // Contains the hint to forward bool is_sender=i.is_sender; // This variable might change if all receiver have received the data bool isObserver=false; + double timeDataRcv=-1; while(i.ShouldContinue()){ // Start by sleeping XBT_INFO("%s is sleeping",CNAME); @@ -166,6 +173,7 @@ static void obs_node(std::vector args) { simgrid::s4u::Mailbox *m_ded= simgrid::s4u::Mailbox::by_name(p->DedicatedMailbox); MODE_TX(); SEND(m_ded->put(p,p->DataSize,uptime)); // Send the actual hint + MODE_ON(); XBT_INFO("%s sent a hint successfully",CNAME); } catch(...){} @@ -209,6 +217,7 @@ static void obs_node(std::vector args) { catch(...){} } sendhint_mode=!sendhint_mode; // Switch back and forth between sending hint and data + MODE_ON(); } // ---------- RECEIVER ---------- else if(!isObserver){ @@ -235,7 +244,7 @@ static void obs_node(std::vector args) { MODE_ON(); XBT_INFO("%s received a forwarded hint successfully",CNAME); if(CLOCK < p->hint){ - i.AddEvent(p->hint, p->duration); + ADD_EVENT(p); hint_forward=new Payload(*p); hint_added++; } @@ -250,7 +259,7 @@ static void obs_node(std::vector args) { XBT_INFO("%s received a hint successfully",CNAME); hint_forward=new Payload(*p); // Enable hint forwarding if(CLOCK < p->hint){ - i.AddEvent(p->hint, p->duration); + ADD_EVENT(p); hint_forward=new Payload(*p); hint_added++; } @@ -268,6 +277,7 @@ static void obs_node(std::vector args) { p=m_ded->get(uptime); // Fetch data until sended or uptime expire // If we reach here, data has been received successfully XBT_INFO("%s received data successfully",CNAME); + timeDataRcv=CLOCK; if(p->HasHint){ XBT_INFO("%s received a hint along with data successfully",CNAME); hint_forward=new Payload(*p); // Enable hint forwarding @@ -337,5 +347,5 @@ static void obs_node(std::vector args) { } // Done MODE_OFF() - XBT_INFO("Observation node %s finished [LOG2PARSE](node:%s|isSender:%d|nSend:%d|nWakeUp:%d|nDataRcv:%d|nSendFail:%d|nRcvFail:%d|totalUptime:%f|seed:%d|hint_added:%d)",CNAME,CNAME,i.is_sender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,i.seed,hint_added); + XBT_INFO("Observation node %s finished [LOG2PARSE](node:%s|isSender:%d|nSend:%d|nWakeUp:%d|nDataRcv:%d|nSendFail:%d|nRcvFail:%d|totalUptime:%f|seed:%d|hint_added:%d|timeDataRcv:%f)",CNAME,CNAME,i.is_sender,nSend,nWakeUp,nDataRcv,nSendFail,nRcvFail,totalUptime,i.seed,hint_added,timeDataRcv); } \ No newline at end of file